From 69863fb4eacea84fde6b151068eee7b007021698 Mon Sep 17 00:00:00 2001 From: Szymon Tondowski Date: Sun, 21 Dec 2025 14:32:37 +0100 Subject: [PATCH 1/5] Most data for 2025 collected --- scripts/hejto/2024-summary-data.ts | 20 +- scripts/hejto/{parts => parts-2024}/part-1.ts | 6 +- .../hejto/{parts => parts-2024}/part-10.ts | 0 scripts/hejto/{parts => parts-2024}/part-2.ts | 0 scripts/hejto/{parts => parts-2024}/part-3.ts | 0 scripts/hejto/{parts => parts-2024}/part-4.ts | 0 scripts/hejto/{parts => parts-2024}/part-5.ts | 0 scripts/hejto/{parts => parts-2024}/part-6.ts | 0 scripts/hejto/{parts => parts-2024}/part-7.ts | 0 scripts/hejto/{parts => parts-2024}/part-8.ts | 0 scripts/hejto/{parts => parts-2024}/part-9.ts | 0 scripts/hejto/parts-2025/part-1.ts | 26727 +++++++++++ scripts/hejto/parts-2025/part-2.ts | 22009 +++++++++ scripts/hejto/parts-2025/part-3.ts | 37408 ++++++++++++++++ scripts/hejto/parts-2025/part-4.ts | 23399 ++++++++++ scripts/hejto/parts-2025/part-5.ts | 19930 ++++++++ scripts/hejto/parts-2025/part-6.ts | 23870 ++++++++++ scripts/hejto/utils/results-parser.ts | 2 +- 18 files changed, 153357 insertions(+), 14 deletions(-) rename scripts/hejto/{parts => parts-2024}/part-1.ts (99%) rename scripts/hejto/{parts => parts-2024}/part-10.ts (100%) rename scripts/hejto/{parts => parts-2024}/part-2.ts (100%) rename scripts/hejto/{parts => parts-2024}/part-3.ts (100%) rename scripts/hejto/{parts => parts-2024}/part-4.ts (100%) rename scripts/hejto/{parts => parts-2024}/part-5.ts (100%) rename scripts/hejto/{parts => parts-2024}/part-6.ts (100%) rename scripts/hejto/{parts => parts-2024}/part-7.ts (100%) rename scripts/hejto/{parts => parts-2024}/part-8.ts (100%) rename scripts/hejto/{parts => parts-2024}/part-9.ts (100%) create mode 100644 scripts/hejto/parts-2025/part-1.ts create mode 100644 scripts/hejto/parts-2025/part-2.ts create mode 100644 scripts/hejto/parts-2025/part-3.ts create mode 100644 scripts/hejto/parts-2025/part-4.ts create mode 100644 scripts/hejto/parts-2025/part-5.ts create mode 100644 scripts/hejto/parts-2025/part-6.ts diff --git a/scripts/hejto/2024-summary-data.ts b/scripts/hejto/2024-summary-data.ts index 00bb30d29..158a654a5 100644 --- a/scripts/hejto/2024-summary-data.ts +++ b/scripts/hejto/2024-summary-data.ts @@ -5,16 +5,16 @@ import { ParsedHejtoResult } from "./hejto-types"; import { getInfoAboutResults } from "./utils/results-parser"; -import { results as results1 } from "./parts/part-1"; -import { results as results2 } from "./parts/part-2"; -import { results as results3 } from "./parts/part-3"; -import { results as results4 } from "./parts/part-4"; -import { results as results5 } from "./parts/part-5"; -import { results as results6 } from "./parts/part-6"; -import { results as results7 } from "./parts/part-7"; -import { results as results8 } from "./parts/part-8"; -import { results as results9 } from "./parts/part-9"; -import { results as results10 } from "./parts/part-10"; +import { results as results1 } from "./parts-2024/part-1"; +import { results as results2 } from "./parts-2024/part-2"; +import { results as results3 } from "./parts-2024/part-3"; +import { results as results4 } from "./parts-2024/part-4"; +import { results as results5 } from "./parts-2024/part-5"; +import { results as results6 } from "./parts-2024/part-6"; +import { results as results7 } from "./parts-2024/part-7"; +import { results as results8 } from "./parts-2024/part-8"; +import { results as results9 } from "./parts-2024/part-9"; +import { results as results10 } from "./parts-2024/part-10"; export const resultsBySource: { [url: string]: ParsedHejtoResult[]; diff --git a/scripts/hejto/parts/part-1.ts b/scripts/hejto/parts-2024/part-1.ts similarity index 99% rename from scripts/hejto/parts/part-1.ts rename to scripts/hejto/parts-2024/part-1.ts index bf2738baf..7f517954b 100644 --- a/scripts/hejto/parts/part-1.ts +++ b/scripts/hejto/parts-2024/part-1.ts @@ -1,9 +1,9 @@ -import { ParsedHejtoResult } from '../hejto-types'; +import { ParsedHejtoResult } from "../hejto-types"; export const results: { resultsBySource: { - [url: string]: ParsedHejtoResult[], - }, + [url: string]: ParsedHejtoResult[]; + }; } = { resultsBySource: {}, }; diff --git a/scripts/hejto/parts/part-10.ts b/scripts/hejto/parts-2024/part-10.ts similarity index 100% rename from scripts/hejto/parts/part-10.ts rename to scripts/hejto/parts-2024/part-10.ts diff --git a/scripts/hejto/parts/part-2.ts b/scripts/hejto/parts-2024/part-2.ts similarity index 100% rename from scripts/hejto/parts/part-2.ts rename to scripts/hejto/parts-2024/part-2.ts diff --git a/scripts/hejto/parts/part-3.ts b/scripts/hejto/parts-2024/part-3.ts similarity index 100% rename from scripts/hejto/parts/part-3.ts rename to scripts/hejto/parts-2024/part-3.ts diff --git a/scripts/hejto/parts/part-4.ts b/scripts/hejto/parts-2024/part-4.ts similarity index 100% rename from scripts/hejto/parts/part-4.ts rename to scripts/hejto/parts-2024/part-4.ts diff --git a/scripts/hejto/parts/part-5.ts b/scripts/hejto/parts-2024/part-5.ts similarity index 100% rename from scripts/hejto/parts/part-5.ts rename to scripts/hejto/parts-2024/part-5.ts diff --git a/scripts/hejto/parts/part-6.ts b/scripts/hejto/parts-2024/part-6.ts similarity index 100% rename from scripts/hejto/parts/part-6.ts rename to scripts/hejto/parts-2024/part-6.ts diff --git a/scripts/hejto/parts/part-7.ts b/scripts/hejto/parts-2024/part-7.ts similarity index 100% rename from scripts/hejto/parts/part-7.ts rename to scripts/hejto/parts-2024/part-7.ts diff --git a/scripts/hejto/parts/part-8.ts b/scripts/hejto/parts-2024/part-8.ts similarity index 100% rename from scripts/hejto/parts/part-8.ts rename to scripts/hejto/parts-2024/part-8.ts diff --git a/scripts/hejto/parts/part-9.ts b/scripts/hejto/parts-2024/part-9.ts similarity index 100% rename from scripts/hejto/parts/part-9.ts rename to scripts/hejto/parts-2024/part-9.ts diff --git a/scripts/hejto/parts-2025/part-1.ts b/scripts/hejto/parts-2025/part-1.ts new file mode 100644 index 000000000..e8cbac999 --- /dev/null +++ b/scripts/hejto/parts-2025/part-1.ts @@ -0,0 +1,26727 @@ +import { ParsedHejtoResult } from "../hejto-types"; + +export const results: { + resultsBySource: { + [url: string]: ParsedHejtoResult[]; + }; +} = { + resultsBySource: {}, +}; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/01-02-2025-diffle-difflepl-22-litery-w-4-slowach-9-2-11-0" +] = [ + { + date: "01.02.2025", + nick: "Lvter", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUzNt8Wbz5yMl1ybstmLhVDNtQ3bt5CMy0icldmLw4SMx4iMukjLyMTLr9WbzhSI", + value: "!(smok-32.9.2.11.0.ger-20.mot-45a.klo-e3.smo-75)!", + result: { + word: "smok", + correct: 9, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "01.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/01-02-2025-diffle-difflepl-grywebowe-29-liter-w-5-slowach-13-1-15-0" +] = [ + { + date: "01.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUzNt8WbuUTZx0ybrNnL0ETNtg2Yz4yYlZTLvJ3auU2NtoXZk5CMuUTMuEjLzEjLyMTLr9WbzhSI", + value: "!(smok-32.13.1.15.0.dez-7e.kro-6ec.3ch-514.sko-1e5.mo-75)!", + result: { + word: "smok", + correct: 13, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "01.02.2025", + }, + }, + { + date: "01.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSN30ybt5SNlFTLvtmL4QWMt8Gdz5CMtU3bm5iZiNGNtoncw5CMucTMuAjLxEjLyMTLr9WbzhSI", + value: "!(smok-32.11.0.17.0.prz-4cbf.fou-0.sto-1d8.ko-1e5.mo-75)!", + result: { + word: "smok", + correct: 11, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "01.02.2025", + }, + }, + { + date: "01.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSN30ybtNnL2QjMto2b35yM5gTYx0ieyBnLw4iNx4SMuYjLyMTLr9WbzhSI", + value: "!(smok-32.6.1.16.0.prz-1a893.woj-246.smo-75)!", + result: { + word: "smok", + correct: 6, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "01.02.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUzNt8Wbz5CNxUjL4UWNuETM00CajNjL3UDNt8Gc15CMuYTMuAjLyEjLyMTLr9WbzhSI", + value: "!(smok-32.12.0.16.0.upo-457.3ch-411.5e8.514.smo-75)!", + result: { + word: "smok", + correct: 12, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + }, + }, + { + date: "01.02.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUzNt8Wbz5CNt0Wdw5SOxETLvxmYugjM00CdvRmLxQzMtI3bn5CMuYTMuEjLyEjLyMTLr9WbzhSI", + value: "!(smok-32.12.1.16.0.gor-341.dot-428.blo-119.pum-4.smo-75)!", + result: { + word: "smok", + correct: 12, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "01.02.2025", + }, + }, + { + date: "01.02.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1cTLv12cukTNmJTLu92auAjL24iMuUjLyMTLr9WbzhSI", + value: "!(smok-32.5.2.6.0.kon-2f59.smo-75)!", + result: { + word: "smok", + correct: 5, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "01.02.2025", + }, + }, + { + date: "01.02.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSN30ybtNnL5QzMt8Waw5SO10ya6NnLw4yNx4SMucjLyMTLr9WbzhSI", + value: "!(smok-32.7.1.17.0.szk-59.pio-349.smo-75)!", + result: { + word: "smok", + correct: 7, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "01.02.2025", + }, + }, + { + date: "01.02.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUzNt8WbuYzYt0WduAzNx0Sb6NnLw4SMx4CMugjLyMTLr9WbzhSI", + value: "!(smok-32.8.0.11.0.szm-170.um-c6.mo-75)!", + result: { + word: "smok", + correct: 8, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "01.02.2025", + }, + }, + { + date: "01.02.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSN30ybtNnL1gTMtM3bt5yY2EWLhJ3ZuAjL34SMuYjLyMTLr9WbzhSI", + value: "!(smok-32.6.1.7.0.gra-a6c.mos-185.smo-75)!", + result: { + word: "smok", + correct: 6, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 14, + date: "01.02.2025", + }, + }, + { + date: "01.02.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUzNt8WbuQmM00icwNnLw4CMx4CMuYjLyMTLr9WbzhSI", + value: "!(smok-32.6.0.10.0.spr-42d.mo-75)!", + result: { + word: "smok", + correct: 6, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "01.02.2025", + }, + }, + { + date: "01.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1cTLv1mL1UWMt82augDZx0yb0NnLhFjM10ievBnLw4SOuEjLyEjLyMTLr9WbzhSI", + value: "!(smok-32.12.1.9.0.poz-521a.sto-1d8.ko-1e5.mo-75)!", + result: { + word: "smok", + correct: 12, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "01.02.2025", + }, + }, + { + date: "01.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1cTLv12cuQmY0ETLt9GcuQjZx0CZ5dnLw4iMx4CMuYjLyMTLr9WbzhSI", + value: "!(smok-32.6.0.12.0.wyd-1f4.pom-14bd.smo-75)!", + result: { + word: "smok", + correct: 6, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "01.02.2025", + }, + }, + { + date: "01.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSN30ybtNnLlVTLhtWduAjL54SMuYjLyMTLr9WbzhSI", + value: "!(smok-32.6.1.9.0.uka-5e.smo-75)!", + result: { + word: "smok", + correct: 6, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "01.02.2025", + }, + }, + { + date: "01.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSN30ybt5SNlFTLvtmLykTLvp3cukTZ5ETLzl3duYWMtsWdl5CMuITMuEjL0EjLyMTLr9WbzhSI", + value: "!(smok-32.14.1.12.0.euk-1f.wys-19e9.szo-92.ko-1e5.mo-75)!", + result: { + word: "smok", + correct: 14, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "01.02.2025", + }, + }, + { + date: "01.02.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1cTLv12cuEDZ3ITLr9GcuM2Mj1SZpdnLw4iMx4SMugjLyMTLr9WbzhSI", + value: "!(smok-32.8.1.12.0.wie-c3c.pok-27d1.smo-75)!", + result: { + word: "smok", + correct: 8, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "01.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/02-02-2025-diffle-difflepl-28-liter-w-3-slowach-15-2-11-0" +] = [ + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjZz4iNlNTLhl2YucTN00ybwVnLw4SMx4iMuUTMuMzMt8GdzFWajhSI", + value: "!(ciasto-33.15.2.11.0.upo-457.cia-3e6.3f4)!", + result: { + word: "ciasto", + correct: 15, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + }, + }, + { + date: "02.02.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNmNTLhlmLw0Sd6NmLy0ydyRmLmJDNtQ3bw5yM10yYuFmLw4CNx4yMuITMuMzMt8GdzFWajhSI", + value: "!(ciasto-33.12.3.14.0.anc-53.pot-42f.drw-2.czu-0.ia-3f4)!", + result: { + word: "ciasto", + correct: 12, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "02.02.2025", + }, + }, + { + date: "02.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjZz0SYpNmLwcDNtw2az5CMucjLz4COuMzMt8GdzFWajhSI", + value: "!(ciasto-33.8.3.7.0.skl-470.cia-3f4)!", + result: { + word: "ciasto", + correct: 8, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "02.02.2025", + }, + }, + { + date: "02.02.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjZz0SYpNmLiNjMtEWat5CZyQTLyB3cuAjL54iMuMTMuMzMt8GdzFWajhSI", + value: "!(ciasto-33.13.2.9.0.spr-42d.mia-23b.cia-3f4)!", + result: { + word: "ciasto", + correct: 13, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "02.02.2025", + }, + }, + { + date: "02.02.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0Y2MtEWaj5SY1QTLsF2auAjLxEjLx4COuMzMt8GdzFWajhSI", + value: "!(ciasto-33.8.1.11.0.kal-45a.cia-3f4)!", + result: { + word: "ciasto", + correct: 8, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "02.02.2025", + }, + }, + { + date: "02.02.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNmNTLhl2YuYjZz0CbhNnLlhTL39GduAjL24yMuETMuMzMt8GdzFWajhSI", + value: "!(ciasto-33.11.3.6.0.tow-8e.sal-3f6.cia-3f4)!", + result: { + word: "ciasto", + correct: 11, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "02.02.2025", + }, + }, + { + date: "02.02.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjZz0SYpNmL5QzMt8Waw5SO10ya6NnLw4SNx4iMuATMuMzMt8GdzFWajhSI", + value: "!(ciasto-33.10.2.15.0.szk-59.pio-349.cia-3f4)!", + result: { + word: "ciasto", + correct: 10, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "02.02.2025", + }, + }, + { + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjZz0SYpNmLjZTYtEmcn5CMuQjLx4yNuMzMt8GdzFWajhSI", + value: "!(ciasto-33.7.1.4.0.gra-a6c.cia-3f4)!", + result: { + word: "ciasto", + correct: 7, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 12, + }, + }, + { + date: "02.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0Y2MtEWaj5SY4YWLhR3cuEWMyUTL69GcuAjL44iNuATMuMzMt8GdzFWajhSI", + value: "!(ciasto-33.10.6.8.0.poz-521a.sta-f8a.cia-3f4)!", + result: { + word: "ciasto", + correct: 10, + position: 6, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "02.02.2025", + }, + }, + { + date: "02.02.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNmNTLhl2YuYWMz0ybp1mLhRmMy0yavBnLw4CMx4yMuATMuMzMt8GdzFWajhSI", + value: "!(ciasto-33.10.3.10.0.pok-22da.mio-31f.cia-3f4)!", + result: { + word: "ciasto", + correct: 10, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "02.02.2025", + }, + }, + { + date: "02.02.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjZz0SYpNmLlZjMtM2bkVWau5CMuQjLy4SOuMzMt8GdzFWajhSI", + value: "!(ciasto-33.9.2.4.0.niedoc-26e.cia-3f4)!", + result: { + word: "ciasto", + correct: 9, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "02.02.2025", + }, + }, + { + date: "02.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0Y2MtEWaj5CN4MTLhl2cuUDNhFTL05WYuAjL54yMuMTMuMzMt8GdzFWajhSI", + value: "!(ciasto-33.13.3.9.0.ant-1a45.sia-384.cia-3f4)!", + result: { + word: "ciasto", + correct: 13, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "02.02.2025", + }, + }, + { + date: "02.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjZz0SYuATLwl2YuQTLjl2auATLslWbuQjZx0CZ5dnLw4iMx4iMuQTMuMzMt8GdzFWajhSI", + value: "!(ciasto-33.14.2.12.0.wyd-1f4.mil-0.kic-4.cip-0.a-3f4)!", + result: { + word: "ciasto", + correct: 14, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "02.02.2025", + }, + }, + { + date: "02.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNmNTLhl2YuATLnlmZuEWYtQXaz5SZ10SYrVnLw4SMx4iMuMTMuMzMt8GdzFWajhSI", + value: "!(ciasto-33.13.2.11.0.uka-5e.sit-aa.fig-0.cia-3f4)!", + result: { + word: "ciasto", + correct: 13, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "02.02.2025", + }, + }, + { + date: "02.02.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjZz0SYpNmLjNzYtUWa35CMugjLx4COuMzMt8GdzFWajhSI", + value: "!(ciasto-33.8.1.8.0.wie-c3c.cia-3f4)!", + result: { + word: "ciasto", + correct: 8, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "02.02.2025", + }, + }, + { + date: "02.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0Y2MtEWaj5iYzITLhlWbuQGOx0SYpdnLmFTLrVXZuAjL34iMucTMuMzMt8GdzFWajhSI", + value: "!(ciasto-33.17.2.7.0.euk-1f.wia-18d.mia-23b.cia-3f4)!", + result: { + word: "ciasto", + correct: 17, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "02.02.2025", + }, + }, + { + date: "02.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNmNTLhl2YuMTO4EWMtoncw5CMukjLy4COuMzMt8GdzFWajhSI", + value: "!(ciasto-33.8.2.9.0.prz-1a893.cia-3f4)!", + result: { + word: "ciasto", + correct: 8, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "02.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/04-03-2025-diffle-difflepl-grywebowe-21-liter-w-3-slowach-large-green-circle" +] = [ + { + date: "04.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4QjMtQWYuMjZy0CZvxmLlBzMtUGbi5CMuUjLw4iNx4yM20SYrJXY39GZhJDOlUzQlgSI", + value: "!(ładowarka-63.16.0.5.0.ble-30e.lod-2f3.ad-248)!", + result: { + word: "ładowarka", + correct: 16, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "04.03.2025", + }, + }, + { + date: "04.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO0ITLk5iM5MTLrFGbugTOt8me65CMukjLx4CNx4yM20SYrJXY39GZhJDOlUzQlgSI", + value: "!(ładowarka-63.14.1.9.0.zzo-98.lak-392.d-248)!", + result: { + word: "ładowarka", + correct: 14, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "04.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/08-03-2025-flag-pl-diffle-difflepl-grywebowe-36-liter-w-5-slowa-large-green-circ" +] = [ + { + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZjYtIHcukTNx0ycvNnL3MTLvlmbuEWMz0CbvpnLmJmMtUHaj5CMuQTMuMjL5EjL3YTLllmbClTJ1MUJvJHczhSI", + value: "!(sprośnie-67.19.3.14.0.chu-2bf.zol-31a.nio-37.sos-159.pr-b6a)!", + result: { + word: "sprośnie", + correct: 19, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + }, + }, + { + date: "08.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZjYtIHcz5iNxUTLyB3buMTO4EWMtoncw5CMuITMuIjL3EjL3YTLllmbClTJ1MUJvJHczhSI", + value: "!(sprośnie-67.17.2.12.0.prz-1a893.opr-516.spr-b6a)!", + result: { + word: "sprośnie", + correct: 17, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZjYtIHcz5CO2QTLoN2MuUzM00ycvJnLzQzMx0Cb5dnLw4COuEjL4EjL3YTLllmbClTJ1MUJvJHczhSI", + value: "!(sprośnie-67.18.1.8.0.wyl-1343.ros-435.3ch-468.spr-b6a)!", + result: { + word: "sprośnie", + correct: 18, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZjYtIHcz5yNwETLs9meuEWZzMWL6JHcuM2NtMXZq5SNkZTMtUWat5iMuAjMuEjL4EjL3YTLllmbClTJ1MUJvJHczhSI", + value: "!(sprośnie-67.18.1.20.2.mie-16d5.jes-7c.prz-c3ea.zol-107.spr-b6a)!", + result: { + word: "sprośnie", + correct: 18, + position: 1, + incorrect: 20, + knownIncorrect: 2, + totalWords: 5, + totalLetters: 39, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmNi5SZkZjLiBDZtIHcz5iN1czMtoncw5CMuMTMuIjLzIjL3YTLllmbClTJ1MUJvJHczhSI", + value: "!(sprośnie-67.23.2.13.0.prz-3756.spr-d0b.6de.b6a)!", + result: { + word: "sprośnie", + correct: 23, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 38, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZjYuczNi5SZ1ImLkRjYucDOi1icwNnL2QTZtA3c35CMuATMuEjL5MjL3YTLllmbClTJ1MUJvJHczhSI", + value: "!(sprośnie-67.39.1.10.0.wsp-e46.spr-b87.b4d.b5e.b77.b6a)!", + result: { + word: "sprośnie", + correct: 39, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 50, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZjYuUWNi1icw5COxUWLyRnLlBDNx0SY6NnLw4COuAjLzIjL3YTLllmbClTJ1MUJvJHczhSI", + value: "!(sprośnie-67.23.0.8.0.sza-140e.tr-e18.pr-b5e.b6a)!", + result: { + word: "sprośnie", + correct: 23, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZjYtIHcz5COwIjMt8mcw5iM4QTLy9GZugDM30Cbp1mL3cjMtoWY65CMuITMuEjLwIjL3YTLllmbClTJ1MUJvJHczhSI", + value: "!(sprośnie-67.20.1.12.0.zaj-277.mil-708.dor-482.pro-2208.spr-b6a)!", + result: { + word: "sprośnie", + correct: 20, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZjYtIHcz5SNzQjL1M2MtM3by5iNkNjLlhTNtg2Yz4SOlJTLyd2buYmY40SZ6JnL1ADZtUmc65iMzMTMtMXe35CMukTMuQjL3IjL3YTLllmbClTJ1MUJvJHczhSI", + value: + "!(sprośnie-67.27.4.19.0.wys-1332.zre-d05.rze-8bf.ogr-2e9.3ch-58e.3d6.ros-3c5.435.spr-b6a)!", + result: { + word: "sprośnie", + correct: 27, + position: 4, + incorrect: 19, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 50, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZjYtIHcuUGO00ybsNnL2EmYtUWat5CMuATMuIjL2EjL3YTLllmbClTJ1MUJvJHczhSI", + value: "!(sprośnie-67.16.2.10.0.mie-ba6.slo-48e.pr-b6a)!", + result: { + word: "sprośnie", + correct: 16, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZjYtIHcz5yYxATNtM3bw5COzQTMtkGcz5iMihTLpB3buIGZ3ETLu9GcugTOt8me65CNuIjMuIjL1IjL3YTLllmbClTJ1MUJvJHczhSI", + value: + "!(sprośnie-67.25.2.22.4.zzo-98.pon-17db.opi-8b2.spi-1438.pos-501c.spr-b6a)!", + result: { + word: "sprośnie", + correct: 25, + position: 2, + incorrect: 22, + knownIncorrect: 4, + totalWords: 6, + totalLetters: 49, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmNi5SZ1IWLyB3cuMDN10SYpBnL2QTZtA3c35CMuMTMuEjLyIjL3YTLllmbClTJ1MUJvJHczhSI", + value: "!(sprośnie-67.22.1.13.0.wsp-e46.pia-543.spr-b5e.b6a)!", + result: { + word: "sprośnie", + correct: 22, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY2IWLyB3cuYGMz0icwVnLmBDZx0SZp5yYhJGNtQ2bw5CMuITMuIjL3EjL3YTLllmbClTJ1MUJvJHczhSI", + value: "!(sprośnie-67.17.2.12.0.pod-4bac.ie-1d0f.upr-30f.spr-b6a)!", + result: { + word: "sprośnie", + correct: 17, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "Tysiek", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY2IWLyB3cuUzM00ycvJnL1ITMtUncz5yN40Sau9mL5gTMtw2b65CMuMTMuQjLzIjL3YTLllmbClTJ1MUJvJHczhSI", + value: "!(sprośnie-67.23.4.13.0.zol-189.oni-87.sru-125.ros-435.spr-b6a)!", + result: { + word: "sprośnie", + correct: 23, + position: 4, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY2ImLhZzMtIHcuY2M30ic0NnLkZTMtUGbn5CMuITMuAjL2EjL3YTLllmbClTJ1MUJvJHczhSI", + value: "!(sprośnie-67.16.0.12.0.gle-16d.str-73f.pr-36a.b6a)!", + result: { + word: "sprośnie", + correct: 16, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmNi1icwNnL4gDNtI3bk5SNzQTLz9mcuE2N50CboNmLxczMtMXYi5yY0MTLp52cugTOt8me65CMugTMuAjLyMjL3YTLllmbClTJ1MUJvJHczhSI", + value: + "!(sprośnie-67.32.0.18.0.zzo-98.sni-34c.bas-371.chl-97a.ros-435.dor-488.spr-b6a)!", + result: { + word: "sprośnie", + correct: 32, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 50, + date: "08.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/09-03-2025-flag-pl-diffle-difflepl-grywebowe-34-litery-w-4-slowach-large-green-c" +] = [ + { + date: "09.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjY30ybydmLhN2Mt8Gbi5iNyITLuR2buYTYi1SZp1mLw4SNx4iMucTMugjNtUWauFkQlUzQl8mcnhSI", + value: "!(groźnie-68.17.2.15.0.mie-ba6.odn-226.blo-3ca.gro-7b8)!", + result: { + word: "groźnie", + correct: 17, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOidTLvJ3ZuEGNx0ibvpnLzQzMx0Cb5dnLw4SMx4SMuITMugjNtUWauFkQlUzQl8mcnhSI", + value: "!(groźnie-68.12.1.11.0.wyl-1343.zon-14a.gro-7b8)!", + result: { + word: "groźnie", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjY30yby5yY0ITLu92ZuEWY20SZppnL0ITLp12YuAjNtg2Yy4CMwMTLk9GcuIzN00yb0NnLw4SMy4SMuYTMugjNtUWauFkQlUzQl8mcnhSI", + value: + "!(groźnie-68.16.1.21.0.sto-472.pod-300.2ch-60.cmi-24.zie-6aa.gon-24c.ro-7b8)!", + result: { + word: "groźnie", + correct: 16, + position: 1, + incorrect: 21, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 38, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4I2Nt8mcn5SOy0ybsRmLllTMx0Sb5dnLw4SMx4SMuMTMugjNtUWauFkQlUzQl8mcnhSI", + value: "!(groźnie-68.13.1.11.0.wym-119e.dlo-29.gro-7b8)!", + result: { + word: "groźnie", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjY30yby5CNzETLu92ZuY2MtQWZu5CN5MTLoN2MuM2YmFTLiFmeuMWNx0yYz9mLyMzMx0yc5dnLw4SOx4CMugTMugjNtUWauFkQlUzQl8mcnhSI", + value: + "!(groźnie-68.18.0.19.0.wys-1332.osc-15c.zab-1fcc.3ch-394.ned-3f.gon-134.ro-7b8)!", + result: { + word: "groźnie", + correct: 18, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 37, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4I2Nt8mcn5yYwUTLvJnYuYDNl1CczdnLw4iMx4SMuMTMugjNtUWauFkQlUzQl8mcnhSI", + value: "!(groźnie-68.13.1.12.0.wsp-e46.bro-50c.gro-7b8)!", + result: { + word: "groźnie", + correct: 13, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjY34CN5cTLvJnL1ETLm92ZuUWNy0SasNnL0ITLklneuAzY5ETLs92aucDMhFTLhJHduI2NjFTLu9GcuYmYy0SdoNmLw4yNy4iMuUjMugjNtUWauFkQlUzQl8mcnhSI", + value: + "!(groźnie-68.25.2.27.0.chu-2bf.pon-1c7b.tra-1a07.kol-19c0.zyd-24.sli-25e.gof-15.ro-794.7b8)!", + result: { + word: "groźnie", + correct: 25, + position: 2, + incorrect: 27, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 54, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4I2Nt8mcuY2Mx0ibvdmLyQTMtkmbz5CO50yb6pnLw4iMx4CMuQTMugjNtUWauFkQlUzQl8mcnhSI", + value: "!(groźnie-68.14.0.12.0.zzo-98.sni-142.gon-13f.ro-7b8)!", + result: { + word: "groźnie", + correct: 14, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjY30ybydmLwcDOwETL69mcuQGOx0CczFmLw4SMx4SMuITMugjNtUWauFkQlUzQl8mcnhSI", + value: "!(groźnie-68.12.1.11.0.asp-18d.roz-10870.gro-7b8)!", + result: { + word: "groźnie", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOidTLvJ3ZuQzM3ATMto3by5iMt4mcr5SOiFTLy9mbuYDNl1CczdnLx4SMy4iMugTMugjNtUWauFkQlUzQl8mcnhSI", + value: "!(groźnie-68.18.2.21.1.wsp-e46.nor-1b9.krn-2.roz-10734.gro-7b8)!", + result: { + word: "groźnie", + correct: 18, + position: 2, + incorrect: 21, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 41, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4I2Nt8mcn5yYi1ydvJnLkhTMtg2Yz4yY4ITLi9mYuUzN10CajNjLwMDOtsWZz5CZjRTLsN3buMTZx0iev1mLjFmY00CZvBnLw4iMy4SMuAjMugjNtUWauFkQlUzQl8mcnhSI", + value: + "!(groźnie-68.20.1.22.0.pod-4bac.moz-1e3.osl-4cd.sek-830.3ch-575.bob-28c.3ch-18d.row-bc.gro-7b8)!", + result: { + word: "groźnie", + correct: 20, + position: 1, + incorrect: 22, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 43, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjY30ybydmLhV2Yx0ybyBnLlVWLi9mcuIDNi1ieytmLw4yMx4CMuQTMugjNtUWauFkQlUzQl8mcnhSI", + value: "!(groźnie-68.14.0.13.0.krz-b42.rob-ee.pro-1cea.gro-7b8)!", + result: { + word: "groźnie", + correct: 14, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4I2NugTO30yby5yNmZTLy92ZuATOtcWYq5COwcTLslWbuAjL54SMuEjMugjNtUWauFkQlUzQl8mcnhSI", + value: "!(groźnie-68.21.1.9.0.mil-708.jag-90.gor-6f7.ro-798.7b8)!", + result: { + word: "groźnie", + correct: 21, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOidjLzI2Nt8mcn5CO50ievdnL1EjMt4mYv5iYkdTMt42bw5CO50yb6pnLx4SOx4CMuMjMugjNtUWauFkQlUzQl8mcnhSI", + value: + "!(groźnie-68.23.0.19.1.zzo-98.pon-17db.obn-215.woz-98.gro-7b3.7b8)!", + result: { + word: "groźnie", + correct: 23, + position: 0, + incorrect: 19, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 42, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4I2NucTY00ybydmL5QWMtkGbz5CO0MWLsh2YuEWMt4mcr5SZzkDMx0ievJnLkFzNz0ieyBnLw4CNy4SMuUjMugjNtUWauFkQlUzQl8mcnhSI", + value: + "!(groźnie-68.25.1.24.0.prz-371d.roz-1093e.krn-1a.chl-c48.sli-1d9.gro-4a7.7b8)!", + result: { + word: "groźnie", + correct: 25, + position: 1, + incorrect: 24, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 50, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOidTLvJ3ZuY2Ny0ybydnLwUTOtI3az5yM5gTYx0ieyBnLw4SNx4SMuAjMugjNtUWauFkQlUzQl8mcnhSI", + value: "!(groźnie-68.20.1.15.0.prz-1a893.skr-950.wro-27f.gro-7b8)!", + result: { + word: "groźnie", + correct: 20, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "Tysiek", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjY34CNwQTLvJ3ZuQmZ10CajNjLyEjNt8mc05yYxETL1p3YukDMx0SZsNnL0YWLi9mcukDOx0CbvpnLw4SMy4iMuYjMugjNtUWauFkQlUzQl8mcnhSI", + value: + "!(groźnie-68.26.2.21.0.zol-189.rob-f4.sle-109.czu-11c.tro-612.3ch-5fd.gro-404.7b8)!", + result: { + word: "groźnie", + correct: 26, + position: 2, + incorrect: 21, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 49, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjY30ybydmLhFWLvJ3duMDN0ETLvJHcuYWYi1ybspnLxMTLs9mcuMTO30SZ6NnLw4yNx4iMuAjMugjNtUWauFkQlUzQl8mcnhSI", + value: + "!(groźnie-68.20.2.17.0.sze-793.rol-31.zlo-baf.pro-1443.wro-aa.gro-7b8)!", + result: { + word: "groźnie", + correct: 20, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4I2NugTO30ybydmL1QzNtI3br5SMiFWL3R2buMGNy0CbpNnL2ITZx0SZpBnLw4iNx4SMuAjMugjNtUWauFkQlUzQl8mcnhSI", + value: + "!(groźnie-68.20.1.16.0.pie-1e26.sil-24c.odw-ab1.kor-745.gro-798.7b8)!", + result: { + word: "groźnie", + correct: 20, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "09.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/10-03-2025-diffle-difflepl-21-liter-w-3-slowach-large-green-circle-15-large-ye-1" +] = [ + { + date: "10.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxMGZx0ydh5CZlJTLldneuMTN00SYsdnLw4SNuEjL1EjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.15.1.5.0.wla-453.zwe-2ed.aw-1dc1)!", + result: { + word: "zawzięty", + correct: 15, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "10.03.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMjRWMtcnL0QTMtoXYuIjN30SYspnLw4yNuIjL1EjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.15.2.7.0.zla-762.az-144.w-1dc1)!", + result: { + word: "zawzięty", + correct: 15, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + }, + }, + { + date: "10.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMjRWMtcXY65SYj1yZ6dnLkVmMtU2d65yM0MTMtwWe35CMuETMuIjL4EjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.18.2.11.0.wyl-1343.zwe-2ed.wzg-ca.zaw-1dc1)!", + result: { + word: "zawzięty", + correct: 18, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxMGZx0yduE2YmFTLiFmeuEjZz0SasNnL4UTNtc3by5iMzMTMtMXe35CMuQTMuMjL2EjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.16.3.14.0.wys-1332.row-558.sli-3f1.zab-1fca.w-1dc1)!", + result: { + word: "zawzięty", + correct: 16, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxMGZx0ydhpnLjVWMx0SZp1mLw4iNuQjLxEjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.11.4.6.0.mie-11ec.zaw-1dc1)!", + result: { + word: "zawzięty", + correct: 11, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxMGZx0ydugjZyITLj5iY3UTLq5COzYWLwFmL2MjMtIWZugTOt8me65CMuITMuAjL3IjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.27.0.12.0.zzo-98.eb-236.ap-f38.j-57b.c-22f8.w-1dc1)!", + result: { + word: "zawzięty", + correct: 27, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxMGZx0ydhpnLzImMtoXe35yMz0ydhdmLkhTMtA3ch5CMuQTMuIjL4EjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.18.2.14.0.asp-18d.gaw-33.wyz-2b3.zaw-1dc1)!", + result: { + word: "zawzięty", + correct: 18, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMjRWMtcnLhNWZz0ychpnL1EWNtonc0VWau5CMuETMuMjL3EjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.17.3.11.0.nietrz-5a5.zas-3eca.w-1dc1)!", + result: { + word: "zawzięty", + correct: 17, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxMGZx4iZ4QWL3FmeuEGZy0SYpdnLwUjNtMXYs5SN00Se6JnLmJmMtUHaj5CMucTMuQjLyIjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: + "!(zawzięty-69.22.4.17.0.chu-2bf.rzy-45.las-650.wia-2da.zaw-d8f.1dc1)!", + result: { + word: "zawzięty", + correct: 22, + position: 4, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzYkFTL3FmeugjZx0SaztmLw4yNuIjLwEjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.10.2.7.0.ksi-1f8.zaw-1dc1)!", + result: { + word: "zawzięty", + correct: 10, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMjRWMtcnL4EWNx0CcuIWZ3ETLjFmLzcTLpdmLzQ2NtkWbucTZt8me65CMuATMuAjL0MjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: + "!(zawzięty-69.34.0.10.0.zzo-e7.mi-7d3.gi-73.ac-17eb.p-15a8.w-1dc1)!", + result: { + word: "zawzięty", + correct: 34, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 44, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxMGZx4yY3ETMtcnLjNzNtcmL2EDNtMmLidTNtomLwMTYt0mL4EzNy0yaugzMm1Cch5iNzITLiVmLmlDNt8Gb65CMuYTMuAjL5QjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: + "!(zawzięty-69.49.0.16.0.zlo-49f.eb-236.ap-f38.k-2718.m-a30.j-57b.c-416.g-73c.w-117c.1dc1)!", + result: { + word: "zawzięty", + correct: 49, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 65, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzYkFTL35iYldTMtMWYuMGNx0iYl5CO50yb6pnLw4SOuEjL5EjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.19.1.9.0.zzo-98.eb-14c.ac-17eb.w-1dc1)!", + result: { + word: "zawzięty", + correct: 19, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzYkFjLkFDNx0ydhpnL2EmYtUWat5CMuETMuEjL3EjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.17.1.11.0.mie-ba6.zaw-141d.1dc1)!", + result: { + word: "zawzięty", + correct: 17, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxMGZx4iZ2gTL3FmeuUDNtkHZn5SN1ITLq92duMTO4EWMtoncw5CMuMjMuQjL2EjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.16.4.23.0.prz-1a893.woj-255.gdy-45.zaw-86f.1dc1)!", + result: { + word: "zawzięty", + correct: 16, + position: 4, + incorrect: 23, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 43, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxMGZx0yducDN10iah5CO50yb6pnLw4SOuEjLzEjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.13.1.9.0.zzo-98.aj-547.w-1dc1)!", + result: { + word: "zawzięty", + correct: 13, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMjRWMtcXY65SZxMWL0VWbuMTYk1ychBnL2ITNtw2b65CMuMTMuIjLzEjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.13.2.13.0.zol-526.pas-da3.met-c1e.zaw-1dc1)!", + result: { + word: "zawzięty", + correct: 13, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "Tysiek", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMjRWMtcXY65SY1ETLpdXYukzY10CajNjL4MjNtIWZk5iM10CbnlmL5gTMtw2b65CMuYTMuMjL3EjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: + "!(zawzięty-69.17.3.16.0.zol-189.igl-52.deb-638.3ch-5c9.awi-15a.zaw-1dc1)!", + result: { + word: "zawzięty", + correct: 17, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzYkFTL3FmeuQDNx0Sa6dnLlhzNtoncn5yYhJGNtQ2bw5CMuETMuEjL5EjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.19.1.11.0.pod-4bac.grz-78e.wzi-144.zaw-1dc1)!", + result: { + word: "zawzięty", + correct: 19, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "10.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/12-01-2025-diffle-difflepl-grywebowe-22-litery-w-4-slowach-13-2-7-0" +] = [ + { + date: "12.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQDO40yY65SMhNWLlR3cuUjZ00CajNjLzMWMtw2a35CMucjLy4yMx4iMx0ya5kTJ0MUJ6NmezhSI", + value: "!(szczęk-12.13.2.7.0.wkl-1c3.3ch-4f5.ste-ca1.zc-884)!", + result: { + word: "szczęk", + correct: 13, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "12.01.2025", + }, + }, + { + date: "12.01.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN4gTLjp3cuYTOx0CclRnL3ATNtoHZ65CMuUTMuAjL54iMx0ya5kTJ0MUJ6NmezhSI", + value: "!(szczęk-12.9.0.15.0.zdz-507.tep-196.szc-884)!", + result: { + word: "szczęk", + correct: 9, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "12.01.2025", + }, + }, + { + date: "12.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQDO40yY6NnL1YGNtg2Yz4SOxETLyVneuITO2ITLs9GcuAjLwEjLw4SMx4iMx0ya5kTJ0MUJ6NmezhSI", + value: "!(szczęk-12.11.0.10.0.pol-2692.zur-119.3ch-4f5.szc-884)!", + result: { + word: "szczęk", + correct: 11, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "12.01.2025", + }, + }, + { + date: "12.01.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0gDOuQ2Y44SN4gjLlNGOtMmez5SMzUWLwN3duAjLzEjLw4yNy4iMx0ya5kTJ0MUJ6NmezhSI", + value: "!(szczęk-12.27.0.13.0.wsp-e31.szc-8ce.885.8cd.884)!", + result: { + word: "szczęk", + correct: 27, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "12.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/12-02-2025-diffle-difflepl-grywebowe-34-litery-w-4-slowach-19-2-13-0" +] = [ + { + date: "12.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzIWMt8Wa35CM0MTLhlmYuMGN00CbpBnL1czMtw2b65CMuMTMuIjL5EjLzQTL3gTJ0MUJhd3bygTJ1MUJz9Wa3hSI", + value: "!(wiosłować-43.19.2.13.0.zol-375.pil-44c.bia-340.wio-1b3)!", + result: { + word: "wiosłować", + correct: 19, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "12.02.2025", + }, + }, + { + date: "12.02.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjYx0ybp5SYxETLp52duEzNx0SasJmLwMDNtEWat5CMuETMuAjL3IjLzQTL3gTJ0MUJhd3bygTJ1MUJz9Wa3hSI", + value: "!(wiosłować-43.27.0.11.0.mia-430.bli-171.wni-11a.io-1b3)!", + result: { + word: "wiosłować", + correct: 27, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 38, + date: "12.02.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMiFTLvl2duIGOx0Cbz9mLlNDNx0ycvBnLw4COuMjL5EjLzQTL3gTJ0MUJhd3bygTJ1MUJz9Wa3hSI", + value: "!(wiosłować-43.19.3.8.0.pos-143e.osl-18b.wio-1b3)!", + result: { + word: "wiosłować", + correct: 19, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + }, + }, + { + date: "12.02.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzIWMt8Wa35yMhVTLslGcuYmYy0SdoNmLw4yNuEjL4EjLzQTL3gTJ0MUJhd3bygTJ1MUJz9Wa3hSI", + value: "!(wiosłować-43.18.1.7.0.chu-2bf.pil-5a3.wio-1b3)!", + result: { + word: "wiosłować", + correct: 18, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "12.02.2025", + }, + }, + { + date: "12.02.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMiFTLvl2dukzMtEGbk5CO50yb6pnLw4yNuIjL0EjLzQTL3gTJ0MUJhd3bygTJ1MUJz9Wa3hSI", + value: "!(wiosłować-43.14.2.7.0.zzo-98.dla-39.wio-1b3)!", + result: { + word: "wiosłować", + correct: 14, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "12.02.2025", + }, + }, + { + date: "12.02.2025", + nick: "Szuuz_Ekleer", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMiFTLvlmL4AjNtw2b35iZ00Cd1tmLw4yNuAjL2EjLzQTL3gTJ0MUJhd3bygTJ1MUJz9Wa3hSI", + value: "!(wiosłować-43.16.0.7.0.kut-4f.wol-608.io-1b3)!", + result: { + word: "wiosłować", + correct: 16, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "12.02.2025", + }, + }, + { + date: "12.02.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMiFTLvl2duYWO10ycvRmLkhTMtA3ch5CMuATMuIjL4EjLzQTL3gTJ0MUJhd3bygTJ1MUJz9Wa3hSI", + value: "!(wiosłować-43.18.2.10.0.asp-18d.dos-59f.wio-1b3)!", + result: { + word: "wiosłować", + correct: 18, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "12.02.2025", + }, + }, + { + date: "12.02.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzIWMt8Wa35yMhVTLslGcuYWNh1SajNnLw4SNuAjL4EjLzQTL3gTJ0MUJhd3bygTJ1MUJz9Wa3hSI", + value: "!(wiosłować-43.18.0.5.0.sci-a5f.pil-5a3.wio-1b3)!", + result: { + word: "wiosłować", + correct: 18, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "12.02.2025", + }, + }, + { + date: "12.02.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjYx0ybp5CNy0CczdnLw4SOuIjLzEjLzQTL3gTJ0MUJhd3bygTJ1MUJz9Wa3hSI", + value: "!(wiosłować-43.13.2.9.0.wsp-24.io-1b3)!", + result: { + word: "wiosłować", + correct: 13, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 24, + date: "12.02.2025", + }, + }, + { + date: "12.02.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzIWMt8Wa35SOiVTLvx2cuQzMx0ycpNmL1EWNtonc0VWau5CMuETMuEjLzIjLzQTL3gTJ0MUJhd3bygTJ1MUJz9Wa3hSI", + value: "!(wiosłować-43.23.1.11.0.nietrz-5a5.cis-134.slo-5b9.wio-1b3)!", + result: { + word: "wiosłować", + correct: 23, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "12.02.2025", + }, + }, + { + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMiFTLvlmLyMzMx0yc5dnLw4SMuEjL1EjLzQTL3gTJ0MUJhd3bygTJ1MUJz9Wa3hSI", + value: "!(wiosłować-43.15.1.1.0.wys-1332.io-1b3)!", + result: { + word: "wiosłować", + correct: 15, + position: 1, + incorrect: 1, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + }, + }, + { + date: "12.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjYx0ybp5SN1ITLq92duMTO4EWMtoncw5CMuUTMuAjL3EjLzQTL3gTJ0MUJhd3bygTJ1MUJz9Wa3hSI", + value: "!(wiosłować-43.17.0.15.0.prz-1a893.woj-255.io-1b3)!", + result: { + word: "wiosłować", + correct: 17, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 32, + date: "12.02.2025", + }, + }, + { + date: "12.02.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjYx0ybpdnLjRDNtwWaw5yNl1yb6pnLw4SOuEjLzEjLzQTL3gTJ0MUJhd3bygTJ1MUJz9Wa3hSI", + value: "!(wiosłować-43.13.1.9.0.zzo-e7.pil-44c.wio-1b3)!", + result: { + word: "wiosłować", + correct: 13, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "12.02.2025", + }, + }, + { + date: "12.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjYx0ybp5COwYTLs9mLzUTLoN2duQzMhZTMtoncw5CMuETMuEjLxIjLzQTL3gTJ0MUJhd3bygTJ1MUJz9Wa3hSI", + value: "!(wiosłować-43.21.1.11.0.prz-16a34.wch-53.ol-608.io-1b3)!", + result: { + word: "wiosłować", + correct: 21, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "12.02.2025", + }, + }, + { + date: "12.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzIWMt8WaukDNh1Cb5dnL2UTMtMXat5iMlVTLzFGcuUmZ50CajNnLwATNto3c15CMuUTMuAjL0MjLzQTL3gTJ0MUJhd3bygTJ1MUJz9Wa3hSI", + value: + "!(wiosłować-43.34.0.15.0.usz-500.sch-9fe.pas-5e2.mis-156.wyl-a49.io-1b3)!", + result: { + word: "wiosłować", + correct: 34, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 49, + date: "12.02.2025", + }, + }, + { + date: "12.02.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjYx4SZ3ETLvl2duYTYi1SZp1mLw4SOuIjL4EjLzQTL3gTJ0MUJhd3bygTJ1MUJz9Wa3hSI", + value: "!(wiosłować-43.18.2.9.0.mie-ba6.wio-17e.1b3)!", + result: { + word: "wiosłować", + correct: 18, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "12.02.2025", + }, + }, + { + date: "12.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzIWMt8Wa35SZjhTL39GZuIWYlFTLs9GcugTOt8me65CMuATMuEjLwIjLzQTL3gTJ0MUJhd3bygTJ1MUJz9Wa3hSI", + value: "!(wiosłować-43.20.1.10.0.zzo-98.pol-1eab.dow-8ce.wio-1b3)!", + result: { + word: "wiosłować", + correct: 20, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "12.02.2025", + }, + }, + { + date: "12.02.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjYx0ybuI2Mj1SZpdnLw4COuAjL0EjLzQTL3gTJ0MUJhd3bygTJ1MUJz9Wa3hSI", + value: "!(wiosłować-43.14.0.8.0.wie-c3b.o-1b3)!", + result: { + word: "wiosłować", + correct: 14, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "12.02.2025", + }, + }, + { + date: "12.02.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjYx0ybp5iMzMTMtMXeuYDNl1CczdnLw4SOuEjLwIjLzQTL3gTJ0MUJhd3bygTJ1MUJz9Wa3hSI", + value: "!(wiosłować-43.20.1.9.0.wsp-e46.ys-1332.io-1b3)!", + result: { + word: "wiosłować", + correct: 20, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "12.02.2025", + }, + }, + { + date: "12.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzIWMt8WaugDM20CbvdnLjFmY00CZvBnLw4iNuAjL3EjLzQTL3gTJ0MUJhd3bygTJ1MUJz9Wa3hSI", + value: "!(wiosłować-43.17.0.6.0.pod-4bac.wol-608.io-1b3)!", + result: { + word: "wiosłować", + correct: 17, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "12.02.2025", + }, + }, + { + date: "12.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjYx0ybpdnLldjMtwWaz5CNyMTLvxGcugDM30Cbp1mLw4yMuEjLyIjLzQTL3gTJ0MUJhd3bygTJ1MUJz9Wa3hSI", + value: "!(wiosłować-43.22.1.3.0.mil-708.plo-324.sil-27e.wio-1b3)!", + result: { + word: "wiosłować", + correct: 22, + position: 1, + incorrect: 3, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "12.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/13-03-2025-diffle-difflepl-grywebowe-27-liter-w-4-slowach-large-green-circle" +] = [ + { + date: "13.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMx0ycukjM20SZpBnLhVDNtg2Yz4SZ1gTLvJ3auAjLwEjLw4yNx4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.17.0.10.0.kro-85e.3ch-45a.pie-629.s-12f)!", + result: { + word: "pisemnie", + correct: 17, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMx0ycuImMyETLllGcuUmMtkmbt5yNlVDOtoncw5CMuYjLz4SMy4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.21.3.6.0.prz-85e7.mni-2e.pie-122b.s-12f)!", + result: { + word: "pisemnie", + correct: 21, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZyETLzlGcuETO10CajNjLkZTMtUHaj5CZ4ITLlxmLwIjM0ETL6JHcuAjL0EjLw4COx4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.18.0.14.0.prz-14220.le-28d.chu-16d.3ch-591.pis-12f)!", + result: { + word: "pisemnie", + correct: 18, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMx0ycpBnLkdDNtg2Yz4SZ20CajJjLzQjMtwWZj5SM10ychJmLiNTLuVnL3IDOtEGcz5CNhVTL6JHdllmbuMjL3EjLz4iMz4iM30SZp5WblNXawhSI", + value: + "!(pisemnie-72.32.3.17.3.nietrz-5a4.spa-827.un-3b.bas-51.cel-243.2ch-6e.3ch-47d.pis-12f)!", + result: { + word: "pisemnie", + correct: 32, + position: 3, + incorrect: 17, + knownIncorrect: 3, + totalWords: 8, + totalLetters: 52, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJTMuEmMx0ycpBnL0kzMtMXat5SO1YmMt42br5CMukjLy4CMy4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.20.2.9.0.kon-2f59.mis-394.pis-12a.12f)!", + result: { + word: "pisemnie", + correct: 20, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJTMuEmMx0ycuQ2N10icpBnL5UTLrp3cuAjL0EjLw4iMy4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.22.0.14.0.szk-59.pir-57d.s-12a.12f)!", + result: { + word: "pisemnie", + correct: 22, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJTMuEmMx0ycuEGNtcWauEGZyITLr9GcuAjLwEjLx4iMy4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.22.1.10.0.pok-22da.ig-4a.s-12a.12f)!", + result: { + word: "pisemnie", + correct: 22, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMx0ycpBnLkJDNtIHcz5CMucjLx4iMx4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.12.1.7.0.spr-42d.pis-12f)!", + result: { + word: "pisemnie", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZyEjLhJTMtMnLhR2NtUWaw5iZiJTL1h2YuAjLwEjLw4SMy4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.21.0.10.0.chu-2bf.pie-7da.s-12a.12f)!", + result: { + word: "pisemnie", + correct: 21, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJTMtMXaw5CZ0ETLsl2cugTOy0SZpJWZp5mLmlTMt42bn5CMukjLz4COx4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.18.3.9.0.gon-19f.niebie-298.sil-14d.pis-12f)!", + result: { + word: "pisemnie", + correct: 18, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJTMtMXauYGMy0Saz5iYhFTLzlHcuEGMy0ybwNnLjZTYtEmcn5CMucjLy4SNy4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.25.2.7.0.gra-a6c.spo-20a.pys-1ab.si-20f.is-12f)!", + result: { + word: "pisemnie", + correct: 25, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMx0ycpBnL3IWMtUHc15CMzETLhB3cllmbuAjLyEjLy4yNx4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.17.2.12.0.niespa-130.upu-1b7.pis-12f)!", + result: { + word: "pisemnie", + correct: 17, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZyEjLlJTMtMXaw5iYm1ycvdmLjRTL3VmLzkDOhFTL6JHcuAjL2EjLx4SNy4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.25.1.16.0.prz-1a893.ew-4c.gos-fb.pis-12e.12f)!", + result: { + word: "pisemnie", + correct: 25, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMx4SZyETLzlmLhZmMx0yYv5iZkFTLuVGcuYWMtsWdl5SMukjLz4iNy4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.26.3.9.1.euk-1f.pen-1df.oc-12fa.is-12e.12f)!", + result: { + word: "pisemnie", + correct: 26, + position: 3, + incorrect: 9, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 38, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMx0ycpBnL2EmYtUWat5CMugjLy4iMx4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.12.2.8.0.mie-ba6.pis-12f)!", + result: { + word: "pisemnie", + correct: 12, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZyETLzlGcuAjZx0SZqVnLkhjMtUGbuMGNtcXZw5yM1YTLvFmeuEjLzEjLw4iNy4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.26.0.13.1.zao-653.pew-4c.le-28d.uje-1f0.pis-12f)!", + result: { + word: "pisemnie", + correct: 26, + position: 0, + incorrect: 13, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 39, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJTMtMnL4QTNtUWaw5CMucjLw4iMx4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.12.0.7.0.pie-548.s-12f)!", + result: { + word: "pisemnie", + correct: 12, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMx0ycpBnL4MjNtIHZ65SZy0Sau1mLlVTLhtWduAjLyEjLx4CMy4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.20.1.12.0.uka-5e.mni-2e.zdr-638.pis-12f)!", + result: { + word: "pisemnie", + correct: 20, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZyETLzlGcucTMx0iblNnLmZGNtM3buEWM3MTL6JHcuAjLyEjLx4CMy4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.20.1.12.0.prz-371a.os-4ff.sen-117.pis-12f)!", + result: { + word: "pisemnie", + correct: 20, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZyETLzlGcuQGMx0yclRmL3ETMt4mLwUTL05yYyETLwV2cuMzMhNTLzl3duAjL1EjLz4SOy4iM30SZp5WblNXawhSI", + value: + "!(pisemnie-72.29.3.15.0.wys-3a33.sep-12c.t-50.n-117.des-10d.pis-12f)!", + result: { + word: "pisemnie", + correct: 29, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 47, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Tysiek", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJTMuUmMx0ycpBnL2UDNtg2Yz4SMh1icpdmL0ATNtg2Yz4iNhJWLllWbuAjLyEjLz4CNy4iM30SZp5WblNXawhSI", + value: + "!(pisemnie-72.24.3.12.0.mie-ba6.3ch-504.gir-a1.3ch-456.pis-12e.12f)!", + result: { + word: "pisemnie", + correct: 24, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMx0ycp5SNj1yc15SYxITNto3bw5CMugjLw4SOx4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.19.0.8.0.poz-521a.us-c5.is-12f)!", + result: { + word: "pisemnie", + correct: 19, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Swbd", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMx0ycuUTMyETLllGcuUmMuUmYtkmbt5CMtUWazVWau5iYz0ibpNnLw0Sd6NmLkhTYtQWe35SZ3cTLvJHduAjLyEjL24SOy4iM30SZp5WblNXawhSI", + value: + "!(pisemnie-72.29.6.12.0.tro-77e.wyd-a8d.czu-0.sin-3b.niesie-0.mni-be.2e.pie-1215.s-12f)!", + result: { + word: "pisemnie", + correct: 29, + position: 6, + incorrect: 12, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 47, + date: "13.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/14-03-2025-diffle-difflepl-21-liter-w-3-slowach-large-green-circle-10-large-yell" +] = [ + { + date: "14.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmYy0ibhNnLjlTL0FmYuQTL3lHZuAjLxEjLw4CMx4yM30SZp5WYzhSI", + value: "!(sanie-73.10.0.11.0.dyw-4.bat-9c.san-2bc)!", + result: { + word: "sanie", + correct: 10, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmYy0ibhNnL4ITL1JnYuEmN50SY0NnL4QjMt4WYs5yYhVTLr9GcuAjLzEjLw4yNx4yM30SZp5WYzhSI", + value: "!(sanie-73.17.0.13.0.pok-5ac.lan-248.sta-96a.bru-28.san-2bc)!", + result: { + word: "sanie", + correct: 17, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "14.03.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJmMt4WYz5yY2EWLhJ3ZuETZ0ETLs9GcuAjLwEjLw4yMx4yM30SZp5WYzhSI", + value: "!(sanie-73.13.0.10.0.pol-14e1.gra-a6c.san-2bc)!", + result: { + word: "sanie", + correct: 13, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + }, + }, + { + date: "14.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYiJTLu5SZ0ETLtF2cuEWZ40ycvBnL4YWLzlGauAjLwEjLx4CNx4yM30SZp5WYzhSI", + value: "!(sanie-73.14.1.10.0.his-f8.pos-8ea.sam-14e.n-2bc)!", + result: { + word: "sanie", + correct: 14, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmYy0ibhNnL4QjMt4WYs5CMyQTLuFWbuEGZyITLr9GcuAjLxEjLy4yMx4yM30SZp5WYzhSI", + value: "!(sanie-73.13.2.11.0.pok-22da.man-420.lan-248.san-2bc)!", + result: { + word: "sanie", + correct: 13, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJmMuATM00ibh5yYtEWZz5iMzUTLoN2MuUTZx0ybr5SMmVWLhp3cuEmMx0ibhRnLkZ2Mt4WYw5SY5QTLyF2ZuEjLyIjLw4iNy4yM30SZp5WYzhSI", + value: + "!(sanie-73.26.0.22.1.gar-49a.pan-3fd.tan-12a.sza-ef1.ko-1e5.3ch-532.sea-c.an-410.2bc)!", + result: { + word: "sanie", + correct: 26, + position: 0, + incorrect: 22, + knownIncorrect: 1, + totalWords: 9, + totalLetters: 48, + date: "14.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZyEjLlJTMtMXaw5iYm1ycvdmLjRTL3VmLzkDOhFTL6JHcuAjL2EjLx4SNy4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.25.1.16.0.prz-1a893.ew-4c.gos-fb.pis-12e.12f)!", + result: { + word: "pisemnie", + correct: 25, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "13.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYiJTLuFmLkJDNtIHcz5CMucjLw4CMx4yM30SZp5WYzhSI", + value: "!(sanie-73.10.0.7.0.spr-42d.an-2bc)!", + result: { + word: "sanie", + correct: 10, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmYy0ibh5yNxETLhl2cuQ2N10icpBnL5UTLrp3cuAjL1EjLx4SNx4yM30SZp5WYzhSI", + value: "!(sanie-73.15.1.15.0.szk-59.pir-57d.sia-117.an-2bc)!", + result: { + word: "sanie", + correct: 15, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJmMt4WYz5iMl1iblRnL1EGZtAXYu5iZiJTL1h2YuAjLwEjL24CMx4yM30SZp5WYzhSI", + value: "!(sanie-73.10.6.10.0.chu-2bf.nap-da5.ten-e2.san-2bc)!", + result: { + word: "sanie", + correct: 10, + position: 6, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJmMt4WYuMGNtE2cz5SYxczMtoncw5CMugjLx4yMx4yM30SZp5WYzhSI", + value: "!(sanie-73.13.1.8.0.prz-371a.ssa-4c.an-2bc)!", + result: { + word: "sanie", + correct: 13, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "14.03.2025", + }, + }, + { + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmYy0ibhNnLwcDNy0ycvBnLjZTYtEmcn5CMuUjLw4CMx4yM30SZp5WYzhSI", + value: "!(sanie-73.10.0.5.0.gra-a6c.pos-2470.san-2bc)!", + result: { + word: "sanie", + correct: 10, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 15, + }, + }, + { + date: "14.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYiJTLuF2cuQjZx0CZ5dnLw4SNuEjL44yM30SZp5WYzhSI", + value: "!(sanie-73.8.1.5.0.wyd-1f4.san-2bc)!", + result: { + word: "sanie", + correct: 8, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJmMt4WYz5yY10SauFmLxcTNtcXY6VWau5CMukjLy4iMx4yM30SZp5WYzhSI", + value: "!(sanie-73.12.2.9.0.niezaw-571.ani-5c.san-2bc)!", + result: { + word: "sanie", + correct: 12, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJmMt4WYuETNtE2YuMGNtE2cucjM40SYwNnLyE2Yx0SZpdnLmFTLrVXZuAjL0EjLy4yNy4yM30SZp5WYzhSI", + value: "!(sanie-73.27.2.14.0.euk-1f.wie-1ca2.spa-827.sa-4c.ca-51.an-2bc)!", + result: { + word: "sanie", + correct: 27, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmYy0ibhNnLiBzMx0CZh5mLw4yNuIjL34yM30SZp5WYzhSI", + value: "!(sanie-73.7.2.7.0.nad-130b.san-2bc)!", + result: { + word: "sanie", + correct: 7, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmYy0ibh5yY00SYzNnLiJjMt4WYm5CMukjLx4CNx4yM30SZp5WYzhSI", + value: "!(sanie-73.14.1.9.0.fan-22b.ssa-4c.an-2bc)!", + result: { + word: "sanie", + correct: 14, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYiJTLuF2cuYTYi1SZp1mLw4SOuEjL54yM30SZp5WYzhSI", + value: "!(sanie-73.9.1.9.0.mie-ba6.san-2bc)!", + result: { + word: "sanie", + correct: 9, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYiJTLuF2cuY2Y50Cc5dnLw4COuEjL54yM30SZp5WYzhSI", + value: "!(sanie-73.9.1.8.0.wyp-9cf.san-2bc)!", + result: { + word: "sanie", + correct: 9, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "Swbd", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJmMt4WYz5iY2ETLuFGcuUzMx0Cb1hmL2MTL3pHZuAjL1EjLw4SMx4yM30SZp5WYzhSI", + value: "!(sanie-73.11.0.15.0.dzw-36.hul-135.pan-16b.san-2bc)!", + result: { + word: "sanie", + correct: 11, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJmMt4WYuE2MtEWaz5SYxITNto3bw5CMugjLw4SNx4yM30SZp5WYzhSI", + value: "!(sanie-73.15.0.8.0.poz-521a.sia-3a.an-2bc)!", + result: { + word: "sanie", + correct: 15, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "Tysiek", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYiJTLuF2cuYTYi1SZp1mLw4SOuEjL54yM30SZp5WYzhSI", + value: "!(sanie-73.9.1.9.0.mie-ba6.san-2bc)!", + result: { + word: "sanie", + correct: 9, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "14.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/15-02-2025-diffle-difflepl-grywebowe-31-liter-w-5-slowach-large-green-circle" +] = [ + { + date: "15.02.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGM54CN0YmL2ETOx0Cch5mL50SYudmLldzMtMWYs5CMuITMuAjL5EjL2QTL3gTJ0MUJpBXYuhSI", + value: "!(napić-46.19.0.12.0.lac-37e.gna-9.nap-1916.f44.90a)!", + result: { + word: "napić", + correct: 19, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "15.02.2025", + }, + }, + { + date: "15.02.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYwkjL3EGZuEmZ40Cch5mLmJmMtUHaj5CMuATMuEjL3EjL2QTL3gTJ0MUJpBXYuhSI", + value: "!(napić-46.17.1.10.0.chu-2bf.nap-8fa.da7.90a)!", + result: { + word: "napić", + correct: 17, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "15.02.2025", + }, + }, + { + date: "15.02.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYwkTLwFmbuYjMtAXYn5iM1QTLoN2MuQDZy0CbvpnL1ATNtQ3c35CMucTMuAjL0EjL2QTL3gTJ0MUJpBXYuhSI", + value: "!(napić-46.14.0.17.0.wst-505.zol-2d4.3ch-452.gap-26.nap-90a)!", + result: { + word: "napić", + correct: 14, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "15.02.2025", + }, + }, + { + date: "15.02.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGM50CcugTYz0iYh5mL2EmYtUWat5CMuITMuEjLxEjL2QTL3gTJ0MUJpBXYuhSI", + value: "!(napić-46.11.1.12.0.mie-ba6.nab-3a8.p-90a)!", + result: { + word: "napić", + correct: 11, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "15.02.2025", + }, + }, + { + date: "15.02.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGM50CcuEGNm1CZuUWZh1ydh5mLwMDNtEWat5CMuMTMuAjL1EjL2QTL3gTJ0MUJpBXYuhSI", + value: "!(napić-46.15.0.13.0.mia-430.naw-aee.d-f4a.p-90a)!", + result: { + word: "napić", + correct: 15, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "15.02.2025", + }, + }, + { + date: "15.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhBTOuEmZ40CcuYWZ20ych5mLiBjNt02bk5CMuMTMuEjL1EjL2QTL3gTJ0MUJpBXYuhSI", + value: "!(napić-46.15.1.13.0.dom-60b.nas-6ef.p-8fa.90a)!", + result: { + word: "napić", + correct: 15, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "15.02.2025", + }, + }, + { + date: "15.02.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhBTOtAXYu5CZ4ETLwNXYuAjL44SMugjL2QTL3gTJ0MUJpBXYuhSI", + value: "!(napić-46.8.1.8.0.asp-18d.nap-90a)!", + result: { + word: "napić", + correct: 8, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "15.02.2025", + }, + }, + { + date: "15.02.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhBTOtAXYu5SOkVTLsFGcuYTZ50iYhpnLyMzMx0yc5dnLw4SOuEjLzEjL2QTL3gTJ0MUJpBXYuhSI", + value: "!(napić-46.13.1.9.0.wys-1332.zab-9e6.pal-5d9.nap-90a)!", + result: { + word: "napić", + correct: 13, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "15.02.2025", + }, + }, + { + date: "15.02.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYwkTLwFmbuYjMtAXYn5SM5ETLwV3auYWN3kTMtoncw5CMuETMuAjL0EjL2QTL3gTJ0MUJpBXYuhSI", + value: "!(napić-46.14.0.11.0.prz-1975f.kup-191.gap-26.nap-90a)!", + result: { + word: "napić", + correct: 14, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "15.02.2025", + }, + }, + { + date: "15.02.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYwkTLwFmbuYDNl1CczdnLw4CMx4SMucjL2QTL3gTJ0MUJpBXYuhSI", + value: "!(napić-46.7.1.10.0.wsp-e46.nap-90a)!", + result: { + word: "napić", + correct: 7, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "15.02.2025", + }, + }, + { + date: "15.02.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYwkjL4IzNuUGZx0Cch5mL2QTZtA3c35SMuYTMuEjL1EjL2QTL3gTJ0MUJpBXYuhSI", + value: "!(napić-46.15.1.16.1.wsp-e46.nap-1de.728.90a)!", + result: { + word: "napić", + correct: 15, + position: 1, + incorrect: 16, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 32, + date: "15.02.2025", + }, + }, + { + date: "15.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGM50CcugTYz0iYh5mLwETMtEGd15iYwkTLrFmeuUWY40SajNnLhhjNt8mc65CMuAjMuIjL4EjL2QTL3gTJ0MUJpBXYuhSI", + value: + "!(napić-46.18.2.20.0.zro-68a.sci-8ae.zak-90b.uta-110.nab-3a8.p-90a)!", + result: { + word: "napić", + correct: 18, + position: 2, + incorrect: 20, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "15.02.2025", + }, + }, + { + date: "15.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYwkTLwFmbuYjMtAXYn5CMhFTLiVHbukTO30yY6NnLkNzNtw2b65CMucTMuAjLzEjL2QTL3gTJ0MUJpBXYuhSI", + value: "!(napić-46.13.0.17.0.zol-73d.szc-799.lub-1a0.gap-26.nap-90a)!", + result: { + word: "napić", + correct: 13, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "15.02.2025", + }, + }, + { + date: "15.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGM50Cch5mLhVTLwVGbuITN00CajNjLjVDMx0Cc5dnL5ADMy0ic0NnLw4SOuAjL3EjL2QTL3gTJ0MUJpBXYuhSI", + value: "!(napić-46.17.0.9.0.str-2009.wyp-105c.3ch-452.lep-5a.nap-90a)!", + result: { + word: "napić", + correct: 17, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "15.02.2025", + }, + }, + { + date: "15.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYwkTLwFmbuUTY10SYwNnLjFmY00CZvBnLw4SOuEjLwEjL2QTL3gTJ0MUJpBXYuhSI", + value: "!(napić-46.10.1.9.0.pod-4bac.spa-5a5.nap-90a)!", + result: { + word: "napić", + correct: 10, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "15.02.2025", + }, + }, + { + date: "15.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGM50Cch5mL2EGZtc2bw5yM3ETLp52cugTOt8me65CMuATMuEjLzEjL2QTL3gTJ0MUJpBXYuhSI", + value: "!(napić-46.13.1.10.0.zzo-98.sni-173.pog-da6.nap-90a)!", + result: { + word: "napić", + correct: 13, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "15.02.2025", + }, + }, + { + date: "15.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhBTOtAXYu5iMmJWLpB3cuMTO4EWMtoncw5CMuATMuQjLwEjL2QTL3gTJ0MUJpBXYuhSI", + value: "!(napić-46.10.4.10.0.prz-1a893.spi-bf2.nap-90a)!", + result: { + word: "napić", + correct: 10, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "15.02.2025", + }, + }, + { + date: "15.02.2025", + nick: "Lvter", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhBTOtAnL4E2MtIWYu5SY4ITLuFGduczY30Sa3VnLxQGNtkncn5CMuQTMuIjL0EjL2QTL3gTJ0MUJpBXYuhSI", + value: "!(napić-46.14.2.14.0.gry-4d1.uwi-7c7.tan-28a.nab-3a8.p-90a)!", + result: { + word: "napić", + correct: 14, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "15.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/15-03-2025-diffle-difflepl-grywebowe-24-litery-w-3-slowach-large-green-circle" +] = [ + { + date: "15.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkzY50ydvRmLwMDNwETL6JHcugjYyETLsl3duAjLwEjLw4CNx4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.14.0.10.0.wyl-12b8.prz-10430.dow-9c9)!", + result: { + word: "dowództwo", + correct: 14, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkzY50ydvRmLzI2NtI3bn5yYwUTLvB3cllmbuAjLzEjLx4CNx4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.14.1.13.0.niespo-50c.gor-7b3.dow-9c9)!", + result: { + word: "dowództwo", + correct: 14, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOjljL1EWOtc3bk5SNhVTL6JHdllmbuAjLwEjLy4yNx4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.17.2.10.0.nietrz-5a5.dow-9a5.9c9)!", + result: { + word: "dowództwo", + correct: 17, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MWOtc3bk5iY3AjYtQ2bw5SO1YmMt42br5CMukjLx4iNx4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.16.1.9.0.kon-2f59.pod-b07b.dow-9c9)!", + result: { + word: "dowództwo", + correct: 16, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MWOtc3bk5yM0QWMtc3bw5yYlJTMtcHZv5yN5ETMt0We35CMukjLz4CMy4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.20.3.9.0.wym-1197.odw-12ec.pow-1d43.dow-9c9)!", + result: { + word: "dowództwo", + correct: 20, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkzY54SYklTL39mLxYWLsVmLyIWMt82dk5iN0UWLwN3duAjL3EjLx4yMy4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.23.1.17.0.wsp-e46.dwo-1b2.el-f1.ow-9da.9c9)!", + result: { + word: "dowództwo", + correct: 23, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MWOtc3bk5SY4kTL0R2buIGZtQWZ35CMucjLy4yNx4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.17.2.7.0.wed-db.odt-98a.dow-9c9)!", + result: { + word: "dowództwo", + correct: 17, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "15.03.2025", + }, + }, + { + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MWOtc3bk5iMzMTMtMXe35CMuUjLx4SMx4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.11.1.5.0.wys-1332.dow-9c9)!", + result: { + word: "dowództwo", + correct: 11, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + }, + }, + { + date: "15.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkzY50ydvRmL5IGZx0CZ5dnLyIWMt8mci5CZ4ETLwNXYuAjL3EjLw4COx4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.18.0.17.0.asp-18d.bro-1b2.wyd-1db9.dow-9c9)!", + result: { + word: "dowództwo", + correct: 18, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOjlTL39GZuUTNy0iavdnLzkDOhFTL6JHcuAjL3EjLx4CNx4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.14.1.17.0.prz-1a893.woj-255.dow-9c9)!", + result: { + word: "dowództwo", + correct: 14, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 32, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkzY50ydvRmL0UDZx0ydvBnL5EWLvdHduEGZ00ieydnL3UWLvpneuAjLxEjLz4SNy4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.25.3.11.0.zzo-e7.wrz-4da.two-a9.pow-1d54.dow-9c9)!", + result: { + word: "dowództwo", + correct: 25, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkzY50ydvRmL5EDOtc3bu5CMuIjLy4yMx4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.13.2.2.0.now-819.dow-9c9)!", + result: { + word: "dowództwo", + correct: 13, + position: 2, + incorrect: 2, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOjljL3MWOucjY50ydvRmLlVDZx0ydvBnL4kTLvpneuAjLxEjLx4COy4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.28.1.11.0.zzo-98.pow-1d5e.dow-9b7.9c7.9c9)!", + result: { + word: "dowództwo", + correct: 28, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOjlTL39GZuIDMx0CajRnL4kTLvpneuAjLxEjLy4SNx4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.15.2.11.0.zzo-98.tch-102.dow-9c9)!", + result: { + word: "dowództwo", + correct: 15, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOjlTL39GZuIjN2IWMtoncw5iNhJWLllWbuAjL0EjLw4CMy4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.20.0.14.0.mie-ba6.prz-1b662.dow-9c9)!", + result: { + word: "dowództwo", + correct: 20, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 34, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkzY50ydvRmLwYTMto2b35CN1QWMtc3bw5CZyETL692dukTO3ATMto3by5SZ3MTLjFGbuAjL1EjLw4SMz4CN30yb3RnekNjQlMzQlc3bkhSI", + value: + "!(dowództwo-74.31.0.15.0.lac-37e.roz-10799.woz-12d.pow-1d54.woj-160.dow-9c9)!", + result: { + word: "dowództwo", + correct: 31, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 46, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MWOtcnL4MTMtI3bk5yMxITL6R2buMWYiRTLk9GcuAjLyEjLw4SOx4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.19.0.12.0.pod-4bac.odz-213.dor-138.w-9c9)!", + result: { + word: "dowództwo", + correct: 19, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "15.03.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOjlTL39GZuQzMt82ds5SOkJTLpd3YuAjLwEjLw4CNx4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.14.0.10.0.cwi-2d9.lwo-34.dow-9c9)!", + result: { + word: "dowództwo", + correct: 14, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + }, + }, + { + date: "15.03.2025", + nick: "Swbd", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MWOtc3bk5SNjJTLq92duIjMtcXZt5COzQTL0VmLzADNtUHbuIjNzETLppHZuAjL1EjLw4CMy4CN30yb3RnekNjQlMzQlc3bkhSI", + value: + "!(dowództwo-74.20.0.15.0.dzi-1362.lu-403.et-438.mew-22.woj-2c5.dow-9c9)!", + result: { + word: "dowództwo", + correct: 20, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "15.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/16-03-2025-diffle-difflepl-grywebowe-29-liter-w-6-slowach-large-green-circle" +] = [ + { + date: "16.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDMy0ibldnLxQWNuUzNz0CajNjLyE2MtsWZs5SO2gTMtoXZi5iN4MTLwVGZuAjL1EjLx4yMx4SN30yc15WZ3hSI", + value: + "!(wenus-75.13.1.15.0.dep-386.bez-1869.lek-3a2.3ch-375.5d1.wen-208)!", + result: { + word: "wenus", + correct: 13, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 29, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4AjMt4WZ35iZy0ydl5mL2EmYtUWat5CMuATMuQjL54SN30yc15WZ3hSI", + value: "!(wenus-75.9.4.10.0.mie-ba6.new-2f.wen-208)!", + result: { + word: "wenus", + correct: 9, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDMy0ibldnLxAjNt4WZj5SZk1yc1NnLmVmMt4WZt5yNxITLnVGZuAjL4EjLx4yNx4SN30yc15WZ3hSI", + value: "!(wenus-75.17.1.18.0.deg-217.men-2ef.sus-de.cen-601.wen-208)!", + result: { + word: "wenus", + correct: 17, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "16.03.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDMy0ibldnLmNTNt4WZt5yN1QTLvBXduAjLzEjLx4CMx4SN30yc15WZ3hSI", + value: "!(wenus-75.10.1.13.0.upo-457.men-53f.wen-208)!", + result: { + word: "wenus", + correct: 10, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + }, + }, + { + date: "16.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4AjMt4WZ35SZi1iblZmLkRWLvNXYuAjLwEjLx4CMx4SN30yc15WZ3hSI", + value: "!(wenus-75.10.1.10.0.aso-dd.fen-be.wen-208)!", + result: { + word: "wenus", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDMy0ibldnL0EWNtonc0VWau5CMuETMuIjL34SN30yc15WZ3hSI", + value: "!(wenus-75.7.2.11.0.nietrz-5a4.wen-208)!", + result: { + word: "wenus", + correct: 7, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4AjMt4WZ35CZ3UTLylGcukTNtsmez5CMuUTMuIjL54SN30yc15WZ3hSI", + value: "!(wenus-75.9.2.15.0.szk-59.pir-57d.wen-208)!", + result: { + word: "wenus", + correct: 9, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOwITLuV2duMmMt02bt5CNmFTLkl3duAjLwEjLw4CMx4SN30yc15WZ3hSI", + value: "!(wenus-75.10.0.10.0.wyd-1f4.mom-2c.wen-208)!", + result: { + word: "wenus", + correct: 10, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOwITLuV2duATLkVmaukTZx0ibhxmLzIDNtkncr5CMuMTMuEjL54SN30yc15WZ3hSI", + value: "!(wenus-75.9.1.13.0.kry-423.lan-1e9.jed-0.wen-208)!", + result: { + word: "wenus", + correct: 9, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDMy4iN0ETLu5CMtUmLzYWLsV2duUzNtcXZw5yY2EWLhJ3ZuAjLzEjLy4yNx4SN30yc15WZ3hSI", + value: "!(wenus-75.17.2.13.0.gra-a6c.pew-75.wel-f3.e-0.n-146.208)!", + result: { + word: "wenus", + correct: 17, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDMy0ibuQ2Yx0ycldnLkJDNtIHcz5CMukjLy4CMx4SN30yc15WZ3hSI", + value: "!(wenus-75.10.2.9.0.spr-42d.wes-1cd.n-208)!", + result: { + word: "wenus", + correct: 10, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "Swbd", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOwITLuV2duczMx0Sdp5mL2MWLu9GbuMzMtMXdo5CMukjLw4SMx4SN30yc15WZ3hSI", + value: "!(wenus-75.11.0.9.0.hus-33.lon-c6.niu-137.wen-208)!", + result: { + word: "wenus", + correct: 11, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4AjMt4WZ35SZ10SYrVnLw4COuIjL34SN30yc15WZ3hSI", + value: "!(wenus-75.7.2.8.0.uka-5e.wen-208)!", + result: { + word: "wenus", + correct: 7, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4AjMt4WZ35iZzUTLuVWbuYWMtsWdl5CMucjLx4CMx4SN30yc15WZ3hSI", + value: "!(wenus-75.10.1.7.0.euk-1f.men-53f.wen-208)!", + result: { + word: "wenus", + correct: 10, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDMy0ibl5yN0ITLq92duMTO4EWMtoncw5CMuUTMuEjL54SN30yc15WZ3hSI", + value: "!(wenus-75.9.1.15.0.prz-1a893.woj-247.en-208)!", + result: { + word: "wenus", + correct: 9, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDMy0ibldnLhFzNz0ieyBnLw4COuEjL34SN30yc15WZ3hSI", + value: "!(wenus-75.7.1.8.0.prz-371a.wen-208)!", + result: { + word: "wenus", + correct: 7, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4AjMt4WZ35iZy0ydl5mLhFjM10ievBnLw4yNuQjL44SN30yc15WZ3hSI", + value: "!(wenus-75.8.4.7.0.poz-521a.new-2f.wen-208)!", + result: { + word: "wenus", + correct: 8, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOwITLuV2duM2NyETL1dHZucTZ30Sd6NnLw4yNuIjL54SN30yc15WZ3hSI", + value: "!(wenus-75.9.2.7.0.szu-7e7.dwu-127c.wen-208)!", + result: { + word: "wenus", + correct: 9, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOwITLuV2duQTYz0CajNjL4YjMtAXZy5iYhBzMtMXe35iZiJTL1h2YuAjL1EjLz4iMx4SN30yc15WZ3hSI", + value: "!(wenus-75.12.3.15.0.chu-2bf.wys-30ab.rep-268.3ch-3a4.wen-208)!", + result: { + word: "wenus", + correct: 12, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "16.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/17-03-2025-flag-pl-diffle-difflepl-grywebowe-26-liter-w-3-slowach-large-green-ci" +] = [ + { + date: "17.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjRDZz0CcuQzNhJTLrl3duYTYi1SZp1mLw4yMx4iMuETMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.11.2.13.0.mie-ba6.wyk-2a74.p-3d4c)!", + result: { + word: "wypukły", + correct: 11, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0Q2MuUmMkNjL2M2Yx4yY4AjMtAnLzQzMx0Cb5dnLw4iMx4CMuUjMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.25.0.12.0.wyl-1343.p-208c.1cc6.3d2e.3d4c)!", + result: { + word: "wypukły", + correct: 25, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGNkNTLwl3duYGO10icrVnLjVWMtsWdr5SOyETLjVHbucDMx0CbvpnLw4CNx4iMuYTMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.16.2.14.0.zol-107.luc-129.kuk-1ec.ukr-58f.wyp-3d4c)!", + result: { + word: "wypukły", + correct: 16, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0Q2MtAnLwQjZuI2NiJTLrl3duMGM30CbvpnLiZWNtg2Yz4iNxQTLyl3duYGZz0SatNnLw4COx4yMuIjMuYzNtknM4USNDVya1BXe3hSI", + value: + "!(wypukły-76.22.3.18.0.smi-3df.wyr-416.3ch-5fb.zol-70c.wyk-2b7b.f40.p-3d4c)!", + result: { + word: "wypukły", + correct: 22, + position: 3, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 43, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0Q2MtAXe35SN0ETL5xGcuQGOx0CczFmLw4iMx4SMuITMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.12.1.12.0.asp-18d.ply-145.wyp-3d4c)!", + result: { + word: "wypukły", + correct: 12, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0Q2MtAXe35iMxMTL1t2cucTNy0Cc1RmLw0SeyRnLhhjMtUHbn5yYwcTLs9meuYmYy0SdoNmLw4yNx4iNucTMuYzNtknM4USNDVya1BXe3hSI", + value: + "!(wypukły-76.17.6.17.0.chu-2bf.zol-70c.glu-28a.try-0.dup-257.sku-312.wyp-3d4c)!", + result: { + word: "wypukły", + correct: 17, + position: 6, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0Q2MuADO4EjLlZ2MtAXeuYDNl1CczdnLw4iMx4CMukTMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.19.0.12.0.wsp-e46.yp-3fe.1880.3d4c)!", + result: { + word: "wypukły", + correct: 19, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjRDZz0CcuQGOm1yauIzMzETLzl3duAjL34CMuQTMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.14.0.7.0.wys-1332.k-f8d.p-3d4c)!", + result: { + word: "wypukły", + correct: 14, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0Q2MtAXe35SMmFTLst2cuEGM40icv1mLwEmMtg2Yz4CZl1yb6pnLw4CNx4iMuQTMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.14.2.14.0.zzo-ed.3ch-2a0.mor-80a.skl-1f1.wyp-3d4c)!", + result: { + word: "wypukły", + correct: 14, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjRDZz0Cc5dnLxQ2Nx0Cbv5iM0IWL6J3auAjL44iMuITMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.12.2.8.0.krz-b42.ol-17d1.wyp-3d4c)!", + result: { + word: "wypukły", + correct: 12, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGNkNTLw5yMiNWLrlnLyMWMtM2c35yMlJTMtw2br5CO50yb6pnLw4SNx4SMugTMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.18.1.15.0.zzo-98.kol-12e3.wsc-1c2.yk-cb3.p-3d4c)!", + result: { + word: "wypukły", + correct: 18, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGNkNTLwl3duIWNtkHZn5yYkZTLvxmL1UjMto2b35yM5gTYx0ieyBnLw4yMy4SMuUTMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.15.1.23.0.prz-1a893.woj-255.lo-6dc.gdy-5b.wyp-3d4c)!", + result: { + word: "wypukły", + correct: 15, + position: 1, + incorrect: 23, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0Q2MtAXe35iMl1ya15SO5MTLvx2auUDN00ychxmL1MjNtg2Yz4yM50yYlpmLw4yNx4SMuUTMuYzNtknM4USNDVya1BXe3hSI", + value: + "!(wypukły-76.15.1.17.0.jec-93.3ch-635.las-445.klo-399.uk-e2.wyp-3d4c)!", + result: { + word: "wypukły", + correct: 15, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "Swbd", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0Q2MtAXe35SNldTMtM2bw5SNjRTL1JHduAjL54SMuETMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.11.1.9.0.tru-4c5.poc-17e5.wyp-3d4c)!", + result: { + word: "wypukły", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGNkNjL0Q2Yx4SMjNjMtAnLilDNx0Cb5dnLkFzNz0ieyBnLw4CNx4SMuIjMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.22.1.14.0.prz-371d.wyl-149b.p-23c1.1cd4.3d4c)!", + result: { + word: "wypukły", + correct: 22, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjRDZz0Cc5dnLlZWNt8Gbr5yNl1yb6pnLw4CMx4SMuETMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.11.1.10.0.zzo-e7.klo-5fe.wyp-3d4c)!", + result: { + word: "wypukły", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGNkNjLjJDZz0Cc5dnLkNjZts2bw5CO50yb6pnLw4iMx4SMucTMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.17.1.12.0.zzo-98.pok-f3d.wyp-3d2c.3d4c)!", + result: { + word: "wypukły", + correct: 17, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0Q2MuQDZjFTLwl3duYzM5ETLwFmbuImMi1CbwNnLjFmY00CZvBnLw4yMx4iMuIjMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.22.2.13.0.pod-4bac.spl-b2b.nap-1936.wyp-1cd4.3d4c)!", + result: { + word: "wypukły", + correct: 22, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "17.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/18-02-2025-flag-pl-diffle-difflepl-grywebowe-przerwa-techniczna-nie-to-nie-jest-" +] = [ + { + date: "18.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4M2MuQDZ24CZkVjLkVjNtwWY65yM0kTLhh2YuAjLzEjLx4COy4SO00SZpdHZlxWY6hSI", + value: "!(zaledwie-49.28.1.13.0.cha-943.zal-65d.5dd.6d4.3c8)!", + result: { + word: "zaledwie", + correct: 28, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "18.02.2025", + }, + }, + { + date: "18.02.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgzYz4CNkZTLsFmeuM2Nz0CbhZmL2MzMtwWYi5yN1MTLwF2auU2Nx0ych1mLlZTMtMWY05yY2EWLhJ3ZuAjLzEjLw4CNz4SO00SZpdHZlxWY6hSI", + value: + "!(zaledwie-49.34.0.13.0.gra-a6c.tac-16e.mas-17e.kap-357.bal-336.fal-37c.zal-6d4.3c8)!", + result: { + word: "zaledwie", + correct: 34, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 47, + date: "18.02.2025", + }, + }, + { + date: "18.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgzYz0CbhpnLmNDOtEmez5CZ3ITLsFmYuMzNy0CbhBnLyMWLlZWYuETLvtWauAjLxEjLx4CMy4SO00SZpdHZlxWY6hSI", + value: + "!(zaledwie-49.20.1.11.0.iko-1.afe-c2.pal-273.bal-27d.sza-83f.zal-3c8)!", + result: { + word: "zaledwie", + correct: 20, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "18.02.2025", + }, + }, + { + date: "18.02.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgzYz0CbhpnL2UzMtIHcz5CMuYjLy4iMx4SO00SZpdHZlxWY6hSI", + value: "!(zaledwie-49.12.2.6.0.spr-356.zal-3c8)!", + result: { + word: "zaledwie", + correct: 12, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "18.02.2025", + }, + }, + { + date: "18.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOjNTLs5CO5cTMtcXY65SZ50ydhdmL0YWMtQWe35CMukjL14SMy4SO00SZpdHZlxWY6hSI", + value: "!(zaledwie-49.21.5.9.0.wyd-1f4.gaw-9e.zaw-1798.l-3c8)!", + result: { + word: "zaledwie", + correct: 21, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "18.02.2025", + }, + }, + { + date: "18.02.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgzYz0CbuEjZh1ydhpnLkJDNtIHcz5CMugjLz4COx4SO00SZpdHZlxWY6hSI", + value: "!(zaledwie-49.18.3.8.0.spr-42d.zaw-af1.l-3c8)!", + result: { + word: "zaledwie", + correct: 18, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "18.02.2025", + }, + }, + { + date: "18.02.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOjNTLs5SMlFWL35SN5UTLiFmeukTNmJTLu92auAjLxEjLy4SOx4SO00SZpdHZlxWY6hSI", + value: "!(zaledwie-49.19.2.11.0.kon-2f59.zab-595.w-ae1.l-3c8)!", + result: { + word: "zaledwie", + correct: 19, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "18.02.2025", + }, + }, + { + date: "18.02.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOjNjLmFmNtwWY65iNhJWLllWbuEjLwEjLy4SOx4SO00SZpdHZlxWY6hSI", + value: "!(zaledwie-49.19.2.10.1.mie-ba6.zal-6af.3c8)!", + result: { + word: "zaledwie", + correct: 19, + position: 2, + incorrect: 10, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 31, + date: "18.02.2025", + }, + }, + { + date: "18.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4M2MukDM30CbhpnLzkDOhFTL6JHcuAjLwEjLx4COx4SO00SZpdHZlxWY6hSI", + value: "!(zaledwie-49.18.1.10.0.prz-1a893.zal-709.3c8)!", + result: { + word: "zaledwie", + correct: 18, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "18.02.2025", + }, + }, + { + date: "18.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4M2MuQDZ20CbukTZ10iYhpnLidTL6J3duEWMyUTL69GcuAjLwEjLw4SOy4SO00SZpdHZlxWY6hSI", + value: "!(zaledwie-49.29.0.10.0.poz-521a.wrz-7b.zab-5e9.l-6d4.3c8)!", + result: { + word: "zaledwie", + correct: 29, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "18.02.2025", + }, + }, + { + date: "18.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgzYz0CbhpnLzYTMtQWYi5iNj1CclNnLmFTLrVXZuAjLwEjL04yNx4SO00SZpdHZlxWY6hSI", + value: "!(zaledwie-49.17.4.10.0.euk-1f.sep-c6.bad-163.zal-3c8)!", + result: { + word: "zaledwie", + correct: 17, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "18.02.2025", + }, + }, + { + date: "18.02.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgzYz0CbuM2Nz0iauAzMyETLkFmeuETLrp3YuYmNzQWL69mcuAjLzEjLw4iNy4SO00SZpdHZlxWY6hSI", + value: "!(zaledwie-49.26.0.13.0.roz-d36f.czk-1.zad-1230.j-37c.l-3c8)!", + result: { + word: "zaledwie", + correct: 26, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "18.02.2025", + }, + }, + { + date: "18.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOjNTLsFmeuUzMtQWY35SN0QTLrVmcuAjLyEjLz4yMx4SO00SZpdHZlxWY6hSI", + value: "!(zaledwie-49.13.3.12.0.rek-445.wad-35.zal-3c8)!", + result: { + word: "zaledwie", + correct: 13, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "18.02.2025", + }, + }, + { + date: "18.02.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOjNjLkdjNtwWY65COyITL0FWbuIjLzEjLz4iNx4SO00SZpdHZlxWY6hSI", + value: "!(zaledwie-49.16.3.13.2.mat-228.zal-67d.3c8)!", + result: { + word: "zaledwie", + correct: 16, + position: 3, + incorrect: 13, + knownIncorrect: 2, + totalWords: 3, + totalLetters: 32, + date: "18.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/18-03-2025-diffle-difflepl-grywebowe-28-liter-w-5-slowach-large-green-circle" +] = [ + { + date: "18.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSN44iN00yauQTMtMnLw0SYp5iN4YmZtoncw5CMukjLx4COx4yN30CchtWawhSI", + value: "!(pikap-77.18.1.9.0.prz-ff86.ia-0.s-14.k-46.85)!", + result: { + word: "pikap", + correct: 18, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSN44CMtsWaw5iNhJWLllWbuAjLxEjLw4iMx4yN30CchtWawhSI", + value: "!(pikap-77.12.0.11.0.mie-ba6.pik-0.85)!", + result: { + word: "pikap", + correct: 12, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDOtsWaw5CMiFTLhl2YuUTMtoXat5CMucjLw4SMx4yN30CchtWawhSI", + value: "!(pikap-77.11.0.7.0.miz-15.cia-1b0.pik-85)!", + result: { + word: "pikap", + correct: 11, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDOtsWaw5CMtsWYm5yMxYWLt92auAjLzEjLx4CMx4yN30CchtWawhSI", + value: "!(pikap-77.10.1.13.0.kom-f13.fak-0.pik-85)!", + result: { + word: "pikap", + correct: 10, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDOtsWauYGOx0Saz5SYkJjMts2bw5CMukjLx4iMx4yN30CchtWawhSI", + value: "!(pikap-77.12.1.9.0.pok-22da.si-18f.ik-85)!", + result: { + word: "pikap", + correct: 12, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1gjLw0yapBnLkJDNtIHcz5CMukjLx4SMx4yN30CchtWawhSI", + value: "!(pikap-77.11.1.9.0.spr-42d.pik-0.85)!", + result: { + word: "pikap", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSN40yapBnLmRTMtEGbi5yYjRWLhJ3ZuQWNh1CchtmLhBTMtEWbp5iZiJTL1h2YuAjL4EjLx4CNx4yN30CchtWawhSI", + value: + "!(pikap-77.14.1.18.0.chu-2bf.ima-10a.kap-a5d.gra-dcc.bla-14f.pik-85)!", + result: { + word: "pikap", + correct: 14, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSN44SYx4SMuIDZuQTLrlmL4kzMtMXduImYh1CbhBnLzEWLtF2ZuAjL2EjLw4yNy4yN30CchtWawhSI", + value: "!(pikap-77.27.0.16.0.gam-a3.pal-abb.us-398.ik-4.d2.1.1a.85)!", + result: { + word: "pikap", + correct: 27, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 43, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDOuYDNuEWMtsWaw5CNhVTL6JHdllmbuAjLzEjLx4iNx4yN30CchtWawhSI", + value: "!(pikap-77.16.1.13.0.nietrz-5a4.pik-1a.46.85)!", + result: { + word: "pikap", + correct: 16, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSN40yapBnLz0yapZmL5ITMtkGbi5yMtsWd05SOlJTL6J3auAjL1EjLw4CNx4yN30CchtWawhSI", + value: "!(pikap-77.14.0.15.0.krz-2e9.tuk-3.bli-129.fik-3.pik-85)!", + result: { + word: "pikap", + correct: 14, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDOtsWaw5yMt02bi5CMj5CMtsmL4ETLzlmLzkDOhFTL6JHcuAjL4EjLx4CMy4yN30CchtWawhSI", + value: "!(pikap-77.20.1.18.0.prz-1a893.is-18.k-0.c0.bom-3.pik-85)!", + result: { + word: "pikap", + correct: 20, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1gTLrlGcuUWYz0icwNXZp5mLw4SOuEjL34yN30CchtWawhSI", + value: "!(pikap-77.7.1.9.0.niespr-3ae.pik-85)!", + result: { + word: "pikap", + correct: 7, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1gTLrlGcuMTLrlmZuY2M50SY6NnLmFTLrVXZuAjLyEjLx4yMx4yN30CchtWawhSI", + value: "!(pikap-77.13.1.12.0.euk-1f.sza-93f.fik-3.pik-85)!", + result: { + word: "pikap", + correct: 13, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDOuYDNtsmLiZmMtMXaw5CNmFTLkl3duAjLzEjLx4yMx4yN30CchtWawhSI", + value: "!(pikap-77.13.1.13.0.wyd-1f4.pis-2fb.k-46.85)!", + result: { + word: "pikap", + correct: 13, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "Swbd", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDOuYDNtsWaw5CZzITMtMGZv5iZtoWar5COwQTLyV2duAjL2EjLy4yMx4yN30CchtWawhSI", + value: "!(pikap-77.13.2.16.0.wer-408.kij-f.odc-123d.pik-46.85)!", + result: { + word: "pikap", + correct: 13, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1gTLr5iZ00iap5iY40Sas5SYhJTLhJHcuAjLzEjLy4yMx4yN30CchtWawhSI", + value: "!(pikap-77.13.2.13.0.pra-2aa.li-8b.ij-4f.k-85)!", + result: { + word: "pikap", + correct: 13, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSN40yap5SOy0SasBnLwQTLjl2augzNtcXYk5yNjVWLu9WbuAjLzEjLz4SMx4yN30CchtWawhSI", + value: "!(pikap-77.11.3.13.0.mon-ec7.daw-78.kic-40.pli-29.ik-85)!", + result: { + word: "pikap", + correct: 11, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1gjLw0yap5SYxITNto3bw5CMuYjLx4iMx4yN30CchtWawhSI", + value: "!(pikap-77.12.1.6.0.poz-521a.ik-0.85)!", + result: { + word: "pikap", + correct: 12, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1gTLr5iMtwmL3kTMt8WauEWM3MTL6JHcuAjLyEjLx4yMx4yN30CchtWawhSI", + value: "!(pikap-77.13.1.12.0.prz-371a.io-197.l-2.k-85)!", + result: { + word: "pikap", + correct: 13, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "18.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/19-03-2025-flag-pl-diffle-difflepl-grywebowe-31-liter-w-4-slowach-large-green-1" +] = [ + { + date: "19.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTL6JHZuATL6RmcugDZ10SdyJmL2EmYtUWat5CMuQTMuIjL1EjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.15.2.14.0.mie-ba6.bru-5d8.rdz-0.drz-3)!", + result: { + word: "drzazga", + correct: 15, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0ieyRmLiRTL6J3ZukTNtUXYw5CMuATMuEjL1EjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.15.1.10.0.pau-59.grz-4b.drz-3)!", + result: { + word: "drzazga", + correct: 15, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMugTL6JHZuMWMx0ickpnLw4CNuEjL2EjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.16.1.4.0.zdr-11c.drz-8.3)!", + result: { + word: "drzazga", + correct: 16, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0ieyRmL0EWNtonc0VWau5CMuATMuEjLxEjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.11.1.10.0.nietrz-5a4.drz-3)!", + result: { + word: "drzazga", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTL6JHZuQWNy0ic11mLzYmMtonc05SYkJjMts2bw5CMuMTMuAjL2EjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.16.0.13.0.pok-22da.trz-2f3.mur-25d.drz-3)!", + result: { + word: "drzazga", + correct: 16, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTL6JHZuQmM00icwNnLw4yNuEjLxEjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.11.1.7.0.spr-42d.drz-3)!", + result: { + word: "drzazga", + correct: 11, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTL65CMtEmcuATLtFGZuATL6RmcuYmNx0iclRnLxITOy0ychpnLlJmMtUHaj5CMuYTMuEjLzIjL4cTLhdmehpnckhSI", + value: + "!(drzazga-78.23.1.16.0.chu-2be.zas-2921.ter-16f.rdz-0.dam-0.ra-0.z-3)!", + result: { + word: "drzazga", + correct: 23, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "Swbd", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0ieyRmL2YmMtQXds5SYhdTLlp3YuAjL44SMukjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.9.1.8.0.cze-7aa.lut-2f6.drz-3)!", + result: { + word: "drzazga", + correct: 9, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0ieuUzYtEmL5MzMt8mL5UWL1JHZuMmNh1SYydmLw4SNuEjLyIjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.22.1.5.0.gra-a6c.dru-e9.o-339.a-c5.z-3)!", + result: { + word: "drzazga", + correct: 22, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0ieyRmL3ETLhpncuMTO4EWMtoncw5CMuITMuEjLzEjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.13.1.12.0.prz-1a893.rza-17.drz-3)!", + result: { + word: "drzazga", + correct: 13, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMtonck5SZ4UTLyJ2buYWNtoXYs5SZtEWbzVWau5CMuITMuEjL0EjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.14.1.12.0.niesma-e.laz-5f.obr-58e.drz-3)!", + result: { + word: "drzazga", + correct: 14, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTL6JHZuQjZx0CZ5dnLw4SNuEjLwEjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.10.1.5.0.wyd-1f4.drz-3)!", + result: { + word: "drzazga", + correct: 10, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMtonck5iN30ieydnLzUTLyp3cucjMtsWdl5CMuITMuIjL1EjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.15.2.12.0.euk-27.szr-53.wrz-76.drz-3)!", + result: { + word: "drzazga", + correct: 15, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0ieyRmLmdzMtoXYn5CM5UTLr9GcuYWYtUWat5CMuATMuEjLyEjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.12.1.10.0.mie-af.pok-590.gaz-37f.drz-3)!", + result: { + word: "drzazga", + correct: 12, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0ieyRmL3EWYtEmej5SYxITNto3bw5CMuATMuEjLxEjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.11.1.10.0.poz-521a.cza-aa7.drz-3)!", + result: { + word: "drzazga", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMtonck5SN00ickpnLw0icpxmL5I2NtIHaj5CN2UWMtMXe35CMugTMuEjL3EjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.17.1.18.0.wys-1e64.chr-7b9.lir-0.zdr-45.drz-3)!", + result: { + word: "drzazga", + correct: 17, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0ieyRmLhFzNz0ieyBnLw4iNuEjLxEjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.11.1.6.0.prz-371a.drz-3)!", + result: { + word: "drzazga", + correct: 11, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTL6JHZukjYx0ichdnL1ITMtcmbh5CNyMTLnFWbuQzYtMXZn5CMuUTMuIjL4EjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.18.2.15.0.ges-c4.mag-324.ang-125.war-1b9.drz-3)!", + result: { + word: "drzazga", + correct: 18, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "19.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/20-03-2025-flag-pl-diffle-difflepl-grywebowe-25-liter-w-3-slowach-large-green-ci" +] = [ + { + date: "20.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjVTLsFmZuADZi1CbhBnL2EmYtUWat5CMuMTMuEjLxEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.11.1.13.0.mie-ba6.pal-bd0.fal-5c0)!", + result: { + word: "fałsz", + correct: 11, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjVTLsFmZugjZ10CblBnLzAjMtoXYs5yM0MTMtwWe35CMuITMuIjLxEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.11.2.12.0.wyl-1343.laz-203.pel-5f8.fal-5c0)!", + result: { + word: "fałsz", + correct: 11, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwMWNtwWYm5iY2EWLsFmYuUGO10SYsdmL4UjY30ieyBnLxEjMtcXe65CMuYTMuEjLzEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.13.1.16.0.zyw-211.prz-7b58.gla-58e.bal-a6b.fal-5c0)!", + result: { + word: "fałsz", + correct: 13, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjVTLsFmZukzY00SYsdmLyUmMtMXYt5SM4cTMtUWa35CMuYTMuIjLwEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.10.2.16.0.wie-1781.mas-2e2.gla-4c9.fal-5c0)!", + result: { + word: "fałsz", + correct: 10, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAzY10CbhZmLwczMtEGb35SZzgTL09GcugTOt8me65CMuITMuIjLwEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.10.2.12.0.zzo-98.pot-83e.wla-370.fal-5c0)!", + result: { + word: "fałsz", + correct: 10, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAzY10CbhZmLjRGMx0CbhpnLkhTMtA3ch5CMuMTMuEjLyEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.12.1.13.0.asp-18d.zal-10dc.fal-5c0)!", + result: { + word: "fałsz", + correct: 12, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwMWNtwWYm5SY5ETL1p3cuATL3JHZuUzNtMXYo5iZ50CbwNnLwEzMt8Gbi5iYiJTLjFGbuQWZt8me65CMuUjMuQjL1EjL5cTL6NnM4USNDVSYmhSI", + value: + "!(fałsz-79.15.4.25.0.zzo-ed.lac-2bb.blo-310.spl-9f.has-75.drw-0.szu-19a.fal-5c0)!", + result: { + word: "fałsz", + correct: 15, + position: 4, + incorrect: 25, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 44, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjVTLsFmZuUmMi1Cbh1mL1QDNtMXYs5iMzMTMtMXe35CMuMTMuIjLyEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.12.2.13.0.wys-1332.las-445.mal-b2e.fal-5c0)!", + result: { + word: "fałsz", + correct: 12, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjVTLsFmZugDM30iezVnLjZTMtMmez5iM2QGNtoncw5CMuYTMuEjLwEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.10.1.16.0.prz-4d62.szc-16c.usz-708.fal-5c0)!", + result: { + word: "fałsz", + correct: 10, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Swbd", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjVTLsFmZuMWYhFTLyR3cuQGM40CcvtmLlNGNtEmez5SYzQWMtUWa35CMuYTMuMjLyEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.12.3.16.0.wie-1d3a.sza-4ce.kop-80d.str-1aac.fal-5c0)!", + result: { + word: "fałsz", + correct: 12, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwMWNtwWYm5CZ4YTLzF2auATLvd3cuMTO4EWMtoncw5CMugTMuIjLwEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.10.2.18.0.prz-1a893.swo-0.kas-68d.fal-5c0)!", + result: { + word: "fałsz", + correct: 10, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjVTLsFmZuQGNz0CajNjL3UWLvx2dugTOt8me65CMuETMuMjLwEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.10.3.11.0.zzo-98.wlo-e7.3ch-34d.fal-5c0)!", + result: { + word: "fałsz", + correct: 10, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAzY10CbhZmLkRTNtwWYz5SOygTLhxmYuETNz0CajNjLmlDNt8Gb65CMuETMuMjLyEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.12.3.11.0.zlo-49f.3ch-351.bla-829.sal-54d.fal-5c0)!", + result: { + word: "fałsz", + correct: 12, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjVTLsFmZuczM10SYsdmLiJTYtEmez5CZxczMtoncw5CMuITMuUjLxEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.11.5.12.0.prz-371d.sza-a2b.gla-537.fal-5c0)!", + result: { + word: "fałsz", + correct: 11, + position: 5, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwMWNtwWYm5iNx0ychRmL5UjZy0ibvtmLw4yNuEjLwEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.10.1.7.0.kon-2f59.das-16.fal-5c0)!", + result: { + word: "fałsz", + correct: 10, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAzY10CbhZmLwkzMtIXYn5SOyITLqFGbucTZt8me65CMuQTMuIjLwEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.10.2.14.0.zzo-e7.laj-229.gar-390.fal-5c0)!", + result: { + word: "fałsz", + correct: 10, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjVTLsFmZuAzY10ychxmLihTL5x2cuU2Yz0SdsdmL2QTZtA3c35CMucTMuQjL2EjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.16.4.17.0.wsp-e46.glu-3ce.sly-8b.las-5c0.fal-5c0)!", + result: { + word: "fałsz", + correct: 16, + position: 4, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwMWNtwWYm5CMkJWLsFGcuImY20CbhdnLkRzMtg2Yz4yNhRTLhx2ZugTOt8me65CMuMTMuMjL2EjL5cTL6NnM4USNDVSYmhSI", + value: + "!(fałsz-79.16.3.13.0.zzo-98.gla-4a7.3ch-34d.wal-6bb.pal-bd0.fal-5c0)!", + result: { + word: "fałsz", + correct: 16, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjVTLsFmZuU2Yz0SdsdmLzAjMtoXYs5yYhJGNtQ2bw5CMuETMuIjLyEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.12.2.11.0.pod-4bac.laz-203.glu-3ce.fal-5c0)!", + result: { + word: "fałsz", + correct: 12, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjVTLsFmZuQmY2ITLs9GcuIDNi1Cbh1mLwMWNtMXYs5yY0ITL1xGduEWOtcnez5CMuQTMuIjL2EjL5cTL6NnM4USNDVSYmhSI", + value: + "!(fałsz-79.16.2.14.0.szw-9a.tlu-24c.las-5c0.mal-b42.pol-26bd.fal-5c0)!", + result: { + word: "fałsz", + correct: 16, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "20.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/21-03-2025-diffle-difflepl-grywebowe-33-litery-w-5-slowach-large-green-circle" +] = [ + { + date: "21.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjhTLppHZuMWL6lGbuMzM10SZ6NnLlJTMtUnc65yM0MTMtwWe35CMuYTMuEjL2EjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.16.1.16.0.wyl-1343.zru-12e.sze-533.liz-c.dzi-8c)!", + result: { + word: "dziać", + correct: 16, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGOtkmek5iNxQTLhJmeuIjYl1CdvBnLw4SOuAjLxEjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.11.0.9.0.pot-eb2.zba-416.dzi-8c)!", + result: { + word: "dziać", + correct: 11, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY40Sa6RmLw0SYppnLwITLp12cuUmZt4Wdi5SOtEWaw5iMzMTMtMXe35CMuMTMuAjL3EjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.17.0.13.0.wys-1332.pia-9.bun-fe.smi-20.zia-0.dzi-8c)!", + result: { + word: "dziać", + correct: 17, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGOtkmek5SN50iepBnLlhzYt0WY65yM0MTMtwWe35CMuITMuIjLzEjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.13.2.12.0.wyl-1343.zam-c8e.piz-95.dzi-8c)!", + result: { + word: "dziać", + correct: 13, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGOtkmek5yNmFTL6lWbuMWL6lGbuQ2MkRTL69GcugTOt8me65CMuITMuEjL3EjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.17.1.12.0.zzo-98.poz-4d3d.liz-c.miz-1f7.dzi-8c)!", + result: { + word: "dziać", + correct: 17, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjhTLppHZuUGO4ITLrl3duYTZ50iYhpnLkhTMtA3ch5CMuYTMuIjL0EjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.14.2.16.0.asp-18d.zab-9e6.wyk-288e.dzi-8c)!", + result: { + word: "dziać", + correct: 14, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjhTLppHZuITYx0CajNjLilTYx0SYyRnLmFTLzlmZuATLhlmeuM2Mx0ievxmLmJmMtUHaj5CMuIjMuIjL1EjLwgTL3gTJ0MUJhlmekhSI", + value: + "!(dziać-80.15.2.22.0.chu-2bf.loz-13c.zia-0.fis-1f.tra-1a9b.3ch-1a2.dzi-8c)!", + result: { + word: "dziać", + correct: 15, + position: 2, + incorrect: 22, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjhTLppHZuQWM3MTL6JHcuAjL34SMukjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.9.1.7.0.prz-371d.dzi-8c)!", + result: { + word: "dziać", + correct: 9, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjhTLppHZuQWNx0iekVnL2QTZtA3c35CMuQTMuEjLxEjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.11.1.14.0.wsp-e46.udz-15d.dzi-8c)!", + result: { + word: "dziać", + correct: 11, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY40Sa6RmL0ETL6R2buATLhlmeuYWNtkme15CNzMTMtwWe35CMuITMuAjL5EjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.19.0.12.0.wyl-1334.uzi-5f.zia-0.odz-14.dzi-8c)!", + result: { + word: "dziać", + correct: 19, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjhTLppnLzUTLhlGZuIjZtk2Yz5CMuATMuAjLwEjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.10.0.10.0.sci-f2.dia-53.zi-8c)!", + result: { + word: "dziać", + correct: 10, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGOtkmek5SYzETLoN2MuATLnlmZuEWLzlGcuY2M20SZyRnL2gjYtwWYt5CMucTMuAjL0EjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.14.0.17.0.mal-b86.tre-63f.pis-a.fig-0.3ch-13a.dzi-8c)!", + result: { + word: "dziać", + correct: 14, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGOtkmek5CMtEWa65SN1ITLq92duMTO4EWMtoncw5CMukTMuAjLzEjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.13.0.19.0.prz-1a893.woj-255.zia-0.dzi-8c)!", + result: { + word: "dziać", + correct: 13, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjhTLppHZugjMtoXYr5iMt4me15iYwQTL5p3YuImYz0SZ6NnLmlDNt8Gb65CMuQTMuAjL5EjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.19.0.14.0.zlo-49f.sze-3bb.czy-40b.uzn-2.kaz-28.dzi-8c)!", + result: { + word: "dziać", + correct: 19, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGOuczNy0Sa6RmL1EWNtonc0VWau5CMuITMuIjLxEjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.11.2.12.0.nietrz-5a5.dzi-277.8c)!", + result: { + word: "dziać", + correct: 11, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGOtkmeuEWMtonck5yYjNTLhp3cugTOt8me65CMuQTMuAjL0EjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.14.0.14.0.zzo-98.sza-3cc.drz-1a.zi-8c)!", + result: { + word: "dziać", + correct: 14, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "Swbd", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGOtkmek5iYzITL3FmbllmbuQmNy0Sd6NmL4UGOtwWam5CMuYTMuEjLyEjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.12.1.16.0.fil-8e8.czu-26d.nienaw-23b.dzi-8c)!", + result: { + word: "dziać", + correct: 12, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGOuUWOy0Sa6RmL2EmYtUWat5CMuMTMuEjLyEjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.12.1.13.0.mie-ba6.dzi-29e.8c)!", + result: { + word: "dziać", + correct: 12, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjhTLppHZuATLhlmeuMWN10SZpBnLw4SOuEjLyEjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.12.1.9.0.pie-55c.zia-0.dzi-8c)!", + result: { + word: "dziać", + correct: 12, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGOuETLppHZuMzNx0iekpnLhRmMtoHZ15yYhJGNtQ2bw5CMuUTMuAjLzIjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.23.0.15.0.pod-4bac.udz-2da.zdz-173.dzi-1.8c)!", + result: { + word: "dziać", + correct: 23, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "21.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/22-02-2025-diffle-difflepl-18-liter-w-2-slowach-10-0-8-0" +] = [ + { + date: "22.02.2025", + nick: "ulsterboy", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMxEWMtw2bugTMkFWL6JHcuAjL44CMuATMuMTNtcDOlQzQlE2dvx2bwhSI", + value: "!(polować-53.10.0.8.0.prz-ad18.ol-1a12)!", + result: { + word: "polować", + correct: 10, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "22.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/22-03-2025-diffle-difflepl-grywebowe-33-litery-w-5-slowach-large-green-circle" +] = [ + { + date: "22.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDMh1CbhJmL2M2NtEmc05yN2MTLhx2ZuYTMtMWes5yM0MTMtwWe35CMuETMuQjL4EjLxgTLpt2Y5RnM4USNDVSYihSI", + value: "!(bałtycki-81.18.4.11.0.wyl-1343.lyc-16.gla-367.tra-7c6.bal-a03)!", + result: { + word: "bałtycki", + correct: 18, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDMh1CbhJmL00SYrRnL2EmYtUWat5CMuATMuQjL0EjLxgTLpt2Y5RnM4USNDVSYihSI", + value: "!(bałtycki-81.14.4.10.0.mie-ba6.tka-4.bal-a03)!", + result: { + word: "bałtycki", + correct: 14, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzATYtwWYi5SNzIWLsFWbuQjM50iehpnLw4yNuEjL1EjLxgTLpt2Y5RnM4USNDVSYihSI", + value: "!(bałtycki-81.15.1.7.0.zaz-924.mal-b35.bal-a03)!", + result: { + word: "bałtycki", + correct: 15, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzATYtwmL0ImMtQXYuMzNtwWei5CN4EjLkdjL0UTLoN2MuATLtFGbuUjMx0CZhNnL1QTMtkHbw5SM20ie5xmLwAjYx0SYyRnLmJmMtUHaj5CMuMjMuMjL0MjLxgTLpt2Y5RnM4USNDVSYihSI", + value: + "!(bałtycki-81.34.3.23.0.chu-2bf.tra-1b00.lyz-61.ply-145.sad-125.lam-0.3ch-54.7d.184.byl-73.at-2b4.l-a03)!", + result: { + word: "bałtycki", + correct: 34, + position: 3, + incorrect: 23, + knownIncorrect: 0, + totalWords: 12, + totalLetters: 60, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMwEWLsFmYuUzMi1Cbh1mLkhTMtA3ch5CMuETMuAjL1EjLxgTLpt2Y5RnM4USNDVSYihSI", + value: "!(bałtycki-81.15.0.11.0.asp-18d.mal-b35.bal-a03)!", + result: { + word: "bałtycki", + correct: 15, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDMh1CbhJmL2EmMtw2a15CZxczMtoncw5CMuITMuIjLyEjLxgTLpt2Y5RnM4USNDVSYihSI", + value: "!(bałtycki-81.12.2.12.0.prz-371d.ukl-2a6.bal-a03)!", + result: { + word: "bałtycki", + correct: 12, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDMh1CbhJmLxcjYtwWYw5SZ20ya5xmLyMzMx0yc5dnLw4SOuIjL5EjLxgTLpt2Y5RnM4USNDVSYihSI", + value: "!(bałtycki-81.19.2.9.0.wys-1332.lyk-6e.pal-b71.bal-a03)!", + result: { + word: "bałtycki", + correct: 19, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzATYtwWYi5SOk1CbhNmL5QzMt8Waw5SO10ya6NnLxEWMtUme15CMukTMuMjL4EjLxgTLpt2Y5RnM4USNDVSYihSI", + value: "!(bałtycki-81.18.3.19.0.uze-1a1.szk-59.pio-349.cal-d9.bal-a03)!", + result: { + word: "bałtycki", + correct: 18, + position: 3, + incorrect: 19, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzATYtwWYi5CNkJTLs9meucDNy0iavdnLiNTLjlHduMTO4EWMtoncw5CMucTMuQjL2EjLxgTLpt2Y5RnM4USNDVSYihSI", + value: "!(bałtycki-81.16.4.17.0.prz-1a893.tyc-3b.woj-247.zol-2d4.bal-a03)!", + result: { + word: "bałtycki", + correct: 16, + position: 4, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDMh5SNwEWLsFmYuIWMtQWes5yN4ITL5xGcuUDN00ychxmLmlDNt8Gb65CMuATMuMjL1IjLxgTLpt2Y5RnM4USNDVSYihSI", + value: + "!(bałtycki-81.25.3.10.0.zlo-49f.las-445.ply-287.lyd-1b.bal-a05.a03)!", + result: { + word: "bałtycki", + correct: 25, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzATYtwWYi5SOx0SestmLjFmY00CZvBnLw4COuIjL0EjLxgTLpt2Y5RnM4USNDVSYihSI", + value: "!(bałtycki-81.14.2.8.0.pod-4bac.kly-19.bal-a03)!", + result: { + word: "bałtycki", + correct: 14, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzATYuEjNh1CbhJmLzMTNtwWYz5yN1cTLsF2dugTOt8me65CMuITMuAjLyIjLxgTLpt2Y5RnM4USNDVSYihSI", + value: "!(bałtycki-81.22.0.12.0.zzo-98.wal-757.sal-533.bal-a61.a03)!", + result: { + word: "bałtycki", + correct: 22, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDMh5CNxkTLsFmYukjZh1yboNmLw4SOuEjL0EjLxgTLpt2Y5RnM4USNDVSYihSI", + value: "!(bałtycki-81.14.1.9.0.cho-af9.bal-914.a03)!", + result: { + word: "bałtycki", + correct: 14, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDMh1CbhJmL4MTL0FGcuIjMy0yYlxmLyczMtwWYj5iM5MTLrFGbugTOt8me65CMuUTMuQjL0IjLxgTLpt2Y5RnM4USNDVSYihSI", + value: + "!(bałtycki-81.24.4.15.0.zzo-98.lak-392.cal-372.lec-222.pat-38.bal-a03)!", + result: { + word: "bałtycki", + correct: 24, + position: 4, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDMh1Cbh5iNzQTLsVmYuYTO20CbvpnLw4iNuAjLzEjLxgTLpt2Y5RnM4USNDVSYihSI", + value: "!(bałtycki-81.13.0.6.0.zol-696.bel-436.al-a03)!", + result: { + word: "bałtycki", + correct: 13, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "22.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/a-moglo-byc-w-drugim-ja-i-moje-pomysly-29-12-2024-flag-pl-diffle-difflepl-gryweb" +] = [ + { + date: "29.12.2024", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjYzEjL2I2Mx4COjNTMuUWOzETLpB3cuI2Yh1yZhpnLw4yMx4SMucjMuQjNz0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-364.27.1.13.0.zag-acb.spi-139e.13c8.13b6.13b4)!", + result: { + word: "śpiewać", + correct: 27, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "29.12.2024", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0I2Mx0SawNnLzQTNtUWa65SN5ITLllmYuM2M00SZpNmLw4CNx4CMukTMuQjNz0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-364.19.0.14.0.cie-43c.bie-295.zie-543.spi-13b4)!", + result: { + word: "śpiewać", + correct: 19, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + }, + }, + { + date: "29.12.2024", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNiNTMtkGcz5yM4ETLwNXYuAjL34iMuATMuQjNz0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-364.10.2.7.0.asp-183.spi-13b4)!", + result: { + word: "śpiewać", + correct: 10, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "29.12.2024", + }, + }, + { + date: "29.12.2024", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjYzETLpB3cuYjNhdTL6JHcuAjL54SMuATMuQjNz0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-364.10.1.9.0.prz-7a66.spi-13b4)!", + result: { + word: "śpiewać", + correct: 10, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "29.12.2024", + }, + }, + { + date: "29.12.2024", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0I2Mx0SawNnLxMTZtA3c35CMukjLy4SOuQjNz0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-364.9.2.9.0.wsp-e31.spi-13b4)!", + result: { + word: "śpiewać", + correct: 9, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "29.12.2024", + }, + }, + { + date: "29.12.2024", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNiNTMtkGcz5yYtcXar5CN4ITLsl2cuETZy0iel1mLw4iMx4CMuYTMuQjNz0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-364.16.0.12.0.mez-2e1.sil-284.kiw-c.spi-13b4)!", + result: { + word: "śpiewać", + correct: 16, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "29.12.2024", + }, + }, + { + date: "29.12.2024", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjYzETLpB3cuMWL3l2auYGZyETLzl3duAjL24SMuMTMuQjNz0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-364.13.1.6.0.wys-12df.kiw-c.spi-13b4)!", + result: { + word: "śpiewać", + correct: 13, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "29.12.2024", + }, + }, + { + date: "29.12.2024", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0I2Mx0SawNnL5QjMto2b35iMidTYx0ieyBnLw4SNx4SMuETMuQjNz0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-364.11.1.15.0.prz-1a7b2.woj-249.spi-13b4)!", + result: { + word: "śpiewać", + correct: 11, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "29.12.2024", + }, + }, + { + date: "29.12.2024", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjYzETLpBnLyQTOtk2Yz5CNxcTLslWbuAjL14SMuMTMuQjNz0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-364.13.1.5.0.mil-714.sci-942.pi-13b4)!", + result: { + word: "śpiewać", + correct: 13, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "29.12.2024", + }, + }, + { + date: "29.12.2024", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0I2Mx0SawNnLzEDOtE2dr5yMyMTLql3duIzM10CbvpnLw4SNx4iMuUTMuQjNz0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-364.15.2.15.0.zol-532.wyj-323.kwa-813.spi-13b4)!", + result: { + word: "śpiewać", + correct: 15, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "29.12.2024", + }, + }, + { + date: "29.12.2024", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0I2Mx0SawNnLxYWMtQ2bw5iMwAjMtMXe35CO50yb6pnLw4yMx4CMuUTMuQjNz0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-364.15.0.13.0.zzo-98.wys-2002.pod-1f1.spi-13b4)!", + result: { + word: "śpiewać", + correct: 15, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "29.12.2024", + }, + }, + { + date: "29.12.2024", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjYzETLpB3cuMWL3l2auUmYy0icwNnL1YWY00CZvBnLw4SMx4SMucTMuQjNz0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-364.17.1.11.0.pod-4af5.spr-2be.kiw-c.spi-13b4)!", + result: { + word: "śpiewać", + correct: 17, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "29.12.2024", + }, + }, + { + date: "29.12.2024", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0I2Mx0SawNnL5IDNtcXYuVWau5iY2ETLnV2duAjL24yMuMTMuQjNz0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-364.13.3.6.0.weg-16b.nienaw-429.spi-13b4)!", + result: { + word: "śpiewać", + correct: 13, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "29.12.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-fajniutko-28-12-2024-flag-pl-diffle-difflepl-grywebowe-23-litery-w-3-slowach" +] = [ + { + date: "28.12.2024", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVTLoNWduUGZx0yY1tmL4MmMtUHaj5CMuYjLy4SNx4yM2MTLhtGdhh2Y1hSI", + value: "!(uchatka-363.15.2.6.0.chu-2c8.kuc-1de.uch-5f)!", + result: { + word: "uchatka", + correct: 15, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "28.12.2024", + }, + }, + { + date: "28.12.2024", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVTLoNWdukjMz0Sd6NmL5MDZtIHdz5CMugjLy4CNx4yM2MTLhtGdhh2Y1hSI", + value: "!(uchatka-363.14.2.8.0.str-d39.czu-329.uch-5f)!", + result: { + word: "uchatka", + correct: 14, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "28.12.2024", + }, + }, + { + date: "28.12.2024", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVTLoNWduATLjV2YuE2Y10Cbp1mL2IWLiVHduQmNzETLy92auAjLyEjLy4COx4yM2MTLhtGdhh2Y1hSI", + value: "!(uchatka-363.18.2.12.0.kor-136d.tub-b6.mil-5ca.cec-0.uch-5f)!", + result: { + word: "uchatka", + correct: 18, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "28.12.2024", + }, + }, + { + date: "28.12.2024", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVTLoNWduUTMl1SYoNmLyUWMtQXYs5SZ2ETLqFmZuATL0F2duUmMt8Gdh5iZ4kTMtEmez5SO4EWLhJ3ZuAjL0EjLw4COy4yM2MTLhtGdhh2Y1hSI", + value: + "!(uchatka-363.28.0.14.0.gra-a89.sza-198f.ato-2e.wat-0.faj-16e.lat-1e2.cha-e15.uch-5f)!", + result: { + word: "uchatka", + correct: 28, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 42, + date: "28.12.2024", + }, + }, + { + date: "28.12.2024", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ10CajVnL4kzMtEWaj5CMtMWY05iM0UTL09GcuAjLwEjLz4SNx4yM2MTLhtGdhh2Y1hSI", + value: "!(uchatka-363.15.3.10.0.pot-542.tac-0.cia-398.uch-5f)!", + result: { + word: "uchatka", + correct: 15, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "28.12.2024", + }, + }, + { + date: "28.12.2024", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVTLoNWduImNtQXau5CMtQ3cuQTMt8mc15CMucjLw4SNx4yM2MTLhtGdhh2Y1hSI", + value: "!(uchatka-363.15.0.7.0.uro-14.st-0.nit-6b.uch-5f)!", + result: { + word: "uchatka", + correct: 15, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "28.12.2024", + }, + }, + { + date: "28.12.2024", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWNtg2YuATLrRnLw0CdzVnL5QjMtA3b05CNmFTLkl3duAjLzEjLw4yNx4yM2MTLhtGdhh2Y1hSI", + value: "!(uchatka-363.17.0.13.0.wyd-1f4.top-249.ust-0.tk-0.ch-5f)!", + result: { + word: "uchatka", + correct: 17, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "28.12.2024", + }, + }, + { + date: "28.12.2024", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVTLoNWduUjNtMXdo5SM40Cd1NnL2IWLiVHduYWMtsWdl5SMukjLz4SMy4yM2MTLhtGdhh2Y1hSI", + value: "!(uchatka-363.21.3.9.1.euk-1f.tub-b6.sut-81.hus-65.uch-5f)!", + result: { + word: "uchatka", + correct: 21, + position: 3, + incorrect: 9, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 33, + date: "28.12.2024", + }, + }, + { + date: "28.12.2024", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWNtg2Y15SNxUWLhh2YuITMtQXYq5SMjVTLyFGduEmM00CbhdnL0YTLrFWbuQWYxUTL69GcuAjL0EjLx4COy4yM2MTLhtGdhh2Y1hSI", + value: + "!(uchatka-363.28.1.14.0.poz-51ad.mak-64.wal-42a.tar-5c1.jat-12.cha-e15.uch-5f)!", + result: { + word: "uchatka", + correct: 28, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 43, + date: "28.12.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-mi-sie-trafilo-doslownie-06-01-2025-diffle-difflepl-grywebowe-22-litery-w-2-" +] = [ + { + date: "06.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5UTMtI2bs5iZkBzMtM3bw5CMucjLx4CNx4iNtEWat9GdvJ2bshSI", + value: "!(lobotomia-6.14.1.7.0.pos-30df.lob-159)!", + result: { + word: "lobotomia", + correct: 14, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "06.01.2025", + }, + }, + { + date: "06.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5UTMtI2bs5CO4ITLsV3auEWZ1ITL39GcuAjLxEjLx4SNx4iNtEWat9GdvJ2bshSI", + value: "!(lobotomia-6.15.1.11.0.pow-25ea.kul-288.lob-159)!", + result: { + word: "lobotomia", + correct: 15, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "06.01.2025", + }, + }, + { + date: "06.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5UTMtI2bs5yMtI2bm5CMj1yblRnLhJWNtEWak5SM4kTLyF2duEjLzEjL04SMy4iNtEWat9GdvJ2bshSI", + value: "!(lobotomia-6.21.4.13.1.war-981.dia-5ba.teo-c0.fob-3.lob-159)!", + result: { + word: "lobotomia", + correct: 21, + position: 4, + incorrect: 13, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 38, + date: "06.01.2025", + }, + }, + { + date: "06.01.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO1ETLi9GbuAzNtQXat5yN1QTLvBXduEjLyEjL04yNx4iNtEWat9GdvJ2bshSI", + value: "!(lobotomia-6.17.4.12.1.upo-457.mit-70.lob-159)!", + result: { + word: "lobotomia", + correct: 17, + position: 4, + incorrect: 12, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 33, + date: "06.01.2025", + }, + }, + { + date: "06.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkTNx0iYvxmLzQTMt8mYv5yN1EWLt9GZuUDNx0SbvBnL1UWMtM2bt5CMukjLy4iMy4iNtEWat9GdvJ2bshSI", + value: "!(lobotomia-6.22.2.9.0.moc-1e5.pom-145.dom-a57.obo-143.lob-159)!", + result: { + word: "lobotomia", + correct: 22, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "06.01.2025", + }, + }, + { + date: "06.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkTNx4yN0ETLi9GbuEGOtw2bm5iZlNTLyB3cuAjLwEjLy4SOx4iNtEWat9GdvJ2bshSI", + value: "!(lobotomia-6.19.2.10.0.spr-3ef.fol-8a.lob-147.159)!", + result: { + word: "lobotomia", + correct: 19, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "06.01.2025", + }, + }, + { + date: "06.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5UTMtI2bs5SY40CbvZmL2YzMtA3br5COjJTL1h2YuAjLwEjLx4COx4iNtEWat9GdvJ2bshSI", + value: "!(lobotomia-6.18.1.10.0.chu-2c8.kop-366.fol-8a.lob-159)!", + result: { + word: "lobotomia", + correct: 18, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "06.01.2025", + }, + }, + { + date: "06.01.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5UTMtI2bs5SYwQWLj9GcuU2My0SYp1mL5gTYtEmcn5CMukjL04CNx4iNtEWat9GdvJ2bshSI", + value: "!(lobotomia-6.14.4.9.0.gra-a89.mia-23e.poc-d0a.lob-159)!", + result: { + word: "lobotomia", + correct: 14, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "06.01.2025", + }, + }, + { + date: "06.01.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO1ETLi9GbuEjNtQ2bz5CZjJjMts2bw5CMukjLx4yNx4iNtEWat9GdvJ2bshSI", + value: "!(lobotomia-6.17.1.9.0.pok-22cd.sod-61.lob-159)!", + result: { + word: "lobotomia", + correct: 17, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "06.01.2025", + }, + }, + { + date: "06.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO1ETLi9GbuEzNy0CcvRnLkJWYtQXZt5CMugjLz4iNx4iNtEWat9GdvJ2bshSI", + value: "!(lobotomia-6.16.3.8.0.met-abd.top-271.lob-159)!", + result: { + word: "lobotomia", + correct: 16, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "06.01.2025", + }, + }, + { + date: "06.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO1ETLi9GbuIjZh1CdvBnLw0SbhRnL3ATMtUWbl5CMukjLx4SOx4iNtEWat9GdvJ2bshSI", + value: "!(lobotomia-6.19.1.9.0.eme-107.tam-0.pot-af2.lob-159)!", + result: { + word: "lobotomia", + correct: 19, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "06.01.2025", + }, + }, + { + date: "06.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO1ETLi9GbuQDZy0ybvpnL5QWL09WbuYWMtsWdl5CMuYjLz4iMy4iNtEWat9GdvJ2bshSI", + value: "!(lobotomia-6.22.3.6.0.euk-1f.mot-d9.zoo-2d4.lob-159)!", + result: { + word: "lobotomia", + correct: 22, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "06.01.2025", + }, + }, + { + date: "06.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkTNx0iYvxmLiNmYtUWat5CMugjLz4iMx4iNtEWat9GdvJ2bshSI", + value: "!(lobotomia-6.12.3.8.0.mie-bcb.lob-159)!", + result: { + word: "lobotomia", + correct: 12, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "06.01.2025", + }, + }, + { + date: "06.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO1ETLi5yN00CdvxmLyI2NhFTL6JHcuAjLwEjLx4iNx4iNtEWat9GdvJ2bshSI", + value: "!(lobotomia-6.16.1.10.0.prz-1a7b2.lot-47.b-159)!", + result: { + word: "lobotomia", + correct: 16, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "06.01.2025", + }, + }, + { + date: "06.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkTNx0iYuUGNx0CduITMtw2bs5CZhFTNto3bw5CMukjLy4CMy4iNtEWat9GdvJ2bshSI", + value: "!(lobotomia-6.20.2.9.0.poz-51ad.lol-12.t-14e.b-159)!", + result: { + word: "lobotomia", + correct: 20, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "06.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-weszlo-dzisiaj-deg-deg-24-02-2025-diffle-difflepl-grywebowe-17-liter-w-2-slo" +] = [ + { + date: "24.02.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxYmZtUWaw5SO1YmMt42br5CMuMjLz4SMx4SN10SY6N3dyVWawhSI", + value: "!(pierwsza-55.11.3.3.0.kon-2f59.pie-ff1)!", + result: { + word: "pierwsza", + correct: 11, + position: 3, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "24.02.2025", + }, + }, + { + date: "24.02.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMmZWLllGcucDZ3ETLll2duEDOz0SZptmLjZTYtEmcn5CMuQjLz4CMy4SN10SY6N3dyVWawhSI", + value: "!(pierwsza-55.20.3.4.0.gra-a6c.kie-381.wie-17d7.pie-ff1)!", + result: { + word: "pierwsza", + correct: 20, + position: 3, + incorrect: 4, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "24.02.2025", + }, + }, + { + date: "24.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMmZmL4YDMx0SZpBnLlZmZtkmek5SNzgTLllWbuUmY4YWL69mcuEjLyEjL14COy4SN10SY6N3dyVWawhSI", + value: "!(pierwsza-55.28.5.12.1.roz-f8be.mie-835.dzi-ffe.pie-1068.ff1)!", + result: { + word: "pierwsza", + correct: 28, + position: 5, + incorrect: 12, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 45, + date: "24.02.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMmZWLllGcuIzNtIHZ35CO0IWMtcXY65CMugjL34iNx4SN10SY6N3dyVWawhSI", + value: "!(pierwsza-55.16.7.8.0.zaw-1b48.wdr-72.pie-ff1)!", + result: { + word: "pierwsza", + correct: 16, + position: 7, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + }, + }, + { + date: "24.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxYmZtUWauMTO4EWMtoncw5CMucjLy4iMx4SN10SY6N3dyVWawhSI", + value: "!(pierwsza-55.12.2.7.0.prz-1a893.ie-ff1)!", + result: { + word: "pierwsza", + correct: 12, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "24.02.2025", + }, + }, + { + date: "24.02.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxYmZtUWaw5SYhZTMtUWa35iNhNGOto3by5CMuUjL14iNx4SN10SY6N3dyVWawhSI", + value: "!(pierwsza-55.16.5.5.0.roz-8ca6.wie-16aa.pie-ff1)!", + result: { + word: "pierwsza", + correct: 16, + position: 5, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "24.02.2025", + }, + }, + { + date: "24.02.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEjZm1SZp5SYxczMtoncw5CMuMjL04iMx4SN10SY6N3dyVWawhSI", + value: "!(pierwsza-55.12.4.3.0.prz-371a.ie-ff1)!", + result: { + word: "pierwsza", + correct: 12, + position: 4, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "24.02.2025", + }, + }, + { + date: "24.02.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEjZm1SZpBnLxITLrlmcuUjNtcHdz5iZiJTL1h2YuAjLwEjL04COx4SN10SY6N3dyVWawhSI", + value: "!(pierwsza-55.18.4.10.0.chu-2bf.stw-65.rik-21.pie-ff1)!", + result: { + word: "pierwsza", + correct: 18, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "24.02.2025", + }, + }, + { + date: "24.02.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEjZm1SZpBnLkJDNtIHcz5CMuQjLz4yMx4SN10SY6N3dyVWawhSI", + value: "!(pierwsza-55.13.3.4.0.spr-42d.pie-ff1)!", + result: { + word: "pierwsza", + correct: 13, + position: 3, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "24.02.2025", + }, + }, + { + date: "24.02.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMmZWLllGcucDZ3ETLll2duIWMx0ydulmLzAjMtIXZz5yN40icl1mLw0yayVmL4MzNtI3bm5CMukjL14CMz4SN10SY6N3dyVWawhSI", + value: + "!(pierwsza-55.30.5.9.0.for-738.erk-0.mer-87.ser-203.inw-11b.wie-17d7.pie-ff1)!", + result: { + word: "pierwsza", + correct: 30, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 44, + date: "24.02.2025", + }, + }, + { + date: "24.02.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEjZm1SZp5SYkJjMts2bw5CMuUjLy4iMx4SN10SY6N3dyVWawhSI", + value: "!(pierwsza-55.12.2.5.0.pok-22da.ie-ff1)!", + result: { + word: "pierwsza", + correct: 12, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "24.02.2025", + }, + }, + { + date: "24.02.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEjZm1SZuQ2N10icpBnL5UTLrp3cuAjLyEjLy4SNx4SN10SY6N3dyVWawhSI", + value: "!(pierwsza-55.15.2.12.0.szk-59.pir-57d.e-ff1)!", + result: { + word: "pierwsza", + correct: 15, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "24.02.2025", + }, + }, + { + date: "24.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMmZmLkhjMx0SZp5SYxITNto3bw5CMuQjLz4yNx4SN10SY6N3dyVWawhSI", + value: "!(pierwsza-55.17.3.4.0.poz-521a.ie-128d.ff1)!", + result: { + word: "pierwsza", + correct: 17, + position: 3, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "24.02.2025", + }, + }, + { + date: "24.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEjZm1SZpBnL5ImMtMXYm5CMucjLz4SMx4SN10SY6N3dyVWawhSI", + value: "!(pierwsza-55.11.3.7.0.fas-2b9.pie-ff1)!", + result: { + word: "pierwsza", + correct: 11, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "24.02.2025", + }, + }, + { + date: "24.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxYmZtUWaw5SNz0ielJnL0YWMtQWe35CMuUjL14CNx4SN10SY6N3dyVWawhSI", + value: "!(pierwsza-55.14.5.5.0.wyd-1f4.rez-35.pie-ff1)!", + result: { + word: "pierwsza", + correct: 14, + position: 5, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "24.02.2025", + }, + }, + { + date: "24.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEjZm1SZp5SO4IWLlJHcuYWMtsWdl5CMuYjLz4CNx4SN10SY6N3dyVWawhSI", + value: "!(pierwsza-55.14.3.6.0.euk-1f.pre-b89.ie-ff1)!", + result: { + word: "pierwsza", + correct: 14, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "24.02.2025", + }, + }, + { + date: "24.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMmZWLllmL5YTOwETL6JHcugTNxETLnFmeuAjLxEjL14yNx4SN10SY6N3dyVWawhSI", + value: "!(pierwsza-55.17.5.11.0.zag-1158.prz-10969.ie-ff1)!", + result: { + word: "pierwsza", + correct: 17, + position: 5, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 33, + date: "24.02.2025", + }, + }, + { + date: "24.02.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMmZmL4QTNtUWaw5CMuUjLw4CNx4SN10SY6N3dyVWawhSI", + value: "!(pierwsza-55.14.0.5.0.pie-548.ff1)!", + result: { + word: "pierwsza", + correct: 14, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "24.02.2025", + }, + }, + { + date: "24.02.2025", + nick: "ulsterboy", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxYmZtUWaw5SMy0yapJnL1UjMtMXat5CMucjLz4SNx4SN10SY6N3dyVWawhSI", + value: "!(pierwsza-55.15.3.7.0.mis-255.rik-21.pie-ff1)!", + result: { + word: "pierwsza", + correct: 15, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "24.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/banalne-10-01-2025-diffle-diffleen-grywebowe-20-letters-in-3-words-large-green-c" +] = [ + { + date: "10.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKy0idlNnLiNWLzVmcugzYtAXbp5CMugjLy4CMx4CMx0iblZXZzhSI", + value: "!(seven-10.10.2.8.0.imp-c8.res-cb.sev-2)!", + result: { + word: "seven", + correct: 10, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMtYnLkFTLuV2cuYDOtEWZy5CMucjLx4CMx4CMx0iblZXZzhSI", + value: "!(seven-10.10.1.7.0.rea-86.sen-1d.v-2)!", + result: { + word: "seven", + correct: 10, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN20CctlmL1czMtEGbw5iMwYmMt42br5CMukjLz4CMx4CMx0ychBXbphSI", + value: "!(impas-10.10.3.9.0.kon-2f02.pla-375.imp-66)!", + result: { + word: "impas", + correct: 10, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITL25iY10SZlNnL5QTMt4WZw5CM40SblJnLxITLlh2YuAjLxEjLy4SNx4CMx0iblZXZzhSI", + value: "!(seven-10.15.2.11.0.che-21.rem-80.pen-149.see-5b.v-2)!", + result: { + word: "seven", + correct: 15, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITL25iY10SZuIDMx0iblNnL4ETLtFmcuAjLwEjLx4CNx4CMx0iblZXZzhSI", + value: "!(seven-10.14.1.10.0.ram-18.sen-102.e-5b.v-2)!", + result: { + word: "seven", + correct: 14, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN20CctlmLxITLpNHcuYWZz0icwNnLw4SOuQjL54CMx0ychBXbphSI", + value: "!(impas-10.9.4.9.0.spr-3ef.psi-21.imp-66)!", + result: { + word: "impas", + correct: 9, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMtYnLzQTLt5SMx0yYl5yY20SZoNnLyMTLzVXYuAjLzEjLw4yNx4CMx0iblZXZzhSI", + value: "!(seven-10.17.0.13.0.aus-32.she-6c.ec-11.m-43.v-2)!", + result: { + word: "seven", + correct: 17, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMuETL2V2cuEWL6VmYuQjMtUWZk5iY10Ca0VmLyYTLtF2ZuAjLzEjLw4SNx4CMx0iblZXZzhSI", + value: "!(seven-10.15.0.13.0.gam-62.eth-5b.dee-24.bez-a.sev-1.2)!", + result: { + word: "seven", + correct: 15, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 28, + date: "10.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/banalne-22-02-2025-flag-pl-diffle-difflepl-grywebowe-29-liter-w-4-slowach-large-" +] = [ + { + date: "22.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyETYx0CbvBnLjFjMtUnc05CZ5UWLhp3cuQGO20yYh1mLw4CNx4SMuQTMuMTNtcDOlQzQlE2dvx2bwhSI", + value: "!(polować-53.14.1.14.0.mac-68d.sza-e9d.tru-21c.pol-1a12)!", + result: { + word: "polować", + correct: 14, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "22.02.2025", + }, + }, + { + date: "22.02.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMxEWMtw2bw5SN5MWLvh2YuIzMzETLzl3duAjL34CMuQTMuMTNtcDOlQzQlE2dvx2bwhSI", + value: "!(polować-53.14.0.7.0.wys-1332.cho-c95.pol-1a12)!", + result: { + word: "polować", + correct: 14, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "22.02.2025", + }, + }, + { + date: "22.02.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMxEWMtw2buEDNmJTLvJHcuEjYwETL3FmeuAjL34iMuQTMuMTNtcDOlQzQlE2dvx2bwhSI", + value: "!(polować-53.14.2.7.0.zaw-10b1.pro-2f41.ol-1a12)!", + result: { + word: "polować", + correct: 14, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "22.02.2025", + }, + }, + { + date: "22.02.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMxEWMtw2bw5SZ0ETLiVGZuUDOz0SYyVnLzQzMx0Cb5dnLw4SNx4SMuQTMuMTNtcDOlQzQlE2dvx2bwhSI", + value: "!(polować-53.14.1.15.0.wyl-1343.ura-385.deb-14e.pol-1a12)!", + result: { + word: "polować", + correct: 14, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "22.02.2025", + }, + }, + { + date: "22.02.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyETYx4SYmhTLs9GcukTNmJTLu92auAjL34CMuYTMuMTNtcDOlQzQlE2dvx2bwhSI", + value: "!(polować-53.16.0.7.0.kon-2f59.pol-8fa.1a12)!", + result: { + word: "polować", + correct: 16, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "22.02.2025", + }, + }, + { + date: "22.02.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMxEWMtw2buQTYx0ybsBnL2kTOx0ybwNnLw4iMx4SMucTMuMTNtcDOlQzQlE2dvx2bwhSI", + value: "!(polować-53.17.1.12.0.spo-1996.plo-1a4.ol-1a12)!", + result: { + word: "polować", + correct: 17, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "22.02.2025", + }, + }, + { + date: "22.02.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMxEWMtwmL0ITYx0SbuM2N3ITLk9GcuQGOx0CczFmLw4yMx4SMuMjMuMTNtcDOlQzQlE2dvx2bwhSI", + value: "!(polować-53.23.1.13.0.asp-18d.pod-277c.m-1a24.l-1a12)!", + result: { + word: "polować", + correct: 23, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "22.02.2025", + }, + }, + { + date: "22.02.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITMhFTLs9mL2IWLrVGcuYDNl1CczdnLw4SMx4SMuYTMuMTNtcDOlQzQlE2dvx2bwhSI", + value: "!(polować-53.16.1.11.0.wsp-e46.pek-b6.ol-1a12)!", + result: { + word: "polować", + correct: 16, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "22.02.2025", + }, + }, + { + date: "22.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMxEWMucjMuE2M00CbuIGNwETLi5CNkRjMtM3bw5CO50yb6pnLw4yMx4CMuYjMuMTNtcDOlQzQlE2dvx2bwhSI", + value: "!(polować-53.26.0.13.0.zzo-98.pos-24d4.b-104b.l-43a.27.1a12)!", + result: { + word: "polować", + correct: 26, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "22.02.2025", + }, + }, + { + date: "22.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITMhFTLs9mL0YTZtEGbw5COzMTLwV3aucjMy0iahJmLlhTLu9GdugDM30Cbp1mLx4iNx4CMuYjMuMTNtcDOlQzQlE2dvx2bwhSI", + value: + "!(polować-53.26.0.16.1.mil-708.ton-8e.baj-227.kup-338.pla-e64.ol-1a12)!", + result: { + word: "polować", + correct: 26, + position: 0, + incorrect: 16, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 42, + date: "22.02.2025", + }, + }, + { + date: "22.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyETYx0CbuMzM2ETLr5iYygTMt0mL5MjYtInLjFmY00CZvBnLw4yMx4CMuQjMuMTNtcDOlQzQlE2dvx2bwhSI", + value: "!(polować-53.24.0.13.0.pod-4bac.r-b39.m-182b.k-1633.l-1a12)!", + result: { + word: "polować", + correct: 24, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "22.02.2025", + }, + }, + { + date: "22.02.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITMhFTLs5CNyEWMt02buEGZ2ETLyFGcucTY20CczdnLw4CNx4SMukTMuMTNtcDOlQzQlE2dvx2bwhSI", + value: "!(polować-53.19.1.14.0.wsp-6a7.par-16da.om-1a24.l-1a12)!", + result: { + word: "polować", + correct: 19, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "22.02.2025", + }, + }, + { + date: "22.02.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyETYx0CbuADZ2ITLr9mLkFzNz0ieyBnLw4SMx4CMucTMuMTNtcDOlQzQlE2dvx2bwhSI", + value: "!(polować-53.17.0.11.0.prz-371d.ok-26d0.l-1a12)!", + result: { + word: "polować", + correct: 17, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "22.02.2025", + }, + }, + { + date: "22.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyETYx0CbvBnLjFTLj9GbuEzMy0ybstmLlZmNtw2b65CM40ibhJmLw4iNx4SMuQTMuMTNtcDOlQzQlE2dvx2bwhSI", + value: "!(polować-53.14.1.16.0.ban-80.zol-6fe.klo-231.loc-1c.pol-1a12)!", + result: { + word: "polować", + correct: 14, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "22.02.2025", + }, + }, + { + date: "22.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyETYx4SYmhTLs9GcugDNtEmc35CO50yb6pnLw4SMx4CMucTMuMTNtcDOlQzQlE2dvx2bwhSI", + value: "!(polować-53.17.0.11.0.zzo-98.wra-48.pol-8fa.1a12)!", + result: { + word: "polować", + correct: 17, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "22.02.2025", + }, + }, + { + date: "22.02.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITMhFTLs9mL5cDZtwWYw5iZiJTL1h2YuAjL54CMuUTMuMTNtcDOlQzQlE2dvx2bwhSI", + value: "!(polować-53.15.0.9.0.chu-2bf.pal-d79.ol-1a12)!", + result: { + word: "polować", + correct: 15, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "22.02.2025", + }, + }, + { + date: "22.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMxEWMtw2buQGO40SYs5yM5gTYx0ieyBnLw4iMx4CMuYTMuMTNtcDOlQzQlE2dvx2bwhSI", + value: "!(polować-53.16.0.12.0.prz-1a893.la-88d.ol-1a12)!", + result: { + word: "polować", + correct: 16, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "22.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/banalne-dzisiaj-jak-sie-trafi-z-pierwszym-slowem-deg-deg-06-03-2025-diffle-diffl" +] = [ + { + date: "06.03.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ATNtEmb65SO1YmMt42br5CMuUjLx4SOuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.9.1.5.0.kon-2f59.zna-508)!", + result: { + word: "znawca", + correct: 9, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOwUTLh5meukzYtonc35CMuQjLy4SOuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.9.2.4.0.wrz-c9.zna-508)!", + result: { + word: "znawca", + correct: 9, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ATNtEmb65SO1YmMt42br5CMuUjLx4SOuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.9.1.5.0.kon-2f59.zna-508)!", + result: { + word: "znawca", + correct: 9, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOwUTLh5mLiVjNtIWY65CZyQTLyB3cuAjL54yMuMTMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.13.3.9.0.spr-42d.zab-65b.na-508)!", + result: { + word: "znawca", + correct: 13, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDM10SYupnLmJmMtUHaj5CMuUjLy4SOuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.9.2.5.0.chu-2bf.zna-508)!", + result: { + word: "znawca", + correct: 9, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDM10SYupnL5UTLrp3cuAjL24SMuATMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.10.1.6.0.szk-59.zna-508)!", + result: { + word: "znawca", + correct: 10, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOwUTLh5meuIjZ10ydh5mLlVTZy0yc5dnLw4iMx4SMuETMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.11.1.12.0.wys-2e5e.naw-5f2.zna-508)!", + result: { + word: "znawca", + correct: 11, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ATNtEmb65iNyMWLjFmbuEDOt42bz5yY2EWLhJ3ZuAjL44SMuMTMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.13.1.8.0.gra-a6c.son-81.nac-c26.zna-508)!", + result: { + word: "znawca", + correct: 13, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOwUTLh5meuQTY10ieyRXZp5mLw4CMx4SMuATMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.10.1.10.0.nietrz-5a4.zna-508)!", + result: { + word: "znawca", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDM10SYupnL0UTOtoXYu5CNmFTLkl3duAjL14yMuITMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.12.3.5.0.wyd-1f4.naz-954.zna-508)!", + result: { + word: "znawca", + correct: 12, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDM10SYupnLzkDOhFTL6JHcuAjL54CMuATMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.10.0.9.0.prz-1a893.zna-508)!", + result: { + word: "znawca", + correct: 10, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDM10SYupnLw0ydh5mL1YTL3FmauATLkVnbuUDOz0iclNnLw4SMx4SMucTMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.17.1.11.0.ser-385.nud-0.jaw-65.naw-0.zna-508)!", + result: { + word: "znawca", + correct: 17, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDM10SYupnLxE2Ny0ych5mLmFTLrVXZuAjL54iMuETMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.11.2.9.0.euk-1f.nas-27a1.zna-508)!", + result: { + word: "znawca", + correct: 11, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ATNtEmb65SNzYTL6l3duYTYi1SZp1mLw4SMx4iMuUTMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.15.2.11.0.mie-ba6.wyz-635.zna-508)!", + result: { + word: "znawca", + correct: 15, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOwUTLh5mLhBjYx0yYhpnL1ITLuFmcuEWMyUTL69GcuAjL44CNuUTMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.15.4.8.0.poz-521a.ran-25.zac-1b0a.na-508)!", + result: { + word: "znawca", + correct: 15, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDM10SYu5iY3ETLhpmeuE2Nx0SYnFmLkNTMtE2duMWM20iYhpnLhFzNz0ieyBnLw4CNx4iMuMjMuUjNtE2Y3Fmb6hSI", + value: + "!(znawca-65.23.2.14.0.prz-371a.zab-61c.wa-13d.aga-17a.zja-17b.na-508)!", + result: { + word: "znawca", + correct: 23, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOwUTLh5mL0Y2MtEmY65CM4ETLsFGcuATL0l3cuMmYx0CZv1mLw4iMx4CMugTMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.18.0.12.0.mod-1bc.syt-0.pal-180.zba-3f4.na-508)!", + result: { + word: "znawca", + correct: 18, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "Tysiek", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ATNuYmZtEmbuEGMiFTLjFmeuYTYi1SZp1mLw4iMx4yMucTMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.17.3.12.0.mie-ba6.zac-1b0a.na-ff.508)!", + result: { + word: "znawca", + correct: 17, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOwUTLh5meuIGMy0Cdh1mLw4CMx4CMuATMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.10.0.10.0.mat-20b.zna-508)!", + result: { + word: "znawca", + correct: 10, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDM10SYupnL1QGZtcXYu5COxITLyV2duAjL44CMuATMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.10.0.8.0.wer-218.naw-dd5.zna-508)!", + result: { + word: "znawca", + correct: 10, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "06.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/bardzo-fajne-wiosenne-07-02-2025-flag-pl-diffle-difflepl-grywebowe-27-liter-w-4-" +] = [ + { + date: "07.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNxkTLu5SN2MTLzFmLxMTNtwWdi5yN5ETMt0We35CMuQTMuAjLzEjL4MTLhtGN4USNDVSYihSI", + value: "!(bańka-38.13.0.14.0.wym-1197.bul-531.as-365.n-917)!", + result: { + word: "bańka", + correct: 13, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "07.02.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTM50ibhJmLxkTMtIWZ65SZ0EWMtEmc05CNtUmen5CMuQTMuAjLzEjL4MTLhtGN4USNDVSYihSI", + value: "!(bańka-38.13.0.14.0.gze-4.tra-1a4e.zeb-191.ban-917)!", + result: { + word: "bańka", + correct: 13, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + }, + }, + { + date: "07.02.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3ETOt4WYuEjZtoXduQWZz0yahJmL2QTZtA3c35CMucTMuAjLwEjL4MTLhtGN4USNDVSYihSI", + value: "!(bańka-38.10.0.17.0.wsp-e46.bak-3ed.uz-f1.an-917)!", + result: { + word: "bańka", + correct: 10, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "07.02.2025", + }, + }, + { + date: "07.02.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3ETOt4WYi5SY3gTLrFWbuITLnlHduYDNl1CczdnLw4SMy4CMukjL4MTLhtGN4USNDVSYihSI", + value: "!(bańka-38.9.0.21.0.wsp-e46.tyg-2.mak-87a.ban-917)!", + result: { + word: "bańka", + correct: 9, + position: 0, + incorrect: 21, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "07.02.2025", + }, + }, + { + date: "07.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTM50ibhJmLkV2Ntw2auMWOj1Sa3NnLw4CNx4SMukjL4MTLhtGN4USNDVSYihSI", + value: "!(bańka-38.9.1.14.0.swi-c9c.kl-7ed.ban-917)!", + result: { + word: "bańka", + correct: 9, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "07.02.2025", + }, + }, + { + date: "07.02.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNxkTLuFmYuQWOz0ibhhmLmNWMtoXYq5SO4QWLz92augDNt8me6VWau5CMugTMuEjLyEjL4MTLhtGN4USNDVSYihSI", + value: "!(bańka-38.12.1.18.0.niezzo-48.kos-d89.jaz-1cf.han-39d.ban-917)!", + result: { + word: "bańka", + correct: 12, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "07.02.2025", + }, + }, + { + date: "07.02.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3ETOt4WYi5SO40yal1mLmJjNtg2Yz4SMidDMx0ievJnL3IWMy0CbvBnLw4SOx4CMugjL4MTLhtGN4USNDVSYihSI", + value: "!(bańka-38.8.0.19.0.pol-21b7.roz-107b1.3ch-62f.mek-89.ban-917)!", + result: { + word: "bańka", + correct: 8, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "07.02.2025", + }, + }, + { + date: "07.02.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNxkTLu5SN2MTLzFmYuUTYz0CdlBnL1YzMtMXYn5CZ10ie5xmLmJmMtUHaj5CMuEjMuAjL2EjL4MTLhtGN4USNDVS", + value: + "IPÍIN\r\u001aØKLÎ\u000bŒM‹Œ\u000bŒŒKŒ\u000b˜Ú\u001dKL˜™‹›\u001e^‹MY\u000b™Ø\\ËL͍Kœ\u0019]\u000bLØMK˜˜\\ËL͍K›‹NLMÊH", + result: { + word: "IPÍIN\r\u001aØKLÎ\u000bŒM‹Œ\u000bŒŒKŒ\u000b˜Ú\u001dKL˜™‹›\u001e^‹MY\u000b™Ø\\ËL͍Kœ\u0019]\u000bLØMK˜˜\\ËL͍K›‹NLMÊH", + correct: null, + position: null, + incorrect: null, + knownIncorrect: null, + totalWords: 0, + totalLetters: null, + date: "07.02.2025", + }, + }, + { + date: "07.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNxkTLu5CO5MTLzFmYuczMx0iY1pnLjFmY00CZvBnLw4yMx4CMukjL4MTLhtGN4USNDVSYihSI", + value: "!(bańka-38.9.0.13.0.pod-4bac.zub-137.bas-398.n-917)!", + result: { + word: "bańka", + correct: 9, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "07.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/bardzo-proste-tylko-ja-grac-nie-umiem-26-01-2025-flag-pl-diffle-difflepl-grywebo" +] = [ + { + date: "26.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNx0ybuMTLtlmeuEGOmFTLllGcuEGM00ieytmLmJmMtUHaj5CMucTMuIjLyEjL2ITLhJDOlUzQl8Wa6hSI", + value: "!(zioła-26.12.2.17.0.chu-2bf.krz-40a.pie-1f8a.zim-3.o-16)!", + result: { + word: "zioła", + correct: 12, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "26.01.2025", + }, + }, + { + date: "26.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2ETLvlmeugzNy0Sa6RmLiNWLsdWauMWY10SbhxmLzEzMtkGbz5COjNzMtAXe35CMugTMuEjL2EjL2ITLhJDOlUzQl8Wa6hSI", + value: + "!(zioła-26.16.1.18.0.wyp-33c8.sli-313.lam-5ac.igl-cb.dzi-278.zio-16)!", + result: { + word: "zioła", + correct: 16, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "26.01.2025", + }, + }, + { + date: "26.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2ETLvlmeuETNz0Sa6RmL2EmYtUWat5CMuETMuMjLxEjL2ITLhJDOlUzQl8Wa6hSI", + value: "!(zioła-26.11.3.11.0.mie-ba6.dzi-351.zio-16)!", + result: { + word: "zioła", + correct: 11, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "26.01.2025", + }, + }, + { + date: "26.01.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2EjLhFTLvlmeuAzM00SYp1mLw4yNuEjLxEjL2ITLhJDOlUzQl8Wa6hSI", + value: "!(zioła-26.11.1.7.0.mia-430.zio-1a.16)!", + result: { + word: "zioła", + correct: 11, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "26.01.2025", + }, + }, + { + date: "26.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2ETLvlmL3UWLvpneuAjL34SMucjL2ITLhJDOlUzQl8Wa6hSI", + value: "!(zioła-26.7.1.7.0.zzo-e7.io-16)!", + result: { + word: "zioła", + correct: 7, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "26.01.2025", + }, + }, + { + date: "26.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTMt8Wa65iNl1ybpNnLyITMt8Wam5CMmVTLs92duAjZy0CbvdmLjJjN10ievBnLwITMtsWZs5CMucTMuAjLzIjL2ITLhJDOlUzQl8Wa6hSI", + value: + "!(zioła-26.23.0.17.0.lek-120.poz-562c.gol-2f0.wol-5f0.fio-122.sio-e6.zio-16)!", + result: { + word: "zioła", + correct: 23, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "26.01.2025", + }, + }, + { + date: "26.01.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2ETLvlmeukDNz0ybpBnLlljNtEGb65SO10ya6NnLxEWMtUme15CMuMjMuEjL0EjL2ITLhJDOlUzQl8Wa6hSI", + value: "!(zioła-26.14.1.23.0.uze-1a1.szk-59.zla-69e.pio-349.zio-16)!", + result: { + word: "zioła", + correct: 14, + position: 1, + incorrect: 23, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "26.01.2025", + }, + }, + { + date: "26.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2ETLvlmLxUWLvdmLiRjMt82duITZx0ybkpnLkhTMtA3ch5CMuETMuIjL5EjL2ITLhJDOlUzQl8Wa6hSI", + value: "!(zioła-26.19.2.11.0.asp-18d.zdo-1e2.wo-24b.go-e1.io-16)!", + result: { + word: "zioła", + correct: 19, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "26.01.2025", + }, + }, + { + date: "26.01.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNx4SYx0ybppnLlVDMx0CcvBnLyMzMx0yc5dnLw4SOuMjLyEjL2ITLhJDOlUzQl8Wa6hSI", + value: "!(zioła-26.12.3.9.0.wys-1332.pop-105e.zio-1a.16)!", + result: { + word: "zioła", + correct: 12, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "26.01.2025", + }, + }, + { + date: "26.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNx0ybppnL3EWZtwmYv5CM0ATMtUWat5CMuITMuMjLwEjL2ITLhJDOlUzQl8Wa6hSI", + value: "!(zioła-26.10.3.12.0.mie-1040.obl-ea7.zio-16)!", + result: { + word: "zioła", + correct: 10, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "26.01.2025", + }, + }, + { + date: "26.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNx4SYx0ybp5iMxEWLvxmL4gjNtk2d65CMuATMuAjLzEjL2ITLhJDOlUzQl8Wa6hSI", + value: "!(zioła-26.13.0.10.0.zwi-688.lo-a12.io-1a.16)!", + result: { + word: "zioła", + correct: 13, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "26.01.2025", + }, + }, + { + date: "26.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTMt8Wa65CM5ETLzV2ZuIDN1ETLppHZuMTO4EWMtoncw5CMukTMuAjLyEjL2ITLhJDOlUzQl8Wa6hSI", + value: "!(zioła-26.12.0.19.0.prz-1a893.dzi-1542.ges-190.zio-16)!", + result: { + word: "zioła", + correct: 12, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "26.01.2025", + }, + }, + { + date: "26.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTMt8WauETZt82ZuYTY4ETL3FmLmNDNt8GbugTOt8me65CMuUTMuEjL3EjL2ITLhJDOlUzQl8Wa6hSI", + value: "!(zioła-26.17.1.15.0.zzo-98.lo-43f.aw-18a6.go-e1.io-16)!", + result: { + word: "zioła", + correct: 17, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "26.01.2025", + }, + }, + { + date: "26.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNx4SZ10ybppnL0ETLvlGcuMDMx0yapZmL4AzNtwWat5CMuMTMuEjL3EjL2ITLhJDOlUzQl8Wa6hSI", + value: "!(zioła-26.17.1.13.0.mil-708.fik-103.pio-14.zio-5e.16)!", + result: { + word: "zioła", + correct: 17, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "26.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/calkiem-fajne-slowko-14-02-2025-diffle-difflepl-grywebowe-19-liter-w-3-slowach-g" +] = [ + { + date: "14.02.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0MjMt4WYn5SOkVTLsFGcuAzM00SYp1mLw4SOuAjLwEjL1QTL3gTJ0MUJp5WYnhSI", + value: "!(ganić-45.10.0.9.0.mia-430.pal-5d9.gan-234)!", + result: { + word: "ganić", + correct: 10, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNzITLuF2ZucTNx0ibhJnL2EmYtUWat5CMuITMuAjLyEjL1QTL3gTJ0MUJp5WYnhSI", + value: "!(ganić-45.12.0.12.0.mie-ba6.ran-157.gan-234)!", + result: { + word: "ganić", + correct: 12, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzMy0ibhdmLwYmMtoXYs5CZhFTLzF2duMTO4EWMtoncw5CMucTMuEjLzEjL1QTL3gTJ0MUJp5WYnhSI", + value: "!(ganić-45.13.1.17.0.prz-1a893.was-1ad.laz-2f0.gan-234)!", + result: { + word: "ganić", + correct: 13, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNzITLuFmLilTLzV2ZuITOy0icvBnLmZGOtoXY65CMuITMuAjLzEjL1QTL3gTJ0MUJp5WYnhSI", + value: "!(ganić-45.13.0.12.0.zaz-8ff.por-292.ges-9b.an-234)!", + result: { + word: "ganić", + correct: 13, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzMy0ibhdmLhdTLtFWbuIGZ20SZppnLjJWMtEmey5CMkNTMtUWaw5CMuITMuAjLyEjL1QTL3gTJ0MUJp5WYnhSI", + value: "!(ganić-45.12.0.12.0.pie-13d0.rza-1bc.zie-6db.mam-7a.gan-234)!", + result: { + word: "ganić", + correct: 12, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0MjMt4mLy0ychdmL1UGOtwWY65SZ30yc1hmL2UGZtoXe35CMuYTMuAjL2EjL1QTL3gTJ0MUJp5WYnhSI", + value: "!(ganić-45.16.0.16.0.wyz-de6.hus-7e.zal-8e5.gas-2.n-234)!", + result: { + word: "ganić", + correct: 16, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzMy0ibhdmL2EDOt42bw5CO50yb6pnLw4SOuIjLwEjL1QTL3gTJ0MUJp5WYnhSI", + value: "!(ganić-45.10.2.9.0.zzo-98.pon-816.gan-234)!", + result: { + word: "ganić", + correct: 10, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNzITLuF2ZukTNmJTLu92auAjL24SMucjL1QTL3gTJ0MUJp5WYnhSI", + value: "!(ganić-45.7.1.6.0.kon-2f59.gan-234)!", + result: { + word: "ganić", + correct: 7, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0MjMt4WYn5CNi1SbhBnL1ETL1xGZuEjYts2c35CMuQTMuAjLyEjL1QTL3gTJ0MUJp5WYnhSI", + value: "!(ganić-45.12.0.14.0.wsk-b1.dlu-15.pam-b4.gan-234)!", + result: { + word: "ganić", + correct: 12, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0MjMuITZx0ibhdmLkhTMtA3ch5CMuATMuAjLzEjL1QTL3gTJ0MUJp5WYnhSI", + value: "!(ganić-45.13.0.10.0.asp-18d.gan-1e2.234)!", + result: { + word: "ganić", + correct: 13, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0MjMt4WYn5SYhVTLlx2aucTNx0ibhJnLmJmMtUHaj5SMuYTMuIjLxEjL1QTL3gTJ0MUJp5WYnhSI", + value: "!(ganić-45.11.2.16.1.chu-2bf.ran-157.kle-5aa.gan-234)!", + result: { + word: "ganić", + correct: 11, + position: 2, + incorrect: 16, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 29, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "Lvter", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzMy0ibhdmLiNTMtcWYt5SZ0MTLhp3YuUjYz0ybyRnLw4SNx4SMukjL1QTL3gTJ0MUJp5WYnhSI", + value: "!(ganić-45.9.1.15.0.tro-3b5.cza-34e.mag-13b.gan-234)!", + result: { + word: "ganić", + correct: 9, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0MjMt4WYn5yN1ETLuFmcuYTZ50iYhpnL4EGNtMXdw5iMzMTMtMXe35CMuMTMuAjL2EjL1QTL3gTJ0MUJp5WYnhSI", + value: "!(ganić-45.16.0.13.0.wys-1332.pus-4a8.zab-9e6.ran-157.gan-234)!", + result: { + word: "ganić", + correct: 16, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzMy0ibhdmL1kTL6lGcugDM30Cbp1mLw4iNuEjLwEjL1QTL3gTJ0MUJp5WYnhSI", + value: "!(ganić-45.10.1.6.0.mil-708.piz-95.gan-234)!", + result: { + word: "ganić", + correct: 10, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzMy0ibh5CNh1SYydmL1EWNtEGcz5SNiRWMtcXY65CMuITMuAjL1EjL1QTL3gTJ0MUJp5WYnhSI", + value: "!(ganić-45.15.0.12.0.zaw-1db5.spa-5a5.gra-a4.an-234)!", + result: { + word: "ganić", + correct: 15, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNzITLuF2ZuUzYz0yZh5mL2QTZtA3c35CMuITMuIjLwEjL1QTL3gTJ0MUJp5WYnhSI", + value: "!(ganić-45.10.2.12.0.wsp-e46.nag-3c5.gan-234)!", + result: { + word: "ganić", + correct: 10, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0MjMt4WYn5iN4QTLsFWbuMzN40yY6NnLw4SMx4CMukjL1QTL3gTJ0MUJp5WYnhSI", + value: "!(ganić-45.9.0.11.0.szc-873.mal-486.gan-234)!", + result: { + word: "ganić", + correct: 9, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0MjMt4mL4ETLj5iNy0CchdmLlBDNx0SY6NnLw4SOuEjL0EjL1QTL3gTJ0MUJp5WYnhSI", + value: "!(ganić-45.14.1.9.0.sza-140e.gap-26.c-18.n-234)!", + result: { + word: "ganić", + correct: 14, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0MjMt4WYn5SOlBTMtAXYu5CO50yb6pnLw4SOuEjLwEjL1QTL3gTJ0MUJp5WYnhSI", + value: "!(ganić-45.10.1.9.0.zzo-98.nap-10e9.gan-234)!", + result: { + word: "ganić", + correct: 10, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNzITLuF2ZucTNx0ibhJnLlVWYtcXYu5yYhJGNtQ2bw5CMuITMuEjLzEjL1QTL3gTJ0MUJp5WYnhSI", + value: "!(ganić-45.13.1.12.0.pod-4bac.naw-aee.ran-157.gan-234)!", + result: { + word: "ganić", + correct: 13, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzMy4iMlFTLuFmL50SYudmL2QTZtA3c35CMuITMuEjL1EjL1QTL3gTJ0MUJp5WYnhSI", + value: "!(ganić-45.15.1.12.0.wsp-e46.gna-9.an-1e2.234)!", + result: { + word: "ganić", + correct: 15, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "14.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/chwile-myslalem-25-02-2025-flag-pl-diffle-difflepl-grywebowe-28-liter-w-3-slowac" +] = [ + { + date: "25.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMzMWMtQXeucDNy0iavdnLzkDOhFTL6JHcuAjL0EjLx4yMx4iN10SeuJ3b3RXe3hSI", + value: "!(wytworny-56.13.1.14.0.prz-1a893.woj-247.yt-1c32)!", + result: { + word: "wytworny", + correct: 13, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "25.02.2025", + }, + }, + { + date: "25.02.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzMjFTL05CMyATMtIWe35SO1YmMt42br5CMuYjLy4iNx4iN10SeuJ3b3RXe3hSI", + value: "!(wytworny-56.16.2.6.0.kon-2f59.wyb-1020.t-1c32)!", + result: { + word: "wytworny", + correct: 16, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "25.02.2025", + }, + }, + { + date: "25.02.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzMjFTL0lnL5QWMt8mc35SZk1Sdy1mLhZWLsFGZuQDN3ITL39GcuAjLzEjLy4iNx4iN10SeuJ3b3RXe3hSI", + value: "!(wytworny-56.16.2.13.0.pow-2744.dal-fa.mru-de.wro-1d9.yt-1c32)!", + result: { + word: "wytworny", + correct: 16, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "25.02.2025", + }, + }, + { + date: "25.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMzMWMtQnLwIDMx0iY5dnLycTMt4mcv5CNwATMtI3br5CN2YWLs9GcuAjL0EjLw4CNy4iN10SeuJ3b3RXe3hSI", + value: "!(wytworny-56.24.0.14.0.pol-f64.kor-1004.orn-172.wyb-1020.t-1c32)!", + result: { + word: "wytworny", + correct: 24, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "25.02.2025", + }, + }, + { + date: "25.02.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzMjFTL05SY2ITMtcXe35SYkJjMts2bw5CMucjLz4yNx4iN10SeuJ3b3RXe3hSI", + value: "!(wytworny-56.17.3.7.0.pok-22da.wyw-126a.t-1c32)!", + result: { + word: "wytworny", + correct: 17, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "25.02.2025", + }, + }, + { + date: "25.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMzYx0Cd5dnL2IWNx0ycvRmL3MWMy0Sb5dnLmlTLqV3auMDMz0ybipnLycTMt4mcv5iMyITLyFGcuAjL4EjLy4iNy4iN10SeuJ3b3RXe3hSI", + value: + "!(wytworny-56.26.2.18.0.par-222.orn-172.zbo-303.kuj-9f.wym-21c7.dos-15b6.wyt-1c32)!", + result: { + word: "wytworny", + correct: 26, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 46, + date: "25.02.2025", + }, + }, + { + date: "25.02.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMzMWMtQXeuY2Nt42b35CNjJWMtc3bw5iZiJTL1h2YuAjLxEjLx4COx4iN10SeuJ3b3RXe3hSI", + value: "!(wytworny-56.18.1.11.0.chu-2bf.pow-1bc4.won-7f.yt-1c32)!", + result: { + word: "wytworny", + correct: 18, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "25.02.2025", + }, + }, + { + date: "25.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzMjFTL0lnLilzMtw2b35yYj1yb39mLlVTLhtWduAjLxEjLx4SOx4iN10SeuJ3b3RXe3hSI", + value: "!(wytworny-56.19.1.11.0.uka-5e.owo-cc.wol-39b.yt-1c32)!", + result: { + word: "wytworny", + correct: 19, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "25.02.2025", + }, + }, + { + date: "25.02.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzMjFTL0l3duQmNz0CcvRnLykTLuVncuUWZ00ybyRmLjZTYtEmcn5CMugjLy4SOx4iN10SeuJ3b3RXe3hSI", + value: "!(wytworny-56.19.2.8.0.gra-a6c.dro-4ee.run-92.top-36d.wyt-1c32)!", + result: { + word: "wytworny", + correct: 19, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "25.02.2025", + }, + }, + { + date: "25.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzMjFTL05iZ2gjMtMnL0YWMtQWe35CMugjLx4COx4iN10SeuJ3b3RXe3hSI", + value: "!(wytworny-56.18.1.8.0.wyd-1f4.s-286f.t-1c32)!", + result: { + word: "wytworny", + correct: 18, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "25.02.2025", + }, + }, + { + date: "25.02.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMzMWMtQXe35CMlhTMtQ3bw5iNhJWLllWbuAjLyEjLx4yNx4iN10SeuJ3b3RXe3hSI", + value: "!(wytworny-56.17.1.12.0.mie-ba6.pot-18e0.wyt-1c32)!", + result: { + word: "wytworny", + correct: 17, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "25.02.2025", + }, + }, + { + date: "25.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMzMWMtQXe35SZyETLvdHZuUDNj1ici9mLwMmMt42b05yN5ETL09mbuEWMyUTL69GcuAjLwEjL04SNy4iN10SeuJ3b3RXe3hSI", + value: + "!(wytworny-56.25.4.10.0.poz-521a.not-197.ton-2c0.obr-c45.dwo-12e.wyt-1c32)!", + result: { + word: "wytworny", + correct: 25, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "25.02.2025", + }, + }, + { + date: "25.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMzMWMtQXe35CZ2MTLw9GduYWMtsWdl5CMucjLy4SNx4iN10SeuJ3b3RXe3hSI", + value: "!(wytworny-56.15.2.7.0.euk-1f.top-36d.wyt-1c32)!", + result: { + word: "wytworny", + correct: 15, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "25.02.2025", + }, + }, + { + date: "25.02.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMzYx4SYzMWMtQXeuI2Mx0ybp5SZ1MTLvJnL4EjMtIXZ35CMucjL04SNy4iN10SeuJ3b3RXe3hSI", + value: "!(wytworny-56.25.4.7.0.wer-218.ro-35e.io-13b.yt-1c3a.1c32)!", + result: { + word: "wytworny", + correct: 25, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "25.02.2025", + }, + }, + { + date: "25.02.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMzMWMtQXe35SOtknco5yMwMTL1JHduEWM3MTL6JHcuAjLxEjLy4COx4iN10SeuJ3b3RXe3hSI", + value: "!(wytworny-56.18.2.11.0.prz-371a.tru-303.hry-9.wyt-1c32)!", + result: { + word: "wytworny", + correct: 18, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "25.02.2025", + }, + }, + { + date: "25.02.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMzMWMtQXe35yNyYTLy9GdukDNz0ybpBnL5UTLrp3cuAjL1EjLy4iNx4iN10SeuJ3b3RXe3hSI", + value: "!(wytworny-56.16.2.15.0.szk-59.pio-349.tor-627.wyt-1c32)!", + result: { + word: "wytworny", + correct: 16, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "25.02.2025", + }, + }, + { + date: "25.02.2025", + nick: "ulsterboy", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMzYx0Cd55SOkFTLvJ3duEWZwMTL69mcuAjLwEjLz4SNx4iN10SeuJ3b3RXe3hSI", + value: "!(wytworny-56.15.3.10.0.roz-30ea.wro-1d9.yt-1c32)!", + result: { + word: "wytworny", + correct: 15, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "25.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/chyba-latwe-ale-mi-nie-poszlo-07-02-2025-diffle-difflepl-grywebowe-26-liter-w-4-" +] = [ + { + date: "07.02.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3ETOt4WYi5iYlFTLuF2duYGZz0ibhxmLwMDNtEWat5CMuUTMuAjLxEjL4MTLhtGN4USNDVSYihSI", + value: "!(bańka-38.11.0.15.0.mia-430.lan-3df.wan-1eb.ban-917)!", + result: { + word: "bańka", + correct: 11, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "07.02.2025", + }, + }, + { + date: "07.02.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3ETOt4WYi5CMiJTL6F2auYTYi1SZp1mLw4yMx4SMukjL4MTLhtGN4USNDVSYihSI", + value: "!(bańka-38.9.1.13.0.mie-ba6.kaz-2b0.ban-917)!", + result: { + word: "bańka", + correct: 9, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "07.02.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTM50ibhJmLxkTMtIWZ65SZ0EWMtEmc05CNtUmen5CMuQTMuAjLzEjL4MTLhtGN4USNDVSYihSI", + value: "!(bańka-38.13.0.14.0.gze-4.tra-1a4e.zeb-191.ban-917)!", + result: { + word: "bańka", + correct: 13, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + }, + }, + { + date: "07.02.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTM50ibhJmLiVWMt4WY35COyETLlx2cuUGM1ETLllWbugTOt8me65CMucTMuAjLzEjL4MTLhtGN4USNDVSYihSI", + value: "!(bańka-38.13.0.17.0.zzo-98.mie-150e.sle-128.wan-1eb.ban-917)!", + result: { + word: "bańka", + correct: 13, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "07.02.2025", + }, + }, + { + date: "07.02.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTM50ibuUjNz0ychJmL1ADZtUmc65iMzMTMtMXe35CMuITMuAjLyEjL4MTLhtGN4USNDVSYihSI", + value: "!(bańka-38.12.0.12.0.wys-1332.zre-d05.bas-365.n-917)!", + result: { + word: "bańka", + correct: 12, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "07.02.2025", + }, + }, + { + date: "07.02.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNxkTLuFmYugDO4ETLyFmeuQGOx0CczFmLw4iNx4CMugjL4MTLhtGN4USNDVSYihSI", + value: "!(bańka-38.8.0.16.0.asp-18d.zar-1888.ban-917)!", + result: { + word: "bańka", + correct: 8, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "07.02.2025", + }, + }, + { + date: "07.02.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTM50ibuUjNz0ychJmLhdDOtsWYt5SZ5ETLrVGcuUWNy0CbrVnL1UTLj9mLyMWYt8mcr5CMuEjMuAjL4EjL4MTLhtGN4USNDVSYihSI", + value: + "!(bańka-38.18.0.21.0.kro-ac2.oc-55.ukl-25e.pek-19e.mak-87a.bas-365.n-917)!", + result: { + word: "bańka", + correct: 18, + position: 0, + incorrect: 21, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "07.02.2025", + }, + }, + { + date: "07.02.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3ETOt4WYi5SY3gTLrFWbuITLnlHduYDNl1CczdnLw4SMy4CMukjL4MTLhtGN4USNDVSYihSI", + value: "!(bańka-38.9.0.21.0.wsp-e46.tyg-2.mak-87a.ban-917)!", + result: { + word: "bańka", + correct: 9, + position: 0, + incorrect: 21, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "07.02.2025", + }, + }, + { + date: "07.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNxkTLuFmYuAjYy0iehtmL1UjMto2b35yM5gTYx0ieyBnLw4iMy4SMukjL4MTLhtGN4USNDVSYihSI", + value: "!(bańka-38.9.1.22.0.prz-1a893.woj-255.kaz-2b0.ban-917)!", + result: { + word: "bańka", + correct: 9, + position: 1, + incorrect: 22, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "07.02.2025", + }, + }, + { + date: "07.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTM50ibhJmLyImZx0iYhpnLwkTLnFmauYWO00ybspnLw4SMx4SMukjL4MTLhtGN4USNDVSYihSI", + value: "!(bańka-38.9.1.11.0.zlo-49f.jag-90.zab-1fb2.ban-917)!", + result: { + word: "bańka", + correct: 9, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "07.02.2025", + }, + }, + { + date: "07.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3ETOt4mL4kzMtMXYi5COmVTMtwWY65CNi1SbhBnLw4SOuEjLxEjL4MTLhtGN4USNDVSYihSI", + value: "!(bańka-38.11.1.9.0.pam-b4.zal-15f8.bas-398.n-917)!", + result: { + word: "bańka", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "07.02.2025", + }, + }, + { + date: "07.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNxkTLuFmYuAjYy0iehtmLykjMtwWY35iY1YTLyt2cuEWLvR3augTOt8me65CMuEjMuEjLyEjL4MTLhtGN4USNDVSYihSI", + value: + "!(bańka-38.12.1.21.0.zzo-98.kto-a.skr-65b.wal-292.kaz-2b0.ban-917)!", + result: { + word: "bańka", + correct: 12, + position: 1, + incorrect: 21, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "07.02.2025", + }, + }, + { + date: "07.02.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3ETOt4WYi5CZwYWMtIWY65iNwITLkFWbuQGNwITLwl3duETYtMmezVWau5CMuUjMuEjLwEjL4MTLhtGN4USNDVSYihSI", + value: "!(bańka-38.10.1.25.0.nieszc-a1.wyp-204d.mad-206.zab-1f0d.ban-917)!", + result: { + word: "bańka", + correct: 10, + position: 1, + incorrect: 25, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "07.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/chyba-proste-ale-moze-mi-sie-tylko-tak-zlozyly-literki-23-01-2025-diffle-difflep" +] = [ + { + date: "23.01.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkNWMtcXZuUGOz0CduczMy0yYpxmLwMDNtEWat5CMucjLw4iMy4yMy0yN4UCNDVSY39GdpdXZshSI", + value: "!(lewitować-23.22.0.7.0.mia-430.lic-237.t-38e.ew-1cd)!", + result: { + word: "lewitować", + correct: 22, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "23.01.2025", + }, + }, + { + date: "23.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQ2Yx0ydlxmL4EjMtIXZ35CZjVWMtAXY65CMukjLy4yMx4yMy0yN4UCNDVSY39GdpdXZshSI", + value: "!(lewitować-23.13.2.9.0.zap-1ecd.wer-218.lew-1cd)!", + result: { + word: "lewitować", + correct: 13, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "23.01.2025", + }, + }, + { + date: "23.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZjFTL3VGbuUWOt82dl5SM3ETLjl3duM2Mt02bkVWau5CNkVTLpB3buEjL1EjL24yNy4yMy0yN4UCNDVSY39GdpdXZshSI", + value: + "!(lewitować-23.27.6.15.1.opi-5d4.niedom-3c.wyc-171.ewo-9e.lew-1cd)!", + result: { + word: "lewitować", + correct: 27, + position: 6, + incorrect: 15, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 48, + date: "23.01.2025", + }, + }, + { + date: "23.01.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZjFTL3VGbukTZ0ETL39GcugTOt8me65CMugjLx4SNx4yMy0yN4UCNDVSY39GdpdXZshSI", + value: "!(lewitować-23.15.1.8.0.zzo-98.pow-14e9.lew-1cd)!", + result: { + word: "lewitować", + correct: 15, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "23.01.2025", + }, + }, + { + date: "23.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkNWMtcXZs5iM4cTMtI3az5CMucjLy4iMx4yMy0yN4UCNDVSY39GdpdXZshSI", + value: "!(lewitować-23.12.2.7.0.skr-1782.lew-1cd)!", + result: { + word: "lewitować", + correct: 12, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "23.01.2025", + }, + }, + { + date: "23.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZjFTL3VGbuM2M10CblpnLzYWMtUmcr5CZ4ETLwNXYuAjLyEjLy4iMy4yMy0yN4UCNDVSY39GdpdXZshSI", + value: "!(lewitować-23.22.2.12.0.asp-18d.kre-1f3.zel-53c.lew-1cd)!", + result: { + word: "lewitować", + correct: 22, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "23.01.2025", + }, + }, + { + date: "23.01.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZjFTL3VGbuI2YtUGb35SO10ya6NnLkNDZtUmc65SMhFTLlpXduAjL3EjLy4CMy4yMy0yN4UCNDVSY39GdpdXZshSI", + value: "!(lewitować-23.20.2.17.0.uze-1a1.zre-d3d.szk-59.wle-cb.lew-1cd)!", + result: { + word: "lewitować", + correct: 20, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "23.01.2025", + }, + }, + { + date: "23.01.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQ2Yx0ydlxmLiNzYtUWa35CMuYjLy4CNx4yMy0yN4UCNDVSY39GdpdXZshSI", + value: "!(lewitować-23.14.2.6.0.wie-c3b.lew-1cd)!", + result: { + word: "lewitować", + correct: 14, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "23.01.2025", + }, + }, + { + date: "23.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkNWMtcXZuUGOz0CdpxmLkJzMtsWaw5SZ4ITMtwWe35iZiJTL1h2YuAjLxEjLx4iNy4yMy0yN4UCNDVSY39GdpdXZshSI", + value: "!(lewitować-23.26.1.11.0.chu-2bf.wyl-128e.pik-32d.lit-38e.ew-1cd)!", + result: { + word: "lewitować", + correct: 26, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "23.01.2025", + }, + }, + { + date: "23.01.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZjFTL3VGbuQGNx0CbpJmLkRWMtw2bk5CM0ITLsFWbuczY10SYwVnL3UWLvpneuAjL1EjLz4yNy4yMy0yN4UCNDVSY39GdpdXZshSI", + value: + "!(lewitować-23.27.3.15.0.zzo-e7.upa-5c7.mal-240.dol-1dd.bil-14d.lew-1cd)!", + result: { + word: "lewitować", + correct: 27, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 45, + date: "23.01.2025", + }, + }, + { + date: "23.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQ2Yx0ydl5SZ4MTL0lGbuMDNx0Cdp5mL4AzNtwWat5CMuQjLw4SNy4yMy0yN4UCNDVSY39GdpdXZshSI", + value: "!(lewitować-23.25.0.4.0.mil-708.nit-143.lit-38e.ew-1cd)!", + result: { + word: "lewitować", + correct: 25, + position: 0, + incorrect: 4, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "23.01.2025", + }, + }, + { + date: "23.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQ2Yx0ydlxmLkJmZ00yc5dnL2EmYtUWat5CMukjL24COx4yMy0yN4UCNDVSY39GdpdXZshSI", + value: "!(lewitować-23.18.6.9.0.mie-ba6.wys-4fbd.lew-1cd)!", + result: { + word: "lewitować", + correct: 18, + position: 6, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 33, + date: "23.01.2025", + }, + }, + { + date: "23.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZjFTL35yNk1yclxmLzkDOhFTL6JHcuAjLwEjLx4COx4yMy0yN4UCNDVSY39GdpdXZshSI", + value: "!(lewitować-23.18.1.10.0.prz-1a893.les-d7.w-1cd)!", + result: { + word: "lewitować", + correct: 18, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "23.01.2025", + }, + }, + { + date: "23.01.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkNWMtcXZs5COhRTLpd3auUTMx0Sa3FmLlZDNtk2dz5iMzMTMtMXe35CMukjLx4iMz4yMy0yN4UCNDVSY39GdpdXZshSI", + value: "!(lewitować-23.32.1.9.0.wys-1332.swi-46e.awi-115.kwi-4a8.lew-1cd)!", + result: { + word: "lewitować", + correct: 32, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "23.01.2025", + }, + }, + { + date: "23.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkNWMtcXZs5CZtQXa35iZ40SajNnLmVWLvpneuAjLzEjLw4SOx4yMy0yN4UCNDVSY39GdpdXZshSI", + value: "!(lewitować-23.19.0.13.0.zzo-ef.sci-8f.wit-d.lew-1cd)!", + result: { + word: "lewitować", + correct: 19, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "23.01.2025", + }, + }, + { + date: "23.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZjFTL3VGbuYjYz0SeyRnL5ImNtw2b65CMukjLz4SNx4yMy0yN4UCNDVSY39GdpdXZshSI", + value: "!(lewitować-23.15.3.9.0.zol-6b9.try-3b6.lew-1cd)!", + result: { + word: "lewitować", + correct: 15, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "23.01.2025", + }, + }, + { + date: "23.01.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZjFTL3VGbukDZy0CbhJmL3gTNtQ3bt5iN0UWLwN3duAjL1EjLx4CNy4yMy0yN4UCNDVSY39GdpdXZshSI", + value: "!(lewitować-23.24.1.15.0.wsp-e46.mot-587.bal-2d9.lew-1cd)!", + result: { + word: "lewitować", + correct: 24, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 40, + date: "23.01.2025", + }, + }, + { + date: "23.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZjFTL3VGbuYDMx0Sa3RnL5UGNx0ydvBnL5gDOy0yc5dnL4kTLvpneuAjL0EjLx4iNy4yMy0yN4UCNDVSY39GdpdXZshSI", + value: + "!(lewitować-23.26.1.14.0.zzo-98.wys-2889.pow-14e9.twi-106.lew-1cd)!", + result: { + word: "lewitować", + correct: 26, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "23.01.2025", + }, + }, + { + date: "23.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQ2Yx0ydlxmLhdTL0lmbuMTLvJ3duMWYiRTLk9GcuAjLxEjLx4CMy4yMy0yN4UCNDVSY39GdpdXZshSI", + value: "!(lewitować-23.20.1.11.0.pod-4bac.wro-3.nit-7a.lew-1cd)!", + result: { + word: "lewitować", + correct: 20, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "23.01.2025", + }, + }, +]; + +results.resultsBySource["https://www.hejto.pl/wpis/co-jest-kuzwa-difflepl"] = + []; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/co-to-kuzwa-jest-deg-deg-to-ma-byc-slowo-15-01-2025-flag-pl-diffle-difflepl" +] = [ + { + date: "15.01.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMiFTLoNWYuUmNz0yYh1mL4ETLjF2ZuIjNtQWYw5iMwYmMt42br5CMuUTMuAjL0EjL1ETL5h2YhhSI", + value: "!(achy-15.14.0.15.0.kon-2f02.pad-62.gac-18.mac-36e.ach-1b1)!", + result: { + word: "achy", + correct: 14, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "15.01.2025", + }, + }, + { + date: "15.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxIWMtg2Yh5CMjVjLxcTMtg2Yz4SZ20yYhxmL2ITLhp3YuQmZ00icvRnLykTMtAXdr5CMukTMuEjL1EjL1ETL5h2YhhSI", + value: + "!(achy-15.15.1.19.0.kup-192.tor-4fd.cza-26.lac-6e.3ch-171.5c0.ach-1b1)!", + result: { + word: "achy", + correct: 15, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 35, + date: "15.01.2025", + }, + }, + { + date: "15.01.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMiFTLoNWYuITZtMWYm5CZ0ETLkF2ZuEzNz0ychxmL1ImMt0WY05CZjJjMts2bw5CMuYTMuEjL1EjL1ETL5h2YhhSI", + value: + "!(achy-15.15.1.16.0.pok-22cd.tam-2b5.las-371.gad-14d.fac-e2.ach-1b1)!", + result: { + word: "achy", + correct: 15, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "15.01.2025", + }, + }, + { + date: "15.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMiFTLoNWYuMjLlFmLxEjMtg2Yz4iMy0yYhdmLyUWLjFmZuUmNtMWYs5iZi1yYhRmLykTMtAXYj5SNhJTL0FmYuQTYx0iavdnLkJjMtIXZt5CMuEjMuMjLyMjL1ETL5h2YhhSI", + value: + "!(achy-15.32.3.21.0.mer-22d.woj-1a4.bat-2a5.cap-192.dac-bf.lac-6e.fac-e2.gac-22.3ch-211.ae.3.ach-1b1)!", + result: { + word: "achy", + correct: 32, + position: 3, + incorrect: 21, + knownIncorrect: 0, + totalWords: 12, + totalLetters: 56, + date: "15.01.2025", + }, + }, + { + date: "15.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxIWMtg2Yh5iZi1yYhRmLiVTMtMWY35iNjJTLhJ3ZuQzNtIWdw5CMuMTMuAjL3EjL1ETL5h2YhhSI", + value: "!(achy-15.17.0.13.0.pub-74.gra-2c6.wac-15b.dac-bf.ach-1b1)!", + result: { + word: "achy", + correct: 17, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "15.01.2025", + }, + }, + { + date: "15.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMiFTLoNWYuQzY20SYoNmL1YWLiVHduYWZz0icwNnLw4iNx4yMukjL1ETL5h2YhhSI", + value: "!(achy-15.9.3.16.0.spr-3ef.tub-f5.cha-6c4.ach-1b1)!", + result: { + word: "achy", + correct: 9, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "15.01.2025", + }, + }, + { + date: "15.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEjYx0CajFmLw0yalJmLyUWLjFmZuIjMtMWYn5SZ2MTLjFWbuYmYtMWYk5SZ20yYhxmL1MjMtMWYw5SO00ic0NnL4MmMtUHaj5CMukTMuEjL0MjL1ETL5h2YhhSI", + value: + "!(achy-15.34.1.19.0.chu-2c8.str-49.pac-235.lac-6e.dac-bf.mac-36e.gac-22.fac-e2.bek-0.ach-1b1)!", + result: { + word: "achy", + correct: 34, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 54, + date: "15.01.2025", + }, + }, + { + date: "15.01.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxIWMtg2Yh5iY5MTLiFmYuIGOyETLyFWbugTYt8GczVWau5CMuYTMuAjLwEjL1ETL5h2YhhSI", + value: "!(achy-15.10.0.16.0.niespo-a8.mar-128b.bab-39b.ach-1b1)!", + result: { + word: "achy", + correct: 10, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "15.01.2025", + }, + }, + { + date: "15.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxIWMtg2Yh5CO0ITLq92duUmNz0yYh1mLmJWLjFGZuIjY3EWMtoncw5CMucTMuEjL1EjL1ETL5h2YhhSI", + value: "!(achy-15.15.1.17.0.prz-1a7b2.dac-bf.mac-36e.woj-248.ach-1b1)!", + result: { + word: "achy", + correct: 15, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "15.01.2025", + }, + }, + { + date: "15.01.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEjYx0CajFmLlRzMt8Waw5SO10ya6NnLw4yNx4CMugjL1ETL5h2YhhSI", + value: "!(achy-15.8.0.17.0.szk-59.pio-34e.ach-1b1)!", + result: { + word: "achy", + correct: 8, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "15.01.2025", + }, + }, + { + date: "15.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxIWMtg2Yh5iMy0yYhdmLyUWLjFmZuYmYtMWYk5iNtMWYi5SZ10SYyBnLiNmYtUWat5CMukTMuAjLzIjL1ETL5h2YhhSI", + value: + "!(achy-15.23.0.19.0.mie-bcb.pra-5e.bac-6.dac-bf.fac-e2.gac-22.ach-1b1)!", + result: { + word: "achy", + correct: 23, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "15.01.2025", + }, + }, + { + date: "15.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxIWMtg2Yh5SYz0CajNjL30CajJjLw0CbvBnLx0ibhZmLw4CNx4CMugjL1ETL5h2YhhSI", + value: "!(achy-15.8.0.14.0.fan-1.pol-0.2ch-7.3ch-3a.ach-1b1)!", + result: { + word: "achy", + correct: 8, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 22, + date: "15.01.2025", + }, + }, + { + date: "15.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMiFTLoNWYuITZtMWYm5iMy0yYhdmLxIWMtMWY05CNmRTLtFGbuADOh1ychBnL0YWMtQWe35CMuQTMuEjLwIjL1ETL5h2YhhSI", + value: + "!(achy-15.20.1.14.0.wyd-1f4.pas-a80.lam-4f4.tac-1b1.gac-22.fac-e2.ach-1b1)!", + result: { + word: "achy", + correct: 20, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 35, + date: "15.01.2025", + }, + }, + { + date: "15.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxIWMtg2Yh5iMy0yYhdmLiVTMtMWY35COtEGbm5SZ2MTLjFWbuEWOl1SYoNmL5MWMtEGZ15CZhFTNto3bw5CMucTMuIjL2IjL1ETL5h2YhhSI", + value: + "!(achy-15.26.2.17.0.poz-51ad.uda-1c9.cha-e9a.mac-36e.fla-8.wac-15b.gac-22.ach-1b1)!", + result: { + word: "achy", + correct: 26, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 45, + date: "15.01.2025", + }, + }, + { + date: "15.01.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMiFTLoNWYuITZtMWYm5iMx0SYtdmLlRTMtEmez5yM00yd5RmL1MmZt8mcw5CMuEjMuEjL1EjL1ETL5h2YhhSI", + value: "!(achy-15.15.1.21.0.pro-fc5.dyw-43.sza-14e.gma-12.fac-e2.ach-1b1)!", + result: { + word: "achy", + correct: 15, + position: 1, + incorrect: 21, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "15.01.2025", + }, + }, + { + date: "15.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxIWMtg2Yh5iZhRWLhh2YuYGZtQXYm5CN2IWMtsWe35CMuUTMuIjLwEjL1ETL5h2YhhSI", + value: "!(achy-15.10.2.15.0.wyk-1b64.fat-df.cha-daf.ach-1b1)!", + result: { + word: "achy", + correct: 10, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "15.01.2025", + }, + }, + { + date: "15.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMiFTLoNWYuITZtMWYm5SZ2MTLjFWbuIjMtMWYn5SZ20yYhxmLmJWLjFGZuQWMtoWY35SMkJWLzFGcuYWMtsWdl5CMukTMuAjLwMjL1ETL5h2YhhSI", + value: + "!(achy-15.30.0.19.0.euk-1f.pas-bd1.waj-1d.dac-bf.lac-6e.gac-22.mac-36e.fac-e2.ach-1b1)!", + result: { + word: "achy", + correct: 30, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 49, + date: "15.01.2025", + }, + }, + { + date: "15.01.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxIWMtg2Yh5iZ50ycvdmLw4SMx4CMucjL1ETL5h2YhhSI", + value: "!(achy-15.7.0.11.0.gos-9f.ach-1b1)!", + result: { + word: "achy", + correct: 7, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "15.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/czasem-tak-to-juz-jest-03-01-2025-diffle-difflepl-grywebowe-32-litery-w-4-slowac" +] = [ + { + date: "03.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmMlFjL2EGZx0SZpBnLmlDMx0SZpNmLjRDNto3c35CMucTMuEjL0EjLz0ybuRXO5UCNDVSawhSI", + value: "!(piętno-3.14.1.17.0.wsz-44c.cie-109f.pie-1da6.1e2d)!", + result: { + word: "piętno", + correct: 14, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "03.01.2025", + }, + }, + { + date: "03.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkJTZx0SZp5yYwQTL0VGcuEjY00CZvdnLw4yNuEjLyEjLz0ybuRXO5UCNDVSawhSI", + value: "!(piętno-3.12.1.7.0.wod-4b1.pet-40c.ie-1e2d)!", + result: { + word: "piętno", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "03.01.2025", + }, + }, + { + date: "03.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmMlFjL2kzYx0SZuITYy0iep5SMllzNtoncw5CMuQTMuAjL1EjLz0ybuRXO5UCNDVSawhSI", + value: "!(piętno-3.15.0.14.0.prz-79e1.iz-2a2.e-1c96.1e2d)!", + result: { + word: "piętno", + correct: 15, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "03.01.2025", + }, + }, + { + date: "03.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZyUWMtUmLwQWL0lGcuIWN10CajNjLlNTZtQnbp5CNjRTMtcWe35CMugTMuMjL0EjLz0ybuRXO5UCNDVSawhSI", + value: "!(piętno-3.14.3.18.0.wyg-14c4.int-e3e.3ch-55b.pit-d0.e-1e2d)!", + result: { + word: "piętno", + correct: 14, + position: 3, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "03.01.2025", + }, + }, + { + date: "03.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmMlFjLmRWZx0SZp5yNx0ybz5SNmlTNto3bw5CMuITMuIjL1EjLz0ybuRXO5UCNDVSawhSI", + value: "!(piętno-3.15.2.12.0.poz-59f5.so-17.ie-1edf.1e2d)!", + result: { + word: "piętno", + correct: 15, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "03.01.2025", + }, + }, + { + date: "03.01.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkJTZx0SZugTM10icpBnLxEWMtUme15CMuETMuAjLxEjLz0ybuRXO5UCNDVSawhSI", + value: "!(piętno-3.11.0.11.0.uze-1a1.pir-518.e-1e2d)!", + result: { + word: "piętno", + correct: 11, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "03.01.2025", + }, + }, + { + date: "03.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmMlFTLllmL1EGZ10ievBnLzgTMtA3ch5CMuETMuAjLyEjLz0ybuRXO5UCNDVSawhSI", + value: "!(piętno-3.12.0.11.0.asp-183.poz-5da5.ie-1e2d)!", + result: { + word: "piętno", + correct: 12, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "03.01.2025", + }, + }, + { + date: "03.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmMlFTLllmLyI2NhFTL6JHcuAjL54SMukjLz0ybuRXO5UCNDVSawhSI", + value: "!(piętno-3.9.1.9.0.prz-1a7b2.ie-1e2d)!", + result: { + word: "piętno", + correct: 9, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "03.01.2025", + }, + }, + { + date: "03.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkJTZx4SZ3UWMuATOlFjL3MGZx4yNhRWMuEGMmFjLmN2NtUWaw5SNm1CajNjLmZGOtoXY65CMuYTMuAjLxMjLz0ybuRXO5UCNDVSawhSI", + value: + "!(piętno-3.31.0.16.0.zaz-8ff.3ch-f5.pie-7cf.1f0a.1da7.1dc7.1e90.1e7e.1e2d)!", + result: { + word: "piętno", + correct: 31, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 47, + date: "03.01.2025", + }, + }, + { + date: "03.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkJTZx0SZpBnLyUWOx0SYyRnLiNmYtUWat5CMuQTMuIjLyEjLz0ybuRXO5UCNDVSawhSI", + value: "!(piętno-3.12.2.14.0.mie-bcb.tra-19e2.pie-1e2d)!", + result: { + word: "piętno", + correct: 12, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "03.01.2025", + }, + }, + { + date: "03.01.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkJTZx4SZ3UWMtUWaw5SZl1Sbp1mL3UmMuEmY00CajNjL1QjZx0iYhpnL4gzYtM3br5iZkJTMtMXe35CMuIjMuMjL1EjLz0ybuRXO5UCNDVSawhSI", + value: + "!(piętno-3.15.3.22.0.wys-12df.kos-c88.zab-1f45.3ch-4ba.2e7.mim-ee.pie-1e7e.1e2d)!", + result: { + word: "piętno", + correct: 15, + position: 3, + incorrect: 22, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 40, + date: "03.01.2025", + }, + }, + { + date: "03.01.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmMlFTLllGcuEzMl1CczdnLw4SOuAjLwEjLz0ybuRXO5UCNDVSawhSI", + value: "!(piętno-3.10.0.9.0.wsp-e31.pie-1e2d)!", + result: { + word: "piętno", + correct: 10, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "03.01.2025", + }, + }, + { + date: "03.01.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkJTZx0SZp5iMjVjMtc3bw5SOh1CbvpnLw4CNx4SMukjLz0ybuRXO5UCNDVSawhSI", + value: "!(piętno-3.9.1.14.0.zol-a9.pow-25c2.ie-1e2d)!", + result: { + word: "piętno", + correct: 9, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "03.01.2025", + }, + }, + { + date: "03.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmMlFTLllGcuYGM10iek5iM30yZppnL0EzNtwWat5CMuQTMuAjLyEjLz0ybuRXO5UCNDVSawhSI", + value: "!(piętno-3.12.0.14.0.mil-714.zig-72.dz-50f.pie-1e2d)!", + result: { + word: "piętno", + correct: 12, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "03.01.2025", + }, + }, + { + date: "03.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkJTZx0SZp5iM3cTMt42bw5CO50yb6pnLw4SOuEjLxEjLz0ybuRXO5UCNDVSawhSI", + value: "!(piętno-3.11.1.9.0.zzo-98.pon-1772.ie-1e2d)!", + result: { + word: "piętno", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "03.01.2025", + }, + }, + { + date: "03.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZyUWMuYTOjFTLllmLzMmYx0yby5SNmFGNtQ2bw5CMuATMuEjL2EjLz0ybuRXO5UCNDVSawhSI", + value: "!(piętno-3.16.1.10.0.pod-4af5.ro-1bc3.ie-1c96.1e2d)!", + result: { + word: "piętno", + correct: 16, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "03.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dobry-start-to-polowa-sukcesu-05-01-2025-diffle-difflepl-grywebowe-22-litery-w-3" +] = [ + { + date: "05.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITL5RmLy0CZ5dnL5EjNtkmek5CMucjLx4CNx4SNtcDOlQzQlEGajlHZ3hSI", + value: "!(wdychać-5.14.1.7.0.dzi-619.wyd-2.dy-2)!", + result: { + word: "wdychać", + correct: 14, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "05.01.2025", + }, + }, + { + date: "05.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITL5RmLy0CZuMTMhJTLr5yN1YTL3l3ducTMwUTLz9GcuAjL2EjLx4COx4SNtcDOlQzQlEGajlHZ3hSI", + value: "!(wdychać-5.18.1.16.0.pos-5017.wyw-657.k-2a13.d-2.dy-2)!", + result: { + word: "wdychać", + correct: 18, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "05.01.2025", + }, + }, + { + date: "05.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMtkHZ35iMtkHc15iNx0yY5xmL2ITOt8Gaj5CMucjLx4COx4SNtcDOlQzQlEGajlHZ3hSI", + value: "!(wdychać-5.18.1.7.0.cho-926.lyc-16.upy-2.wdy-2)!", + result: { + word: "wdychać", + correct: 18, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "05.01.2025", + }, + }, + { + date: "05.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMtkHZuEGZx0yYhdnL4MmMtUHaj5CMucjLx4SNx4SNtcDOlQzQlEGajlHZ3hSI", + value: "!(wdychać-5.15.1.7.0.chu-2c8.wac-1da.dy-2)!", + result: { + word: "wdychać", + correct: 15, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "05.01.2025", + }, + }, + { + date: "05.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMtkHZuUWY10yY5dnLwcDNtEWaj5yMtMWYt5yM4ETLwNXYuAjL1EjLx4SMy4SNtcDOlQzQlEGajlHZ3hSI", + value: "!(wdychać-5.21.1.15.0.asp-183.mac-3.cia-470.wyc-5ae.dy-2)!", + result: { + word: "wdychać", + correct: 21, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "05.01.2025", + }, + }, + { + date: "05.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMtkHZukDNy0iavdnLyI2NhFTL6JHcuAjL1EjLx4SMx4SNtcDOlQzQlEGajlHZ3hSI", + value: "!(wdychać-5.11.1.15.0.prz-1a7b2.woj-249.dy-2)!", + result: { + word: "wdychać", + correct: 11, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "05.01.2025", + }, + }, + { + date: "05.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMtknLx0SYk5CM3ETLlxmLl1SYpdnL0kzYx0ycvBnL4kTLvpneuAjL2EjLw4SMy4SNtcDOlQzQlEGajlHZ3hSI", + value: "!(wdychać-5.21.0.16.0.zzo-98.pos-1c94.wia-e.le-170.da-1.y-2)!", + result: { + word: "wdychać", + correct: 21, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "05.01.2025", + }, + }, + { + date: "05.01.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKy0Sek5CO00Sew5yN30Se65COtkXbuYGZyETLzl3duAjLwEjLw4SMy4SNtcDOlQzQlEGajlHZ3hSI", + value: "!(wdychać-5.21.0.10.0.wys-12df.my-8.zy-77.py-48.dy-2)!", + result: { + word: "wdychać", + correct: 21, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "05.01.2025", + }, + }, + { + date: "05.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMtkHZucTOx0CZ65iMtQWe35yNjJTLhJ3ZuUjZ5UTL69GcuAjLwEjLx4SMy4SNtcDOlQzQlEGajlHZ3hSI", + value: "!(wdychać-5.21.1.10.0.poz-59f5.gra-2c7.wyd-2.zd-197.dy-2)!", + result: { + word: "wdychać", + correct: 21, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "05.01.2025", + }, + }, + { + date: "05.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITL5RmLyUTYx0CZ5dnLk1ya1RmL4MjMtEGcz5CNxcTLslWbuEjL0EjLx4COx4SNtcDOlQzQlEGajlHZ3hSI", + value: "!(wdychać-5.18.1.14.1.mil-714.spa-238.duk-d.wyd-1a52.dy-2)!", + result: { + word: "wdychać", + correct: 18, + position: 1, + incorrect: 14, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 33, + date: "05.01.2025", + }, + }, + { + date: "05.01.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMtkHZuEjMz0Cc5dnLwYWMtQWYu5SYi1SY6NmLhZ2YtUmc65SMhFTLlpXduAjL4EjL04yNx4SNtcDOlQzQlEGajlHZ3hSI", + value: + "!(wdychać-5.17.4.18.0.uze-1a1.zre-cfa.cza-ba.nad-1f0.wyp-321.dy-2)!", + result: { + word: "wdychać", + correct: 17, + position: 4, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "05.01.2025", + }, + }, + { + date: "05.01.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKy0Sek5SYkFTLjFmLx0CZp5SMzUWLwN3duAjLyEjLw4SOx4SNtcDOlQzQlEGajlHZ3hSI", + value: "!(wdychać-5.19.0.12.0.wsp-e31.id-1.ac-1da.dy-2)!", + result: { + word: "wdychać", + correct: 19, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "05.01.2025", + }, + }, + { + date: "05.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKy0Sek5SMjNTL6NmLlVmZtIXe35SM3kTLzFWbukTNmFTLs9GcuAjLxEjLx4SOx4SNtcDOlQzQlEGajlHZ3hSI", + value: "!(wdychać-5.19.1.11.0.pol-1f59.mas-971.wyr-fee.cz-3c1.dy-2)!", + result: { + word: "wdychać", + correct: 19, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "05.01.2025", + }, + }, + { + date: "05.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITL5RmLzYmNx0CZ5dnLzYGNtEGaj5iYjJWLllWbuAjL0EjLz4COx4SNtcDOlQzQlEGajlHZ3hSI", + value: "!(wdychać-5.18.3.14.0.mie-bcb.cha-4f3.wyd-16f3.dy-2)!", + result: { + word: "wdychać", + correct: 18, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "05.01.2025", + }, + }, + { + date: "05.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKy0Sek5iMz0CZh5yY0ATMtQWe35SNmFGNtQ2bw5CMukjLz4SNx4SNtcDOlQzQlEGajlHZ3hSI", + value: "!(wdychać-5.15.3.9.0.pod-4af5.wyd-104c.ad-32.dy-2)!", + result: { + word: "wdychać", + correct: 15, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "05.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/duzo-mozliwosci-i-tak-dobrze-ze-tylko-w-pieciu-krokach-13-01-2025-diffle-difflep" +] = [ + { + date: "13.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjMyMTL65iNiZTLt5yMhRjMtAnL0UWYtc3buEzN1ETLllGcuAjLyEjLx4yMz4yMx0yN4UCNDVSYpdXYip3bwhSI", + value: "!(pozbawiać-13.33.1.12.0.pie-1571.ow-ae4.p-24a3.m-6b6.z-3220)!", + result: { + word: "pozbawiać", + correct: 33, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 46, + date: "13.01.2025", + }, + }, + { + date: "13.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjMyMjL1YjMz0ievBnL2ETMtoXai5COjVTLhx2aukzNxITLs9GcuAjLzEjLy4CNy4yMx0yN4UCNDVSYpdXYip3bwhSI", + value: "!(pozbawiać-13.24.2.13.0.pol-2179.kla-5c8.biz-116.poz-3265.3220)!", + result: { + word: "pozbawiać", + correct: 24, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "13.01.2025", + }, + }, + { + date: "13.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjMyMTL69GcuYDMi1ydhpnLyAjZtsWe35CMugjLx4yNx4yMx0yN4UCNDVSYpdXYip3bwhSI", + value: "!(pozbawiać-13.17.1.8.0.wyk-f02.zaw-b06.poz-3220)!", + result: { + word: "pozbawiać", + correct: 17, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "13.01.2025", + }, + }, + { + date: "13.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMyIzMuEjMkRTL65iZ1kjMtQ2bw5yM4ETLwNXYuAjLwEjLx4CNy4yMx0yN4UCNDVSYpdXYip3bwhSI", + value: "!(pozbawiać-13.24.1.10.0.asp-183.pod-295f.z-4d21.3220)!", + result: { + word: "pozbawiać", + correct: 24, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "13.01.2025", + }, + }, + { + date: "13.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwIjMz0ievBnLkVGOtonc05COjJTL1h2YuAjLxEjLy4yNx4yMx0yN4UCNDVSYpdXYip3bwhSI", + value: "!(pozbawiać-13.17.2.11.0.chu-2c8.trz-8ed.poz-3220)!", + result: { + word: "pozbawiać", + correct: 17, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "13.01.2025", + }, + }, + { + date: "13.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMyIzMto3bw5SNkVTL5p3cukjN00CajNjL0ETL1VmZuAjLwEjLy4yNx4yMx0yN4UCNDVSYpdXYip3bwhSI", + value: "!(pozbawiać-13.17.2.10.0.feu-14.3ch-469.szy-5d5.poz-3220)!", + result: { + word: "pozbawiać", + correct: 17, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "13.01.2025", + }, + }, + { + date: "13.01.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMyIzMto3bw5SZ00CZ69mL3MDNtEWat5CMucjLy4iNx4yMx0yN4UCNDVSYpdXYip3bwhSI", + value: "!(pozbawiać-13.16.2.7.0.mia-437.ozd-4e.poz-3220)!", + result: { + word: "pozbawiać", + correct: 16, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "13.01.2025", + }, + }, + { + date: "13.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjMyMjL5QWNz4CNyQGNuADZ4QjLzADN00ievBnLiFGNt8Gb65CMucjLy4iNz4yMx0yN4UCNDVSYpdXYip3bwhSI", + value: "!(pozbawiać-13.36.2.7.0.zlo-4ab.poz-4403.48d0.4d24.35d9.3220)!", + result: { + word: "pozbawiać", + correct: 36, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 45, + date: "13.01.2025", + }, + }, + { + date: "13.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjMyMjL1YjMz0ieuUzY1ETLn5SNmFGNtQ2bw5CMugjLw4yNy4yMx0yN4UCNDVSYpdXYip3bwhSI", + value: "!(pozbawiać-13.27.0.8.0.pod-4af5.g-15c5.z-3265.3220)!", + result: { + word: "pozbawiać", + correct: 27, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "13.01.2025", + }, + }, + { + date: "13.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjMyMTL65SO1ImYtQmLwYmYtc3bw5CNlJTLs9meukDNy0iavdnLyI2NhFTL6JHcuAjLwIjLy4COy4yMx0yN4UCNDVSYpdXYip3bwhSI", + value: + "!(pozbawiać-13.28.2.20.0.prz-1a7b2.woj-249.zol-2e4.pow-bf0.d-bb59.z-3220)!", + result: { + word: "pozbawiać", + correct: 28, + position: 2, + incorrect: 20, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 50, + date: "13.01.2025", + }, + }, + { + date: "13.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMyIzMuQjMkRjL4kzN00ievBnL4kTLvpneuAjLwEjLx4yMy4yMx0yN4UCNDVSYpdXYip3bwhSI", + value: "!(pozbawiać-13.23.1.10.0.zzo-98.poz-4798.4d24.3220)!", + result: { + word: "pozbawiać", + correct: 23, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "13.01.2025", + }, + }, + { + date: "13.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjMyMTL65iMjdjYtQ2bw5iYjJWLllWbuAjLzEjLz4yNx4yMx0yN4UCNDVSYpdXYip3bwhSI", + value: "!(pozbawiać-13.17.3.13.0.mie-bcb.pod-b7c2.z-3220)!", + result: { + word: "pozbawiać", + correct: 17, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 33, + date: "13.01.2025", + }, + }, + { + date: "13.01.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMyIzMuI2M1ETL69GcugDNy0CajVnLjFmM14SMyQGNto3bw5SMzUWLwN3duAjL4EjLz4CNz4yMx0yN4UCNDVSYpdXYip3bwhSI", + value: + "!(pozbawiać-13.34.3.18.0.wsp-e31.poz-4d21.52ac.uch-248.poz-153b.3220)!", + result: { + word: "pozbawiać", + correct: 34, + position: 3, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 55, + date: "13.01.2025", + }, + }, + { + date: "13.01.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjMyMTL69GcuIjYtw2bi5SOiFTLoN2MuMTL0VHauMmZtomL2ImNt0mLxYWMtQmL4UmMx0ibuMTY0ITLw9GcuYGZyETLzl3duAjLwIjLx4CO04yMx0yN4UCNDVSYpdXYip3bwhSI", + value: + "!(pozbawiać-13.48.1.20.0.wys-12df.pop-24a3.n-12e8.d-1f1.m-6b6.j-fc.hut-3.3ch-1b9.bol-b2.poz-3220)!", + result: { + word: "pozbawiać", + correct: 48, + position: 1, + incorrect: 20, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 69, + date: "13.01.2025", + }, + }, + { + date: "13.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwIjMz0ievBnLkRzMto3by5iZjNTLhp3cugTOt8me65CMukjLx4CNy4yMx0yN4UCNDVSYpdXYip3bwhSI", + value: "!(pozbawiać-13.24.1.9.0.zzo-98.sza-3cf.roz-34d.poz-3220)!", + result: { + word: "pozbawiać", + correct: 24, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "13.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dzisiaj-ja-pierwszy-09-02-2025-flag-pl-diffle-difflepl-grywebowe-26-liter-w-3-sl" +] = [ + { + date: "09.02.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmZ1IjL0IDNz0yc55iN0UWLwN3duAjLxEjLy4yMx4CM00Cc5kTJ0MUJ0NXe3hSI", + value: "!(występ-40.13.2.11.0.wsp-e46.ys-3424.25fd)!", + result: { + word: "występ", + correct: 13, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "09.02.2025", + }, + }, + { + date: "09.02.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmZ1IjLxgDOy4iMzMTMtMXe35CMugjLw4yMx4CM00Cc5kTJ0MUJ0NXe3hSI", + value: "!(występ-40.13.0.8.0.wys-1332.2881.25fd)!", + result: { + word: "występ", + correct: 13, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "09.02.2025", + }, + }, + { + date: "09.02.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZmVjMuczNiFTLzl3dugTL5x2cllmbuAjL0EjLx4CMx4CM00Cc5kTJ0MUJ0NXe3hSI", + value: "!(występ-40.10.1.14.0.niesly-8.wys-1b77.25fd)!", + result: { + word: "występ", + correct: 10, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "09.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYk1ydrFmLyETLoN2MuYTLoNmMuAjMtIHZuETLl1WYuImZtQXdm5iMiRTLsFGcuAjL4EjLw4SNy4SM00SYsVmchd3ahhSI", + value: + "!(akwarela-41.25.0.18.0.pal-4b2.fut-fb.ame-1.dr-20.2ch-6.3ch-12.akw-da)!", + result: { + word: "akwarela", + correct: 25, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 43, + date: "10.02.2025", + }, + }, + { + date: "09.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZmVjMtMXeuUTNy0iavdnLzkDOhFTL6JHcuAjL4EjLx4CMx4CM00Cc5kTJ0MUJ0NXe3hSI", + value: "!(występ-40.10.1.18.0.prz-1a893.woj-255.ys-25fd)!", + result: { + word: "występ", + correct: 10, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "09.02.2025", + }, + }, + { + date: "09.02.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkZWNy0yc5dnL2EmYtUWat5CMuETMuEjL44CM00Cc5kTJ0MUJ0NXe3hSI", + value: "!(występ-40.8.1.11.0.mie-ba6.wys-25fd)!", + result: { + word: "występ", + correct: 8, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "09.02.2025", + }, + }, + { + date: "09.02.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkZWNy0yc5dnL5QDNtQ3c15CZ4ETLwNXYuAjLxEjLw4iMx4CM00Cc5kTJ0MUJ0NXe3hSI", + value: "!(występ-40.12.0.11.0.asp-18d.ust-449.wys-25fd)!", + result: { + word: "występ", + correct: 12, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "09.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "Lvter", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhRWL3tWYuIWMy0ichZmLyUmYtIWY65CMuYjLy4iNx4SM00SYsVmchd3ahhSI", + value: "!(akwarela-41.16.2.6.0.zab-be2.far-21b.akw-da)!", + result: { + word: "akwarela", + correct: 16, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "10.02.2025", + }, + }, + { + date: "09.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkZWNy0yc55yY3ITL0N3duQmMj1Sa3NnL4kTLvpneuAjLxEjLx4yMx4CM00Cc5kTJ0MUJ0NXe3hSI", + value: "!(występ-40.13.1.11.0.zzo-98.swi-c2d.wst-27c.ys-25fd)!", + result: { + word: "występ", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "09.02.2025", + }, + }, + { + date: "09.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkZWNy0yc5dnL5QDNtQ3c15SYmRTLoN2MuATOtcWYq5iZ5QTLvxmeuAjLyEjLw4yMx4CM00Cc5kTJ0MUJ0NXe3hSI", + value: "!(występ-40.13.0.12.0.zlo-49f.jag-90.3ch-4fa.ust-449.wys-25fd)!", + result: { + word: "występ", + correct: 13, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "09.02.2025", + }, + }, + { + date: "09.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmZ1IjLlNDNtMXe35SMyUTMtUWat5iM10yYldnL4kTLvpneuAjLzEjLx4CNx4CM00Cc5kTJ0MUJ0NXe3hSI", + value: "!(występ-40.14.1.13.0.zzo-98.wec-52.mie-1521.wys-43e.25fd)!", + result: { + word: "występ", + correct: 14, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "09.02.2025", + }, + }, + { + date: "09.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZmVjMtMXe35SZzQTLoN2MuMTYk1ychBnLlNmNtw2b65CMuUTMuEjL54CM00Cc5kTJ0MUJ0NXe3hSI", + value: "!(występ-40.9.1.15.0.zol-6ce.pas-da3.3ch-43e.wys-25fd)!", + result: { + word: "występ", + correct: 9, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "09.02.2025", + }, + }, + { + date: "09.02.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmZ1ITLz5yMlFTMtQnLhNmYtoXe35iZiJTL1h2YuAjL1EjLw4iMx4CM00Cc5kTJ0MUJ0NXe3hSI", + value: "!(występ-40.12.0.15.0.chu-2bf.wyz-bca.t-11e3.s-25fd)!", + result: { + word: "występ", + correct: 12, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "09.02.2025", + }, + }, + { + date: "09.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZmVjMuADM2IjLkhzYx0ycuQDN5ETLwl3duMWYiRTLk9GcuAjLxEjLy4CMy4CM00Cc5kTJ0MUJ0NXe3hSI", + value: "!(występ-40.20.2.11.0.pod-4bac.wyp-1944.s-1c8d.2600.25fd)!", + result: { + word: "występ", + correct: 20, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "09.02.2025", + }, + }, + { + date: "09.02.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZmVjMuIDN00yc55iN0UWLwN3duAjLxEjLx4CNx4CM00Cc5kTJ0MUJ0NXe3hSI", + value: "!(występ-40.14.1.11.0.wsp-e46.ys-442.25fd)!", + result: { + word: "występ", + correct: 14, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "09.02.2025", + }, + }, + { + date: "09.02.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZmVjMtMXe35CZwMTLzV2ZuAzM00SYp1mLw4SOuIjL54CM00Cc5kTJ0MUJ0NXe3hSI", + value: "!(występ-40.9.2.9.0.mia-430.ges-30d.wys-25fd)!", + result: { + word: "występ", + correct: 9, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "09.02.2025", + }, + }, + { + date: "09.02.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZmVjMtMXeuETNz0Cdh5iYzMWLll2duAjLzEjLx4CMx4CM00Cc5kTJ0MUJ0NXe3hSI", + value: "!(występ-40.10.1.13.0.wie-c3b.at-351.ys-25fd)!", + result: { + word: "występ", + correct: 10, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "09.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dzisiaj-to-samo-sie-zrobilo-tth-tth-04-02-2025-diffle-difflepl-grywebowe-26-lite" +] = [ + { + date: "04.02.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4QTMtEmcuQjN3ETLyFGcukTNmJTLu92auAjLy4SNukTMuUzMtsWaud3bjFmcwhSI", + value: "!(pracownik-35.19.5.2.0.kon-2f59.par-1764.ra-148)!", + result: { + word: "pracownik", + correct: 19, + position: 5, + incorrect: 2, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "04.02.2025", + }, + }, + { + date: "04.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4QTMtEmcw5SM3ITLyFGauIWNy0SY6NnLwYGMy0ibvtmLw4CMx4SNuYjMuUzMtsWaud3bjFmcwhSI", + value: "!(pracownik-35.26.5.10.0.kon-20f0.sza-25b.har-271.pra-148)!", + result: { + word: "pracownik", + correct: 26, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 41, + date: "04.02.2025", + }, + }, + { + date: "04.02.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO0ETLhJHcucTZtE2dj5iNhJWLllWbuAjL44SNucTMuUzMtsWaud3bjFmcwhSI", + value: "!(pracownik-35.17.5.8.0.mie-ba6.cwa-e7.pra-148)!", + result: { + word: "pracownik", + correct: 17, + position: 5, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "04.02.2025", + }, + }, + { + date: "04.02.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDNx0SYy5iM2MWLyVGcuAjL24iMuUTMuUzMtsWaud3bjFmcwhSI", + value: "!(pracownik-35.15.2.6.0.per-c62.ra-148)!", + result: { + word: "pracownik", + correct: 15, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "04.02.2025", + }, + }, + { + date: "04.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDNx4COyETLhJHcuYDMi1SZ6NmLx4CMx4yMuEjMuUzMtsWaud3bjFmcwhSI", + value: "!(pracownik-35.21.3.10.1.cze-b06.pra-128.148)!", + result: { + word: "pracownik", + correct: 21, + position: 3, + incorrect: 10, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 34, + date: "04.02.2025", + }, + }, + { + date: "04.02.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO0ETLhJnLlJWMtsWYuEGZyITLr9GcuAjL24SNukTMuUzMtsWaud3bjFmcwhSI", + value: "!(pracownik-35.19.5.6.0.pok-22da.ak-1be.ra-148)!", + result: { + word: "pracownik", + correct: 19, + position: 5, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "04.02.2025", + }, + }, + { + date: "04.02.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4QTMtEmcw5CZyQTLyB3cuAjL14SMuUTMuUzMtsWaud3bjFmcwhSI", + value: "!(pracownik-35.15.1.5.0.spr-42d.pra-148)!", + result: { + word: "pracownik", + correct: 15, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "04.02.2025", + }, + }, + { + date: "04.02.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO0EjLlVTLhJnLxITL6NHcuAjL34iMuUTMuUzMtsWaud3bjFmcwhSI", + value: "!(pracownik-35.15.2.7.0.psz-21.ra-5e.148)!", + result: { + word: "pracownik", + correct: 15, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "04.02.2025", + }, + }, + { + date: "04.02.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO0ETLhJnL0YzNx0ichBnLwYWMt8Gcv5iY2ITLwp3cllmbuAjL14SNuMjMuUzMtsWaud3bjFmcwhSI", + value: "!(pracownik-35.23.5.5.0.nieszp-26b.opo-1f0.par-1764.ra-148)!", + result: { + word: "pracownik", + correct: 23, + position: 5, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "04.02.2025", + }, + }, + { + date: "04.02.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO0EjL3cTZtEmcw5yY2EWLhJ3ZuAjLy4CMuAjMuUzMtsWaud3bjFmcwhSI", + value: "!(pracownik-35.20.0.2.0.gra-a6c.pra-e77.148)!", + result: { + word: "pracownik", + correct: 20, + position: 0, + incorrect: 2, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "04.02.2025", + }, + }, + { + date: "04.02.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDNx0SYy5yMz0yYh5yYklTLhxGcuAjL44CMucTMuUzMtsWaud3bjFmcwhSI", + value: "!(pracownik-35.17.0.8.0.pla-9dc.ac-33.ra-148)!", + result: { + word: "pracownik", + correct: 17, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "04.02.2025", + }, + }, + { + date: "04.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO0ETLhJnLxUzNx0ich5SYjhjMtI3bw5CNmFTLkl3duAjL14iNuMjMuUzMtsWaud3bjFmcwhSI", + value: "!(pracownik-35.23.6.5.0.wyd-1f4.por-28ca.ar-1751.ra-148)!", + result: { + word: "pracownik", + correct: 23, + position: 6, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "04.02.2025", + }, + }, + { + date: "04.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4QTMtEmcw5CNxETLsF2duITZtsWYo5SZ10SYrVnLx4CMx4CNuUjMuUzMtsWaud3bjFmcwhSI", + value: "!(pracownik-35.25.4.10.1.uka-5e.hak-e2.wal-114.pra-148)!", + result: { + word: "pracownik", + correct: 25, + position: 4, + incorrect: 10, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 39, + date: "04.02.2025", + }, + }, + { + date: "04.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4QTMtEmLzkDOhFTL6JHcuAjL34iMuMTMuUzMtsWaud3bjFmcwhSI", + value: "!(pracownik-35.13.2.7.0.prz-1a893.a-148)!", + result: { + word: "pracownik", + correct: 13, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "04.02.2025", + }, + }, + { + date: "04.02.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4QTMtEmcw5COxkTMtEmc05iZiJTL1h2YuAjL14iMukTMuUzMtsWaud3bjFmcwhSI", + value: "!(pracownik-35.19.2.5.0.chu-2bf.tra-1918.pra-148)!", + result: { + word: "pracownik", + correct: 19, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "04.02.2025", + }, + }, + { + date: "04.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDNx0SYyBnLidjMtIXYk5iN4MTLzF2aukzMx0icrFmLmFTLrVXZuAjL34iNugjMuUzMtsWaud3bjFmcwhSI", + value: "!(pracownik-35.28.6.7.0.euk-1f.akr-139.kas-386.dar-27b.pra-148)!", + result: { + word: "pracownik", + correct: 28, + position: 6, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "04.02.2025", + }, + }, + { + date: "04.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDNx0SYy5CN2cTMtIXYuEWMyUTL69GcuAjL04yMuAjMuUzMtsWaud3bjFmcwhSI", + value: "!(pracownik-35.20.3.4.0.poz-521a.ar-1764.ra-148)!", + result: { + word: "pracownik", + correct: 20, + position: 3, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "04.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/fajne-ale-fuks-01-03-2025-flag-pl-diffle-difflepl-grywebowe-21-liter-w-2-slowach" +] = [ + { + date: "01.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmNTLlJWYuUDZhFTLu92auAjL24CMuUTMuAjNtEmajFmcyVmYhhSI", + value: "!(aberracja-60.15.0.6.0.kon-1ad5.abe-3f)!", + result: { + word: "aberracja", + correct: 15, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "01.03.2025", + }, + }, + { + date: "01.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZz0SZiFmLkdTNtIXaw5SO10ya6NnLw4SNx4SMuQTMuAjNtEmajFmcyVmYhhSI", + value: "!(aberracja-60.14.1.15.0.szk-59.pir-57d.abe-3f)!", + result: { + word: "aberracja", + correct: 14, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "01.03.2025", + }, + }, + { + date: "01.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpY2MtUmYh5iMtIncl5CZyQTLyB3cuAjL54SMucTMuAjNtEmajFmcyVmYhhSI", + value: "!(aberracja-60.17.1.9.0.spr-42d.err-2.abe-3f)!", + result: { + word: "aberracja", + correct: 17, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "01.03.2025", + }, + }, + { + date: "01.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpY2MtUmYh5SOkFTLqFmYucjNx0ich1mLykjMx0ieyBnLw4CMx4CNucTMuAjNtEmajFmcyVmYhhSI", + value: "!(aberracja-60.17.4.10.0.prz-1292.mar-167.baj-1d9.abe-3f)!", + result: { + word: "aberracja", + correct: 17, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "01.03.2025", + }, + }, + { + date: "01.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpY2MtUmYh5SN0ITL6N3duAjL54CMuITMuAjNtEmajFmcyVmYhhSI", + value: "!(aberracja-60.12.0.9.0.wsz-245.abe-3f)!", + result: { + word: "aberracja", + correct: 12, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "01.03.2025", + }, + }, + { + date: "01.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmNTLlJWYuQGOtEWZy5CO20SZsdnLw0Sb1BnLxIGOtg2Yz5iZ2ETLyVGduMmNh1SYydmLw4iNx4iMuMjMuAjNtEmajFmcyVmYhhSI", + value: + "!(aberracja-60.23.2.16.0.gra-a6c.ter-16f.sch-8b1.pum-0.wle-68.rea-8d.abe-3f)!", + result: { + word: "aberracja", + correct: 23, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "01.03.2025", + }, + }, + { + date: "01.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZz0SZiFmLlNWMtMWYy5SNkNTLyVnZuATLtFmcuEzMx0ibldmLhFzNz0ieyBnLw4iNx4SMuUjMuAjNtEmajFmcyVmYhhSI", + value: + "!(aberracja-60.25.1.16.0.prz-371a.gen-131.ram-0.fur-3d5.rac-1ce.abe-3f)!", + result: { + word: "aberracja", + correct: 25, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 42, + date: "01.03.2025", + }, + }, + { + date: "01.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmNTLlJWYuEGZx0iahJmL3EmNtEGbr5iM3MTLoN2MuQjZx0CZ5dnLw4SMx4yMuAjMuAjNtEmajFmcyVmYhhSI", + value: "!(aberracja-60.20.3.11.0.wyd-1f4.3ch-372.kla-6a7.baj-1da.abe-3f)!", + result: { + word: "aberracja", + correct: 20, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "01.03.2025", + }, + }, + { + date: "01.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpY2MtUmYh5yMtAXZy5iMhFTLnVGZuYTYi1SZp1mLw4SNx4yMuQjMuAjNtEmajFmcyVmYhhSI", + value: "!(aberracja-60.24.3.15.0.mie-ba6.deg-1a2.rep-3.abe-3f)!", + result: { + word: "aberracja", + correct: 24, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 42, + date: "01.03.2025", + }, + }, + { + date: "01.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmNTLlJWYuMmYx0CZv1mLyQWMtMWYy5yM5gTYx0ieyBnLw4iMx4iMuIjMuAjNtEmajFmcyVmYhhSI", + value: "!(aberracja-60.22.2.12.0.prz-1a893.rac-1d2.mod-1bc.abe-3f)!", + result: { + word: "aberracja", + correct: 22, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "01.03.2025", + }, + }, + { + date: "01.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZz0SZiFmLw0SYyRmLwUmMtEGbw5iM00SeydmLhFTLlJXZuIjYx0iclRnL3EWLrV2cuYmYy0SdoNmLx4SOx4SMuEzMuAjNtEmajFmcyVmYhhSI", + value: + "!(aberracja-60.31.1.19.1.chu-2bf.sek-a7.ter-1b2.ere-1a.gry-42.pla-2e0.dra-0.abe-3f)!", + result: { + word: "aberracja", + correct: 31, + position: 1, + incorrect: 19, + knownIncorrect: 1, + totalWords: 8, + totalLetters: 51, + date: "01.03.2025", + }, + }, + { + date: "01.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpY2MtUmYh5iYwITL6VGZuQDZx0icv1mLw0iclNmLjR2MtIXZ35iZx0ya1VmLy4SNx4yMuYjMuAjNtEmajFmcyVmYhhSI", + value: + "!(aberracja-60.26.3.15.2.euk-1f.wer-3dc.cer-0.mor-1d4.dez-20b.abe-3f)!", + result: { + word: "aberracja", + correct: 26, + position: 3, + incorrect: 15, + knownIncorrect: 2, + totalWords: 6, + totalLetters: 44, + date: "01.03.2025", + }, + }, + { + date: "01.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmNTLlJWYuMWLkF2duQ2Ny0CbhJmLhFjM10ievBnLw4iMx4SMucTMuAjNtEmajFmcyVmYhhSI", + value: "!(aberracja-60.17.1.12.0.poz-521a.bal-27d.wad-c.abe-3f)!", + result: { + word: "aberracja", + correct: 17, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "01.03.2025", + }, + }, + { + date: "01.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZz0SZiFmL1gTLjVmcuQTLqVmYuITZx0CboNmL2ETL1p3cuQWMx0ibvJmLw4iNx4CNuIjMuAjNtEmajFmcyVmYhhSI", + value: + "!(aberracja-60.22.4.16.0.bon-11d.szu-16.chl-1e2.bej-4.rec-85.abe-3f)!", + result: { + word: "aberracja", + correct: 22, + position: 4, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 42, + date: "01.03.2025", + }, + }, + { + date: "01.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZz0SZiFmLlRzNtUWai5SM0ETL6VmcuAjL54SMuQTMuAjNtEmajFmcyVmYhhSI", + value: "!(aberracja-60.14.1.9.0.rez-141.bie-74e.abe-3f)!", + result: { + word: "aberracja", + correct: 14, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "01.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/fart-totalny-z-drugim-slowem-deg-deg-16-01-2025-diffle-difflepl-grywebowe-20-lit" +] = [ + { + date: "16.01.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhFmMuQTYy0iblJnLyAjZy0ibvtmLw4yNuEjLyEjL2ETLuV2Z05WZyhSI", + value: "!(rentgen-16.12.1.7.0.kon-2f02.ren-2a4.2aa)!", + result: { + word: "rentgen", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "16.01.2025", + }, + }, + { + date: "16.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYhJTLu5iYyETLnVmcuATMx0iclJmL2cTNx0Sa6RmLwADNtUHbw5CMuQTMuMjL4EjL2ETLuV2Z05WZyhSI", + value: "!(rentgen-16.18.3.14.0.plu-400.dzi-1576.ber-110.reg-12b.n-2aa)!", + result: { + word: "rentgen", + correct: 18, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "16.01.2025", + }, + }, + { + date: "16.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWYy0iblJnLwkjMtUGb65CNhJTLuVmcuIzNtA3bt5SZ20SdyJmLiNWMtkncr5CMuYTMuAjL3EjL2ETLuV2Z05WZyhSI", + value: + "!(rentgen-16.17.0.16.0.kry-1cb.bru-6e.mop-72.ren-2a4.zle-290.ren-2aa)!", + result: { + word: "rentgen", + correct: 17, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "16.01.2025", + }, + }, + { + date: "16.01.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWYy0ibuADO00iZl5COy0Cd1JnL2YmMtUmc05CZjJjMts2bw5CMuITMuEjLwIjL2ETLuV2Z05WZyhSI", + value: "!(rentgen-16.20.1.12.0.pok-22cd.tre-2f6.rut-28.ef-480.n-2aa)!", + result: { + word: "rentgen", + correct: 20, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "16.01.2025", + }, + }, + { + date: "16.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWYy0iblJnL5UjMt4WZw5yN50Sd5dnLw4COuEjLyEjL2ETLuV2Z05WZyhSI", + value: "!(rentgen-16.12.1.8.0.wyu-97.pen-259.ren-2aa)!", + result: { + word: "rentgen", + correct: 12, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "16.01.2025", + }, + }, + { + date: "16.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWYy0ibl5SZx0ib5JnLmV2MtIHcz5CMuETMuAjLzEjL2ETLuV2Z05WZyhSI", + value: "!(rentgen-16.13.0.11.0.spr-3ef.ryn-1e.en-2aa)!", + result: { + word: "rentgen", + correct: 13, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "16.01.2025", + }, + }, + { + date: "16.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYhJjL0EmMt4WZy5CNhlTL0VWbuEzYx0CblBnL2YTL05WZuMmMy0ib5NnL4MmMtUHaj5CMuYTMuMjLyIjL2ETLuV2Z05WZyhSI", + value: + "!(rentgen-16.22.3.16.0.chu-2c8.syn-22c.ent-66.pel-1c1.met-9a4.ren-2a4.2aa)!", + result: { + word: "rentgen", + correct: 22, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "16.01.2025", + }, + }, + { + date: "16.01.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYhJTLuVmcuITMy0iblZmLzAzNtMXe3VWau5CMuATMuAjL0EjL2ETLuV2Z05WZyhSI", + value: "!(rentgen-16.14.0.10.0.niewys-703.fen-212.ren-2aa)!", + result: { + word: "rentgen", + correct: 14, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "16.01.2025", + }, + }, + { + date: "16.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhFmMt4mLkJWMtMWZy5SYkZTLyV2cuQTMtUXZm5CMuMTMuEjLyEjL2ETLuV2Z05WZyhSI", + value: "!(rentgen-16.12.1.13.0.feu-14.ser-6da.rec-1bd.n-2aa)!", + result: { + word: "rentgen", + correct: 12, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "16.01.2025", + }, + }, + { + date: "16.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhFmMt4WZy5CO0QWLlJHcuITNx0CajNjLiNmYtUWat5CMuUTMuEjL4EjL2ETLuV2Z05WZyhSI", + value: "!(rentgen-16.18.1.15.0.mie-bcb.3ch-152.pre-d48.ren-2aa)!", + result: { + word: "rentgen", + correct: 18, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "16.01.2025", + }, + }, + { + date: "16.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWYy0iblJnL0IWMtg2Yz4SO0ITLq92duIjY3EWMtoncw5CMuYTMuAjL0EjL2ETLuV2Z05WZyhSI", + value: "!(rentgen-16.14.0.16.0.prz-1a7b2.woj-249.3ch-1b4.ren-2aa)!", + result: { + word: "rentgen", + correct: 14, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "16.01.2025", + }, + }, + { + date: "16.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWYy0iblJnLhlzNt8mcw5iM1UTLoN2MuYjZy0SZyRnL0YWMtQWe35CMuITMuEjL4EjL2ETLuV2Z05WZyhSI", + value: "!(rentgen-16.18.1.12.0.wyd-1f4.tre-2f6.3ch-552.pro-79a.ren-2aa)!", + result: { + word: "rentgen", + correct: 18, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "16.01.2025", + }, + }, + { + date: "16.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWYy4iNyETLuVmcuIzMt0Wdu5CZhFTNto3bw5CMuATMuIjL1EjL2ETLuV2Z05WZyhSI", + value: "!(rentgen-16.15.2.10.0.poz-51ad.num-32.ren-126.2aa)!", + result: { + word: "rentgen", + correct: 15, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "16.01.2025", + }, + }, + { + date: "16.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYhJjLlV2Mt4WZy5iZx0ya1VmLw4iNuEjL0EjL2ETLuV2Z05WZyhSI", + value: "!(rentgen-16.14.1.6.0.euk-1f.ren-3ee.2aa)!", + result: { + word: "rentgen", + correct: 14, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "16.01.2025", + }, + }, + { + date: "16.01.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhFmMt4mLwgDNtYmL0EmMt4WZy5SYxUTLylGcukTNtsmez5CMugTMuAjLwIjL2ETLuV2Z05WZyhSI", + value: "!(rentgen-16.20.0.18.0.szk-59.pir-51a.ren-2a4.f-480.n-2aa)!", + result: { + word: "rentgen", + correct: 20, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "16.01.2025", + }, + }, + { + date: "16.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYhJTLu5SOxETLm5SOy0ialJnLkBjYtMXY65CMuMTMuIjL3EjL2ETLuV2Z05WZyhSI", + value: "!(rentgen-16.17.2.13.0.zas-b0d.rej-29.f-119.n-2aa)!", + result: { + word: "rentgen", + correct: 17, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "16.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/gra-zrobiona-ide-w-kime-21-02-2025-diffle-difflepl-grywebowe-17-liter-w-3-slowac" +] = [ + { + date: "21.02.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzETL1NHcuUWZx0SYwNnLwMDNtEWat5CMugjLx4COuITNtcDOlQzQlU3cwhSI", + value: "!(psuć-52.8.1.8.0.mia-430.spa-1ee.psu-13)!", + result: { + word: "psuć", + correct: 8, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "21.02.2025", + }, + }, + { + date: "21.02.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTMtU3cuEWLzlGcuMDNzETLsl3duAjLxEjLw4COuITNtcDOlQzQlU3cwhSI", + value: "!(psuć-52.8.0.11.0.wyl-1343.pis-a.su-13)!", + result: { + word: "psuć", + correct: 8, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "21.02.2025", + }, + }, + { + date: "21.02.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMx0SdzBnL2kDZtIHcz5iNhJWLllWbuAjL0EjLx4COuITNtcDOlQzQlU3cwhSI", + value: "!(psuć-52.8.1.14.0.mie-ba6.spr-d96.psu-13)!", + result: { + word: "psuć", + correct: 8, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "21.02.2025", + }, + }, + { + date: "21.02.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzETL1NnLmZjMtMXaukTOmBTMtoncw5CMugjLw4SOuITNtcDOlQzQlU3cwhSI", + value: "!(psuć-52.9.0.8.0.prz-10f99.is-26f.su-13)!", + result: { + word: "psuć", + correct: 9, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "21.02.2025", + }, + }, + { + date: "21.02.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTMtU3cuATMtUHbugTY00yc15SOmZWMt02bw5CO50yb6pnLw4iNx4CMuMTMuITNtcDOlQzQlU3cwhSI", + value: "!(psuć-52.13.0.16.0.zzo-98.pom-1ff9.us-4a8.lu-10.su-13)!", + result: { + word: "psuć", + correct: 13, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "21.02.2025", + }, + }, + { + date: "21.02.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTMtU3cuEDNyQTLw9mL2UzNz0ieyBnLw4CMx4CMuETMuITNtcDOlQzQlU3cwhSI", + value: "!(psuć-52.11.0.10.0.prz-3756.op-4241.su-13)!", + result: { + word: "psuć", + correct: 11, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "21.02.2025", + }, + }, + { + date: "21.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTMtU3cuATMtUHbuMDNtUncuQGM10yc15SMxETL5xmL1EWMx0ydvBnLw4yNx4CMuYTMuITNtcDOlQzQlU3cwhSI", + value: "!(psuć-52.16.0.17.0.pow-11a5.ly-111.us-50d.ru-43.lu-10.su-13)!", + result: { + word: "psuć", + correct: 16, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "21.02.2025", + }, + }, + { + date: "21.02.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMx0SdzBnLkhTMtA3ch5CMukjLx4iNuITNtcDOlQzQlU3cwhSI", + value: "!(psuć-52.6.1.9.0.asp-18d.psu-13)!", + result: { + word: "psuć", + correct: 6, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "21.02.2025", + }, + }, + { + date: "21.02.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTMtU3cuATMtUHbw5SNiJTLstWduYmYy0SdoNmLw4yMx4CMuATMuITNtcDOlQzQlU3cwhSI", + value: "!(psuć-52.10.0.13.0.chu-2bf.ukl-2b5.plu-10.su-13)!", + result: { + word: "psuć", + correct: 10, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "21.02.2025", + }, + }, + { + date: "21.02.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMx0Sdz5yMtMXYw5iN0UWLwN3duAjLyEjLx4SOuITNtcDOlQzQlU3cwhSI", + value: "!(psuć-52.9.1.12.0.wsp-e46.pas-3.su-13)!", + result: { + word: "psuć", + correct: 9, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "21.02.2025", + }, + }, + { + date: "21.02.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzETL1NnL1ImMtMXduMzYxETLn9GcuAjLwEjLx4SOuITNtcDOlQzQlU3cwhSI", + value: "!(psuć-52.9.1.10.0.pog-11c3.us-2b5.su-13)!", + result: { + word: "psuć", + correct: 9, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "21.02.2025", + }, + }, + { + date: "21.02.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMx0SdzBnLiFTL6JHduIzMzETLzl3duAjLyEjLw4COuITNtcDOlQzQlU3cwhSI", + value: "!(psuć-52.8.0.12.0.wys-1332.trz-1b.psu-13)!", + result: { + word: "psuć", + correct: 8, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "21.02.2025", + }, + }, + { + date: "21.02.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzETL1NHcuczY10SYwVnL3UWLvpneuAjLyEjLx4iNuITNtcDOlQzQlU3cwhSI", + value: "!(psuć-52.6.1.12.0.zzo-e7.upa-5c7.psu-13)!", + result: { + word: "psuć", + correct: 6, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "21.02.2025", + }, + }, + { + date: "21.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMx0Sdz5CZwUTLzVnLzkDOhFTL6JHcuAjLyEjLw4SOuITNtcDOlQzQlU3cwhSI", + value: "!(psuć-52.9.0.12.0.prz-1a893.us-50d.su-13)!", + result: { + word: "psuć", + correct: 9, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "21.02.2025", + }, + }, + { + date: "21.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTMtU3cuATMtUHbuUjYx0SYyBnL5gDZtM3br5yM50yYlpmLw4CNx4CMuATMuITNtcDOlQzQlU3cwhSI", + value: "!(psuć-52.10.0.14.0.jec-93.kos-d89.pra-1b5.lu-10.su-13)!", + result: { + word: "psuć", + correct: 10, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "21.02.2025", + }, + }, + { + date: "21.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzETL1NnLkBTNtMXdw5CO0UTL5J3ZuATNtg2Yz4SOiZTLs9meuAjLwIjLw4COuITNtcDOlQzQlU3cwhSI", + value: "!(psuć-52.8.0.20.0.zol-6b9.3ch-50.gry-548.pus-50d.su-13)!", + result: { + word: "psuć", + correct: 8, + position: 0, + incorrect: 20, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "21.02.2025", + }, + }, + { + date: "21.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTMtU3cuYzN00SZs5yMhRWLhJnLjFmY00CZvBnLw4CNx4CMuATMuITNtcDOlQzQlU3cwhSI", + value: "!(psuć-52.10.0.14.0.pod-4bac.ra-da3.le-476.su-13)!", + result: { + word: "psuć", + correct: 10, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "21.02.2025", + }, + }, + { + date: "21.02.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTMtU3cuMTLzFGcuYTO5ETLvB3cuAjLzEjLx4SOuITNtcDOlQzQlU3cwhSI", + value: "!(psuć-52.9.1.13.0.spo-1996.pas-3.su-13)!", + result: { + word: "psuć", + correct: 9, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "21.02.2025", + }, + }, + { + date: "21.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzETL1NnL5MWMtUGbw5SOmNTLhJHZuUWM00CajNjL3UWLvpneuAjL4EjLw4SOuITNtcDOlQzQlU3cwhSI", + value: "!(psuć-52.9.0.18.0.zzo-e7.3ch-41e.dra-3f9.ple-1c9.su-13)!", + result: { + word: "psuć", + correct: 9, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "21.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/granica-nie-dalo-sie-trzeba-bylo-po-kolei-malymi-kroczkami-10-01-2025-flag-pl-di" +] = [ + { + date: "10.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2YTLw1WauATLzlWbuUjZx4CZyUTLoN2MuQmZxETLs9mLzczMtEWaw5SMklTLhp3YuAjL3EjL04SNx4CMx0ychBXbphSI", + value: + "!(impas-10.15.4.17.0.cza-9d1.pia-373.ol-11fd.3ch-52d.1f5.mis-0.imp-66)!", + result: { + word: "impas", + correct: 15, + position: 4, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 36, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYjNtAnLhBTMtEWbp5SZjFTLsVnYuUmY2cTL69mcuAjLxEjLx4yMx4CMx0ychBXbphSI", + value: "!(impas-10.13.1.11.0.roz-76be.bul-1ce.ima-10a.p-66)!", + result: { + word: "impas", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN20CctlmLmhjYtEmcw5COjJTL1h2YuAjLzEjLw4CMx4CMx0ychBXbphSI", + value: "!(impas-10.10.0.13.0.chu-2c8.pra-b8f.imp-66)!", + result: { + word: "impas", + correct: 10, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN20CctlmLwgDOtwWYw5COmhzMtAXe35CMuETMuEjL54CMx0ychBXbphSI", + value: "!(impas-10.9.1.11.0.wyp-38f8.pal-880.imp-66)!", + result: { + word: "impas", + correct: 9, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYjNuETNtAXbp5yMjlTLll2YuQ2YyITLr9GcuAjLxEjLy4CNx4CMx0ychBXbphSI", + value: "!(impas-10.14.2.11.0.pok-22cd.cie-9c3.imp-51.66)!", + result: { + word: "impas", + correct: 14, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYjNtAXbp5SYkJTLoN2MuIWY10iezdnLw4COuAjL44CMx0ychBXbphSI", + value: "!(impas-10.8.0.8.0.wsz-5ab.3ch-2da.imp-66)!", + result: { + word: "impas", + correct: 8, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 16, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN20CctlmLh1CcpRnLjRWMx0SZpBnL3kTMtg2Yz4CZ1cTLyFmYuAjLyEjLx4SMx4CMx0ychBXbphSI", + value: "!(impas-10.11.1.12.0.bar-75d.3ch-197.pie-11dc.tip-a.imp-66)!", + result: { + word: "impas", + correct: 11, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2YTLw1WauE2M40SYw9mLyI2NhFTL6JHcuAjLyEjLy4CMx4CMx0ychBXbphSI", + value: "!(impas-10.10.2.12.0.prz-1a7b2.opa-83a.imp-66)!", + result: { + word: "impas", + correct: 10, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2YTLw1WauEjNx0SYwNXZp5mLw4iNuEjL44CMx0ychBXbphSI", + value: "!(impas-10.8.1.6.0.niespa-161.imp-66)!", + result: { + word: "impas", + correct: 8, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN20CctlmLwkDZtAXYu5yMyETL1BXduIWO3MTL6JHcuAjLzEjLy4SMx4CMx0ychBXbphSI", + value: "!(impas-10.11.2.13.0.prz-379b.upu-123.nap-d90.imp-66)!", + result: { + word: "impas", + correct: 11, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN20CctlmLiNmYtUWat5CMuATMuIjL34CMx0ychBXbphSI", + value: "!(impas-10.7.2.10.0.mie-bcb.imp-66)!", + result: { + word: "impas", + correct: 7, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2YTLw1WauI2Mx0CdzFmL3IjZtc3bw5CMuQTMuIjL44CMx0ychBXbphSI", + value: "!(impas-10.8.2.14.0.pow-f27.ast-13b.imp-66)!", + result: { + word: "impas", + correct: 8, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2YTLw1WauUzMtkGbh5CM30iezdnLmFTLrVXZuEjL0EjLy4SMx4CMx0ychBXbphSI", + value: "!(impas-10.11.2.14.1.euk-1f.wsz-70.ali-35.imp-66)!", + result: { + word: "impas", + correct: 11, + position: 2, + incorrect: 14, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 27, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2YTLw1WauYjMy0yc1BnLlRmMtM2bz5CMuATMuQjL54CMx0ychBXbphSI", + value: "!(impas-10.9.4.10.0.soc-2de.pus-226.imp-66)!", + result: { + word: "impas", + correct: 9, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYjNtAXbp5SZ0MTLvlGcukTNtsmez5CMuYTMuIjL44CMx0ychBXbphSI", + value: "!(impas-10.8.2.16.0.szk-59.pio-34e.imp-66)!", + result: { + word: "impas", + correct: 8, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYjNtAXbp5yYkFTLhlGcuQmNtAXYs5CZhFTNto3bw5CMucjL14iMx4CMx0ychBXbphSI", + value: "!(impas-10.12.5.7.0.poz-51ad.lap-6d.pia-1dc.imp-66)!", + result: { + word: "impas", + correct: 12, + position: 5, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYjNtAXbp5iM3MTLhlGcukDOh1SYydmLw4SNuIjL54CMx0ychBXbphSI", + value: "!(impas-10.9.2.5.0.gra-a89.pia-372.imp-66)!", + result: { + word: "impas", + correct: 9, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 16, + date: "10.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/jak-wczoraj-drugie-powinienem-pominac-deg-deg-31-01-2025-diffle-difflepl-grywebo" +] = [ + { + date: "31.01.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNmJTLv5iZj1SYy5CMwgTLs9GcuAzM00SYp1mLw4iMx4CMuIjMuEzMtcDOlQzQlE2dvJ2MCVyMDVicwhSI", + value: "!(próbować-31.22.0.12.0.mia-430.pol-800.ra-cf.o-2f41)!", + result: { + word: "próbować", + correct: 22, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "31.01.2025", + }, + }, + { + date: "31.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNmJTLvJnLxIWMy0ydvBnL4kTLvpneuAjL44iMuQTMuEzMtcDOlQzQlE2dvJ2MCVyMDVicwhSI", + value: "!(próbować-31.14.2.8.0.zzo-98.pow-21b1.ro-2f41)!", + result: { + word: "próbować", + correct: 14, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "31.01.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQjZy4yMjNmMt8mcuIWYlFTLs9GcucTN00ybwVnLw4SOx4CMuEjMuEzMtcDOlQzQlE2dvJ2MCVyMDVicwhSI", + value: "!(próbować-31.21.0.19.0.upo-457.pol-1eab.ro-2cc3.2f41)!", + result: { + word: "próbować", + correct: 21, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 40, + }, + }, + { + date: "31.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNmJTLvJnLwATMtQWZuUzNtMXeuITMhFTLs9GcuYmYy0SdoNmLw4iNx4CMuYjMuEzMtcDOlQzQlE2dvJ2MCVyMDVicwhSI", + value: "!(próbować-31.26.0.16.0.chu-2bf.pol-1a12.ys-75.ed-100.ro-2f41)!", + result: { + word: "próbować", + correct: 26, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "31.01.2025", + }, + }, + { + date: "31.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0YmMuQmZxMTLvJHcuAjLz4CMuMTMuEzMtcDOlQzQlE2dvJ2MCVyMDVicwhSI", + value: "!(próbować-31.13.0.3.0.pro-31fd.2f41)!", + result: { + word: "próbować", + correct: 13, + position: 0, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "31.01.2025", + }, + }, + { + date: "31.01.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNmJTLvJHcuU2Y4ETLyFmeuUTOj1yboNmLyMzMx0yc5dnLw4CMx4CMuAjMuEzMtcDOlQzQlE2dvJ2MCVyMDVicwhSI", + value: "!(próbować-31.20.0.10.0.wys-1332.cho-c95.zar-18ce.pro-2f41)!", + result: { + word: "próbować", + correct: 20, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "31.01.2025", + }, + }, + { + date: "31.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNmJTLvJnLiF2Nx0ichBnL3UWLvpneuAjL54SMuMTMuEzMtcDOlQzQlE2dvJ2MCVyMDVicwhSI", + value: "!(próbować-31.13.1.9.0.zzo-e7.par-17ab.ro-2f41)!", + result: { + word: "próbować", + correct: 13, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "31.01.2025", + }, + }, + { + date: "31.01.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNmJTLvJnLhVGMx0CdvBnL4kTLvpneuAjL34SMuUTMuEzMtcDOlQzQlE2dvJ2MCVyMDVicwhSI", + value: "!(próbować-31.15.1.7.0.zzo-98.pot-10ea.ro-2f41)!", + result: { + word: "próbować", + correct: 15, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "31.01.2025", + }, + }, + { + date: "31.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNmJTLv5SNwIWL6JHcuUjMxETLsJ2buMTNy0SaztmLw4yMx4SMuUTMuEzMtcDOlQzQlE2dvJ2MCVyMDVicwhSI", + value: "!(próbować-31.15.1.13.0.ksi-253.obl-1125.prz-b05.o-2f41)!", + result: { + word: "próbować", + correct: 15, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "31.01.2025", + }, + }, + { + date: "31.01.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQjZy0ybyBnL0YWL5JHduEGZ40ichtmLihjMtIWYy5CZzQWLlJneuETYx0SZ6VnLw4yMx4CMugjMuEzMtcDOlQzQlE2dvJ2MCVyMDVicwhSI", + value: + "!(próbować-31.28.0.13.0.uze-1a1.zre-d3d.rab-28b.kar-8da.try-f4.pro-2f41)!", + result: { + word: "próbować", + correct: 28, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 41, + date: "31.01.2025", + }, + }, + { + date: "31.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQjZy0yby5iNiFTLrFGcuQGOx0CczFmLw4CMx4SMuYTMuEzMtcDOlQzQlE2dvJ2MCVyMDVicwhSI", + value: "!(próbować-31.16.1.10.0.asp-18d.pak-1b6.ro-2f41)!", + result: { + word: "próbować", + correct: 16, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "31.01.2025", + }, + }, + { + date: "31.01.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0YmMt8mcw5iN0UWLwN3duAjL34iMuITMuEzMtcDOlQzQlE2dvJ2MCVyMDVicwhSI", + value: "!(próbować-31.12.2.7.0.wsp-e46.pro-2f41)!", + result: { + word: "próbować", + correct: 12, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "31.01.2025", + }, + }, + { + date: "31.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0YmMuMzYjJTLv5yNmZWLh5yM5gTYx0ieyBnLw4SNx4iMuEjMuEzMtcDOlQzQlE2dvJ2MCVyMDVicwhSI", + value: "!(próbować-31.21.2.15.0.prz-1a893.a-ff7.o-2cc3.2f41)!", + result: { + word: "próbować", + correct: 21, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 38, + date: "31.01.2025", + }, + }, + { + date: "31.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNmJTLvJnLzIDOtMmLiVTMt02bw5iZ5QTLvxmeuAjL54CMukTMuEzMtcDOlQzQlE2dvJ2MCVyMDVicwhSI", + value: "!(próbować-31.19.0.9.0.zlo-49f.pom-15b.c-823.ro-2f41)!", + result: { + word: "próbować", + correct: 19, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "31.01.2025", + }, + }, + { + date: "31.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0YmMuUzYhJTLvJHcuYTYi1SZp1mLw4yMx4iMuQTMuEzMtcDOlQzQlE2dvJ2MCVyMDVicwhSI", + value: "!(próbować-31.14.2.13.0.mie-ba6.pro-2ac5.2f41)!", + result: { + word: "próbować", + correct: 14, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "31.01.2025", + }, + }, + { + date: "31.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0YmMt8mcuQzYh1icl5iNiFTLrFmLjFmY00CZvBnLw4SMx4CMuIjMuEzMtcDOlQzQlE2dvJ2MCVyMDVicwhSI", + value: "!(próbować-31.22.0.11.0.pod-4bac.ak-1b6.er-ac4.ro-2f41)!", + result: { + word: "próbować", + correct: 22, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "31.01.2025", + }, + }, + { + date: "31.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNmJTLvJHcuUmY04CMhRTLoN2MuQTMh1ici9mLxYTMtIXYm5CO50iYvxmLmBjMtEmez5iM0ITLy9WbuIDOx0icldnLzMWLnVncuUjNwETLyJ2buQTMtE2dy5SOy0Sa3NmL04yMy4iNucTNuEzMtcDOlQzQlE2dvJ2MCVyMDVicwhSI", + value: + "!(próbować-31.57.6.23.4.cwi-29.rwa-14.obr-1065.rug-c3.wer-182.mor-242.sza-20f.lob-98.far-161.obr-a14.3ch-4a0.4be.pro-2f41)!", + result: { + word: "próbować", + correct: 57, + position: 6, + incorrect: 23, + knownIncorrect: 4, + totalWords: 13, + totalLetters: 86, + date: "31.01.2025", + }, + }, + { + date: "31.01.2025", + nick: "djsclub", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQjZy0ybyBnLxkDOtIXdr5SOzcTLyF2ZuEmNx0CdvJnL4MTLhJ3cuMjYz4SMl1CajNjLw4SMx4CMukjMuEzMtcDOlQzQlE2dvJ2MCVyMDVicwhSI", + value: + "!(próbować-31.29.0.11.0.3ch-e1.3b3.sra-38.rot-16a.gar-739.kur-891.pro-2f41)!", + result: { + word: "próbować", + correct: 29, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "31.01.2025", + }, + }, + { + date: "31.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNmJTLvJnLw0ydvBnLlVTLhtWduAjL54SMuUTMuEzMtcDOlQzQlE2dvJ2MCVyMDVicwhSI", + value: "!(próbować-31.15.1.9.0.uka-5e.pow-0.ro-2f41)!", + result: { + word: "próbować", + correct: 15, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "31.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/jedno-slowo-zupelnie-niepotrzebne-przeciez-mialem-wszystko-jak-na-talerzu-25-01-" +] = [ + { + date: "25.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNxYWLpdneuQTZtMXdw5SOmRTLsVmeugjYyETLsl3duAjL2EjLx4yNuUjMtIXa3NkQlUzQlgSI", + value: "!(żwir-25.7.1.16.0.wyl-12b8.zel-4f9.pus-e4.zwi-f15)!", + result: { + word: "żwir", + correct: 7, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "25.01.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNxYWLpdneucDZm1Sa3NnLjZmMt8Wa35CZlFTL1xmeuEWO20CdvBnLw4CMy4CMuITMuUjMtIXa3NkQlUzQlgSI", + value: "!(żwir-25.12.0.20.0.pot-69a.zlu-1ed.wio-2fc.swi-fd7.zwi-f15)!", + result: { + word: "żwir", + correct: 12, + position: 0, + incorrect: 20, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + }, + }, + { + date: "25.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTMm1Sa35SY5IWLp1meuUTNzETLllGcuAjLzEjLw4yNuUjMtIXa3NkQlUzQlgSI", + value: "!(żwir-25.7.0.13.0.pie-1355.zmi-b9a.wi-f15)!", + result: { + word: "żwir", + correct: 7, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "25.01.2025", + }, + }, + { + date: "25.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTMm1Sa3pnLjZmMt8Wa35iNtQWZ05CZ4ETLwNXYuAjL3EjLw4yNuUjMtIXa3NkQlUzQlgSI", + value: "!(żwir-25.7.0.17.0.asp-18d.ted-6.wio-2fc.zwi-f15)!", + result: { + word: "żwir", + correct: 7, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "25.01.2025", + }, + }, + { + date: "25.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNxYWLpdnLw0yd5pnLkNWNtg2Yz4SZwYTLwN3duAjL1EjLx4COuUjMtIXa3NkQlUzQlgSI", + value: "!(żwir-25.8.1.15.0.wsp-60e.3ch-5cd.zyw-0.wi-f15)!", + result: { + word: "żwir", + correct: 8, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "25.01.2025", + }, + }, + { + date: "25.01.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTMm1Sa3pnLidTNtIXaw5SMhFTLlpXduAjLyEjLx4yNuUjMtIXa3NkQlUzQlgSI", + value: "!(żwir-25.7.1.12.0.uze-1a1.pir-57b.zwi-f15)!", + result: { + word: "żwir", + correct: 7, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "25.01.2025", + }, + }, + { + date: "25.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1EjZtk2d65SMwQTLvJ3duUGMx0SdyZmL3IjNtUmey5yMm1CajNjLwkTLnFmaugDM30Cbp1mLw4SMy4SMuATMuUjMtIXa3NkQlUzQlgSI", + value: + "!(żwir-25.10.1.21.0.mil-708.jag-90.3ch-f3.rze-627.fru-10e.wro-401.zwi-f15)!", + result: { + word: "żwir", + correct: 10, + position: 1, + incorrect: 21, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 32, + date: "25.01.2025", + }, + }, + { + date: "25.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNxYWLpdneuETZ50SZ6JnLwYWLvpneuAjLyEjLx4yNuUjMtIXa3NkQlUzQlgSI", + value: "!(żwir-25.7.1.12.0.zzo-f0.rze-9e1.zwi-f15)!", + result: { + word: "żwir", + correct: 7, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "25.01.2025", + }, + }, + { + date: "25.01.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1EjZtk2dukDN10SaipnLhFjMuM2Yz0CajNjLzUTNtwWdr5iYhFjMtUWa35yY1YWLpd3cuEzNtc3bt5iNzITLllmLyMzMx0yc5dnLx4yNy4CMugTMuUjMtIXa3NkQlUzQlgSI", + value: + "!(żwir-25.18.0.27.1.wys-1332.ie-236.mow-71.swi-f5c.wie-21ab.kul-553.3ch-3cc.21a.zbi-549.wi-f15)!", + result: { + word: "żwir", + correct: 18, + position: 0, + incorrect: 27, + knownIncorrect: 1, + totalWords: 10, + totalLetters: 45, + date: "25.01.2025", + }, + }, + { + date: "25.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTMm1Sa35yNzETLiVneuMWYiRTLk9GcuAjLxEjLw4iNuUjMtIXa3NkQlUzQlgSI", + value: "!(żwir-25.6.0.11.0.pod-4bac.zub-137.wi-f15)!", + result: { + word: "żwir", + correct: 6, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "25.01.2025", + }, + }, + { + date: "25.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1EjZtk2d65SZiRTLpd3YucDZm1Sa3NnLiBjMtIXa35yM5gTYx0ieyBnLw4COx4SMuQTMuUjMtIXa3NkQlUzQlgSI", + value: "!(żwir-25.14.1.18.0.prz-1a893.wir-20b.swi-fd7.cwi-4be.zwi-f15)!", + result: { + word: "żwir", + correct: 14, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "25.01.2025", + }, + }, + { + date: "25.01.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1EjZugTMm1Sa3pnLwMDNtEWat5CMukjLx4SOuUjMtIXa3NkQlUzQlgSI", + value: "!(żwir-25.9.1.9.0.mia-430.zwi-f18.f15)!", + result: { + word: "żwir", + correct: 9, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "25.01.2025", + }, + }, + { + date: "25.01.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1EjZtk2d65iYzMWLll2duAjLwEjLw4yNuUjMtIXa3NkQlUzQlgSI", + value: "!(żwir-25.7.0.10.0.wie-c3b.zwi-f15)!", + result: { + word: "żwir", + correct: 7, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "25.01.2025", + }, + }, + { + date: "25.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTMm1Sa35yNzETLiVnL5YGNtwWZuYmZ40iehpnLw4SMx4SMuATMuUjMtIXa3NkQlUzQlgSI", + value: "!(żwir-25.10.1.11.0.zaz-8ff.el-4f9.ub-137.wi-f15)!", + result: { + word: "żwir", + correct: 10, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "25.01.2025", + }, + }, + { + date: "25.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTMm1Sa35CN40yY15iNxITL3lnL4gTNx0Cbh5CO50yb6pnLw4SNx4CMuATMuUjMtIXa3NkQlUzQlgSI", + value: "!(żwir-25.10.0.15.0.zzo-98.al-1588.yw-216.uc-84.wi-f15)!", + result: { + word: "żwir", + correct: 10, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "25.01.2025", + }, + }, + { + date: "25.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNxYWLpdneuMmZy0ybp5CZygTLil3duYTYi1SZp1mLw4iNx4SMuATMuUjMtIXa3NkQlUzQlgSI", + value: "!(żwir-25.10.1.16.0.mie-ba6.wyb-82d.io-2fc.zwi-f15)!", + result: { + word: "żwir", + correct: 10, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "25.01.2025", + }, + }, + { + date: "26.01.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTMt8WauMTMx0SYt5iZ3QWMtsWYuMTNtw2bugTN10ybspnL2QTZtA3c35SMuIjMuMjL4EjL2ITLhJDOlUzQl8Wa6hSI", + value: "!(zioła-26.18.3.22.1.wsp-e46.zlo-558.ol-53.ak-1d7f.ma-113.io-16)!", + result: { + word: "zioła", + correct: 18, + position: 3, + incorrect: 22, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 43, + date: "26.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/jest-ok-07-03-2025-diffle-difflepl-grywebowe-18-liter-w-3-slowach-large-green-ci" +] = [ + { + date: "07.03.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50ybyZmLjNTNt8mc05SO1YmMt42br5CMuYjLy4CMx4iN20Cdu9mcmhSI", + value: "!(front-66.10.2.6.0.kon-2f59.tro-53c.fro-9b)!", + result: { + word: "front", + correct: 10, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50ybyZmLjNTNt8mc05CZ0QWMts2bw5CMucjLy4CMx4iN20Cdu9mcmhSI", + value: "!(front-66.10.2.7.0.pok-1d4d.tro-53c.fro-9b)!", + result: { + word: "front", + correct: 10, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50ybyZmLhNWLr9mcuMTNtMXej5CMukjLy4CMx4iN20Cdu9mcmhSI", + value: "!(front-66.10.2.9.0.cys-53.rok-ca.fro-9b)!", + result: { + word: "front", + correct: 10, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50ybyZmL3MGMx0ic0NnLjJTYtQXZt5SYykzMtQ2bw5iZiJTL1h2YuAjL5EjLx4CNx4iN20Cdu9mcmhSI", + value: "!(front-66.14.1.19.0.chu-2bf.pod-392a.met-a2c.str-10c7.fro-9b)!", + result: { + word: "front", + correct: 14, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50ybyZmLjNTNt8mc05SYkJjMts2bw5CMugjLx4SMx4iN20Cdu9mcmhSI", + value: "!(front-66.11.1.8.0.pok-22da.tro-53c.fro-9b)!", + result: { + word: "front", + correct: 11, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWOuQjNx0ybyZmLwYTMt0Gaj5SYlVTLvJ3ZuYjMwETLs92auEWM3MTL6JHcuAjL4EjLx4yNx4iN20Cdu9mcmhSI", + value: + "!(front-66.17.1.18.0.prz-371a.kol-1026.gro-5ea.chm-160.fro-164.9b)!", + result: { + word: "front", + correct: 17, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50ybyZmLjNTNt8mc05SO1YmMt42br5CMuYjLy4CMx4iN20Cdu9mcmhSI", + value: "!(front-66.10.2.6.0.kon-2f59.tro-53c.fro-9b)!", + result: { + word: "front", + correct: 10, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKilTLvJnZuM2M10ybyRnL1YWNt8mci5CZyQTLyB3cuAjLxEjLx4CNx4iN20Cdu9mcmhSI", + value: "!(front-66.14.1.11.0.spr-42d.bro-5f5.tro-53c.fro-9b)!", + result: { + word: "front", + correct: 14, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKilTLvJnZuMTO10ybyRnL5ATNt8mci5SZlRTLvJHZuU2NzETLhp3cuYWL39mcukTMjFTLt9GcuAjL0EjLy4SOx4iN20Cdu9mcmhSI", + value: + "!(front-66.19.2.14.0.pom-1c19.row-f.sza-137e.dro-4ee.bro-509.tro-593.fro-9b)!", + result: { + word: "front", + correct: 19, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 35, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50ybyZmLjNTNt8mc05iNkdjMtoncw5CMukjLx4SMx4iN20Cdu9mcmhSI", + value: "!(front-66.11.1.9.0.prz-27d6.tro-53c.fro-9b)!", + result: { + word: "front", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50ybyZmL2YWMtQ3by5CO4cTLvJ3auMTYt0WYn5CMukjLx4iMx4iN20Cdu9mcmhSI", + value: "!(front-66.12.1.9.0.gam-a3.kro-788.rot-1f6.fro-9b)!", + result: { + word: "front", + correct: 12, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50ybyZmLxIWLu9mcukDNz0ybpBnL5UTLrp3cuAjL3EjLx4iMx4iN20Cdu9mcmhSI", + value: "!(front-66.12.1.17.0.szk-59.pio-349.ron-b1.fro-9b)!", + result: { + word: "front", + correct: 12, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKilTLvJnZuM2M10ybyRnL0YWMtQWe35CMucjLx4CMx4iN20Cdu9mcmhSI", + value: "!(front-66.10.1.7.0.wyd-1f4.tro-53c.fro-9b)!", + result: { + word: "front", + correct: 10, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKilTLvJnZuczYwETLyR3cuYWMtsWdl5CMucjLw4yMx4iN20Cdu9mcmhSI", + value: "!(front-66.13.0.7.0.euk-1f.str-10c7.fro-9b)!", + result: { + word: "front", + correct: 13, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWOt8mcuMTM30icvZmLzcTLoN2MuAjNt8GZ35SMi1ibvJnL3MGMx0ic0NnLzkDOhFTL6JHcuAjL5EjLy4CMy4iN20Cdu9mcmhSI", + value: + "!(front-66.20.2.19.0.prz-1a893.str-10c7.ron-b1.wdo-60.3ch-73.for-713.ro-9b)!", + result: { + word: "front", + correct: 20, + position: 2, + incorrect: 19, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50ybyZmL1EWMtUnck5SYh1ibvxmLhNDNt42bt5iN3ITLvp3cuAjLzEjLw4CNx4iN20Cdu9mcmhSI", + value: "!(front-66.14.0.13.0.szo-276.mon-43a.lon-aa.dru-1a5.fro-9b)!", + result: { + word: "front", + correct: 14, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "Tysiek", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50yby5yYkJTLu9mZuETZz0CajNjL3kTMtQ3bu5iNhJWLllWbuAjLzEjLy4SNx4iN20Cdu9mcmhSI", + value: "!(front-66.15.2.13.0.mie-ba6.not-197.3ch-3e1.fon-2dc.ro-9b)!", + result: { + word: "front", + correct: 15, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50yby5yYkJTLu9mZuEWYt42bs5SOwITLu92ZuEWMyUTL69GcuAjLwEjLw4yNx4iN20Cdu9mcmhSI", + value: "!(front-66.17.0.10.0.poz-521a.gon-209.lon-aa.fon-2dc.ro-9b)!", + result: { + word: "front", + correct: 17, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKilTLvJnZuAjZ00yclRmLw4SOuEjL34iN20Cdu9mcmhSI", + value: "!(front-66.7.1.9.0.des-4f0.fro-9b)!", + result: { + word: "front", + correct: 7, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "07.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/latwe-ale-nipospolite-05-02-2025-diffle-difflepl-grywebowe-24-litery-w-3-slowach" +] = [ + { + date: "05.02.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTMt0mch5SOmNWLyFGcukTNmJTLu92auAjL24iMuYTMuYzMt42bkV2Zh1mchhSI", + value: "!(armagedon-36.16.2.6.0.kon-2f59.par-cf9.arm-15)!", + result: { + word: "armagedon", + correct: 16, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "05.02.2025", + }, + }, + { + date: "05.02.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ETLtJXYuYjYx4yN2ITLoN2MuUTYy0CboNmL3YGNtg2Yz4iYyITLlJHdugTO04iM3MTLoN2MuQmYi1SbvBnLw4yMx4SNuQjMuYzMt42bkV2Zh1mchhSI", + value: + "!(armagedon-36.24.5.13.0.pom-bbd.3ch-372.498.tre-22b.3ch-4f7.chl-2a5.3ch-267.1b6.arm-15)!", + result: { + word: "armagedon", + correct: 24, + position: 5, + incorrect: 13, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 42, + date: "05.02.2025", + }, + }, + { + date: "05.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1EjLi1SbuYTOtcmcuQGOxETL05WYuIjNj1iclBnLw4iMx4yMuAzMuYzMt42bkV2Zh1mchhSI", + value: "!(armagedon-36.30.3.12.0.per-c62.ant-118d.rg-96.m-b.15)!", + result: { + word: "armagedon", + correct: 30, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 45, + date: "05.02.2025", + }, + }, + { + date: "05.02.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ETLtJXYuUDOtsWZo5yY2EWLhJ3ZuAjL04yMuYTMuYzMt42bkV2Zh1mchhSI", + value: "!(armagedon-36.16.3.4.0.gra-a6c.hek-85.arm-15)!", + result: { + word: "armagedon", + correct: 16, + position: 3, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "05.02.2025", + }, + }, + { + date: "05.02.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTMt0mL2kTLnJXYuEGZyITLr9GcuAjL34SMucTMuYzMt42bkV2Zh1mchhSI", + value: "!(armagedon-36.17.1.7.0.pok-22da.arg-96.m-15)!", + result: { + word: "armagedon", + correct: 17, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "05.02.2025", + }, + }, + { + date: "05.02.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNx0Sby5iY50ydkFmL2cDNt02br5iYx0ibt9mLw4iMx4yNugTMuYzMt42bkV2Zh1mchhSI", + value: "!(armagedon-36.18.7.12.0.omn-1b.kom-476.adw-9b.rm-15)!", + result: { + word: "armagedon", + correct: 18, + position: 7, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "05.02.2025", + }, + }, + { + date: "05.02.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNx0SbyFmLiJWOzETL6JHcuAjL34iMuMTMuYzMt42bkV2Zh1mchhSI", + value: "!(armagedon-36.13.2.7.0.prz-139bb.arm-15)!", + result: { + word: "armagedon", + correct: 13, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "05.02.2025", + }, + }, + { + date: "05.02.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTMt0mLiVWLnJXYuYDOtIXYk5iZlFTLsh2YuQmM00icwNnLw4iMx4COuMjMuYzMt42bkV2Zh1mchhSI", + value: "!(armagedon-36.23.8.12.0.spr-42d.chl-1ef.dar-86.arg-eb.m-15)!", + result: { + word: "armagedon", + correct: 23, + position: 8, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 43, + date: "05.02.2025", + }, + }, + { + date: "05.02.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ETLtJXYukTMx0yalRmLxEzMtI3bt5SM1ITLsFGcllmbuAjL34iNukTMuYzMt42bkV2Zh1mchhSI", + value: "!(armagedon-36.19.6.7.0.niepal-251.mor-311.dek-119.arm-15)!", + result: { + word: "armagedon", + correct: 19, + position: 6, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "05.02.2025", + }, + }, + { + date: "05.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTMt0mch5iZ40ichRmL3QjMto2b35yM5gTYx0ieyBnLw4CNx4SNucTMuYzMt42bkV2Zh1mchhSI", + value: "!(armagedon-36.17.5.14.0.prz-1a893.woj-247.dar-8f.arm-15)!", + result: { + word: "armagedon", + correct: 17, + position: 5, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "05.02.2025", + }, + }, + { + date: "05.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ETLtJnLyITLkJWYuYzN00SbvtmL2MDMx0yY6NnLw4CMx4COugTMuYzMt42bkV2Zh1mchhSI", + value: "!(armagedon-36.18.8.10.0.szc-1036.kom-476.abd-22.rm-15)!", + result: { + word: "armagedon", + correct: 18, + position: 8, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "05.02.2025", + }, + }, + { + date: "05.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTMt0mch5SZ4ITMtIXYw5CNmFTLkl3duEjL24iMugTMuYzMt42bkV2Zh1mchhSI", + value: "!(armagedon-36.18.2.6.1.wyd-1f4.par-128e.arm-15)!", + result: { + word: "armagedon", + correct: 18, + position: 2, + incorrect: 6, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 26, + date: "05.02.2025", + }, + }, + { + date: "05.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ETLtJXYuYGO30SYydmLzIWMtUnci5SNhNWLhp3YuAjM50CZhJnL5YTLzFGbuUGZ30CcvBXZp5mLw4CNx4SNuMjMuYzMt42bkV2Zh1mchhSI", + value: + "!(armagedon-36.23.5.14.0.niepop-7de.las-69.rad-920.cza-ca5.bru-1b3.gra-78f.arm-15)!", + result: { + word: "armagedon", + correct: 23, + position: 5, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "05.02.2025", + }, + }, + { + date: "05.02.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ETLtJXYuQGOy0SZyZmLxMzMtcWZy5yYzMWLll2duAjL44iMuAjMuYzMt42bkV2Zh1mchhSI", + value: "!(armagedon-36.20.2.8.0.wie-c3c.reg-331.fre-28d.arm-15)!", + result: { + word: "armagedon", + correct: 20, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "05.02.2025", + }, + }, + { + date: "05.02.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTMuIjLjZTLtJXYuATLtFGZuIWNtQWYz5yMldTLwF2auYmYy0SdoNmLw4SNx4yMuAzMuYzMt42bkV2Zh1mchhSI", + value: + "!(armagedon-36.30.3.15.0.chu-2bf.kap-7e3.sad-5b.dam-0.arm-6c.2.15)!", + result: { + word: "armagedon", + correct: 30, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 48, + date: "05.02.2025", + }, + }, + { + date: "05.02.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNx4iYt0mch5yYiNTLt9GZuYTYi1SZp1mLw4CMx4SNuQjMuYzMt42bkV2Zh1mchhSI", + value: "!(armagedon-36.24.5.10.0.mie-ba6.dom-3bc.arm-b.15)!", + result: { + word: "armagedon", + correct: 24, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 39, + date: "05.02.2025", + }, + }, + { + date: "05.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ETLt5iN50yZyFmLlFTZx0ichBnLmFTLrVXZuAjL24iMuIjMuYzMt42bkV2Zh1mchhSI", + value: "!(armagedon-36.22.2.6.0.euk-1f.par-1e1e.arg-96.m-15)!", + result: { + word: "armagedon", + correct: 22, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "05.02.2025", + }, + }, + { + date: "05.02.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNx0SbyFmLihjMx0ich5SMxMTLy9WbuUWMm1ydvBnLw4SMx4COucTMuYzMt42bkV2Zh1mchhSI", + value: "!(armagedon-36.17.8.11.0.pow-f1e.mor-311.ar-128b.arm-15)!", + result: { + word: "armagedon", + correct: 17, + position: 8, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "05.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/latwiutkie-05-03-2025-flag-pl-diffle-difflepl-grywebowe-24-litery-w-4-slowach-la" +] = [ + { + date: "05.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0Sb1dmL2QTLmVXbukDZtUHaj5CMk1SaiFmLw4yMx4iMukjL0YTLh1WdnhSI", + value: "!(guma-64.9.2.13.0.abi-d0.chu-d9.muf-46.gum-0)!", + result: { + word: "guma", + correct: 9, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0Sb1dmLw0Sb1RmL2ETLtVHduIzNt0We35SM1EjMt8mcw5CMuQTMuAjLyEjL0YTLh1WdnhSI", + value: "!(guma-64.12.0.14.0.pro-2151.wym-72.tum-16.dum-0.gum-0)!", + result: { + word: "guma", + correct: 12, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLtV3ZuATLtV3cuATLmVXbuUmYz0ic1tmL0cDNt8Gc15CMugTMuEjLyEjL0YTLh1WdnhSI", + value: "!(guma-64.12.1.18.0.upo-474.kur-3be.muf-0.sum-0.gum-0)!", + result: { + word: "guma", + correct: 12, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0Sb1dmLw0Sb1BnLw0Sb1NmLw0Sb1RmLw0Sb1NnL3IDNtIWds5CMuETMuAjL4EjL0YTLh1WdnhSI", + value: "!(guma-64.18.0.11.0.lub-427.sum-0.dum-0.cum-0.pum-0.gum-0)!", + result: { + word: "guma", + correct: 18, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 29, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMt0Wdn5yM2MTLoN2MuMzNy0CbhBnL5UjZy0ibvtmLw4yMx4CMugjL0YTLh1WdnhSI", + value: "!(guma-64.8.0.13.0.kon-2f59.pal-273.3ch-363.gum-0)!", + result: { + word: "guma", + correct: 8, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLtV3ZuATLtV3cuATLtVnauUmYtMWZk5SYkJjMts2bw5CMuYTMuAjLyEjL0YTLh1WdnhSI", + value: "!(guma-64.12.0.16.0.pok-22da.dec-be.jum-0.sum-0.gum-0)!", + result: { + word: "guma", + correct: 12, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMt0Wdn5SZ4MTLtFWbuQmM00icwNnLw4yMx4SMucjL0YTLh1WdnhSI", + value: "!(guma-64.7.1.13.0.spr-42d.mam-38e.gum-0)!", + result: { + word: "guma", + correct: 7, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "pingWIN", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMt0Wdn5CMtcWam5SZ1ETLyBXYuAjL54CMucjL0YTLh1WdnhSI", + value: "!(guma-64.7.0.9.0.apr-15e.fig-0.gum-0)!", + result: { + word: "guma", + correct: 7, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 16, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLtV3ZukTNz0CajNjL5QzMt8Waw5SO10ya6NnLw4SOx4SMugjL0YTLh1WdnhSI", + value: "!(guma-64.8.1.19.0.szk-59.pio-349.3ch-359.gum-0)!", + result: { + word: "guma", + correct: 8, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMt0Wdn5CMt0Wdr5CMtYWdt5CMtQWdk5CMtAXdw5CO10yc1xmLmJmMtUHaj5CMugTMuEjL3EjL0YTLh1WdnhSI", + value: "!(guma-64.17.1.18.0.chu-2bf.lus-58.pup-0.dud-0.muf-0.kum-0.gum-0)!", + result: { + word: "guma", + correct: 17, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 36, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLtV3ZuATLtV3cuATLtVHZuIWLs12buM2YlVTMtoncw5CMuQTMuAjLyEjL0YTLh1WdnhSI", + value: "!(guma-64.12.0.14.0.prz-15ecc.oml-b.dum-0.sum-0.gum-0)!", + result: { + word: "guma", + correct: 12, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLtV3ZukTLjlXbuEjNi1CbvtmLhFzNz0ieyBnLw4yNx4CMugjL0YTLh1WdnhSI", + value: "!(guma-64.8.0.17.0.prz-371a.kol-b61.myc-9.gum-0)!", + result: { + word: "guma", + correct: 8, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLtV3ZuQTY10ieyRXZp5mLw4CNx4CMuUjL0YTLh1WdnhSI", + value: "!(guma-64.5.0.14.0.nietrz-5a4.gum-0)!", + result: { + word: "guma", + correct: 5, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0Sb1dmL3QjMto2b35yM5gTYx0ieyBnLw4yNx4CMucjL0YTLh1WdnhSI", + value: "!(guma-64.7.0.17.0.prz-1a893.woj-247.gum-0)!", + result: { + word: "guma", + correct: 7, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0SbucDNtwWdn5iZx0ya1VmLw4CMx4CMukjL0YTLh1WdnhSI", + value: "!(guma-64.9.0.10.0.euk-1f.gul-47.m-0)!", + result: { + word: "guma", + correct: 9, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMt0WduATLh1mLzEWLtF2ZuAjL04SMukjL0YTLh1WdnhSI", + value: "!(guma-64.9.1.4.0.gam-a3.ma-0.um-0)!", + result: { + word: "guma", + correct: 9, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 14, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0Sb1dmLw0Sb1NnLw0SbppnLjdzNtI3bt5CMuATMuAjLxEjL0YTLh1WdnhSI", + value: "!(guma-64.11.0.10.0.mor-77c.zim-0.sum-0.gum-0)!", + result: { + word: "guma", + correct: 11, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLtV3ZucTYx0CajNjL5cTNy0CchpnLw4CNx4CMucjL0YTLh1WdnhSI", + value: "!(guma-64.7.0.14.0.zap-2579.3ch-1a7.gum-0)!", + result: { + word: "guma", + correct: 7, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLtV3ZuATLtVHcuYTYi1SZp1mLw4yMx4CMukjL0YTLh1WdnhSI", + value: "!(guma-64.9.0.13.0.mie-ba6.pum-0.gum-0)!", + result: { + word: "guma", + correct: 9, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "Tysiek", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0Sb15SN5ETLtF2ZuYTYi1SZp1mLw4CNx4CMukjL0YTLh1WdnhSI", + value: "!(guma-64.9.0.14.0.mie-ba6.gam-195.um-0)!", + result: { + word: "guma", + correct: 9, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMt0Wdn5CMt0Wdw5CMx0ych1mLjFzNt0WZk5CMucTMuAjLxEjL0YTLh1WdnhSI", + value: "!(guma-64.11.0.17.0.dem-71c.mas-10.pum-0.gum-0)!", + result: { + word: "guma", + correct: 11, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "05.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/mi-sprawilo-trudnosci-03-02-2025-diffle-difflepl-grywebowe-38-liter-w-7-slowach-" +] = [ + { + date: "03.02.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNh1yZ65yN2QTL6NnLyEWNtQWa35iNzMTLoN2MukjMy0SbhxmLlJjNtg2Yz4CZmFzMt8mcw5CMucTMuIjL5EjL0MTLtVGZ5kTJ0MUJsdme3hSI", + value: + "!(względem-34.19.2.17.0.pro-31fd.3ch-62e.lam-229.3ch-336.wid-5a2.sz-467.zg-a7)!", + result: { + word: "względem", + correct: 19, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 38, + date: "03.02.2025", + }, + }, + { + date: "03.02.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTYtcmeuQWYy0CZl5SY0MTL6NnL3YWMtoXa35CMuATMuIjL4EjL0MTLtVGZ5kTJ0MUJsdme3hSI", + value: "!(względem-34.18.2.10.0.wiz-1f7.sz-34a.ed-2ad.zg-a7)!", + result: { + word: "względem", + correct: 18, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "03.02.2025", + }, + }, + { + date: "03.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNh1yZ65iN1ITLnV2duMWLsdWbuczMy0yZldnLhRWLlx2ZuUGNx4SNlJTLoN2MuYzMtQWZ35CMkVTLoN2MuATLkxWduYjNx0SZs5CM3ITLkV2duQ2Y14SYlVTLoN2MukTNx0iYlpnL1UTLjVmLjdjMtQ3c35SM00SYkpnLklTNt8mcz5CMuYjMugjL5UjL0MTLtVGZ5kTJ0MUJsdme3hSI", + value: + "!(względem-34.59.8.26.0.sro-59d.zda-41.wst-27c.ec-55.zeb-159.3ch-5ea.5cd.wed-270.le-166.uld-0.3ch-5d0.wed-36.3ch-2e5.14e.gle-da.weg-237.mgl-c.weg-256.zg-a7)!", + result: { + word: "względem", + correct: 59, + position: 8, + incorrect: 26, + knownIncorrect: 0, + totalWords: 19, + totalLetters: 93, + date: "03.02.2025", + }, + }, + { + date: "03.02.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNh1yZ6dnLmdTLkF2ZuYmNy0ycpdnLiR2MtMWZt5iM5ETLvJ3ZugTOt8me65CMuQTMuQjL5EjL0MTLtVGZ5kTJ0MUJsdme3hSI", + value: + "!(względem-34.19.4.14.0.zzo-98.gro-192.mec-3db.wis-26f.gad-7f.wzg-a7)!", + result: { + word: "względem", + correct: 19, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "03.02.2025", + }, + }, + { + date: "03.02.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNh1yZuIWLkpnL2QTZtA3c35CMuMTMuEjL2EjL0MTLtVGZ5kTJ0MUJsdme3hSI", + value: "!(względem-34.16.1.13.0.wsp-e46.zd-b.g-a7)!", + result: { + word: "względem", + correct: 16, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "03.02.2025", + }, + }, + { + date: "03.02.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3EWLnpnLxAjMtEGbuYGMx0ieydnLxUzMtk2dz5CMuETMuIjL2EjL0MTLtVGZ5kTJ0MUJsdme3hSI", + value: "!(względem-34.16.2.11.0.swi-351.wrz-10f.la-201.zg-a7)!", + result: { + word: "względem", + correct: 16, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "03.02.2025", + }, + }, + { + date: "03.02.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTYtcme35SO1ETLiVmeuETNz0SZ6JnLkhTMtA3ch5CMuUTMuEjL2EjL0MTLtVGZ5kTJ0MUJsdme3hSI", + value: "!(względem-34.16.1.15.0.asp-18d.rze-351.zeb-159.wzg-a7)!", + result: { + word: "względem", + correct: 16, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "03.02.2025", + }, + }, + { + date: "03.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTYtcme35iZl1yb6pnLw4COuAjLxEjL0MTLtVGZ5kTJ0MUJsdme3hSI", + value: "!(względem-34.11.0.8.0.zzo-ef.wzg-a7)!", + result: { + word: "względem", + correct: 11, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "03.02.2025", + }, + }, + { + date: "03.02.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3EWLnp3duITZy4yN5MTLoN2MucjZyETLkVmaukjNz0SZyRnLxETLjVnYuYzMx0SZw5yNh1CZl5iMzMTMtMXe35CMuEjMuQjLwIjL0MTLtVGZ5kTJ0MUJsdme3hSI", + value: + "!(względem-34.20.4.21.0.wys-1332.ed-a7.pe-136.buc-11.tre-369.jed-12f7.3ch-397.2e2.wzg-a7)!", + result: { + word: "względem", + correct: 20, + position: 4, + incorrect: 21, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 45, + date: "03.02.2025", + }, + }, + { + date: "03.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNh1yZ65yN0ITLq92duMTO4EWMtoncw5CMuUTMuAjLzEjL0MTLtVGZ5kTJ0MUJsdme3hSI", + value: "!(względem-34.13.0.15.0.prz-1a893.woj-247.zg-a7)!", + result: { + word: "względem", + correct: 13, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "03.02.2025", + }, + }, + { + date: "03.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNh5CNh1yZ6dnL3UWLkpXduUWYtcWZ65SO2gTMtoXZi5SZwQTMtEmez5CMuITMuMjLyIjL0MTLtVGZ5kTJ0MUJsdme3hSI", + value: + "!(względem-34.22.3.12.0.sza-140e.bez-1869.zeg-ae.uzd-e7.wzg-a4.a7)!", + result: { + word: "względem", + correct: 22, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "03.02.2025", + }, + }, + { + date: "03.02.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTYtcme35SN0QTL6J3ZugDNt8me6VWau5CMuITMuMjLyEjL0MTLtVGZ5kTJ0MUJsdme3hSI", + value: "!(względem-34.12.3.12.0.niezzo-48.grz-445.wzg-a7)!", + result: { + word: "względem", + correct: 12, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "03.02.2025", + }, + }, + { + date: "03.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNh5SYh1yZ65CMyITLnVmL3cjYx0Sb5dnL4AzNtwWat5CMuATMuMjLxIjL0MTLtVGZ5kTJ0MUJsdme3hSI", + value: "!(względem-34.21.3.10.0.mil-708.wym-1b77.eg-220.zg-aa.a7)!", + result: { + word: "względem", + correct: 21, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "03.02.2025", + }, + }, + { + date: "03.02.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTYtcmeuYTNy0yZl5yM4ETLlxmLiNzYtUWa35CMuMTMuIjL4EjL0MTLtVGZ5kTJ0MUJsdme3hSI", + value: "!(względem-34.18.2.13.0.wie-c3b.le-183.eg-256.zg-a7)!", + result: { + word: "względem", + correct: 18, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "03.02.2025", + }, + }, + { + date: "03.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTYuE2Ytcme35iN3ATNto3bw5yNilTLjp3cugTOt8me65CMucTMuMjLwIjL0MTLtVGZ5kTJ0MUJsdme3hSI", + value: "!(względem-34.20.3.17.0.zzo-98.szc-9b7.poz-5076.wzg-ca.a7)!", + result: { + word: "względem", + correct: 20, + position: 3, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "03.02.2025", + }, + }, + { + date: "03.02.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNh1yZ6dnLwQDN30ieyBnL2EmYtUWat5CMuMTMuQjL0EjL0MTLtVGZ5kTJ0MUJsdme3hSI", + value: "!(względem-34.14.4.13.0.mie-ba6.prz-7440.wzg-a7)!", + result: { + word: "względem", + correct: 14, + position: 4, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "03.02.2025", + }, + }, + { + date: "03.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNh1yZ6dnLzYmMtg2Yz4iZjhTLlx2auATNx0Sd6NnL1E2YtQWY65yYhJGNtQ2bw5CMukTMuMjL5EjL0MTLtVGZ5kTJ0MUJsdme3hSI", + value: + "!(względem-34.19.3.19.0.pod-4bac.zad-ca5.szu-150.kle-8cf.3ch-2f3.wzg-a7)!", + result: { + word: "względem", + correct: 19, + position: 3, + incorrect: 19, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 41, + date: "03.02.2025", + }, + }, + { + date: "03.02.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNh1yZ6dnLxYGNtQWZw5SZxETLppnL2QTZtA3c35SMuUTMuIjL5EjL0MTLtVGZ5kTJ0MUJsdme3hSI", + value: "!(względem-34.19.2.15.1.wsp-e46.zi-11e.ped-4f1.wzg-a7)!", + result: { + word: "względem", + correct: 19, + position: 2, + incorrect: 15, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 36, + date: "03.02.2025", + }, + }, + { + date: "03.02.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3EmLhFWLn5CM00CZuQTMtcnLw0CZ6dnLmJmMtUHaj5SMuUTMuEjL2IjL0MTLtVGZ5kTJ0MUJsdme3hSI", + value: "!(względem-34.26.1.15.1.chu-2bf.wzd-0.w-14.d-40.g-aa.a7)!", + result: { + word: "względem", + correct: 26, + position: 1, + incorrect: 15, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 42, + date: "03.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/mile-latwe-przyjemne-satysfakcjonujace-30-12-2024-diffle-diffleen-grywebowe-29-l" +] = [ + { + date: "30.12.2024", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY3MTLpJHduITMtkGd15SMyITLzVGZuIjL0EjLw4SNx4SN2MTL5d2bslmc0hSI", + value: "!(trilogy-365.15.0.14.2.des-221.uti-12.tri-37a)!", + result: { + word: "trilogy", + correct: 15, + position: 0, + incorrect: 14, + knownIncorrect: 2, + totalWords: 3, + totalLetters: 29, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY3MTLp5SZ3EjL3gTLvJHduYGMy0yb0NnLzITL09WbuAjLzEjLy4iMy4SN2MTL5d2bslmc0hSI", + value: "!(trilogy-365.22.2.13.0.mot-23.sto-20f.tro-87.17e.i-37a)!", + result: { + word: "trilogy", + correct: 22, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpE2Nz0SayRnLiNTLpJHZucjNt4Wat5CMucjLx4iMx4SN2MTL5d2bslmc0hSI", + value: "!(trilogy-365.12.1.7.0.min-67.dri-3b.tri-37a)!", + result: { + word: "trilogy", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpE2Nz0SayRnLiRTMtwWZy5SY10SaydmLx0CbnlmL5ETLjVnZuAjLyEjLy4COx4SN2MTL5d2bslmc0hSI", + value: "!(trilogy-365.18.2.12.0.fuc-19.igl-1.gri-5a.rel-14b.tri-37a)!", + result: { + word: "trilogy", + correct: 18, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY3MTLpJHducTYh1ybyBnL0IWLlh2duAjLxEjLy4SMx4SN2MTL5d2bslmc0hSI", + value: "!(trilogy-365.11.2.11.0.whe-b4.pro-aa7.tri-37a)!", + result: { + word: "trilogy", + correct: 11, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhdzMtkmc05iZx0SasJmL3ETL19mcuIjNt0WYn5CMugjLy4iMx4SN2MTL5d2bslmc0hSI", + value: "!(trilogy-365.12.2.8.0.gam-62.rou-17.bli-1f.tri-37a)!", + result: { + word: "trilogy", + correct: 12, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY3MTLpJHduIzN04yMjJTLoN2MuYmM00SayRnL0QzNtg2Yz4CM3ETLph2duMGOtQXYt5CO0ITLpVXcuAjLzEjLz4SMy4SN2MTL5d2bslmc0hSI", + value: + "!(trilogy-365.21.3.13.0.qui-248.mat-8c.whi-170.3ch-744.tri-42f.3ch-2c3.472.tri-37a)!", + result: { + word: "trilogy", + correct: 21, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 37, + date: "30.12.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/moj-pierwszy-raz-01-02-2025-diffle-difflepl-grywebowe-22-litery-w-3-slowach-larg" +] = [ + { + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwcDNy0icvBnLlJGOm1ievJnLw4iNuIjLwEjLyMTLsVmZ0J3bwhSI", + value: "!(portfel-32.10.2.6.0.roz-f8be.por-2470)!", + result: { + word: "portfel", + correct: 10, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/mozna-sobie-postrzelac-02-03-2025-flag-pl-diffle-difflepl-grywebowe-35-liter-w-5" +] = [ + { + date: "02.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMyMTLv1WdugjMi1Sbk9mLiJjYx0Sb5dnLw0ydv5iNhJWLllWbuAjL0EjLy4SOx4SM20SY39Wb1hSI", + value: "!(umowa-61.19.2.14.0.mie-ba6.ow-0.wym-1b2b.odm-b28.umo-322)!", + result: { + word: "umowa", + correct: 19, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "02.03.2025", + }, + }, + { + date: "02.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyIzMt8Wb15COyUTLv1meuATL39WbucDOj1yboNmLw0CZvdnLiJWYtwWYw5yY2EWLhJ3ZuAjLyEjLy4CMy4SM20SY39Wb1hSI", + value: + "!(umowa-61.20.2.12.0.gra-a6c.pal-abb.wod-0.cho-c87.mow-0.zmo-528.umo-322)!", + result: { + word: "umowa", + correct: 20, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 34, + date: "02.03.2025", + }, + }, + { + date: "02.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjMz0ybtVnLwUmMtwWdi5yY0ETLhd3cuQzNwITLjl3duAjL1EjLw4iMx4SM20SY39Wb1hSI", + value: "!(umowa-61.12.0.15.0.wyc-2074.swa-14c.bul-2e0.umo-322)!", + result: { + word: "umowa", + correct: 12, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "02.03.2025", + }, + }, + { + date: "02.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMyMTLv1WduEzMtYWds5yNkJTL1R3cuMzY3gTLk9GcuAjLzEjLw4yMx4SM20SY39Wb1hSI", + value: "!(umowa-61.13.0.13.0.pod-87c3.stu-2d7.luf-31.umo-322)!", + result: { + word: "umowa", + correct: 13, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "02.03.2025", + }, + }, + { + date: "02.03.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjMz0ybtVnL5UjZy0ibvtmLw4iNuAjL44SM20SY39Wb1hSI", + value: "!(umowa-61.8.0.6.0.kon-2f59.umo-322)!", + result: { + word: "umowa", + correct: 8, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "02.03.2025", + }, + }, + { + date: "02.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMyMTLv1WduATL39WbukDNz0ybpBnL5UTLrp3cuAjL3EjLx4iMx4SM20SY39Wb1hSI", + value: "!(umowa-61.12.1.17.0.szk-59.pio-349.mow-0.umo-322)!", + result: { + word: "umowa", + correct: 12, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "02.03.2025", + }, + }, + { + date: "02.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyIzMt8Wb15CMtc3bt5CMtM2dv5CZyQTLyB3cuAjLwEjLx4CNx4SM20SY39Wb1hSI", + value: "!(umowa-61.14.1.10.0.spr-42d.owc-0.mow-0.umo-322)!", + result: { + word: "umowa", + correct: 14, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "02.03.2025", + }, + }, + { + date: "02.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjMz0ybtVnL2ITLtV3YuMWO00Sbi9mL4ITNt8Wb65CMtc3bt5CMtc3bz5CMtQ2b35iYyMTL5J3auAjL2EjLx4SOy4SM20SY39Wb1hSI", + value: + "!(umowa-61.29.1.16.0.kry-32b.wod-0.sow-0.mow-0.zmo-528.obm-49c.cum-26.umo-322)!", + result: { + word: "umowa", + correct: 29, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 46, + date: "02.03.2025", + }, + }, + { + date: "02.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMyMTLv1WduQjNx0Sb1dmL2cTLw9WbuUmZ10ic1RnLhFTMtQWdi5iZiJTL1h2YuAjL2EjLw4CNy4SM20SY39Wb1hSI", + value: + "!(umowa-61.24.0.16.0.chu-2bf.bud-11a.tur-5fe.mop-76.gum-164.umo-322)!", + result: { + word: "umowa", + correct: 24, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "02.03.2025", + }, + }, + { + date: "02.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjMz0ybtVnLw0ydv1mLw0CZvdnL5YTLy9GduEWMyUTL69GcuAjLyEjLx4SNx4SM20SY39Wb1hSI", + value: "!(umowa-61.15.1.12.0.poz-521a.tor-69.wod-0.mow-0.umo-322)!", + result: { + word: "umowa", + correct: 15, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "02.03.2025", + }, + }, + { + date: "02.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjMz0ybtVnLilTLzVnYuQDZy0SdoNmLmFTLrVXZuAjLzEjLx4yMx4SM20SY39Wb1hSI", + value: "!(umowa-61.13.1.13.0.euk-1f.chu-2d4.bus-9b.umo-322)!", + result: { + word: "umowa", + correct: 13, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "02.03.2025", + }, + }, + { + date: "02.03.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyIzMt8Wb15CMtc3bt5SNj1SY39mLjlTLz92ZuAjL0EjLw4SNx4SM20SY39Wb1hSI", + value: "!(umowa-61.15.0.14.0.gos-9c.owa-c5.mow-0.umo-322)!", + result: { + word: "umowa", + correct: 15, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "02.03.2025", + }, + }, + { + date: "02.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMyMTLv1WducjYy0SdoNmLmNTLnVnZuEDO50SdrNnLwUmMtwWdi5CNmFTLkl3duAjL2EjLw4SMy4SM20SY39Wb1hSI", + value: + "!(umowa-61.21.0.16.0.wyd-1f4.bul-2e0.sku-981.fug-3f.chu-2b7.umo-322)!", + result: { + word: "umowa", + correct: 21, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "02.03.2025", + }, + }, + { + date: "02.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyIzMt8WbuUWNtE2a15CMucjLw4CMx4SM20SY39Wb1hSI", + value: "!(umowa-61.10.0.7.0.uka-5e.mo-322)!", + result: { + word: "umowa", + correct: 10, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "02.03.2025", + }, + }, + { + date: "02.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyIzMt8Wb15CMtc3bt5SYxczMtoncw5CMukjLw4SMx4SM20SY39Wb1hSI", + value: "!(umowa-61.11.0.9.0.prz-371a.mow-0.umo-322)!", + result: { + word: "umowa", + correct: 11, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "02.03.2025", + }, + }, + { + date: "02.03.2025", + nick: "ulsterboy", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyIzMt8Wb15iY4ETLixWYuMTZx0Sb1JnL0YTMt0Wdn5iZmFTLhlWbuAjLzEjLx4yMy4SM20SY39Wb1hSI", + value: "!(umowa-61.23.1.13.0.mia-1ff.gum-164.rum-1e3.alb-18b.umo-322)!", + result: { + word: "umowa", + correct: 23, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "02.03.2025", + }, + }, + { + date: "02.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMyMTLv1WduQzY50SdrNnLzkDOhFTL6JHcuAjLzEjLx4CMx4SM20SY39Wb1hSI", + value: "!(umowa-61.10.1.13.0.prz-1a893.sku-9c4.umo-322)!", + result: { + word: "umowa", + correct: 10, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "02.03.2025", + }, + }, + { + date: "02.03.2025", + nick: "Tysiek", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyIzMt8Wb15CMtc3bt5CMtQ3b35COlFTLn9GZuQTMy0CbvBnLwETLi9mcuAjL1EjLx4yNx4SM20SY39Wb1hSI", + value: "!(umowa-61.17.1.15.0.rob-10.pol-214.dog-1e8.wot-0.mow-0.umo-322)!", + result: { + word: "umowa", + correct: 17, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "02.03.2025", + }, + }, + { + date: "02.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjMz0ybtVnLjNDNz0ycvBnLjZWMtIXej5CMuITMuEjL44SM20SY39Wb1hSI", + value: "!(umowa-61.8.1.12.0.cyr-1fc.pos-343c.umo-322)!", + result: { + word: "umowa", + correct: 8, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "02.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/myli-tropy-ale-ogolnie-latwe-02-01-2025-diffle-difflepl-grywebowe-38-liter-w-5-s" +] = [ + { + date: "02.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNxITMts2bw5iYzQTMtsWe35CZwEWLs92auMTLz9GbuMmY2cTL69mcuAjLwEjLx4yNy4iMtUWauVGbvt2bwhSI", + value: "!(pokolenie-2.27.1.10.0.roz-76bc.los-3.kol-a0d.wyk-143b.pok-1216)!", + result: { + word: "pokolenie", + correct: 27, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "02.01.2025", + }, + }, + { + date: "02.01.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNxITMtsmL1MTMtUmL0YWLj5iMhNTLq5iYjlTL05yYmdTMt4mLjNzMx0ydvBnLhBjMt8Gcz5SO4EWLhJ3ZuAjLxEjLw4CM14iMtUWauVGbvt2bwhSI", + value: + "!(pokolenie-2.50.0.11.0.gra-a89.spo-20a.pow-133c.n-17fc.t-9cb.j-3a2.c-f4.e-135.k-1216)!", + result: { + word: "pokolenie", + correct: 50, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 61, + date: "02.01.2025", + }, + }, + { + date: "02.01.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2EjMx0yauYmYk1CbvBnLmlTLz92ZuAjLzEjLz4yNx4iMtUWauVGbvt2bwhSI", + value: "!(pokolenie-2.17.3.13.0.gos-9f.pol-dbf.k-1216)!", + result: { + word: "pokolenie", + correct: 17, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 33, + date: "02.01.2025", + }, + }, + { + date: "02.01.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2EjMx0yavBnL1EWMt8Gcz5yN1QTLvBXduAjLxEjLw4iMy4iMtUWauVGbvt2bwhSI", + value: "!(pokolenie-2.22.0.11.0.upo-457.spo-1a5.pok-1216)!", + result: { + word: "pokolenie", + correct: 22, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 33, + date: "02.01.2025", + }, + }, + { + date: "02.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTMyETLr9mL4UWL0lGcucTZtw2bn5SYlFTLs92cucDOtoXa35CMukjLx4SMz4iMtUWauVGbvt2bwhSI", + value: "!(pokolenie-2.31.1.9.0.wiz-87.sol-1ea.gol-e7.pit-e8.ok-1216)!", + result: { + word: "pokolenie", + correct: 31, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "02.01.2025", + }, + }, + { + date: "02.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2EjMx0yav5CZ2QTLlxGcuQ2YtAXZs5iMxMTLmVGZuAjLxEjL04COx4iMtUWauVGbvt2bwhSI", + value: "!(pokolenie-2.18.4.11.0.def-312.lep-cd.ple-46d.ok-1216)!", + result: { + word: "pokolenie", + correct: 18, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "02.01.2025", + }, + }, + { + date: "02.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2EjMx0yavBnL0YDNtg2Yz4iYzEWMtwmL1YGNtInLyETMtU2bw5CMukjLx4iMy4iMtUWauVGbvt2bwhSI", + value: "!(pokolenie-2.22.1.9.0.poe-112.r-4f5.l-1a3b.3ch-464.pok-1216)!", + result: { + word: "pokolenie", + correct: 22, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "02.01.2025", + }, + }, + { + date: "02.01.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTMyETLr5CZxcTMtw2buEWM10icpBnL5UTLrp3cuAjLzEjLz4SOx4iMtUWauVGbvt2bwhSI", + value: "!(pokolenie-2.19.3.13.0.szk-59.pir-51a.ol-171d.k-1216)!", + result: { + word: "pokolenie", + correct: 19, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "02.01.2025", + }, + }, + { + date: "02.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTMyETLr9GcuMGZk1CbvtmLiNmYtUWat5CMugjLz4SOx4iMtUWauVGbvt2bwhSI", + value: "!(pokolenie-2.19.3.8.0.mie-bcb.kol-ddc.pok-1216)!", + result: { + word: "pokolenie", + correct: 19, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "02.01.2025", + }, + }, + { + date: "02.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2EjMx0yavBnLmV2MtIHcz5CMucjLw4CNx4iMtUWauVGbvt2bwhSI", + value: "!(pokolenie-2.14.0.7.0.spr-3ef.pok-1216)!", + result: { + word: "pokolenie", + correct: 14, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "02.01.2025", + }, + }, + { + date: "02.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNxITMts2bw5iMx0ybvRmLjNjMt82av5iMiZTLhd3auAjLyEjLw4yNy4iMtUWauVGbvt2bwhSI", + value: "!(pokolenie-2.27.0.12.0.kwa-6b2.oko-23c.doo-12.pok-1216)!", + result: { + word: "pokolenie", + correct: 27, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 39, + date: "02.01.2025", + }, + }, + { + date: "02.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNxITMts2buIjY3EWMtoncw5CMugjLw4CNx4iMtUWauVGbvt2bwhSI", + value: "!(pokolenie-2.14.0.8.0.prz-1a7b2.ok-1216)!", + result: { + word: "pokolenie", + correct: 14, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "02.01.2025", + }, + }, + { + date: "02.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNxITMts2bw5SOhVTLvB3cuYWMtsWdl5CMuYjLy4COx4iMtUWauVGbvt2bwhSI", + value: "!(pokolenie-2.18.2.6.0.euk-1f.spo-5a9.pok-1216)!", + result: { + word: "pokolenie", + correct: 18, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "02.01.2025", + }, + }, + { + date: "02.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNxITMuYWZ2ETLr5CZhFTNto3bw5CMuUjLw4iMy4iMtUWauVGbvt2bwhSI", + value: "!(pokolenie-2.22.0.5.0.poz-51ad.k-16ef.1216)!", + result: { + word: "pokolenie", + correct: 22, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "02.01.2025", + }, + }, + { + date: "02.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNxITMuMmMxETLr5iZhNTLq9mLkRWMt4WZw5CMtkmbl5CNmFTLkl3duEjLyEjLx4SOy4iMtUWauVGbvt2bwhSI", + value: "!(pokolenie-2.29.1.12.1.wyd-1f4.eni-0.pen-1dd.oj-3af.k-112c.1216)!", + result: { + word: "pokolenie", + correct: 29, + position: 1, + incorrect: 12, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 42, + date: "02.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/myslalem-o-diffle-wrapped-large-green-circle-ale-lokalne-statystyki-wyswietlaja-" +] = []; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/niby-nietrudne-a-sponiewieralo-slightly-smiling-face-23-02-2025-diffle-difflepl-" +] = [ + { + date: "23.02.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMzETLzJmLjJTL3RWYuUWMtUGb05SZ1ITLsFGauADOx0iblZmLmlTN20ieyBnLw4yMx4SNuUjMuQTNtQnbldHbvNnYhhSI", + value: + "!(absolwent-54.25.5.13.0.prz-659f.fen-180.hal-25e.tle-1e.adw-2c.bs-132)!", + result: { + word: "absolwent", + correct: 25, + position: 5, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "23.02.2025", + }, + }, + { + date: "23.02.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzMx0yciFmLjlTMt0WYs5iY4ETL0FGcuQ2Yk1SYydmLw4yMx4SMukTMuQTNtQnbldHbvNnYhhSI", + value: "!(absolwent-54.19.1.13.0.gra-dcd.pat-18b.lam-19c.abs-132)!", + result: { + word: "absolwent", + correct: 19, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "23.02.2025", + }, + }, + { + date: "23.02.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMzETLzJWYugTYy0CbhdnLlNWL3VGbuEWM3MTL6JHcuAjL44iNugTMuQTNtQnbldHbvNnYhhSI", + value: "!(absolwent-54.18.6.8.0.prz-371a.lew-ce.wal-2a8.abs-132)!", + result: { + word: "absolwent", + correct: 18, + position: 6, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "23.02.2025", + }, + }, + { + date: "23.02.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMTMtMnYh5yM00ycvxmLkdTNtIXaw5SO10ya6NnLw4CNx4SNugTMuQTNtQnbldHbvNnYhhSI", + value: "!(absolwent-54.18.5.14.0.szk-59.pir-57d.los-43.abs-132)!", + result: { + word: "absolwent", + correct: 18, + position: 5, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "23.02.2025", + }, + }, + { + date: "23.02.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzMx4CNh1yciFmLw0ydvNnLwYTLzFmYuAjNxETLyFGcuYmYy0SdoNmLx4yMx4iNuAzMuQTNtQnbldHbvNnYhhSI", + value: + "!(absolwent-54.30.6.13.1.chu-2bf.par-1160.bas-60.sow-0.abs-a4.132)!", + result: { + word: "absolwent", + correct: 30, + position: 6, + incorrect: 13, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 49, + date: "23.02.2025", + }, + }, + { + date: "23.02.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMTMtMnYh5yNjNjMtMXe35CZ0ETL3N3buQmM00icwNnLw4SMx4COugTMuQTNtQnbldHbvNnYhhSI", + value: "!(absolwent-54.18.8.11.0.spr-42d.osw-14d.wys-23c7.abs-132)!", + result: { + word: "absolwent", + correct: 18, + position: 8, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "23.02.2025", + }, + }, + { + date: "23.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMTMtMnLhZTLvJmLhVTLjtmLhNWLldmL0ITMx0CduFmLw4SMx4SMuYjMuQTNtQnbldHbvNnYhhSI", + value: "!(absolwent-54.26.1.11.0.ant-1124.ge-ca.kc-5a.bo-6a.s-132)!", + result: { + word: "absolwent", + correct: 26, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "23.02.2025", + }, + }, + { + date: "23.02.2025", + nick: "ulsterboy", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMTMuUWOtMnYh5yNwMTLvpXauETYh1SYr5yN1cTLtF2cuEjL44yMuYjMuQTNtQnbldHbvNnYhhSI", + value: "!(absolwent-54.26.3.8.1.sam-757.ka-aa1.izo-307.abs-9e.132)!", + result: { + word: "absolwent", + correct: 26, + position: 3, + incorrect: 8, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 37, + date: "23.02.2025", + }, + }, + { + date: "23.02.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMTMtMnYuMmMtcHZucTMtUmah5yY2EWLhJ3ZuAjL14SMuAjMuQTNtQnbldHbvNnYhhSI", + value: "!(absolwent-54.20.1.5.0.gra-a6c.aje-17.dw-2c.bs-132)!", + result: { + word: "absolwent", + correct: 20, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "23.02.2025", + }, + }, + { + date: "23.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMTMtMnYh5SNz0CajNjLyMWMtc3ah5CNmFTLkl3duAjL34SMugTMuQTNtQnbldHbvNnYhhSI", + value: "!(absolwent-54.18.1.7.0.wyd-1f4.akw-1c2.3ch-35.abs-132)!", + result: { + word: "absolwent", + correct: 18, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "23.02.2025", + }, + }, + { + date: "23.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMTMtMnYh5CMxgTLzFGcuETNx0SY3NnLmRjMy0yc5dnLw4CMx4SNugTMuQTNtQnbldHbvNnYhhSI", + value: "!(absolwent-54.18.5.10.0.wys-224f.swa-151.pas-810.abs-132)!", + result: { + word: "absolwent", + correct: 18, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "23.02.2025", + }, + }, + { + date: "23.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMzETLz5yN00ybiFmLmFTLrVXZuAjL34SMukTMuQTNtQnbldHbvNnYhhSI", + value: "!(absolwent-54.19.1.7.0.euk-1f.abo-47.s-132)!", + result: { + word: "absolwent", + correct: 19, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "23.02.2025", + }, + }, + { + date: "23.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzMx0yciFmLiVTLu92duETLtV2cuEWMyUTL69GcuAjL54yNuUTMuQTNtQnbldHbvNnYhhSI", + value: "!(absolwent-54.15.7.9.0.poz-521a.sem-1.won-5b.abs-132)!", + result: { + word: "absolwent", + correct: 15, + position: 7, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "23.02.2025", + }, + }, + { + date: "23.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzMx0yciFmL3ITOt42bt5iM4QTLsFmbugDN5ETL09GcuAjL44CNucTMuQTNtQnbldHbvNnYhhSI", + value: "!(absolwent-54.17.4.8.0.pot-1948.nal-482.mon-927.abs-132)!", + result: { + word: "absolwent", + correct: 17, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "23.02.2025", + }, + }, + { + date: "23.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMTMtMnYh5SZh1CbhRnLjlTMt0WYs5yM5gTYx0ieyBnLw4CMx4yMuEjMuQTNtQnbldHbvNnYhhSI", + value: "!(absolwent-54.21.3.10.0.prz-1a893.lam-19c.tal-ae.abs-132)!", + result: { + word: "absolwent", + correct: 21, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "23.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-jest-latwo-dzis-szanse-byly-nierowne-i-mialem-po-gorke-16-02-2025-diffle-dif" +] = [ + { + date: "16.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZmZWLn5yYkhTMt0mL0gjN30CZuU2M5ETL09mLkZWMz0ybyBnLw4SMx4iMuIjMucDNtUmeyNjQlMzQlc2bwhSI", + value: "!(pogórze-47.22.2.11.0.pro-31fd.ot-193e.d-7684.m-18dc.g-fff)!", + result: { + word: "pogórze", + correct: 22, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "16.02.2025", + }, + }, + { + date: "16.02.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZmZtc2bw5CM4MTLvd2buIzMzETLzl3duAjL44CMuMTMucDNtUmeyNjQlMzQlc2bwhSI", + value: "!(pogórze-47.13.0.8.0.wys-1332.ogo-380.pog-fff)!", + result: { + word: "pogórze", + correct: 13, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "16.02.2025", + }, + }, + { + date: "16.02.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZmZtc2bw5CM4MTLvd2buU2N3ATMto3by5iZmhTL6FmeuAjL44yMuUTMucDNtUmeyNjQlMzQlc2bwhSI", + value: "!(pogórze-47.15.3.8.0.zaz-8ff.roz-1077e.ogo-380.pog-fff)!", + result: { + word: "pogórze", + correct: 15, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "16.02.2025", + }, + }, + { + date: "16.02.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmZm1yZuczM4gTLk9GcuYTYi1SZp1mLw4yMx4iMuMTMucDNtUmeyNjQlMzQlc2bwhSI", + value: "!(pogórze-47.13.2.13.0.mie-ba6.pod-8837.g-fff)!", + result: { + word: "pogórze", + correct: 13, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "16.02.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZmZtc2bw5CMlVTLvJ3ZuIDMy0CZ1NmLw4iMx4yMuETMucDNtUmeyNjQlMzQlc2bwhSI", + value: "!(pogórze-47.11.3.12.0.cud-202.gro-5e0.pog-fff)!", + result: { + word: "pogórze", + correct: 11, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + }, + }, + { + date: "16.02.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZmZugDZ1ETLn5iZzYWL39GcukDM20SZsVmLw4SNx4yMukTMucDNtUmeyNjQlMzQlc2bwhSI", + value: "!(pogórze-47.19.3.15.0.ele-609.pow-f3f.g-15d8.fff)!", + result: { + word: "pogórze", + correct: 19, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "16.02.2025", + }, + }, + { + date: "16.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZmZmLyUmNx0yZuYDZ1ETLi9GcuYWNx0iey9mL3kTMx0Sb5dnLw4COx4CMuQjMucDNtUmeyNjQlMzQlc2bwhSI", + value: "!(pogórze-47.24.0.18.0.wym-1197.orz-15f.pob-15d6.g-16e2.fff)!", + result: { + word: "pogórze", + correct: 24, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "16.02.2025", + }, + }, + { + date: "16.02.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZmZuUGZl1yZv5SOhVGNtoncuIjZ30icuYWZwQTL69GcuAzM00SYp1mLx4COx4iMuUjMucDNtUmeyNjQlMzQlc2bwhSI", + value: "!(pogórze-47.25.2.18.1.mia-430.poz-40ef.r-7f2.rz-4ea9.og-ede.fff)!", + result: { + word: "pogórze", + correct: 25, + position: 2, + incorrect: 18, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 45, + date: "16.02.2025", + }, + }, + { + date: "16.02.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmZm1yZv5SYxUTLkVGcuMzM10SZ6NnL0MzMx0Cb5dnLw4SNx4SMuITMucDNtUmeyNjQlMzQlc2bwhSI", + value: "!(pogórze-47.12.1.15.0.wyl-1334.sze-533.ped-51a.og-fff)!", + result: { + word: "pogórze", + correct: 12, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "16.02.2025", + }, + }, + { + date: "16.02.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmZm5CZ0YTMtcmL4QmYy0CcuMmNiJTLy9GcuYmYy0SdoNmLw4SNx4CMuUjMucDNtUmeyNjQlMzQlc2bwhSI", + value: "!(pogórze-47.25.0.15.0.chu-2bf.por-2b6c.p-2bd8.g-164d.fff)!", + result: { + word: "pogórze", + correct: 25, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "16.02.2025", + }, + }, + { + date: "16.02.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZmZmL1MWNx4SZkVWLn9GcuYDNl1CczdnLw4SMx4SMuMjMucDNtUmeyNjQlMzQlc2bwhSI", + value: "!(pogórze-47.23.1.11.0.wsp-e46.pog-ede.15c5.fff)!", + result: { + word: "pogórze", + correct: 23, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "16.02.2025", + }, + }, + { + date: "16.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmZm1yZv5iM3AzMt8mcuYTOtkHbuAzYz0CdlBnL2AjNx0SYrNnLw4iMx4iMuITMucDNtUmeyNjQlMzQlc2bwhSI", + value: "!(pogórze-47.12.2.12.0.ska-1606.pet-3c0.ly-96.ro-3072.og-fff)!", + result: { + word: "pogórze", + correct: 12, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "16.02.2025", + }, + }, + { + date: "16.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmZm1yZuQzM4ITLk9GcuYWOy0iev1mLxIDNtIHcv5CO50yb6pnLw4SMx4iNuIjMucDNtUmeyNjQlMzQlc2bwhSI", + value: "!(pogórze-47.22.6.11.0.zzo-98.opr-421.moz-29f.pod-2834.g-fff)!", + result: { + word: "pogórze", + correct: 22, + position: 6, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "16.02.2025", + }, + }, + { + date: "16.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmZm1yZv5iN5EWL65yM3AzMt8mcuMWZiJTLr9GcuUTM00CbvpnLw4SMx4iMucTMucDNtUmeyNjQlMzQlc2bwhSI", + value: "!(pogórze-47.17.2.11.0.zol-415.pok-2bec.ro-3073.z-a96.og-fff)!", + result: { + word: "pogórze", + correct: 17, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "16.02.2025", + }, + }, + { + date: "16.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmZm5CNzYTMtcmLjZjYy0icv5yM5gTYx0ieyBnLw4CNx4SMuIjMucDNtUmeyNjQlMzQlc2bwhSI", + value: "!(pogórze-47.22.1.14.0.prz-1a893.or-2b6c.g-1634.fff)!", + result: { + word: "pogórze", + correct: 22, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "16.02.2025", + }, + }, + { + date: "16.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmZm1yZuIWM4ITLw5SZxETNtonLjFmY00CZvBnLw4CMx4iMucTMucDNtUmeyNjQlMzQlc2bwhSI", + value: "!(pogórze-47.17.2.10.0.pod-4bac.z-511e.p-281b.g-fff)!", + result: { + word: "pogórze", + correct: 17, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "16.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-ma-spania-31-12-2024-flag-pl-diffle-difflepl-27-liter-w-3-slowach-champagne-" +] = [ + { + date: "31.12.2024", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkN2MtEmez5iMjVWLjFmeuIjY3EWMtoncw5CMuETMuEjL1EjL2YzMtkHajFmezhSI", + value: "!(szachy-366.15.1.11.0.prz-1a7b2.zac-ec2.sza-3cd)!", + result: { + word: "szachy", + correct: 15, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "31.12.2024", + }, + }, + { + date: "31.12.2024", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZjNjLkFmNx0SY6NnLzQWNt0WY65SN3ETMtoXZi5CMuITMuIjL1EjL2YzMtkHajFmezhSI", + value: "!(szachy-366.15.2.12.0.bez-1175.zam-5d3.sza-16ad.3cd)!", + result: { + word: "szachy", + correct: 15, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "31.12.2024", + }, + }, + { + date: "31.12.2024", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQ2Yz0SY6NnL5YGOy0ychpnL0MmM00ievJnLw4SOuIjLxEjL2YzMtkHajFmezhSI", + value: "!(szachy-366.11.2.9.0.roz-42c4.zas-28f9.sza-3cd)!", + result: { + word: "szachy", + correct: 11, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "31.12.2024", + }, + }, + { + date: "31.12.2024", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQ2Yz4CM4ITLhp3cuMTO00SdyRnLw4COuEjL0EjL2YzMtkHajFmezhSI", + value: "!(szachy-366.14.1.8.0.tru-493.sza-280.3cd)!", + result: { + word: "szachy", + correct: 14, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "31.12.2024", + }, + }, + { + date: "31.12.2024", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZjNjLmhTOx0SY6NnLyAjZy0ibvtmLw4yNuEjLyEjL2YzMtkHajFmezhSI", + value: "!(szachy-366.12.1.7.0.kon-2f02.sza-198f.3cd)!", + result: { + word: "szachy", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "31.12.2024", + }, + }, + { + date: "31.12.2024", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkN2MuYGO5ETLhpnLmV2MtIHcz5CMuATMuAjLzEjL2YzMtkHajFmezhSI", + value: "!(szachy-366.13.0.10.0.spr-3ef.za-198f.3cd)!", + result: { + word: "szachy", + correct: 13, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "31.12.2024", + }, + }, + { + date: "31.12.2024", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQ2Yz0SY6NnLlhDOtMXYt5CZjJjMts2bw5CMuATMuIjLxEjL2YzMtkHajFmezhSI", + value: "!(szachy-366.11.2.10.0.pok-22cd.mas-88e.sza-3cd)!", + result: { + word: "szachy", + correct: 11, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "31.12.2024", + }, + }, + { + date: "31.12.2024", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZjNTLhp3cuATLtFmeugzYy0SdoNmLw4COuIjLyEjL2YzMtkHajFmezhSI", + value: "!(szachy-366.12.2.8.0.chu-2c8.zam-0.sza-3cd)!", + result: { + word: "szachy", + correct: 12, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "31.12.2024", + }, + }, + { + date: "31.12.2024", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQ2Yz4CM4IjL1EDNuIDN40SY6NnL0UjMtMXat5CMuMTMuAjLwIjL2YzMtkHajFmezhSI", + value: "!(szachy-366.20.0.13.0.mis-254.sza-842.415.280.3cd)!", + result: { + word: "szachy", + correct: 20, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "31.12.2024", + }, + }, + { + date: "31.12.2024", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkN2MuUTM00SYuUTOtMmLwITL5pnLiRTLv12cuEGM10CajNjL0UjMtwWez5CMuYTMuIjL1IjL2YzMtkHajFmezhSI", + value: + "!(szachy-366.25.2.16.0.syl-254.3ch-50a.smo-4b.zy-20.c-95.a-415.3cd)!", + result: { + word: "szachy", + correct: 25, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 43, + date: "31.12.2024", + }, + }, + { + date: "31.12.2024", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZjNTLhp3cugTOi1SY6NmLzITMz0yahpnLlVmYt42bt5CMuITMuEjLzEjL2YzMtkHajFmezhSI", + value: "!(szachy-366.13.1.12.0.mon-bee.zak-3123.cza-b98.sza-3cd)!", + result: { + word: "szachy", + correct: 13, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "31.12.2024", + }, + }, + { + date: "31.12.2024", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkN2MuQWY2ETLhp3cuUGO40ych1mLkFWM10ievBnLw4SOuMjL1EjL2YzMtkHajFmezhSI", + value: "!(szachy-366.15.3.9.0.poz-51ad.mas-88e.sza-16ad.3cd)!", + result: { + word: "szachy", + correct: 15, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "31.12.2024", + }, + }, + { + date: "31.12.2024", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZjNjLhJmNuEjLyQDOtEmez5iNxETLzF2duYWMtsWdl5CMuQTMuEjL5EjL2YzMtkHajFmezhSI", + value: "!(szachy-366.19.1.14.0.euk-1f.was-116.sza-842.1.6ba.3cd)!", + result: { + word: "szachy", + correct: 19, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "31.12.2024", + }, + }, + { + date: "31.12.2024", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZjNTLhpnLkNTL0l3cukDOtM3bn5CMuQTMuIjLzEjL2YzMtkHajFmezhSI", + value: "!(szachy-366.13.2.14.0.gos-89.syt-3d.za-3cd)!", + result: { + word: "szachy", + correct: 13, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "31.12.2024", + }, + }, + { + date: "31.12.2024", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQ2Yz0SYuETL3pnLyUWLsF2cuI2Mx0CdzFmL5gTYtEmcn5CMuMTMuAjL0EjL2YzMtkHajFmezhSI", + value: "!(szachy-366.14.0.13.0.gra-a89.ast-13b.sal-e2.zw-1.a-3cd)!", + result: { + word: "szachy", + correct: 14, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "31.12.2024", + }, + }, + { + date: "31.12.2024", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZjNTLh5SO10ya6NnLw4iNuAjLxEjL2YzMtkHajFmezhSI", + value: "!(szachy-366.11.0.6.0.szk-59.a-3cd)!", + result: { + word: "szachy", + correct: 11, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "31.12.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-najlepiej-dzisiaj-deg-deg-19-02-2025-diffle-difflepl-grywebowe-27-liter-w-4-" +] = [ + { + date: "19.02.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMtI3Zp5iM4ETL0l2aukzNx0SaiVnLwMDNtEWat5CMuITMuAjL1EjLwUTL3gTJ0MUJhJ3ZphSI", + value: "!(igrać-50.15.0.12.0.mia-430.ubi-179.kit-182.igr-3)!", + result: { + word: "igrać", + correct: 15, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "19.02.2025", + }, + }, + { + date: "19.02.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0icnlmL4gjMtUWai5SYtMXaw5yM0MTMtwWe35CMuMTMuAjLzEjLwUTL3gTJ0MUJhJ3ZphSI", + value: "!(igrać-50.13.0.13.0.wyl-1343.pis-a.bie-288.igr-3)!", + result: { + word: "igrać", + correct: 13, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "19.02.2025", + }, + }, + { + date: "19.02.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0icnlmLmJWLydWduEjNxETLnl3dugTOz0yZhpnL1UjMtUGbn5CMuQTMuEjL4EjLwUTL3gTJ0MUJhJ3ZphSI", + value: "!(igrać-50.18.1.14.0.gle-255.zag-398.wyg-1161.ugr-bf.igr-3)!", + result: { + word: "igrać", + correct: 18, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "19.02.2025", + }, + }, + { + date: "19.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz4yN30icuETL1dWauADNtMWYs5CMuMTMuEjL0EjLwUTL3gTJ0MUJhJ3ZphSI", + value: "!(igrać-50.14.1.13.0.lac-40.igu-1.r-77.3)!", + result: { + word: "igrać", + correct: 14, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "19.02.2025", + }, + }, + { + date: "19.02.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTLydWaukTLhlGcugDMy0SaiVnL2EmYtUWat5CMuYTMuAjLzEjLwUTL3gTJ0MUJhJ3ZphSI", + value: "!(igrać-50.13.0.16.0.mie-ba6.ubi-208.pia-9.igr-3)!", + result: { + word: "igrać", + correct: 13, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "19.02.2025", + }, + }, + { + date: "19.02.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0icnlmL3MWMtkmY65SZhhTLpN2cugTMtcWat5SOtEWaw5iMzMTMtMXe35CMuMTMuAjLyIjLwUTL3gTJ0MUJhJ3ZphSI", + value: "!(igrać-50.22.0.13.0.wys-1332.pia-9.mig-18.sci-8ae.zbi-1c7.igr-3)!", + result: { + word: "igrać", + correct: 22, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "19.02.2025", + }, + }, + { + date: "19.02.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0icnlmLyImMtEmcn5SM2ETMtcWe35iY1ETLt9GcugTOt8me65CMuMTMuAjL3EjLwUTL3gTJ0MUJhJ3ZphSI", + value: "!(igrać-50.17.0.13.0.zzo-98.pom-15b.wyg-1161.gra-2b2.igr-3)!", + result: { + word: "igrać", + correct: 17, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "19.02.2025", + }, + }, + { + date: "19.02.2025", + nick: "Szuuz_Ekleer", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTLydWauczYzETLnFmeuEjNxETLnl3duYGNtQXdr5CMuATMuEjL1EjLwUTL3gTJ0MUJhJ3ZphSI", + value: "!(igrać-50.15.1.10.0.kut-4f.wyg-1161.zag-13c7.igr-3)!", + result: { + word: "igrać", + correct: 15, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "19.02.2025", + }, + }, + { + date: "19.02.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0icnlmLyImMtEmcn5iY1ETLhJHduMTLsV3aucTNz4SZz0CajNjLy0CZ5dnLkhTMtA3ch5CMukTMuAjLyIjLwUTL3gTJ0MUJhJ3ZphSI", + value: + "!(igrać-50.22.0.19.0.asp-18d.wyd-2.3ch-3e.357.kul-3.tra-15b.gra-2b2.igr-3)!", + result: { + word: "igrać", + correct: 22, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 41, + date: "19.02.2025", + }, + }, + { + date: "19.02.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMtI3Zp5COx0yZp1mL4gjNx0yahpnLw4iNuEjLxEjLwUTL3gTJ0MUJhJ3ZphSI", + value: "!(igrać-50.11.1.6.0.zak-1688.mig-18.igr-3)!", + result: { + word: "igrać", + correct: 11, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "19.02.2025", + }, + }, + { + date: "19.02.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMtI3Zp5yNwEWMtEmc05SYtMXaw5CMy0SatNnLmJmMtUHaj5CMuYTMuEjL0EjLwUTL3gTJ0MUJhJ3ZphSI", + value: "!(igrać-50.14.1.16.0.chu-2bf.smi-20.pis-a.tra-1a07.igr-3)!", + result: { + word: "igrać", + correct: 14, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "19.02.2025", + }, + }, + { + date: "19.02.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0icnlmLyImMtEmcn5iZi1icnVnL2QTZtA3c35CMuITMuAjL1EjLwUTL3gTJ0MUJhJ3ZphSI", + value: "!(igrać-50.15.0.12.0.wsp-e46.ugr-bf.gra-2b2.igr-3)!", + result: { + word: "igrać", + correct: 15, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "19.02.2025", + }, + }, + { + date: "19.02.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTLydWaugTMtcWat5iMtMXYn5CNiVTLw9GcucTZt8me65CMuUTMuEjL1EjLwUTL3gTJ0MUJhJ3ZphSI", + value: "!(igrać-50.15.1.15.0.zzo-e7.pop-5b4.gas-2.mig-18.igr-3)!", + result: { + word: "igrać", + correct: 15, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "19.02.2025", + }, + }, + { + date: "19.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0icnlmLw0icpdmL0QmMtw2b65SM4ETLhlGcuUWNtE2a15CMuQTMuMjLzEjLwUTL3gTJ0MUJhJ3ZphSI", + value: "!(igrać-50.13.3.14.0.uka-5e.pia-181.zol-2d4.gir-0.igr-3)!", + result: { + word: "igrać", + correct: 13, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "19.02.2025", + }, + }, + { + date: "19.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTLydWauIjYy0SYydmLiRWLph2YuMGOy0SatVnL0ITLyFmauITLylHdukjYz0SawNnLkNWLil2dugTOt8me65SMuUjMuAjLyMjLwUTL3gTJ0MUJhJ3ZphSI", + value: + "!(igrać-50.32.0.25.1.zzo-98.wib-cd.spi-3b9.tyr-2.jar-24.umi-28c.chi-db.gra-2b2.igr-3)!", + result: { + word: "igrać", + correct: 32, + position: 0, + incorrect: 25, + knownIncorrect: 1, + totalWords: 9, + totalLetters: 57, + date: "19.02.2025", + }, + }, + { + date: "19.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMtI3Zp5SO1ITLnlWbuMTO4EWMtoncw5CMuMTMuEjLyEjLwUTL3gTJ0MUJhJ3ZphSI", + value: "!(igrać-50.12.1.13.0.prz-1a893.mig-259.igr-3)!", + result: { + word: "igrać", + correct: 12, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "19.02.2025", + }, + }, + { + date: "19.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTLydWauITLyd2duIjYy0SYydmL3ETMtknck5SMyITLq9GcugTOt8me65CMuYTMuEjL5EjLwUTL3gTJ0MUJhJ3ZphSI", + value: "!(igrać-50.19.1.16.0.zzo-98.poj-221.dry-117.gra-2b2.wgr-2.igr-3)!", + result: { + word: "igrać", + correct: 19, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "19.02.2025", + }, + }, + { + date: "19.02.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTLydWauIGZtkGaj5yY4ITLp1WducjYy0SYyRnL2QTZtA3c35CMuAjMuEjL4EjLwUTL3gTJ0MUJhJ3ZphSI", + value: "!(igrać-50.18.1.20.0.wsp-e46.tra-2b7.umi-28c.chi-db.igr-3)!", + result: { + word: "igrać", + correct: 18, + position: 1, + incorrect: 20, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "19.02.2025", + }, + }, + { + date: "19.02.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMtI3Zp5CZy0SdpNnLiNzYtUWa35CMuITMuAjLyEjLwUTL3gTJ0MUJhJ3ZphSI", + value: "!(igrać-50.12.0.12.0.wie-c3b.siu-2d.igr-3)!", + result: { + word: "igrać", + correct: 12, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "19.02.2025", + }, + }, + { + date: "19.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTLydWauIjYy0SYydmL0EmMtIWZ65CZxMTLhJ3auADNtU3c35yYhJGNtQ2bw5CMugTMuAjL4EjLwUTL3gTJ0MUJhJ3ZphSI", + value: + "!(igrać-50.18.0.18.0.pod-4bac.wsu-40.kra-31d.zeb-2a4.gra-2b2.igr-3)!", + result: { + word: "igrać", + correct: 18, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "19.02.2025", + }, + }, + { + date: "19.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMtI3Zp5CO4ITLllmYuMWL3l2augDM30Cbp1mLw4COuAjL0EjLwUTL3gTJ0MUJhJ3ZphSI", + value: "!(igrać-50.14.0.8.0.mil-708.kiw-c.bie-288.igr-3)!", + result: { + word: "igrać", + correct: 14, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "19.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-poszlo-mi-dobrze-06-02-2025-flag-pl-diffle-difflepl-grywebowe-28-liter-w-4-s" +] = [ + { + date: "06.02.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIGZx0yZvJnLkVDNtI3bi5CZiNTL0VGcuAzM00SYp1mLw4iMx4iMuQTMuczMtE2a3NjQlMzQlc2byhSI", + value: "!(rogówka-37.14.2.12.0.mia-430.pet-3bd.bor-45d.rog-1db)!", + result: { + word: "rogówka", + correct: 14, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "06.02.2025", + }, + }, + { + date: "06.02.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIGZx0yZvJnLhNjNtQ3cv5iY0QWLlJ3aucTYz0ichdmLhFDM50ieyBnLw4SOx4yMuAjMuczMtE2a3NjQlMzQlc2byhSI", + value: "!(rogówka-37.20.3.19.0.prz-901a.gar-3a7.kre-d4b.ost-63a.rog-1db)!", + result: { + word: "rogówka", + correct: 20, + position: 3, + incorrect: 19, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "06.02.2025", + }, + }, + { + date: "06.02.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIGZx0yZuMjM2gTL65yN1QTL39mcuAjL24SMuUTMuczMtE2a3NjQlMzQlc2byhSI", + value: "!(rogówka-37.15.1.6.0.row-457.z-8623.g-1db)!", + result: { + word: "rogówka", + correct: 15, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "06.02.2025", + }, + }, + { + date: "06.02.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYkFTLn9mcukzY3ETLyFGcuADOy0yb3RmL1MjMto2bi5CO50yb6pnLw4SMx4iMuAjMuczMtE2a3NjQlMzQlc2byhSI", + value: "!(rogówka-37.20.2.11.0.zzo-98.boj-235.dwo-280.par-17c9.rog-1db)!", + result: { + word: "rogówka", + correct: 20, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "06.02.2025", + }, + }, + { + date: "06.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYkFTLn9mcuIDMy0icn9mL5Y2YtUmc65CMtU3bm5CMl1ic5NmL5M2Nx0ichBnL1QmNx0SZp1mLw4yNx4SMukjMuczMtE2a3NjQlMzQlc2byhSI", + value: + "!(rogówka-37.29.1.17.0.mie-16d5.par-17c9.cyr-e0.fou-0.zre-cf9.ogr-202.rog-1db)!", + result: { + word: "rogówka", + correct: 29, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 47, + date: "06.02.2025", + }, + }, + { + date: "06.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIGZx0yZvJnLkVDNtI3bi5iZl1yb6pnLw4CMx4SMuQTMuczMtE2a3NjQlMzQlc2byhSI", + value: "!(rogówka-37.14.1.10.0.zzo-ef.bor-45d.rog-1db)!", + result: { + word: "rogówka", + correct: 14, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "06.02.2025", + }, + }, + { + date: "06.02.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIGZx0yZuYTYx0ycv5CMk1ia55yYwITLtFmcuEDMl1ybytmLmBTMtI3bj5yN00yb6pXZp5mLw4yNx4SMuQzMuczMtE2a3NjQlMzQlc2byhSI", + value: + "!(rogówka-37.34.1.17.0.niezzo-47.cor-10f.kro-e01.ram-20c.yj-d0.os-1a6.g-1db)!", + result: { + word: "rogówka", + correct: 34, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 52, + date: "06.02.2025", + }, + }, + { + date: "06.02.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIGZx0yZvJnLwgTLm92ZuQDOy0yavxmL3YTMtc3bz5iN0QWMtc3bw5SOxQTLs9meuYmYy0SdoNmLw4COx4yMuUjMuczMtE2a3NjQlMzQlc2byhSI", + value: + "!(rogówka-37.25.3.18.0.chu-2bf.zol-419.pow-1d46.sow-167.lok-284.gof-80.rog-1db)!", + result: { + word: "rogówka", + correct: 25, + position: 3, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 46, + date: "06.02.2025", + }, + }, + { + date: "06.02.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiRWMtc2by5yYihTLvJ3aukTZxETLhJHcuEWO00SdsNnLyMzMx0yc5dnLw4yMx4SMuUTMuczMtE2a3NjQlMzQlc2byhSI", + value: "!(rogówka-37.15.1.13.0.wys-1332.slu-49a.pra-11e9.kro-8bc.rog-1db)!", + result: { + word: "rogówka", + correct: 15, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "06.02.2025", + }, + }, + { + date: "06.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIGZx0yZvJnL5QjMto2b35iYwcDMx0iev5yYjlTLrVmLiZTOtQWYy5yM5gTYx0ieyBnLw4iMy4yMuAjMuczMtE2a3NjQlMzQlc2byhSI", + value: + "!(rogówka-37.20.3.22.0.prz-1a893.rad-96b.ek-9cc.oz-1070b.woj-249.rog-1db)!", + result: { + word: "rogówka", + correct: 20, + position: 3, + incorrect: 22, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 45, + date: "06.02.2025", + }, + }, + { + date: "06.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiRWMtcmL2EWMtMnLlFjMtw2by5SY3gTLrFWbuYTOt42b65CZxQTL0VGcuYWO00ybspnLw4yMx4CMuMjMuczMtE2a3NjQlMzQlc2byhSI", + value: + "!(rogówka-37.23.0.13.0.zlo-49f.pet-41d.zon-96.mak-87a.rol-21e.s-1a6.g-1db)!", + result: { + word: "rogówka", + correct: 23, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 36, + date: "06.02.2025", + }, + }, + { + date: "06.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYkFTLn9mcuYDM0ETLhR3cuEzYz0yah1mLhljNtQ2b35yYlJmMts2bw5CO50yb6pnLx4SNx4SMuMjMuczMtE2a3NjQlMzQlc2byhSI", + value: + "!(rogówka-37.23.1.15.1.zzo-98.pok-2bec.wod-69a.mak-3c1.sta-1406.rog-1db)!", + result: { + word: "rogówka", + correct: 23, + position: 1, + incorrect: 15, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 39, + date: "06.02.2025", + }, + }, + { + date: "06.02.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIGZx0yZvJnLiNDNt8mck5CZ1QTLy9mYuMzYjJTLvJHcuYTYi1SZp1mLw4yNx4yMuYjMuczMtE2a3NjQlMzQlc2byhSI", + value: "!(rogówka-37.26.3.17.0.mie-ba6.pro-2cc3.bor-45d.dro-43b.rog-1db)!", + result: { + word: "rogówka", + correct: 26, + position: 3, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 46, + date: "06.02.2025", + }, + }, + { + date: "06.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYkFTLn9mcuYmM00yaz9mLllTMts2by5CO5QTLvJXdukTZy0iYlpnLjFmY00CZvBnLw4COx4SMukTMuczMtE2a3NjQlMzQlc2byhSI", + value: + "!(rogówka-37.19.1.18.0.pod-4bac.zeb-2e9.uro-498.rok-19e.osk-42f.rog-1db)!", + result: { + word: "rogówka", + correct: 19, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "06.02.2025", + }, + }, + { + date: "06.02.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiRWMtc2by5yMjRTLoN2MuMWLjlHduITLrVGbuYDNl1CczdnLw4yNx4iMuQTMuczMtE2a3NjQlMzQlc2byhSI", + value: "!(rogówka-37.14.2.17.0.wsp-e46.lek-2.tyc-c.3ch-4c3.rog-1db)!", + result: { + word: "rogówka", + correct: 14, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "06.02.2025", + }, + }, + { + date: "06.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiRWMtc2by5yYxETLr92cuEjNhFTLs9GcuMzNz0CbvpnLw4yMx4SMuAjMuczMtE2a3NjQlMzQlc2byhSI", + value: "!(rogówka-37.20.1.13.0.zol-373.pol-1a61.sok-11c.rog-1db)!", + result: { + word: "rogówka", + correct: 20, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "06.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-za-latwe-nie-za-trudne-17-01-2025-diffle-difflepl-grywebowe-33-litery-w-4-sl" +] = [ + { + date: "17.01.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNhFjLjFmMuUTMx0icrNnLyAjZy0ibvtmLw4SOuMjLxIjL3ETLh5mahJ3azhSI", + value: "!(skrajna-17.21.3.9.0.kon-2f02.skr-115.2ac.1a6)!", + result: { + word: "skrajna", + correct: 21, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "17.01.2025", + }, + }, + { + date: "17.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNhFTLyt2cuQWOy0SdoNmLkVTNtEmcr5iMxQGOto3by5CMuITMuAjL1EjL3ETLh5mahJ3azhSI", + value: "!(skrajna-17.15.0.12.0.roz-8d12.kra-55d.chu-29d.skr-1a6)!", + result: { + word: "skrajna", + correct: 15, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "17.01.2025", + }, + }, + { + date: "17.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTYx0icr5yY40yah5iZyUTL5RnLmV2MtIHcz5CMuETMuEjLyIjL3ETLh5mahJ3azhSI", + value: "!(skrajna-17.22.1.11.0.spr-3ef.ty-52f.ak-8c.kr-1a6)!", + result: { + word: "skrajna", + correct: 22, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "17.01.2025", + }, + }, + { + date: "17.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTYx0icr5yY40yahNnLjZmYtIXZw5CMuITMuEjL3EjL3ETLh5mahJ3azhSI", + value: "!(skrajna-17.17.1.12.0.per-bfc.sak-8c.kr-1a6)!", + result: { + word: "skrajna", + correct: 17, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "17.01.2025", + }, + }, + { + date: "17.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNhFTLyt2cuQGMz0SYytmLw4iNuAjLzEjL3ETLh5mahJ3azhSI", + value: "!(skrajna-17.13.0.6.0.kra-30d.skr-1a6)!", + result: { + word: "skrajna", + correct: 13, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "17.01.2025", + }, + }, + { + date: "17.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNhFTLytmL0EGOx0ic0NnL4MmMtUHaj5CMuETMuAjLzEjL3ETLh5mahJ3azhSI", + value: "!(skrajna-17.13.0.11.0.chu-2c8.str-18a4.kr-1a6)!", + result: { + word: "skrajna", + correct: 13, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "17.01.2025", + }, + }, + { + date: "17.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2EWMtInL5QmYtE2az5iYklTLy92auIjY3EWMtoncw5CMuMTMuAjLwIjL3ETLh5mahJ3azhSI", + value: "!(skrajna-17.20.0.13.0.prz-1a7b2.kor-9db.ska-bd9.r-1a6)!", + result: { + word: "skrajna", + correct: 20, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "17.01.2025", + }, + }, + { + date: "17.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNhFjLkNmMtI3az5SY1UTLhJ3auYWMz0yYhJnLwYWMtQ2bt5CMuETMuEjLwIjL3ETLh5mahJ3azhSI", + value: "!(skrajna-17.20.1.11.0.mod-1f0.rac-31f.kra-55a.skr-2cd.1a6)!", + result: { + word: "skrajna", + correct: 20, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "17.01.2025", + }, + }, + { + date: "17.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNhFTLy5CN00SduImZ20SYrNnLiNmYtUWat5CMuMTMuAjL5EjL3ETLh5mahJ3azhSI", + value: "!(skrajna-17.19.0.13.0.mie-bcb.ska-6fb.u-44.r-1a6)!", + result: { + word: "skrajna", + correct: 19, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "17.01.2025", + }, + }, + { + date: "17.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTYx0icrNnLklDNtEmci5yYyMTLhJHduYmNy0ibhJnL0YWMtQWe35CMuETMuEjLwIjL3ETLh5mahJ3azhSI", + value: "!(skrajna-17.20.1.11.0.wyd-1f4.ran-26f.tra-32c.bra-49d.skr-1a6)!", + result: { + word: "skrajna", + correct: 20, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "17.01.2025", + }, + }, + { + date: "17.01.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNhFTLytmLjhTLrF2cugjMtMWdt5SZ2UTL5RnLyQjMtIHcz5CNz0iYhJnL5gTYtEmcn5SMukTMuEjL4IjL3ETLh5mahJ3azhSI", + value: + "!(skrajna-17.28.1.19.1.gra-a89.rab-34.spr-242.ty-56e.muc-28.sak-8c.kr-1a6)!", + result: { + word: "skrajna", + correct: 28, + position: 1, + incorrect: 19, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 48, + date: "17.01.2025", + }, + }, + { + date: "17.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2EWMtInLi1ydrNnLkFWM10ievBnLw4COuEjL1EjL3ETLh5mahJ3azhSI", + value: "!(skrajna-17.15.1.8.0.poz-51ad.skw-b.r-1a6)!", + result: { + word: "skrajna", + correct: 15, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "17.01.2025", + }, + }, + { + date: "17.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2EWMuEDZx0icrNnLhVTNtEmcr5iZx0ya1VmLw4iNuEjLwIjL3ETLh5mahJ3azhSI", + value: "!(skrajna-17.20.1.6.0.euk-1f.kra-55a.skr-1d1.1a6)!", + result: { + word: "skrajna", + correct: 20, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "17.01.2025", + }, + }, + { + date: "17.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2EWMtInLjZ2MtEmLhJTL1t2cuMTY10ychtmL1ITMtcmbh5SOzgjMtAXe35CMucTMuEjL2IjL3ETLh5mahJ3azhSI", + value: + "!(skrajna-17.26.1.17.0.wyp-2839.ang-125.kas-5a3.sku-2a.a-3fc.r-1a6)!", + result: { + word: "skrajna", + correct: 26, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 44, + date: "17.01.2025", + }, + }, + { + date: "17.01.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTYx4SM4IWLytmL1QTLylnLzUTLyp3cuUWOtM3bn5CMuUTMuIjLyIjL3ETLh5mahJ3azhSI", + value: "!(skrajna-17.22.2.15.0.gos-9e.szr-53.yr-45.kr-b81.1a6)!", + result: { + word: "skrajna", + correct: 22, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "17.01.2025", + }, + }, + { + date: "17.01.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2EWMtI3az5SY1UTLhJ3auMzMz0SZpdnLw4COuAjLzEjL3ETLh5mahJ3azhSI", + value: "!(skrajna-17.13.0.8.0.wie-333.kra-55a.skr-1a6)!", + result: { + word: "skrajna", + correct: 13, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "17.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nieoczywiste-bym-powiedzial-14-01-2025-diffle-difflepl-grywebowe-18-liter-w-3-sl" +] = [ + { + date: "14.01.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY2YWMtUWa35SYkJWMtUWaw5yNzQTLhlWbuAjLxEjLw4yNuQTMtMWO5UCNDVSa3hSI", + value: "!(więc-14.7.0.11.0.mia-437.pie-1bda.wie-1f6c)!", + result: { + word: "więc", + correct: 7, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "14.01.2025", + }, + }, + { + date: "14.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY2YWMtUWauMTNtg2Y35SNzgTLjp3cuAjL0EjLw4yNuQTMtMWO5UCNDVSa3hSI", + value: "!(więc-14.7.0.14.0.szc-835.wch-53.ie-1f6c)!", + result: { + word: "więc", + correct: 7, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "14.01.2025", + }, + }, + { + date: "14.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjZjZx0SZuQTMtomL0kzMtMXauQ2Y00ybydnLw4yMx4CMuETMuQTMtMWO5UCNDVSa3hSI", + value: "!(więc-14.11.0.13.0.wro-4cd.is-394.j-14.e-1f6c)!", + result: { + word: "więc", + correct: 11, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "14.01.2025", + }, + }, + { + date: "14.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY2YWMtUWauITZz0Saj5yMhJTMtwWe35CMugjLx4SOuQTMtMWO5UCNDVSa3hSI", + value: "!(więc-14.9.1.8.0.wyl-12a3.ci-3e2.ie-1f6c)!", + result: { + word: "więc", + correct: 9, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "14.01.2025", + }, + }, + { + date: "14.01.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY2YWMucTOmFjL1YGMy0SZp5iZ1kTLzl3duMjZtI2by5iZxYTMtUWat5CO50yb6pnLw4CMy4CMugTMuQTMtMWO5UCNDVSa3hSI", + value: + "!(więc-14.18.0.20.0.zzo-98.mie-161f.rob-f3.wys-95f.ie-20f5.1f97.1f6c)!", + result: { + word: "więc", + correct: 18, + position: 0, + incorrect: 20, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 38, + date: "14.01.2025", + }, + }, + { + date: "14.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjZjZx0SZpdnL3MTMtcXe65CNmNTLllWbuAjLzEjLx4SOuQTMtMWO5UCNDVSa3hSI", + value: "!(więc-14.9.1.13.0.mie-3f4.zyw-137.wie-1f6c)!", + result: { + word: "więc", + correct: 9, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "14.01.2025", + }, + }, + { + date: "14.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmNmFTLll2duYTZt0Wek5yM4ETLwNXYuAjL1EjLw4yNuQTMtMWO5UCNDVSa3hSI", + value: "!(więc-14.7.0.15.0.asp-183.dym-e6.wie-1f6c)!", + result: { + word: "więc", + correct: 7, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "14.01.2025", + }, + }, + { + date: "14.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjZjZx0SZpdnLiBjMtk2cr5CMugjLw4yNuQTMtMWO5UCNDVSa3hSI", + value: "!(więc-14.7.0.8.0.ksi-20b.wie-1f6c)!", + result: { + word: "więc", + correct: 7, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "14.01.2025", + }, + }, + { + date: "14.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjZjZx4SNmBjMtUWa35iYklTLp5mLiFGNt8Gb65CMukjLx4COuQTMtMWO5UCNDVSa3hSI", + value: "!(więc-14.8.1.9.0.zlo-4ab.ni-9db.wie-20f5.1f6c)!", + result: { + word: "więc", + correct: 8, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 18, + date: "14.01.2025", + }, + }, + { + date: "14.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmNmFTLll2duQWYtwWZq5yMi1CajNjLmV2Mx0SZp1mLhRmYx0SZpBnL4M2Mx0SY6NnLw4CMy4iMuETMuQTMtMWO5UCNDVSa3hSI", + value: + "!(więc-14.11.2.20.0.sza-13c8.pie-1bda.mie-13ef.3ch-b3.jel-ad.wie-1f6c)!", + result: { + word: "więc", + correct: 11, + position: 2, + incorrect: 20, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "14.01.2025", + }, + }, + { + date: "14.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY2YWMtUWaukDNy0iavdnLyI2NhFTL6JHcuAjL3EjLw4yNuQTMtMWO5UCNDVSa3hSI", + value: "!(więc-14.7.0.17.0.prz-1a7b2.woj-249.ie-1f6c)!", + result: { + word: "więc", + correct: 7, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "14.01.2025", + }, + }, + { + date: "14.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY2YWMtUWa35iYjJWLllWbuAjLxEjLx4iNuQTMtMWO5UCNDVSa3hSI", + value: "!(więc-14.6.1.11.0.mie-bcb.wie-1f6c)!", + result: { + word: "więc", + correct: 6, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "14.01.2025", + }, + }, + { + date: "14.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY2YWMtUWa35yN0gTLpN2cuUjZhRTLk9GcuAjLyEjLw4COuQTMtMWO5UCNDVSa3hSI", + value: "!(więc-14.8.0.12.0.pod-4af5.sci-847.wie-1f6c)!", + result: { + word: "więc", + correct: 8, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "14.01.2025", + }, + }, + { + date: "14.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmNmFjL3kjZx0SZp5SYjV2MtAXe35CO50yb6pnLw4CNx4SMuATMuQTMtMWO5UCNDVSa3hSI", + value: "!(więc-14.10.1.14.0.zzo-98.wyp-3eca.ie-1f97.1f6c)!", + result: { + word: "więc", + correct: 10, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "14.01.2025", + }, + }, + { + date: "14.01.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjZjZx0SZp5iM10yYl5SMzUWLwN3duAjLyEjLw4SOuQTMtMWO5UCNDVSa3hSI", + value: "!(więc-14.9.0.12.0.wsp-e31.ec-52.ie-1f6c)!", + result: { + word: "więc", + correct: 9, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "14.01.2025", + }, + }, + { + date: "14.01.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjZjZx0SZpdnL4ETNtIXaw5SMhFTLlpXduAjLzEjLx4iNuQTMtMWO5UCNDVSa3hSI", + value: "!(więc-14.6.1.13.0.uze-1a1.pir-518.wie-1f6c)!", + result: { + word: "więc", + correct: 6, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "14.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nietrudne-jesli-sie-zna-04-01-2025-flag-pl-diffle-difflepl-grywebowe-27-liter-w-" +] = [ + { + date: "04.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGZ50ichJmLkhTLlJXYuQWYz0ic0NnLw4SMx4SMuUTMuQTLh5WZ3JXYihSI", + value: "!(barwena-4.15.1.11.0.str-3ad.are-8d.bar-9da)!", + result: { + word: "barwena", + correct: 15, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "04.01.2025", + }, + }, + { + date: "04.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYkljL1MWOtIXYi5iZ1MTLyFWbukTYtUHbw5SMyMTLyF2ZuEWLyF2cuImMx0SZyFmLhVTOy0yahpnLw4SNx4SMuIzMuQTLh5WZ3JXYihSI", + value: + "!(barwena-4.32.1.15.0.zak-295a.are-12b.sar-a.gar-321.plu-a9.mar-35f.bar-9c5.9da)!", + result: { + word: "barwena", + correct: 32, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 48, + date: "04.01.2025", + }, + }, + { + date: "04.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYklTLyFmYuYDNy0CajNjL2gjYy0CZh5mL4MTMtI3Zh5CN50SdytmLw4SNx4SMukTMuQTLh5WZ3JXYihSI", + value: "!(barwena-4.19.1.15.0.kru-94.agr-138.nad-2b86.3ch-246.bar-9da)!", + result: { + word: "barwena", + correct: 19, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "04.01.2025", + }, + }, + { + date: "04.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGZ50ichJmLjRWLhdWYuATLtFGZuUWOtwGaj5SOhZTMtEmc05CMt4WZ35iYx0ydyVnLkJzNx0icrNnLw4SNx4yMucjMuQTLh5WZ3JXYihSI", + value: + "!(barwena-4.27.3.15.0.skr-172d.urw-1b.wen-0.tra-16a9.chl-9e.dam-0.aga-dc.bar-9da)!", + result: { + word: "barwena", + correct: 27, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 45, + date: "04.01.2025", + }, + }, + { + date: "04.01.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGZ50ichJmLyQjL3UzMtg2Yz4yY10yYvZmLiRWL3V3cuMGOy0SZyRmL3YTLyVmbukDOh1SYydmLw4SNx4iNuIjMuQTLh5WZ3JXYihSI", + value: + "!(barwena-4.22.6.15.0.gra-a89.ner-67.dre-28c.suw-db.foc-5c.3ch-357.42.bar-9da)!", + result: { + word: "barwena", + correct: 22, + position: 6, + incorrect: 15, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 43, + date: "04.01.2025", + }, + }, + { + date: "04.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYkljL0AjYtIXYi5iZlFTLsh2YuYWZz0icwNnLw4CMx4CNugTMuQTLh5WZ3JXYihSI", + value: "!(barwena-4.18.4.10.0.spr-3ef.chl-1ef.bar-b04.9da)!", + result: { + word: "barwena", + correct: 18, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "04.01.2025", + }, + }, + { + date: "04.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGZ50ichJmLkhTLl5SZtMnch5CNmFTLkl3duAjL14SMuAjMuQTLh5WZ3JXYihSI", + value: "!(barwena-4.20.1.5.0.wyd-1f4.ars-e.e-8d.bar-9da)!", + result: { + word: "barwena", + correct: 20, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "04.01.2025", + }, + }, + { + date: "04.01.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGZ54CNwIWLyFmYuU2YtEmY15iZ50ycvdmLw4iMx4CMuIjMuQTLh5WZ3JXYihSI", + value: "!(barwena-4.22.0.12.0.gos-9f.uba-ce.bar-b04.9da)!", + result: { + word: "barwena", + correct: 22, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "04.01.2025", + }, + }, + { + date: "04.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYklTLyFmYuUmNkFTLyFGcuEDOx0ichNnL2IDZtIXYt5iZx0ya1VmLx4CMx4iMuIjMuQTLh5WZ3JXYihSI", + value: "!(barwena-4.22.2.10.1.euk-1f.mar-d26.sar-181.par-1d6e.bar-9da)!", + result: { + word: "barwena", + correct: 22, + position: 2, + incorrect: 10, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 34, + date: "04.01.2025", + }, + }, + { + date: "04.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGZ54CNwImL2MWOtIXYi5SOzETLrJXYuAjL44CMuEjMuQTLh5WZ3JXYihSI", + value: "!(barwena-4.21.0.8.0.ark-139.bar-9c6.b04.9da)!", + result: { + word: "barwena", + correct: 21, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "04.01.2025", + }, + }, + { + date: "04.01.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhRWOuQDMi5iNjlTLyFmYuQmMjFTLj9GcuQGOy0SYyRmLw4yMx4SMuQjMuQTLh5WZ3JXYihSI", + value: "!(barwena-4.24.1.13.0.dra-28d.poc-1c2d.bar-9c6.b04.9da)!", + result: { + word: "barwena", + correct: 24, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "04.01.2025", + }, + }, + { + date: "04.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYklTLyFmL0kTL6VmYuEWNtIXYs5COmFTLhB3buAjL44yMuAjMuQTLh5WZ3JXYihSI", + value: "!(barwena-4.20.3.8.0.opa-1f8.lar-5a.bez-94.ar-9da)!", + result: { + word: "barwena", + correct: 20, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "04.01.2025", + }, + }, + { + date: "04.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYklTLyFmYugDNtg2Yz4SYz0SYoNmL3cTLtFmcuITMz0SZsFmLkFWM10ievBnLw4iMx4SNukTMuQTLh5WZ3JXYihSI", + value: + "!(barwena-4.19.5.12.0.poz-51ad.ale-312.ram-77.cha-3a.3ch-48.bar-9da)!", + result: { + word: "barwena", + correct: 19, + position: 5, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "04.01.2025", + }, + }, + { + date: "04.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGZ50ichJmL3UmNtEmcn5yYmFTLkVHcuATLuV2duI2Yi1SZp1mLw4iNx4iMuYTMuQTLh5WZ3JXYihSI", + value: "!(barwena-4.16.2.16.0.mie-bcb.wen-0.pud-1fc.gra-6e7.bar-9da)!", + result: { + word: "barwena", + correct: 16, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "04.01.2025", + }, + }, + { + date: "04.01.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhRWOtIXYi5yNlZTLhJ3ZuADMx0icldnLhFTNtIXaw5SO10ya6NnLw4yNx4yMukTMuQTLh5WZ3JXYihSI", + value: "!(barwena-4.19.3.17.0.szk-59.pir-51a.wer-100.gra-6e7.bar-9da)!", + result: { + word: "barwena", + correct: 19, + position: 3, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "04.01.2025", + }, + }, + { + date: "04.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhRWOtIXYuEzNx0yalJmLx0CZyFmL0QWMt4WZy5iMidTYx0ieyBnLw4CNx4CMuMjMuQTLh5WZ3JXYihSI", + value: "!(barwena-4.23.0.14.0.prz-1a7b2.ren-1d4.ard-1.bek-171.ar-9da)!", + result: { + word: "barwena", + correct: 23, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "04.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/no-kolejny-raz-bo-wiecej-literek-odkryje-kuzwa-mac-deg-deg-29-01-2025-diffle" +] = [ + { + date: "29.01.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN5UDNto3bw5CZkZjMtAXY65SO1YmMt42br5CMuYjLy4SOx4SOy0SZp5WYup3bwhSI", + value: "!(poznanie-29.19.2.6.0.kon-2f59.zap-26dd.poz-4594)!", + result: { + word: "poznanie", + correct: 19, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "29.01.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTO1QTL65iNmVTMtc2bw5yN1QTLvBXduAjLxEjLy4SMy4SOy0SZp5WYup3bwhSI", + value: "!(poznanie-29.21.2.11.0.upo-457.pog-15f6.z-4594)!", + result: { + word: "poznanie", + correct: 21, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 34, + }, + }, + { + date: "29.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTO1QTL69GcuEzNx0ib69mLmJmMtUHaj5CMuYjLx4yNx4SOy0SZp5WYup3bwhSI", + value: "!(poznanie-29.17.1.6.0.chu-2bf.ozn-171.poz-4594)!", + result: { + word: "poznanie", + correct: 17, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "29.01.2025", + }, + }, + { + date: "29.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTO1QjLyUGZ00ievBnLmVWNtIXYwVWau5CMuUjL04COx4SOy0SZp5WYup3bwhSI", + value: "!(poznanie-29.18.4.5.0.niepar-5ef.poz-4de2.4594)!", + result: { + word: "poznanie", + correct: 18, + position: 4, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "29.01.2025", + }, + }, + { + date: "29.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN5UDNto3bw5CZ0QTLtVGZuYzYtUXYw5SZ5YTLjp3cuAjLxEjLy4SNx4SOy0SZp5WYup3bwhSI", + value: "!(poznanie-29.15.2.11.0.szc-69e.pau-c6.dem-44d.poz-4594)!", + result: { + word: "poznanie", + correct: 15, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "29.01.2025", + }, + }, + { + date: "29.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN5UDNtonLwQzNx0CbvBnL1IjMtonck5CMucjLz4yNx4SOy0SZp5WYup3bwhSI", + value: "!(poznanie-29.17.3.7.0.drz-225.pol-1740.z-4594)!", + result: { + word: "poznanie", + correct: 17, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "29.01.2025", + }, + }, + { + date: "29.01.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN5UDNukjN0QTL65SYkJjMts2bw5CMucjLx4CMy4SOy0SZp5WYup3bwhSI", + value: "!(poznanie-29.20.1.7.0.pok-22da.z-4469.4594)!", + result: { + word: "poznanie", + correct: 20, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "29.01.2025", + }, + }, + { + date: "29.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0kTN00ievBnLkJDNtIHcz5CMuUjLw4SNx4SOy0SZp5WYup3bwhSI", + value: "!(poznanie-29.15.0.5.0.spr-42d.poz-4594)!", + result: { + word: "poznanie", + correct: 15, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "29.01.2025", + }, + }, + { + date: "29.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTO1QTL65yMwcDNtMnLlNGOy0icuUzY0ETLk5CZ4ETLt5CO4IWLs9GcuAjL0EjLx4yNz4SOy0SZp5WYup3bwhSI", + value: + "!(poznanie-29.37.1.14.0.pol-b88.m-18d.d-14c5.r-28ce.s-4703.z-4594)!", + result: { + word: "poznanie", + correct: 37, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 52, + date: "29.01.2025", + }, + }, + { + date: "29.01.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN5UDNto3bw5CZ00ib6VnL3kTNtMWY6VWau5CMuMjLz4yNx4SOy0SZp5WYup3bwhSI", + value: "!(poznanie-29.17.3.3.0.niezac-597.uzn-4d.poz-4594)!", + result: { + word: "poznanie", + correct: 17, + position: 3, + incorrect: 3, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "29.01.2025", + }, + }, + { + date: "29.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN5UDNto3buMTO4EWMtoncw5CMucjLy4iMx4SOy0SZp5WYup3bwhSI", + value: "!(poznanie-29.12.2.7.0.prz-1a893.oz-4594)!", + result: { + word: "poznanie", + correct: 12, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "29.01.2025", + }, + }, + { + date: "29.01.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN5UDNto3bw5iNwgTLpB3buUDMm1ibv1mL4EWLuFGZugDNy0ibhxmLjZTYtEmcn5CMukjLx4iMz4SOy0SZp5WYup3bwhSI", + value: + "!(poznanie-29.32.1.9.0.gra-a6c.lan-248.dan-a8.mon-f05.opi-806.poz-4594)!", + result: { + word: "poznanie", + correct: 32, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 42, + date: "29.01.2025", + }, + }, + { + date: "29.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0kTN00ievBnL2M2Nx0ychpnL0YWMtQWe35CMuYjLz4iNx4SOy0SZp5WYup3bwhSI", + value: "!(poznanie-29.16.3.6.0.wyd-1f4.zas-17c6.poz-4594)!", + result: { + word: "poznanie", + correct: 16, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "29.01.2025", + }, + }, + { + date: "29.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0kTN00ievBnLwIWMtoncn5iM10CZvRmLlVTLhtWduAjLyEjLz4SMy4SOy0SZp5WYup3bwhSI", + value: "!(poznanie-29.21.3.12.0.uka-5e.dod-52.grz-1b0.poz-4594)!", + result: { + word: "poznanie", + correct: 21, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "29.01.2025", + }, + }, + { + date: "29.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0kTN00ievBnL2EmYtUWat5CMugjLy4iMx4SOy0SZp5WYup3bwhSI", + value: "!(poznanie-29.12.2.8.0.mie-ba6.poz-4594)!", + result: { + word: "poznanie", + correct: 12, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "29.01.2025", + }, + }, + { + date: "29.01.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN5UDNtonL0IjZtc3bw5CMugjLx4yMx4SOy0SZp5WYup3bwhSI", + value: "!(poznanie-29.13.1.8.0.pow-f24.z-4594)!", + result: { + word: "poznanie", + correct: 13, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "29.01.2025", + }, + }, + { + date: "29.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN5UDNuYGM04iMlRGNtonL1MGNx0CZuQTMx0yZuATOx0CbvBnLmFTLrVXZuAjLyEjLz4yM04SOy0SZp5WYup3bwhSI", + value: + "!(poznanie-29.43.3.12.0.euk-1f.pol-190.g-114.d-14c5.z-4de2.40f.4594)!", + result: { + word: "poznanie", + correct: 43, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 58, + date: "29.01.2025", + }, + }, + { + date: "29.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0kTN04SYxITNto3bw5CMuMjLw4SNx4SOy0SZp5WYup3bwhSI", + value: "!(poznanie-29.15.0.3.0.poz-521a.4594)!", + result: { + word: "poznanie", + correct: 15, + position: 0, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "29.01.2025", + }, + }, + { + date: "29.01.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN5UDNto3buQ2N10icpBnL5UTLrp3cuAjLzEjLx4SNx4SOy0SZp5WYup3bwhSI", + value: "!(poznanie-29.15.1.13.0.szk-59.pir-57d.oz-4594)!", + result: { + word: "poznanie", + correct: 15, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "29.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/o-ci-uj-totalny-strzal-o-o-10-02-2025-diffle-difflepl-grywebowe-17-liter-w-2-slo" +] = [ + { + date: "10.02.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGZtc3ah5SO1YmMt42br5CMuUjLw4iMx4SM00SYsVmchd3ahhSI", + value: "!(akwarela-41.12.0.5.0.kon-2f59.akw-da)!", + result: { + word: "akwarela", + correct: 12, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "10.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGZtc3ah5CO20CbhdnL00SdrNnLlVjNtUmcr5SMjFTLyVGZuMjM3cTL69mcuAjLyEjLy4CMy4SM00SYsVmchd3ahhSI", + value: + "!(akwarela-41.20.2.12.0.roz-7723.der-1c1.kre-65e.sku-4.wal-68.akw-da)!", + result: { + word: "akwarela", + correct: 20, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "10.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGZtc3ah5SOyETL1JHcuYmZtQWYi5iNhJWLllWbuAjL0EjLz4iNx4SM00SYsVmchd3ahhSI", + value: "!(akwarela-41.16.3.14.0.mie-ba6.bad-ff.pru-129.akw-da)!", + result: { + word: "akwarela", + correct: 16, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "10.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhRWL3tWYuQ2N10icpBnL5UTLrp3cuAjLzEjLx4SNx4SM00SYsVmchd3ahhSI", + value: "!(akwarela-41.15.1.13.0.szk-59.pir-57d.akw-da)!", + result: { + word: "akwarela", + correct: 15, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "10.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYk1ydrFmLzkjZtIXYr5SN30SYyRmLlhzNt8mcw5CMukjLx4SOx4SM00SYsVmchd3ahhSI", + value: "!(akwarela-41.19.1.9.0.pro-78e.dra-75.kar-f93.akw-da)!", + result: { + word: "akwarela", + correct: 19, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "10.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYk1ydrFmLhZDOtE2dr5SYkJjMts2bw5CMugjLy4iNx4SM00SYsVmchd3ahhSI", + value: "!(akwarela-41.16.2.8.0.pok-22da.kwa-86a.akw-da)!", + result: { + word: "akwarela", + correct: 16, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "10.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYk1ydrFmLmVWMtwGaj5CZyQTLyB3cuAjLwEjLz4CNx4SM00SYsVmchd3ahhSI", + value: "!(akwarela-41.14.3.10.0.spr-42d.chl-1ef.akw-da)!", + result: { + word: "akwarela", + correct: 14, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "10.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGZtc3ah5yNm1ydhtmLhFDNtwWY35iZiJTL1h2YuAjLxEjLy4SOx4SM00SYsVmchd3ahhSI", + value: "!(akwarela-41.19.2.11.0.chu-2bf.wal-41a.kaw-f7.akw-da)!", + result: { + word: "akwarela", + correct: 19, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "10.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYk1ydrFmL2YTL3F2aukjZtsWds5CMuQjL14SNx4SM00SYsVmchd3ahhSI", + value: "!(akwarela-41.15.5.4.0.luk-f9.kaw-66.akw-da)!", + result: { + word: "akwarela", + correct: 15, + position: 5, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "10.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhRWL3tWYuUWNtE2a15CMucjLx4iMx4SM00SYsVmchd3ahhSI", + value: "!(akwarela-41.12.1.7.0.uka-5e.akw-da)!", + result: { + word: "akwarela", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "10.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhRmL4YmL5QmLmRWL3tWYuQzMy0SY3dmL0YWMtQWe35CMugjLx4COz4SM00SYsVmchd3ahhSI", + value: "!(akwarela-41.38.1.8.0.wyd-1f4.gwa-234.akw-df.d9.f8.da)!", + result: { + word: "akwarela", + correct: 38, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 47, + date: "10.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhRWL3tWYuUWZz0yah1mLyYGNtI3br5COiNTLyB3cllmbuAjL0EjLw4CMy4SM00SYsVmchd3ahhSI", + value: "!(akwarela-41.20.0.14.0.niespr-3b8.kor-4f2.mak-3ee.akw-da)!", + result: { + word: "akwarela", + correct: 20, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "10.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYk1ydrFmLlV2MtsWYt5iM20CblJnLzkDOhFTL6JHcuAjLxEjLy4SMy4SM00SYsVmchd3ahhSI", + value: "!(akwarela-41.21.2.11.0.prz-1a893.rel-62.mak-3ee.akw-da)!", + result: { + word: "akwarela", + correct: 21, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "10.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhRWL3tWYuUWZz0yah1mLjNzYtUWa35CMucjLy4yNx4SM00SYsVmchd3ahhSI", + value: "!(akwarela-41.17.2.7.0.wie-c3c.mak-3ee.akw-da)!", + result: { + word: "akwarela", + correct: 17, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "10.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYk1ydrFmLilDOx0SYyRnLjVTMtIXZ35iNzUTLtVGZuAjL2EjLz4iNx4SM00SYsVmchd3ahhSI", + value: "!(akwarela-41.16.3.16.0.dem-536.wer-15c.tra-189b.akw-da)!", + result: { + word: "akwarela", + correct: 16, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "10.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYk1ydrFmLlV2MtsWYt5COj1ichZmL2IWLlJ3auIGNlFTLt9GcuMWNx0SZytmLhVjNtMXZy5yY2EWLhJ3ZuEjL2EjLx4SMz4SM00SYsVmchd3ahhSI", + value: + "!(akwarela-41.31.1.16.1.gra-a6c.res-65a.kre-15c.pom-1e4b.kre-b6.far-c8.mak-3ee.akw-da)!", + result: { + word: "akwarela", + correct: 31, + position: 1, + incorrect: 16, + knownIncorrect: 1, + totalWords: 8, + totalLetters: 48, + date: "10.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhRWL3tWYuUWOtc3az5yM5QTLhd3auYWMtsWdl5CMugjLx4CMy4SM00SYsVmchd3ahhSI", + value: "!(akwarela-41.20.1.8.0.euk-1f.kwa-493.skw-9e.akw-da)!", + result: { + word: "akwarela", + correct: 20, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "10.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhRWL3tWYuEGM10ichtmLjNTMtsWdi5SZzEWLhJ3auEWMyUTL69GcuAjL1EjL04CNy4SM00SYsVmchd3ahhSI", + value: "!(akwarela-41.24.4.15.0.poz-521a.kra-a3e.buk-13c.kar-50a.akw-da)!", + result: { + word: "akwarela", + correct: 24, + position: 4, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 43, + date: "10.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhRWL3tWYuAzN00yalRmL10yalxmLkZWL5J3auEjL0EjL24SOx4SM00SYsVmchd3ahhSI", + value: "!(akwarela-41.19.6.14.1.kry-fd.lek-5.dek-470.akw-da)!", + result: { + word: "akwarela", + correct: 19, + position: 6, + incorrect: 14, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 39, + date: "10.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/o-co-do-w-tej-nowej-grze-z-jajkiem-diffle-difflepl-grywebowe" +] = []; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/o-cos-czego-nie-znalem-30-12-2024-flag-pl-diffle-difflepl-grywebowe-30-liter-w-4" +] = [ + { + date: "30.12.2024", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2YuU2Nz0icv5mL5MTNtI3bm5CMwUTLzVGZuAjL3EjLx4iMx4SN2MTLpJ3buhSI", + value: "!(nori-365.12.1.17.0.des-500.for-539.nor-37e.cc)!", + result: { + word: "nori", + correct: 12, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2YtI3bu5iNjFjL1YTLoN2MuEzMx0CbpZmLkNjLmZWLy9mbuQWO0ITLrl3duAjL4EjLy4CNx4SN2MTLpJ3buhSI", + value: + "!(nori-365.14.2.18.0.wyk-249d.nor-ff.3d.fil-131.3ch-65.1c6.nor-cc)!", + result: { + word: "nori", + correct: 14, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 34, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYj5iMz0icuATLp9mbuYTOt42Zv5yN1QTLvBXduAjL2EjLz4SNx4SN2MTLpJ3buhSI", + value: "!(nori-365.15.3.16.0.upo-457.ogn-96.noi-0.r-32.cc)!", + result: { + word: "nori", + correct: 15, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYj1icv5mLyAjZy0ibvtmLw4SNuIjL24SN2MTLpJ3buhSI", + value: "!(nori-365.6.2.5.0.kon-2f02.nor-cc)!", + result: { + word: "nori", + correct: 6, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYj1icv5mLkNmMy0yavBnLw4yNuEjL34SN2MTLpJ3buhSI", + value: "!(nori-365.7.1.7.0.pok-22cd.nor-cc)!", + result: { + word: "nori", + correct: 7, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYj5iNl1icv5mLx0ybudmL0ImNt8Gdz5COjJTL1h2YuAjLzEjLy4SNx4SN2MTLpJ3buhSI", + value: "!(nori-365.15.2.13.0.chu-2c8.sto-6b4.gno-1.nor-e6.cc)!", + result: { + word: "nori", + correct: 15, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYj5iNl1icv5mLmV2MtIHcz5CMukjLy4CMx4SN2MTLpJ3buhSI", + value: "!(nori-365.10.2.9.0.spr-3ef.nor-e6.cc)!", + result: { + word: "nori", + correct: 10, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYj1icv5mLiZWLpJ3bukDNy0iavdnLyI2NhFTL6JHcuAjL3EjLy4CMx4SN2MTLpJ3buhSI", + value: "!(nori-365.10.2.17.0.prz-1a7b2.woj-249.ori-fb.nor-cc)!", + result: { + word: "nori", + correct: 10, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2YtInLw0Sav5iZx0ic15COjJWLnFmbuAjL0EjLy4SMx4SN2MTLpJ3buhSI", + value: "!(nori-365.11.2.14.0.nag-bc8.ur-1f.oi-0.r-cc)!", + result: { + word: "nori", + correct: 11, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2YtI3bu5COxETL1JHduIzNtM2bu5iYxETLhp3cuEDOx0yduMGNtc2bu5iZhNTLq9GcuAjL4EjLx4iNx4SN2MTLpJ3buhSI", + value: + "!(nori-365.16.1.18.0.poj-3af.nog-4c.w-181.sza-11b.noc-72.tru-118.nor-cc)!", + result: { + word: "nori", + correct: 16, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 35, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYj5iNl1icv5mL0YWMtQWe35CMucjLx4CMx4SN2MTLpJ3buhSI", + value: "!(nori-365.10.1.7.0.wyd-1f4.nor-e6.cc)!", + result: { + word: "nori", + correct: 10, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjNWLy9mbuImZtkmcv5iMiZTLhd3auAjLyEjLy4CMx4SN2MTLpJ3buhSI", + value: "!(nori-365.10.2.12.0.kwa-6b2.ori-fb.nor-cc)!", + result: { + word: "nori", + correct: 10, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjNWLy9mbuI2Ni1icvBnLiNmYtUWat5CMuYTMuIjL54SN2MTLpJ3buhSI", + value: "!(nori-365.9.2.16.0.mie-bcb.por-b7b.nor-cc)!", + result: { + word: "nori", + correct: 9, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYj5iNl1icv5mL5gTYtEmcn5CMuQjLx4CMx4SN2MTLpJ3buhSI", + value: "!(nori-365.10.1.4.0.gra-a89.nor-e6.cc)!", + result: { + word: "nori", + correct: 10, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 15, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjNWLy9mbuI2N0ITLz9GcuMWNtQmcv5SZlJTLy9WbuAjLxEjLw4CMx4SN2MTLpJ3buhSI", + value: "!(nori-365.10.0.11.0.mor-2ee.ord-5c.pos-247b.nor-cc)!", + result: { + word: "nori", + correct: 10, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjNWLy9mbuY2Ytkmbv5iZx0ya1VmLw4COuQjL44SN2MTLpJ3buhSI", + value: "!(nori-365.8.4.8.0.euk-1f.oni-cf.nor-cc)!", + result: { + word: "nori", + correct: 8, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjNWLy5yY00yZv5mLkFWM10ievBnLw4COuEjL54SN2MTLpJ3buhSI", + value: "!(nori-365.9.1.8.0.poz-51ad.nog-4c.r-cc)!", + result: { + word: "nori", + correct: 9, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "30.12.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/oficjalnie-sie-udalo-choc-moglo-byc-lepiej-08-01-2025-diffle-difflepl-grywebowe-" +] = [ + { + date: "08.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN0ITLy9mZuYzYy0ybuFmL5UWMtonck5CMuETMuIjL4EjL40SeuxWYtJ3bmhSI", + value: "!(formalny-8.18.2.11.0.drz-1e9.ano-2c6.for-246)!", + result: { + word: "formalny", + correct: 18, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "08.01.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN0ITLy9mZugzNx0ibh1mLzkzNt8Gcz5CMuQTMuIjL1EjL40SeuxWYtJ3bmhSI", + value: "!(formalny-8.15.2.14.0.spo-793.man-178.for-246)!", + result: { + word: "formalny", + correct: 15, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + }, + }, + { + date: "08.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN0ITLy9mZuEjNz0icv5mLmhTMx0SbvtmLw4SOuIjL1EjL40SeuxWYtJ3bmhSI", + value: "!(formalny-8.15.2.9.0.kom-118f.nor-361.for-246)!", + result: { + word: "formalny", + correct: 15, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "08.01.2025", + }, + }, + { + date: "08.01.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYDNy0icvZmL3MWMtI3bu5yY40iby9mLyAjZy0ibvtmLw4yNuMjLwIjL40SeuxWYtJ3bmhSI", + value: "!(formalny-8.20.3.7.0.kon-2f02.orn-8c.nor-1c7.for-246)!", + result: { + word: "formalny", + correct: 20, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "08.01.2025", + }, + }, + { + date: "08.01.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYDNy0icvZmL3MWMtI3bu5CNl1icv1mL1QWLhJ3buITY40iYh5mLkNmMy0yavBnLw4COuUjLyMjL40SeuxWYtJ3bmhSI", + value: + "!(formalny-8.32.5.8.0.pok-22cd.nab-8a2.ora-d5.mor-e4.nor-1c7.for-246)!", + result: { + word: "formalny", + correct: 32, + position: 5, + incorrect: 8, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 45, + date: "08.01.2025", + }, + }, + { + date: "08.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN0ITLy9mZuQTZtI3bt5yN2ITLnJ3buYWZz0icwNnLw4SOuIjLyIjL40SeuxWYtJ3bmhSI", + value: "!(formalny-8.22.2.9.0.spr-3ef.org-267.mor-e4.for-246)!", + result: { + word: "formalny", + correct: 22, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "08.01.2025", + }, + }, + { + date: "08.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2QjMtI3bm5yNjFTLy9mbuQTZtI3bt5CNjRTLsFmYugzYy0SdoNmLw4SOuMjL2IjL40SeuxWYtJ3bmhSI", + value: "!(formalny-8.26.3.9.0.chu-2c8.bal-4c4.mor-e4.nor-1c7.for-246)!", + result: { + word: "formalny", + correct: 26, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "08.01.2025", + }, + }, + { + date: "08.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYDNy0icvZmL3MWMtI3bu5CNxQTLuFWbuEGZy0ycpBnLw4SOuEjL5EjL40SeuxWYtJ3bmhSI", + value: "!(formalny-8.19.1.9.0.pis-2da.man-414.nor-1c7.for-246)!", + result: { + word: "formalny", + correct: 19, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "08.01.2025", + }, + }, + { + date: "08.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN0ITLy9mZuczYx0icv5mLhlTLrF2cuIjY3EWMtoncw5CMuITMuIjLzIjL40SeuxWYtJ3bmhSI", + value: "!(formalny-8.23.2.12.0.prz-1a7b2.sak-9a.nor-1c7.for-246)!", + result: { + word: "formalny", + correct: 23, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "08.01.2025", + }, + }, + { + date: "08.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN0ITLy9mZuczYx0icv5mLjZTMt0WYy5SY30CZv1mLw4CNuUjLwIjL40SeuxWYtJ3bmhSI", + value: "!(formalny-8.20.5.4.0.mod-7a.ram-16c.nor-1c7.for-246)!", + result: { + word: "formalny", + correct: 20, + position: 5, + incorrect: 4, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "08.01.2025", + }, + }, + { + date: "08.01.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN0ITLy9mZuczYx0icv5mLygTLh5CMx0yay9mLyEjZtc3bw5SMuUTMuEjL2IjL40SeuxWYtJ3bmhSI", + value: "!(formalny-8.26.1.15.1.pow-f12.ork-10.a-82.nor-1c7.for-246)!", + result: { + word: "formalny", + correct: 26, + position: 1, + incorrect: 15, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 42, + date: "08.01.2025", + }, + }, + { + date: "08.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2QjMtI3bm5CNl1icv1mLiNGOy0icvBnLmZjMt4WYy5iZx0ya1VmLw4yNuQjL0IjL40SeuxWYtJ3bmhSI", + value: "!(formalny-8.24.4.7.0.euk-1f.ran-26f.por-28cb.mor-e4.for-246)!", + result: { + word: "formalny", + correct: 24, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "08.01.2025", + }, + }, + { + date: "08.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN0ITLy9mZuczYx0icv5mLiNmYtUWat5CMuATMuEjL5EjL40SeuxWYtJ3bmhSI", + value: "!(formalny-8.19.1.10.0.mie-bcb.nor-1c7.for-246)!", + result: { + word: "formalny", + correct: 19, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "08.01.2025", + }, + }, + { + date: "08.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYDNy0icvZmL3MWMtI3bu5CNl1icv1mLkFWM10ievBnLw4yNuIjL0IjL40SeuxWYtJ3bmhSI", + value: "!(formalny-8.24.2.7.0.poz-51ad.mor-e4.nor-1c7.for-246)!", + result: { + word: "formalny", + correct: 24, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "08.01.2025", + }, + }, + { + date: "08.01.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2QjMtI3bm5yNjFTLy9mbuQTZtI3bt5SZ0MTLvlGcukTNtsmez5CMuUTMuMjL2IjL40SeuxWYtJ3bmhSI", + value: "!(formalny-8.26.3.15.0.szk-59.pio-34e.mor-e4.nor-1c7.for-246)!", + result: { + word: "formalny", + correct: 26, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 44, + date: "08.01.2025", + }, + }, + { + date: "08.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2QjMtI3bm5CM10SYy9mLiZjMt4WYy5SZzMTL5JnYuQjZx0CZ5dnLw4COuMjLzIjL40SeuxWYtJ3bmhSI", + value: "!(formalny-8.23.3.8.0.wyd-1f4.bry-33e.ran-26b.ora-50.for-246)!", + result: { + word: "formalny", + correct: 23, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "08.01.2025", + }, + }, + { + date: "08.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN0ITLy9mZuEmNx0Sam9mLw4SNuEjLyEjL40SeuxWYtJ3bmhSI", + value: "!(formalny-8.12.1.5.0.ofi-16a.for-246)!", + result: { + word: "formalny", + correct: 12, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "08.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/piekna-sprawa-to-tajne-slowo-tag-sie-sam-wpisuje-do-wyniku-i-juz-nie-zapomne-dif" +] = []; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/pierwszy-kurna-haslo-mam-nadzieje-ze-bedzie-pasowac-do-2025-01-01-2025-flag-pl-d" +] = [ + { + date: "01.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMyATMtImL2UjMx0yd5dnLyczNt8mcn5SYzY2Mx0ieyBnLw4SNx4CNuUTMuETL55mcvJWe3hSI", + value: "!(wyborny-1.15.4.15.0.prz-13f3a.gro-772.wyw-1256.b-1020)!", + result: { + word: "wyborny", + correct: 15, + position: 4, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "01.01.2025", + }, + }, + { + date: "01.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMyATMtImL1ITZtcWe35SZzkTL39mbuI2Yi1SZp1mLw4yMx4yMuYTMuETL55mcvJWe3hSI", + value: "!(wyborny-1.16.3.13.0.mie-bcb.now-93e.wyg-e25.b-1020)!", + result: { + word: "wyborny", + correct: 16, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "01.01.2025", + }, + }, + { + date: "01.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMyATMtIWe35CN0gTLy9WbuMDN2gTLk9GcuAjL14iMuMTMuETL55mcvJWe3hSI", + value: "!(wyborny-1.13.2.5.0.pod-8643.mor-844.wyb-1020)!", + result: { + word: "wyborny", + correct: 13, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "01.01.2025", + }, + }, + { + date: "01.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjMwETLilnLzUWMt8mc35iZlNTLyB3cuAjL44iMuQTMuETL55mcvJWe3hSI", + value: "!(wyborny-1.14.2.8.0.spr-3ef.wro-1e3.yb-1020)!", + result: { + word: "wyborny", + correct: 14, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "01.01.2025", + }, + }, + { + date: "01.01.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMyATMtIWe35iYhJTLy9mYuATM20icv1mLlBjMt8Gcv5yMyATMtIHdz5SO4EWLhJ3ZuAjL54SMuUjMuETL55mcvJWe3hSI", + value: + "!(wyborny-1.25.1.9.0.gra-a89.str-1023.opo-20e.mor-610.bor-2ab.wyb-1020)!", + result: { + word: "wyborny", + correct: 25, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "01.01.2025", + }, + }, + { + date: "01.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjMwETLi5yN3kTLylnL1gzMtw2b35yMwETLj9WbuQzYy0ibvRnLkFWM10ievBnLw4iMx4iMuQjMuETL55mcvJWe3hSI", + value: + "!(wyborny-1.24.2.12.0.poz-51ad.ton-2c4.moc-103.wol-385.yr-977.b-1020)!", + result: { + word: "wyborny", + correct: 24, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "01.01.2025", + }, + }, + { + date: "01.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjMwETLilnLlRWMtI3b35CNhFTLhdHduAjL04SMuQTMuETL55mcvJWe3hSI", + value: "!(wyborny-1.14.1.4.0.twa-1a4.wor-1de.yb-1020)!", + result: { + word: "wyborny", + correct: 14, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "01.01.2025", + }, + }, + { + date: "01.01.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwIDMx0iY5dnL0IWNtUmey5iZ50ycvdmLw4yMx4iMuITMuETL55mcvJWe3hSI", + value: "!(wyborny-1.12.2.13.0.gos-9f.rze-5b4.wyb-1020)!", + result: { + word: "wyborny", + correct: 12, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "01.01.2025", + }, + }, + { + date: "01.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMyATMtIWe35yMzETLvdHZuEzNx0iby9mL5gjYtI3bw5iZx0ya1VmLw4CMx4SMuIjMuETL55mcvJWe3hSI", + value: "!(wyborny-1.22.1.10.0.euk-1f.por-b89.orn-171.dwo-133.wyb-1020)!", + result: { + word: "wyborny", + correct: 22, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "01.01.2025", + }, + }, + { + date: "01.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwIDMx0iY5dnLzMTMt82dk5SM3ETLuJ3bukjN00CajNjLzcTOt8Gaj5COmJTLvp3cuczYx0icv5mLw4SNx4CMuYjMuETL55mcvJWe3hSI", + value: + "!(wyborny-1.26.0.15.0.nor-1c7.szo-2f8.cho-973.3ch-469.orn-171.dwo-133.wyb-1020)!", + result: { + word: "wyborny", + correct: 26, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "01.01.2025", + }, + }, + { + date: "01.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwIDMx0iY5dnLyI2NhFTL6JHcuAjLwEjLx4SOuETL55mcvJWe3hSI", + value: "!(wyborny-1.9.1.10.0.prz-1a7b2.wyb-1020)!", + result: { + word: "wyborny", + correct: 9, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "01.01.2025", + }, + }, + { + date: "01.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMyATMtImL3cTOtIXe35yNyETLqFmZuAjL54SMuQTMuETL55mcvJWe3hSI", + value: "!(wyborny-1.14.1.9.0.faj-127.wyr-977.b-1020)!", + result: { + word: "wyborny", + correct: 14, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "01.01.2025", + }, + }, + { + date: "01.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjMwETLi5yNihjMtAXe35SY3MTL5J3ZuImY00iblRmLw4SNx4iMukTMuETL55mcvJWe3hSI", + value: "!(wyborny-1.19.2.15.0.den-4bb.gry-37a.wyp-28b7.b-1020)!", + result: { + word: "wyborny", + correct: 19, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "01.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/podstepne-ale-poszlo-niezle-28-01-2025-diffle-difflepl-grywebowe-23-litery-w-3-s" +] = [ + { + date: "28.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiBjMtk3ch5iN40ib5NnL5YWOtM3br5CMuYjL04yMx4COy0CduVGdzl3chhSI", + value: "!(asystent-28.13.4.6.0.kos-9f9.syn-86.asy-20b)!", + result: { + word: "asystent", + correct: 13, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "28.01.2025", + }, + }, + { + date: "28.01.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYwITL5NXYuEzN00SZ0NnL0AzNtMXYw5SO1YmMt42br5CMugjLy4COx4COy0CduVGdzl3chhSI", + value: "!(asystent-28.18.2.8.0.kon-2f59.pas-704.ste-471.asy-20b)!", + result: { + word: "asystent", + correct: 18, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "28.01.2025", + }, + }, + { + date: "28.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiBjMtk3ch5SM3QTLlR3cuM2Mt0WZ05CMmZTL05WauAjLxEjL04SOx4COy0CduVGdzl3chhSI", + value: "!(asystent-28.19.4.11.0.int-6f0.tem-3c.ste-471.asy-20b)!", + result: { + word: "asystent", + correct: 19, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "28.01.2025", + }, + }, + { + date: "28.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiBjMtk3cuYWMy0SZw5iZhFTL0tmL4ADNtEmbh5iZiJTL1h2YuAjLzEjL14yNx4COy0CduVGdzl3chhSI", + value: "!(asystent-28.17.5.13.0.chu-2bf.ana-408.kt-1af.pe-21f.sy-20b)!", + result: { + word: "asystent", + correct: 17, + position: 5, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "28.01.2025", + }, + }, + { + date: "28.01.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYwITL5NnLyYzMtMnYh5CMmNTLtl3cuEGZyITLr9GcuAjLyEjLy4SOx4COy0CduVGdzl3chhSI", + value: "!(asystent-28.19.2.12.0.pok-22da.sym-3f0.abs-362.sy-20b)!", + result: { + word: "asystent", + correct: 19, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "28.01.2025", + }, + }, + { + date: "28.01.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIGMy0Sez5iM2MTLzJWYuQ2N10icpBnL5UTLrp3cuAjL1EjLy4COx4COy0CduVGdzl3chhSI", + value: "!(asystent-28.18.2.15.0.szk-59.pir-57d.abs-362.sy-20b)!", + result: { + word: "asystent", + correct: 18, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "28.01.2025", + }, + }, + { + date: "28.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYwITL55SYlFTLlNXYucDOtMXZt5CMuUjLz4yMx4COy0CduVGdzl3chhSI", + value: "!(asystent-28.13.3.5.0.mes-87.ase-1ea.y-20b)!", + result: { + word: "asystent", + correct: 13, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "28.01.2025", + }, + }, + { + date: "28.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiBjMtk3ch5CZ00ychJmLkJDNtIHcz5CMukjLy4CNx4COy0CduVGdzl3chhSI", + value: "!(asystent-28.14.2.9.0.spr-42d.bas-4d.asy-20b)!", + result: { + word: "asystent", + correct: 14, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "28.01.2025", + }, + }, + { + date: "28.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYwITL5NXYuQjNy0ych5mLlNTLhB3cuAjLxEjLy4SNx4COy0CduVGdzl3chhSI", + value: "!(asystent-28.15.2.11.0.spa-3e.nas-264.asy-20b)!", + result: { + word: "asystent", + correct: 15, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "28.01.2025", + }, + }, + { + date: "28.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYwITL5NXYuMTO4EWMtoncw5CMugjLx4iMx4COy0CduVGdzl3chhSI", + value: "!(asystent-28.12.1.8.0.prz-1a893.asy-20b)!", + result: { + word: "asystent", + correct: 12, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "28.01.2025", + }, + }, + { + date: "28.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiBjMtk3cugDOi1CduFmLw0iblNmL0YWMtQWe35CMugjLz4yNx4COy0CduVGdzl3chhSI", + value: "!(asystent-28.17.3.8.0.wyd-1f4.cen-0.ant-b88.sy-20b)!", + result: { + word: "asystent", + correct: 17, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "28.01.2025", + }, + }, + { + date: "28.01.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIGMy0Sez5yYy0ydk5yM30SZtFmLjZTYtEmcn5CMuYjLx4yNx4COy0CduVGdzl3chhSI", + value: "!(asystent-28.17.1.6.0.gra-a6c.ame-73.dw-2c.sy-20b)!", + result: { + word: "asystent", + correct: 17, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "28.01.2025", + }, + }, + { + date: "28.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYwITL5NnLxMmMtMnYh5iNhJWLllWbuAjLxEjLz4yNx4COy0CduVGdzl3chhSI", + value: "!(asystent-28.17.3.11.0.mie-ba6.abs-2c1.sy-20b)!", + result: { + word: "asystent", + correct: 17, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "28.01.2025", + }, + }, + { + date: "28.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYwITL5NXYuUTMtUWbv5COzQTLoN2MuE2NtIWYm5CMugjLw4iNx4COy0CduVGdzl3chhSI", + value: "!(asystent-28.16.0.8.0.fab-7a.3ch-438.ome-15.asy-20b)!", + result: { + word: "asystent", + correct: 16, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "28.01.2025", + }, + }, + { + date: "28.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYwITL5NXYuIGOx0CdhBnLlFWLsFGduYWMtsWdl5CMucjLy4CMy4COy0CduVGdzl3chhSI", + value: "!(asystent-28.20.2.7.0.euk-1f.tal-ae.pat-18b.asy-20b)!", + result: { + word: "asystent", + correct: 20, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "28.01.2025", + }, + }, + { + date: "28.01.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYwITL5NnLkVTL0VXYuUzNtEGZ6VWau5CMucjLz4SNx4COy0CduVGdzl3chhSI", + value: "!(asystent-28.15.3.7.0.niezda-75.aut-5d.sy-20b)!", + result: { + word: "asystent", + correct: 15, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "28.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/porazka-nie-chcialo-mi-te-slowo-w-ogole-przyjsc-do-glowy-11-03-2025-diffle-diffl" +] = [ + { + date: "11.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ITMtMmYv5yMx0iYvZmLkNjMt8Waz5SNmFWNto3bw5CNyETLj9GZuMDNzETLsl3duAjLxIjLz4SNx4CM30SanlTOlQzQlMmYvhSI", + value: + "!(obcęgi-70.15.3.21.0.wyl-1343.doc-124.poz-5af5.sio-23d.fob-13.obc-125)!", + result: { + word: "obcęgi", + correct: 15, + position: 3, + incorrect: 21, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ITMtMmYv5SMzATMtM2bw5iNhJWLllWbuAjLzEjLy4CMx4CM30SanlTOlQzQlMmYvhSI", + value: "!(obcęgi-70.10.2.13.0.mie-ba6.poc-1031.obc-125)!", + result: { + word: "obcęgi", + correct: 10, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ITMtMmL3UjZtwmYv5yNhljMtM3bw5SMjlTLrVmcuAjLyEjLx4iMx4CM30SanlTOlQzQlMmYvhSI", + value: "!(obcęgi-70.12.1.12.0.rek-9c1.pos-29a7.obl-f57.c-125)!", + result: { + word: "obcęgi", + correct: 12, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ITMtMmYv5CZlVTLlh2YuITYx0CZldnL4kTLvpneuAjL1EjLy4SMx4CM30SanlTOlQzQlMmYvhSI", + value: "!(obcęgi-70.11.2.15.0.zzo-98.wed-1a2.che-5ed.obc-125)!", + result: { + word: "obcęgi", + correct: 11, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMx0yYi9mLxMTMtcWZj5CZwUWMtUWaw5CMuYjLx4iMx4CM30SanlTOlQzQlMmYvhSI", + value: "!(obcęgi-70.12.1.6.0.pie-1e0d.ceg-131.obc-125)!", + result: { + word: "obcęgi", + correct: 12, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMx0yYi9mLhJWMtg2Yz4yN1YWLs5CM2ETLpJmLzUTNtI3av5iYlJTMtkGcz5iZiJTL1h2YuAjL4EjLz4SOx4CM30SanlTOlQzQlMmYvhSI", + value: + "!(obcęgi-70.19.3.18.0.chu-2bf.spi-12eb.okr-553.bi-160.l-f57.3ch-1ba.obc-125)!", + result: { + word: "obcęgi", + correct: 19, + position: 3, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMx0yYi9mLhNGOtg2Yz5yMlFGNtM3bw5SOiNTLql3duAjL3EjLx4iMx4CM30SanlTOlQzQlMmYvhSI", + value: "!(obcęgi-70.12.1.17.0.wyj-3b9.pos-4ae3.sch-8ca.obc-125)!", + result: { + word: "obcęgi", + correct: 12, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMx0yYi5SOmlTLjR2buU2Mt8mc05CZ4ETLwNXYuAjL3EjLw4SNx4CM30SanlTOlQzQlMmYvhSI", + value: "!(obcęgi-70.15.0.17.0.asp-18d.tro-3e.odc-9f9.bc-125)!", + result: { + word: "obcęgi", + correct: 15, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNyETLj5SZx0Sdi5yNjJTLp1mL3ETLvd2buYTN3MTL6JHcuAjL5EjLw4SNx4CM30SanlTOlQzQlMmYvhSI", + value: "!(obcęgi-70.15.0.19.0.prz-3756.ogo-17.mi-2c7.bu-1e.c-125)!", + result: { + word: "obcęgi", + correct: 15, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMx0yYi9mL1UmZtUWaj5iM10yYldnL4kTLvpneuAjLxEjLx4SMx4CM30SanlTOlQzQlMmYvhSI", + value: "!(obcęgi-70.11.1.11.0.zzo-98.wec-52.cie-fe5.obc-125)!", + result: { + word: "obcęgi", + correct: 11, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ITMtMmYv5CO3YTLlh2YuMTOtMWZq5CMugjLx4SMx4CM30SanlTOlQzQlMmYvhSI", + value: "!(obcęgi-70.11.1.8.0.jec-93.che-678.obc-125)!", + result: { + word: "obcęgi", + correct: 11, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ITMtMmYv5yMwYTLhl2YuMTO4EWMtoncw5CMuMTMuIjL54CM30SanlTOlQzQlMmYvhSI", + value: "!(obcęgi-70.9.2.13.0.prz-1a893.cia-603.obc-125)!", + result: { + word: "obcęgi", + correct: 9, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ITMtMmYv5yN2ITLzF2ZuITYx0CZhJmLxEzMtomYv5SMx0yY1JmLyEjNt8mc05iN0ETLu9meuIzMzETLzl3duEjL0IjLz4SMy4CM30SanlTOlQzQlMmYvhSI", + value: + "!(obcęgi-70.21.3.24.1.wys-1332.zon-146.tro-612.buc-11.obj-311.bad-1a2.gas-267.obc-125)!", + result: { + word: "obcęgi", + correct: 21, + position: 3, + incorrect: 24, + knownIncorrect: 1, + totalWords: 8, + totalLetters: 48, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMx0yYi9mL2MmMx0SZyBnL3UWLvpneuAjLwEjLx4CMx4CM30SanlTOlQzQlMmYvhSI", + value: "!(obcęgi-70.10.1.10.0.zzo-e7.pre-12c6.obc-125)!", + result: { + word: "obcęgi", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ITMtMmYv5SZ5gTLvh2YuUWM00CajNjLi1San9mLiVTNtw2bn5iZzUWLu9WbuAjL1EjLy4SNx4CM30SanlTOlQzQlMmYvhSI", + value: + "!(obcęgi-70.15.2.15.0.mon-e3f.gol-55b.ogi-b.3ch-41e.cho-89e.obc-125)!", + result: { + word: "obcęgi", + correct: 15, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMx0yYi9mLzETLi9mZuQ2NtQXdi5iN0UWLwN3duAjL4EjLy4SMx4CM30SanlTOlQzQlMmYvhSI", + value: "!(obcęgi-70.11.2.18.0.wsp-e46.but-7d.fob-13.obc-125)!", + result: { + word: "obcęgi", + correct: 11, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ITMtMmYv5SM4ETLy92ZuMWYiRTLk9GcuAjLwEjLy4CMx4CM30SanlTOlQzQlMmYvhSI", + value: "!(obcęgi-70.10.2.10.0.pod-4bac.gor-181.obc-125)!", + result: { + word: "obcęgi", + correct: 10, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "11.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/powinno-byc-1-slowo-mniej-08-02-2025-diffle-difflepl-grywebowe-23-litery-w-4-slo" +] = [ + { + date: "08.02.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgTNt8Wam5SY0YzMtM3bw5SMxITLslmL4kTLiFmZuAjL54CMuQTMukzMtQXZs9WamhSI", + value: "!(fiolet-39.14.0.9.0.fab-98.il-211.pos-364a.fio-58)!", + result: { + word: "fiolet", + correct: 14, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "08.02.2025", + }, + }, + { + date: "08.02.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO10ybpZmL4ITMtwWai5SMhRTLzlGcuMmNh1SYydmLw4CMx4SMuQTMukzMtQXZs9WamhSI", + value: "!(fiolet-39.14.1.10.0.gra-a6c.pis-4a1.bil-128.fio-58)!", + result: { + word: "fiolet", + correct: 14, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "08.02.2025", + }, + }, + { + date: "08.02.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgTNt8Wam5SY0MTLzlGcuYmYy0SdoNmLw4SMx4SMuITMukzMtQXZs9WamhSI", + value: "!(fiolet-39.12.1.11.0.chu-2bf.pis-34a.fio-58)!", + result: { + word: "fiolet", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "08.02.2025", + }, + }, + { + date: "08.02.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgTNt8Wam5SMtk2Zp5iMhdTL3R2buATYy0yciFmLw4SNx4yMuMTMukzMtQXZs9WamhSI", + value: "!(fiolet-39.13.3.15.0.abs-2a0.odw-7a2.igi-1.fio-58)!", + result: { + word: "fiolet", + correct: 13, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "08.02.2025", + }, + }, + { + date: "08.02.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4UTLvlmZuEDZ40ybyBnLxETLilmYuYTYi1SZp1mLw4yMx4SNuYTMukzMtQXZs9WamhSI", + value: "!(fiolet-39.16.5.13.0.mie-ba6.bib-11.pro-8d1.fio-58)!", + result: { + word: "fiolet", + correct: 16, + position: 5, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "08.02.2025", + }, + }, + { + date: "08.02.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO10ybpZmLkJDNtIHcz5CMukjLx4COukzMtQXZs9WamhSI", + value: "!(fiolet-39.8.1.9.0.spr-42d.fio-58)!", + result: { + word: "fiolet", + correct: 8, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "08.02.2025", + }, + }, + { + date: "08.02.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4UTLvlmZukzYtw2Zp5yYy0CdpxmLkdTNtIXaw5SO10ya6NnLw4COx4SNuQTMukzMtQXZs9WamhSI", + value: "!(fiolet-39.14.5.18.0.szk-59.pir-57d.lit-2c.igl-c9.fio-58)!", + result: { + word: "fiolet", + correct: 14, + position: 5, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "08.02.2025", + }, + }, + { + date: "08.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgTNt8Wam5yNxMTLzlGbuQjNk1SZpBnLhV2Nx0yahpnLw4SNx4CNuITMukzMtQXZs9WamhSI", + value: "!(fiolet-39.12.4.15.0.zak-17ea.pie-d64.lis-317.fio-58)!", + result: { + word: "fiolet", + correct: 12, + position: 4, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "08.02.2025", + }, + }, + { + date: "08.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgTNt8Wam5CNwcTLvlmYuEWMyUTL69GcuAjL54SMuITMukzMtQXZs9WamhSI", + value: "!(fiolet-39.12.1.9.0.poz-521a.bio-704.fio-58)!", + result: { + word: "fiolet", + correct: 12, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "08.02.2025", + }, + }, + { + date: "08.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO10ybp5yNm1CbvZmL2ITMtI2bt5CZzgTLll2cuQjZx0CZ5dnLx4yMx4SNuYTMukzMtQXZs9WamhSI", + value: "!(fiolet-39.16.5.13.1.wyd-1f4.sie-83d.mob-126.fol-f7.io-58)!", + result: { + word: "fiolet", + correct: 16, + position: 5, + incorrect: 13, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 34, + date: "08.02.2025", + }, + }, + { + date: "08.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO10ybpZmL4ITMtwWai5yM5gTYx0ieyBnLw4CMx4iMuITMukzMtQXZs9WamhSI", + value: "!(fiolet-39.12.2.10.0.prz-1a893.bil-128.fio-58)!", + result: { + word: "fiolet", + correct: 12, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "08.02.2025", + }, + }, + { + date: "08.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4UTLvlmZuI2Yz0SayRnLiJDNtw2bw5SZ10SYrVnLw4SMx4iMuMTMukzMtQXZs9WamhSI", + value: "!(fiolet-39.13.2.11.0.uka-5e.pol-42b.tri-3cb.fio-58)!", + result: { + word: "fiolet", + correct: 13, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "08.02.2025", + }, + }, + { + date: "08.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgTNt8WauATMtQ3bm5iYzETLoN2MuUjMx0CdvtmLilTMtcXaw5COyETLslmYuMDM40Cd6NnLw4iNx4yMuIjMukzMtQXZs9WamhSI", + value: + "!(fiolet-39.22.3.16.0.szt-803.bil-128.piw-19b.kot-125.3ch-13b.fot-10.io-58)!", + result: { + word: "fiolet", + correct: 22, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "08.02.2025", + }, + }, + { + date: "08.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4UTLvlmZuQDM30ybpJmLmFTLrVXZuAjL34SMuMTMukzMtQXZs9WamhSI", + value: "!(fiolet-39.13.1.7.0.euk-1f.bio-704.fio-58)!", + result: { + word: "fiolet", + correct: 13, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "08.02.2025", + }, + }, + { + date: "08.02.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgTNt8mL5YmNtwWam5SZ1ITLs9GcuAjL54SMuMTMukzMtQXZs9WamhSI", + value: "!(fiolet-39.13.1.9.0.pol-25e.fil-6f9.o-58)!", + result: { + word: "fiolet", + correct: 13, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "08.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/proste-03-03-2025-diffle-difflepl-grywebowe-21-liter-w-3-slowach-large-green-cir" +] = [ + { + date: "03.03.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWYz0Cbr9mLjFjNz0CZvBnLwMDNtEWat5CMuATMuAjLxEjLyYTLkFmM4USNDVyavhSI", + value: "!(okład-62.11.0.10.0.mia-430.pod-361c.okl-3ad)!", + result: { + word: "okład", + correct: 11, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZhNTLs5yNm1SYr9mL1EWNtonc0VWau5CMuITMuIjLxEjLyYTLkFmM4USNDVyavhSI", + value: "!(okład-62.11.2.12.0.nietrz-5a5.oka-f7.l-3ad)!", + result: { + word: "okład", + correct: 11, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkF2Mtw2augDN20Cbw9mLwYmMtw2bn5yM0MTMtwWe35CMuITMuIjLyEjLyYTLkFmM4USNDVyavhSI", + value: "!(okład-62.12.2.12.0.wyl-1343.gol-2f0.opl-648.kl-3ad)!", + result: { + word: "okład", + correct: 12, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZhNTLst2buQmZ4QTLk9GcuIzMzETLzl3duAjL34iMukjLyYTLkFmM4USNDVyavhSI", + value: "!(okład-62.9.2.7.0.wys-1332.pod-48fd.okl-3ad)!", + result: { + word: "okład", + correct: 9, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZhNTLstmL40SYs9mLmFzMtw2bn5CZyETLvxWduQDZy0CbvpnL5UGZtUWaj5CMuIjMuIjLxEjLyYTLkFmM4USNDVyavhSI", + value: + "!(okład-62.11.2.22.0.cie-de9.zol-2d4.ulo-12d.gol-31f.ola-8.kl-3ad)!", + result: { + word: "okład", + correct: 11, + position: 2, + incorrect: 22, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkF2Mtw2av5yN2kTMtQ3bw5SO1YmMt42br5CMuATMuEjLwEjLyYTLkFmM4USNDVyavhSI", + value: "!(okład-62.10.1.10.0.kon-2f59.pot-1967.okl-3ad)!", + result: { + word: "okład", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWYz0Cbr9mLkNjZts2bw5CO50yb6pnLw4SMx4SMukjLyYTLkFmM4USNDVyavhSI", + value: "!(okład-62.9.1.11.0.zzo-98.pok-f3d.okl-3ad)!", + result: { + word: "okład", + correct: 9, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZhNTLst2buMWM2MTLk9GcuUjM00CbvpnLmJmMtUHaj5CMuQTMuIjLzEjLyYTLkFmM4USNDVyavhSI", + value: "!(okład-62.13.2.14.0.chu-2bf.zol-425.pod-361c.okl-3ad)!", + result: { + word: "okład", + correct: 13, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkF2Mtw2av5CZ4ETLwNXYuAjL54SMucjLyYTLkFmM4USNDVyavhSI", + value: "!(okład-62.7.1.9.0.asp-18d.okl-3ad)!", + result: { + word: "okład", + correct: 7, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZhNTLstmL1YWLsd2buI2Y40CbvRmLlJTLvJWduYWN3kTMtoncw5CMuQTMuMjL2EjLyYTLkFmM4USNDVyavhSI", + value: "!(okład-62.16.3.14.0.prz-1975f.ubo-2e.dol-8cb.ogl-f5.kl-3ad)!", + result: { + word: "okład", + correct: 16, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZhNTLst2buATNz0ybstmL2QTZtA3c35CMuATMuMjLwEjLyYTLkFmM4USNDVyavhSI", + value: "!(okład-62.10.3.10.0.wsp-e46.klo-350.okl-3ad)!", + result: { + word: "okład", + correct: 10, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkF2MukjZz0Cbr9mLzczMtQ2bs5SN1ITLq92duMTO4EWMtoncw5CMuQjMuAjL1EjLyYTLkFmM4USNDVyavhSI", + value: "!(okład-62.15.0.24.0.prz-1a893.woj-255.lod-373.okl-3f9.3ad)!", + result: { + word: "okład", + correct: 15, + position: 0, + incorrect: 24, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZhNTLst2buMjMz0CajNjL3EGNtEGbn5CZxczMtoncw5CMuITMuEjLyEjLyYTLkFmM4USNDVyavhSI", + value: "!(okład-62.12.1.12.0.prz-371d.gla-4a7.3ch-323.okl-3ad)!", + result: { + word: "okład", + correct: 12, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWYz0Cbr9mLkNjZts2bw5CO50yb6pnLw4SMx4SMukjLyYTLkFmM4USNDVyavhSI", + value: "!(okład-62.9.1.11.0.zzo-98.pok-f3d.okl-3ad)!", + result: { + word: "okład", + correct: 9, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWYz0CbuYmZx0icr9mL2EmYtUWat5CMuQTMuEjLwEjLyYTLkFmM4USNDVyavhSI", + value: "!(okład-62.10.1.14.0.mie-ba6.okr-1ff.l-3ad)!", + result: { + word: "okład", + correct: 10, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkF2Mtw2av5yYxYzMtQ2bw5SM5YTLst2cuQWOj1SYstmLjFTLrlHdugTOt8me65CMuYTMuIjLwIjLyYTLkFmM4USNDVyavhSI", + value: + "!(okład-62.20.2.16.0.zzo-98.tyk-1c.kla-c9d.skl-691.pod-361c.okl-3ad)!", + result: { + word: "okład", + correct: 20, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZhNjLlZ2Mtw2auM2Nj1Cbi9mL0UWMtQWYs5iMm1Cbn5COwETLsJ3buMDNz0Cdh1mLmlDNt8Gb65CMuUTMuIjL3IjLyYTLkFmM4USNDVyavhSI", + value: + "!(okład-62.27.2.15.0.zlo-49f.mat-343.orl-108.gl-f2.lad-1e4.obl-c7c.kl-3fe.3ad)!", + result: { + word: "okład", + correct: 27, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 44, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWYz0Cbr9mL2ATNt8Gbr5yM3MTLs9meuAjL34iMukjLyYTLkFmM4USNDVyavhSI", + value: "!(okład-62.9.2.7.0.zol-373.klo-506.okl-3ad)!", + result: { + word: "okład", + correct: 9, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWYz0Cbr9mL2ATNt8Gbr5yMzMTLjFGbuAjL24iMugjLyYTLkFmM4USNDVyavhSI", + value: "!(okład-62.8.2.6.0.lac-333.klo-506.okl-3ad)!", + result: { + word: "okład", + correct: 8, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 16, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkF2MukjZz0Cbr9mLjFmY00CZvBnLw4COuEjLyEjLyYTLkFmM4USNDVyavhSI", + value: "!(okład-62.12.1.8.0.pod-4bac.okl-3f9.3ad)!", + result: { + word: "okład", + correct: 12, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "Tysiek", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWYz4iYxQTLst2buIjMx0yavdnLhV2Nx0CbvtmL5gTMtw2b65CMuITMuIjL5EjLyYTLkFmM4USNDVyavhSI", + value: "!(okład-62.19.2.12.0.zol-189.kol-17ea.wok-122.okl-41b.3ad)!", + result: { + word: "okład", + correct: 19, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkF2Mtw2av5CN5QTLvx2ZuYDNl1CczdnLw4yMx4iMukjLyYTLkFmM4USNDVyavhSI", + value: "!(okład-62.9.2.13.0.wsp-e46.glo-494.okl-3ad)!", + result: { + word: "okład", + correct: 9, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZhNTLst2buI2Mj1SZpdnLw4SMx4CMucjLyYTLkFmM4USNDVyavhSI", + value: "!(okład-62.7.0.11.0.wie-c3b.okl-3ad)!", + result: { + word: "okład", + correct: 7, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "03.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/proste-ale-zdradliwe-09-01-2025-diffle-difflepl-grywebowe-22-litery-w-3-slowach-" +] = [ + { + date: "09.01.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0ETMtkGcz5SYtMXaw5yNzQTLhlWbuAjL24CMuYTMukTL3gTJ0MUJhdXezlGczhSI", + value: "!(spisywać-9.16.0.6.0.mia-437.pis-a.spi-1141)!", + result: { + word: "spisywać", + correct: 16, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "09.01.2025", + }, + }, + { + date: "09.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0ETMuAjZi1SawNnL4ITMtwWai5yM3ITL5pXduczN50yZk9mLzEmMx0Cb5dnLw4SNx4SMuMjMukTL3gTJ0MUJhdXezlGczhSI", + value: + "!(spisywać-9.23.1.15.0.wyl-12a3.odg-977.uzy-273.bil-128.spi-bf0.1141)!", + result: { + word: "spisywać", + correct: 23, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "09.01.2025", + }, + }, + { + date: "09.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQTMx0SawNnLzEWOx0Cc5dnLwcDNx0SawNnL1kTMt8Waw5iZl1yb6pnLw4yNx4SMuMjMukTL3gTJ0MUJhdXezlGczhSI", + value: "!(spisywać-9.23.1.17.0.zzo-ef.pio-195.spi-1470.wyp-19a3.spi-1141)!", + result: { + word: "spisywać", + correct: 23, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "09.01.2025", + }, + }, + { + date: "09.01.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQTMx0SauYDZzETLhB3cuAjLz4iMuMTMukTL3gTJ0MUJhdXezlGczhSI", + value: "!(spisywać-9.13.2.3.0.spa-13d6.i-1141)!", + result: { + word: "spisywać", + correct: 13, + position: 2, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "09.01.2025", + }, + }, + { + date: "09.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNxEjL5cDMx0Saw5SNykTLjp3cuAjL54CMuYTMukTL3gTJ0MUJhdXezlGczhSI", + value: "!(spisywać-9.16.0.9.0.szc-925.pi-1079.1141)!", + result: { + word: "spisywać", + correct: 16, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "09.01.2025", + }, + }, + { + date: "09.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0ETMtkGcz5iNhNTLzlGcuMTN0MTLzl3duAjZtoXes5SZyETL5JnYugzYy0SdoNmLw4CNx4CNucjMukTL3gTJ0MUJhdXezlGczhSI", + value: + "!(spisywać-9.27.4.14.0.chu-2c8.bry-12e.lyz-f0.wys-3453.pis-3a6.spi-1141)!", + result: { + word: "spisywać", + correct: 27, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 45, + date: "09.01.2025", + }, + }, + { + date: "09.01.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0ETMtkmL5ETL55COhFTLhB3cuQTYx0SZyRmLiVTMt02bw5CO50yb6pnLw4yNx4CMuQjMukTL3gTJ0MUJhdXezlGczhSI", + value: + "!(spisywać-9.24.0.17.0.zzo-98.pom-15b.dre-1a4.spa-1a8.y-19.i-1141)!", + result: { + word: "spisywać", + correct: 24, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 41, + date: "09.01.2025", + }, + }, + { + date: "09.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQTMx0SawNnLyATOtMXe35iZ5EWLpN2cuAjL44iMuUTMukTL3gTJ0MUJhdXezlGczhSI", + value: "!(spisywać-9.15.2.8.0.sci-a9f.wys-902.spi-1141)!", + result: { + word: "spisywać", + correct: 15, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "09.01.2025", + }, + }, + { + date: "09.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0ETMuI2NwETLp5SYz0icuIWYh1SZugTYx4COzITLhB3cuMDOx0CczFmLw4yMx4SMuMzMukTL3gTJ0MUJhdXezlGczhSI", + value: + "!(spisywać-9.33.1.13.0.asp-183.spa-238.1a8.e-aab.r-3a.i-107b.1141)!", + result: { + word: "spisywać", + correct: 33, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 47, + date: "09.01.2025", + }, + }, + { + date: "09.01.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0ETMtkmL3czMx0ybuQDZxETLhB3cuEzMl1CczdnLy4SNx4SMuAjMukTL3gTJ0MUJhdXezlGczhSI", + value: "!(spisywać-9.20.1.15.2.wsp-e31.spa-11d4.o-1377.i-1141)!", + result: { + word: "spisywać", + correct: 20, + position: 1, + incorrect: 15, + knownIncorrect: 2, + totalWords: 4, + totalLetters: 36, + date: "09.01.2025", + }, + }, + { + date: "09.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQTMx0SawNnLkhjMtMXdw5CMtEGbt5SOxYTLy9mZuAjL54SMuUTMukTL3gTJ0MUJhdXezlGczhSI", + value: "!(spisywać-9.15.1.9.0.for-619.mla-0.pus-28d.spi-1141)!", + result: { + word: "spisywać", + correct: 15, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "09.01.2025", + }, + }, + { + date: "09.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQTMx0SawNnL4gTOtkGcv5iMidTYx0ieyBnLw4CMx4SMugTMukTL3gTJ0MUJhdXezlGczhSI", + value: "!(spisywać-9.18.1.10.0.prz-1a7b2.opi-988.spi-1141)!", + result: { + word: "spisywać", + correct: 18, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "09.01.2025", + }, + }, + { + date: "09.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0ETMtkGcz5CM3IjMtQWYu5yMhlTMtAXe35SMmhTLllGcuQTM30Cbp1mLw4yMx4CMugjMukTL3gTJ0MUJhdXezlGczhSI", + value: + "!(spisywać-9.28.0.13.0.mil-714.pie-8f1.wyp-19a3.nad-2270.spi-1141)!", + result: { + word: "spisywać", + correct: 28, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "09.01.2025", + }, + }, + { + date: "09.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNxETLpB3cuM2M5ETLwl3duI2Yi1SZp1mLw4CMx4yMuYTMukTL3gTJ0MUJhdXezlGczhSI", + value: "!(spisywać-9.16.3.10.0.mie-bcb.wyp-193c.spi-1141)!", + result: { + word: "spisywać", + correct: 16, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "09.01.2025", + }, + }, + { + date: "09.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0ETMtkGcz5SN3QTLpB3duMzNy0Se6VnLhZ2My0Cch5mL1YWY00CZvBnLw4iMx4CMuYjMukTL3gTJ0MUJhdXezlGczhSI", + value: + "!(spisywać-9.26.0.12.0.pod-4af5.nap-23fa.uzy-273.wpi-475.spi-1141)!", + result: { + word: "spisywać", + correct: 26, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "09.01.2025", + }, + }, + { + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNxETLpB3cuYGZyETLzl3duAjLz4iMuETMukTL3gTJ0MUJhdXezlGczhSI", + value: "!(spisywać-9.11.2.3.0.wys-12df.spi-1141)!", + result: { + word: "spisywać", + correct: 11, + position: 2, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + }, + }, + { + date: "09.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0ETMtkGcuMzY2ETLyt2cuUDN50Cc5dnL0UmMtw2b65iZx0ya1VmLy4CNx4CNugTMukTL3gTJ0MUJhdXezlGczhSI", + value: "!(spisywać-9.18.4.14.2.euk-1f.zol-2e4.wyp-945.skr-16c3.pi-1141)!", + result: { + word: "spisywać", + correct: 18, + position: 4, + incorrect: 14, + knownIncorrect: 2, + totalWords: 5, + totalLetters: 36, + date: "09.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/proste-jak-budowa-cepa-24-01-2025-diffle-difflepl-grywebowe-21-liter-w-3-slowach" +] = [ + { + date: "24.01.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUzYx4iNwgTL0FmL5UjZy0ibvtmLw4iNuIjLzEjL0ITLn9GbhRXYrhSI", + value: "!(katalog-24.13.2.6.0.kon-2f59.at-806.1c5)!", + result: { + word: "katalog", + correct: 13, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "24.01.2025", + }, + }, + { + date: "24.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNjFTL0F2auYTYi1SZp1mLw4SOuEjLxEjL0ITLn9GbhRXYrhSI", + value: "!(katalog-24.11.1.9.0.mie-ba6.kat-1c5)!", + result: { + word: "katalog", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "24.01.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNjFTL0F2auUTMx0yZsFmLidjZt8Gcz5CMuMTMuQjLxEjL0ITLn9GbhRXYrhSI", + value: "!(katalog-24.11.4.13.0.spo-f7b.alg-115.kat-1c5)!", + result: { + word: "katalog", + correct: 11, + position: 4, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + }, + }, + { + date: "24.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNjFjL2ADOtQXYr5SY3ITLoN2MuczNtsWdw5CNyczNto3by5CMuATMuIjL4EjL0ITLn9GbhRXYrhSI", + value: "!(katalog-24.18.2.10.0.roz-7724.puk-77.3ch-27a.kat-806.1c5)!", + result: { + word: "katalog", + correct: 18, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "24.01.2025", + }, + }, + { + date: "24.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUzYx0CdhtmLyEjMtwWY05iN2QTLhR3cuMTO4EWMtoncw5CMuETMuIjL1EjL0ITLn9GbhRXYrhSI", + value: "!(katalog-24.15.2.11.0.prz-1a893.sta-466.tal-212.kat-1c5)!", + result: { + word: "katalog", + correct: 15, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "24.01.2025", + }, + }, + { + date: "24.01.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNjFTL05yYx0yahtmLiBzMx0CZh5mLw4COuIjLzEjL0ITLn9GbhRXYrhSI", + value: "!(katalog-24.13.2.8.0.nad-130b.kak-1c.t-1c5)!", + result: { + word: "katalog", + correct: 13, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "24.01.2025", + }, + }, + { + date: "24.01.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNjFTL0FmLk1iYvtmLhRmMy0yavBnLw4SOuMjLyEjL0ITLn9GbhRXYrhSI", + value: "!(katalog-24.12.3.9.0.pok-22da.kob-d.at-1c5)!", + result: { + word: "katalog", + correct: 12, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "24.01.2025", + }, + }, + { + date: "24.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUzYx0CduYzN10ych5CZtI2bugjN50SbhtmLhlTZtEmcn5CMuQTMuUjL4EjL0ITLn9GbhRXYrhSI", + value: "!(katalog-24.18.5.14.0.gra-e9a.kam-968.ob-d.as-576.t-1c5)!", + result: { + word: "katalog", + correct: 18, + position: 5, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "24.01.2025", + }, + }, + { + date: "24.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1MWMtQXYr5SMyMTLsFGdugTM00CbvdnL00Cd11mLw4yNuIjL1EjL0ITLn9GbhRXYrhSI", + value: "!(katalog-24.15.2.7.0.mut-4.wol-418.tal-321.kat-1c5)!", + result: { + word: "katalog", + correct: 15, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "24.01.2025", + }, + }, + { + date: "24.01.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNjFjL3ADOtQXYr5SO0MTLvlGcukTNtsmez5CMuUTMuMjL2EjL0ITLn9GbhRXYrhSI", + value: "!(katalog-24.16.3.15.0.szk-59.pio-349.kat-807.1c5)!", + result: { + word: "katalog", + correct: 16, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "24.01.2025", + }, + }, + { + date: "24.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUzYx0CdhtmLjRWLsF2ZuYjZx0yahxmLkJDNtIHcz5CMuQTMuYjL2EjL0ITLn9GbhRXYrhSI", + value: "!(katalog-24.16.6.14.0.spr-42d.lak-1f6.gal-dc.kat-1c5)!", + result: { + word: "katalog", + correct: 16, + position: 6, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "24.01.2025", + }, + }, + { + date: "24.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNjFjLiFDOtQXYr5COmNmMtAXe35CMuITMuMjLzEjL0ITLn9GbhRXYrhSI", + value: "!(katalog-24.13.3.12.0.wyp-2cf8.kat-81b.1c5)!", + result: { + word: "katalog", + correct: 13, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "24.01.2025", + }, + }, + { + date: "24.01.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUzYx0CdhtmL2cTLiF2ZuE2YtIHczVWau5CMuITMuMjLyEjL0ITLn9GbhRXYrhSI", + value: "!(katalog-24.12.3.12.0.niespr-ca.gab-76.kat-1c5)!", + result: { + word: "katalog", + correct: 12, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "24.01.2025", + }, + }, + { + date: "24.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUzYx0CdhtmLkZTLr9GcuIWOy0CbhNnL0YWMtQWe35CMuATMuMjLzEjL0ITLn9GbhRXYrhSI", + value: "!(katalog-24.13.3.10.0.wyd-1f4.sal-29b.pok-6d.kat-1c5)!", + result: { + word: "katalog", + correct: 13, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "24.01.2025", + }, + }, + { + date: "24.01.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1MWMtQXYr5yY2EWLhJ3ZuAjL04SMugjL0ITLn9GbhRXYrhSI", + value: "!(katalog-24.8.1.4.0.gra-a6c.kat-1c5)!", + result: { + word: "katalog", + correct: 8, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "24.01.2025", + }, + }, + { + date: "24.01.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUzYx0CduATLnF2auADZk1SYoNmLmhjMtEmck5CMuATMuMjL2EjL0ITLn9GbhRXYrhSI", + value: "!(katalog-24.16.3.10.0.dra-28f.cha-dd0.kag-0.t-1c5)!", + result: { + word: "katalog", + correct: 16, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "24.01.2025", + }, + }, + { + date: "24.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUzYx0CdhtmLlFzMtEmej5CMtE2c35SOt4WYm5CMuMTMuEjLzEjL0ITLn9GbhRXYrhSI", + value: "!(katalog-24.13.1.13.0.fan-9.wsa-0.cza-31e.kat-1c5)!", + result: { + word: "katalog", + correct: 13, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "24.01.2025", + }, + }, + { + date: "24.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1MWMuMjMy0CdhtmLyMTMts2bs5iNwMTLoN2MuQ2MtwWYk5SY5ITLrFGcuYWMx0iYsFmLmJmMtUHaj5CMuQTMuYjL4IjL0ITLn9GbhRXYrhSI", + value: + "!(katalog-24.28.6.14.0.chu-2bf.alb-11f.pak-29a.dal-3d.3ch-306.lok-132.kat-223.1c5)!", + result: { + word: "katalog", + correct: 28, + position: 6, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 48, + date: "24.01.2025", + }, + }, + { + date: "24.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUzYx0CdhtmLjRmMx0SYrNnLlZTMts2bs5iZx0ya1VmLw4SOuMjL4EjL0ITLn9GbhRXYrhSI", + value: "!(katalog-24.18.3.9.0.euk-1f.lok-16e.ska-12dc.kat-1c5)!", + result: { + word: "katalog", + correct: 18, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "24.01.2025", + }, + }, + { + date: "24.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNjFjL2ADOtQnL2MWLj5SN0cTMtIXYr5SYxITNto3bw5CMuATMuIjL5EjL0ITLn9GbhRXYrhSI", + value: "!(katalog-24.19.2.10.0.poz-521a.kar-1745.c-c6.t-806.1c5)!", + result: { + word: "katalog", + correct: 19, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "24.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/rekord-szybkosci-28-02-2025-diffle-difflepl-17-liter-w-3-slowach-large-green-cir" +] = [ + { + date: "28.02.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWLtVncucTO00CajNjL5UjZy0ibvtmLw4iNuIjL54SO10yah1WdyhSI", + value: "!(rumak-59.9.2.6.0.kon-2f59.3ch-497.rum-b)!", + result: { + word: "rumak", + correct: 9, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "28.02.2025", + }, + }, + { + date: "28.02.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWLtVnL4YTLilnLw0ycvJnLjZTYtEmcn5CMugjLw4iMx4SO10yah1WdyhSI", + value: "!(rumak-59.12.0.8.0.gra-a6c.ros-0.yb-68.um-b)!", + result: { + word: "rumak", + correct: 12, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "28.02.2025", + }, + }, + { + date: "28.02.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYt0Wdy5iN30ic1JmL4UWL1FGbuYGOyQTLzl3duAjLyEjL04iMx4SO10yah1WdyhSI", + value: "!(rumak-59.12.4.12.0.wys-428f.lau-e8.bur-76.rum-b)!", + result: { + word: "rumak", + correct: 12, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "28.02.2025", + }, + }, + { + date: "28.02.2025", + nick: "Lvter", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKi1Sb1JnL3kDNtg2Yz4CNwATMtIXYw5CZyITLsJ2buAjLzEjLx4SMx4SO10yah1WdyhSI", + value: "!(rumak-59.11.1.13.0.obl-22d.par-1004.3ch-497.rum-b)!", + result: { + word: "rumak", + correct: 11, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "28.02.2025", + }, + }, + { + date: "28.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKi1Sb15yNx0yZvJnL2kDNtg2Yz4CNmFTLkl3duAjLxEjLx4CMx4SO10yah1WdyhSI", + value: "!(rumak-59.10.1.11.0.wyd-1f4.3ch-496.rog-17.um-b)!", + result: { + word: "rumak", + correct: 10, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "28.02.2025", + }, + }, + { + date: "28.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWLtVncuYTYz0ybytmLzkDOhFTL6JHcuAjLzEjLx4SMx4SO10yah1WdyhSI", + value: "!(rumak-59.11.1.13.0.prz-1a893.kro-3a6.rum-b)!", + result: { + word: "rumak", + correct: 11, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "28.02.2025", + }, + }, + { + date: "28.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWLtVncuIWN10SeyRnL0ETLtFGauMWNz0CajNjLiZWMtMXYt5yYiNTLt9GZuAjLwEjLw4COx4SO10yah1WdyhSI", + value: + "!(rumak-59.18.0.10.0.dom-3bc.mas-1fb.3ch-35c.ham-14.try-55b.rum-b)!", + result: { + word: "rumak", + correct: 18, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 28, + date: "28.02.2025", + }, + }, + { + date: "28.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKi1Sb1JnL2cTLyVnYuYWMtsWdl5CMuYjLz4CMx4SO10yah1WdyhSI", + value: "!(rumak-59.10.3.6.0.euk-1f.bur-76.rum-b)!", + result: { + word: "rumak", + correct: 10, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "28.02.2025", + }, + }, + { + date: "28.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWLtVncuETYx0SYyZmLhFjM10ievBnLw4SOuEjL54SO10yah1WdyhSI", + value: "!(rumak-59.9.1.9.0.poz-521a.fra-1a1.rum-b)!", + result: { + word: "rumak", + correct: 9, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "28.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/slabo-w-uj-dzisiaj-deg-deg-11-02-2025-diffle-difflepl-grywebowe-32-litery-w-5-sl" +] = [ + { + date: "11.02.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWNk5CO3MmL2MjZtUmcr5iYjVTLkVGcuAzM00SYp1mLw4CNx4CMugTMuIDNtk3dvdWO5UCNDVicrhSI", + value: "!(kręgowy-42.18.0.14.0.mia-430.ped-5cb.kre-f36.c78.d5c)!", + result: { + word: "kręgowy", + correct: 18, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "11.02.2025", + }, + }, + { + date: "11.02.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWNk5iY1QmLzMjZtUmcuETMz0ichtmLw4CMx4CMuAjMuIDNtk3dvdWO5UCNDVicrhSI", + value: "!(kręgowy-42.20.0.10.0.kar-311.re-f33.d5b.d5c)!", + result: { + word: "kręgowy", + correct: 20, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "11.02.2025", + }, + }, + { + date: "11.02.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY1QWLl5SM4kTLvJ3auQWO1ITLrl3duEGZyITLr9GcuAjL44yMugTMuIDNtk3dvdWO5UCNDVicrhSI", + value: "!(kręgowy-42.18.3.8.0.pok-22da.wyk-259d.kro-981.e-d5c)!", + result: { + word: "kręgowy", + correct: 18, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "11.02.2025", + }, + }, + { + date: "11.02.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjVDZtUmcr5iMiNTL5JHduQmY00yalxmL5AjMtoXZ35yNyUWLzFGcuYmYy0SdoNmLw4SNx4iMuIjMuIDNtk3dvdWO5UCNDVicrhSI", + value: + "!(kręgowy-42.22.2.15.0.chu-2bf.pas-e27.wez-209.lek-4bd.try-3b2.kre-d5c)!", + result: { + word: "kręgowy", + correct: 22, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "11.02.2025", + }, + }, + { + date: "11.02.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY1QWLl5SM4kTLvJ3auUTY10ieyRXZp5mLw4CMx4iMuUTMuIDNtk3dvdWO5UCNDVicrhSI", + value: "!(kręgowy-42.15.2.10.0.nietrz-5a5.kro-981.e-d5c)!", + result: { + word: "kręgowy", + correct: 15, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "11.02.2025", + }, + }, + { + date: "11.02.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjVDZtUmcucTZh1CdhtmLkVWNi1CZvBnLyMzMx0yc5dnLw4SMx4iMuYTMuIDNtk3dvdWO5UCNDVicrhSI", + value: "!(kręgowy-42.16.2.11.0.wys-1332.pod-b5ed.kat-ae7.re-d5c)!", + result: { + word: "kręgowy", + correct: 16, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "11.02.2025", + }, + }, + { + date: "11.02.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjVDZtUmcr5iYzMWLll2duAjL54SMuATMuIDNtk3dvdWO5UCNDVicrhSI", + value: "!(kręgowy-42.10.1.9.0.wie-c3b.kre-d5c)!", + result: { + word: "kręgowy", + correct: 10, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "11.02.2025", + }, + }, + { + date: "11.02.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWNk1SZytmLmRGNtcWZs5CZ5UTLul3duAjL24SMuQTMuIDNtk3dvdWO5UCNDVicrhSI", + value: "!(kręgowy-42.14.1.6.0.wyn-59d.leg-4df.kre-d5c)!", + result: { + word: "kręgowy", + correct: 14, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "11.02.2025", + }, + }, + { + date: "11.02.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjVDZuMWOj5SZyUWLlJnLmdTOtUGbr5CO00yb6pXZp5mLw4COx4CMukTMuIDNtk3dvdWO5UCNDVicrhSI", + value: "!(kręgowy-42.19.0.18.0.niezzo-48.kle-97f.re-e2e.c9c.d5c)!", + result: { + word: "kręgowy", + correct: 19, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "11.02.2025", + }, + }, + { + date: "11.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY1QWLlJnLhJWLpN3auAjL34CMuATMuIDNtk3dvdWO5UCNDVicrhSI", + value: "!(kręgowy-42.10.0.7.0.ksi-ba.re-d5c)!", + result: { + word: "kręgowy", + correct: 10, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "11.02.2025", + }, + }, + { + date: "11.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWNk1SZy5yY3ETLpN3auMWYiRTLk9GcuAjL54CMuUTMuIDNtk3dvdWO5UCNDVicrhSI", + value: "!(kręgowy-42.15.0.9.0.pod-4bac.ksi-17c.re-d5c)!", + result: { + word: "kręgowy", + correct: 15, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "11.02.2025", + }, + }, + { + date: "11.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWNk1SZytmL2YTNtI3auMjYh1ici9mL5IjZj1ieyBnL2kTLu9meugDM30Cbp1mLx4CMy4iMuEjMuIDNtk3dvdWO5UCNDVicrhSI", + value: + "!(kręgowy-42.21.2.20.1.mil-708.zon-96.prz-cf29.obr-ab3.kr-566.kre-d5c)!", + result: { + word: "kręgowy", + correct: 21, + position: 2, + incorrect: 20, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 43, + date: "11.02.2025", + }, + }, + { + date: "11.02.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjVDZtUmcr5SY5ITMtUmcw5yM1ETL69GbuYTYi1SZp1mLw4COx4iMuYTMuIDNtk3dvdWO5UCNDVicrhSI", + value: "!(kręgowy-42.16.2.18.0.mie-ba6.loz-153.pre-129a.kre-d5c)!", + result: { + word: "kręgowy", + correct: 16, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "11.02.2025", + }, + }, + { + date: "11.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY1QWLlJ3augTN30yby5yY10SekdmL1UjMto2b35yM5gTYx0ieyBnLw4iMy4SMugTMuIDNtk3dvdWO5UCNDVicrhSI", + value: "!(kręgowy-42.18.1.22.0.prz-1a893.woj-255.gdy-5c.ro-758.kre-d5c)!", + result: { + word: "kręgowy", + correct: 18, + position: 1, + incorrect: 22, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "11.02.2025", + }, + }, + { + date: "11.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjVDZtUmLxEWZtEmcr5CZ2YTLvJneucjY40ybyBnLw4yNx4SMuUTMuIDNtk3dvdWO5UCNDVicrhSI", + value: "!(kręgowy-42.15.1.17.0.pro-8b7.zro-66d.kra-ea1.e-d5c)!", + result: { + word: "kręgowy", + correct: 15, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "11.02.2025", + }, + }, + { + date: "11.02.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY1QWLlJ3auIWY00SZyRmL3QWL69mYuQGOx0CczFmLw4SNx4CMuQTMuIDNtk3dvdWO5UCNDVicrhSI", + value: "!(kręgowy-42.14.0.15.0.asp-18d.boz-d7.dre-4ab.kre-d5c)!", + result: { + word: "kręgowy", + correct: 14, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "11.02.2025", + }, + }, + { + date: "11.02.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjVDZtUmcr5iN0UWLwN3duAjL54SMuATMuIDNtk3dvdWO5UCNDVicrhSI", + value: "!(kręgowy-42.10.1.9.0.wsp-e46.kre-d5c)!", + result: { + word: "kręgowy", + correct: 10, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "11.02.2025", + }, + }, + { + date: "11.02.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY1QWLlJ3auYjN10icr9mL1IDNtsWZs5SM2QGMx0ievJnL4ImMx0Cb5dnLw4SMx4SMuEjMuIDNtk3dvdWO5UCNDVicrhSI", + value: + "!(kręgowy-42.21.1.11.0.wyl-12b8.roz-10d61.lek-425.okr-566.kre-d5c)!", + result: { + word: "kręgowy", + correct: 21, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "11.02.2025", + }, + }, + { + date: "11.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY1QWLlJ3auYjN10icr9mLxEGZx0yavBnLyAzMtI3a35CO50yb6pnLw4yMx4iMuEjMuIDNtk3dvdWO5UCNDVicrhSI", + value: "!(kręgowy-42.21.2.13.0.zzo-98.wkr-302.pok-1da1.okr-566.kre-d5c)!", + result: { + word: "kręgowy", + correct: 21, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "11.02.2025", + }, + }, + { + date: "11.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWNk1SZytmL2YTNtI3auYDNx0ic09mL0IzYx0CZhpnLhdzMx0SYsBnLw4SNx4SMukTMuIDNtk3dvdWO5UCNDVicrhSI", + value: "!(kręgowy-42.19.1.15.0.pla-137a.zad-1c24.otr-146.kr-566.kre-d5c)!", + result: { + word: "kręgowy", + correct: 19, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "11.02.2025", + }, + }, + { + date: "11.02.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY1QWLlJ3auEmMx0ic09mLlJTMt8mct5CN2EWLyh2YuYDNl1CczdnLw4COx4iMuAjMuIDNtk3dvdWO5UCNDVicrhSI", + value: "!(kręgowy-42.20.2.18.0.wsp-e46.chr-a64.mro-12e.otr-12a.kre-d5c)!", + result: { + word: "kręgowy", + correct: 20, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "11.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/slowo-chyba-niezbyt-popularne-poza-no-takim-jednym-miastem-nie-chce-podpowiadac-" +] = [ + { + date: "17.02.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3YWMtQ3by5CZ40iby9mL5UjZy0ibvtmLw4SNuMjLzEjL4QTLhRmb1R3byhSI", + value: "!(rotunda-48.13.3.5.0.kon-2f59.orn-8d.rot-1f7)!", + result: { + word: "rotunda", + correct: 13, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "17.02.2025", + }, + }, + { + date: "17.02.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjZx0CdvJnLkhTLuJ3bukTOy0Cdz9WZp5mLw4iNuQjLyEjL4QTLhRmb1R3byhSI", + value: "!(rotunda-48.12.4.6.0.nieost-299.orn-8d.rot-1f7)!", + result: { + word: "rotunda", + correct: 12, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "17.02.2025", + }, + }, + { + date: "17.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjZx0Cdv5SMy0CZ1JnLhJjMtIXZt5CMuATMuAjLzEjL4QTLhRmb1R3byhSI", + value: "!(rotunda-48.13.0.10.0.mer-22a.rud-21.ot-1f7)!", + result: { + word: "rotunda", + correct: 13, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "17.02.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNmFTL09mcuADO30icr9mL3UDNt8Gc15CMuETMuMjL1EjL4QTLhRmb1R3byhSI", + value: "!(rotunda-48.15.3.11.0.upo-457.okr-780.rot-1f7)!", + result: { + word: "rotunda", + correct: 15, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + }, + }, + { + date: "17.02.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3YWMtQ3by5yNmRTL1JHduITNx0SZydmLw4COuIjLyEjL4QTLhRmb1R3byhSI", + value: "!(rotunda-48.12.2.8.0.gre-152.tru-4f7.rot-1f7)!", + result: { + word: "rotunda", + correct: 12, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "17.02.2025", + }, + }, + { + date: "17.02.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3YWMtQ3by5CZ40iby9mL5UjZy0ibvtmLw4SNuMjLzEjL4QTLhRmb1R3byhSI", + value: "!(rotunda-48.13.3.5.0.kon-2f59.orn-8d.rot-1f7)!", + result: { + word: "rotunda", + correct: 13, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "17.02.2025", + }, + }, + { + date: "17.02.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3YWMtQ3buQzM50CZhJnLhRmMy0yavBnLw4SOuEjL1EjL4QTLhRmb1R3byhSI", + value: "!(rotunda-48.15.1.9.0.pok-22da.rad-934.ot-1f7)!", + result: { + word: "rotunda", + correct: 15, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "17.02.2025", + }, + }, + { + date: "17.02.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNmFTL09mcuEWZ3ETLi9GcuYmYy0SdoNmLw4SOuEjL0EjL4QTLhRmb1R3byhSI", + value: "!(rotunda-48.14.1.9.0.chu-2bf.pob-17ea.rot-1f7)!", + result: { + word: "rotunda", + correct: 14, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "17.02.2025", + }, + }, + { + date: "17.02.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjZx0CduITLu9mcuQmM00icwNnLw4yNuEjL2EjL4QTLhRmb1R3byhSI", + value: "!(rotunda-48.16.1.7.0.spr-42d.ron-2.t-1f7)!", + result: { + word: "rotunda", + correct: 16, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "17.02.2025", + }, + }, + { + date: "17.02.2025", + nick: "Szuuz_Ekleer", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNmFjL2YWMtQ3by5iZ00Cd1tmLw4yMuMjL2EjL4QTLhRmb1R3byhSI", + value: "!(rotunda-48.16.3.3.0.kut-4f.rot-1f6.1f7)!", + result: { + word: "rotunda", + correct: 16, + position: 3, + incorrect: 3, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "17.02.2025", + }, + }, + { + date: "17.02.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3YWMtQ3by5SO0MTLvlGcukTNtsmez5CMuUTMuEjLyEjL4QTLhRmb1R3byhSI", + value: "!(rotunda-48.12.1.15.0.szk-59.pio-349.rot-1f7)!", + result: { + word: "rotunda", + correct: 12, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "17.02.2025", + }, + }, + { + date: "17.02.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjZx0CdvJnL1MGNtonc35yN50SdytmLw4yNuIjL0EjL4QTLhRmb1R3byhSI", + value: "!(rotunda-48.14.2.7.0.kru-97.wrz-4c5.rot-1f7)!", + result: { + word: "rotunda", + correct: 14, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "17.02.2025", + }, + }, + { + date: "17.02.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNmFTL09mLk1ib1JnLi1yYhRmLlNWZx0ibvBnL3EGNx0yak9mLi1SeyVnLjZTYtEmcn5CMuATMuYjL2IjL4QTLhRmb1R3byhSI", + value: + "!(rotunda-48.26.6.10.0.gra-a6c.ury-b.odk-14a7.pon-1ece.dac-b.run-d.ot-1f7)!", + result: { + word: "rotunda", + correct: 26, + position: 6, + incorrect: 10, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "17.02.2025", + }, + }, + { + date: "17.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3YWMtQ3by5yM5gTYx0ieyBnLw4COuAjLyEjL4QTLhRmb1R3byhSI", + value: "!(rotunda-48.12.0.8.0.prz-1a893.rot-1f7)!", + result: { + word: "rotunda", + correct: 12, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "17.02.2025", + }, + }, + { + date: "17.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3YWMtQ3buQWLuVncuQjZx0CZ5dnLw4SNuIjL0EjL4QTLhRmb1R3byhSI", + value: "!(rotunda-48.14.2.5.0.wyd-1f4.run-d.ot-1f7)!", + result: { + word: "rotunda", + correct: 14, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "17.02.2025", + }, + }, + { + date: "17.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNmFjL2YWMtQ3by5SZzgTLvJ3auQWYt8mcm5iYkFzMtAXe35CMuQTMuEjL3IjL4QTLhRmb1R3byhSI", + value: "!(rotunda-48.27.1.14.0.wyp-31db.fro-ad.kro-83e.rot-1f6.1f7)!", + result: { + word: "rotunda", + correct: 27, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "17.02.2025", + }, + }, + { + date: "17.02.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3YWMtQnLy0ibvJnL3YGOtc2bk5iM40icvBXZp5mLw4yNuUjL3EjL4QTLhRmb1R3byhSI", + value: "!(rotunda-48.17.5.7.0.niepor-82.dog-8f7.ron-2.t-1f7)!", + result: { + word: "rotunda", + correct: 17, + position: 5, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "17.02.2025", + }, + }, + { + date: "17.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjZx0CdvJnLzITL6VHcuUWNtE2a15CMuATMuIjLyEjL4QTLhRmb1R3byhSI", + value: "!(rotunda-48.12.2.10.0.uka-5e.puz-23.rot-1f7)!", + result: { + word: "rotunda", + correct: 12, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "17.02.2025", + }, + }, + { + date: "17.02.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjZx0Cdv5SNx0ib1JnLiBjMtQXYt5CMuITMuEjL0EjL4QTLhRmb1R3byhSI", + value: "!(rotunda-48.14.1.12.0.mat-20b.run-15.ot-1f7)!", + result: { + word: "rotunda", + correct: 14, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "17.02.2025", + }, + }, + { + date: "17.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3YWMtQ3by5iZx0ya1VmLw4yMuMjLwEjL4QTLhRmb1R3byhSI", + value: "!(rotunda-48.10.3.3.0.euk-1f.rot-1f7)!", + result: { + word: "rotunda", + correct: 10, + position: 3, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "17.02.2025", + }, + }, + { + date: "17.02.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNmFTL09mcukjY30CdhBnLw0Cdv5mL2EmYtUWat5CMuMTMuQjL0EjL4QTLhRmb1R3byhSI", + value: "!(rotunda-48.14.4.13.0.mie-ba6.not-0.pat-7b9.rot-1f7)!", + result: { + word: "rotunda", + correct: 14, + position: 4, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "17.02.2025", + }, + }, + { + date: "17.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNmFTL05SZ1ETLs9mcuIWNt42b35SYxITNto3bw5CMuATMuEjL2EjL4QTLhRmb1R3byhSI", + value: "!(rotunda-48.16.1.10.0.poz-521a.won-5b.rol-15e.t-1f7)!", + result: { + word: "rotunda", + correct: 16, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "17.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/szybko-poszlo-04-03-2025-diffle-difflepl-grywebowe-22-litery-w-3-slowach-large-g" +] = [ + { + date: "04.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4QjMtQmLilTMtcXYs5COiJTMtwWe35CMuUjLx4iNx4yM20SYrJXY39GZhJDOlUzQlgSI", + value: "!(ładowarka-63.16.1.5.0.wyl-12b8.law-19b.d-248)!", + result: { + word: "ładowarka", + correct: 16, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "04.03.2025", + }, + }, + { + date: "04.03.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDNy0CZugzYx0CchxmL3IzMtg2Yz4CMzQTLhlWbuAjLwEjLw4SNx4yM20SYrJXY39GZhJDOlUzQlgSI", + value: "!(ładowarka-63.15.0.10.0.mia-430.3ch-327.lap-1c8.d-248)!", + result: { + word: "ładowarka", + correct: 15, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "04.03.2025", + }, + }, + { + date: "04.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4QjMtQWYuMjZy0CZvxmLlBzMtUGbi5CMuUjLw4iNx4yM20SYrJXY39GZhJDOlUzQlgSI", + value: "!(ładowarka-63.16.0.5.0.ble-30e.lod-2f3.ad-248)!", + result: { + word: "ładowarka", + correct: 16, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "04.03.2025", + }, + }, + { + date: "04.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4QjMuI2Mx0CZhxmL1QzMt82ZuYjNy0ick9mL4UjNtEGbz5COlZTLyJ2buEmY5ETLllGcuAjLyIjL04SNy4yM20SYrJXY39GZhJDOlUzQlgSI", + value: + "!(ładowarka-63.25.4.22.0.pie-19ba.obr-6e8.sla-658.odr-266.go-345.lad-13b.248)!", + result: { + word: "ładowarka", + correct: 25, + position: 4, + incorrect: 22, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 51, + date: "04.03.2025", + }, + }, + { + date: "04.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDNy0CZhxmLxIWMtMXYt5CZ10ie5xmLhFDOt8Gbn5iZiJTL1h2YuAjLzEjLy4yMy4yM20SYrJXY39GZhJDOlUzQlgSI", + value: "!(ładowarka-63.23.2.13.0.chu-2bf.glo-81a.lyz-5d.mas-1b1.lad-248)!", + result: { + word: "ładowarka", + correct: 23, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "04.03.2025", + }, + }, + { + date: "04.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4QjMtQWYs5CN3QTLvxGcugTOt8me65CMukjLw4CNx4yM20SYrJXY39GZhJDOlUzQlgSI", + value: "!(ładowarka-63.14.0.9.0.zzo-98.plo-474.lad-248)!", + result: { + word: "ładowarka", + correct: 14, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "04.03.2025", + }, + }, + { + date: "04.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4QjMtQmL3UDNtsWYuQDNtc3bs5yN3IWMtMXe35CMucjLy4SOx4yM20SYrJXY39GZhJDOlUzQlgSI", + value: "!(ładowarka-63.19.2.7.0.wys-1b77.low-44.ak-457.d-248)!", + result: { + word: "ładowarka", + correct: 19, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "04.03.2025", + }, + }, + { + date: "04.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO0ITLkFGbuQ2M40CZhJnLkhTMtA3ch5CMukjLz4CNx4yM20SYrJXY39GZhJDOlUzQlgSI", + value: "!(ładowarka-63.14.3.9.0.asp-18d.rad-83d.lad-248)!", + result: { + word: "ładowarka", + correct: 14, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "04.03.2025", + }, + }, + { + date: "04.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO0ITLkFGbuYTNl1Cbi9mLxEjMtEGZ15CZxczMtoncw5CMukjL14SOx4yM20SYrJXY39GZhJDOlUzQlgSI", + value: "!(ładowarka-63.19.5.9.0.prz-371d.uda-211.obl-e56.lad-248)!", + result: { + word: "ładowarka", + correct: 19, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "04.03.2025", + }, + }, + { + date: "04.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO0IjL0MjMtQWYs5iMzMTMtMXe35CMucjLw4COx4yM20SYrJXY39GZhJDOlUzQlgSI", + value: "!(ładowarka-63.18.0.7.0.wys-1332.lad-234.248)!", + result: { + word: "ładowarka", + correct: 18, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "04.03.2025", + }, + }, + { + date: "04.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDNy0CZhxmL5MTL3JHduUTYtE2dn5iN0UWLwN3duAjL0EjL24iNx4yM20SYrJXY39GZhJDOlUzQlgSI", + value: "!(ładowarka-63.16.6.14.0.wsp-e46.gwa-a5.trw-39.lad-248)!", + result: { + word: "ładowarka", + correct: 16, + position: 6, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "04.03.2025", + }, + }, + { + date: "04.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4QjMtQWYs5iNx0yY39mLiRmMt8mc35iM2UTNto3bw5CN2QWLyFWbuAjLwEjLy4yMy4yM20SYrJXY39GZhJDOlUzQlgSI", + value: "!(ładowarka-63.23.2.10.0.mar-d64.poz-5562.wro-2db.owc-16.lad-248)!", + result: { + word: "ładowarka", + correct: 23, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "04.03.2025", + }, + }, + { + date: "04.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4QjMtQWYs5CMjNTLh12cuUzYx0iYhJnLzkDOhFTL6JHcuAjL1EjLz4SOx4yM20SYrJXY39GZhJDOlUzQlgSI", + value: "!(ładowarka-63.19.3.15.0.prz-1a893.rab-1c5.sma-3c0.lad-248)!", + result: { + word: "ładowarka", + correct: 19, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "04.03.2025", + }, + }, + { + date: "04.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO0ITLk5iY5ETL35SN0QTLzFGbugTOt8me65CMucjLw4CMy4yM20SYrJXY39GZhJDOlUzQlgSI", + value: "!(ładowarka-63.20.0.7.0.zzo-98.las-445.w-19b.d-248)!", + result: { + word: "ładowarka", + correct: 20, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "04.03.2025", + }, + }, + { + date: "04.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO0ITLkFGbucDOy0SesBnLhJTOx0SZpdnLmlDNt8Gb65CMugjLy4yNx4yM20SYrJXY39GZhJDOlUzQlgSI", + value: "!(ładowarka-63.17.2.8.0.zlo-49f.wie-192a.ply-287.lad-248)!", + result: { + word: "ładowarka", + correct: 17, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "04.03.2025", + }, + }, + { + date: "04.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDNy0CZhxmL1MWOtQWYy5SNxMTLlxmYuQDZ20ybstmL2MTLvxGZuMWYiRTLk9GcuAjL1EjL24yNy4yM20SYrJXY39GZhJDOlUzQlgSI", + value: + "!(ładowarka-63.27.6.15.0.pod-4bac.dlo-36.klo-6d4.ble-315.rad-9c5.lad-248)!", + result: { + word: "ładowarka", + correct: 27, + position: 6, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 48, + date: "04.03.2025", + }, + }, + { + date: "04.03.2025", + nick: "Tysiek", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4QjMtQmL1IjMtcXYs5COidTMtw2br5SO4ETLs9meuAjLwEjLx4iMy4yM20SYrJXY39GZhJDOlUzQlgSI", + value: "!(ładowarka-63.22.1.10.0.zol-189.kol-17b8.law-225.d-248)!", + result: { + word: "ładowarka", + correct: 22, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "04.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/szybko-poszlo-dzisiaj-deg-deg-21-01-2025-diffle-difflepl-grywebowe-25-liter-w-3-" +] = [ + { + date: "21.01.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxcDNtUHbugDNkFTLu9GcukTNmJTLu92auAjL34CMugTMuEjMtk3dv52b0VHbwhSI", + value: "!(plutonowy-21.18.0.7.0.kon-2f59.pon-1d48.lu-471)!", + result: { + word: "plutonowy", + correct: 18, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "21.01.2025", + }, + }, + { + date: "21.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM3QjLhVjMtUHbw5SNiNTLuV2ZuATZ40ydv5mL2YTNx0ievJnLw4CMx4SMuMjMuEjMtk3dv52b0VHbwhSI", + value: "!(plutonowy-21.23.1.10.0.roz-1566.now-8e0.gen-3b5.plu-25a.471)!", + result: { + word: "plutonowy", + correct: 23, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "21.01.2025", + }, + }, + { + date: "21.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM3QTL1xGcuUDOy0ibvRnLlhDNtwWYu5yYzMWLll2duAjL14SNuQjMuEjMtk3dv52b0VHbwhSI", + value: "!(plutonowy-21.24.5.5.0.wie-c3c.nal-48e.ton-285.plu-471)!", + result: { + word: "plutonowy", + correct: 24, + position: 5, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "21.01.2025", + }, + }, + { + date: "21.01.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM3QTL1xmLiRGZx0ibuEGZyITLr9GcuAjL34yMukTMuEjMtk3dv52b0VHbwhSI", + value: "!(plutonowy-21.19.3.7.0.pok-22da.n-1ddb.lu-471)!", + result: { + word: "plutonowy", + correct: 19, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "21.01.2025", + }, + }, + { + date: "21.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzN00Sds5CO0QWMt42bw5CZyQTLyB3cuAjL54SMugTMuEjMtk3dv52b0VHbwhSI", + value: "!(plutonowy-21.18.1.9.0.spr-42d.pon-1d48.lu-471)!", + result: { + word: "plutonowy", + correct: 18, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "21.01.2025", + }, + }, + { + date: "21.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzN04CMzQTL15CN5ETLvxGcuAjL04SMugTMuEjMtk3dv52b0VHbwhSI", + value: "!(plutonowy-21.18.1.4.0.plo-194.u-430.471)!", + result: { + word: "plutonowy", + correct: 18, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "21.01.2025", + }, + }, + { + date: "21.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzN04iZl1SdsBnL5QTL0V3auYWM2ETLyR3cuYmYy0SdoNmLw4SMx4iMuIjMuEjMtk3dv52b0VHbwhSI", + value: "!(plutonowy-21.22.2.11.0.chu-2bf.str-161f.kut-49.plu-ef.471)!", + result: { + word: "plutonowy", + correct: 22, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "21.01.2025", + }, + }, + { + date: "21.01.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM3QTL1xmL5QzMt8Waw5SO10ya6NnLw4yMx4iMuUTMuEjMtk3dv52b0VHbwhSI", + value: "!(plutonowy-21.15.2.13.0.szk-59.pio-349.lu-471)!", + result: { + word: "plutonowy", + correct: 15, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "21.01.2025", + }, + }, + { + date: "21.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzN04yN3QTL1xmLzkDOhFTL6JHcuAjL34yMukTMuEjMtk3dv52b0VHbwhSI", + value: "!(plutonowy-21.19.3.7.0.prz-1a893.lu-477.471)!", + result: { + word: "plutonowy", + correct: 19, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "21.01.2025", + }, + }, + { + date: "21.01.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM3QTL1xmLiVTYx0CbvBnLyEWMtUHaj5iY5IWLz92auAjYx0Cd1JmL1gTL0VnbuMmNh1SYydmLw4yMx4iMuYjMuEjMtk3dv52b0VHbwhSI", + value: + "!(plutonowy-21.26.2.13.0.gra-a6c.nut-85.but-1b0.kos-b9b.chu-1a2.pol-1a5b.lu-471)!", + result: { + word: "plutonowy", + correct: 26, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "21.01.2025", + }, + }, + { + date: "21.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxcDNtUHbw5iNhJWLllWbuAjL54iMuITMuEjMtk3dv52b0VHbwhSI", + value: "!(plutonowy-21.12.2.9.0.mie-ba6.plu-471)!", + result: { + word: "plutonowy", + correct: 12, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "21.01.2025", + }, + }, + { + date: "21.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxcDNuAzM00SduUDZt8Gbw5CO2QTLoN2MuQjZtQ3bs5SNy0ib5RnL0UDNx0ich1mLw4iMx4yMukjMuEjMtk3dv52b0VHbwhSI", + value: + "!(plutonowy-21.29.3.12.0.mar-1454.tyn-25.lot-f4.3ch-468.plo-d5.u-430.471)!", + result: { + word: "plutonowy", + correct: 29, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 44, + date: "21.01.2025", + }, + }, + { + date: "21.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzN00SdsBnL1QWLu9GduQTOlFTLyF2augTY00SblRmLw4SMx4CMuAjMuEjMtk3dv52b0VHbwhSI", + value: "!(plutonowy-21.20.0.11.0.dem-4a8.kar-1e94.ton-d5.plu-471)!", + result: { + word: "plutonowy", + correct: 20, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "21.01.2025", + }, + }, + { + date: "21.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzN00SdsBnL0E2Mtg2Yz4SN4ITLu9GduMTY10CdvZmLlFzMt4Wej5CMlhTL39mbuQjZx0CZ5dnLw4iMx4SMuIzMuEjMtk3dv52b0VHbwhSI", + value: + "!(plutonowy-21.32.1.12.0.wyd-1f4.now-8e0.cyn-31e.fot-5a3.ton-285.3ch-3a4.plu-471)!", + result: { + word: "plutonowy", + correct: 32, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "21.01.2025", + }, + }, + { + date: "21.01.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM3QTL15CNmZTLhxmL2YTMt8WauQjMm1ydvBnLx4CMx4CMucjMuEjMtk3dv52b0VHbwhSI", + value: "!(plutonowy-21.27.0.10.1.pow-f24.io-166.la-6f4.u-471)!", + result: { + word: "plutonowy", + correct: 27, + position: 0, + incorrect: 10, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 37, + date: "21.01.2025", + }, + }, + { + date: "21.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxcDNtUnLkJTMt8GbuEWMyUTL69GcuAjL24SMucTMuEjMtk3dv52b0VHbwhSI", + value: "!(plutonowy-21.17.1.6.0.poz-521a.lo-12d.u-471)!", + result: { + word: "plutonowy", + correct: 17, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "21.01.2025", + }, + }, + { + date: "21.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxcDNuAzM00SdsBnLmFTLrVXZuAjL14SMugTMuEjMtk3dv52b0VHbwhSI", + value: "!(plutonowy-21.18.1.5.0.euk-1f.plu-430.471)!", + result: { + word: "plutonowy", + correct: 18, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "21.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/tak-zimowo-wieloznaczne-28-12-2024-diffle-difflepl-grywebowe-22-litery-w-2-slowa" +] = [ + { + date: "28.12.2024", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ10CajVnLyImNtE2dr5CMuATMuMjL54yM2MTLhtGdhh2Y1hSI", + value: "!(uchatka-363.9.3.10.0.kwa-6b2.uch-5f)!", + result: { + word: "uchatka", + correct: 9, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "28.12.2024", + }, + }, + { + date: "28.12.2024", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVTLoNWduUTMl1SYoNmLzkTMtE2d05COjJWLnFmbuUjL4EjLz4SOx4yM2MTLhtGdhh2Y1hSI", + value: "!(uchatka-363.19.3.18.5.nag-bc8.twa-193.cha-e15.uch-5f)!", + result: { + word: "uchatka", + correct: 19, + position: 3, + incorrect: 18, + knownIncorrect: 5, + totalWords: 4, + totalLetters: 40, + date: "28.12.2024", + }, + }, + { + date: "28.12.2024", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWNtg2Y15yN40Sds5iMwYmMt42br5CMugjLx4yMx4yM2MTLhtGdhh2Y1hSI", + value: "!(uchatka-363.13.1.8.0.kon-2f02.lu-87.uch-5f)!", + result: { + word: "uchatka", + correct: 13, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "28.12.2024", + }, + }, + { + date: "28.12.2024", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVTLoNWduIjY3EWMtoncw5CMugjLy4CMx4yM2MTLhtGdhh2Y1hSI", + value: "!(uchatka-363.10.2.8.0.prz-1a7b2.uch-5f)!", + result: { + word: "uchatka", + correct: 10, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "28.12.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/tia-28-02-2025-flag-pl-diffle-difflepl-grywebowe-23-litery-w-3-slowach-large-gre" +] = [ + { + date: "28.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYt0WduEWLs9mcuQzNwITLjl3duAjLzEjLw4CMx4SO10yah1WdyhSI", + value: "!(rumak-59.10.0.13.0.wyc-2074.rol-a.um-b)!", + result: { + word: "rumak", + correct: 10, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "28.02.2025", + }, + }, + { + date: "28.02.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYt0Wdy5CMt0Wdk5yYzQzMtM3bw5CMugjLw4CMx4SO10yah1WdyhSI", + value: "!(rumak-59.10.0.8.0.pos-343c.dum-0.rum-b)!", + result: { + word: "rumak", + correct: 10, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "28.02.2025", + }, + }, + { + date: "28.02.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKi1Sb1JnL4UjMy0yavBnLw4iNuIjL34SO10yah1WdyhSI", + value: "!(rumak-59.7.2.6.0.pok-2258.rum-b)!", + result: { + word: "rumak", + correct: 7, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "28.02.2025", + }, + }, + { + date: "28.02.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKi1Sb1JnLhRmMy0yavBnLw4COuEjL34SO10yah1WdyhSI", + value: "!(rumak-59.7.1.8.0.pok-22da.rum-b)!", + result: { + word: "rumak", + correct: 7, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "28.02.2025", + }, + }, + { + date: "28.02.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYt0WduI2Nx0iY5JnLkJDNtIHcz5CMuITMuEjL54SO10yah1WdyhSI", + value: "!(rumak-59.9.1.12.0.spr-42d.ryb-17b.um-b)!", + result: { + word: "rumak", + correct: 9, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "28.02.2025", + }, + }, + { + date: "28.02.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYt0Wdy5iNwMTL1J3ZucjNtMXdw5iZiJTL1h2YuAjL0EjLw4iMx4SO10yah1WdyhSI", + value: "!(rumak-59.12.0.14.0.chu-2bf.pus-67.gru-306.rum-b)!", + result: { + word: "rumak", + correct: 12, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "28.02.2025", + }, + }, + { + date: "28.02.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYt0Wdy5SO0MTLvlGcukTNtsmez5CMucTMuEjL44SO10yah1WdyhSI", + value: "!(rumak-59.8.1.17.0.szk-59.pio-349.rum-b)!", + result: { + word: "rumak", + correct: 8, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "28.02.2025", + }, + }, + { + date: "28.02.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWLtVnLlFmMt4WYy5SYxczMtoncw5CMuETMuAjL54SO10yah1WdyhSI", + value: "!(rumak-59.9.0.11.0.prz-371a.ran-2ae.um-b)!", + result: { + word: "rumak", + correct: 9, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "28.02.2025", + }, + }, + { + date: "28.02.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKi1Sb1JnL2EmYtUWat5CMuETMuEjL34SO10yah1WdyhSI", + value: "!(rumak-59.7.1.11.0.mie-ba6.rum-b)!", + result: { + word: "rumak", + correct: 7, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "28.02.2025", + }, + }, + { + date: "28.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWLtVncuYTYz0ybytmLzkDOhFTL6JHcuAjLzEjLx4SMx4SO10yah1WdyhSI", + value: "!(rumak-59.11.1.13.0.prz-1a893.kro-3a6.rum-b)!", + result: { + word: "rumak", + correct: 11, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "28.02.2025", + }, + }, + { + date: "28.02.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKi1Sb1JnL4IjMtQXYt5CMuITMuEjL34SO10yah1WdyhSI", + value: "!(rumak-59.7.1.12.0.mat-228.rum-b)!", + result: { + word: "rumak", + correct: 7, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "28.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/to-nie-fair-za-szybko-18-01-2025-flag-pl-diffle-difflepl-grywebowe-17-liter-w-2-" +] = [ + { + date: "18.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMkZTLrl3duYTZ40icrNnLw4SOuEjL34COx0iehtWe3hSI", + value: "!(wykaz-18.7.1.9.0.skr-8e6.wyk-6d2)!", + result: { + word: "wykaz", + correct: 7, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "18.01.2025", + }, + }, + { + date: "18.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyQmNtsmL3MWMz0Cc5dnLw4SOuAjL44COx0iehtWe3hSI", + value: "!(wykaz-18.8.0.9.0.wyp-31c7.k-6d2)!", + result: { + word: "wykaz", + correct: 8, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "18.01.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMkZTLrl3duImNt0Wey5iZxYTMtQWY65yN1QTLvBXduAjL4EjLy4iMx4COx0iehtWe3hSI", + value: "!(wykaz-18.12.2.18.0.upo-457.zad-161f.rym-6b.wyk-6d2)!", + result: { + word: "wykaz", + correct: 12, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + }, + }, + { + date: "18.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIDZ20ya5dnL2gjMtkXb65CZyETLvp3cuMmYtEWZy5CMuATMuUjL54COx0iehtWe3hSI", + value: "!(wykaz-18.9.5.10.0.rea-bc.szo-12d.zmy-286.wyk-6d2)!", + result: { + word: "wykaz", + correct: 9, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "18.01.2025", + }, + }, + { + date: "18.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMkZTLrl3duUWY20ych1mLjhTMtE2d05COjJTL1h2YuAjLxEjLx4iMx4COx0iehtWe3hSI", + value: "!(wykaz-18.12.1.11.0.chu-2c8.twa-18c.mas-6ae.wyk-6d2)!", + result: { + word: "wykaz", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "18.01.2025", + }, + }, + { + date: "18.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMkZTLrl3duMWMx0ie5JnLw4CNuIjL44COx0iehtWe3hSI", + value: "!(wykaz-18.8.2.4.0.ryz-11c.wyk-6d2)!", + result: { + word: "wykaz", + correct: 8, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "18.01.2025", + }, + }, + { + date: "18.01.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyQmNtsWe35SZ0MTLvlGcukTNtsmez5CMuYTMuEjL54COx0iehtWe3hSI", + value: "!(wykaz-18.9.1.16.0.szk-59.pio-34e.wyk-6d2)!", + result: { + word: "wykaz", + correct: 9, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "18.01.2025", + }, + }, + { + date: "18.01.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMkZTLr5CO00iY5dnLw0Sb5RmLmNTYtMXYw5SO4EWLhJ3ZuAjLyEjLx4yMx4COx0iehtWe3hSI", + value: "!(wykaz-18.13.1.12.0.gra-a89.pas-a3f.dym-0.wyb-48.k-6d2)!", + result: { + word: "wykaz", + correct: 13, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "18.01.2025", + }, + }, + { + date: "18.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIDZ24yNwcTLrl3duQjZk1yc5RmLyI2NhFTL6JHcuAjL0EjLy4CNx4COx0iehtWe3hSI", + value: "!(wykaz-18.14.2.14.0.prz-1a7b2.dys-df4.wyk-707.6d2)!", + result: { + word: "wykaz", + correct: 14, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "18.01.2025", + }, + }, + { + date: "18.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIDZ20yauQjZx0CZ5dnLw4SNuAjL54COx0iehtWe3hSI", + value: "!(wykaz-18.9.0.5.0.wyd-1f4.k-6d2)!", + result: { + word: "wykaz", + correct: 9, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "18.01.2025", + }, + }, + { + date: "18.01.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIDZ20ya5dnLyAjZy0ibvtmLw4SNuEjL44COx0iehtWe3hSI", + value: "!(wykaz-18.8.1.5.0.kon-2f02.wyk-6d2)!", + result: { + word: "wykaz", + correct: 8, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "18.01.2025", + }, + }, + { + date: "18.01.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMkZTLr5iMjFDNtMXe35yNyYWL39GcuAjLzEjLy4SMx4COx0iehtWe3hSI", + value: "!(wykaz-18.11.2.13.0.pow-f27.wys-41c2.k-6d2)!", + result: { + word: "wykaz", + correct: 11, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "18.01.2025", + }, + }, + { + date: "18.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyQmNuATLrl3duUWNtE2a15CMugjLy4SMx4COx0iehtWe3hSI", + value: "!(wykaz-18.11.2.8.0.uka-5e.wyk-0.6d2)!", + result: { + word: "wykaz", + correct: 11, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "18.01.2025", + }, + }, + { + date: "18.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIDZ20ya5dnLiNmYtUWat5CMuATMuIjL34COx0iehtWe3hSI", + value: "!(wykaz-18.7.2.10.0.mie-bcb.wyk-6d2)!", + result: { + word: "wykaz", + correct: 7, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "18.01.2025", + }, + }, + { + date: "18.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyQmNtsWe35CM4UTLzF2auYWMtsWdl5CMukjLw4CMx4COx0iehtWe3hSI", + value: "!(wykaz-18.10.0.9.0.euk-1f.kas-580.wyk-6d2)!", + result: { + word: "wykaz", + correct: 10, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "18.01.2025", + }, + }, + { + date: "18.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyQmNtsWe35iY20Sb5JnL2UWLjlHduQWYxUTL69GcuAjLxEjLy4CNx4COx0iehtWe3hSI", + value: "!(wykaz-18.14.2.11.0.poz-51ad.tyc-e6.rym-6b.wyk-6d2)!", + result: { + word: "wykaz", + correct: 14, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "18.01.2025", + }, + }, + { + date: "18.01.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIDZ20ya5dnL5ATNx0SYrNnL2I2Mtkncn5COxYTL6VmYllmbuAjL0EjL04SMx4COx0iehtWe3hSI", + value: "!(wykaz-18.11.4.14.0.niebez-618.gry-3b6.ska-1509.wyk-6d2)!", + result: { + word: "wykaz", + correct: 11, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "18.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/troche-przekombinowalem-11-01-2025-diffle-difflepl-28-liter-w-4-slowach-large-gr" +] = [ + { + date: "11.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJjYuE2Yk5CNiVWLh5yNxIWL0p3cuAjL34iMukTMuETMt4WYtFmezhSI", + value: "!(szaman-11.19.2.7.0.szt-b17.a-eb4.dca.b2a)!", + result: { + word: "szaman", + correct: 19, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "11.01.2025", + }, + }, + { + date: "11.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJjYtEmez5iYjJWLllWbuAjL54SMuATMuETMt4WYtFmezhSI", + value: "!(szaman-11.10.1.9.0.mie-bcb.sza-b2a)!", + result: { + word: "szaman", + correct: 10, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "11.01.2025", + }, + }, + { + date: "11.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJjYucTYm1SY6NnLkJTMx0ieyBnLw4CMx4CMuQTMuETMt4WYtFmezhSI", + value: "!(szaman-11.14.0.10.0.prz-112d.sza-fa7.b2a)!", + result: { + word: "szaman", + correct: 14, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "11.01.2025", + }, + }, + { + date: "11.01.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJjYuE2Yk5yNhZWLhp3cuIDMmJTLu92auAjL44iMugTMuETMt4WYtFmezhSI", + value: "!(szaman-11.18.2.8.0.kon-2f02.sza-fa7.dca.b2a)!", + result: { + word: "szaman", + correct: 18, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "11.01.2025", + }, + }, + { + date: "11.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYyImL3EmZtEmez5COjJTL1h2YuAjL54SMuITMuETMt4WYtFmezhSI", + value: "!(szaman-11.12.1.9.0.chu-2c8.sza-fa7.b2a)!", + result: { + word: "szaman", + correct: 12, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "11.01.2025", + }, + }, + { + date: "11.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYyImLxcDOx0SY65iZlNTLyB3cuAjL44SMuUTMuETMt4WYtFmezhSI", + value: "!(szaman-11.15.1.8.0.spr-3ef.za-1871.b2a)!", + result: { + word: "szaman", + correct: 15, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "11.01.2025", + }, + }, + { + date: "11.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmMi1SYugjMx0Sb65iMtA3bz5CN50SdytmLw4yMx4SMuITMuETMt4WYtFmezhSI", + value: "!(szaman-11.12.1.13.0.kru-94.sop-2.zm-128.a-b2a)!", + result: { + word: "szaman", + correct: 12, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "11.01.2025", + }, + }, + { + date: "11.01.2025", + nick: "MarianTonczyk", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmMi1SY6NnL2ETLtVHduMjM0ETLvJHcuAjL44CMuETMuETMt4WYtFmezhSI", + value: "!(szaman-11.11.0.8.0.pro-1423.tum-16.sza-b2a)!", + result: { + word: "szaman", + correct: 11, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "11.01.2025", + }, + }, + { + date: "11.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJjYuEzN4EjLkJDNtEmez5CNmFTLkl3duAjL54SMucTMuETMt4WYtFmezhSI", + value: "!(szaman-11.17.1.9.0.wyd-1f4.sza-42d.1871.b2a)!", + result: { + word: "szaman", + correct: 17, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "11.01.2025", + }, + }, + { + date: "11.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJjYuEzN4ETLhp3cuQWYxUTL69GcuAjL34SMuQTMuETMt4WYtFmezhSI", + value: "!(szaman-11.14.1.7.0.poz-51ad.sza-1871.b2a)!", + result: { + word: "szaman", + correct: 14, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "11.01.2025", + }, + }, + { + date: "11.01.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmMi1SY6NnLlRzMt8Waw5SO10ya6NnLw4SNx4SMuETMuETMt4WYtFmezhSI", + value: "!(szaman-11.11.1.15.0.szk-59.pio-34e.sza-b2a)!", + result: { + word: "szaman", + correct: 11, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "11.01.2025", + }, + }, + { + date: "11.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJjYtEmez5CNjJWMtsWY65iMidTYx0ieyBnLw4iMx4SMuETMuETMt4WYtFmezhSI", + value: "!(szaman-11.11.1.12.0.prz-1a7b2.zak-1bc4.sza-b2a)!", + result: { + word: "szaman", + correct: 11, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "11.01.2025", + }, + }, + { + date: "11.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJjYuE2Yk1SY6NnLmFTLrVXZuAjL44CMuQTMuETMt4WYtFmezhSI", + value: "!(szaman-11.14.0.8.0.euk-1f.sza-dca.b2a)!", + result: { + word: "szaman", + correct: 14, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "11.01.2025", + }, + }, + { + date: "11.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYyIWLhp3cucDZ00SZp5CNwITL11meuAjL54SMuMTMuETMt4WYtFmezhSI", + value: "!(szaman-11.13.1.9.0.zmu-204.ie-4d7.sza-b2a)!", + result: { + word: "szaman", + correct: 13, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "11.01.2025", + }, + }, + { + date: "11.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJjYuMDN40SY6NnLwgTNtMXYr5SY5IWLhp3YuYWNx0iepZmLw4SNx4iMucTMuETMt4WYtFmezhSI", + value: "!(szaman-11.17.2.15.0.fiz-15f.cza-b9a.kas-580.sza-843.b2a)!", + result: { + word: "szaman", + correct: 17, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "11.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/trzeba-pokombinowac-20-01-2025-diffle-difflepl-grywebowe-32-litery-w-4-slowach-2" +] = [ + { + date: "20.01.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY1QGMx4SO1QGMx0ieyBnLmJTYtoXY65CMzQTLhlWbuAjLwEjLx4SMy4CMy0yalRXeDJUJ1MUJlpncwhSI", + value: "!(przeżytek-20.21.1.10.0.mia-430.zaz-a2f.prz-10d59.10d5c)!", + result: { + word: "przeżytek", + correct: 21, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "20.01.2025", + }, + }, + { + date: "20.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWNkBTMtoncw5SY5MWMtQWY65SZxQTL6VmaugDO2ETLrFmeuAjLwEjLx4iNx4CMy0yalRXeDJUJ1MUJlpncwhSI", + value: "!(przeżytek-20.16.1.10.0.zak-1688.jez-41e.zad-1c9a.prz-10d5c)!", + result: { + word: "przeżytek", + correct: 16, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "20.01.2025", + }, + }, + { + date: "20.01.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY1QGMx4SMmNGMx0ieyBnLkhDZwETL69mcuITMtIXe65iYyITLzlXbuIzMzETLzl3duAjL2EjLx4yMy4CMy0yalRXeDJUJ1MUJlpncwhSI", + value: + "!(przeżytek-20.23.1.16.0.wys-1332.mys-22b.zyr-12.roz-10d8d.prz-10cf1.10d5c)!", + result: { + word: "przeżytek", + correct: 23, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "20.01.2025", + }, + }, + { + date: "20.01.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWNkBTMtoncuEjNjVTL69GcuQDZy0Se6VnLkZjNtoncn5yMy0CZuATLslneuQTO10Se6NmL4kTLvpneuAjL1EjLw4COz4CMy0yalRXeDJUJ1MUJlpncwhSI", + value: + "!(przeżytek-20.38.0.15.0.zzo-98.czy-594.zyl-0.d-23.grz-66d.uzy-2d4.poz-5c61.rz-10d5c)!", + result: { + word: "przeżytek", + correct: 38, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 53, + date: "20.01.2025", + }, + }, + { + date: "20.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY1QGMx0ieyBnL5MjMtQXZ65yY1UjLzUGNtg2Yz4yY5gjYtoncuQGM10yc1BnL4QzNtEGb65SM3gTLlp3cuATM1ETLll2duAjL0IjL04COy4CMy0yalRXeDJUJ1MUJlpncwhSI", + value: + "!(przeżytek-20.28.4.24.0.wie-1510.sze-871.zla-748.pus-50d.rz-b89c.3ch-4e3.55c.zet-239.prz-10d5c)!", + result: { + word: "przeżytek", + correct: 28, + position: 4, + incorrect: 24, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 56, + date: "20.01.2025", + }, + }, + { + date: "20.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjVDZwETL6JHcukTM00CbvpnL4UDNx0icwNnLyITNtonc05iZiJTL1h2YuAjL1EjLy4SOx4CMy0yalRXeDJUJ1MUJlpncwhSI", + value: + "!(przeżytek-20.19.2.15.0.chu-2bf.trz-522.spr-1458.zol-419.prz-10d5c)!", + result: { + word: "przeżytek", + correct: 19, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "20.01.2025", + }, + }, + { + date: "20.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWNkBTMtoncw5CZh1SY6JnL1ADZtUmc65iMjFWLvJ3auAjLxEjLw4SOx4CMy0yalRXeDJUJ1MUJlpncwhSI", + value: "!(przeżytek-20.19.0.11.0.kro-ac2.zre-d05.rza-ad.prz-10d5c)!", + result: { + word: "przeżytek", + correct: 19, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "20.01.2025", + }, + }, + { + date: "20.01.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY1QGMx0ieugzMyMTLvJnLidTNtIXaw5SMhFTLlpXduAjL0EjLw4SOx4CMy0yalRXeDJUJ1MUJlpncwhSI", + value: "!(przeżytek-20.19.0.14.0.uze-1a1.pir-57b.ro-3238.z-10d5c)!", + result: { + word: "przeżytek", + correct: 19, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "20.01.2025", + }, + }, + { + date: "20.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjVDZwEjLzcDZwETL6JnLwYGNtQWZw5CZ4ETLwNXYuAjLzEjLx4SMy4CMy0yalRXeDJUJ1MUJlpncwhSI", + value: "!(przeżytek-20.21.1.13.0.asp-18d.ped-4f0.rz-10d73.10d5c)!", + result: { + word: "przeżytek", + correct: 21, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "20.01.2025", + }, + }, + { + date: "20.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWNkBTMuMTO4EWMtoncw5CMucjLw4SNx4CMy0yalRXeDJUJ1MUJlpncwhSI", + value: "!(przeżytek-20.15.0.7.0.prz-1a893.10d5c)!", + result: { + word: "przeżytek", + correct: 15, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "20.01.2025", + }, + }, + { + date: "20.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWNkBTMtoncw5CO4ITLvJXbuEWMh1ieytmLxgTLhpncuUWYtUme35yM3MTLs9meuAjLzEjL04iMy4CMy0yalRXeDJUJ1MUJlpncwhSI", + value: + "!(przeżytek-20.22.4.13.0.zol-373.wze-ae.rza-81.krz-a1a.mro-288.prz-10d5c)!", + result: { + word: "przeżytek", + correct: 22, + position: 4, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "20.01.2025", + }, + }, + { + date: "20.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY1QGMx0ieyBnLihTL6J3duUWM10ieydmLmlDNt8Gb65CMukjLw4COx4CMy0yalRXeDJUJ1MUJlpncwhSI", + value: "!(przeżytek-20.18.0.9.0.zlo-49f.grz-51e.wrz-8b.prz-10d5c)!", + result: { + word: "przeżytek", + correct: 18, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "20.01.2025", + }, + }, + { + date: "20.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY1QGMx4CZlNGMx4CO3QGMx0iey5yYhJGNtQ2bw5CMukjLw4CNy4CMy0yalRXeDJUJ1MUJlpncwhSI", + value: "!(przeżytek-20.24.0.9.0.pod-4bac.rz-10d78.10ced.10d5c)!", + result: { + word: "przeżytek", + correct: 24, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "20.01.2025", + }, + }, + { + date: "20.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWNkBTMtoncw5yNh1Sd6JnLihTL6J3duQ2Nj1SZypnL2MGNtI3br5CMzYTLvJneuAjL0EjLx4COy4CMy0yalRXeDJUJ1MUJlpncwhSI", + value: + "!(przeżytek-20.28.1.14.0.zro-630.kor-4c6.zre-c7d.wrz-8b.rzu-a7.prz-10d5c)!", + result: { + word: "przeżytek", + correct: 28, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "20.01.2025", + }, + }, + { + date: "20.01.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjVDZwETL6JnLycjNtMWYw5iN0UWLwN3duAjLyEjLw4iNx4CMy0yalRXeDJUJ1MUJlpncwhSI", + value: "!(przeżytek-20.16.0.12.0.wsp-e46.pac-672.rz-10d5c)!", + result: { + word: "przeżytek", + correct: 16, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "20.01.2025", + }, + }, + { + date: "20.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWNkBTMtoncw5CN5UTL5p3YugTOt8me65CMucjLw4iNx4CMy0yalRXeDJUJ1MUJlpncwhSI", + value: "!(przeżytek-20.16.0.7.0.zzo-98.czy-594.prz-10d5c)!", + result: { + word: "przeżytek", + correct: 16, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "20.01.2025", + }, + }, + { + date: "20.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY1QGMx4SMiN2Ntoncw5iNhJWLllWbuAjLxEjLy4yNx4CMy0yalRXeDJUJ1MUJlpncwhSI", + value: "!(przeżytek-20.17.2.11.0.mie-ba6.prz-7cb1.10d5c)!", + result: { + word: "przeżytek", + correct: 17, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "20.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/trzeba-pomyslec-deg-deg-27-01-2025-flag-pl-diffle-difflepl-grywebowe-26-liter-w-" +] = [ + { + date: "27.01.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWOwYmLkZDO40ievJnLwMDNtEWat5CMuYjLx4SOx4yNy0yN4UCNDVSY39Wb1p3byhSI", + value: "!(rozumować-27.19.1.6.0.mia-430.roz-886d.f09b)!", + result: { + word: "rozumować", + correct: 19, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "27.01.2025", + }, + }, + { + date: "27.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWOwYWL69mL4MDNtYWZuQTZt0WeuITMt0Wdy5iN3ETLyVXbuMTYtIWYk5SN4ITLpd3cuAjL4EjL04CM04yNy0yN4UCNDVSY39Wb1p3byhSI", + value: + "!(rozumować-27.40.4.18.0.swi-285.dab-a3.mur-176.rum-12.ym-e4.ef-438.oz-f09b)!", + result: { + word: "rozumować", + correct: 40, + position: 4, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 62, + date: "27.01.2025", + }, + }, + { + date: "27.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWOwYWL69mcuYGZyQTMtoncw5SMtM3b65SZ3MTLjFGbuAjLwEjLw4yMy4yNy0yN4UCNDVSY39Wb1p3byhSI", + value: "!(rozumować-27.23.0.10.0.lac-37e.zos-1.prz-142df.roz-f09b)!", + result: { + word: "rozumować", + correct: 23, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "27.01.2025", + }, + }, + { + date: "27.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKilDMm1ievJnLwM2Mt8Gb65iNhJWLllWbuAjLwEjL04yNx4yNy0yN4UCNDVSY39Wb1p3byhSI", + value: "!(rozumować-27.17.4.10.0.mie-ba6.zlo-3c0.roz-f09b)!", + result: { + word: "rozumować", + correct: 17, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "27.01.2025", + }, + }, + { + date: "27.01.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWOwYmL0IjMk5CMkNmNuImNyIjL4AjZi1ievJnLkNDZ00ievBnL4kTLvpneuAjL0EjLw4SM04yNy0yN4UCNDVSY39Wb1p3byhSI", + value: + "!(rozumować-27.41.0.14.0.zzo-98.poz-4d3d.roz-bf08.226b.6cd0.d224.f09b)!", + result: { + word: "rozumować", + correct: 41, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 55, + date: "27.01.2025", + }, + }, + { + date: "27.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWOwYWL69mL5IjMtMXdy5SZ50ieyBnLmVWLvpneuAjLzEjLx4COx4yNy0yN4UCNDVSY39Wb1p3byhSI", + value: "!(rozumować-27.18.1.13.0.zzo-ef.prz-9e.rus-229.oz-f09b)!", + result: { + word: "rozumować", + correct: 18, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "27.01.2025", + }, + }, + { + date: "27.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKilDMm1ievJnLx0ybsVnL5U2MtcnYv5CZ4ETLwNXYuAjLyEjLz4iMy4yNy0yN4UCNDVSY39Wb1p3byhSI", + value: "!(rozumować-27.22.3.12.0.asp-18d.obw-3e9.ulo-1.roz-f09b)!", + result: { + word: "rozumować", + correct: 22, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "27.01.2025", + }, + }, + { + date: "27.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY5AjZto3by5CZwMTL1p3cuYGMx0SYtVnL3MWMtoXdt5iZiJTL1h2YuAjLwEjLz4SMz4yNy0yN4UCNDVSY39Wb1p3byhSI", + value: + "!(rozumować-27.31.3.10.0.chu-2bf.muz-1c7.uma-10f.szu-30d.roz-f09b)!", + result: { + word: "rozumować", + correct: 31, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 44, + date: "27.01.2025", + }, + }, + { + date: "27.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKilDMm5CNyIDZuczYl1ievJnLzkDOhFTL6JHcuAjLzEjLw4iNy4yNy0yN4UCNDVSY39Wb1p3byhSI", + value: "!(rozumować-27.26.0.13.0.prz-1a893.roz-ec7.d224.f09b)!", + result: { + word: "rozumować", + correct: 26, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 39, + date: "27.01.2025", + }, + }, + { + date: "27.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWOwYmLjhTN40ievJnLzYWMt0WYn5yYlBTMx0ieyBnL0gzMt8Gb65iNyITLzlXbuAjLzEjLy4yMy4yNy0yN4UCNDVSY39Wb1p3byhSI", + value: + "!(rozumować-27.23.2.13.0.mys-226.zlo-384.prz-110ec.gam-1f3.roz-858c.f09b)!", + result: { + word: "rozumować", + correct: 23, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "27.01.2025", + }, + }, + { + date: "27.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWOwYWL69mcuMjNtU3Z65iN4QTLsFWbuUmZ50CajNnLkVTMtk2dv5yYwkTL0l3duAjL0EjLx4CMz4yNy0yN4UCNDVSY39Wb1p3byhSI", + value: + "!(rozumować-27.30.1.14.0.wyt-90c.owi-15d.sch-9fe.mal-486.zgu-63.roz-f09b)!", + result: { + word: "rozumować", + correct: 30, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 45, + date: "27.01.2025", + }, + }, + { + date: "27.01.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKilDMm1iev5CZm1Sd6JnLjhjMtUnck5iMzMTMtMXe35CMugjLw4SNy4yNy0yN4UCNDVSY39Wb1p3byhSI", + value: "!(rozumować-27.25.0.8.0.wys-1332.dru-28c.rzu-fd.oz-f09b)!", + result: { + word: "rozumować", + correct: 25, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "27.01.2025", + }, + }, + { + date: "27.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWOwYmLlhDNwEjLyQjYm5iY2IjMugTYxMTL69mcuUWMzETLy92auAjLxEjLx4COz4yNy0yN4UCNDVSY39Wb1p3byhSI", + value: "!(rozumować-27.38.1.11.0.kor-131e.roz-31a8.226b.fb42.1048e.f09b)!", + result: { + word: "rozumować", + correct: 38, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 50, + date: "27.01.2025", + }, + }, + { + date: "27.01.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWOwYWL69mcuITZ4ETLvJHcuMGOy0SdyRmLkNDZtUmc65SMhFTLlpXduAjL0EjLw4SNy4yNy0yN4UCNDVSY39Wb1p3byhSI", + value: + "!(rozumować-27.25.0.14.0.uze-1a1.zre-d3d.dru-28c.pro-18e2.roz-f09b)!", + result: { + word: "rozumować", + correct: 25, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "27.01.2025", + }, + }, + { + date: "27.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNx0ybp5yM10CbvpnLxY2MtI3bn5yYhJGNtQ2bw5CMuETMuIjL0EjL3ITLhJDOlUzQl8Wa6hSI", + value: "!(zioła-27.14.2.11.0.pod-4bac.gor-3f1.zol-53.io-16)!", + result: { + word: "zioła", + correct: 14, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "27.01.2025", + }, + }, + { + date: "27.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKilDMm1ievJnLmRmM0ETL6JHcuM2Yz0SY6NnL4kTLvpneuAjLyEjLw4yMy4yNy0yN4UCNDVSY39Wb1p3byhSI", + value: "!(rozumować-27.23.0.12.0.zzo-98.sza-3cc.prz-142df.roz-f09b)!", + result: { + word: "rozumować", + correct: 23, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "27.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ujdzie-22-01-2025-diffle-difflepl-grywebowe-23-litery-w-3-slowach-large-green-ci" +] = [ + { + date: "22.01.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKj1Ccp5SNh1ycvJnL5UjZy0ibvtmLw4SNuMjL1EjLyITLhR3cvBXayhSI", + value: "!(riposta-22.15.3.5.0.kon-2f59.ros-a5.ip-c)!", + result: { + word: "riposta", + correct: 15, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "22.01.2025", + }, + }, + { + date: "22.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYtAXay5SNzETLzlGbukjNy0Sb1JnL5YWOx0yavBnLw4SOuEjL0EjLyITLhR3cvBXayhSI", + value: "!(riposta-22.14.1.9.0.pok-19f9.rum-269.lis-135.rip-c)!", + result: { + word: "riposta", + correct: 14, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "22.01.2025", + }, + }, + { + date: "22.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWLwlmLmdTL0FmcuYWM20Cdh1mLw4iNuUjLyEjLyITLhR3cvBXayhSI", + value: "!(riposta-22.12.5.6.0.mat-61f.rat-7f.ip-c)!", + result: { + word: "riposta", + correct: 12, + position: 5, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "22.01.2025", + }, + }, + { + date: "22.01.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKj1CcpJnLhRmMy0yavBnLw4iNuEjLxEjLyITLhR3cvBXayhSI", + value: "!(riposta-22.11.1.6.0.pok-22da.rip-c)!", + result: { + word: "riposta", + correct: 11, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "22.01.2025", + }, + }, + { + date: "22.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYtAXay5COh1SdytmLw4iNuAjLwEjLyITLhR3cvBXayhSI", + value: "!(riposta-22.10.0.6.0.kru-a8.rip-c)!", + result: { + word: "riposta", + correct: 10, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "22.01.2025", + }, + }, + { + date: "22.01.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYtAXauYjMtM3by5SO0MTLvlGcukTNtsmez5CMuQTMuMjL1EjLyITLhR3cvBXayhSI", + value: "!(riposta-22.15.3.14.0.szk-59.pio-349.ros-26.ip-c)!", + result: { + word: "riposta", + correct: 15, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "22.01.2025", + }, + }, + { + date: "22.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWLwlmcuQ2My0ybpNnLiFWL0NXauMTNz0SYpNnLmJmMtUHaj5CMuETMuQjLxIjLyITLhR3cvBXayhSI", + value: "!(riposta-22.21.4.11.0.chu-2bf.sia-353.ist-ab.sio-23d.rip-c)!", + result: { + word: "riposta", + correct: 21, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "22.01.2025", + }, + }, + { + date: "22.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKj1CcpJnLkNWLzlGcuQmM00icwNnLw4SOuUjLzEjLyITLhR3cvBXayhSI", + value: "!(riposta-22.13.5.9.0.spr-42d.pis-cd.rip-c)!", + result: { + word: "riposta", + correct: 13, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "22.01.2025", + }, + }, + { + date: "22.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKj1CcpJnLhFjM10ievBnLw4SNuEjLxEjLyITLhR3cvBXayhSI", + value: "!(riposta-22.11.1.5.0.poz-521a.rip-c)!", + result: { + word: "riposta", + correct: 11, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "22.01.2025", + }, + }, + { + date: "22.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYtAXay5yM5gTYx0ieyBnLw4COuIjLwEjLyITLhR3cvBXayhSI", + value: "!(riposta-22.10.2.8.0.prz-1a893.rip-c)!", + result: { + word: "riposta", + correct: 10, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "22.01.2025", + }, + }, + { + date: "22.01.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYtAnLxITLrlmcuATLpJXYuMmNh1SYydmLw4iNuEjL2EjLyITLhR3cvBXayhSI", + value: "!(riposta-22.16.1.6.0.gra-a6c.ari-0.rik-21.p-c)!", + result: { + word: "riposta", + correct: 16, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "22.01.2025", + }, + }, + { + date: "22.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYtAXay5iMkRTLllmeuAjL34CMukjLyITLhR3cvBXayhSI", + value: "!(riposta-22.9.0.7.0.zie-4d2.rip-c)!", + result: { + word: "riposta", + correct: 9, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "22.01.2025", + }, + }, + { + date: "22.01.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYtAXay5iYh1CdzlmLiNWLp12auEzNx0CbvdXZp5mLw4SOuEjL2EjLyITLhR3cvBXayhSI", + value: "!(riposta-22.16.1.9.0.niewol-171.kmi-cb.ist-ab.rip-c)!", + result: { + word: "riposta", + correct: 16, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "22.01.2025", + }, + }, + { + date: "22.01.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKj1CcpJnL0IjZtc3bw5CMuATMuEjLwEjLyITLhR3cvBXayhSI", + value: "!(riposta-22.10.1.10.0.pow-f24.rip-c)!", + result: { + word: "riposta", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "22.01.2025", + }, + }, + { + date: "22.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYtAXauczYx0CZhJnLiFTLvJXauAjY30yY6NnLycTMtU3av5CMuETMuQjL4EjLyITLhR3cvBXayhSI", + value: "!(riposta-22.18.4.11.0.oku-172.szc-7b0.iro-1b.rad-1c7.ip-c)!", + result: { + word: "riposta", + correct: 18, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "22.01.2025", + }, + }, + { + date: "22.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYtAXay5iZx0ya1VmLw4CNuEjLxEjLyITLhR3cvBXayhSI", + value: "!(riposta-22.11.1.4.0.euk-1f.rip-c)!", + result: { + word: "riposta", + correct: 11, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "22.01.2025", + }, + }, + { + date: "22.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWLwlmcuYTYi1SZp1mLw4SOuIjLwEjLyITLhR3cvBXayhSI", + value: "!(riposta-22.10.2.9.0.mie-ba6.rip-c)!", + result: { + word: "riposta", + correct: 10, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "22.01.2025", + }, + }, + { + date: "22.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKj1CcpJnLhZTZx0ybyBnLw0CdpNnL0YTMtQXYw5yYxYTL6J3ZuIGZy0ybydnLw4SOuQjL0IjLyITLhR3cvBXayhSI", + value: + "!(riposta-22.24.4.9.0.wro-2db.grz-61c.pat-164.sit-0.pro-1e6a.rip-c)!", + result: { + word: "riposta", + correct: 24, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "22.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ultraomegaprosciuchne-szkoda-ze-nie-dla-mnie-12-03-2025-flag-pl-diffle-difflepl-" +] = [ + { + date: "12.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM00Cd1hmLzgTMtQXds5iNt4Gd15yNhFTLpd3ZuI2Mz0ib1ZmL2EWLtVHZuEjNz0Cdz9mLw4COx4yMuEjMuEzNtsWauRXdohSI", + value: + "!(hutnik-71.21.3.18.0.ost-361.dum-a6.fun-33b.gwi-1a7.utn-6.lut-183.hut-41)!", + result: { + word: "hutnik", + correct: 21, + position: 3, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNtQXdo5yM4ETL0VHbuQGZ00SauVnLj1ycp5mLhZTLvJXbuAjL54CMukTMuEzNtsWauRXdohSI", + value: "!(hutnik-71.19.0.9.0.mro-6a.nis-c.uni-4dd.lut-183.hut-41)!", + result: { + word: "hutnik", + correct: 19, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM00Cd1hmLzgTMtQXds5yYyETLu9GduADOz0yciFmLw4CMx4SMugTMuEzNtsWauRXdohSI", + value: "!(hutnik-71.18.1.10.0.abs-380.ton-12c.lut-183.hut-41)!", + result: { + word: "hutnik", + correct: 18, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQTL0VHaukDNz0ybpBnL5UTLrp3cuAjL2EjLy4SOuEzNtsWauRXdohSI", + value: "!(hutnik-71.9.2.16.0.szk-59.pio-349.hut-41)!", + result: { + word: "hutnik", + correct: 9, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM00Cd1hmL5ITMt4Wd05iM50yap5mLhRmMy0yavBnLw4SMx4yMuQTMuEzNtsWauRXdohSI", + value: "!(hutnik-71.14.3.11.0.pok-22da.nik-92.tun-129.hut-41)!", + result: { + word: "hutnik", + correct: 14, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNtQXdo5CZkRTLp5WduQmM00icwNnLw4CMx4CMuITMuEzNtsWauRXdohSI", + value: "!(hutnik-71.12.0.10.0.spr-42d.uni-4dd.hut-41)!", + result: { + word: "hutnik", + correct: 12, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQTL0VHauMDOx0Cd1xmLxMTMtQXdi5iYtQXdk5SZ40ydvRnLw4SMx4SMukTMuEzNtsWauRXdohSI", + value: "!(hutnik-71.19.1.11.0.tow-8e.dut-b.but-131.lut-183.hut-41)!", + result: { + word: "hutnik", + correct: 19, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM00Cd1hmLxEjMtg2Yz4iZiJTL1h2YuAjL24SMuITMuEzNtsWauRXdohSI", + value: "!(hutnik-71.12.1.6.0.chu-2bf.3ch-211.hut-41)!", + result: { + word: "hutnik", + correct: 12, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQTL0VHauMDOx0Cd1xmLhFzNz0ieyBnLw4CMx4CMuMTMuEzNtsWauRXdohSI", + value: "!(hutnik-71.13.0.10.0.prz-371a.lut-183.hut-41)!", + result: { + word: "hutnik", + correct: 13, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Swbd", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM00Cd1hmLxMTMtQXdi5iNkFTL1l2YugDO50ieyRnLw4CMx4SMuMTMuEzNtsWauRXdohSI", + value: "!(hutnik-71.13.1.10.0.trz-988.ciu-1d6.but-131.hut-41)!", + result: { + word: "hutnik", + correct: 13, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQTL0VHauMTO4EWMtoncw5CMugjLy4SOuEzNtsWauRXdohSI", + value: "!(hutnik-71.9.2.8.0.prz-1a893.hut-41)!", + result: { + word: "hutnik", + correct: 9, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM00Cd1hmLzgTMtQXds5CZkRTLp5WduQTY10ieyRXZp5mLw4iMx4SMugTMuEzNtsWauRXdohSI", + value: "!(hutnik-71.18.1.12.0.nietrz-5a4.uni-4dd.lut-183.hut-41)!", + result: { + word: "hutnik", + correct: 18, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM00Cd1hmLhNDNt42bt5yY2EWLhJ3ZuAjL24SMuATMuEzNtsWauRXdohSI", + value: "!(hutnik-71.10.1.6.0.gra-a6c.mon-43a.hut-41)!", + result: { + word: "hutnik", + correct: 10, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQTL0VHauUjMtQXdu5yM4ETL0VHbuQTNz0SdwNnLkRGNtkmb15iN40SYkpXZp5mLw4CMx4CMucjMuEzNtsWauRXdohSI", + value: + "!(hutnik-71.27.0.10.0.niezda-86.uni-4dd.spu-354.lut-183.nut-25.hut-41)!", + result: { + word: "hutnik", + correct: 27, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQTL0VHauYmMx0ib1RnLmFTLrVXZuAjL14CNuITMuEzNtsWauRXdohSI", + value: "!(hutnik-71.12.4.5.0.euk-1f.tun-12f.hut-41)!", + result: { + word: "hutnik", + correct: 12, + position: 4, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM00Cd1hmLzgTMtQXds5CZkRTLp5WdugzMy0yapBnLwEWLud2buQjZx0CZ5dnLw4yMx4CMuMjMuEzNtsWauRXdohSI", + value: + "!(hutnik-71.23.0.13.0.wyd-1f4.ogn-a0.pik-238.uni-4dd.lut-183.hut-41)!", + result: { + word: "hutnik", + correct: 23, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQTL0VHauMDOx0Cd1xmLkBTZi1ieyBnLw4iMx4CMuMTMuEzNtsWauRXdohSI", + value: "!(hutnik-71.13.0.12.0.prz-be0d.lut-183.hut-41)!", + result: { + word: "hutnik", + correct: 13, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNtQXdo5iNhJWLllWbuAjLwEjLy4COuEzNtsWauRXdohSI", + value: "!(hutnik-71.8.2.10.0.mie-ba6.hut-41)!", + result: { + word: "hutnik", + correct: 8, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQTL0VHauMDOx0Cd1xmLjJTMt42b05SMwETL0FWbuAjL34CMukTMuEzNtsWauRXdohSI", + value: "!(hutnik-71.19.0.7.0.mat-101.ton-12c.lut-183.hut-41)!", + result: { + word: "hutnik", + correct: 19, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Tysiek", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNtQXdo5CZzETLuVHduYTYi1SZp1mLw4iMx4yMuETMuEzNtsWauRXdohSI", + value: "!(hutnik-71.11.3.12.0.mie-ba6.tun-13d.hut-41)!", + result: { + word: "hutnik", + correct: 11, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM00Cd1hmLzgTMtQXds5CM4ITLrlmbuEWMyUTL69GcuAjL44iMuYTMuEzNtsWauRXdohSI", + value: "!(hutnik-71.16.2.8.0.poz-521a.nik-280.lut-183.hut-41)!", + result: { + word: "hutnik", + correct: 16, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "12.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/wreszcie-pierwszy-deg-deg-27-02-2025-diffle-difflepl-grywebowe-20-liter-w-3-slow" +] = [ + { + date: "27.02.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMwEWLy5CZkNjMtsWe35SO1YmMt42br5CMuYjLy4iMx4CO10yavJXe3hSI", + value: "!(wyrok-58.12.2.6.0.kon-2f59.wyk-23dd.r-a01)!", + result: { + word: "wyrok", + correct: 12, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "27.02.2025", + }, + }, + { + date: "27.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxATYuQDMh1ic5dnLjNDNtQXZy5CMugjLy4iMx4CO10yavJXe3hSI", + value: "!(wyrok-58.12.2.8.0.ret-43c.wyr-a04.a01)!", + result: { + word: "wyrok", + correct: 12, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "27.02.2025", + }, + }, + { + date: "27.02.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMwEWLyl3duMDNtIXej5CMjlzYtoncw5CMucjLx4CMx4CO10yavJXe3hSI", + value: "!(wyrok-58.10.1.7.0.prz-c9c0.cyr-43.wyr-a01)!", + result: { + word: "wyrok", + correct: 10, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "27.02.2025", + }, + }, + { + date: "27.02.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMwEWLyl3duYjNx0yavxmLw4SNuIjL34CO10yavJXe3hSI", + value: "!(wyrok-58.7.2.5.0.lok-166.wyr-a01)!", + result: { + word: "wyrok", + correct: 7, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "27.02.2025", + }, + }, + { + date: "27.02.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDMh1ic5dnLhRmMy0yavBnLw4iNuMjL34CO10yavJXe3hSI", + value: "!(wyrok-58.7.3.6.0.pok-22da.wyr-a01)!", + result: { + word: "wyrok", + correct: 7, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "27.02.2025", + }, + }, + { + date: "27.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDMh1ic5dnLk1ydvJnLmNGNtQXYt5CMugjLx4SMx4CO10yavJXe3hSI", + value: "!(wyrok-58.11.1.8.0.mat-4cf.row-d.wyr-a01)!", + result: { + word: "wyrok", + correct: 11, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "27.02.2025", + }, + }, + { + date: "27.02.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDMh1ic55SMk1icvdnLmJmMtUHaj5CMuATMuIjL54CO10yavJXe3hSI", + value: "!(wyrok-58.9.2.10.0.chu-2bf.wor-d1.yr-a01)!", + result: { + word: "wyrok", + correct: 9, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "27.02.2025", + }, + }, + { + date: "27.02.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxATYtIXe35SM4kTLvJ3auQmM00icwNnLw4SOuQjL54CO10yavJXe3hSI", + value: "!(wyrok-58.9.4.9.0.spr-42d.kro-981.wyr-a01)!", + result: { + word: "wyrok", + correct: 9, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "27.02.2025", + }, + }, + { + date: "27.02.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxATYtIXe35SO0MTLvlGcukTNtsmez5CMuYTMuIjL44CO10yavJXe3hSI", + value: "!(wyrok-58.8.2.16.0.szk-59.pio-349.wyr-a01)!", + result: { + word: "wyrok", + correct: 8, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "27.02.2025", + }, + }, + { + date: "27.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDMh1ic5dnL1ETL5t2cuMTO4EWMtoncw5CMuITMuIjL44CO10yavJXe3hSI", + value: "!(wyrok-58.8.2.12.0.prz-1a893.sky-15.wyr-a01)!", + result: { + word: "wyrok", + correct: 8, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "27.02.2025", + }, + }, + { + date: "27.02.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxATYtIXe35CNlJTLvJXdugjYt8mcz5SOjNjMtI3bw5yY2EWLhJ3ZuAjLwEjLx4iMx4CO10yavJXe3hSI", + value: "!(wyrok-58.12.1.10.0.gra-a6c.por-23c9.sro-b8.uro-2e4.wyr-a01)!", + result: { + word: "wyrok", + correct: 12, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 23, + date: "27.02.2025", + }, + }, + { + date: "27.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDMh1icuQjZx0CZ5dnLw4iNuAjL44CO10yavJXe3hSI", + value: "!(wyrok-58.8.0.6.0.wyd-1f4.r-a01)!", + result: { + word: "wyrok", + correct: 8, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "27.02.2025", + }, + }, + { + date: "27.02.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMwEWLy5COkhTMtsWe35iNhJWLllWbuAjLyEjLy4CMx4CO10yavJXe3hSI", + value: "!(wyrok-58.10.2.12.0.mie-ba6.wyk-18d8.r-a01)!", + result: { + word: "wyrok", + correct: 10, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "27.02.2025", + }, + }, + { + date: "27.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxATYtIXe35yNiRTLoN2MuYWMtsWdl5CMuYjLx4CMx4CO10yavJXe3hSI", + value: "!(wyrok-58.10.1.6.0.euk-1f.3ch-4b7.wyr-a01)!", + result: { + word: "wyrok", + correct: 10, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "27.02.2025", + }, + }, + { + date: "27.02.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMwEWLylnL5QWMt8mc35SYxczMtoncw5CMuATMuIjL54CO10yavJXe3hSI", + value: "!(wyrok-58.9.2.10.0.prz-371a.wro-1d9.yr-a01)!", + result: { + word: "wyrok", + correct: 9, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "27.02.2025", + }, + }, + { + date: "27.02.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxATYtIXeukDZx0ybydnL3MGNtcXZy5CMuYjLy4CMx4CO10yavJXe3hSI", + value: "!(wyrok-58.10.2.6.0.rew-4c7.wro-1d9.yr-a01)!", + result: { + word: "wyrok", + correct: 10, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "27.02.2025", + }, + }, + { + date: "27.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDMh1ic5dnLhFjM10ievBnLw4yNuEjL34CO10yavJXe3hSI", + value: "!(wyrok-58.7.1.7.0.poz-521a.wyr-a01)!", + result: { + word: "wyrok", + correct: 7, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "27.02.2025", + }, + }, + { + date: "27.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxATYtIXe35yNiZTLhp3cuIjNx0SZvBnLw4SOuEjL44CO10yavJXe3hSI", + value: "!(wyrok-58.8.1.9.0.poe-162.sza-6b7.wyr-a01)!", + result: { + word: "wyrok", + correct: 8, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "27.02.2025", + }, + }, + { + date: "27.02.2025", + nick: "ulsterboy", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxATYtInL4QGOx0ya5dnLmZWMtEWat5CMukjLz4CMx4CO10yavJXe3hSI", + value: "!(wyrok-58.10.3.9.0.mia-1ff.wyk-18d8.r-a01)!", + result: { + word: "wyrok", + correct: 10, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "27.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/wymeczone-strasznie-20-02-2025-diffle-difflepl-grywebowe-26-liter-w-3-slowach-la" +] = [ + { + date: "20.02.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlhTOx0SY6NnLidTLtVHbukTNmJTLu92auAjL24iMugTMuETNtonchlmb0FmezhSI", + value: "!(szatniarz-51.18.2.6.0.kon-2f59.lum-7b.sza-198e)!", + result: { + word: "szatniarz", + correct: 18, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "20.02.2025", + }, + }, + { + date: "20.02.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlhTOx4iNxYWLhp3cucDM10CajNjLlRWLzl2auIWLuVHduQGN10CdvBnLw4SMx4CNuMjMuETNtonchlmb0FmezhSI", + value: + "!(szatniarz-51.23.4.11.0.pot-54d.tun-b.kis-de.3ch-507.sza-f16.198e)!", + result: { + word: "szatniarz", + correct: 23, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "20.02.2025", + }, + }, + { + date: "20.02.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZ4kTMtEmez5SYzETL0VHbukTNmJTLu92auAjL14SMuAjMuETNtonchlmb0FmezhSI", + value: "!(szatniarz-51.20.1.5.0.kon-2f59.lut-13a.sza-198e)!", + result: { + word: "szatniarz", + correct: 20, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "20.02.2025", + }, + }, + { + date: "20.02.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUGO5EjL1MGOx0SY6NnL0MWLzV2ZuAjL44iMucTMuETNtonchlmb0FmezhSI", + value: "!(szatniarz-51.17.2.8.0.ges-c4.sza-18c5.198e)!", + result: { + word: "szatniarz", + correct: 17, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "20.02.2025", + }, + }, + { + date: "20.02.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlhTOx4CN3kTMtEmL5UTLrp3cuAjL24CMuEjMuETNtonchlmb0FmezhSI", + value: "!(szatniarz-51.21.0.6.0.szk-59.a-1974.198e)!", + result: { + word: "szatniarz", + correct: 21, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "20.02.2025", + }, + }, + { + date: "20.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlhTOx0SY65iYzMWLhR3cucjNwETLkl3duAjL24CNuYTMuETNtonchlmb0FmezhSI", + value: "!(szatniarz-51.16.4.6.0.wyd-1067.sta-c3b.za-198e)!", + result: { + word: "szatniarz", + correct: 16, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "20.02.2025", + }, + }, + { + date: "20.02.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZ4kTMtEmez5SZ0cTMtIXe35CO4IWLs9GcuAjL44yMuYTMuETNtonchlmb0FmezhSI", + value: "!(szatniarz-51.16.3.8.0.pol-b88.wyr-174e.sza-198e)!", + result: { + word: "szatniarz", + correct: 16, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "20.02.2025", + }, + }, + { + date: "20.02.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlhTOx4CN3kTMuMGZm1SY6NnL1MzMtoXY65iZiJTL1h2YuAjL34yMucjMuETNtonchlmb0FmezhSI", + value: "!(szatniarz-51.27.3.7.0.chu-2bf.zaz-335.sza-fdc.1974.198e)!", + result: { + word: "szatniarz", + correct: 27, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "20.02.2025", + }, + }, + { + date: "20.02.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlhTOx0SYuQWZy0yauEGN00Sd65CZyQTLyB3cuAjL44CNuYjMuETNtonchlmb0FmezhSI", + value: "!(szatniarz-51.26.4.8.0.spr-42d.zu-44a.k-2ed.a-198e)!", + result: { + word: "szatniarz", + correct: 26, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 38, + date: "20.02.2025", + }, + }, + { + date: "20.02.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlhTOx0SY6NnL1kTLhlmeuEGZyITLr9GcuAjL24CNuYTMuETNtonchlmb0FmezhSI", + value: "!(szatniarz-51.16.4.6.0.pok-22da.zia-95.sza-198e)!", + result: { + word: "szatniarz", + correct: 16, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "20.02.2025", + }, + }, + { + date: "20.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZ4kTMuIzY4ETLhp3cugjM10ibhJmLlVTLhtWduAjL54SMuEjMuETNtonchlmb0FmezhSI", + value: "!(szatniarz-51.21.1.9.0.uka-5e.ban-528.sza-18c2.198e)!", + result: { + word: "szatniarz", + correct: 21, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "20.02.2025", + }, + }, + { + date: "20.02.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZ4kTMtEmez5SOjZTMtIXYr5yY2EWLhJ3ZuAjLz4yMuYTMuETNtonchlmb0FmezhSI", + value: "!(szatniarz-51.16.3.3.0.gra-a6c.kar-16c9.sza-198e)!", + result: { + word: "szatniarz", + correct: 16, + position: 3, + incorrect: 3, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "20.02.2025", + }, + }, + { + date: "20.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlhTOx0SY6NnL4ITMtMXat5CNmFTLkl3duAjL34yMucTMuETNtonchlmb0FmezhSI", + value: "!(szatniarz-51.17.3.7.0.wyd-1f4.mis-128.sza-198e)!", + result: { + word: "szatniarz", + correct: 17, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "20.02.2025", + }, + }, + { + date: "20.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZ4kTMtEmeuQWZy0ibhNnLmFTLrVXZuAjL24CNucTMuETNtonchlmb0FmezhSI", + value: "!(szatniarz-51.17.4.6.0.euk-1f.san-2ed.za-198e)!", + result: { + word: "szatniarz", + correct: 17, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "20.02.2025", + }, + }, + { + date: "20.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZ4kTMtEmeuYzNz0SYuczMtQXaz5CO0ITLzlWbuUGOy0CZvJnLw4CMx4iNuYjMuETNtonchlmb0FmezhSI", + value: "!(szatniarz-51.26.6.10.0.rod-28e.mis-248.sit-37.a-376.za-198e)!", + result: { + word: "szatniarz", + correct: 26, + position: 6, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "20.02.2025", + }, + }, + { + date: "20.02.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlhTOx4CN3kTMtEmez5iNhJWLllWbuAjL44SMuEjMuETNtonchlmb0FmezhSI", + value: "!(szatniarz-51.21.1.8.0.mie-ba6.sza-1974.198e)!", + result: { + word: "szatniarz", + correct: 21, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "20.02.2025", + }, + }, + { + date: "20.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZ4kTMukzN5ETLhp3cucjNtI3d65yM5gTYx0ieyBnLw4SMx4iMucjMuETNtonchlmb0FmezhSI", + value: "!(szatniarz-51.27.2.11.0.prz-1a893.zwr-67.sza-1979.198e)!", + result: { + word: "szatniarz", + correct: 27, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 40, + date: "20.02.2025", + }, + }, + { + date: "20.02.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZ4kTMuQzN5ETLhp3cuEWM3MTL6JHcuAjL04yMuAjMuETNtonchlmb0FmezhSI", + value: "!(szatniarz-51.20.3.4.0.prz-371a.sza-1974.198e)!", + result: { + word: "szatniarz", + correct: 20, + position: 3, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "20.02.2025", + }, + }, + { + date: "20.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUGO5ETLh5CM1ETL3p3cuEWMyUTL69GcuAjL34SMukTMuETNtonchlmb0FmezhSI", + value: "!(szatniarz-51.19.1.7.0.poz-521a.szw-150.a-198e)!", + result: { + word: "szatniarz", + correct: 19, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "20.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/wywiodlo-mnie-w-pole-i-to-nie-raz-19-01-2025-diffle-difflepl-grywebowe-35-liter-" +] = [ + { + date: "19.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDZ20SeytmL2czMtknci5CM20Cc1RmL1UWYtIXYu5CNyczNto3by5CMuMTMuIjLwIjL5ETLhtWe0lncrhSI", + value: "!(krytyka-19.20.2.13.0.roz-7724.nar-ae5.dup-60.bry-376.kry-6d3)!", + result: { + word: "krytyka", + correct: 20, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "19.01.2025", + }, + }, + { + date: "19.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMkZTL5J3auY2Y50SeyRnL0ITMtInZh5SOtIXas5SNl1SeydmL4YTLilncucTZt8Gcz5CMucTMuEjL5IjL5ETLhtWe0lncrhSI", + value: + "!(krytyka-19.29.1.17.0.spo-e7.ryb-68.gry-e5.lir-9.afr-124.try-9cf.kry-6d3)!", + result: { + word: "krytyka", + correct: 29, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 47, + date: "19.01.2025", + }, + }, + { + date: "19.01.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMkZTL55CNyEWLhJnL5UjZy0ibvtmLw4yNuEjLzEjL5ETLhtWe0lncrhSI", + value: "!(krytyka-19.13.1.7.0.kon-2f59.ra-a24.y-6d3)!", + result: { + word: "krytyka", + correct: 13, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "19.01.2025", + }, + }, + { + date: "19.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMkZTL5J3auY2Y50Sey5yYy0SYrRnL2EmYtUWat5SMuQTMuEjL4EjL5ETLhtWe0lncrhSI", + value: "!(krytyka-19.18.1.14.1.mie-ba6.tka-2c.ry-9cf.kry-6d3)!", + result: { + word: "krytyka", + correct: 18, + position: 1, + incorrect: 14, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 33, + date: "19.01.2025", + }, + }, + { + date: "19.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMkZTL55SM2IWLhJnL4EGOt0WYr5iM5ETYtoncw5CMuUTMuIjL1EjL5ETLhtWe0lncrhSI", + value: "!(krytyka-19.15.2.15.0.prz-a192.kam-8a8.ra-b61.y-6d3)!", + result: { + word: "krytyka", + correct: 15, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "19.01.2025", + }, + }, + { + date: "19.01.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDZ20Sey5SOmZWMtIXYr5SO0MTLvlGcukTNtsmez5CMuYTMuIjL1EjL5ETLhtWe0lncrhSI", + value: "!(krytyka-19.15.2.16.0.szk-59.pio-349.kar-1ff9.ry-6d3)!", + result: { + word: "krytyka", + correct: 15, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "19.01.2025", + }, + }, + { + date: "19.01.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDZ24SY4ITL55yYihTLvJ3aucjMy0yc1JnLjZTYtEmcn5CMuATMuAjL5EjL5ETLhtWe0lncrhSI", + value: "!(krytyka-19.19.0.10.0.gra-a6c.rus-227.kro-8bc.y-28a.6d3)!", + result: { + word: "krytyka", + correct: 19, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "19.01.2025", + }, + }, + { + date: "19.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzQmNtknL50SZytmLw4COuAjLxEjL5ETLhtWe0lncrhSI", + value: "!(krytyka-19.11.0.8.0.kre-9.y-6d3)!", + result: { + word: "krytyka", + correct: 11, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "19.01.2025", + }, + }, + { + date: "19.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMkZTL5J3auY2Y54yMiNTL5JHduMWLkJ3ZuATLiJWYugzNx0CclNnLmJmMtUHaj5CMuAjMuEjL0IjL5ETLhtWe0lncrhSI", + value: + "!(krytyka-19.24.1.20.0.chu-2bf.sep-178.abb-0.grd-c.try-3b3.9cf.kry-6d3)!", + result: { + word: "krytyka", + correct: 24, + position: 1, + incorrect: 20, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "19.01.2025", + }, + }, + { + date: "19.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMkZjL5QjNtkncr5SOiJTLoN2MuMGMz0SdydmLkJDNtIHcz5CMuQTMuAjL5EjL5ETLhtWe0lncrhSI", + value: "!(krytyka-19.19.0.14.0.spr-42d.gru-30c.3ch-2b9.kry-649.6d3)!", + result: { + word: "krytyka", + correct: 19, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "19.01.2025", + }, + }, + { + date: "19.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzQmNtkncr5iYhVWLyt2cuATLilncuQjZx0CZ5dnLw4COuEjL3EjL5ETLhtWe0lncrhSI", + value: "!(krytyka-19.17.1.8.0.wyd-1f4.ryb-0.skr-eab.kry-6d3)!", + result: { + word: "krytyka", + correct: 17, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "19.01.2025", + }, + }, + { + date: "19.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDZ20Sey5CZxITLz92augjMzETLyl3duMTO4EWMtoncw5CMucTMuEjL3EjL5ETLhtWe0lncrhSI", + value: "!(krytyka-19.17.1.17.0.prz-1a893.wyr-1328.kos-21d.ry-6d3)!", + result: { + word: "krytyka", + correct: 17, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "19.01.2025", + }, + }, + { + date: "19.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzQmNtknL0ITYtEmcr5iZx0ya1VmLw4iNuEjL0EjL5ETLhtWe0lncrhSI", + value: "!(krytyka-19.14.1.6.0.euk-1f.kra-a24.y-6d3)!", + result: { + word: "krytyka", + correct: 14, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "19.01.2025", + }, + }, + { + date: "19.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzQmNtkncr5yN1QWMtQXe35yMy0Se0VnLhFjM10ievBnLw4SOuAjL5EjL5ETLhtWe0lncrhSI", + value: "!(krytyka-19.19.0.9.0.poz-521a.uty-23.wyt-1d57.kry-6d3)!", + result: { + word: "krytyka", + correct: 19, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "19.01.2025", + }, + }, + { + date: "19.01.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMkZTL5J3auEWNtQXey5yM5ITL5JnZuMWOtM3bn5CMuQTMuAjLwIjL5ETLhtWe0lncrhSI", + value: "!(krytyka-19.20.0.14.0.gos-9c.fry-293.ryt-5a.kry-6d3)!", + result: { + word: "krytyka", + correct: 20, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "19.01.2025", + }, + }, + { + date: "19.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMkZTL5J3aucTNkFTL0l3duE2Mx0Se0NnLw0ya5RnL1ITNtQXdh5CMuITMuEjLzIjL5ETLhtWe0lncrhSI", + value: "!(krytyka-19.23.1.12.0.aut-525.tyk-0.sty-13a.wyt-1d57.kry-6d3)!", + result: { + word: "krytyka", + correct: 23, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "19.01.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzQmNtkncr5yMjdTLhJ3ZuE2Mx0Se0NnL3UDNt8Gc15CMucTMuAjL5EjL5ETLhtWe0lncrhSI", + value: "!(krytyka-19.19.0.17.0.upo-457.sty-13a.gra-7c3.kry-6d3)!", + result: { + word: "krytyka", + correct: 19, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/xd-12-01-2025-flag-pl-diffle-difflepl-grywebowe-16-liter-w-2-slowach-large-green" +] = [ + { + date: "12.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN4gTLjp3cugzYy0SdoNmLw4COuAjL44iMx0ya5kTJ0MUJ6NmezhSI", + value: "!(szczęk-12.8.0.8.0.chu-2c8.szc-884)!", + result: { + word: "szczęk", + correct: 8, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "12.01.2025", + }, + }, + { + date: "12.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQDO40yY6NnLiJTL6FGZukDNy0iavdnLyI2NhFTL6JHcuAjL5EjLw4SMx4iMx0ya5kTJ0MUJ6NmezhSI", + value: "!(szczęk-12.11.0.19.0.prz-1a7b2.woj-249.daz-2b.szc-884)!", + result: { + word: "szczęk", + correct: 11, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "12.01.2025", + }, + }, + { + date: "12.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0gDOtMmez5iN3UWLlp3YuQ2My0iYlpnLmRTLnpHZuY2MidTL6JHcuAjL3EjLx4yMx4iMx0ya5kTJ0MUJ6NmezhSI", + value: "!(szczęk-12.13.1.17.0.prz-7b3f.dzg-4f.zeb-23d.cze-e76.szc-884)!", + result: { + word: "szczęk", + correct: 13, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "12.01.2025", + }, + }, + { + date: "12.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN4gjLjNGOtMmez5iYjJWLllWbuAjLxEjLx4SNx4iMx0ya5kTJ0MUJ6NmezhSI", + value: "!(szczęk-12.15.1.11.0.mie-bcb.szc-8cc.884)!", + result: { + word: "szczęk", + correct: 15, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "12.01.2025", + }, + }, + { + date: "12.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0gDOuUDO40yY6NnLhFWZtUmej5CMuUjLx4iNx4iMx0ya5kTJ0MUJ6NmezhSI", + value: "!(szczęk-12.16.1.5.0.cze-eaa.szc-885.884)!", + result: { + word: "szczęk", + correct: 16, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "12.01.2025", + }, + }, + { + date: "12.01.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0gDOtMmLxQGNtEmLhhDNt8mez5yNzQTLhlWbuAjL0EjLw4iMx4iMx0ya5kTJ0MUJ6NmezhSI", + value: "!(szczęk-12.12.0.14.0.mia-437.szo-48a.a-4d1.c-884)!", + result: { + word: "szczęk", + correct: 12, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "12.01.2025", + }, + }, + { + date: "12.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN4gTLjp3cuMDOx0CczFmLw4SOuAjL54iMx0ya5kTJ0MUJ6NmezhSI", + value: "!(szczęk-12.9.0.9.0.asp-183.szc-884)!", + result: { + word: "szczęk", + correct: 9, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "12.01.2025", + }, + }, + { + date: "12.01.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN4gTLjp3cuYTOx0CclRnL3ATNtoHZ65CMuUTMuAjL54iMx0ya5kTJ0MUJ6NmezhSI", + value: "!(szczęk-12.9.0.15.0.zdz-507.tep-196.szc-884)!", + result: { + word: "szczęk", + correct: 9, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "12.01.2025", + }, + }, + { + date: "12.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQDO40yY6NnLmFWLjVneuUjZhRTLk9GcuAjLwEjLw4SMx4iMx0ya5kTJ0MUJ6NmezhSI", + value: "!(szczęk-12.11.0.10.0.pod-4af5.zuc-af.szc-884)!", + result: { + word: "szczęk", + correct: 11, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "12.01.2025", + }, + }, + { + date: "12.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0gDOtMmez5SNmRTLoN2MuQjY40yalJnL5QjMtsWZw5CNxcTLslWbuAjLxEjLw4yMx4iMx0ya5kTJ0MUJ6NmezhSI", + value: "!(szczęk-12.13.0.11.0.mil-714.pek-249.rek-8b4.3ch-4f5.szc-884)!", + result: { + word: "szczęk", + correct: 13, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "12.01.2025", + }, + }, + { + date: "12.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQDO44SN4gTLjp3cuQ2Yl1Sa6RmL4kTLvpneuAjL1EjLy4iNx4iMx0ya5kTJ0MUJ6NmezhSI", + value: "!(szczęk-12.16.2.15.0.zzo-98.dzi-ecd.szc-885.884)!", + result: { + word: "szczęk", + correct: 16, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "12.01.2025", + }, + }, + { + date: "12.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQDO40yY6NnL1YGNtg2Yz4SOxETLyVneuITO2ITLs9GcuAjLwEjLw4SMx4iMx0ya5kTJ0MUJ6NmezhSI", + value: "!(szczęk-12.11.0.10.0.pol-2692.zur-119.3ch-4f5.szc-884)!", + result: { + word: "szczęk", + correct: 11, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "12.01.2025", + }, + }, + { + date: "12.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN4gjLlF2NtMmez5CMuUjLw4CMx4iMx0ya5kTJ0MUJ6NmezhSI", + value: "!(szczęk-12.10.0.5.0.szc-7ae.884)!", + result: { + word: "szczęk", + correct: 10, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "12.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zdecydowanie-musze-pomijac-drugie-slowo-i-od-razu-przechodzic-do-trzeciego-30-01" +] = [ + { + date: "30.01.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYtQmLlFTMtkme35CMzQTLhlWbuAjL44SMuQTMuAzMtUWajlTOlQzQlQme3hSI", + value: "!(wzdęcie-30.14.1.8.0.mia-430.wzi-11e.d-c)!", + result: { + word: "wzdęcie", + correct: 14, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "30.01.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYtQmeugzN40CZ5dnLjljMtMWZk5SNm1SZpNmL2MmMtk2YuIzYj1icwNnLw4yMx4CMucjMuAzMtUWajlTOlQzQlQme3hSI", + value: + "!(wzdęcie-30.27.0.13.0.spr-cc2.ci-2c6.cie-f5.dec-29c.wyd-878.zd-c)!", + result: { + word: "wzdęcie", + correct: 27, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + }, + }, + { + date: "30.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKj1CZ65COmBjMtUWauMDNzETLsl3duAjL44iMuITMuAzMtUWajlTOlQzQlQme3hSI", + value: "!(wzdęcie-30.12.2.8.0.wyl-1343.ie-20f8.zd-c)!", + result: { + word: "wzdęcie", + correct: 12, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "30.01.2025", + }, + }, + { + date: "30.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKj1CZ6dnL3EWL5dneuYmYy0SdoNmLw4CMx4CNuITMuAzMtUWajlTOlQzQlQme3hSI", + value: "!(wzdęcie-30.12.4.10.0.chu-2bf.zwy-a7.wzd-c)!", + result: { + word: "wzdęcie", + correct: 12, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "30.01.2025", + }, + }, + { + date: "30.01.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWLkpnLxUjMtUWauIjMz0ycldnL0IjNtQ3bw5CO50yb6pnLw4CNx4CNuQTMuAzMtUWajlTOlQzQlQme3hSI", + value: "!(wzdęcie-30.14.4.14.0.zzo-98.pot-624.wes-322.ie-251.zd-c)!", + result: { + word: "wzdęcie", + correct: 14, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "30.01.2025", + }, + }, + { + date: "30.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYtQmeuEDO10CZv5yNh1CZl5iM1MTL0N3duAjL54iMuQTMuAzMtUWajlTOlQzQlQme3hSI", + value: "!(wzdęcie-30.14.2.9.0.wst-352.ed-a7.od-581.zd-c)!", + result: { + word: "wzdęcie", + correct: 14, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "30.01.2025", + }, + }, + { + date: "30.01.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWLkpnLzcjMtQWZ35iY3UTLylGcuETYx0SZ6VnLw4yMx4yMuMTMuAzMtUWajlTOlQzQlQme3hSI", + value: "!(wzdęcie-30.13.3.13.0.uze-1a1.pir-57b.wed-273.zd-c)!", + result: { + word: "wzdęcie", + correct: 13, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "30.01.2025", + }, + }, + { + date: "30.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWLkp3duQTL5pneuQGOx0CczFmLw4SMx4iMuITMuAzMtUWajlTOlQzQlQme3hSI", + value: "!(wzdęcie-30.12.2.11.0.asp-18d.zzy-4.wzd-c)!", + result: { + word: "wzdęcie", + correct: 12, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "30.01.2025", + }, + }, + { + date: "30.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYtQmeugjN00iez5CZmVTMtIXe35CO50yb6pnLw4yMx4yMuYTMuAzMtUWajlTOlQzQlQme3hSI", + value: "!(wzdęcie-30.16.3.13.0.zzo-98.wyr-15fd.sz-468.zd-c)!", + result: { + word: "wzdęcie", + correct: 16, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "30.01.2025", + }, + }, + { + date: "30.01.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKj1CZ65SM3ITLkVmLyEDNtEWauIzMzETLzl3duAjL44yMuQTMuAzMtUWajlTOlQzQlQme3hSI", + value: "!(wzdęcie-30.14.3.8.0.wys-1332.ia-412.ed-271.zd-c)!", + result: { + word: "wzdęcie", + correct: 14, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "30.01.2025", + }, + }, + { + date: "30.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWLk5SZxETLppnL3QjMto2b35yM5gTYx0ieyBnLw4iNx4iMuYTMuAzMtUWajlTOlQzQlQme3hSI", + value: "!(wzdęcie-30.16.2.16.0.prz-1a893.woj-247.zi-11e.d-c)!", + result: { + word: "wzdęcie", + correct: 16, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "30.01.2025", + }, + }, + { + date: "30.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYtQmeugzN40CZ5dnLjljMtMWZk5yM3gTLpB3cugDZi1SZytmLwkTLnFmaugDM30Cbp1mLw4SNx4SMucjMuAzMtUWajlTOlQzQlQme3hSI", + value: + "!(wzdęcie-30.27.1.15.0.mil-708.jag-90.kre-bd8.spi-873.dec-29c.wyd-878.zd-c)!", + result: { + word: "wzdęcie", + correct: 27, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 43, + date: "30.01.2025", + }, + }, + { + date: "30.01.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKj1CZ6dnL5gzYtUmc65CO00yb6pXZp5mLw4SMx4iMuMTMuAzMtUWajlTOlQzQlQme3hSI", + value: "!(wzdęcie-30.13.2.11.0.niezzo-48.zre-c89.wzd-c)!", + result: { + word: "wzdęcie", + correct: 13, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "30.01.2025", + }, + }, + { + date: "30.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYtQmLlFTMtkme35iY10CajNjL1EWLkVGbuYjMlFTLllGcukDOx0CbvpnLw4SNx4yMuEjMuAzMtUWajlTOlQzQlQme3hSI", + value: + "!(wzdęcie-30.21.3.15.0.zol-189.pie-1e26.led-a5.3ch-5b.wzi-11e.d-c)!", + result: { + word: "wzdęcie", + correct: 21, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "30.01.2025", + }, + }, + { + date: "30.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKj1CZ6dnL2EmYtUWat5CMukjLz4SOuAzMtUWajlTOlQzQlQme3hSI", + value: "!(wzdęcie-30.9.3.9.0.mie-ba6.wzd-c)!", + result: { + word: "wzdęcie", + correct: 9, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "30.01.2025", + }, + }, + { + date: "30.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYtQme35SO5ATMtUGZ65yMm1SZsNnLjFmY00CZvBnLw4yMx4yMuYTMuAzMtUWajlTOlQzQlQme3hSI", + value: "!(wzdęcie-30.16.3.13.0.pod-4bac.sle-f3.zde-1099.wzd-c)!", + result: { + word: "wzdęcie", + correct: 16, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "30.01.2025", + }, + }, + { + date: "30.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWLk5SZxETLppnLwMTMy0SZpdnLxQWMtEWauUmMh1iehpnLx4iMx4SMuAjMuAzMtUWajlTOlQzQlQme3hSI", + value: "!(wzdęcie-30.20.1.12.1.zaz-a2e.ia-1d1.wie-2130.zi-11e.d-c)!", + result: { + word: "wzdęcie", + correct: 20, + position: 1, + incorrect: 12, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 33, + date: "30.01.2025", + }, + }, + { + date: "30.01.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKj1CZ65SYlRjMtAXe35CO4kTLlpncuMjMh1yahpnLw4iMx4CMucTMuAzMtUWajlTOlQzQlQme3hSI", + value: "!(wzdęcie-30.17.0.12.0.zak-a23.rze-988.wyp-24ea.zd-c)!", + result: { + word: "wzdęcie", + correct: 17, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "30.01.2025", + }, + }, + { + date: "30.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWLkp3duATOwETLppHZucDM40SZ6JnL3IWOtMmez5CO50yb6pnLw4yNx4SNugTMuAzMtUWajlTOlQzQlQme3hSI", + value: "!(wzdęcie-30.18.5.17.0.zzo-98.szc-9b7.rze-807.dzi-1090.wzd-c)!", + result: { + word: "wzdęcie", + correct: 18, + position: 5, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "30.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zdradliwe-05-03-2025-diffle-difflepl-grywebowe-23-litery-w-4-slowach-large-green" +] = [ + { + date: "05.03.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0Sb1dmLw0Sb1BnLx0SYsJmL5UjZy0ibvtmLw4CNx4CMukjL0YTLh1WdnhSI", + value: "!(guma-64.9.0.14.0.kon-2f59.bla-1.pum-0.gum-0)!", + result: { + word: "guma", + correct: 9, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "05.03.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLtV3ZuATLtV3cuATLmVXbuUmYz0ic1tmL0cDNt8Gc15CMugTMuEjLyEjL0YTLh1WdnhSI", + value: "!(guma-64.12.1.18.0.upo-474.kur-3be.muf-0.sum-0.gum-0)!", + result: { + word: "guma", + correct: 12, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + }, + }, + { + date: "05.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0Sb1dmL3QjMto2b35yM5gTYx0ieyBnLw4yNx4CMucjL0YTLh1WdnhSI", + value: "!(guma-64.7.0.17.0.prz-1a893.woj-247.gum-0)!", + result: { + word: "guma", + correct: 7, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0SbucDNtwWdn5iZx0ya1VmLw4CMx4CMukjL0YTLh1WdnhSI", + value: "!(guma-64.9.0.10.0.euk-1f.gul-47.m-0)!", + result: { + word: "guma", + correct: 9, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0Sb1dmLw0Sb1RmLiNTNtUnci5SYxITNto3bw5CMuQTMuAjLwEjL0YTLh1WdnhSI", + value: "!(guma-64.10.0.14.0.poz-521a.bru-53b.dum-0.gum-0)!", + result: { + word: "guma", + correct: 10, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "05.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zle-szukalem-26-02-2025-flag-pl-diffle-difflepl-grywebowe-44-litery-w-5-slowach-" +] = [ + { + date: "26.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZlJWOtoncw5SMlRWLhx2auETOkJmL3IjY04yM5gTYx0ieyBnLw4iNx4CMugjMucTNtcDOlQzQlIUOlUzQlEGclpncwhSI", + value: "!(przepaść-57.28.0.16.0.prz-1a893.4b27.bd91.kla-de1.prz-9bef)!", + result: { + word: "przepaść", + correct: 28, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 44, + date: "26.02.2025", + }, + }, + { + date: "26.02.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVmY54SMilTNtoncw5CMzQTLhlWbuAjL34CMucTMucTNtcDOlQzQlIUOlUzQlEGclpncwhSI", + value: "!(przepaść-57.17.0.7.0.mia-430.prz-59b1.9bef)!", + result: { + word: "przepaść", + correct: 17, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "26.02.2025", + }, + }, + { + date: "26.02.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVmY50iey5SZ1kTLllGcuMDNzETLsl3duAjL54SMuMTMucTNtcDOlQzQlIUOlUzQlEGclpncwhSI", + value: "!(przepaść-57.13.1.9.0.wyl-1343.pie-95e.rz-9bef)!", + result: { + word: "przepaść", + correct: 13, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "26.02.2025", + }, + }, + { + date: "26.02.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWZiljLkVjMm1iey5iZmVzMto3bw5CO50yb6pnLw4iNx4SMuAjMucTNtcDOlQzQlIUOlUzQlEGclpncwhSI", + value: "!(przepaść-57.20.1.16.0.zzo-98.poz-35ff.rz-f25d.9bef)!", + result: { + word: "przepaść", + correct: 20, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "26.02.2025", + }, + }, + { + date: "26.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWZiljLwYzN5ETL6JnLkVDZx0SZpBnLw4CMx4CMuQTMucTNtcDOlQzQlIUOlUzQlEGclpncwhSI", + value: "!(przepaść-57.14.0.10.0.pie-1d5d.rz-19760.9bef)!", + result: { + word: "przepaść", + correct: 14, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "26.02.2025", + }, + }, + { + date: "26.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZlJWOuETOkJmL3IjY00ieyBnLhZ2Nx0Cd5dnL4YjNtUmey5CO50yb6pnLw4COx4CMuAzMucTNtcDOlQzQlIUOlUzQlEGclpncwhSI", + value: + "!(przepaść-57.30.0.18.0.zzo-98.rze-668.wyt-17fa.prz-4b27.bd91.9bef)!", + result: { + word: "przepaść", + correct: 30, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 48, + date: "26.02.2025", + }, + }, + { + date: "26.02.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWZiljLhFWY0ETL6JHcuYDNl1CczdnLw4SMx4CMukTMucTNtcDOlQzQlIUOlUzQlEGclpncwhSI", + value: "!(przepaść-57.19.0.11.0.wsp-e46.prz-14aaa.9bef)!", + result: { + word: "przepaść", + correct: 19, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "26.02.2025", + }, + }, + { + date: "26.02.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWZilTL6JnL5UGMx0SYsBnLiBzMtg2Yz4yNyIGNtoncw5iMxkTLlpncuYWY0ETL0FmeuYmYy0SdoNmLw4yMy4CMuUjMucTNtcDOlQzQlIUOlUzQlEGclpncwhSI", + value: + "!(przepaść-57.25.0.23.0.chu-2bf.zat-14af.rze-912.prz-4b27.3ch-30b.pla-10e9.rz-9bef)!", + result: { + word: "przepaść", + correct: 25, + position: 0, + incorrect: 23, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 48, + date: "26.02.2025", + }, + }, + { + date: "26.02.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZlJWOtoncw5iN2UTMtAXY65CZ4ETLwNXYuAjL34CNuYTMucTNtcDOlQzQlIUOlUzQlEGclpncwhSI", + value: "!(przepaść-57.16.4.7.0.asp-18d.zap-1566.prz-9bef)!", + result: { + word: "przepaść", + correct: 16, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "26.02.2025", + }, + }, + { + date: "26.02.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWZilTL6JnLzEGZtMXYuMTLrVHcuIzMzETLzl3duAjL54CMuYTMucTNtcDOlQzQlIUOlUzQlEGclpncwhSI", + value: "!(przepaść-57.16.0.9.0.wys-1332.puk-3.as-da3.rz-9bef)!", + result: { + word: "przepaść", + correct: 16, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "26.02.2025", + }, + }, + { + date: "26.02.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWZiljLyQWMucjMiRTL6JHcuYTYi1SZp1mLw4iNx4SMuIjMucTNtcDOlQzQlIUOlUzQlEGclpncwhSI", + value: "!(przepaść-57.22.1.16.0.mie-ba6.prz-4b27.1d2.9bef)!", + result: { + word: "przepaść", + correct: 22, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 39, + date: "26.02.2025", + }, + }, + { + date: "26.02.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVmY54SMilTNtoncw5iN0UWLwN3duAjL54CMukTMucTNtcDOlQzQlIUOlUzQlEGclpncwhSI", + value: "!(przepaść-57.19.0.9.0.wsp-e46.prz-59b1.9bef)!", + result: { + word: "przepaść", + correct: 19, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "26.02.2025", + }, + }, + { + date: "26.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVmY54yMklTOuMjYiNWL6JnLjFmY00CZvBnLw4CMx4CMuQjMucTNtcDOlQzQlIUOlUzQlEGclpncwhSI", + value: "!(przepaść-57.24.0.10.0.pod-4bac.rz-cbb3.99d3.9bef)!", + result: { + word: "przepaść", + correct: 24, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "26.02.2025", + }, + }, + { + date: "26.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZlJWOtoncw5yY40Sa6RmLjN2MtEmez5CO50yb6pnLw4yMx4CMuYTMucTNtcDOlQzQlIUOlUzQlEGclpncwhSI", + value: "!(przepaść-57.16.0.13.0.zzo-98.sza-3cc.dzi-8c.prz-9bef)!", + result: { + word: "przepaść", + correct: 16, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "26.02.2025", + }, + }, + { + date: "26.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVmY50ieyBnL0IDMx0SYwNnL4YTOtEmcr5COwcTLslWbuAjL24CMugTMucTNtcDOlQzQlIUOlUzQlEGclpncwhSI", + value: "!(przepaść-57.18.0.6.0.mil-708.kra-968.spa-1024.prz-9bef)!", + result: { + word: "przepaść", + correct: 18, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "26.02.2025", + }, + }, + { + date: "26.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVmY54SYyAzYuIWO1ITL6JHcuITY00CbvpnLw4SMx4CMuIjMucTNtcDOlQzQlIUOlUzQlEGclpncwhSI", + value: "!(przepaść-57.22.0.11.0.zol-4a2.prz-259b.c02a.9bef)!", + result: { + word: "przepaść", + correct: 22, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "26.02.2025", + }, + }, + { + date: "26.02.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWZiljLxMGOi5SMilTNtoncw5iZlNWLlJneuAjL44CMuQjMucTNtcDOlQzQlIUOlUzQlEGclpncwhSI", + value: "!(przepaść-57.24.0.8.0.zre-cef.prz-59b1.b8c1.9bef)!", + result: { + word: "przepaść", + correct: 24, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "26.02.2025", + }, + }, + { + date: "26.02.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZlJWOuUWMiBTMucTYjhjLzIDO14SO1IzNuUDMjVjL2UzNz0ieyBnLw4COx4CMuEDNucTNtcDOlQzQlIUOlUzQlEGclpncwhSI", + value: "!(przepaść-57.41.0.18.0.prz-3756.5c05.7259.5823.8ca7.10b1e.9bef)!", + result: { + word: "przepaść", + correct: 41, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 59, + date: "26.02.2025", + }, + }, + { + date: "26.02.2025", + nick: "ulsterboy", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWZiljL3cTO50ieyBnL0YTNtonc05COwQjMuUmZwETLwFmeuATZy0yYhxmLx4iMx4yMukjMucTNtcDOlQzQlIUOlUzQlEGclpncwhSI", + value: + "!(przepaść-57.29.3.12.1.lac-2e0.zap-10fe.2408.trz-564.prz-9977.9bef)!", + result: { + word: "przepaść", + correct: 29, + position: 3, + incorrect: 12, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 44, + date: "26.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/znow-pierwszy-o-o-13-02-2025-diffle-difflepl-grywebowe-28-liter-w-3-slowach" +] = [ + { + date: "13.02.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyYjNtImLkZDZtMWY65SO1YmMt42br5CMugjL04iNx4CN00SZp52dhJWY6hSI", + value: "!(zabawnie-44.16.4.8.0.kon-2f59.zac-d6d.b-662)!", + result: { + word: "zabawnie", + correct: 16, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "13.02.2025", + }, + }, + { + date: "13.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM2YjL4cDNtImLjFjNt4WY65COyETLv1WYuEjLzEjLx4SNy4CN00SZp52dhJWY6hSI", + value: "!(zabawnie-44.25.1.13.1.amo-128.zan-61c.b-478.662)!", + result: { + word: "zabawnie", + correct: 25, + position: 1, + incorrect: 13, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 39, + date: "13.02.2025", + }, + }, + { + date: "13.02.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyYjNtIWY65SO1UGNtoncw5iNhJWLllWbuAjL1EjLz4yNx4CN00SZp52dhJWY6hSI", + value: "!(zabawnie-44.17.3.15.0.mie-ba6.prz-4e59.zab-662)!", + result: { + word: "zabawnie", + correct: 17, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 35, + date: "13.02.2025", + }, + }, + { + date: "13.02.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjN20iYh5CZzITLhdneuYWMtsWdl5CMugjLz4iNx4CN00SZp52dhJWY6hSI", + value: "!(zabawnie-44.16.3.8.0.euk-1f.zwa-23d.ab-662)!", + result: { + word: "zabawnie", + correct: 16, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "13.02.2025", + }, + }, + { + date: "13.02.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM2YTLiFmeuQjNy0Sd0NnL4gjMtE2d65SOlVTL6l3duATLvdmellmbuAjLxEjL04SMy4CN00SZp52dhJWY6hSI", + value: "!(zabawnie-44.21.4.11.0.niezgo-0.wyz-5e9.zwa-288.stu-264.zab-662)!", + result: { + word: "zabawnie", + correct: 21, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "13.02.2025", + }, + }, + { + date: "13.02.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjN24iYkVTLi5CMhRTLzFmeuQDOtoXYr5iMk1ibh5mL5MjMt4WYw5SN5IWLhJ3ZuEjL4EjL14iNz4CN00SZp52dhJWY6hSI", + value: + "!(zabawnie-44.36.5.18.1.gra-b95.pan-239.nan-d2.kaz-84.zas-4a0.b-5db.662)!", + result: { + word: "zabawnie", + correct: 36, + position: 5, + incorrect: 18, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 59, + date: "13.02.2025", + }, + }, + { + date: "13.02.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjN20iYh5CO3ETLhdnLkZTNtUWa65CNhVTL6JHdllmbuAjLxEjL24iMy4CN00SZp52dhJWY6hSI", + value: "!(zabawnie-44.22.6.11.0.nietrz-5a4.zie-56d.wa-178.ab-662)!", + result: { + word: "zabawnie", + correct: 22, + position: 6, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 39, + date: "13.02.2025", + }, + }, + { + date: "13.02.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjN20iYh5iM4QTLhJmLxMGNtE2d65SYkJjMts2bw5CMugjLz4iMy4CN00SZp52dhJWY6hSI", + value: "!(zabawnie-44.22.3.8.0.pok-22da.zwa-4c1.ba-482.ab-662)!", + result: { + word: "zabawnie", + correct: 22, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "13.02.2025", + }, + }, + { + date: "13.02.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyYjNtIWYuIDO00SYipnLkJDNtIHcz5CMucjLy4CMy4CN00SZp52dhJWY6hSI", + value: "!(zabawnie-44.20.2.7.0.spr-42d.zba-482.ab-662)!", + result: { + word: "zabawnie", + correct: 20, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "13.02.2025", + }, + }, + { + date: "13.02.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjN24SZlVTLiFmeugTM00ych1mLjZTYtEmcn5CMucjLx4SNy4CN00SZp52dhJWY6hSI", + value: "!(zabawnie-44.25.1.7.0.gra-a6c.mas-418.zab-5ee.662)!", + result: { + word: "zabawnie", + correct: 25, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "13.02.2025", + }, + }, + { + date: "13.02.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjN20iYuEDZ20SbugjNtUnL2EDMy0CcuYjN40CZuMzNl1yZuYGMi1CdhpnLkFTNtEmej5SOiNTLvt2cuAjL2EjLx4yN04CN00SZp52dhJWY6hSI", + value: + "!(zabawnie-44.47.1.16.0.sko-3b9.cza-51d.zat-b0f.g-e73.d-866.p-2016.u-68.m-6d1.b-662)!", + result: { + word: "zabawnie", + correct: 47, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 64, + date: "13.02.2025", + }, + }, + { + date: "13.02.2025", + nick: "Lvter", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM2YjLiRWNtIWY65CN20CZuUWZtcWYi5SNiNTLvJHduAjLzEjLz4iNy4CN00SZp52dhJWY6hSI", + value: "!(zabawnie-44.26.3.13.0.tro-3b5.bag-ee.d-64.zab-5db.662)!", + result: { + word: "zabawnie", + correct: 26, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "13.02.2025", + }, + }, + { + date: "13.02.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM2YTLiFmeuITZt4WYn5CMlJTLhxGcuYmNx0iclRnL0gTOtcXYuQ2Mtk2d65iZiJTL1h2YuAjL1EjL34yMy4CN00SZp52dhJWY6hSI", + value: + "!(zabawnie-44.23.7.15.0.chu-2bf.zwi-3d.aw-984.ter-16f.pla-2e0.gan-e2.zab-662)!", + result: { + word: "zabawnie", + correct: 23, + position: 7, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "13.02.2025", + }, + }, + { + date: "13.02.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyYjNtIWY65CNz0CchdnL3YTMtwWYtVWau5CMugjL04SNx4CN00SZp52dhJWY6hSI", + value: "!(zabawnie-44.15.4.8.0.niemal-167.wap-34.zab-662)!", + result: { + word: "zabawnie", + correct: 15, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "13.02.2025", + }, + }, + { + date: "13.02.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyYjNtIWYuIDO00SYipnL0YWMtQWe35CMuUjLz4COx4CN00SZp52dhJWY6hSI", + value: "!(zabawnie-44.18.3.5.0.wyd-1f4.zba-482.ab-662)!", + result: { + word: "zabawnie", + correct: 18, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "13.02.2025", + }, + }, + { + date: "13.02.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM2YTLi5SN3ETL3FmeuIjZtAnez5iMjFTLlp3YuAjLxEjLy4CMy4CN00SZp52dhJWY6hSI", + value: "!(zabawnie-44.20.2.11.0.cze-1c2.szp-f2.zaw-175.b-662)!", + result: { + word: "zabawnie", + correct: 20, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "13.02.2025", + }, + }, + { + date: "13.02.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjN20iYh5SN4EWLpdneuQ2N10icpBnL5UTLrp3cuAjL1EjLz4SOx4CN00SZp52dhJWY6hSI", + value: "!(zabawnie-44.19.3.15.0.szk-59.pir-57d.zwi-a85.ab-662)!", + result: { + word: "zabawnie", + correct: 19, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "13.02.2025", + }, + }, + { + date: "13.02.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM2YTLiFmLygDNtEmY65SYxITNto3bw5CMucjLw4CMy4CN00SZp52dhJWY6hSI", + value: "!(zabawnie-44.20.0.7.0.poz-521a.zba-482.ab-662)!", + result: { + word: "zabawnie", + correct: 20, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "13.02.2025", + }, + }, + { + date: "13.02.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjN20iYuATY00ych5CO10SYkpnLzkDOhFTL6JHcuAjLxEjLy4iMy4CN00SZp52dhJWY6hSI", + value: "!(zabawnie-44.22.2.11.0.prz-1a893.zda-58.as-4a0.b-662)!", + result: { + word: "zabawnie", + correct: 22, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "13.02.2025", + }, + }, + { + date: "13.02.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM2YTLiFmeugjY50ieh5mLyETMt8Gch5CMukjL04yNx4CN00SZp52dhJWY6hSI", + value: "!(zabawnie-44.17.4.9.0.apo-112.naz-9b8.zab-662)!", + result: { + word: "zabawnie", + correct: 17, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "13.02.2025", + }, + }, + { + date: "13.02.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjN20iYhpnL4IjMtQXYt5CMugjLz4iMx4CN00SZp52dhJWY6hSI", + value: "!(zabawnie-44.12.3.8.0.mat-228.zab-662)!", + result: { + word: "zabawnie", + correct: 12, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "13.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zostalem-wyrolowany-przy-drugim-slowie-ale-i-tak-niezle-07-01-2025-diffle-diffle" +] = [ + { + date: "07.01.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJjLxgTLhdnLzMWMtIXdr5CMucjLx4CNx4yNtEmckF2drhSI", + value: "!(kwadra-7.14.1.7.0.kur-1c3.wa-81.2b)!", + result: { + word: "kwadra", + correct: 14, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "07.01.2025", + }, + }, + { + date: "07.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYy0SY3tmL5QWMx0ybyBnLw4iNuEjL44yNtEmckF2drhSI", + value: "!(kwadra-7.8.1.6.0.pro-11d9.kwa-2b)!", + result: { + word: "kwadra", + correct: 8, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "07.01.2025", + }, + }, + { + date: "07.01.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYy0SY35CMtIXdr5CZjJjMts2bw5CMugjLx4iMx4yNtEmckF2drhSI", + value: "!(kwadra-7.12.1.8.0.pok-22cd.kur-0.wa-2b)!", + result: { + word: "kwadra", + correct: 12, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "07.01.2025", + }, + }, + { + date: "07.01.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpImMtE2duUDZx0CZhtmLhhTNtonc0VWau5CMukjLz4CNx4yNtEmckF2drhSI", + value: "!(kwadra-7.14.3.9.0.nietrz-58a.kad-1d5.wa-2b)!", + result: { + word: "kwadra", + correct: 14, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "07.01.2025", + }, + }, + { + date: "07.01.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYy0SY3tmL2IWLkVnYuEWYy0yb6NmLw4COuEjL54yNtEmckF2drhSI", + value: "!(kwadra-7.9.1.8.0.czo-2aa.bud-b6.kwa-2b)!", + result: { + word: "kwadra", + correct: 9, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "07.01.2025", + }, + }, + { + date: "07.01.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJTLhdnLw0ydhtmLkJTLld3cugTNx0SY3dmLjVmZtIXe35COjJTL1h2YuAjL1EjLx4CMy4yNtEmckF2drhSI", + value: "!(kwadra-7.20.1.15.0.chu-2c8.wyr-fec.gwa-158.swe-2d.kaw-0.wa-2b)!", + result: { + word: "kwadra", + correct: 20, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "07.01.2025", + }, + }, + { + date: "07.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYy0SY3tmLk1SY3RnLmV2MtIHcz5CMugjLz4yMx4yNtEmckF2drhSI", + value: "!(kwadra-7.13.3.8.0.spr-3ef.twa-d.kwa-2b)!", + result: { + word: "kwadra", + correct: 13, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "07.01.2025", + }, + }, + { + date: "07.01.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYy4SM40SY35iMwYmMt42br5CMuYjLw4iNx4yNtEmckF2drhSI", + value: "!(kwadra-7.16.0.6.0.kon-2f02.wa-81.2b)!", + result: { + word: "kwadra", + correct: 16, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "07.01.2025", + }, + }, + { + date: "07.01.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJTLhd3auUGNz0ybpBnL5UTLrp3cuAjL1EjLx4SMx4yNtEmckF2drhSI", + value: "!(kwadra-7.11.1.15.0.szk-59.pio-34e.kwa-2b)!", + result: { + word: "kwadra", + correct: 11, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "07.01.2025", + }, + }, + { + date: "07.01.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpImMtE2duETL3J3aukDNy0iavdnLyI2NhFTL6JHcuAjL3EjLy4yMx4yNtEmckF2drhSI", + value: "!(kwadra-7.13.2.17.0.prz-1a7b2.woj-249.krw-1.wa-2b)!", + result: { + word: "kwadra", + correct: 13, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "07.01.2025", + }, + }, + { + date: "07.01.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJTLhd3auQWNtsWdw5iYjJWLllWbuAjL0EjLy4SMx4yNtEmckF2drhSI", + value: "!(kwadra-7.11.2.14.0.mie-bcb.puk-5d.kwa-2b)!", + result: { + word: "kwadra", + correct: 11, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "07.01.2025", + }, + }, + { + date: "07.01.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpImMtE2dr5SYzETLjFWbukjMtsWZs5iN2EWL0VXYuAjLxEjLx4yMx4yNtEmckF2drhSI", + value: "!(kwadra-7.13.1.11.0.aut-a66.lek-29.mac-13a.kwa-2b)!", + result: { + word: "kwadra", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "07.01.2025", + }, + }, + { + date: "07.01.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJTLhd3auQTYy0ybydmL0YWMtQWe35CMugjLz4iMx4yNtEmckF2drhSI", + value: "!(kwadra-7.12.3.8.0.wyd-1f4.gro-2a4.kwa-2b)!", + result: { + word: "kwadra", + correct: 12, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "07.01.2025", + }, + }, + { + date: "07.01.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYy0SY3tmLlZGOtI2bk5iYlhTLhxmLw0ichtmLkRTMt0WYy5SO4EWLhJ3ZuAjLyEjLy4SOx4yNtEmckF2drhSI", + value: "!(kwadra-7.19.2.12.0.gra-a89.ram-14d.kar-0.la-8eb.dob-8fe.kwa-2b)!", + result: { + word: "kwadra", + correct: 19, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "07.01.2025", + }, + }, + { + date: "07.01.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJjLxgTLhd3auYWMtsWdl5SMucjLw4SNx4yNtEmckF2drhSI", + value: "!(kwadra-7.15.0.7.1.euk-1f.kwa-81.2b)!", + result: { + word: "kwadra", + correct: 15, + position: 0, + incorrect: 7, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 22, + date: "07.01.2025", + }, + }, + { + date: "07.01.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpImMuEDOtE2dr5yNwMWLllWbuAjLyEjLx4CNx4yNtEmckF2drhSI", + value: "!(kwadra-7.14.1.12.0.mie-c07.kwa-81.2b)!", + result: { + word: "kwadra", + correct: 14, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "07.01.2025", + }, + }, + { + date: "07.01.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpImMtE2ducjZtcXYr5yN0ITLu9GcuAjLyEjLx4CNx4yNtEmckF2drhSI", + value: "!(kwadra-7.14.1.12.0.pon-247.kaw-f7.wa-2b)!", + result: { + word: "kwadra", + correct: 14, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "07.01.2025", + }, + }, + { + date: "07.01.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJTLhdnL00iZ15iYxgTLhx2auQWYxUTL69GcuAjL0EjLw4CNx4yNtEmckF2drhSI", + value: "!(kwadra-7.14.0.14.0.poz-51ad.kla-81b.uf-4.wa-2b)!", + result: { + word: "kwadra", + correct: 14, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "07.01.2025", + }, + }, + { + date: "07.01.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpImMtE2dr5SY00SYpdnLxImMtIHcz5CMugjLy4yMx4yNtEmckF2drhSI", + value: "!(kwadra-7.13.2.8.0.spr-2b1.wia-4a.kwa-2b)!", + result: { + word: "kwadra", + correct: 13, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "07.01.2025", + }, + }, +]; diff --git a/scripts/hejto/parts-2025/part-2.ts b/scripts/hejto/parts-2025/part-2.ts new file mode 100644 index 000000000..ce7d6f8d0 --- /dev/null +++ b/scripts/hejto/parts-2025/part-2.ts @@ -0,0 +1,22009 @@ +import { ParsedHejtoResult } from "../hejto-types"; + +export const results: { + resultsBySource: { + [url: string]: ParsedHejtoResult[]; + }; +} = { + resultsBySource: {}, +}; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/02-05-2025-flag-pl-diffle-difflepl-grywebowe-26-liter-w-4-slowach-large-green-ci" +] = [ + { + date: "02.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpETMtwWduQzY00ichZmL4YTLilncuQTOk1iclBnLw4CNx4iMuATMuIjMx0ichxWdmhSI", + value: "!(fular-122.10.2.14.0.per-d94.ryb-68.far-4c4.ul-11)!", + result: { + word: "fular", + correct: 10, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "02.05.2025", + }, + }, + { + date: "02.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpETMtwWdm5SNh1SYkVnLjF2MtQXej5SZkFTLyF2duIWZ50ycvtmLw4SNx4CMuMTMuIjMx0ichxWdmhSI", + value: "!(fular-122.13.0.15.0.kos-9eb.war-1de.cyt-3ac.uda-a5.ful-11)!", + result: { + word: "fular", + correct: 13, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "02.05.2025", + }, + }, + { + date: "02.05.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpETMtwWdm5SO00Sdr9mLxIWLyVXbuAjL14SMuETMuIjMx0ichxWdmhSI", + value: "!(fular-122.11.1.5.0.mur-b1.oku-49.ful-11)!", + result: { + word: "fular", + correct: 11, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "02.05.2025", + }, + }, + { + date: "02.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpETMtwmLw0ia1ZmL5QTLoN2MukjZmFTLyF2auQmM00icwNnLw4SNx4SMuQTMuIjMx0ichxWdmhSI", + value: "!(fular-122.14.1.15.0.spr-42d.kar-1ff9.3ch-49.fuj-0.l-11)!", + result: { + word: "fular", + correct: 14, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "02.05.2025", + }, + }, + { + date: "02.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMx0Cb1ZmL5I2NtIXYo5CNhVTL6JHdllmbuAjL1EjLy4COuIjMx0ichxWdmhSI", + value: "!(fular-122.8.2.15.0.nietrz-5a4.har-7b9.ful-11)!", + result: { + word: "fular", + correct: 8, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "02.05.2025", + }, + }, + { + date: "02.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMx0CbuATLyVnZuIWZtg2Yz4CMtYGbh5SNiFTLoN2MuQmNx0SewNnL2cTLyVnYuYmYy0SdoNmLw4SOx4CNuYTMuIjMx0ichxWdmhSI", + value: + "!(fular-122.16.4.19.0.chu-2bf.bur-76.spy-16d.3ch-1b5.alf-0.3ch-eb.fur-0.l-11)!", + result: { + word: "fular", + correct: 16, + position: 4, + incorrect: 19, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 39, + date: "02.05.2025", + }, + }, + { + date: "02.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMx0Cb1ZmLkBjMtwWdw5SY10Cb1dnL5czMtsWZs5yYz0ybiFmLx4COx4iMuYTMuIjMx0ichxWdmhSI", + value: "!(fular-122.16.2.18.1.abo-3c.lek-379.wul-5a.pul-20d.ful-11)!", + result: { + word: "fular", + correct: 16, + position: 2, + incorrect: 18, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 36, + date: "02.05.2025", + }, + }, + { + date: "02.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxETLsVnZukDNtU3av5iM20ichxmLhFzNz0ieyBnLw4iMx4iMuMTMuIjMx0ichxWdmhSI", + value: "!(fular-122.13.2.12.0.prz-371a.lar-62.oku-49.ful-11)!", + result: { + word: "fular", + correct: 13, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "02.05.2025", + }, + }, + { + date: "02.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpETMtwWdm5CMxMTLoN2MuYWOz0ichhmLmRDNtIXYi5SYxITMtIXYt5iMkVWLyFGcuQmZ2ETLhp3cuMmNh1SYydmLw4yNx4yMucTMuIjMx0ichxWdmhSI", + value: + "!(fular-122.17.3.17.0.gra-a6c.sza-16fd.par-ed2.mar-121a.bar-44f.har-39f.3ch-310.ful-11)!", + result: { + word: "fular", + correct: 17, + position: 3, + incorrect: 17, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 37, + date: "02.05.2025", + }, + }, + { + date: "02.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpETMtwWdm5CZwITLsVHcuATLyRXYuMjNj1SZypnLw4SOx4SMuITMuIjMx0ichxWdmhSI", + value: "!(fular-122.12.1.19.0.zre-c63.atr-0.pul-20d.ful-11)!", + result: { + word: "fular", + correct: 12, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "02.05.2025", + }, + }, + { + date: "02.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMx0Cb1ZmLw0yZsVnL3QjMto2b35yM5gTYx0ieyBnLw4yNx4SMuETMuIjMx0ichxWdmhSI", + value: "!(fular-122.11.1.17.0.prz-1a893.woj-247.ulg-0.ful-11)!", + result: { + word: "fular", + correct: 11, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "02.05.2025", + }, + }, + { + date: "02.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpETMtwWdm5yMtYWds5yNzQTLoN2MukzNy0yd5dnLkFWMtg2Yz4SMlVTLyFmYuITN0ETLhR3cukDNy0CZv1mLw4CMy4yMukTMuIjMx0ichxWdmhSI", + value: + "!(fular-122.19.3.20.0.mod-249.sta-1452.bar-5e1.3ch-1ad.wyw-279.3ch-437.luf-3.ful-11)!", + result: { + word: "fular", + correct: 19, + position: 3, + incorrect: 20, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 42, + date: "02.05.2025", + }, + }, + { + date: "02.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxEjLkdTLsVnZuMTLmVHbuE2Nx0yZhpmL1EWLhRWduIWNtMWdw5yNy0ya1VmLw4SNx4iMuUjMuIjMx0ichxWdmhSI", + value: + "!(fular-122.25.2.15.0.euk-27.puc-5b.uda-a5.jag-17a.luf-3.ful-7d.11)!", + result: { + word: "fular", + correct: 25, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "02.05.2025", + }, + }, + { + date: "02.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMx0Cb1ZmL1EWLhRWduYTM20ic1JmLhFjM10ievBnLw4iMx4SMuETMuIjMx0ichxWdmhSI", + value: "!(fular-122.11.1.12.0.poz-521a.bur-616.uda-a5.ful-11)!", + result: { + word: "fular", + correct: 11, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "02.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/03-05-2025-diffle-difflepl-grywebowe-22-litery-w-3-slowach-statue-of-liberty-12-" +] = [ + { + date: "03.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJzNtI3auUTYwETLrR2buIWZ50ycvtmLw4SOuEjLyEjLzITMtg2Y1J3avhSI", + value: "!(okruch-123.12.1.9.0.kos-9eb.odk-10a5.kr-72f)!", + result: { + word: "okruch", + correct: 12, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "03.05.2025", + }, + }, + { + date: "03.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJzNtI3av5CNlJTLvJXduMjYx0SdyJmL0ETNtg2Yz4iZ5gTLu9WbuYmMz0yYvtmLkdTMt8Wam5CO0gTZtoncw5CMugTMucjL5EjLzITMtg2Y1J3avhSI", + value: + "!(okruch-123.19.7.18.0.prz-e848.fio-17d.koc-32f.mon-89f.3ch-514.bru-1b3.uro-2e4.okr-72f)!", + result: { + word: "okruch", + correct: 19, + position: 7, + incorrect: 18, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 44, + date: "03.05.2025", + }, + }, + { + date: "03.05.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJzNtI3av5SMidTL1t2cuAjL24SMugjLzITMtg2Y1J3avhSI", + value: "!(okruch-123.8.1.6.0.sku-7b1.okr-72f)!", + result: { + word: "okruch", + correct: 8, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "03.05.2025", + }, + }, + { + date: "03.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJzNtI3av5SZ4IWLvh2YuQmM00icwNnLw4SMx4yMukjLzITMtg2Y1J3avhSI", + value: "!(okruch-123.9.3.11.0.spr-42d.cho-b8e.okr-72f)!", + result: { + word: "okruch", + correct: 9, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "03.05.2025", + }, + }, + { + date: "03.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJzNtI3av5iYk1yav1mL0EWNtonc0VWau5CMuQTMuIjLwEjLzITMtg2Y1J3avhSI", + value: "!(okruch-123.10.2.14.0.nietrz-5a4.mok-db.okr-72f)!", + result: { + word: "okruch", + correct: 10, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "03.05.2025", + }, + }, + { + date: "03.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJzNtI3auIWL1J2buYmYy0SdoNmLw4yNuIjLyEjLzITMtg2Y1J3avhSI", + value: "!(okruch-123.12.2.7.0.chu-2bf.obu-b.kr-72f)!", + result: { + word: "okruch", + correct: 12, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "03.05.2025", + }, + }, + { + date: "03.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmM34yYzgTLyt2buIjZl1icvtmLkZjMx0ybyBnLjZTYtEmcn5CMuATMuIjLzEjLzITMtg2Y1J3avhSI", + value: "!(okruch-123.13.2.10.0.gra-a6c.pro-126d.kor-ef2.okr-83c.72f)!", + result: { + word: "okruch", + correct: 13, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "03.05.2025", + }, + }, + { + date: "03.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJzNtI3av5SYtMWdy5yM5gTYx0ieyBnLw4SOuAjL0EjLzITMtg2Y1J3avhSI", + value: "!(okruch-123.14.0.9.0.prz-1a893.ruc-a.okr-72f)!", + result: { + word: "okruch", + correct: 14, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "03.05.2025", + }, + }, + { + date: "03.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZycTLytmL4MjYtInYv5SYxITNto3bw5CMuATMuEjLwEjLzITMtg2Y1J3avhSI", + value: "!(okruch-123.10.1.10.0.poz-521a.obr-b38.kr-72f)!", + result: { + word: "okruch", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "03.05.2025", + }, + }, + { + date: "03.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJzNtI3av5iZ40ic1pmLhFzNz0ieyBnLw4iMx4SMukjLzITMtg2Y1J3avhSI", + value: "!(okruch-123.9.1.12.0.prz-371a.jur-8f.okr-72f)!", + result: { + word: "okruch", + correct: 9, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "03.05.2025", + }, + }, + { + date: "03.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmM30icr9mL0AjZtw2br5CNzQWLvB3cuE2Nt4We35CMucTMuIjLxEjLzITMtg2Y1J3avhSI", + value: "!(okruch-123.11.2.17.0.wyn-7a.spo-d34.kol-f04.okr-72f)!", + result: { + word: "okruch", + correct: 11, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "03.05.2025", + }, + }, + { + date: "03.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJzNtInL00Sdr9mLkNmYx0ibvtmLw4SOuEjLzEjLzITMtg2Y1J3avhSI", + value: "!(okruch-123.13.1.9.0.kon-1bcd.oku-4.r-72f)!", + result: { + word: "okruch", + correct: 13, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "03.05.2025", + }, + }, + { + date: "03.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZycTLyt2buQDMm1CbvtmL0IjNy0icvBnL5QjMtQ2bt5CMuQTMuIjLzEjLzITMtg2Y1J3avhSI", + value: "!(okruch-123.13.2.14.0.mod-249.por-2624.kol-f04.okr-72f)!", + result: { + word: "okruch", + correct: 13, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "03.05.2025", + }, + }, + { + date: "03.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmM30icr9mL3ITLrVXZuAjL24iMugjLzITMtg2Y1J3avhSI", + value: "!(okruch-123.8.2.6.0.euk-27.okr-72f)!", + result: { + word: "okruch", + correct: 8, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "03.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/04-03-2025-diffle-difflepl-grywebowe-21-liter-w-3-slowach-large-green-circle" +] = [ + { + date: "04.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4QjMtQWYuMjZy0CZvxmLlBzMtUGbi5CMuUjLw4iNx4yM20SYrJXY39GZhJDOlUzQlgSI", + value: "!(ładowarka-63.16.0.5.0.ble-30e.lod-2f3.ad-248)!", + result: { + word: "ładowarka", + correct: 16, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "04.03.2025", + }, + }, + { + date: "04.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO0ITLk5iM5MTLrFGbugTOt8me65CMukjLx4CNx4yM20SYrJXY39GZhJDOlUzQlgSI", + value: "!(ładowarka-63.14.1.9.0.zzo-98.lak-392.d-248)!", + result: { + word: "ładowarka", + correct: 14, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "04.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/05-04-2025-diffle-difflepl-grywebowe-39-liter-w-7-slowach-large-green-circle" +] = [ + { + date: "05.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkhzMtEWat5yY3MTLoN2MuAjZx0yclRmLzADNx0SZyBnLmRjNtg2Yz4yMxETL5pXduMDNzETLsl3duAjL2EjLx4iMy4SN50yN4UCNDVSeDJUJ1MUJkNkQlUzQlEWathSI", + value: + "!(miażdżyć-95.22.1.16.0.wyl-1343.uzy-113.3ch-64f.pre-1403.des-1f0.3ch-37c.mia-38d)!", + result: { + word: "miażdżyć", + correct: 22, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "05.04.2025", + }, + }, + { + date: "05.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ4MTLhlWbuQzM10SYtNnL0ITOtoXY65CMucjLw4iNx4SN50yN4UCNDVSeDJUJ1MUJkNkQlUzQlEWathSI", + value: "!(miażdżyć-95.16.0.7.0.zaz-924.sma-534.mia-38d)!", + result: { + word: "miażdżyć", + correct: 16, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "05.04.2025", + }, + }, + { + date: "05.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkhzMtEWauUGOtQWet5iZ5MTMtQXe35CZ4ETLwNXYuAjL1EjLz4SNx4SN50yN4UCNDVSeDJUJ1MUJkNkQlUzQlEWathSI", + value: "!(miażdżyć-95.15.3.15.0.asp-18d.wyt-139f.myd-8e.ia-38d)!", + result: { + word: "miażdżyć", + correct: 15, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "05.04.2025", + }, + }, + { + date: "05.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ4MTLh5SYk1iep1mLwIjMuMWMy0CajNjL4EzMtk2dz5yN2ITLz9GZllmbuAjL2EjLw4SMy4SN50yN4UCNDVSeDJUJ1MUJkNkQlUzQlEWathSI", + value: + "!(miażdżyć-95.21.0.16.0.niedos-267.swi-318.3ch-21c.220.miz-da.a-38d)!", + result: { + word: "miażdżyć", + correct: 21, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "05.04.2025", + }, + }, + { + date: "05.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkhzMtEWauQzMi1Cbh1mLiRjNtkncr5iMtEWaz5iNyUWMtUWaw5iZiJTL1h2YuAjL3EjLw4SOx4SN50yN4UCNDVSeDJUJ1MUJkNkQlUzQlEWathSI", + value: + "!(miażdżyć-95.19.0.17.0.chu-2bf.pie-1e26.sia-2.kry-64b.mal-b34.ia-38d)!", + result: { + word: "miażdżyć", + correct: 19, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "05.04.2025", + }, + }, + { + date: "05.04.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ4MTLh5iZ40icp1mL0MTNtEWbz5SZyETLnVmL4kTLvpneuAjLzEjLx4SMy4SN50yN4UCNDVSeDJUJ1MUJkNkQlUzQlEWathSI", + value: "!(miażdżyć-95.21.1.13.0.zzo-98.eg-12e.sma-534.mir-8f.a-38d)!", + result: { + word: "miażdżyć", + correct: 21, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "05.04.2025", + }, + }, + { + date: "05.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkhzMtEWat5COzgTLhJHZuY2Ntg2Yz4yY0ITLrFGcuYjMtMWetVWau5CN4QTLjlGbuIzMzETLzl3duAjL4EjLy4CMy4SN50yN4UCNDVSeDJUJ1MUJkNkQlUzQlEWathSI", + value: + "!(miażdżyć-95.20.2.18.0.wys-1332.lic-484.niemyc-26.pak-24c.3ch-7f.dra-838.mia-38d)!", + result: { + word: "miażdżyć", + correct: 20, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "05.04.2025", + }, + }, + { + date: "05.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ4MTLh5SMmVTLllWbuEmMwITLtl3duUTMtkHd15yN50CajNjL0czY0ETL6JHcuAjL1EjLw4CMy4SN50yN4UCNDVSeDJUJ1MUJkNkQlUzQlEWathSI", + value: + "!(miażdżyć-95.20.0.15.0.prz-14c74.3ch-97.uty-15.wym-202a.mie-5f1.a-38d)!", + result: { + word: "miażdżyć", + correct: 20, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "05.04.2025", + }, + }, + { + date: "05.04.2025", + nick: "Swbd", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkhzMtEmLmJWLnlWbuAjYtIXam5CZtcnek5iMlFTLsh2YuAjLzEjLy4CNx4SN50yN4UCNDVSeDJUJ1MUJkNkQlUzQlEWathSI", + value: "!(miażdżyć-95.14.2.13.0.chl-1e2.dzw-d.fir-b0.mig-bf.a-38d)!", + result: { + word: "miażdżyć", + correct: 14, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "05.04.2025", + }, + }, + { + date: "05.04.2025", + nick: "hapaczuri", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ4MTLh5iMxMTLz5COwcTLslWbuMDM5ETL6JHcuQjL5EjLw4iNx4SN50yN4UCNDVSeDJUJ1MUJkNkQlUzQlEWathSI", + value: "!(miażdżyć-95.16.0.19.4.prz-1903.mil-708.s-312.a-38d)!", + result: { + word: "miażdżyć", + correct: 16, + position: 0, + incorrect: 19, + knownIncorrect: 4, + totalWords: 4, + totalLetters: 35, + date: "05.04.2025", + }, + }, + { + date: "05.04.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkhzMuIWLh5iNhJWLllWbuAjLyEjLw4CNx4SN50yN4UCNDVSeDJUJ1MUJkNkQlUzQlEWathSI", + value: "!(miażdżyć-95.14.0.12.0.mie-ba6.a-b.38d)!", + result: { + word: "miażdżyć", + correct: 14, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "05.04.2025", + }, + }, + { + date: "05.04.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQGOz0SYp1mLhljYtkWb65iYwMTMtQWYu5CMugjLy4CNx4SN50yN4UCNDVSeDJUJ1MUJkNkQlUzQlEWathSI", + value: "!(miażdżyć-95.14.2.8.0.nad-130b.zmi-b9a.mia-38d)!", + result: { + word: "miażdżyć", + correct: 14, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "05.04.2025", + }, + }, + { + date: "05.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkhzMtEWat5CNzUTLh12cuUTZi1ie5dnL4kTLvpneuAjLwEjLy4yNx4SN50yN4UCNDVSeDJUJ1MUJkNkQlUzQlEWathSI", + value: "!(miażdżyć-95.17.2.10.0.zzo-98.wyz-be5.sma-534.mia-38d)!", + result: { + word: "miażdżyć", + correct: 17, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "05.04.2025", + }, + }, + { + date: "05.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkhzMtEWat5CNzETLhJnYuUTO1ETLsFmL4kTLvpneuAjLwEjLz4yNx4SN50yN4UCNDVSeDJUJ1MUJkNkQlUzQlEWathSI", + value: "!(miażdżyć-95.17.3.10.0.zzo-98.al-1595.bra-134.mia-38d)!", + result: { + word: "miażdżyć", + correct: 17, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "05.04.2025", + }, + }, + { + date: "05.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ4MTLhlWbuMWZt0Wek5SZ2IWLkFmbuMDNiRTLk9GcuAjLwEjLz4iNx4SN50yN4UCNDVSeDJUJ1MUJkNkQlUzQlEWathSI", + value: "!(miażdżyć-95.16.3.10.0.pod-4b43.nad-b6e.dym-ec.mia-38d)!", + result: { + word: "miażdżyć", + correct: 16, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "05.04.2025", + }, + }, + { + date: "05.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQGOz0SYp5SY3gTLrFmLx0Se65SMkBTMtIXYt5iN5YTLs9meuAjLxEjLw4COx4SN50yN4UCNDVSeDJUJ1MUJkNkQlUzQlEWathSI", + value: "!(miażdżyć-95.18.0.11.0.zol-696.mar-10d1.zy-1.ak-87a.ia-38d)!", + result: { + word: "miażdżyć", + correct: 18, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "05.04.2025", + }, + }, + { + date: "05.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkhzMtEWat5iY00SatNnLzkDOhFTL6JHcuAjLyEjLx4CNx4SN50yN4UCNDVSeDJUJ1MUJkNkQlUzQlEWathSI", + value: "!(miażdżyć-95.14.1.12.0.prz-1a893.smi-4b.mia-38d)!", + result: { + word: "miażdżyć", + correct: 14, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "05.04.2025", + }, + }, + { + date: "05.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ4MTLhlmLlhTLklnLiFTNtoWYt5iMtEGZ15iN0UWLwN3duAjL2EjLz4COx4SN50yN4UCNDVSeDJUJ1MUJkNkQlUzQlEWathSI", + value: "!(miażdżyć-95.18.3.16.0.wsp-e46.uda-2.maj-51b.yd-8e.ia-38d)!", + result: { + word: "miażdżyć", + correct: 18, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "05.04.2025", + }, + }, + { + date: "05.04.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkhzMtEmLmJWLn5iM4QTLvlWbuATOtQWe65iYhRTLiVGZuQWM3MTL6JHcuAjL0EjL14SMy4SN50yN4UCNDVSeDJUJ1MUJkNkQlUzQlEWathSI", + value: + "!(miażdżyć-95.21.5.14.0.prz-371d.deb-4ab.zyd-90.mio-482.g-bf.a-38d)!", + result: { + word: "miażdżyć", + correct: 21, + position: 5, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "05.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/07-04-2025-diffle-difflepl-grywebowe-39-liter-w-6-slowach-large-green-circle" +] = [ + { + date: "07.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNy0SanFmLwYTMtQWYy5CNz0yY1BnL3QWLzFmYuQzYtI3bt5iZlVTL6J3auAjL2EjLy4SMy4yN50icvRXY0l2ZhhSI", + value: + "!(agitator-97.21.2.16.0.krz-5ef.mor-c4.bas-d7.puc-34.rad-160.agi-24)!", + result: { + word: "agitator", + correct: 21, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "07.04.2025", + }, + }, + { + date: "07.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNy0SanFmLyETYtEmLycDNtUncn5CNycTLhp3cuYWYx0SYtFmL5gTMtI3b05CZlRTLvJ3auAjL4EjL04CNy4yN50icvRXY0l2ZhhSI", + value: + "!(agitator-97.24.4.18.0.kro-4ed.tor-189.ama-1af.sza-724.gru-472.a-a12.agi-24)!", + result: { + word: "agitator", + correct: 24, + position: 4, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 46, + date: "07.04.2025", + }, + }, + { + date: "07.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0ITLpdWYuATOt8Gbp5iM2cTLk9WbuAjLxEjLy4yMx4yN50icvRXY0l2ZhhSI", + value: "!(agitator-97.13.2.11.0.mod-762.ilo-90.agi-24)!", + result: { + word: "agitator", + correct: 13, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "07.04.2025", + }, + }, + { + date: "07.04.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjMtk2ZuEDMx0SasFmLkZWLnV2cuEGZyITLr9GcuAjLzEjLz4SMy4yN50icvRXY0l2ZhhSI", + value: "!(agitator-97.21.3.13.0.pok-22da.seg-fd.ali-101.gi-24)!", + result: { + word: "agitator", + correct: 21, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "07.04.2025", + }, + }, + { + date: "07.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNy0SauAzNt82Zh5CMtI3Zp5iZ4gTLyFGduATL0FmcuATLmF2ZuYzMtAHZv5SMtUGbn5iMwkTL5JHduYmYy0SdoNmLw4COx4CMx4SOy4yN50icvRXY0l2ZhhSI", + value: + "!(agitator-97.29.10.18.0.chu-2bf.try-902.gle-1.odp-36.gaf-0.rat-0.tar-88f.igr-0.ago-70.i-24)!", + result: { + word: "agitator", + correct: 29, + position: 10, + incorrect: 18, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 57, + date: "07.04.2025", + }, + }, + { + date: "07.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0ITLpdWYuUWL0l2ZuYjMh1CbhtmLkJDNtIHcz5CMukjL24COx4yN50icvRXY0l2ZhhSI", + value: "!(agitator-97.18.6.9.0.spr-42d.kal-a26.git-e.agi-24)!", + result: { + word: "agitator", + correct: 18, + position: 6, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "07.04.2025", + }, + }, + { + date: "07.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNy0SanFmLkZWL0lmZuETY20CbhBnL3ITLrVXZuEjLzEjL04SOx4yN50icvRXY0l2ZhhSI", + value: "!(agitator-97.19.4.13.1.euk-27.pal-6a1.fit-fd.agi-24)!", + result: { + word: "agitator", + correct: 19, + position: 4, + incorrect: 13, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 36, + date: "07.04.2025", + }, + }, + { + date: "07.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0ITLpdmL1ETLpdXYuYGZy0yahpnLz0yZpZmLjZTYtEmcn5CMucjL04yMy4yN50icvRXY0l2ZhhSI", + value: "!(agitator-97.23.4.7.0.gra-a6c.fig-3.zak-2df.awi-15.gi-24)!", + result: { + word: "agitator", + correct: 23, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "07.04.2025", + }, + }, + { + date: "07.04.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0ITLp5CZl1SYnFmL00yZhJnLwITLh12cuAjLxEjLy4COx4yN50icvRXY0l2ZhhSI", + value: "!(agitator-97.18.2.11.0.sma-20.rag-4.aga-ed.i-24)!", + result: { + word: "agitator", + correct: 18, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "07.04.2025", + }, + }, + { + date: "07.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNy0SanFmLl1Cdp5CMtYWYn5iN0ITLq92duImNx0Cdp1mLzkDOhFTL6JHcuAjL2EjL14SMy4yN50icvRXY0l2ZhhSI", + value: + "!(agitator-97.21.5.16.0.prz-1a893.mit-16b.woj-246.gaf-0.it-e.agi-24)!", + result: { + word: "agitator", + correct: 21, + position: 5, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 42, + date: "07.04.2025", + }, + }, + { + date: "07.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0ITLpdmLxATMtkGbh5CM0EWLvB3cuAjLwEjLz4iNx4yN50icvRXY0l2ZhhSI", + value: "!(agitator-97.16.3.10.0.spo-a40.ali-101.gi-24)!", + result: { + word: "agitator", + correct: 16, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "07.04.2025", + }, + }, + { + date: "07.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0ITLpdWYuQDNx0yavxmLiBTYt02bw5CNmFTLkl3duAjLxEjLy4yNx4yN50icvRXY0l2ZhhSI", + value: "!(agitator-97.17.2.11.0.wyd-1f4.pom-a0b.lok-144.agi-24)!", + result: { + word: "agitator", + correct: 17, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "07.04.2025", + }, + }, + { + date: "07.04.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNy0SanFmLjhjZtI2bw5iNhJWLllWbuAjL0EjLw4CNx4yN50icvRXY0l2ZhhSI", + value: "!(agitator-97.14.0.14.0.mie-ba6.pob-f8c.agi-24)!", + result: { + word: "agitator", + correct: 14, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "07.04.2025", + }, + }, + { + date: "07.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjMtk2Zh5CMtYWYn5SZkJTLoN2MuATL0FmcuUzM00CdhBnLlVTLhtWduAjLyEjL24SMy4yN50icvRXY0l2ZhhSI", + value: + "!(agitator-97.21.6.12.0.uka-5e.pat-435.rat-0.3ch-2de.gaf-0.agi-24)!", + result: { + word: "agitator", + correct: 21, + position: 6, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "07.04.2025", + }, + }, + { + date: "07.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0ITLpdmLxATMtkGbuM2YtIHdh5CNhVTL6JHdllmbuAjLyEjL04SMy4yN50icvRXY0l2ZhhSI", + value: "!(agitator-97.21.4.12.0.nietrz-5a4.atr-cc.li-101.gi-24)!", + result: { + word: "agitator", + correct: 21, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "07.04.2025", + }, + }, + { + date: "07.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNy0SanFmL2ITLm5SZiFTLiFGduEWMyUTL69GcuAjLyEjLz4iNx4yN50icvRXY0l2ZhhSI", + value: "!(agitator-97.16.3.12.0.poz-521a.tab-1be.f-26.agi-24)!", + result: { + word: "agitator", + correct: 16, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "07.04.2025", + }, + }, + { + date: "07.04.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjMtk2ZuE2Yx0SauFmLlNzMtQXYr5SYxczMtoncw5CMukjLy4SMy4yN50icvRXY0l2ZhhSI", + value: "!(agitator-97.21.2.9.0.prz-371a.kat-33e.ani-1ca.gi-24)!", + result: { + word: "agitator", + correct: 21, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "07.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/07-05-2025-diffle-difflepl-grywebowe-tak-lubie-wink-15-liter-w-2-slowach-large-g" +] = [ + { + date: "07.05.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVTLtlWbuYmMtkWbl5CMuQjLw4SMx4yNyETLhJ3ap1WathSI", + value: "!(mimikra-127.11.0.4.0.emi-2f.mim-5f)!", + result: { + word: "mimikra", + correct: 11, + position: 0, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "07.05.2025", + }, + }, + { + date: "07.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ10Sbp1mL2UzMx0SY6NnLw4iNuMjL54yNyETLhJ3ap1WathSI", + value: "!(mimikra-127.9.3.6.0.sza-1356.mim-5f)!", + result: { + word: "mimikra", + correct: 9, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "07.05.2025", + }, + }, + { + date: "07.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVTLt5yMlFTLrlWbucDNx0SbhJnLiVWOtM3br5CMuYjLz4yNx4yNyETLhJ3ap1WathSI", + value: "!(mimikra-127.17.3.6.0.kos-9eb.ram-147.mik-1e3.m-5f)!", + result: { + word: "mimikra", + correct: 17, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "07.05.2025", + }, + }, + { + date: "07.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWNt0mLzUWMtsWat5CMtI3ap5CNhVTL6JHdllmbuAjLxEjLx4SOx4yNyETLhJ3ap1WathSI", + value: "!(mimikra-127.19.1.11.0.nietrz-5a4.ikr-0.mik-1e3.m-5f)!", + result: { + word: "mimikra", + correct: 19, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "07.05.2025", + }, + }, + { + date: "07.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWNt0mLzUWMtsmL2UTMtMXat5CMtAXas5iZiJTL1h2YuAjLxEjLw4CMy4yNyETLhJ3ap1WathSI", + value: "!(mimikra-127.20.0.11.0.chu-2bf.lip-0.mis-156.k-1e3.m-5f)!", + result: { + word: "mimikra", + correct: 20, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "07.05.2025", + }, + }, + { + date: "07.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ10SbuATLqlWbuMjZz0SYipnL5AzMtg2Yz4CMhFTL1h2YuMTZx0yap1mLw0icrlmLkFTMtIXaw5yY2EWLhJ3ZuAjL3EjLx4SNy4yNyETLhJ3ap1WathSI", + value: + "!(mimikra-127.25.1.17.0.gra-a6c.pir-11d.ikr-0.mik-1e3.chu-1a0.3ch-309.zba-3f3.mij-0.m-5f)!", + result: { + word: "mimikra", + correct: 25, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 43, + date: "07.05.2025", + }, + }, + { + date: "07.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ10SbuMTZx0yap1mLw0icrlmLkJDNtIHcz5CMukjLx4COx4yNyETLhJ3ap1WathSI", + value: "!(mimikra-127.18.1.9.0.spr-42d.ikr-0.mik-1e3.m-5f)!", + result: { + word: "mimikra", + correct: 18, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "07.05.2025", + }, + }, + { + date: "07.05.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ10Sbp1mL1gDNx0ichtmLxMWMtc3ah5CMugjL04CMx4yNyETLhJ3ap1WathSI", + value: "!(mimikra-127.10.4.8.0.akw-1c1.kar-1485.mim-5f)!", + result: { + word: "mimikra", + correct: 10, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "07.05.2025", + }, + }, + { + date: "07.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ10SbuMTZx0yap1mL2YWLhl2duczYx0CZhJnLzkDOhFTL6JHcuAjL0EjLy4SOx4yNyETLhJ3ap1WathSI", + value: "!(mimikra-127.19.2.14.0.prz-1a893.rad-1c7.wia-f6.mik-1e3.m-5f)!", + result: { + word: "mimikra", + correct: 19, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "07.05.2025", + }, + }, + { + date: "07.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVTLt5yMlFTLr5CMtInLiZTMtQnL2YWMtcWat5CNmFTLkl3duAjLxEjLy4SNy4yNyETLhJ3ap1WathSI", + value: "!(mimikra-127.25.2.11.0.wyd-1f4.mig-1f6.t-16b.r-0.k-1e3.m-5f)!", + result: { + word: "mimikra", + correct: 25, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "07.05.2025", + }, + }, + { + date: "07.05.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWNt0Wat5SM2ETLhJ3auITOtknci5iNhJWLllWbuAjL1EjLx4iNx4yNyETLhJ3ap1WathSI", + value: "!(mimikra-127.16.1.15.0.mie-ba6.bry-92.kra-161.mim-5f)!", + result: { + word: "mimikra", + correct: 16, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "07.05.2025", + }, + }, + { + date: "07.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ10SbuMTZx0yauImNx0CduETOx0icp5SO0ITLk9WbuAjLwEjLx4yMy4yNyETLhJ3ap1WathSI", + value: "!(mimikra-127.23.1.10.0.mod-249.ir-191.t-16b.k-1e3.m-5f)!", + result: { + word: "mimikra", + correct: 23, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "07.05.2025", + }, + }, + { + date: "07.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWNt0mLzUWMtsWat5CMtIXas5SYxczMtoncw5CMukjLx4yNx4yNyETLhJ3ap1WathSI", + value: "!(mimikra-127.17.1.9.0.prz-371a.lir-0.mik-1e3.m-5f)!", + result: { + word: "mimikra", + correct: 17, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "07.05.2025", + }, + }, + { + date: "07.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVTLtlWbuATLytWaucjMtsWdl5CMuYjLy4yMx4yNyETLhJ3ap1WathSI", + value: "!(mimikra-127.13.2.6.0.euk-27.ikr-0.mim-5f)!", + result: { + word: "mimikra", + correct: 13, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "07.05.2025", + }, + }, + { + date: "07.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVTLtlWbuATLytWauQGOtsWYy5SYxITNto3bw5CMukjLz4SNx4yNyETLhJ3ap1WathSI", + value: "!(mimikra-127.15.3.9.0.poz-521a.rak-8d.ikr-0.mim-5f)!", + result: { + word: "mimikra", + correct: 15, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "07.05.2025", + }, + }, + { + date: "07.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ10Sbp1mLhNTNtAXbp5CMi1icpZmLzEzMtIXYq5CMukjLz4iNx4yNyETLhJ3ap1WathSI", + value: "!(mimikra-127.16.3.9.0.jar-313.fir-b0.imp-53a.mim-5f)!", + result: { + word: "mimikra", + correct: 16, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "07.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/08-03-2025-flag-pl-diffle-difflepl-grywebowe-36-liter-w-5-slowa-large-green-circ" +] = [ + { + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZjYtIHcukTNx0ycvNnL3MTLvlmbuEWMz0CbvpnLmJmMtUHaj5CMuQTMuMjL5EjL3YTLllmbClTJ1MUJvJHczhSI", + value: "!(sprośnie-67.19.3.14.0.chu-2bf.zol-31a.nio-37.sos-159.pr-b6a)!", + result: { + word: "sprośnie", + correct: 19, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + }, + }, + { + date: "08.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZjYtIHcz5iNxUTLyB3buMTO4EWMtoncw5CMuITMuIjL3EjL3YTLllmbClTJ1MUJvJHczhSI", + value: "!(sprośnie-67.17.2.12.0.prz-1a893.opr-516.spr-b6a)!", + result: { + word: "sprośnie", + correct: 17, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZjYtIHcz5CO2QTLoN2MuUzM00ycvJnLzQzMx0Cb5dnLw4COuEjL4EjL3YTLllmbClTJ1MUJvJHczhSI", + value: "!(sprośnie-67.18.1.8.0.wyl-1343.ros-435.3ch-468.spr-b6a)!", + result: { + word: "sprośnie", + correct: 18, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZjYtIHcz5yNwETLs9meuEWZzMWL6JHcuM2NtMXZq5SNkZTMtUWat5iMuAjMuEjL4EjL3YTLllmbClTJ1MUJvJHczhSI", + value: "!(sprośnie-67.18.1.20.2.mie-16d5.jes-7c.prz-c3ea.zol-107.spr-b6a)!", + result: { + word: "sprośnie", + correct: 18, + position: 1, + incorrect: 20, + knownIncorrect: 2, + totalWords: 5, + totalLetters: 39, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmNi5SZkZjLiBDZtIHcz5iN1czMtoncw5CMuMTMuIjLzIjL3YTLllmbClTJ1MUJvJHczhSI", + value: "!(sprośnie-67.23.2.13.0.prz-3756.spr-d0b.6de.b6a)!", + result: { + word: "sprośnie", + correct: 23, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 38, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZjYuczNi5SZ1ImLkRjYucDOi1icwNnL2QTZtA3c35CMuATMuEjL5MjL3YTLllmbClTJ1MUJvJHczhSI", + value: "!(sprośnie-67.39.1.10.0.wsp-e46.spr-b87.b4d.b5e.b77.b6a)!", + result: { + word: "sprośnie", + correct: 39, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 50, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZjYuUWNi1icw5COxUWLyRnLlBDNx0SY6NnLw4COuAjLzIjL3YTLllmbClTJ1MUJvJHczhSI", + value: "!(sprośnie-67.23.0.8.0.sza-140e.tr-e18.pr-b5e.b6a)!", + result: { + word: "sprośnie", + correct: 23, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZjYtIHcz5COwIjMt8mcw5iM4QTLy9GZugDM30Cbp1mL3cjMtoWY65CMuITMuEjLwIjL3YTLllmbClTJ1MUJvJHczhSI", + value: "!(sprośnie-67.20.1.12.0.zaj-277.mil-708.dor-482.pro-2208.spr-b6a)!", + result: { + word: "sprośnie", + correct: 20, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZjYtIHcz5SNzQjL1M2MtM3by5iNkNjLlhTNtg2Yz4SOlJTLyd2buYmY40SZ6JnL1ADZtUmc65iMzMTMtMXe35CMukTMuQjL3IjL3YTLllmbClTJ1MUJvJHczhSI", + value: + "!(sprośnie-67.27.4.19.0.wys-1332.zre-d05.rze-8bf.ogr-2e9.3ch-58e.3d6.ros-3c5.435.spr-b6a)!", + result: { + word: "sprośnie", + correct: 27, + position: 4, + incorrect: 19, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 50, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZjYtIHcuUGO00ybsNnL2EmYtUWat5CMuATMuIjL2EjL3YTLllmbClTJ1MUJvJHczhSI", + value: "!(sprośnie-67.16.2.10.0.mie-ba6.slo-48e.pr-b6a)!", + result: { + word: "sprośnie", + correct: 16, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZjYtIHcz5yYxATNtM3bw5COzQTMtkGcz5iMihTLpB3buIGZ3ETLu9GcugTOt8me65CNuIjMuIjL1IjL3YTLllmbClTJ1MUJvJHczhSI", + value: + "!(sprośnie-67.25.2.22.4.zzo-98.pon-17db.opi-8b2.spi-1438.pos-501c.spr-b6a)!", + result: { + word: "sprośnie", + correct: 25, + position: 2, + incorrect: 22, + knownIncorrect: 4, + totalWords: 6, + totalLetters: 49, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmNi5SZ1IWLyB3cuMDN10SYpBnL2QTZtA3c35CMuMTMuEjLyIjL3YTLllmbClTJ1MUJvJHczhSI", + value: "!(sprośnie-67.22.1.13.0.wsp-e46.pia-543.spr-b5e.b6a)!", + result: { + word: "sprośnie", + correct: 22, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY2IWLyB3cuYGMz0icwVnLmBDZx0SZp5yYhJGNtQ2bw5CMuITMuIjL3EjL3YTLllmbClTJ1MUJvJHczhSI", + value: "!(sprośnie-67.17.2.12.0.pod-4bac.ie-1d0f.upr-30f.spr-b6a)!", + result: { + word: "sprośnie", + correct: 17, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "Tysiek", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY2IWLyB3cuUzM00ycvJnL1ITMtUncz5yN40Sau9mL5gTMtw2b65CMuMTMuQjLzIjL3YTLllmbClTJ1MUJvJHczhSI", + value: "!(sprośnie-67.23.4.13.0.zol-189.oni-87.sru-125.ros-435.spr-b6a)!", + result: { + word: "sprośnie", + correct: 23, + position: 4, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY2ImLhZzMtIHcuY2M30ic0NnLkZTMtUGbn5CMuITMuAjL2EjL3YTLllmbClTJ1MUJvJHczhSI", + value: "!(sprośnie-67.16.0.12.0.gle-16d.str-73f.pr-36a.b6a)!", + result: { + word: "sprośnie", + correct: 16, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmNi1icwNnL4gDNtI3bk5SNzQTLz9mcuE2N50CboNmLxczMtMXYi5yY0MTLp52cugTOt8me65CMugTMuAjLyMjL3YTLllmbClTJ1MUJvJHczhSI", + value: + "!(sprośnie-67.32.0.18.0.zzo-98.sni-34c.bas-371.chl-97a.ros-435.dor-488.spr-b6a)!", + result: { + word: "sprośnie", + correct: 32, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 50, + date: "08.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/08-05-2025-diffle-difflepl-grywebowe-26-liter-w-3-slowach-large-green-circle" +] = [ + { + date: "08.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmRjMto3bk5SNjVDNto3bw5yM0MTMtwWe35CMuYjLy4COx4COyETL3gTJ0MUJhdXYup3bkhSI", + value: "!(doznawać-128.18.2.6.0.wyl-1343.poz-45c5.doz-24f)!", + result: { + word: "doznawać", + correct: 18, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "08.05.2025", + }, + }, + { + date: "08.05.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ0ITL69GZuYTN50ieh5mLwYTLn9GZuQjMtQmYv5SZmlTLoN2cuAjM1ITLs9GcuAjLzEjLy4SMz4COyETL3gTJ0MUJhdXYup3bkhSI", + value: + "!(doznawać-128.31.2.13.0.pol-2520.sch-9fe.obd-24.dog-60.naz-956.doz-24f)!", + result: { + word: "doznawać", + correct: 31, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 46, + date: "08.05.2025", + }, + }, + { + date: "08.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmRjMuQzNz4SMiNTL69mLk1yd6RmLiNjNtcHZv5iN0UWLwN3duAjL0EjL54COy4COyETL3gTJ0MUJhdXYup3bkhSI", + value: "!(doznawać-128.28.9.14.0.wsp-e46.odw-63b.dzw-d.oz-3b1.374.24f)!", + result: { + word: "doznawać", + correct: 28, + position: 9, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 51, + date: "08.05.2025", + }, + }, + { + date: "08.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmRjMuImZx0ievRmLkhTMtA3ch5CMucjLx4COx4COyETL3gTJ0MUJhdXYup3bkhSI", + value: "!(doznawać-128.18.1.7.0.asp-18d.doz-1fb.24f)!", + result: { + word: "doznawać", + correct: 18, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "08.05.2025", + }, + }, + { + date: "08.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYGNy0ievRmL1MWN00ievBnLmJmMtUHaj5CMuYjLx4SOx4COyETL3gTJ0MUJhdXYup3bkhSI", + value: "!(doznawać-128.19.1.6.0.chu-2bf.poz-45c5.doz-24f)!", + result: { + word: "doznawać", + correct: 19, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "08.05.2025", + }, + }, + { + date: "08.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ0ITL69GZuQzN10iYhpnL1cTMt4GZv5CZj1ibvRnL2QzYx0ycvRmL4E2Mt4GZv5CNkNTLvJ3ZuEjLzEjL04SMz4COyETL3gTJ0MUJhdXYup3bkhSI", + value: + "!(doznawać-128.31.4.13.1.gro-3d4.odn-3a8.dos-1c46.ton-cd.odn-175.zab-574.doz-24f)!", + result: { + word: "doznawać", + correct: 31, + position: 4, + incorrect: 13, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 48, + date: "08.05.2025", + }, + }, + { + date: "08.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYGNy0ievRmLwATMtQGZv5iMzMTMtMXe35CMuYjLx4iNx4COyETL3gTJ0MUJhdXYup3bkhSI", + value: "!(doznawać-128.16.1.6.0.wys-1332.odd-100.doz-24f)!", + result: { + word: "doznawać", + correct: 16, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "08.05.2025", + }, + }, + { + date: "08.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ0ITL69GZuUzY1QTL69GcugTOt8me65CMuYjLw4COx4COyETL3gTJ0MUJhdXYup3bkhSI", + value: "!(doznawać-128.18.0.6.0.zzo-98.poz-45c5.doz-24f)!", + result: { + word: "doznawać", + correct: 18, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "08.05.2025", + }, + }, + { + date: "08.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ0ITL69GZuEGZy0SYupnLzkDOhFTL6JHcuAjLxEjLx4yNx4COyETL3gTJ0MUJhdXYup3bkhSI", + value: "!(doznawać-128.17.1.11.0.prz-1a893.zna-2da.doz-24f)!", + result: { + word: "doznawać", + correct: 17, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "08.05.2025", + }, + }, + { + date: "08.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ0ITL65COmFTLr9GZugTYxMTL69mcuMWZ4QTL69GcuYWMtkmev5iZ5QTLvxmeuAjLzEjLy4CMz4COyETL3gTJ0MUJhdXYup3bkhSI", + value: + "!(doznawać-128.30.2.13.0.zlo-49f.ozi-1f.poz-48ec.roz-31a8.dok-1f8.z-24f)!", + result: { + word: "doznawać", + correct: 30, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 45, + date: "08.05.2025", + }, + }, + { + date: "08.05.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmRjMto3bk5SNjVDNto3bw5iNhJWLllWbuAjLwEjLy4COx4COyETL3gTJ0MUJhdXYup3bkhSI", + value: "!(doznawać-128.18.2.10.0.mie-ba6.poz-45c5.doz-24f)!", + result: { + word: "doznawać", + correct: 18, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "08.05.2025", + }, + }, + { + date: "08.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYGNy0ievRmL5QjMtQ2bt5CMuYjLy4iMx4COyETL3gTJ0MUJhdXYup3bkhSI", + value: "!(doznawać-128.12.2.6.0.mod-249.doz-24f)!", + result: { + word: "doznawać", + correct: 12, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "08.05.2025", + }, + }, + { + date: "08.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmRjMto3bk5SNjVDNto3bw5iMwETLup3cugTOt8me65CMukjLx4yMy4COyETL3gTJ0MUJhdXYup3bkhSI", + value: "!(doznawać-128.23.1.9.0.zzo-98.szn-102.poz-45c5.doz-24f)!", + result: { + word: "doznawać", + correct: 23, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "08.05.2025", + }, + }, + { + date: "08.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYGNy0ievRmLldjMtQ3c15SY0MTL65iZmFWLn9GZuMWYiRTLk9GcuAjLzEjLx4yNy4COyETL3gTJ0MUJhdXYup3bkhSI", + value: "!(doznawać-128.27.1.13.0.pod-4bac.dog-aff.z-34a.ust-27e.doz-24f)!", + result: { + word: "doznawać", + correct: 27, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "08.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/09-03-2025-flag-pl-diffle-difflepl-grywebowe-34-litery-w-4-slowach-large-green-c" +] = [ + { + date: "09.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjY30ybydmLhN2Mt8Gbi5iNyITLuR2buYTYi1SZp1mLw4SNx4iMucTMugjNtUWauFkQlUzQl8mcnhSI", + value: "!(groźnie-68.17.2.15.0.mie-ba6.odn-226.blo-3ca.gro-7b8)!", + result: { + word: "groźnie", + correct: 17, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOidTLvJ3ZuEGNx0ibvpnLzQzMx0Cb5dnLw4SMx4SMuITMugjNtUWauFkQlUzQl8mcnhSI", + value: "!(groźnie-68.12.1.11.0.wyl-1343.zon-14a.gro-7b8)!", + result: { + word: "groźnie", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjY30yby5yY0ITLu92ZuEWY20SZppnL0ITLp12YuAjNtg2Yy4CMwMTLk9GcuIzN00yb0NnLw4SMy4SMuYTMugjNtUWauFkQlUzQl8mcnhSI", + value: + "!(groźnie-68.16.1.21.0.sto-472.pod-300.2ch-60.cmi-24.zie-6aa.gon-24c.ro-7b8)!", + result: { + word: "groźnie", + correct: 16, + position: 1, + incorrect: 21, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 38, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4I2Nt8mcn5SOy0ybsRmLllTMx0Sb5dnLw4SMx4SMuMTMugjNtUWauFkQlUzQl8mcnhSI", + value: "!(groźnie-68.13.1.11.0.wym-119e.dlo-29.gro-7b8)!", + result: { + word: "groźnie", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjY30yby5CNzETLu92ZuY2MtQWZu5CN5MTLoN2MuM2YmFTLiFmeuMWNx0yYz9mLyMzMx0yc5dnLw4SOx4CMugTMugjNtUWauFkQlUzQl8mcnhSI", + value: + "!(groźnie-68.18.0.19.0.wys-1332.osc-15c.zab-1fcc.3ch-394.ned-3f.gon-134.ro-7b8)!", + result: { + word: "groźnie", + correct: 18, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 37, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4I2Nt8mcn5yYwUTLvJnYuYDNl1CczdnLw4iMx4SMuMTMugjNtUWauFkQlUzQl8mcnhSI", + value: "!(groźnie-68.13.1.12.0.wsp-e46.bro-50c.gro-7b8)!", + result: { + word: "groźnie", + correct: 13, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjY34CN5cTLvJnL1ETLm92ZuUWNy0SasNnL0ITLklneuAzY5ETLs92aucDMhFTLhJHduI2NjFTLu9GcuYmYy0SdoNmLw4yNy4iMuUjMugjNtUWauFkQlUzQl8mcnhSI", + value: + "!(groźnie-68.25.2.27.0.chu-2bf.pon-1c7b.tra-1a07.kol-19c0.zyd-24.sli-25e.gof-15.ro-794.7b8)!", + result: { + word: "groźnie", + correct: 25, + position: 2, + incorrect: 27, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 54, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4I2Nt8mcuY2Mx0ibvdmLyQTMtkmbz5CO50yb6pnLw4iMx4CMuQTMugjNtUWauFkQlUzQl8mcnhSI", + value: "!(groźnie-68.14.0.12.0.zzo-98.sni-142.gon-13f.ro-7b8)!", + result: { + word: "groźnie", + correct: 14, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjY30ybydmLwcDOwETL69mcuQGOx0CczFmLw4SMx4SMuITMugjNtUWauFkQlUzQl8mcnhSI", + value: "!(groźnie-68.12.1.11.0.asp-18d.roz-10870.gro-7b8)!", + result: { + word: "groźnie", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOidTLvJ3ZuQzM3ATMto3by5iMt4mcr5SOiFTLy9mbuYDNl1CczdnLx4SMy4iMugTMugjNtUWauFkQlUzQl8mcnhSI", + value: "!(groźnie-68.18.2.21.1.wsp-e46.nor-1b9.krn-2.roz-10734.gro-7b8)!", + result: { + word: "groźnie", + correct: 18, + position: 2, + incorrect: 21, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 41, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4I2Nt8mcn5yYi1ydvJnLkhTMtg2Yz4yY4ITLi9mYuUzN10CajNjLwMDOtsWZz5CZjRTLsN3buMTZx0iev1mLjFmY00CZvBnLw4iMy4SMuAjMugjNtUWauFkQlUzQl8mcnhSI", + value: + "!(groźnie-68.20.1.22.0.pod-4bac.moz-1e3.osl-4cd.sek-830.3ch-575.bob-28c.3ch-18d.row-bc.gro-7b8)!", + result: { + word: "groźnie", + correct: 20, + position: 1, + incorrect: 22, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 43, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjY30ybydmLhV2Yx0ybyBnLlVWLi9mcuIDNi1ieytmLw4yMx4CMuQTMugjNtUWauFkQlUzQl8mcnhSI", + value: "!(groźnie-68.14.0.13.0.krz-b42.rob-ee.pro-1cea.gro-7b8)!", + result: { + word: "groźnie", + correct: 14, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4I2NugTO30yby5yNmZTLy92ZuATOtcWYq5COwcTLslWbuAjL54SMuEjMugjNtUWauFkQlUzQl8mcnhSI", + value: "!(groźnie-68.21.1.9.0.mil-708.jag-90.gor-6f7.ro-798.7b8)!", + result: { + word: "groźnie", + correct: 21, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOidjLzI2Nt8mcn5CO50ievdnL1EjMt4mYv5iYkdTMt42bw5CO50yb6pnLx4SOx4CMuMjMugjNtUWauFkQlUzQl8mcnhSI", + value: + "!(groźnie-68.23.0.19.1.zzo-98.pon-17db.obn-215.woz-98.gro-7b3.7b8)!", + result: { + word: "groźnie", + correct: 23, + position: 0, + incorrect: 19, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 42, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4I2NucTY00ybydmL5QWMtkGbz5CO0MWLsh2YuEWMt4mcr5SZzkDMx0ievJnLkFzNz0ieyBnLw4CNy4SMuUjMugjNtUWauFkQlUzQl8mcnhSI", + value: + "!(groźnie-68.25.1.24.0.prz-371d.roz-1093e.krn-1a.chl-c48.sli-1d9.gro-4a7.7b8)!", + result: { + word: "groźnie", + correct: 25, + position: 1, + incorrect: 24, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 50, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOidTLvJ3ZuY2Ny0ybydnLwUTOtI3az5yM5gTYx0ieyBnLw4SNx4SMuAjMugjNtUWauFkQlUzQl8mcnhSI", + value: "!(groźnie-68.20.1.15.0.prz-1a893.skr-950.wro-27f.gro-7b8)!", + result: { + word: "groźnie", + correct: 20, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "Tysiek", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjY34CNwQTLvJ3ZuQmZ10CajNjLyEjNt8mc05yYxETL1p3YukDMx0SZsNnL0YWLi9mcukDOx0CbvpnLw4SMy4iMuYjMugjNtUWauFkQlUzQl8mcnhSI", + value: + "!(groźnie-68.26.2.21.0.zol-189.rob-f4.sle-109.czu-11c.tro-612.3ch-5fd.gro-404.7b8)!", + result: { + word: "groźnie", + correct: 26, + position: 2, + incorrect: 21, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 49, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjY30ybydmLhFWLvJ3duMDN0ETLvJHcuYWYi1ybspnLxMTLs9mcuMTO30SZ6NnLw4yNx4iMuAjMugjNtUWauFkQlUzQl8mcnhSI", + value: + "!(groźnie-68.20.2.17.0.sze-793.rol-31.zlo-baf.pro-1443.wro-aa.gro-7b8)!", + result: { + word: "groźnie", + correct: 20, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4I2NugTO30ybydmL1QzNtI3br5SMiFWL3R2buMGNy0CbpNnL2ITZx0SZpBnLw4iNx4SMuAjMugjNtUWauFkQlUzQl8mcnhSI", + value: + "!(groźnie-68.20.1.16.0.pie-1e26.sil-24c.odw-ab1.kor-745.gro-798.7b8)!", + result: { + word: "groźnie", + correct: 20, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "09.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/09-04-2025-diffle-difflepl-23-litery-w-3-slowach-large-green-circle-11-large-yel" +] = [ + { + date: "09.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATMtQmcv5SNjVTMtc2bw5iNlRWLu9WbuAjLyEjLw4SMx4SO50iclRmcvhSI", + value: "!(order-99.11.0.12.0.mon-de6.pog-15c5.ord-10)!", + result: { + word: "order", + correct: 11, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "09.04.2025", + }, + }, + { + date: "09.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwETLkJ3bugjMx0CbpJmL2kTMtI3bt5CMlRTL19GcuAjLzEjLw4CMx4SO50iclRmcvhSI", + value: "!(order-99.10.0.13.0.pou-4e0.mor-196.bil-128.ord-10)!", + result: { + word: "order", + correct: 10, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "09.04.2025", + }, + }, + { + date: "09.04.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwETLkJ3buAjNt82Z15CM2cTLy9mZuEGZyITLr9GcuAjL1EjLw4yMx4SO50iclRmcvhSI", + value: "!(order-99.13.0.15.0.pok-22da.for-760.ugo-60.ord-10)!", + result: { + word: "order", + correct: 13, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "09.04.2025", + }, + }, + { + date: "09.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwETLkJ3buQmM00icwNnLw4COuEjL44SO50iclRmcvhSI", + value: "!(order-99.8.1.8.0.spr-42d.ord-10)!", + result: { + word: "order", + correct: 8, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "09.04.2025", + }, + }, + { + date: "09.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwETLkJ3buMTZz0yZlxmLlNTLlJHZuUzNx0icvZmL5M2My0icvBnL3I2NtI3az5iZiJTL1h2YuAjLwIjLz4CNx4SO50iclRmcvhSI", + value: + "!(order-99.14.3.20.0.chu-2bf.skr-7b7.por-23c9.for-175.dre-3e.leg-3e3.ord-10)!", + result: { + word: "order", + correct: 14, + position: 3, + incorrect: 20, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 37, + date: "09.04.2025", + }, + }, + { + date: "09.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwETLkJ3buQDZtI2by5iY3czNtoncw5CMugjLy4CMx4SO50iclRmcvhSI", + value: "!(order-99.10.2.8.0.prz-777b.rob-d4.ord-10)!", + result: { + word: "order", + correct: 10, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "09.04.2025", + }, + }, + { + date: "09.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMx0CZy9mLkRWLkVmZuUWOx0ieyRmL1UWOtEmcn5CMucjL04CMx4SO50iclRmcvhSI", + value: "!(order-99.10.4.7.0.gra-9e5.drz-19e.fed-dd.ord-10)!", + result: { + word: "order", + correct: 10, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "09.04.2025", + }, + }, + { + date: "09.04.2025", + nick: "hapaczuri", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMx0CZy9mL3YWMtI3bt5SM2IWLllGcuAjLyEjLw4yMx4SO50iclRmcvhSI", + value: "!(order-99.13.0.12.0.pie-b61.mor-1f7.ord-10)!", + result: { + word: "order", + correct: 13, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "09.04.2025", + }, + }, + { + date: "09.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwETLkJ3buYzY00icvtmLzkDOhFTL6JHcuAjLzEjLw4CMx4SO50iclRmcvhSI", + value: "!(order-99.10.0.13.0.prz-1a893.kor-4c6.ord-10)!", + result: { + word: "order", + correct: 10, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "09.04.2025", + }, + }, + { + date: "09.04.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwETLkJ3buYWN00iYvRmL2EmYtUWat5CMuMTMuIjL54SO50iclRmcvhSI", + value: "!(order-99.9.2.13.0.mie-ba6.dob-45f.ord-10)!", + result: { + word: "order", + correct: 9, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "09.04.2025", + }, + }, + { + date: "09.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATMtQmcv5iZwYTLy9GZuYWL39mcucjMtsWdl5CMukjLz4CNx4SO50iclRmcvhSI", + value: "!(order-99.14.3.9.0.euk-27.row-f.dor-60f.ord-10)!", + result: { + word: "order", + correct: 14, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "09.04.2025", + }, + }, + { + date: "09.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwETLkJ3buATNtQ2br5CO20CZ1BnL5QjMtIXZk5CNmFTLkl3duAjLwEjLx4yNx4SO50iclRmcvhSI", + value: "!(order-99.17.1.10.0.wyd-1f4.der-249.pud-68.kod-50.ord-10)!", + result: { + word: "order", + correct: 17, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "09.04.2025", + }, + }, + { + date: "09.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATMtQmcv5iNy0CbvZmLmJ2MtIXZo5CNhVTL6JHdllmbuAjL0EjL04yMx4SO50iclRmcvhSI", + value: "!(order-99.13.4.14.0.nietrz-5a4.her-3bf.fol-26.ord-10)!", + result: { + word: "order", + correct: 13, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "09.04.2025", + }, + }, + { + date: "09.04.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATMtQmcv5iNjFTLlJHZuQzN10SeyBnLw4yNuEjL54SO50iclRmcvhSI", + value: "!(order-99.9.1.7.0.pry-574.dre-1c6.ord-10)!", + result: { + word: "order", + correct: 9, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "09.04.2025", + }, + }, + { + date: "09.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATMtQmcv5SMh1icvJmLlNTMtQ2bt5SYlFWLvB3cuAjL3EjLw4SNx4SO50iclRmcvhSI", + value: "!(order-99.15.0.17.0.spo-aea.mod-13e.bor-a1.ord-10)!", + result: { + word: "order", + correct: 15, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "09.04.2025", + }, + }, + { + date: "09.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMx0CZy9mLm1ydvJnLmRWLv9mYuATL09GauEWMyUTL69GcuAjL1EjLx4SNx4SO50iclRmcvhSI", + value: "!(order-99.15.1.15.0.poz-521a.hot-0.boo-df.row-f.ord-10)!", + result: { + word: "order", + correct: 15, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "09.04.2025", + }, + }, + { + date: "09.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwETLkJ3buMmNx0CZ1JnLkJTNtQ3bw5SN5ITLllmeuAjLyEjLy4CMx4SO50iclRmcvhSI", + value: "!(order-99.10.2.12.0.zie-295.pot-52d.rud-16c.ord-10)!", + result: { + word: "order", + correct: 10, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "09.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/10-03-2025-diffle-difflepl-21-liter-w-3-slowach-large-green-circle-15-large-ye-1" +] = [ + { + date: "10.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxMGZx0ydh5CZlJTLldneuMTN00SYsdnLw4SNuEjL1EjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.15.1.5.0.wla-453.zwe-2ed.aw-1dc1)!", + result: { + word: "zawzięty", + correct: 15, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "10.03.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMjRWMtcnL0QTMtoXYuIjN30SYspnLw4yNuIjL1EjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.15.2.7.0.zla-762.az-144.w-1dc1)!", + result: { + word: "zawzięty", + correct: 15, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + }, + }, + { + date: "10.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMjRWMtcXY65SYj1yZ6dnLkVmMtU2d65yM0MTMtwWe35CMuETMuIjL4EjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.18.2.11.0.wyl-1343.zwe-2ed.wzg-ca.zaw-1dc1)!", + result: { + word: "zawzięty", + correct: 18, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxMGZx0yduE2YmFTLiFmeuEjZz0SasNnL4UTNtc3by5iMzMTMtMXe35CMuQTMuMjL2EjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.16.3.14.0.wys-1332.row-558.sli-3f1.zab-1fca.w-1dc1)!", + result: { + word: "zawzięty", + correct: 16, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxMGZx0ydhpnLjVWMx0SZp1mLw4iNuQjLxEjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.11.4.6.0.mie-11ec.zaw-1dc1)!", + result: { + word: "zawzięty", + correct: 11, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxMGZx0ydugjZyITLj5iY3UTLq5COzYWLwFmL2MjMtIWZugTOt8me65CMuITMuAjL3IjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.27.0.12.0.zzo-98.eb-236.ap-f38.j-57b.c-22f8.w-1dc1)!", + result: { + word: "zawzięty", + correct: 27, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxMGZx0ydhpnLzImMtoXe35yMz0ydhdmLkhTMtA3ch5CMuQTMuIjL4EjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.18.2.14.0.asp-18d.gaw-33.wyz-2b3.zaw-1dc1)!", + result: { + word: "zawzięty", + correct: 18, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMjRWMtcnLhNWZz0ychpnL1EWNtonc0VWau5CMuETMuMjL3EjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.17.3.11.0.nietrz-5a5.zas-3eca.w-1dc1)!", + result: { + word: "zawzięty", + correct: 17, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxMGZx4iZ4QWL3FmeuEGZy0SYpdnLwUjNtMXYs5SN00Se6JnLmJmMtUHaj5CMucTMuQjLyIjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: + "!(zawzięty-69.22.4.17.0.chu-2bf.rzy-45.las-650.wia-2da.zaw-d8f.1dc1)!", + result: { + word: "zawzięty", + correct: 22, + position: 4, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzYkFTL3FmeugjZx0SaztmLw4yNuIjLwEjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.10.2.7.0.ksi-1f8.zaw-1dc1)!", + result: { + word: "zawzięty", + correct: 10, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMjRWMtcnL4EWNx0CcuIWZ3ETLjFmLzcTLpdmLzQ2NtkWbucTZt8me65CMuATMuAjL0MjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: + "!(zawzięty-69.34.0.10.0.zzo-e7.mi-7d3.gi-73.ac-17eb.p-15a8.w-1dc1)!", + result: { + word: "zawzięty", + correct: 34, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 44, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxMGZx4yY3ETMtcnLjNzNtcmL2EDNtMmLidTNtomLwMTYt0mL4EzNy0yaugzMm1Cch5iNzITLiVmLmlDNt8Gb65CMuYTMuAjL5QjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: + "!(zawzięty-69.49.0.16.0.zlo-49f.eb-236.ap-f38.k-2718.m-a30.j-57b.c-416.g-73c.w-117c.1dc1)!", + result: { + word: "zawzięty", + correct: 49, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 65, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzYkFTL35iYldTMtMWYuMGNx0iYl5CO50yb6pnLw4SOuEjL5EjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.19.1.9.0.zzo-98.eb-14c.ac-17eb.w-1dc1)!", + result: { + word: "zawzięty", + correct: 19, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzYkFjLkFDNx0ydhpnL2EmYtUWat5CMuETMuEjL3EjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.17.1.11.0.mie-ba6.zaw-141d.1dc1)!", + result: { + word: "zawzięty", + correct: 17, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxMGZx4iZ2gTL3FmeuUDNtkHZn5SN1ITLq92duMTO4EWMtoncw5CMuMjMuQjL2EjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.16.4.23.0.prz-1a893.woj-255.gdy-45.zaw-86f.1dc1)!", + result: { + word: "zawzięty", + correct: 16, + position: 4, + incorrect: 23, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 43, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxMGZx0yducDN10iah5CO50yb6pnLw4SOuEjLzEjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.13.1.9.0.zzo-98.aj-547.w-1dc1)!", + result: { + word: "zawzięty", + correct: 13, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMjRWMtcXY65SZxMWL0VWbuMTYk1ychBnL2ITNtw2b65CMuMTMuIjLzEjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.13.2.13.0.zol-526.pas-da3.met-c1e.zaw-1dc1)!", + result: { + word: "zawzięty", + correct: 13, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "Tysiek", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMjRWMtcXY65SY1ETLpdXYukzY10CajNjL4MjNtIWZk5iM10CbnlmL5gTMtw2b65CMuYTMuMjL3EjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: + "!(zawzięty-69.17.3.16.0.zol-189.igl-52.deb-638.3ch-5c9.awi-15a.zaw-1dc1)!", + result: { + word: "zawzięty", + correct: 17, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzYkFTL3FmeuQDNx0Sa6dnLlhzNtoncn5yYhJGNtQ2bw5CMuETMuEjL5EjL5YTL5RXO5UCNDVSa6dXY6hSI", + value: "!(zawzięty-69.19.1.11.0.pod-4bac.grz-78e.wzi-144.zaw-1dc1)!", + result: { + word: "zawzięty", + correct: 19, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "10.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/10-04-2025-diffle-difflepl-grywebowe-33-litery-w-5-slowach-large-green-circle" +] = [ + { + date: "10.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY3UTLq5iN5ATMtsmL4MjZtAXYuYzMy0iYlpnLzQzMx0Cb5dnLw4yMx4SMukTMuADMx0Se0lTOlQzQloWY6hSI", + value: "!(zajęty-100.19.1.13.0.wyl-1343.zeb-236.ap-f38.k-1096.j-57b)!", + result: { + word: "zajęty", + correct: 19, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "10.04.2025", + }, + }, + { + date: "10.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpI2N10iahpnLhBTYt8mc05CMukjLx4SOuADMx0Se0lTOlQzQloWY6hSI", + value: "!(zajęty-100.9.1.9.0.tro-a0a.zaj-57b)!", + result: { + word: "zajęty", + correct: 9, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "10.04.2025", + }, + }, + { + date: "10.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKidTNtomLwMTYt0mL2kDMx0yauM2M30yZhpnLmJTLkp3duQGOx0CczFmLw4yNx4iMuUjMuADMx0Se0lTOlQzQloWY6hSI", + value: "!(zajęty-100.25.2.17.0.asp-18d.wzd-2f.zag-73c.k-1096.m-a30.j-57b)!", + result: { + word: "zajęty", + correct: 25, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 44, + date: "10.04.2025", + }, + }, + { + date: "10.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpI2N14CO4MTLqFmeuYmYy0SdoNmLw4SMx4SMuETMuADMx0Se0lTOlQzQloWY6hSI", + value: "!(zajęty-100.11.1.11.0.chu-2bf.zaj-388.57b)!", + result: { + word: "zajęty", + correct: 11, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "10.04.2025", + }, + }, + { + date: "10.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY3UTLqFmeugDM40iah5mLlNTL0VmauU2My0CdlpnLxczMx0SZyBnLjR2YtQXZt5CN20CZ5JmLyMzMx0yc5dnLw4SNx4SMuYjMuADMx0Se0lTOlQzQloWY6hSI", + value: + "!(zajęty-100.26.1.15.0.wys-1332.byd-64.met-cdc.pre-1371.zet-23e.jet-3e.naj-808.zaj-57b)!", + result: { + word: "zajęty", + correct: 26, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 42, + date: "10.04.2025", + }, + }, + { + date: "10.04.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpI2N10iaugzMm1CcuEWZ50Sbh5CO50yb6pnLw4iMx4CMuUTMuADMx0Se0lTOlQzQloWY6hSI", + value: "!(zajęty-100.15.0.12.0.zzo-98.am-9ea.p-f38.j-57b)!", + result: { + word: "zajęty", + correct: 15, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "10.04.2025", + }, + }, + { + date: "10.04.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpI2N10iauMDM00yYh5yNl1yb6pnLw4CMx4CMuMTMuADMx0Se0lTOlQzQloWY6hSI", + value: "!(zajęty-100.13.0.10.0.zzo-e7.ac-403.j-57b)!", + result: { + word: "zajęty", + correct: 13, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "10.04.2025", + }, + }, + { + date: "10.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKidTNtomL4ImNtQmL2EDNtMmL2EWMt4mLzETYt0WY65yMxETLzF2dukDNtg2Yz4CZyMTL0VGcuQjZy0CajNjL0MTLnVGduYTO20CbvpnLw4SMy4yMuEzMuADMx0Se0lTOlQzQloWY6hSI", + value: + "!(zajęty-100.31.3.21.0.zol-696.teg-34.3ch-2f4.pet-32d.3ch-49.was-113.zam-a13.n-1a6.c-416.d-6b8.j-57b)!", + result: { + word: "zajęty", + correct: 31, + position: 3, + incorrect: 21, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 55, + date: "10.04.2025", + }, + }, + { + date: "10.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpI2N10iauAzMh1SbugjYx0ibh5yM30San5iY2ITL6JnL2MjMtIWZuYWO00ybspnLw4iMx4CMucjMuADMx0Se0lTOlQzQloWY6hSI", + value: + "!(zajęty-100.27.0.12.0.zlo-49f.eb-236.rz-26b.gi-73.an-1b8.m-a30.j-57b)!", + result: { + word: "zajęty", + correct: 27, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "10.04.2025", + }, + }, + { + date: "10.04.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpI2N10iah5yY0ETLiVmeuYTYi1SZp1mLw4iMx4SMuMTMuADMx0Se0lTOlQzQloWY6hSI", + value: "!(zajęty-100.13.1.12.0.mie-ba6.zeb-14c.aj-57b)!", + result: { + word: "zajęty", + correct: 13, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "10.04.2025", + }, + }, + { + date: "10.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpI2N10iahpnL0IWYtEmez5yM5gTYx0ieyBnLw4iMx4iMuITMuADMx0Se0lTOlQzQloWY6hSI", + value: "!(zajęty-100.12.2.12.0.prz-1a893.sza-ab4.zaj-57b)!", + result: { + word: "zajęty", + correct: 12, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "10.04.2025", + }, + }, + { + date: "10.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKidTNtoWYuEmNx0iYl5CO50yb6pnLw4CMx4SMuETMuADMx0Se0lTOlQzQloWY6hSI", + value: "!(zajęty-100.11.1.10.0.zzo-98.eb-16a.aj-57b)!", + result: { + word: "zajęty", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "10.04.2025", + }, + }, + { + date: "10.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpI2N10iauMDM00yYhpnLwITMtoXYn5SNhJTL0FWbuYDNl1CczdnLw4SOx4iMuYTMuADMx0Se0lTOlQzQloWY6hSI", + value: "!(zajęty-100.16.2.19.0.wsp-e46.mat-2a5.gaz-120.zac-403.j-57b)!", + result: { + word: "zajęty", + correct: 16, + position: 2, + incorrect: 19, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "10.04.2025", + }, + }, + { + date: "10.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY3UTLq5COiZTLk5iNxQTLj5SM5QWMtMXYuIjY00ybspnLw4iMx4SMuEjMuADMx0Se0lTOlQzQloWY6hSI", + value: "!(zajęty-100.21.1.12.0.zlo-4b2.as-1d91.c-416.d-6b8.j-57b)!", + result: { + word: "zajęty", + correct: 21, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "10.04.2025", + }, + }, + { + date: "10.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpI2N10iauEzYkFTL3FmeuUjY10SYsNnLzQjY00CZvBnLw4yNx4CMuYTMuADMx0Se0lTOlQzQloWY6hSI", + value: "!(zajęty-100.16.0.17.0.pod-4b43.sla-5b5.zaw-1dc1.j-57b)!", + result: { + word: "zajęty", + correct: 16, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "10.04.2025", + }, + }, + { + date: "10.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpI2N10iahpnLihTLmVHbuUWOx0ieyRmL4Y2Yx0ycuMTMh1SbuEWZ20yZh5CO50yb6pnLw4iMy4SMukTMuADMx0Se0lTOlQzQloWY6hSI", + value: + "!(zajęty-100.19.1.22.0.zzo-98.ag-6ea.m-a13.s-1cf8.drz-19e.luf-8b.zaj-57b)!", + result: { + word: "zajęty", + correct: 19, + position: 1, + incorrect: 22, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "10.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/12-04-2025-diffle-difflepl-grywebowe-43-litery-w-7-slowach-large-green-circle" +] = [ + { + date: "12.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhN2NtI3bn5CZhFTLoN2MukTZz0icvRnLmNWMtw2az5yNzQTLoN2MuUzYx0iYhJnLzQzMx0Cb5dnLw4COx4yMuIjMuIDMx0yN4UCNDVSY39mczIUJzMUJnhSI", + value: + "!(górować-102.22.3.18.0.wyl-1343.rab-1c5.3ch-437.skl-1cf.tor-3e9.3ch-1ad.gor-7ca)!", + result: { + word: "górować", + correct: 22, + position: 3, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 43, + date: "12.04.2025", + }, + }, + { + date: "12.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2Y30icvdmLwMGNtg2Yz4CNhFTLhdHduYTNl1SZpBnLw4CMx4SNuITMuIDMx0yN4UCNDVSY39mczIUJzMUJnhSI", + value: "!(górować-102.12.5.10.0.pie-e56.twa-1a4.3ch-4c0.gor-7ca)!", + result: { + word: "górować", + correct: 12, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "12.04.2025", + }, + }, + { + date: "12.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYjdTLy92ZuQGZ4MTLzl3duAjL54SMuATMuIDMx0yN4UCNDVSY39mczIUJzMUJnhSI", + value: "!(górować-102.10.1.9.0.wys-38dd.gor-7ca)!", + result: { + word: "górować", + correct: 10, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "12.04.2025", + }, + }, + { + date: "12.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhN2NtI3bn5iZ1IWLvJ3auYDNl1CczdnLw4CMx4iMuYTMuIDMx0yN4UCNDVSY39mczIUJzMUJnhSI", + value: "!(górować-102.16.2.10.0.wsp-e46.kro-b5f.gor-7ca)!", + result: { + word: "górować", + correct: 16, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "12.04.2025", + }, + }, + { + date: "12.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYjdTLy9mL5MzNtIXYn5CMyUTLyV3auIjMtQ3bt5yMkVTLiR2buQGOx0CczFmLw4COx4SMuYjMuIDMx0yN4UCNDVSY39mczIUJzMUJnhSI", + value: + "!(górować-102.26.1.18.0.asp-18d.odb-5d3.mot-22.kur-520.gar-739.or-7ca)!", + result: { + word: "górować", + correct: 26, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 45, + date: "12.04.2025", + }, + }, + { + date: "12.04.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYjdTLy92ZuETOj1icvtmLhNDMx0ic5dnLhFzNz0ieyBnLw4iMx4CMukTMuIDMx0yN4UCNDVSY39mczIUJzMUJnhSI", + value: "!(górować-102.19.0.12.0.prz-371a.wyr-103a.kor-c91.gor-7ca)!", + result: { + word: "górować", + correct: 19, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "12.04.2025", + }, + }, + { + date: "12.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhN2NtI3bukzM30ichdmLmNTL39GduYmYy0SdoNmLw4yMx4SMukTMuIDMx0yN4UCNDVSY39mczIUJzMUJnhSI", + value: "!(górować-102.19.1.13.0.chu-2bf.tow-3f.gar-739.or-7ca)!", + result: { + word: "górować", + correct: 19, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "12.04.2025", + }, + }, + { + date: "12.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2Y30icvdmL0EWLnp3duAzN0ITLz9GcuY2Mx0yY1JmL3kjNtI3buMmNh1SYydmLw4iNx4SMuYTMuIDMx0yN4UCNDVSY39mczIUJzMUJnhSI", + value: + "!(górować-102.16.1.16.0.gra-a6c.or-697.buc-13f.pos-2470.wzg-a4.gor-7ca)!", + result: { + word: "górować", + correct: 16, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "12.04.2025", + }, + }, + { + date: "12.04.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2Y34yNyYjLjRDOtI3bn5yNl1yb6pnLw4SMx4CMuUTMuIDMx0yN4UCNDVSY39mczIUJzMUJnhSI", + value: "!(górować-102.15.0.11.0.zzo-e7.gor-84c.627.7ca)!", + result: { + word: "górować", + correct: 15, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "12.04.2025", + }, + }, + { + date: "12.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYjdTLy5SO00CdvdmLiVTMt02bw5iZ5QTLvxmeuAjL44SMucTMuIDMx0yN4UCNDVSY39mczIUJzMUJnhSI", + value: "!(górować-102.17.1.8.0.zlo-49f.pom-15b.got-49.r-7ca)!", + result: { + word: "górować", + correct: 17, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "12.04.2025", + }, + }, + { + date: "12.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhN2NtI3bn5SY5ETL39mcugzNy0CajNjL3kTMtwWYw5SZ50CajNjLwcTL39WbuYTO20CbvpnLw4SNx4iMugTMuIDMx0yN4UCNDVSY39mczIUJzMUJnhSI", + value: + "!(górować-102.18.2.15.0.zol-696.mow-70.3ch-9e.pal-197.3ch-278.row-19a.gor-7ca)!", + result: { + word: "górować", + correct: 18, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 35, + date: "12.04.2025", + }, + }, + { + date: "12.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYjdTLy92ZuEDNmJTLvJnLmNjMy0icvBnLzADNt8mc35CO50yb6pnLy4iMx4SNuAjMuIDMx0yN4UCNDVSY39mczIUJzMUJnhSI", + value: "!(górować-102.20.5.12.2.zzo-98.wro-403.por-223f.ro-2f41.gor-7ca)!", + result: { + word: "górować", + correct: 20, + position: 5, + incorrect: 12, + knownIncorrect: 2, + totalWords: 5, + totalLetters: 37, + date: "12.04.2025", + }, + }, + { + date: "12.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYjdTLy92ZuIjMz0icvJmL0ETLhdncuUWOx0SYydnLxM2YtEmcr5yM5gTYx0ieyBnLw4SOx4iMuIjMuIDMx0yN4UCNDVSY39mczIUJzMUJnhSI", + value: + "!(górować-102.22.2.19.0.prz-1a893.kra-cc1.wra-19e.rwa-14.bor-322.gor-7ca)!", + result: { + word: "górować", + correct: 22, + position: 2, + incorrect: 19, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "12.04.2025", + }, + }, + { + date: "12.04.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhN2NtI3bn5SM0YmMt8mcw5COwYTLs92duYTYi1SZp1mLw4CNx4CNuYTMuIDMx0yN4UCNDVSY39mczIUJzMUJnhSI", + value: "!(górować-102.16.4.14.0.mie-ba6.wol-608.pro-2f41.gor-7ca)!", + result: { + word: "górować", + correct: 16, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "12.04.2025", + }, + }, + { + date: "12.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2Y30icvdmL5UWLvR3duEDNmJTLvJHcuY2Ntc3bt5CO50yb6pnLw4iMx4SMuMjMuIDMx0yN4UCNDVSY39mczIUJzMUJnhSI", + value: "!(górować-102.23.1.12.0.zzo-98.mow-7f.pro-2f41.wto-e9.gor-7ca)!", + result: { + word: "górować", + correct: 23, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "12.04.2025", + }, + }, + { + date: "12.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhN2NtI3bn5iY0ETLylneuYzNx0ic11mL0EmNtIXZz5yNkVTMtEmc05CN0ITLr9GbugjM00Sai9mLzQjY00CZvBnLw4iMy4CMuczMuIDMx0yN4UCNDVSY39mczIUJzMUJnhSI", + value: + "!(górować-102.37.0.22.0.pod-4b43.obi-428.lok-244.tra-15d7.ser-6a4.mur-176.zyr-14b.gor-7ca)!", + result: { + word: "górować", + correct: 37, + position: 0, + incorrect: 22, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 59, + date: "12.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/13-03-2025-diffle-difflepl-grywebowe-27-liter-w-4-slowach-large-green-circle" +] = [ + { + date: "13.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMx0ycukjM20SZpBnLhVDNtg2Yz4SZ1gTLvJ3auAjLwEjLw4yNx4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.17.0.10.0.kro-85e.3ch-45a.pie-629.s-12f)!", + result: { + word: "pisemnie", + correct: 17, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMx0ycuImMyETLllGcuUmMtkmbt5yNlVDOtoncw5CMuYjLz4SMy4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.21.3.6.0.prz-85e7.mni-2e.pie-122b.s-12f)!", + result: { + word: "pisemnie", + correct: 21, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZyETLzlGcuETO10CajNjLkZTMtUHaj5CZ4ITLlxmLwIjM0ETL6JHcuAjL0EjLw4COx4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.18.0.14.0.prz-14220.le-28d.chu-16d.3ch-591.pis-12f)!", + result: { + word: "pisemnie", + correct: 18, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMx0ycpBnLkdDNtg2Yz4SZ20CajJjLzQjMtwWZj5SM10ychJmLiNTLuVnL3IDOtEGcz5CNhVTL6JHdllmbuMjL3EjLz4iMz4iM30SZp5WblNXawhSI", + value: + "!(pisemnie-72.32.3.17.3.nietrz-5a4.spa-827.un-3b.bas-51.cel-243.2ch-6e.3ch-47d.pis-12f)!", + result: { + word: "pisemnie", + correct: 32, + position: 3, + incorrect: 17, + knownIncorrect: 3, + totalWords: 8, + totalLetters: 52, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJTMuEmMx0ycpBnL0kzMtMXat5SO1YmMt42br5CMukjLy4CMy4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.20.2.9.0.kon-2f59.mis-394.pis-12a.12f)!", + result: { + word: "pisemnie", + correct: 20, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJTMuEmMx0ycuQ2N10icpBnL5UTLrp3cuAjL0EjLw4iMy4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.22.0.14.0.szk-59.pir-57d.s-12a.12f)!", + result: { + word: "pisemnie", + correct: 22, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJTMuEmMx0ycuEGNtcWauEGZyITLr9GcuAjLwEjLx4iMy4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.22.1.10.0.pok-22da.ig-4a.s-12a.12f)!", + result: { + word: "pisemnie", + correct: 22, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMx0ycpBnLkJDNtIHcz5CMucjLx4iMx4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.12.1.7.0.spr-42d.pis-12f)!", + result: { + word: "pisemnie", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZyEjLhJTMtMnLhR2NtUWaw5iZiJTL1h2YuAjLwEjLw4SMy4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.21.0.10.0.chu-2bf.pie-7da.s-12a.12f)!", + result: { + word: "pisemnie", + correct: 21, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJTMtMXaw5CZ0ETLsl2cugTOy0SZpJWZp5mLmlTMt42bn5CMukjLz4COx4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.18.3.9.0.gon-19f.niebie-298.sil-14d.pis-12f)!", + result: { + word: "pisemnie", + correct: 18, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJTMtMXauYGMy0Saz5iYhFTLzlHcuEGMy0ybwNnLjZTYtEmcn5CMucjLy4SNy4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.25.2.7.0.gra-a6c.spo-20a.pys-1ab.si-20f.is-12f)!", + result: { + word: "pisemnie", + correct: 25, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMx0ycpBnL3IWMtUHc15CMzETLhB3cllmbuAjLyEjLy4yNx4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.17.2.12.0.niespa-130.upu-1b7.pis-12f)!", + result: { + word: "pisemnie", + correct: 17, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZyEjLlJTMtMXaw5iYm1ycvdmLjRTL3VmLzkDOhFTL6JHcuAjL2EjLx4SNy4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.25.1.16.0.prz-1a893.ew-4c.gos-fb.pis-12e.12f)!", + result: { + word: "pisemnie", + correct: 25, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMx4SZyETLzlmLhZmMx0yYv5iZkFTLuVGcuYWMtsWdl5SMukjLz4iNy4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.26.3.9.1.euk-1f.pen-1df.oc-12fa.is-12e.12f)!", + result: { + word: "pisemnie", + correct: 26, + position: 3, + incorrect: 9, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 38, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMx0ycpBnL2EmYtUWat5CMugjLy4iMx4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.12.2.8.0.mie-ba6.pis-12f)!", + result: { + word: "pisemnie", + correct: 12, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZyETLzlGcuAjZx0SZqVnLkhjMtUGbuMGNtcXZw5yM1YTLvFmeuEjLzEjLw4iNy4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.26.0.13.1.zao-653.pew-4c.le-28d.uje-1f0.pis-12f)!", + result: { + word: "pisemnie", + correct: 26, + position: 0, + incorrect: 13, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 39, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJTMtMnL4QTNtUWaw5CMucjLw4iMx4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.12.0.7.0.pie-548.s-12f)!", + result: { + word: "pisemnie", + correct: 12, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMx0ycpBnL4MjNtIHZ65SZy0Sau1mLlVTLhtWduAjLyEjLx4CMy4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.20.1.12.0.uka-5e.mni-2e.zdr-638.pis-12f)!", + result: { + word: "pisemnie", + correct: 20, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZyETLzlGcucTMx0iblNnLmZGNtM3buEWM3MTL6JHcuAjLyEjLx4CMy4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.20.1.12.0.prz-371a.os-4ff.sen-117.pis-12f)!", + result: { + word: "pisemnie", + correct: 20, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZyETLzlGcuQGMx0yclRmL3ETMt4mLwUTL05yYyETLwV2cuMzMhNTLzl3duAjL1EjLz4SOy4iM30SZp5WblNXawhSI", + value: + "!(pisemnie-72.29.3.15.0.wys-3a33.sep-12c.t-50.n-117.des-10d.pis-12f)!", + result: { + word: "pisemnie", + correct: 29, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 47, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Tysiek", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJTMuUmMx0ycpBnL2UDNtg2Yz4SMh1icpdmL0ATNtg2Yz4iNhJWLllWbuAjLyEjLz4CNy4iM30SZp5WblNXawhSI", + value: + "!(pisemnie-72.24.3.12.0.mie-ba6.3ch-504.gir-a1.3ch-456.pis-12e.12f)!", + result: { + word: "pisemnie", + correct: 24, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMx0ycp5SNj1yc15SYxITNto3bw5CMugjLw4SOx4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.19.0.8.0.poz-521a.us-c5.is-12f)!", + result: { + word: "pisemnie", + correct: 19, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Swbd", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMx0ycuUTMyETLllGcuUmMuUmYtkmbt5CMtUWazVWau5iYz0ibpNnLw0Sd6NmLkhTYtQWe35SZ3cTLvJHduAjLyEjL24SOy4iM30SZp5WblNXawhSI", + value: + "!(pisemnie-72.29.6.12.0.tro-77e.wyd-a8d.czu-0.sin-3b.niesie-0.mni-be.2e.pie-1215.s-12f)!", + result: { + word: "pisemnie", + correct: 29, + position: 6, + incorrect: 12, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 47, + date: "13.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/14-03-2025-diffle-difflepl-21-liter-w-3-slowach-large-green-circle-10-large-yell" +] = [ + { + date: "14.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmYy0ibhNnLjlTL0FmYuQTL3lHZuAjLxEjLw4CMx4yM30SZp5WYzhSI", + value: "!(sanie-73.10.0.11.0.dyw-4.bat-9c.san-2bc)!", + result: { + word: "sanie", + correct: 10, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmYy0ibhNnL4ITL1JnYuEmN50SY0NnL4QjMt4WYs5yYhVTLr9GcuAjLzEjLw4yNx4yM30SZp5WYzhSI", + value: "!(sanie-73.17.0.13.0.pok-5ac.lan-248.sta-96a.bru-28.san-2bc)!", + result: { + word: "sanie", + correct: 17, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "14.03.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJmMt4WYz5yY2EWLhJ3ZuETZ0ETLs9GcuAjLwEjLw4yMx4yM30SZp5WYzhSI", + value: "!(sanie-73.13.0.10.0.pol-14e1.gra-a6c.san-2bc)!", + result: { + word: "sanie", + correct: 13, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + }, + }, + { + date: "14.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYiJTLu5SZ0ETLtF2cuEWZ40ycvBnL4YWLzlGauAjLwEjLx4CNx4yM30SZp5WYzhSI", + value: "!(sanie-73.14.1.10.0.his-f8.pos-8ea.sam-14e.n-2bc)!", + result: { + word: "sanie", + correct: 14, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmYy0ibhNnL4QjMt4WYs5CMyQTLuFWbuEGZyITLr9GcuAjLxEjLy4yMx4yM30SZp5WYzhSI", + value: "!(sanie-73.13.2.11.0.pok-22da.man-420.lan-248.san-2bc)!", + result: { + word: "sanie", + correct: 13, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJmMuATM00ibh5yYtEWZz5iMzUTLoN2MuUTZx0ybr5SMmVWLhp3cuEmMx0ibhRnLkZ2Mt4WYw5SY5QTLyF2ZuEjLyIjLw4iNy4yM30SZp5WYzhSI", + value: + "!(sanie-73.26.0.22.1.gar-49a.pan-3fd.tan-12a.sza-ef1.ko-1e5.3ch-532.sea-c.an-410.2bc)!", + result: { + word: "sanie", + correct: 26, + position: 0, + incorrect: 22, + knownIncorrect: 1, + totalWords: 9, + totalLetters: 48, + date: "14.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZyEjLlJTMtMXaw5iYm1ycvdmLjRTL3VmLzkDOhFTL6JHcuAjL2EjLx4SNy4iM30SZp5WblNXawhSI", + value: "!(pisemnie-72.25.1.16.0.prz-1a893.ew-4c.gos-fb.pis-12e.12f)!", + result: { + word: "pisemnie", + correct: 25, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "13.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYiJTLuFmLkJDNtIHcz5CMucjLw4CMx4yM30SZp5WYzhSI", + value: "!(sanie-73.10.0.7.0.spr-42d.an-2bc)!", + result: { + word: "sanie", + correct: 10, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmYy0ibh5yNxETLhl2cuQ2N10icpBnL5UTLrp3cuAjL1EjLx4SNx4yM30SZp5WYzhSI", + value: "!(sanie-73.15.1.15.0.szk-59.pir-57d.sia-117.an-2bc)!", + result: { + word: "sanie", + correct: 15, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJmMt4WYz5iMl1iblRnL1EGZtAXYu5iZiJTL1h2YuAjLwEjL24CMx4yM30SZp5WYzhSI", + value: "!(sanie-73.10.6.10.0.chu-2bf.nap-da5.ten-e2.san-2bc)!", + result: { + word: "sanie", + correct: 10, + position: 6, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJmMt4WYuMGNtE2cz5SYxczMtoncw5CMugjLx4yMx4yM30SZp5WYzhSI", + value: "!(sanie-73.13.1.8.0.prz-371a.ssa-4c.an-2bc)!", + result: { + word: "sanie", + correct: 13, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "14.03.2025", + }, + }, + { + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmYy0ibhNnLwcDNy0ycvBnLjZTYtEmcn5CMuUjLw4CMx4yM30SZp5WYzhSI", + value: "!(sanie-73.10.0.5.0.gra-a6c.pos-2470.san-2bc)!", + result: { + word: "sanie", + correct: 10, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 15, + }, + }, + { + date: "14.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYiJTLuF2cuQjZx0CZ5dnLw4SNuEjL44yM30SZp5WYzhSI", + value: "!(sanie-73.8.1.5.0.wyd-1f4.san-2bc)!", + result: { + word: "sanie", + correct: 8, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJmMt4WYz5yY10SauFmLxcTNtcXY6VWau5CMukjLy4iMx4yM30SZp5WYzhSI", + value: "!(sanie-73.12.2.9.0.niezaw-571.ani-5c.san-2bc)!", + result: { + word: "sanie", + correct: 12, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJmMt4WYuETNtE2YuMGNtE2cucjM40SYwNnLyE2Yx0SZpdnLmFTLrVXZuAjL0EjLy4yNy4yM30SZp5WYzhSI", + value: "!(sanie-73.27.2.14.0.euk-1f.wie-1ca2.spa-827.sa-4c.ca-51.an-2bc)!", + result: { + word: "sanie", + correct: 27, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmYy0ibhNnLiBzMx0CZh5mLw4yNuIjL34yM30SZp5WYzhSI", + value: "!(sanie-73.7.2.7.0.nad-130b.san-2bc)!", + result: { + word: "sanie", + correct: 7, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmYy0ibh5yY00SYzNnLiJjMt4WYm5CMukjLx4CNx4yM30SZp5WYzhSI", + value: "!(sanie-73.14.1.9.0.fan-22b.ssa-4c.an-2bc)!", + result: { + word: "sanie", + correct: 14, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYiJTLuF2cuYTYi1SZp1mLw4SOuEjL54yM30SZp5WYzhSI", + value: "!(sanie-73.9.1.9.0.mie-ba6.san-2bc)!", + result: { + word: "sanie", + correct: 9, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYiJTLuF2cuY2Y50Cc5dnLw4COuEjL54yM30SZp5WYzhSI", + value: "!(sanie-73.9.1.8.0.wyp-9cf.san-2bc)!", + result: { + word: "sanie", + correct: 9, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "Swbd", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJmMt4WYz5iY2ETLuFGcuUzMx0Cb1hmL2MTL3pHZuAjL1EjLw4SMx4yM30SZp5WYzhSI", + value: "!(sanie-73.11.0.15.0.dzw-36.hul-135.pan-16b.san-2bc)!", + result: { + word: "sanie", + correct: 11, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJmMt4WYuE2MtEWaz5SYxITNto3bw5CMugjLw4SNx4yM30SZp5WYzhSI", + value: "!(sanie-73.15.0.8.0.poz-521a.sia-3a.an-2bc)!", + result: { + word: "sanie", + correct: 15, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "Tysiek", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYiJTLuF2cuYTYi1SZp1mLw4SOuEjL54yM30SZp5WYzhSI", + value: "!(sanie-73.9.1.9.0.mie-ba6.san-2bc)!", + result: { + word: "sanie", + correct: 9, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "14.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/15-03-2025-diffle-difflepl-grywebowe-24-litery-w-3-slowach-large-green-circle" +] = [ + { + date: "15.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkzY50ydvRmLwMDNwETL6JHcugjYyETLsl3duAjLwEjLw4CNx4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.14.0.10.0.wyl-12b8.prz-10430.dow-9c9)!", + result: { + word: "dowództwo", + correct: 14, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkzY50ydvRmLzI2NtI3bn5yYwUTLvB3cllmbuAjLzEjLx4CNx4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.14.1.13.0.niespo-50c.gor-7b3.dow-9c9)!", + result: { + word: "dowództwo", + correct: 14, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOjljL1EWOtc3bk5SNhVTL6JHdllmbuAjLwEjLy4yNx4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.17.2.10.0.nietrz-5a5.dow-9a5.9c9)!", + result: { + word: "dowództwo", + correct: 17, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MWOtc3bk5iY3AjYtQ2bw5SO1YmMt42br5CMukjLx4iNx4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.16.1.9.0.kon-2f59.pod-b07b.dow-9c9)!", + result: { + word: "dowództwo", + correct: 16, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MWOtc3bk5yM0QWMtc3bw5yYlJTMtcHZv5yN5ETMt0We35CMukjLz4CMy4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.20.3.9.0.wym-1197.odw-12ec.pow-1d43.dow-9c9)!", + result: { + word: "dowództwo", + correct: 20, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkzY54SYklTL39mLxYWLsVmLyIWMt82dk5iN0UWLwN3duAjL3EjLx4yMy4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.23.1.17.0.wsp-e46.dwo-1b2.el-f1.ow-9da.9c9)!", + result: { + word: "dowództwo", + correct: 23, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MWOtc3bk5SY4kTL0R2buIGZtQWZ35CMucjLy4yNx4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.17.2.7.0.wed-db.odt-98a.dow-9c9)!", + result: { + word: "dowództwo", + correct: 17, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "15.03.2025", + }, + }, + { + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MWOtc3bk5iMzMTMtMXe35CMuUjLx4SMx4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.11.1.5.0.wys-1332.dow-9c9)!", + result: { + word: "dowództwo", + correct: 11, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + }, + }, + { + date: "15.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkzY50ydvRmL5IGZx0CZ5dnLyIWMt8mci5CZ4ETLwNXYuAjL3EjLw4COx4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.18.0.17.0.asp-18d.bro-1b2.wyd-1db9.dow-9c9)!", + result: { + word: "dowództwo", + correct: 18, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOjlTL39GZuUTNy0iavdnLzkDOhFTL6JHcuAjL3EjLx4CNx4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.14.1.17.0.prz-1a893.woj-255.dow-9c9)!", + result: { + word: "dowództwo", + correct: 14, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 32, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkzY50ydvRmL0UDZx0ydvBnL5EWLvdHduEGZ00ieydnL3UWLvpneuAjLxEjLz4SNy4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.25.3.11.0.zzo-e7.wrz-4da.two-a9.pow-1d54.dow-9c9)!", + result: { + word: "dowództwo", + correct: 25, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkzY50ydvRmL5EDOtc3bu5CMuIjLy4yMx4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.13.2.2.0.now-819.dow-9c9)!", + result: { + word: "dowództwo", + correct: 13, + position: 2, + incorrect: 2, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOjljL3MWOucjY50ydvRmLlVDZx0ydvBnL4kTLvpneuAjLxEjLx4COy4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.28.1.11.0.zzo-98.pow-1d5e.dow-9b7.9c7.9c9)!", + result: { + word: "dowództwo", + correct: 28, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOjlTL39GZuIDMx0CajRnL4kTLvpneuAjLxEjLy4SNx4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.15.2.11.0.zzo-98.tch-102.dow-9c9)!", + result: { + word: "dowództwo", + correct: 15, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOjlTL39GZuIjN2IWMtoncw5iNhJWLllWbuAjL0EjLw4CMy4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.20.0.14.0.mie-ba6.prz-1b662.dow-9c9)!", + result: { + word: "dowództwo", + correct: 20, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 34, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkzY50ydvRmLwYTMto2b35CN1QWMtc3bw5CZyETL692dukTO3ATMto3by5SZ3MTLjFGbuAjL1EjLw4SMz4CN30yb3RnekNjQlMzQlc3bkhSI", + value: + "!(dowództwo-74.31.0.15.0.lac-37e.roz-10799.woz-12d.pow-1d54.woj-160.dow-9c9)!", + result: { + word: "dowództwo", + correct: 31, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 46, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MWOtcnL4MTMtI3bk5yMxITL6R2buMWYiRTLk9GcuAjLyEjLw4SOx4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.19.0.12.0.pod-4bac.odz-213.dor-138.w-9c9)!", + result: { + word: "dowództwo", + correct: 19, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "15.03.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOjlTL39GZuQzMt82ds5SOkJTLpd3YuAjLwEjLw4CNx4CN30yb3RnekNjQlMzQlc3bkhSI", + value: "!(dowództwo-74.14.0.10.0.cwi-2d9.lwo-34.dow-9c9)!", + result: { + word: "dowództwo", + correct: 14, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + }, + }, + { + date: "15.03.2025", + nick: "Swbd", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MWOtc3bk5SNjJTLq92duIjMtcXZt5COzQTL0VmLzADNtUHbuIjNzETLppHZuAjL1EjLw4CMy4CN30yb3RnekNjQlMzQlc3bkhSI", + value: + "!(dowództwo-74.20.0.15.0.dzi-1362.lu-403.et-438.mew-22.woj-2c5.dow-9c9)!", + result: { + word: "dowództwo", + correct: 20, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "15.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/15-04-2025-diffle-difflepl-23-litery-w-3-slowach-large-green-circle-10-large-yel" +] = [ + { + date: "15.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlJzMtQWZt5SMz0SblRmLyQWNtIXZ35CMuETMuIjLwEjL1ATMtEme1RWZthSI", + value: "!(meduza-105.10.2.11.0.wer-5d2.dem-31.med-32e)!", + result: { + word: "meduza", + correct: 10, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "15.04.2025", + }, + }, + { + date: "15.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZyMTLk5CMtcmLw0ycl1mLiJjMtUmc05iYwkTMtsWe35CMuATMuIjL1EjL1ATMtEme1RWZthSI", + value: "!(meduza-105.15.2.10.0.wyk-190b.tre-22b.mes-0.g-0.d-32e)!", + result: { + word: "meduza", + correct: 15, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "15.04.2025", + }, + }, + { + date: "15.04.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUmMz0CZl1mLw0ie1dmLyUDNto3Y15SYkJjMts2bw5CMuITMuAjL0EjL1ATMtEme1RWZthSI", + value: "!(meduza-105.14.0.12.0.pok-22da.ucz-452.guz-0.med-32e)!", + result: { + word: "meduza", + correct: 14, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "15.04.2025", + }, + }, + { + date: "15.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlJzMuYDNz0CZuATL3VWbuMGOtQHbh5CMugTMuAjL1EjL1ATMtEme1RWZthSI", + value: "!(meduza-105.15.0.18.0.alt-8c.mew-0.d-346.32e)!", + result: { + word: "meduza", + correct: 15, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "15.04.2025", + }, + }, + { + date: "15.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlJzMtQWZt5SMhRTLkFmeuQmM00icwNnLw4SOuQjLwEjL1ATMtEme1RWZthSI", + value: "!(meduza-105.10.4.9.0.spr-42d.zad-4a1.med-32e)!", + result: { + word: "meduza", + correct: 10, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "15.04.2025", + }, + }, + { + date: "15.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUmMz0CZl5CMtoXdt5yM3YTLyVnYuYmYy0SdoNmLw4SOuAjL2EjL1ATMtEme1RWZthSI", + value: "!(meduza-105.16.0.9.0.chu-2bf.bur-673.muz-0.ed-32e)!", + result: { + word: "meduza", + correct: 16, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "15.04.2025", + }, + }, + { + date: "15.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUmMz4yM3MjLh1CZl1mL1IWLhRXZuMmNh1SYydmLw4SOuEjL3EjL1ATMtEme1RWZthSI", + value: "!(meduza-105.17.1.9.0.gra-a6c.eta-b5.med-a.373.32e)!", + result: { + word: "meduza", + correct: 17, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "15.04.2025", + }, + }, + { + date: "15.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUmMz0CZl1mL0ETL1VmZuAjLz4yMukjL1ATMtEme1RWZthSI", + value: "!(meduza-105.9.3.3.0.feu-14.med-32e)!", + result: { + word: "meduza", + correct: 9, + position: 3, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "15.04.2025", + }, + }, + { + date: "15.04.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlJzMtQWZt5CMtoXZ05iYtIWZ65CMh1iehdnLw4COuMjLyEjL1ATMtEme1RWZthSI", + value: "!(meduza-105.12.3.8.0.waz-a0.zeb-b.tez-0.med-32e)!", + result: { + word: "meduza", + correct: 12, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "15.04.2025", + }, + }, + { + date: "15.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZyMTLkVWbuQTY10ieyRXZp5mLw4SMx4SMukjL1ATMtEme1RWZthSI", + value: "!(meduza-105.9.1.11.0.nietrz-5a4.med-32e)!", + result: { + word: "meduza", + correct: 9, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "15.04.2025", + }, + }, + { + date: "15.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUmMz0CZl1mL3QjMto2b35yM5gTYx0ieyBnLw4SNx4iMukjL1ATMtEme1RWZthSI", + value: "!(meduza-105.9.2.15.0.prz-1a893.woj-247.med-32e)!", + result: { + word: "meduza", + correct: 9, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "15.04.2025", + }, + }, + { + date: "15.04.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlJzMtQWZt5SYyMTMtQWZq5SYxczMtoncw5CMuATMuEjLzEjL1ATMtEme1RWZthSI", + value: "!(meduza-105.13.1.10.0.prz-371a.jed-132a.med-32e)!", + result: { + word: "meduza", + correct: 13, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "15.04.2025", + }, + }, + { + date: "15.04.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZyMTLkVmL2EmYtUWat5CMuATMuAjLwEjL1ATMtEme1RWZthSI", + value: "!(meduza-105.10.0.10.0.mie-ba6.ed-32e)!", + result: { + word: "meduza", + correct: 10, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "15.04.2025", + }, + }, + { + date: "15.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlJzMtQWZt5CZ1ETLkF2cuQjZx0CZ5dnLw4yNuIjLxEjL1ATMtEme1RWZthSI", + value: "!(meduza-105.11.2.7.0.wyd-1f4.sad-15d.med-32e)!", + result: { + word: "meduza", + correct: 11, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "15.04.2025", + }, + }, + { + date: "15.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUmMz0CZl1mLzYmMtonc05SYxITNto3bw5CMuATMuIjLwEjL1ATMtEme1RWZthSI", + value: "!(meduza-105.10.2.10.0.poz-521a.trz-2f3.med-32e)!", + result: { + word: "meduza", + correct: 10, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "15.04.2025", + }, + }, + { + date: "15.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUmMz0CZl1mLzEDZtUmej5iM4ITLsVGcucjMtsWdl5CMuQTMuAjL2EjL1ATMtEme1RWZthSI", + value: "!(meduza-105.16.0.14.0.euk-27.pel-282.cze-d13.med-32e)!", + result: { + word: "meduza", + correct: 16, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "15.04.2025", + }, + }, + { + date: "15.04.2025", + nick: "capdev", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUmMz0CZl5SY2YTLyFWbuAjL24CMukjL1ATMtEme1RWZthSI", + value: "!(meduza-105.9.0.6.0.mar-66a.ed-32e)!", + result: { + word: "meduza", + correct: 9, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "15.04.2025", + }, + }, + { + date: "15.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZyMTLkVWbuATL6VmYugjZt4Wez5CMuITMuEjLxEjL1ATMtEme1RWZthSI", + value: "!(meduza-105.11.1.12.0.syn-f8.bez-0.med-32e)!", + result: { + word: "meduza", + correct: 11, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "15.04.2025", + }, + }, + { + date: "15.04.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlJzMtQWZt5CO0UTLllGcuAjL34SMukjL1ATMtEme1RWZthSI", + value: "!(meduza-105.9.1.7.0.pie-548.med-32e)!", + result: { + word: "meduza", + correct: 9, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "15.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/16-03-2025-diffle-difflepl-grywebowe-29-liter-w-6-slowach-large-green-circle" +] = [ + { + date: "16.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDMy0ibldnLxQWNuUzNz0CajNjLyE2MtsWZs5SO2gTMtoXZi5iN4MTLwVGZuAjL1EjLx4yMx4SN30yc15WZ3hSI", + value: + "!(wenus-75.13.1.15.0.dep-386.bez-1869.lek-3a2.3ch-375.5d1.wen-208)!", + result: { + word: "wenus", + correct: 13, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 29, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4AjMt4WZ35iZy0ydl5mL2EmYtUWat5CMuATMuQjL54SN30yc15WZ3hSI", + value: "!(wenus-75.9.4.10.0.mie-ba6.new-2f.wen-208)!", + result: { + word: "wenus", + correct: 9, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDMy0ibldnLxAjNt4WZj5SZk1yc1NnLmVmMt4WZt5yNxITLnVGZuAjL4EjLx4yNx4SN30yc15WZ3hSI", + value: "!(wenus-75.17.1.18.0.deg-217.men-2ef.sus-de.cen-601.wen-208)!", + result: { + word: "wenus", + correct: 17, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "16.03.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDMy0ibldnLmNTNt4WZt5yN1QTLvBXduAjLzEjLx4CMx4SN30yc15WZ3hSI", + value: "!(wenus-75.10.1.13.0.upo-457.men-53f.wen-208)!", + result: { + word: "wenus", + correct: 10, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + }, + }, + { + date: "16.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4AjMt4WZ35SZi1iblZmLkRWLvNXYuAjLwEjLx4CMx4SN30yc15WZ3hSI", + value: "!(wenus-75.10.1.10.0.aso-dd.fen-be.wen-208)!", + result: { + word: "wenus", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDMy0ibldnL0EWNtonc0VWau5CMuETMuIjL34SN30yc15WZ3hSI", + value: "!(wenus-75.7.2.11.0.nietrz-5a4.wen-208)!", + result: { + word: "wenus", + correct: 7, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4AjMt4WZ35CZ3UTLylGcukTNtsmez5CMuUTMuIjL54SN30yc15WZ3hSI", + value: "!(wenus-75.9.2.15.0.szk-59.pir-57d.wen-208)!", + result: { + word: "wenus", + correct: 9, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOwITLuV2duMmMt02bt5CNmFTLkl3duAjLwEjLw4CMx4SN30yc15WZ3hSI", + value: "!(wenus-75.10.0.10.0.wyd-1f4.mom-2c.wen-208)!", + result: { + word: "wenus", + correct: 10, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOwITLuV2duATLkVmaukTZx0ibhxmLzIDNtkncr5CMuMTMuEjL54SN30yc15WZ3hSI", + value: "!(wenus-75.9.1.13.0.kry-423.lan-1e9.jed-0.wen-208)!", + result: { + word: "wenus", + correct: 9, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDMy4iN0ETLu5CMtUmLzYWLsV2duUzNtcXZw5yY2EWLhJ3ZuAjLzEjLy4yNx4SN30yc15WZ3hSI", + value: "!(wenus-75.17.2.13.0.gra-a6c.pew-75.wel-f3.e-0.n-146.208)!", + result: { + word: "wenus", + correct: 17, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDMy0ibuQ2Yx0ycldnLkJDNtIHcz5CMukjLy4CMx4SN30yc15WZ3hSI", + value: "!(wenus-75.10.2.9.0.spr-42d.wes-1cd.n-208)!", + result: { + word: "wenus", + correct: 10, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "Swbd", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOwITLuV2duczMx0Sdp5mL2MWLu9GbuMzMtMXdo5CMukjLw4SMx4SN30yc15WZ3hSI", + value: "!(wenus-75.11.0.9.0.hus-33.lon-c6.niu-137.wen-208)!", + result: { + word: "wenus", + correct: 11, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4AjMt4WZ35SZ10SYrVnLw4COuIjL34SN30yc15WZ3hSI", + value: "!(wenus-75.7.2.8.0.uka-5e.wen-208)!", + result: { + word: "wenus", + correct: 7, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4AjMt4WZ35iZzUTLuVWbuYWMtsWdl5CMucjLx4CMx4SN30yc15WZ3hSI", + value: "!(wenus-75.10.1.7.0.euk-1f.men-53f.wen-208)!", + result: { + word: "wenus", + correct: 10, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDMy0ibl5yN0ITLq92duMTO4EWMtoncw5CMuUTMuEjL54SN30yc15WZ3hSI", + value: "!(wenus-75.9.1.15.0.prz-1a893.woj-247.en-208)!", + result: { + word: "wenus", + correct: 9, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDMy0ibldnLhFzNz0ieyBnLw4COuEjL34SN30yc15WZ3hSI", + value: "!(wenus-75.7.1.8.0.prz-371a.wen-208)!", + result: { + word: "wenus", + correct: 7, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4AjMt4WZ35iZy0ydl5mLhFjM10ievBnLw4yNuQjL44SN30yc15WZ3hSI", + value: "!(wenus-75.8.4.7.0.poz-521a.new-2f.wen-208)!", + result: { + word: "wenus", + correct: 8, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOwITLuV2duM2NyETL1dHZucTZ30Sd6NnLw4yNuIjL54SN30yc15WZ3hSI", + value: "!(wenus-75.9.2.7.0.szu-7e7.dwu-127c.wen-208)!", + result: { + word: "wenus", + correct: 9, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOwITLuV2duQTYz0CajNjL4YjMtAXZy5iYhBzMtMXe35iZiJTL1h2YuAjL1EjLz4iMx4SN30yc15WZ3hSI", + value: "!(wenus-75.12.3.15.0.chu-2bf.wys-30ab.rep-268.3ch-3a4.wen-208)!", + result: { + word: "wenus", + correct: 12, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "16.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/16-04-2025-diffle-difflepl-grywebowe-19-liter-w-3-slowach-large-green-circle" +] = [ + { + date: "16.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ5MTLhp3YuEmZy0CchpnLzYDMx0SZpBnLw4iNuIjLxEjL2ATMtEGbwFmejhSI", + value: "!(czapla-106.11.2.6.0.pie-1063.zap-2fa.cza-39d)!", + result: { + word: "czapla", + correct: 11, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "16.04.2025", + }, + }, + { + date: "16.04.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWOz0SY6NmLw0Cc1pnLhRmMy0yavBnLw4SOuEjLxEjL2ATMtEGbwFmejhSI", + value: "!(czapla-106.11.1.9.0.pok-22da.zup-0.cza-39d)!", + result: { + word: "czapla", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "16.04.2025", + }, + }, + { + date: "16.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ5MTLhp3YuATZy0SYsBnLkNTZtI3br5CMuETMuEjLyEjL2ATMtEGbwFmejhSI", + value: "!(czapla-106.12.1.11.0.kor-e3d.pla-2e0.cza-39d)!", + result: { + word: "czapla", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "16.04.2025", + }, + }, + { + date: "16.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKklzMuUWMz0SY6NmLiFWYz0CchpnLkJDNtIHcz5CMuITMuIjL3EjL2ATMtEGbwFmejhSI", + value: "!(czapla-106.17.2.12.0.spr-42d.zap-3aab.cza-31e.39d)!", + result: { + word: "czapla", + correct: 17, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "16.04.2025", + }, + }, + { + date: "16.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWOz0SY6NmLwczMtEGbr5iYiFWLsFGcuMmNh1SYydmLw4SOuIjLyEjL2ATMtEGbwFmejhSI", + value: "!(czapla-106.12.2.9.0.gra-a6c.pal-abb.kla-370.cza-39d)!", + result: { + word: "czapla", + correct: 12, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "16.04.2025", + }, + }, + { + date: "16.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWOz4SZ5ITLh5SM5QWLlpnLmJmMtUHaj5CMuETMuAjL3EjL2ATMtEGbwFmejhSI", + value: "!(czapla-106.17.0.11.0.chu-2bf.ze-d91.a-29e.39d)!", + result: { + word: "czapla", + correct: 17, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "16.04.2025", + }, + }, + { + date: "16.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWOz0SY6NmLzkDOhFTL6JHcuAjL44iMukjL2ATMtEGbwFmejhSI", + value: "!(czapla-106.9.2.8.0.prz-1a893.cza-39d)!", + result: { + word: "czapla", + correct: 9, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "16.04.2025", + }, + }, + { + date: "16.04.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ5MTLhp3YuIDO30ibh1mLw4iNuEjLwEjL2ATMtEGbwFmejhSI", + value: "!(czapla-106.10.1.6.0.man-782.cza-39d)!", + result: { + word: "czapla", + correct: 10, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "16.04.2025", + }, + }, + { + date: "16.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWOz4SZ5IjLlFzMtEmej5SZzITMtQXe35CMuETMuAjL3EjL2ATMtEGbwFmejhSI", + value: "!(czapla-106.17.0.11.0.wyt-123e.cza-31e.29e.39d)!", + result: { + word: "czapla", + correct: 17, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "16.04.2025", + }, + }, + { + date: "16.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ5MjLlljMtEmej5iZ40iehBnL0EWNtonc0VWau5CMuMTMuQjL2EjL2ATMtEGbwFmejhSI", + value: "!(czapla-106.16.4.13.0.nietrz-5a4.paz-8f.cza-29e.39d)!", + result: { + word: "czapla", + correct: 16, + position: 4, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "16.04.2025", + }, + }, + { + date: "16.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWOz0SY6NmLw0CbhdmLlFGOtEGbr5CMuETMuEjLxEjL2ATMtEGbwFmejhSI", + value: "!(czapla-106.11.1.11.0.kla-8ae.gal-0.cza-39d)!", + result: { + word: "czapla", + correct: 11, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "16.04.2025", + }, + }, + { + date: "16.04.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ5MTLhp3YuYTYi1SZp1mLw4CMx4SMukjL2ATMtEGbwFmejhSI", + value: "!(czapla-106.9.1.10.0.mie-ba6.cza-39d)!", + result: { + word: "czapla", + correct: 9, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "16.04.2025", + }, + }, + { + date: "16.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKklzMuUWOy4iM1MWLhp3YuMmYx0CZv1mLw4SOuEjL3EjL2ATMtEGbwFmejhSI", + value: "!(czapla-106.17.1.9.0.mod-1bc.cza-c52.29e.39d)!", + result: { + word: "czapla", + correct: 17, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "16.04.2025", + }, + }, + { + date: "16.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ5MjLlljMtEmej5iYmFWLhp3cucjMtsWdl5CMuETMuAjL1EjL2ATMtEGbwFmejhSI", + value: "!(czapla-106.15.0.11.0.euk-27.sza-afb.cza-29e.39d)!", + result: { + word: "czapla", + correct: 15, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "16.04.2025", + }, + }, + { + date: "16.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKklzMtEmej5SZ1kTLhp3cuUzMx0SYnpnLw0iehJmL0YWMtQWe35CMuITMuIjL2EjL2ATMtEGbwFmejhSI", + value: "!(czapla-106.16.2.12.0.wyd-1f4.baz-0.zga-135.sza-95e.cza-39d)!", + result: { + word: "czapla", + correct: 16, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "16.04.2025", + }, + }, + { + date: "16.04.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ5MTLhp3YugTMhFTLwFmeugDN10SZpBnLw4SOuEjL0EjL2ATMtEGbwFmejhSI", + value: "!(czapla-106.14.1.9.0.pie-548.zap-1a18.cza-39d)!", + result: { + word: "czapla", + correct: 14, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "16.04.2025", + }, + }, + { + date: "16.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKklzMuUWOy0SY6NmLkdzNtAXY65SYxITNto3bw5CMuATMuEjL3EjL2ATMtEGbwFmejhSI", + value: "!(czapla-106.17.1.10.0.poz-521a.zap-77d.cza-29e.39d)!", + result: { + word: "czapla", + correct: 17, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "16.04.2025", + }, + }, + { + date: "16.04.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ5MTLhp3YuImZy0CchpnLhFzNz0ieyBnLw4COuEjL0EjL2ATMtEGbwFmejhSI", + value: "!(czapla-106.14.1.8.0.prz-371a.zap-2fb.cza-39d)!", + result: { + word: "czapla", + correct: 14, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "16.04.2025", + }, + }, + { + date: "16.04.2025", + nick: "Prezes_Kozlowski", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ5MTLhp3YucTN00ybwVnLw4CMx4iMukjL2ATMtEGbwFmejhSI", + value: "!(czapla-106.9.2.10.0.upo-457.cza-39d)!", + result: { + word: "czapla", + correct: 9, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "16.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/17-03-2025-flag-pl-diffle-difflepl-grywebowe-26-liter-w-3-slowach-large-green-ci" +] = [ + { + date: "17.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjRDZz0CcuQzNhJTLrl3duYTYi1SZp1mLw4yMx4iMuETMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.11.2.13.0.mie-ba6.wyk-2a74.p-3d4c)!", + result: { + word: "wypukły", + correct: 11, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0Q2MuUmMkNjL2M2Yx4yY4AjMtAnLzQzMx0Cb5dnLw4iMx4CMuUjMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.25.0.12.0.wyl-1343.p-208c.1cc6.3d2e.3d4c)!", + result: { + word: "wypukły", + correct: 25, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGNkNTLwl3duYGO10icrVnLjVWMtsWdr5SOyETLjVHbucDMx0CbvpnLw4CNx4iMuYTMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.16.2.14.0.zol-107.luc-129.kuk-1ec.ukr-58f.wyp-3d4c)!", + result: { + word: "wypukły", + correct: 16, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0Q2MtAnLwQjZuI2NiJTLrl3duMGM30CbvpnLiZWNtg2Yz4iNxQTLyl3duYGZz0SatNnLw4COx4yMuIjMuYzNtknM4USNDVya1BXe3hSI", + value: + "!(wypukły-76.22.3.18.0.smi-3df.wyr-416.3ch-5fb.zol-70c.wyk-2b7b.f40.p-3d4c)!", + result: { + word: "wypukły", + correct: 22, + position: 3, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 43, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0Q2MtAXe35SN0ETL5xGcuQGOx0CczFmLw4iMx4SMuITMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.12.1.12.0.asp-18d.ply-145.wyp-3d4c)!", + result: { + word: "wypukły", + correct: 12, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0Q2MtAXe35iMxMTL1t2cucTNy0Cc1RmLw0SeyRnLhhjMtUHbn5yYwcTLs9meuYmYy0SdoNmLw4yNx4iNucTMuYzNtknM4USNDVya1BXe3hSI", + value: + "!(wypukły-76.17.6.17.0.chu-2bf.zol-70c.glu-28a.try-0.dup-257.sku-312.wyp-3d4c)!", + result: { + word: "wypukły", + correct: 17, + position: 6, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0Q2MuADO4EjLlZ2MtAXeuYDNl1CczdnLw4iMx4CMukTMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.19.0.12.0.wsp-e46.yp-3fe.1880.3d4c)!", + result: { + word: "wypukły", + correct: 19, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjRDZz0CcuQGOm1yauIzMzETLzl3duAjL34CMuQTMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.14.0.7.0.wys-1332.k-f8d.p-3d4c)!", + result: { + word: "wypukły", + correct: 14, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0Q2MtAXe35SMmFTLst2cuEGM40icv1mLwEmMtg2Yz4CZl1yb6pnLw4CNx4iMuQTMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.14.2.14.0.zzo-ed.3ch-2a0.mor-80a.skl-1f1.wyp-3d4c)!", + result: { + word: "wypukły", + correct: 14, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjRDZz0Cc5dnLxQ2Nx0Cbv5iM0IWL6J3auAjL44iMuITMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.12.2.8.0.krz-b42.ol-17d1.wyp-3d4c)!", + result: { + word: "wypukły", + correct: 12, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGNkNTLw5yMiNWLrlnLyMWMtM2c35yMlJTMtw2br5CO50yb6pnLw4SNx4SMugTMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.18.1.15.0.zzo-98.kol-12e3.wsc-1c2.yk-cb3.p-3d4c)!", + result: { + word: "wypukły", + correct: 18, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGNkNTLwl3duIWNtkHZn5yYkZTLvxmL1UjMto2b35yM5gTYx0ieyBnLw4yMy4SMuUTMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.15.1.23.0.prz-1a893.woj-255.lo-6dc.gdy-5b.wyp-3d4c)!", + result: { + word: "wypukły", + correct: 15, + position: 1, + incorrect: 23, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0Q2MtAXe35iMl1ya15SO5MTLvx2auUDN00ychxmL1MjNtg2Yz4yM50yYlpmLw4yNx4SMuUTMuYzNtknM4USNDVya1BXe3hSI", + value: + "!(wypukły-76.15.1.17.0.jec-93.3ch-635.las-445.klo-399.uk-e2.wyp-3d4c)!", + result: { + word: "wypukły", + correct: 15, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "Swbd", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0Q2MtAXe35SNldTMtM2bw5SNjRTL1JHduAjL54SMuETMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.11.1.9.0.tru-4c5.poc-17e5.wyp-3d4c)!", + result: { + word: "wypukły", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGNkNjL0Q2Yx4SMjNjMtAnLilDNx0Cb5dnLkFzNz0ieyBnLw4CNx4SMuIjMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.22.1.14.0.prz-371d.wyl-149b.p-23c1.1cd4.3d4c)!", + result: { + word: "wypukły", + correct: 22, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjRDZz0Cc5dnLlZWNt8Gbr5yNl1yb6pnLw4CMx4SMuETMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.11.1.10.0.zzo-e7.klo-5fe.wyp-3d4c)!", + result: { + word: "wypukły", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGNkNjLjJDZz0Cc5dnLkNjZts2bw5CO50yb6pnLw4iMx4SMucTMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.17.1.12.0.zzo-98.pok-f3d.wyp-3d2c.3d4c)!", + result: { + word: "wypukły", + correct: 17, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0Q2MuQDZjFTLwl3duYzM5ETLwFmbuImMi1CbwNnLjFmY00CZvBnLw4yMx4iMuIjMuYzNtknM4USNDVya1BXe3hSI", + value: "!(wypukły-76.22.2.13.0.pod-4bac.spl-b2b.nap-1936.wyp-1cd4.3d4c)!", + result: { + word: "wypukły", + correct: 22, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "17.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/17-04-2025-diffle-difflepl-22-litery-w-2-slowach-9-2-11-0" +] = [ + { + date: "17.04.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNy0CZ5dnL3UDNt8Gc15CMuETMuIjL54yNwETLrVGdhRWe3hSI", + value: "!(wydatek-107.9.2.11.0.upo-457.wyd-241)!", + result: { + word: "wydatek", + correct: 9, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "17.04.2025", + }, + }, + { + date: "17.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNy0CZ5dnL0MTMtQXYs5SMtEGdh5CO5cTL0FGcuYDN10CajNjLhVjMt4WZn5yYiZTLlp3cuAjLzEjL14yMy4yNwETLrVGdhRWe3hSI", + value: + "!(wydatek-107.23.5.13.0.sze-6bc.gen-25a.3ch-546.pat-798.ata-1.lat-134.wyd-241)!", + result: { + word: "wydatek", + correct: 23, + position: 5, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "17.04.2025", + }, + }, + { + date: "17.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQjMtQmL3EjMtAXe35SY2ETLhJnZllmbuAjLwEjLz4CNx4yNwETLrVGdhRWe3hSI", + value: "!(wydatek-107.14.3.10.0.niefra-16a.wyp-217.d-241)!", + result: { + word: "wydatek", + correct: 14, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "17.04.2025", + }, + }, + { + date: "17.04.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0ITLkl3dugzM3ETLhR3cucDOkFTL0l3duEGZyITLr9GcuAjLxEjLz4yNx4yNwETLrVGdhRWe3hSI", + value: "!(wydatek-107.17.3.11.0.pok-22da.wyt-1d87.sta-1738.wyd-241)!", + result: { + word: "wydatek", + correct: 17, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "17.04.2025", + }, + }, + { + date: "17.04.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNy0CZ5dnLiBzMx0CZh5mLw4COuEjL54yNwETLrVGdhRWe3hSI", + value: "!(wydatek-107.9.1.8.0.nad-130b.wyd-241)!", + result: { + word: "wydatek", + correct: 9, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "17.04.2025", + }, + }, + { + date: "17.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNy0CZucTMy0Cc5dnLxImMtEmck5iZiJTL1h2YuAjLyEjLy4yNx4yNwETLrVGdhRWe3hSI", + value: "!(wydatek-107.17.2.12.0.chu-2bf.dra-2b1.wyp-217.d-241)!", + result: { + word: "wydatek", + correct: 17, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "17.04.2025", + }, + }, + { + date: "17.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNy0CZ5dnLkJDNtIHcz5CMugjLw4SMx4yNwETLrVGdhRWe3hSI", + value: "!(wydatek-107.11.0.8.0.spr-42d.wyd-241)!", + result: { + word: "wydatek", + correct: 11, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "17.04.2025", + }, + }, + { + date: "17.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQjMtQWe35CN2kTLtF2aukTY00Cb5dnL0IWMtUnc05iMyYTLwVGZuITMx0CZlNmLxgTLlN3auAjL2EjL44CMy4yNwETLrVGdhRWe3hSI", + value: + "!(wydatek-107.20.8.16.0.kse-81.ced-112.dep-622.tru-1b4.wyl-4a9.kam-964.wyd-241)!", + result: { + word: "wydatek", + correct: 20, + position: 8, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 44, + date: "17.04.2025", + }, + }, + { + date: "17.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNy0CZ5dnL0EWNtonc0VWau5CMugjL04CMx4yNwETLrVGdhRWe3hSI", + value: "!(wydatek-107.10.4.8.0.nietrz-5a4.wyd-241)!", + result: { + word: "wydatek", + correct: 10, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "17.04.2025", + }, + }, + { + date: "17.04.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNy0CZ5dnL4ITL3lnYuQTM5ITLzFmeuAjLwEjLx4yMx4yNwETLrVGdhRWe3hSI", + value: "!(wydatek-107.13.1.10.0.zas-2914.byw-28.wyd-241)!", + result: { + word: "wydatek", + correct: 13, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "17.04.2025", + }, + }, + { + date: "17.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0IjL0YWMtQWe35CMuQjLw4iMx4yNwETLrVGdhRWe3hSI", + value: "!(wydatek-107.12.0.4.0.wyd-1f4.241)!", + result: { + word: "wydatek", + correct: 12, + position: 0, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "17.04.2025", + }, + }, + { + date: "17.04.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNy0CZ55SMt02b35SYxczMtoncw5CMukjLz4iMx4yNwETLrVGdhRWe3hSI", + value: "!(wydatek-107.12.3.9.0.prz-371a.wom-1.yd-241)!", + result: { + word: "wydatek", + correct: 12, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "17.04.2025", + }, + }, + { + date: "17.04.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0ITLklnLyMTL0F2duIjNtcXdr5iNhJWLllWbuAjLxEjL14yNx4yNwETLrVGdhRWe3hSI", + value: "!(wydatek-107.17.5.11.0.mie-ba6.kuw-62.wat-32.yd-241)!", + result: { + word: "wydatek", + correct: 17, + position: 5, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "17.04.2025", + }, + }, + { + date: "17.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0ITLkl3ducTYx0CZ1FmLidTLlB3cuAjLzEjLz4yMx4yNwETLrVGdhRWe3hSI", + value: "!(wydatek-107.13.3.13.0.spe-7b.aud-1a7.wyd-241)!", + result: { + word: "wydatek", + correct: 13, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "17.04.2025", + }, + }, + { + date: "17.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0ITLkl3duMTO4EWMtoncw5CMukjLx4CMx4yNwETLrVGdhRWe3hSI", + value: "!(wydatek-107.10.1.9.0.prz-1a893.wyd-241)!", + result: { + word: "wydatek", + correct: 10, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "17.04.2025", + }, + }, + { + date: "17.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0IjLmljMtQWe35SMj1CZi9mL0ETL1VmZuAjLwEjLy4COx4yNwETLrVGdhRWe3hSI", + value: "!(wydatek-107.18.2.10.0.feu-14.obd-c1.wyd-29f.241)!", + result: { + word: "wydatek", + correct: 18, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "17.04.2025", + }, + }, + { + date: "17.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQjMtQWe35yNy0ya1VmLw4SNuMjL54yNwETLrVGdhRWe3hSI", + value: "!(wydatek-107.9.3.5.0.euk-27.wyd-241)!", + result: { + word: "wydatek", + correct: 9, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "17.04.2025", + }, + }, + { + date: "17.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQjMtQWe35SYxITNto3bw5CMuYjLx4CMx4yNwETLrVGdhRWe3hSI", + value: "!(wydatek-107.10.1.6.0.poz-521a.wyd-241)!", + result: { + word: "wydatek", + correct: 10, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "17.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/18-03-2025-diffle-difflepl-grywebowe-28-liter-w-5-slowach-large-green-circle" +] = [ + { + date: "18.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSN44iN00yauQTMtMnLw0SYp5iN4YmZtoncw5CMukjLx4COx4yN30CchtWawhSI", + value: "!(pikap-77.18.1.9.0.prz-ff86.ia-0.s-14.k-46.85)!", + result: { + word: "pikap", + correct: 18, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSN44CMtsWaw5iNhJWLllWbuAjLxEjLw4iMx4yN30CchtWawhSI", + value: "!(pikap-77.12.0.11.0.mie-ba6.pik-0.85)!", + result: { + word: "pikap", + correct: 12, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDOtsWaw5CMiFTLhl2YuUTMtoXat5CMucjLw4SMx4yN30CchtWawhSI", + value: "!(pikap-77.11.0.7.0.miz-15.cia-1b0.pik-85)!", + result: { + word: "pikap", + correct: 11, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDOtsWaw5CMtsWYm5yMxYWLt92auAjLzEjLx4CMx4yN30CchtWawhSI", + value: "!(pikap-77.10.1.13.0.kom-f13.fak-0.pik-85)!", + result: { + word: "pikap", + correct: 10, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDOtsWauYGOx0Saz5SYkJjMts2bw5CMukjLx4iMx4yN30CchtWawhSI", + value: "!(pikap-77.12.1.9.0.pok-22da.si-18f.ik-85)!", + result: { + word: "pikap", + correct: 12, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1gjLw0yapBnLkJDNtIHcz5CMukjLx4SMx4yN30CchtWawhSI", + value: "!(pikap-77.11.1.9.0.spr-42d.pik-0.85)!", + result: { + word: "pikap", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSN40yapBnLmRTMtEGbi5yYjRWLhJ3ZuQWNh1CchtmLhBTMtEWbp5iZiJTL1h2YuAjL4EjLx4CNx4yN30CchtWawhSI", + value: + "!(pikap-77.14.1.18.0.chu-2bf.ima-10a.kap-a5d.gra-dcc.bla-14f.pik-85)!", + result: { + word: "pikap", + correct: 14, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSN44SYx4SMuIDZuQTLrlmL4kzMtMXduImYh1CbhBnLzEWLtF2ZuAjL2EjLw4yNy4yN30CchtWawhSI", + value: "!(pikap-77.27.0.16.0.gam-a3.pal-abb.us-398.ik-4.d2.1.1a.85)!", + result: { + word: "pikap", + correct: 27, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 43, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDOuYDNuEWMtsWaw5CNhVTL6JHdllmbuAjLzEjLx4iNx4yN30CchtWawhSI", + value: "!(pikap-77.16.1.13.0.nietrz-5a4.pik-1a.46.85)!", + result: { + word: "pikap", + correct: 16, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSN40yapBnLz0yapZmL5ITMtkGbi5yMtsWd05SOlJTL6J3auAjL1EjLw4CNx4yN30CchtWawhSI", + value: "!(pikap-77.14.0.15.0.krz-2e9.tuk-3.bli-129.fik-3.pik-85)!", + result: { + word: "pikap", + correct: 14, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDOtsWaw5yMt02bi5CMj5CMtsmL4ETLzlmLzkDOhFTL6JHcuAjL4EjLx4CMy4yN30CchtWawhSI", + value: "!(pikap-77.20.1.18.0.prz-1a893.is-18.k-0.c0.bom-3.pik-85)!", + result: { + word: "pikap", + correct: 20, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1gTLrlGcuUWYz0icwNXZp5mLw4SOuEjL34yN30CchtWawhSI", + value: "!(pikap-77.7.1.9.0.niespr-3ae.pik-85)!", + result: { + word: "pikap", + correct: 7, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1gTLrlGcuMTLrlmZuY2M50SY6NnLmFTLrVXZuAjLyEjLx4yMx4yN30CchtWawhSI", + value: "!(pikap-77.13.1.12.0.euk-1f.sza-93f.fik-3.pik-85)!", + result: { + word: "pikap", + correct: 13, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDOuYDNtsmLiZmMtMXaw5CNmFTLkl3duAjLzEjLx4yMx4yN30CchtWawhSI", + value: "!(pikap-77.13.1.13.0.wyd-1f4.pis-2fb.k-46.85)!", + result: { + word: "pikap", + correct: 13, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "Swbd", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDOuYDNtsWaw5CZzITMtMGZv5iZtoWar5COwQTLyV2duAjL2EjLy4yMx4yN30CchtWawhSI", + value: "!(pikap-77.13.2.16.0.wer-408.kij-f.odc-123d.pik-46.85)!", + result: { + word: "pikap", + correct: 13, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1gTLr5iZ00iap5iY40Sas5SYhJTLhJHcuAjLzEjLy4yMx4yN30CchtWawhSI", + value: "!(pikap-77.13.2.13.0.pra-2aa.li-8b.ij-4f.k-85)!", + result: { + word: "pikap", + correct: 13, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSN40yap5SOy0SasBnLwQTLjl2augzNtcXYk5yNjVWLu9WbuAjLzEjLz4SMx4yN30CchtWawhSI", + value: "!(pikap-77.11.3.13.0.mon-ec7.daw-78.kic-40.pli-29.ik-85)!", + result: { + word: "pikap", + correct: 11, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1gjLw0yap5SYxITNto3bw5CMuYjLx4iMx4yN30CchtWawhSI", + value: "!(pikap-77.12.1.6.0.poz-521a.ik-0.85)!", + result: { + word: "pikap", + correct: 12, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1gTLr5iMtwmL3kTMt8WauEWM3MTL6JHcuAjLyEjLx4yMx4yN30CchtWawhSI", + value: "!(pikap-77.13.1.12.0.prz-371a.io-197.l-2.k-85)!", + result: { + word: "pikap", + correct: 13, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "18.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/19-03-2025-flag-pl-diffle-difflepl-grywebowe-31-liter-w-4-slowach-large-green-1" +] = [ + { + date: "19.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTL6JHZuATL6RmcugDZ10SdyJmL2EmYtUWat5CMuQTMuIjL1EjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.15.2.14.0.mie-ba6.bru-5d8.rdz-0.drz-3)!", + result: { + word: "drzazga", + correct: 15, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0ieyRmLiRTL6J3ZukTNtUXYw5CMuATMuEjL1EjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.15.1.10.0.pau-59.grz-4b.drz-3)!", + result: { + word: "drzazga", + correct: 15, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMugTL6JHZuMWMx0ickpnLw4CNuEjL2EjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.16.1.4.0.zdr-11c.drz-8.3)!", + result: { + word: "drzazga", + correct: 16, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0ieyRmL0EWNtonc0VWau5CMuATMuEjLxEjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.11.1.10.0.nietrz-5a4.drz-3)!", + result: { + word: "drzazga", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTL6JHZuQWNy0ic11mLzYmMtonc05SYkJjMts2bw5CMuMTMuAjL2EjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.16.0.13.0.pok-22da.trz-2f3.mur-25d.drz-3)!", + result: { + word: "drzazga", + correct: 16, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTL6JHZuQmM00icwNnLw4yNuEjLxEjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.11.1.7.0.spr-42d.drz-3)!", + result: { + word: "drzazga", + correct: 11, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTL65CMtEmcuATLtFGZuATL6RmcuYmNx0iclRnLxITOy0ychpnLlJmMtUHaj5CMuYTMuEjLzIjL4cTLhdmehpnckhSI", + value: + "!(drzazga-78.23.1.16.0.chu-2be.zas-2921.ter-16f.rdz-0.dam-0.ra-0.z-3)!", + result: { + word: "drzazga", + correct: 23, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "Swbd", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0ieyRmL2YmMtQXds5SYhdTLlp3YuAjL44SMukjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.9.1.8.0.cze-7aa.lut-2f6.drz-3)!", + result: { + word: "drzazga", + correct: 9, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0ieuUzYtEmL5MzMt8mL5UWL1JHZuMmNh1SYydmLw4SNuEjLyIjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.22.1.5.0.gra-a6c.dru-e9.o-339.a-c5.z-3)!", + result: { + word: "drzazga", + correct: 22, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0ieyRmL3ETLhpncuMTO4EWMtoncw5CMuITMuEjLzEjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.13.1.12.0.prz-1a893.rza-17.drz-3)!", + result: { + word: "drzazga", + correct: 13, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMtonck5SZ4UTLyJ2buYWNtoXYs5SZtEWbzVWau5CMuITMuEjL0EjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.14.1.12.0.niesma-e.laz-5f.obr-58e.drz-3)!", + result: { + word: "drzazga", + correct: 14, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTL6JHZuQjZx0CZ5dnLw4SNuEjLwEjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.10.1.5.0.wyd-1f4.drz-3)!", + result: { + word: "drzazga", + correct: 10, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMtonck5iN30ieydnLzUTLyp3cucjMtsWdl5CMuITMuIjL1EjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.15.2.12.0.euk-27.szr-53.wrz-76.drz-3)!", + result: { + word: "drzazga", + correct: 15, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0ieyRmLmdzMtoXYn5CM5UTLr9GcuYWYtUWat5CMuATMuEjLyEjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.12.1.10.0.mie-af.pok-590.gaz-37f.drz-3)!", + result: { + word: "drzazga", + correct: 12, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0ieyRmL3EWYtEmej5SYxITNto3bw5CMuATMuEjLxEjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.11.1.10.0.poz-521a.cza-aa7.drz-3)!", + result: { + word: "drzazga", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMtonck5SN00ickpnLw0icpxmL5I2NtIHaj5CN2UWMtMXe35CMugTMuEjL3EjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.17.1.18.0.wys-1e64.chr-7b9.lir-0.zdr-45.drz-3)!", + result: { + word: "drzazga", + correct: 17, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0ieyRmLhFzNz0ieyBnLw4iNuEjLxEjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.11.1.6.0.prz-371a.drz-3)!", + result: { + word: "drzazga", + correct: 11, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTL6JHZukjYx0ichdnL1ITMtcmbh5CNyMTLnFWbuQzYtMXZn5CMuUTMuIjL4EjL4cTLhdmehpnckhSI", + value: "!(drzazga-78.18.2.15.0.ges-c4.mag-324.ang-125.war-1b9.drz-3)!", + result: { + word: "drzazga", + correct: 18, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "19.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/19-04-2025-diffle-difflepl-grywebowe-32-litery-w-5-slowach-large-green-circle" +] = [ + { + date: "19.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNk5SYi5SOl5SOi1ie5JnLjBjY0ETL6JHcuAjL04CMugjMukDMx0CduF2a5pXeyhSI", + value: "!(ryzykant-109.28.0.4.0.prz-14b0c.ryz-b9.e9.ba.d5)!", + result: { + word: "ryzykant", + correct: 28, + position: 0, + incorrect: 4, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "19.04.2025", + }, + }, + { + date: "19.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDZtoXey5iZjNTLjFWbuUzMk1ychBnLw4CMx4CNuITMukDMx0CduF2a5pXeyhSI", + value: "!(ryzykant-109.12.4.10.0.pas-d35.mac-3cf.ryz-d5)!", + result: { + word: "ryzykant", + correct: 12, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "19.04.2025", + }, + }, + { + date: "19.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDZtoXey5CNhVTL6JHdllmbuAjL44iMuMTMukDMx0CduF2a5pXeyhSI", + value: "!(ryzykant-109.13.2.8.0.nietrz-5a4.ryz-d5)!", + result: { + word: "ryzykant", + correct: 13, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "19.04.2025", + }, + }, + { + date: "19.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1QWL6lncuQTNtoncn5CZyQTLyB3cuAjL54SMuYTMukDMx0CduF2a5pXeyhSI", + value: "!(ryzykant-109.16.1.9.0.spr-42d.grz-54.ryz-d5)!", + result: { + word: "ryzykant", + correct: 16, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "19.04.2025", + }, + }, + { + date: "19.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDZtoXey5CMiNWMtIXYw5iYzYWL6JHduYmYy0SdoNmLw4SMx4yMuAjMukDMx0CduF2a5pXeyhSI", + value: "!(ryzykant-109.20.3.11.0.chu-2bf.trz-f3b.par-1cb0.ryz-d5)!", + result: { + word: "ryzykant", + correct: 20, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "19.04.2025", + }, + }, + { + date: "19.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1QWL6lncuE2NtIWYm5SNzUTLhJ3aukzNx0CczVnLw4yMx4SMukTMukDMx0CduF2a5pXeyhSI", + value: "!(ryzykant-109.19.1.13.0.usp-179.kra-535.fab-7a.ryz-d5)!", + result: { + word: "ryzykant", + correct: 19, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "19.04.2025", + }, + }, + { + date: "19.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDZtoXey5iNzITL5JnYuEmMtcnc15yY2EWLhJ3ZuAjL34SMukTMukDMx0CduF2a5pXeyhSI", + value: "!(ryzykant-109.19.1.7.0.gra-a6c.urw-2a.bry-236.ryz-d5)!", + result: { + word: "ryzykant", + correct: 19, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "19.04.2025", + }, + }, + { + date: "19.04.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNk1ie55SNj1ielJnLiBzMx0CZh5mLw4iMx4yMuMTMukDMx0CduF2a5pXeyhSI", + value: "!(ryzykant-109.13.3.12.0.nad-130b.rez-c5.yz-d5)!", + result: { + word: "ryzykant", + correct: 13, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "19.04.2025", + }, + }, + { + date: "19.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNk1ie5JnLkVTMtknc65CNmFTLkl3duAjL14CNuUTMukDMx0CduF2a5pXeyhSI", + value: "!(ryzykant-109.15.4.5.0.wyd-1f4.zry-15d.ryz-d5)!", + result: { + word: "ryzykant", + correct: 15, + position: 4, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "19.04.2025", + }, + }, + { + date: "19.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1QWL6lncucTZ20CdhBnLwUTLvJHZuAjL44yMuQTMukDMx0CduF2a5pXeyhSI", + value: "!(ryzykant-109.14.3.8.0.dro-50.pat-6e7.ryz-d5)!", + result: { + word: "ryzykant", + correct: 14, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "19.04.2025", + }, + }, + { + date: "19.04.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1QWL6lncuITOz0SeyJmLmdTL6FmLjVGMm1ievJnLhFzNz0ieyBnLw4SMx4iMuEjMukDMx0CduF2a5pXeyhSI", + value: "!(ryzykant-109.21.2.11.0.prz-371a.roz-f0ec.az-7f.bry-392.ryz-d5)!", + result: { + word: "ryzykant", + correct: 21, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "19.04.2025", + }, + }, + { + date: "19.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1QWL6lncuczYm1icrNnL1IWMtUnck5iYx0yYuVmLw4SNx4yMuYTMukDMx0CduF2a5pXeyhSI", + value: "!(ryzykant-109.16.3.15.0.enc-1b.dru-1b5.skr-fc7.ryz-d5)!", + result: { + word: "ryzykant", + correct: 16, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "19.04.2025", + }, + }, + { + date: "19.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDZtoXey5SY30iYhZmL3ITLrVXZuAjL34iMugTMukDMx0CduF2a5pXeyhSI", + value: "!(ryzykant-109.18.2.7.0.euk-27.fab-7a.ryz-d5)!", + result: { + word: "ryzykant", + correct: 18, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "19.04.2025", + }, + }, + { + date: "19.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1QWL6lncuEWMyUTL69GcuAjL14CMuMTMukDMx0CduF2a5pXeyhSI", + value: "!(ryzykant-109.13.0.5.0.poz-521a.ryz-d5)!", + result: { + word: "ryzykant", + correct: 13, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "19.04.2025", + }, + }, + { + date: "19.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNk1ie5JnLiJTMtE2az5SZ0MTMtEmc05yM5gTYx0ieyBnLw4yMx4CNugTMukDMx0CduF2a5pXeyhSI", + value: "!(ryzykant-109.18.4.13.0.prz-1a893.tra-134e.ska-12b.ryz-d5)!", + result: { + word: "ryzykant", + correct: 18, + position: 4, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "19.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/20-03-2025-flag-pl-diffle-difflepl-grywebowe-25-liter-w-3-slowach-large-green-ci" +] = [ + { + date: "20.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjVTLsFmZuADZi1CbhBnL2EmYtUWat5CMuMTMuEjLxEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.11.1.13.0.mie-ba6.pal-bd0.fal-5c0)!", + result: { + word: "fałsz", + correct: 11, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjVTLsFmZugjZ10CblBnLzAjMtoXYs5yM0MTMtwWe35CMuITMuIjLxEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.11.2.12.0.wyl-1343.laz-203.pel-5f8.fal-5c0)!", + result: { + word: "fałsz", + correct: 11, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwMWNtwWYm5iY2EWLsFmYuUGO10SYsdmL4UjY30ieyBnLxEjMtcXe65CMuYTMuEjLzEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.13.1.16.0.zyw-211.prz-7b58.gla-58e.bal-a6b.fal-5c0)!", + result: { + word: "fałsz", + correct: 13, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjVTLsFmZukzY00SYsdmLyUmMtMXYt5SM4cTMtUWa35CMuYTMuIjLwEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.10.2.16.0.wie-1781.mas-2e2.gla-4c9.fal-5c0)!", + result: { + word: "fałsz", + correct: 10, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAzY10CbhZmLwczMtEGb35SZzgTL09GcugTOt8me65CMuITMuIjLwEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.10.2.12.0.zzo-98.pot-83e.wla-370.fal-5c0)!", + result: { + word: "fałsz", + correct: 10, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAzY10CbhZmLjRGMx0CbhpnLkhTMtA3ch5CMuMTMuEjLyEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.12.1.13.0.asp-18d.zal-10dc.fal-5c0)!", + result: { + word: "fałsz", + correct: 12, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwMWNtwWYm5SY5ETL1p3cuATL3JHZuUzNtMXYo5iZ50CbwNnLwEzMt8Gbi5iYiJTLjFGbuQWZt8me65CMuUjMuQjL1EjL5cTL6NnM4USNDVSYmhSI", + value: + "!(fałsz-79.15.4.25.0.zzo-ed.lac-2bb.blo-310.spl-9f.has-75.drw-0.szu-19a.fal-5c0)!", + result: { + word: "fałsz", + correct: 15, + position: 4, + incorrect: 25, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 44, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjVTLsFmZuUmMi1Cbh1mL1QDNtMXYs5iMzMTMtMXe35CMuMTMuIjLyEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.12.2.13.0.wys-1332.las-445.mal-b2e.fal-5c0)!", + result: { + word: "fałsz", + correct: 12, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjVTLsFmZugDM30iezVnLjZTMtMmez5iM2QGNtoncw5CMuYTMuEjLwEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.10.1.16.0.prz-4d62.szc-16c.usz-708.fal-5c0)!", + result: { + word: "fałsz", + correct: 10, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Swbd", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjVTLsFmZuMWYhFTLyR3cuQGM40CcvtmLlNGNtEmez5SYzQWMtUWa35CMuYTMuMjLyEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.12.3.16.0.wie-1d3a.sza-4ce.kop-80d.str-1aac.fal-5c0)!", + result: { + word: "fałsz", + correct: 12, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwMWNtwWYm5CZ4YTLzF2auATLvd3cuMTO4EWMtoncw5CMugTMuIjLwEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.10.2.18.0.prz-1a893.swo-0.kas-68d.fal-5c0)!", + result: { + word: "fałsz", + correct: 10, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjVTLsFmZuQGNz0CajNjL3UWLvx2dugTOt8me65CMuETMuMjLwEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.10.3.11.0.zzo-98.wlo-e7.3ch-34d.fal-5c0)!", + result: { + word: "fałsz", + correct: 10, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAzY10CbhZmLkRTNtwWYz5SOygTLhxmYuETNz0CajNjLmlDNt8Gb65CMuETMuMjLyEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.12.3.11.0.zlo-49f.3ch-351.bla-829.sal-54d.fal-5c0)!", + result: { + word: "fałsz", + correct: 12, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjVTLsFmZuczM10SYsdmLiJTYtEmez5CZxczMtoncw5CMuITMuUjLxEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.11.5.12.0.prz-371d.sza-a2b.gla-537.fal-5c0)!", + result: { + word: "fałsz", + correct: 11, + position: 5, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwMWNtwWYm5iNx0ychRmL5UjZy0ibvtmLw4yNuEjLwEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.10.1.7.0.kon-2f59.das-16.fal-5c0)!", + result: { + word: "fałsz", + correct: 10, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAzY10CbhZmLwkzMtIXYn5SOyITLqFGbucTZt8me65CMuQTMuIjLwEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.10.2.14.0.zzo-e7.laj-229.gar-390.fal-5c0)!", + result: { + word: "fałsz", + correct: 10, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjVTLsFmZuAzY10ychxmLihTL5x2cuU2Yz0SdsdmL2QTZtA3c35CMucTMuQjL2EjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.16.4.17.0.wsp-e46.glu-3ce.sly-8b.las-5c0.fal-5c0)!", + result: { + word: "fałsz", + correct: 16, + position: 4, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwMWNtwWYm5CMkJWLsFGcuImY20CbhdnLkRzMtg2Yz4yNhRTLhx2ZugTOt8me65CMuMTMuMjL2EjL5cTL6NnM4USNDVSYmhSI", + value: + "!(fałsz-79.16.3.13.0.zzo-98.gla-4a7.3ch-34d.wal-6bb.pal-bd0.fal-5c0)!", + result: { + word: "fałsz", + correct: 16, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjVTLsFmZuU2Yz0SdsdmLzAjMtoXYs5yYhJGNtQ2bw5CMuETMuIjLyEjL5cTL6NnM4USNDVSYmhSI", + value: "!(fałsz-79.12.2.11.0.pod-4bac.laz-203.glu-3ce.fal-5c0)!", + result: { + word: "fałsz", + correct: 12, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjVTLsFmZuQmY2ITLs9GcuIDNi1Cbh1mLwMWNtMXYs5yY0ITL1xGduEWOtcnez5CMuQTMuIjL2EjL5cTL6NnM4USNDVSYmhSI", + value: + "!(fałsz-79.16.2.14.0.szw-9a.tlu-24c.las-5c0.mal-b42.pol-26bd.fal-5c0)!", + result: { + word: "fałsz", + correct: 16, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "20.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/20-04-2025-diffle-difflepl-grywebowe-24-litery-w-3-slowach-large-green-circle" +] = [ + { + date: "20.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMts2cl5yYxYTL0F2auYTNtQWZy5CMuYjLz4SNx4CMxETLhJHZht2clhSI", + value: "!(eskadra-110.15.3.6.0.red-56.kat-61c.esk-3)!", + result: { + word: "eskadra", + correct: 15, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "20.04.2025", + }, + }, + { + date: "20.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0yazVmLkV2MtMXZy5CZyQTLyB3cuAjLyEjLy4iNx4CMxETLhJHZht2clhSI", + value: "!(eskadra-110.16.2.12.0.spr-42d.res-3ed.esk-3)!", + result: { + word: "eskadra", + correct: 16, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "20.04.2025", + }, + }, + { + date: "20.04.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMuMmNy0yaz5yM00CbrVmLmVWMtQXdi5CMugjLx4SOx4CMxETLhJHZht2clhSI", + value: "!(eskadra-110.19.1.8.0.but-1ef.ekl-43.sk-26c.3)!", + result: { + word: "eskadra", + correct: 19, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "20.04.2025", + }, + }, + { + date: "20.04.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMts2cl5SYxczMtoncw5CMuUjLy4SMx4CMxETLhJHZht2clhSI", + value: "!(eskadra-110.11.2.5.0.prz-371a.esk-3)!", + result: { + word: "eskadra", + correct: 11, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "20.04.2025", + }, + }, + { + date: "20.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMts2cuETLhdXZugzYx0CblJmLy0SblNnLmZTMtIXZ05yY2EWLhJ3ZuAjL1EjLy4yMy4CMxETLhJHZht2clhSI", + value: "!(eskadra-110.23.2.15.0.gra-a6c.ter-16f.sem-2.bel-1c8.ewa-1.sk-3)!", + result: { + word: "eskadra", + correct: 23, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "20.04.2025", + }, + }, + { + date: "20.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMts2cucjMtsWdl5CMuYjLw4SMx4CMxETLhJHZht2clhSI", + value: "!(eskadra-110.11.0.6.0.euk-27.sk-3)!", + result: { + word: "eskadra", + correct: 11, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "20.04.2025", + }, + }, + { + date: "20.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0yazVmL0EWNtonc0VWau5CMugjLy4iMx4CMxETLhJHZht2clhSI", + value: "!(eskadra-110.12.2.8.0.nietrz-5a4.esk-3)!", + result: { + word: "eskadra", + correct: 12, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "20.04.2025", + }, + }, + { + date: "20.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0yazVmLhRmZtoXZi5CMukjLw4SMx4CMxETLhJHZht2clhSI", + value: "!(eskadra-110.11.0.9.0.bez-fda.esk-3)!", + result: { + word: "eskadra", + correct: 11, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "20.04.2025", + }, + }, + { + date: "20.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjL4MTLrNXZuEWMyUTL69GcuAjLwEjLx4SNx4CMxETLhJHZht2clhSI", + value: "!(eskadra-110.15.1.10.0.poz-521a.esk-38.3)!", + result: { + word: "eskadra", + correct: 15, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "20.04.2025", + }, + }, + { + date: "20.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTLrNXZuUWYx0ych1mLzMTMtMXYq5iNiNTLyVnZuUWMj1ycvRmLiNTL5p3cuAjL0EjL24yMy4CMxETLhJHZht2clhSI", + value: + "!(eskadra-110.23.6.14.0.szy-3b.dos-c1e.fur-3b6.jas-133.mas-1ae.esk-3)!", + result: { + word: "eskadra", + correct: 23, + position: 6, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "20.04.2025", + }, + }, + { + date: "20.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKz0yazVmL10yalxmLlVTLhtWduAjLwEjLx4SNx4CMxETLhJHZht2clhSI", + value: "!(eskadra-110.15.1.10.0.uka-5e.lek-5.esk-3)!", + result: { + word: "eskadra", + correct: 15, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "20.04.2025", + }, + }, + { + date: "20.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTLrNXZuETLlR2ZucDNy0iavdnLzkDOhFTL6JHcuAjL2EjLy4CNx4CMxETLhJHZht2clhSI", + value: "!(eskadra-110.14.2.16.0.prz-1a893.woj-247.gde-1.esk-3)!", + result: { + word: "eskadra", + correct: 14, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "20.04.2025", + }, + }, + { + date: "20.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMts2cl5SNkFTLkF2auMWLkJ3ZuMjNx0ibh1mLwY2YtEmcw5CMugjLz4CMy4CMxETLhJHZht2clhSI", + value: "!(eskadra-110.20.3.8.0.pra-cf0.man-163.grd-c.kad-1d5.esk-3)!", + result: { + word: "eskadra", + correct: 20, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "20.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/21-03-2025-diffle-difflepl-grywebowe-33-litery-w-5-slowach-large-green-circle" +] = [ + { + date: "21.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjhTLppHZuMWL6lGbuMzM10SZ6NnLlJTMtUnc65yM0MTMtwWe35CMuYTMuEjL2EjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.16.1.16.0.wyl-1343.zru-12e.sze-533.liz-c.dzi-8c)!", + result: { + word: "dziać", + correct: 16, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGOtkmek5iNxQTLhJmeuIjYl1CdvBnLw4SOuAjLxEjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.11.0.9.0.pot-eb2.zba-416.dzi-8c)!", + result: { + word: "dziać", + correct: 11, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY40Sa6RmLw0SYppnLwITLp12cuUmZt4Wdi5SOtEWaw5iMzMTMtMXe35CMuMTMuAjL3EjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.17.0.13.0.wys-1332.pia-9.bun-fe.smi-20.zia-0.dzi-8c)!", + result: { + word: "dziać", + correct: 17, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGOtkmek5SN50iepBnLlhzYt0WY65yM0MTMtwWe35CMuITMuIjLzEjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.13.2.12.0.wyl-1343.zam-c8e.piz-95.dzi-8c)!", + result: { + word: "dziać", + correct: 13, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGOtkmek5yNmFTL6lWbuMWL6lGbuQ2MkRTL69GcugTOt8me65CMuITMuEjL3EjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.17.1.12.0.zzo-98.poz-4d3d.liz-c.miz-1f7.dzi-8c)!", + result: { + word: "dziać", + correct: 17, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjhTLppHZuUGO4ITLrl3duYTZ50iYhpnLkhTMtA3ch5CMuYTMuIjL0EjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.14.2.16.0.asp-18d.zab-9e6.wyk-288e.dzi-8c)!", + result: { + word: "dziać", + correct: 14, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjhTLppHZuITYx0CajNjLilTYx0SYyRnLmFTLzlmZuATLhlmeuM2Mx0ievxmLmJmMtUHaj5CMuIjMuIjL1EjLwgTL3gTJ0MUJhlmekhSI", + value: + "!(dziać-80.15.2.22.0.chu-2bf.loz-13c.zia-0.fis-1f.tra-1a9b.3ch-1a2.dzi-8c)!", + result: { + word: "dziać", + correct: 15, + position: 2, + incorrect: 22, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjhTLppHZuQWM3MTL6JHcuAjL34SMukjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.9.1.7.0.prz-371d.dzi-8c)!", + result: { + word: "dziać", + correct: 9, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjhTLppHZuQWNx0iekVnL2QTZtA3c35CMuQTMuEjLxEjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.11.1.14.0.wsp-e46.udz-15d.dzi-8c)!", + result: { + word: "dziać", + correct: 11, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY40Sa6RmL0ETL6R2buATLhlmeuYWNtkme15CNzMTMtwWe35CMuITMuAjL5EjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.19.0.12.0.wyl-1334.uzi-5f.zia-0.odz-14.dzi-8c)!", + result: { + word: "dziać", + correct: 19, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjhTLppnLzUTLhlGZuIjZtk2Yz5CMuATMuAjLwEjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.10.0.10.0.sci-f2.dia-53.zi-8c)!", + result: { + word: "dziać", + correct: 10, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGOtkmek5SYzETLoN2MuATLnlmZuEWLzlGcuY2M20SZyRnL2gjYtwWYt5CMucTMuAjL0EjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.14.0.17.0.mal-b86.tre-63f.pis-a.fig-0.3ch-13a.dzi-8c)!", + result: { + word: "dziać", + correct: 14, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGOtkmek5CMtEWa65SN1ITLq92duMTO4EWMtoncw5CMukTMuAjLzEjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.13.0.19.0.prz-1a893.woj-255.zia-0.dzi-8c)!", + result: { + word: "dziać", + correct: 13, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjhTLppHZugjMtoXYr5iMt4me15iYwQTL5p3YuImYz0SZ6NnLmlDNt8Gb65CMuQTMuAjL5EjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.19.0.14.0.zlo-49f.sze-3bb.czy-40b.uzn-2.kaz-28.dzi-8c)!", + result: { + word: "dziać", + correct: 19, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGOuczNy0Sa6RmL1EWNtonc0VWau5CMuITMuIjLxEjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.11.2.12.0.nietrz-5a5.dzi-277.8c)!", + result: { + word: "dziać", + correct: 11, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGOtkmeuEWMtonck5yYjNTLhp3cugTOt8me65CMuQTMuAjL0EjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.14.0.14.0.zzo-98.sza-3cc.drz-1a.zi-8c)!", + result: { + word: "dziać", + correct: 14, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "Swbd", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGOtkmek5iYzITL3FmbllmbuQmNy0Sd6NmL4UGOtwWam5CMuYTMuEjLyEjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.12.1.16.0.fil-8e8.czu-26d.nienaw-23b.dzi-8c)!", + result: { + word: "dziać", + correct: 12, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGOuUWOy0Sa6RmL2EmYtUWat5CMuMTMuEjLyEjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.12.1.13.0.mie-ba6.dzi-29e.8c)!", + result: { + word: "dziać", + correct: 12, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjhTLppHZuATLhlmeuMWN10SZpBnLw4SOuEjLyEjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.12.1.9.0.pie-55c.zia-0.dzi-8c)!", + result: { + word: "dziać", + correct: 12, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGOuETLppHZuMzNx0iekpnLhRmMtoHZ15yYhJGNtQ2bw5CMuUTMuAjLzIjLwgTL3gTJ0MUJhlmekhSI", + value: "!(dziać-80.23.0.15.0.pod-4bac.udz-2da.zdz-173.dzi-1.8c)!", + result: { + word: "dziać", + correct: 23, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "21.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/22-03-2025-diffle-difflepl-grywebowe-33-litery-w-5-slowach-large-green-circle" +] = [ + { + date: "22.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDMh1CbhJmL2M2NtEmc05yN2MTLhx2ZuYTMtMWes5yM0MTMtwWe35CMuETMuQjL4EjLxgTLpt2Y5RnM4USNDVSYihSI", + value: "!(bałtycki-81.18.4.11.0.wyl-1343.lyc-16.gla-367.tra-7c6.bal-a03)!", + result: { + word: "bałtycki", + correct: 18, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDMh1CbhJmL00SYrRnL2EmYtUWat5CMuATMuQjL0EjLxgTLpt2Y5RnM4USNDVSYihSI", + value: "!(bałtycki-81.14.4.10.0.mie-ba6.tka-4.bal-a03)!", + result: { + word: "bałtycki", + correct: 14, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzATYtwWYi5SNzIWLsFWbuQjM50iehpnLw4yNuEjL1EjLxgTLpt2Y5RnM4USNDVSYihSI", + value: "!(bałtycki-81.15.1.7.0.zaz-924.mal-b35.bal-a03)!", + result: { + word: "bałtycki", + correct: 15, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzATYtwmL0ImMtQXYuMzNtwWei5CN4EjLkdjL0UTLoN2MuATLtFGbuUjMx0CZhNnL1QTMtkHbw5SM20ie5xmLwAjYx0SYyRnLmJmMtUHaj5CMuMjMuMjL0MjLxgTLpt2Y5RnM4USNDVSYihSI", + value: + "!(bałtycki-81.34.3.23.0.chu-2bf.tra-1b00.lyz-61.ply-145.sad-125.lam-0.3ch-54.7d.184.byl-73.at-2b4.l-a03)!", + result: { + word: "bałtycki", + correct: 34, + position: 3, + incorrect: 23, + knownIncorrect: 0, + totalWords: 12, + totalLetters: 60, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMwEWLsFmYuUzMi1Cbh1mLkhTMtA3ch5CMuETMuAjL1EjLxgTLpt2Y5RnM4USNDVSYihSI", + value: "!(bałtycki-81.15.0.11.0.asp-18d.mal-b35.bal-a03)!", + result: { + word: "bałtycki", + correct: 15, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDMh1CbhJmL2EmMtw2a15CZxczMtoncw5CMuITMuIjLyEjLxgTLpt2Y5RnM4USNDVSYihSI", + value: "!(bałtycki-81.12.2.12.0.prz-371d.ukl-2a6.bal-a03)!", + result: { + word: "bałtycki", + correct: 12, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDMh1CbhJmLxcjYtwWYw5SZ20ya5xmLyMzMx0yc5dnLw4SOuIjL5EjLxgTLpt2Y5RnM4USNDVSYihSI", + value: "!(bałtycki-81.19.2.9.0.wys-1332.lyk-6e.pal-b71.bal-a03)!", + result: { + word: "bałtycki", + correct: 19, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzATYtwWYi5SOk1CbhNmL5QzMt8Waw5SO10ya6NnLxEWMtUme15CMukTMuMjL4EjLxgTLpt2Y5RnM4USNDVSYihSI", + value: "!(bałtycki-81.18.3.19.0.uze-1a1.szk-59.pio-349.cal-d9.bal-a03)!", + result: { + word: "bałtycki", + correct: 18, + position: 3, + incorrect: 19, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzATYtwWYi5CNkJTLs9meucDNy0iavdnLiNTLjlHduMTO4EWMtoncw5CMucTMuQjL2EjLxgTLpt2Y5RnM4USNDVSYihSI", + value: "!(bałtycki-81.16.4.17.0.prz-1a893.tyc-3b.woj-247.zol-2d4.bal-a03)!", + result: { + word: "bałtycki", + correct: 16, + position: 4, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDMh5SNwEWLsFmYuIWMtQWes5yN4ITL5xGcuUDN00ychxmLmlDNt8Gb65CMuATMuMjL1IjLxgTLpt2Y5RnM4USNDVSYihSI", + value: + "!(bałtycki-81.25.3.10.0.zlo-49f.las-445.ply-287.lyd-1b.bal-a05.a03)!", + result: { + word: "bałtycki", + correct: 25, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzATYtwWYi5SOx0SestmLjFmY00CZvBnLw4COuIjL0EjLxgTLpt2Y5RnM4USNDVSYihSI", + value: "!(bałtycki-81.14.2.8.0.pod-4bac.kly-19.bal-a03)!", + result: { + word: "bałtycki", + correct: 14, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzATYuEjNh1CbhJmLzMTNtwWYz5yN1cTLsF2dugTOt8me65CMuITMuAjLyIjLxgTLpt2Y5RnM4USNDVSYihSI", + value: "!(bałtycki-81.22.0.12.0.zzo-98.wal-757.sal-533.bal-a61.a03)!", + result: { + word: "bałtycki", + correct: 22, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDMh5CNxkTLsFmYukjZh1yboNmLw4SOuEjL0EjLxgTLpt2Y5RnM4USNDVSYihSI", + value: "!(bałtycki-81.14.1.9.0.cho-af9.bal-914.a03)!", + result: { + word: "bałtycki", + correct: 14, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDMh1CbhJmL4MTL0FGcuIjMy0yYlxmLyczMtwWYj5iM5MTLrFGbugTOt8me65CMuUTMuQjL0IjLxgTLpt2Y5RnM4USNDVSYihSI", + value: + "!(bałtycki-81.24.4.15.0.zzo-98.lak-392.cal-372.lec-222.pat-38.bal-a03)!", + result: { + word: "bałtycki", + correct: 24, + position: 4, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDMh1Cbh5iNzQTLsVmYuYTO20CbvpnLw4iNuAjLzEjLxgTLpt2Y5RnM4USNDVSYihSI", + value: "!(bałtycki-81.13.0.6.0.zol-696.bel-436.al-a03)!", + result: { + word: "bałtycki", + correct: 13, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "22.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/22-04-2025-diffle-difflepl-grywebowe-52-litery-w-8-slowach-large-green-circle" +] = [ + { + date: "22.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY4QTLsVGauITMy0CblZmLlRTMtwWZi5SM50yalBnLlNTMt0Wdy5SYzYTLoN2MugDM00CdlRmLzQzMx0Cb5dnLw4yMy4SMugjMuITMx0SarNHN4USNDVSazxWZohSI", + value: + "!(helsiński-112.28.1.23.0.wyl-1343.det-408.3ch-63a.rum-13e.pek-91.bel-14e.fel-212.hel-48a)!", + result: { + word: "helsiński", + correct: 28, + position: 1, + incorrect: 23, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 52, + date: "22.04.2025", + }, + }, + { + date: "22.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGO04SO3MTLsVGauI2N50SZpNmLyQzMtg2Yz4SO2QTLlxmeuYjZ20SZpdnL0gTOtUGbr5SZzYTLhx2cuM2M20ybypnLy4SNy4yMuMzMuITMx0SarNHN4USNDVSazxWZohSI", + value: + "!(helsiński-112.33.3.25.2.zro-63c.sla-63e.kle-984.wie-6f6.zle-469.3ch-342.cie-97b.hel-379.48a)!", + result: { + word: "helsiński", + correct: 33, + position: 3, + incorrect: 25, + knownIncorrect: 2, + totalWords: 9, + totalLetters: 61, + date: "22.04.2025", + }, + }, + { + date: "22.04.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY4QTLsVGauYmN30CboNmLhVWMt0WZy5iM3ETLzVGZuMWYy0CajNjL0IjMtsWZw5CO50yb6pnLw4CMy4SMuEjMuITMx0SarNHN4USNDVSazxWZohSI", + value: + "!(helsiński-112.21.1.20.0.zzo-98.pek-224.3ch-2ac.des-172.rem-1ea.chl-76f.hel-48a)!", + result: { + word: "helsiński", + correct: 21, + position: 1, + incorrect: 20, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "22.04.2025", + }, + }, + { + date: "22.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGO00CblhmLhJTMtIWds5SNjdTLlJ3auQGOx0CczFmLw4COx4SMukTMuITMx0SarNHN4USNDVSazxWZohSI", + value: "!(helsiński-112.19.1.18.0.asp-18d.kre-7c5.lub-12a.hel-48a)!", + result: { + word: "helsiński", + correct: 19, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 38, + date: "22.04.2025", + }, + }, + { + date: "22.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGO00CblhmL3M2MtwWam5yMtQXdo5SYxETLjlGbuUjNx0iblpnLiVGNtUmey5iM30iavNnLyMzMx0yc5dnLw4SMy4iMuQzMuITMx0SarNHN4USNDVSazxWZohSI", + value: + "!(helsiński-112.34.2.21.0.wys-1332.soj-72.rze-4eb.zen-165.lic-11a.hut-3.fil-3c7.hel-48a)!", + result: { + word: "helsiński", + correct: 34, + position: 2, + incorrect: 21, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 57, + date: "22.04.2025", + }, + }, + { + date: "22.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGO00CblhmL1MDOtUWaz5SOz0iZ1RnL1MWMtg2Yz4SNhNTLrFmYuEDM10CblpnLkJWLrVGbuYDNl1CczdnLw4yMy4yMuUjMuITMx0SarNHN4USNDVSazxWZohSI", + value: + "!(helsiński-112.25.3.23.0.wsp-e46.lek-bd.zel-501.bak-3a5.3ch-1c5.tuf-39.sie-835.hel-48a)!", + result: { + word: "helsiński", + correct: 25, + position: 3, + incorrect: 23, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 51, + date: "22.04.2025", + }, + }, + { + date: "22.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGO00CblhmLiBzMtkGaj5yNykTLuFmYuEmNyETLlJHcuYTO20CbvpnLw4CNx4CMuAjMuITMx0SarNHN4USNDVSazxWZohSI", + value: + "!(helsiński-112.20.0.14.0.zol-696.pre-126a.ban-927.chi-30b.hel-48a)!", + result: { + word: "helsiński", + correct: 20, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "22.04.2025", + }, + }, + { + date: "22.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhhDNuYTO00CblhmL1UjMto2b35yM5gTYx0ieyBnLw4yNx4iMukTMuITMx0SarNHN4USNDVSazxWZohSI", + value: "!(helsiński-112.19.2.17.0.prz-1a893.woj-255.hel-496.48a)!", + result: { + word: "helsiński", + correct: 19, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 38, + date: "22.04.2025", + }, + }, + { + date: "22.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGO00CblhmL1YjMtIXZi5iZxITLll2duQTY00SYpBnLwkTLnFmauYWO00ybspnLw4COx4SMuYjMuITMx0SarNHN4USNDVSazxWZohSI", + value: + "!(helsiński-112.26.1.18.0.zlo-49f.jag-90.pia-4a4.wie-21f.ber-265.hel-48a)!", + result: { + word: "helsiński", + correct: 26, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 45, + date: "22.04.2025", + }, + }, + { + date: "22.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY4QTLsVGauEWM30CclJnLmFjMtUWa35iMzEzMt42br5CO50yb6pnLw4yNx4iMuYjMuITMx0SarNHN4USNDVSazxWZohSI", + value: + "!(helsiński-112.26.2.17.0.zzo-98.kon-3132.wie-21f.rep-71a.hel-48a)!", + result: { + word: "helsiński", + correct: 26, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 45, + date: "22.04.2025", + }, + }, + { + date: "22.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGO00CblhmL1MDOtUWaz5yNlFTLk9mauQmMx0CblZmL5MWNtUWai5SM50yalBnL5MWMtMXar5CZ5IjMtsWe35CO50yb6pnLw4yNy4CNuQzMuITMx0SarNHN4USNDVSazxWZohSI", + value: + "!(helsiński-112.34.4.27.0.zzo-98.wyk-229d.kis-1c9.pek-91.bie-5c9.fel-12d.jod-1e7.sie-835.hel-48a)!", + result: { + word: "helsiński", + correct: 34, + position: 4, + incorrect: 27, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 65, + date: "22.04.2025", + }, + }, + { + date: "22.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhhDNugDO00CblhmLjdTLzVmauQ2N50SZpNnL2MTLnVGdukTNkFTLll2duI2Mx0iY1pnLjFmY00CZvBnLw4iMy4yMucjMuITMx0SarNHN4USNDVSazxWZohSI", + value: + "!(helsiński-112.27.3.22.0.pod-4bac.zub-13b.wie-1d59.teg-36.sie-97d.jes-7c.hel-488.48a)!", + result: { + word: "helsiński", + correct: 27, + position: 3, + incorrect: 22, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 52, + date: "22.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/23-03-2025-flag-pl-diffle-difflepl-grywebowe-27-liter-w-4-slowach-large-green-ci" +] = [ + { + date: "23.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJTMtwWZm5SYk1SZsVmL3cDNtcWZs5iY0QTL0p3YuAjLyEjLx4CNx4iM40SYnxWZmhSI", + value: "!(felga-82.14.1.12.0.czt-44b.leg-477.ele-da.fel-12b)!", + result: { + word: "felga", + correct: 14, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "23.03.2025", + }, + }, + { + date: "23.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJTMtwWZm5SZ0ETLpxWZuMzNy0CboNmLwITLyVnbuADNyQTLz9GcuAjL2EjLx4iMx4iM40SYnxWZmhSI", + value: "!(felga-82.12.1.16.0.pos-4240.nur-20.chl-273.eli-14e.fel-12b)!", + result: { + word: "felga", + correct: 12, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "23.03.2025", + }, + }, + { + date: "23.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYyETLsVmZukDMx0CblJnLw4yNuAjL44iM40SYnxWZmhSI", + value: "!(felga-82.8.0.7.0.rel-109.fel-12b)!", + result: { + word: "felga", + correct: 8, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "23.03.2025", + }, + }, + { + date: "23.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYyETLsVmZuMTZx0CboNmLhVDOtQXZt5CZyQTLyB3cuAjL2EjLy4CMx4iM40SYnxWZmhSI", + value: "!(felga-82.10.2.16.0.spr-42d.met-85a.chl-1e3.fel-12b)!", + result: { + word: "felga", + correct: 10, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "23.03.2025", + }, + }, + { + date: "23.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJTMtwWZm5CMtYGbl5CMtwWZi5CMtoWZs5CMtMWZo5CNhVTL6JHdllmbuAjL3EjLy4yNx4iM40SYnxWZmhSI", + value: "!(felga-82.17.2.17.0.nietrz-5a4.hec-0.lej-0.bel-0.elf-0.fel-12b)!", + result: { + word: "felga", + correct: 17, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "23.03.2025", + }, + }, + { + date: "23.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYyETLsVmZuATLsVWbuIWNtMXZw5CNmFTLkl3duAjLyEjLx4SMx4iM40SYnxWZmhSI", + value: "!(felga-82.11.1.12.0.wyd-1f4.pes-5b.mel-0.fel-12b)!", + result: { + word: "felga", + correct: 11, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "23.03.2025", + }, + }, + { + date: "23.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYyETLs5CMtQXZm5CMtsWZi5CMtQ2b35SOmNTLlp3cuAjLyEjLw4yMx4iM40SYnxWZmhSI", + value: "!(felga-82.13.0.12.0.sze-3f9.wod-0.bek-0.fet-0.l-12b)!", + result: { + word: "felga", + correct: 13, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "23.03.2025", + }, + }, + { + date: "23.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpImMx0CblZmLw0yZl1mLjZTYtEmcn5CMuQjLx4CMx4iM40SYnxWZmhSI", + value: "!(felga-82.10.1.4.0.gra-a6c.meg-0.fel-12b)!", + result: { + word: "felga", + correct: 10, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 15, + date: "23.03.2025", + }, + }, + { + date: "23.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYyETLsVmZuATL0lHcuATLsVmYuATMtMXYt5iZiJTL1h2YuAjL5EjLw4SMx4iM40SYnxWZmhSI", + value: "!(felga-82.11.0.19.0.chu-2bf.mas-10.bel-0.pyt-0.fel-12b)!", + result: { + word: "felga", + correct: 11, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "23.03.2025", + }, + }, + { + date: "23.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJTMtwWZm5CMtwWZi5CMtcXZs5SYmFTL1xWauAjLxEjLx4iMx4iM40SYnxWZmhSI", + value: "!(felga-82.12.1.11.0.ilu-1fa.lew-0.bel-0.fel-12b)!", + result: { + word: "felga", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "23.03.2025", + }, + }, + { + date: "23.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYyETLsVmLjdTLlxmZuATNtQXZw5SN0ITL6N3duAjL3EjLx4iMx4iM40SYnxWZmhSI", + value: "!(felga-82.12.1.17.0.wsz-245.pet-50.fle-7c.el-12b)!", + result: { + word: "felga", + correct: 12, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "23.03.2025", + }, + }, + { + date: "23.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYyETLsVmZuQzYy0CbhdmL2EmYtUWat5CMuMTMuMjL54iM40SYnxWZmhSI", + value: "!(felga-82.9.3.13.0.mie-ba6.gal-2c4.fel-12b)!", + result: { + word: "felga", + correct: 9, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "23.03.2025", + }, + }, + { + date: "23.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYyETLsVmZuATLsVWbuATLjVGauYDZy0yd6NnL3ITLrVXZuAjL1EjLw4CNx4iM40SYnxWZmhSI", + value: "!(felga-82.14.0.15.0.euk-27.szw-2d6.hec-0.mel-0.fel-12b)!", + result: { + word: "felga", + correct: 14, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "23.03.2025", + }, + }, + { + date: "23.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJTMtwWZm5CMtwWZi5yY5ITL0VWbuEWMyUTL69GcuAjLxEjLy4SMx4iM40SYnxWZmhSI", + value: "!(felga-82.11.2.11.0.poz-521a.met-29c.bel-0.fel-12b)!", + result: { + word: "felga", + correct: 11, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "23.03.2025", + }, + }, + { + date: "23.03.2025", + nick: "Swbd", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpImMx0CblZmLhRWLlxWZucDOx0yZlxmL4EWNtE2dr5iN4MTL1xGcuEjL0EjLy4CNx4iM40SYnxWZmhSI", + value: "!(felga-82.14.2.14.1.plu-386.kwa-5a8.leg-187.ele-da.fel-12b)!", + result: { + word: "felga", + correct: 14, + position: 2, + incorrect: 14, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 30, + date: "23.03.2025", + }, + }, + { + date: "23.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJTMtwWZm5SZzETL3FGbuMTO4EWMtoncw5CMuMTMuIjL54iM40SYnxWZmhSI", + value: "!(felga-82.9.2.13.0.prz-1a893.law-13e.fel-12b)!", + result: { + word: "felga", + correct: 9, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "23.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/23-04-2025-diffle-difflepl-grywebowe-23-litery-w-3-slowach-large-green-circle" +] = [ + { + date: "23.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWYuMWOx0ydoNmLzQzMx0Cb5dnLw4yNuIjL0EjLzETMtcDOlQzQlkGbhdHajhSI", + value: "!(chwalić-113.14.2.7.0.wyl-1343.chw-19c.ac)!", + result: { + word: "chwalić", + correct: 14, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "23.04.2025", + }, + }, + { + date: "23.04.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYh1ydoNmLmFWMtE2d15COxMTLsF2dukDZ10CbhBnLmVTLhlmYugTOt8me65CMuMTMuAjL2IjLzETMtcDOlQzQlkGbhdHajhSI", + value: + "!(chwalić-113.26.0.13.0.zzo-98.bia-5f.pal-5d9.wal-318.uwa-1af.chw-ac)!", + result: { + word: "chwalić", + correct: 26, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "23.04.2025", + }, + }, + { + date: "23.04.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYh1ydoNmLmFWMtE2d15CNx0iYhdnL2UzNz0ieyBnLw4SOuEjL5EjLzETMtcDOlQzQlkGbhdHajhSI", + value: "!(chwalić-113.19.1.9.0.prz-3756.wab-14.uwa-1af.chw-ac)!", + result: { + word: "chwalić", + correct: 19, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "23.04.2025", + }, + }, + { + date: "23.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYh1yduYmYy0SdoNmLw4SNuEjLxEjLzETMtcDOlQzQlkGbhdHajhSI", + value: "!(chwalić-113.11.1.5.0.chu-2bf.w-ac)!", + result: { + word: "chwalić", + correct: 11, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "23.04.2025", + }, + }, + { + date: "23.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYh1ydoNmLmFWMtE2d15COxMTLsF2duMmYtcXYi5SYwkTMt42bw5CMuMTMuMjLxIjLzETMtcDOlQzQlkGbhdHajhSI", + value: "!(chwalić-113.21.3.13.0.pon-190a.baw-bc.wal-318.uwa-1af.chw-ac)!", + result: { + word: "chwalić", + correct: 21, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "23.04.2025", + }, + }, + { + date: "23.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWYtcHaj5CZ4ETLwNXYuAjL54SMukjLzETMtcDOlQzQlkGbhdHajhSI", + value: "!(chwalić-113.9.1.9.0.asp-18d.chw-ac)!", + result: { + word: "chwalić", + correct: 9, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "23.04.2025", + }, + }, + { + date: "23.04.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWYtcHaj5CZ5UTLpd3cucTZt8me65CMuITMuEjLxEjLzETMtcDOlQzQlkGbhdHajhSI", + value: "!(chwalić-113.11.1.12.0.zzo-e7.swi-59d.chw-ac)!", + result: { + word: "chwalić", + correct: 11, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "23.04.2025", + }, + }, + { + date: "23.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYh1ydoNmLmFWMtE2d15yYz0CbhtmL2QTZtA3c35CMuQTMuAjL3EjLzETMtcDOlQzQlkGbhdHajhSI", + value: "!(chwalić-113.17.0.14.0.wsp-e46.kal-3c.uwa-1af.chw-ac)!", + result: { + word: "chwalić", + correct: 17, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "23.04.2025", + }, + }, + { + date: "23.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWYtcHaj5SN5ETL3FmbugTMz0CbhdnL1EWLhJ3ZuITYjFTL3FmL2kjNtw2b65CMuQTMuEjLyIjLzETMtcDOlQzQlkGbhdHajhSI", + value: + "!(chwalić-113.22.1.14.0.zol-696.aw-1ca2.gra-a5.wal-318.naw-195.chw-ac)!", + result: { + word: "chwalić", + correct: 22, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "23.04.2025", + }, + }, + { + date: "23.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYh1ydoNmLkJWLjVGZuYWYx0SY3VnLkJmMtcXY65iMzMTMtMXe35CMuATMuAjLyIjLzETMtcDOlQzQlkGbhdHajhSI", + value: "!(chwalić-113.22.0.10.0.wys-1332.zaw-2bd.uwa-1af.dec-bd.chw-ac)!", + result: { + word: "chwalić", + correct: 22, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "23.04.2025", + }, + }, + { + date: "23.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYh1ydoNmLzkDOhFTL6JHcuAjL44yMukjLzETMtcDOlQzQlkGbhdHajhSI", + value: "!(chwalić-113.9.3.8.0.prz-1a893.chw-ac)!", + result: { + word: "chwalić", + correct: 9, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "23.04.2025", + }, + }, + { + date: "23.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYh1ydoNmL1kTMtcXYu5iZhFTLhdXdugTMz0CbhdnL5QWNtwWYw5CNhJTLiVmLmlDNt8Gb65CMuITMuAjL5IjLzETMtcDOlQzQlkGbhdHajhSI", + value: + "!(chwalić-113.29.0.12.0.zlo-49f.eb-2a4.pal-5d9.wal-318.uwa-1af.naw-195.chw-ac)!", + result: { + word: "chwalić", + correct: 29, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "23.04.2025", + }, + }, + { + date: "23.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYh1ydoNmL4MDOtQWe35iZ0MTLp1WdugjZ1ITLz9GcugTOt8me65CMuEjMuAjL1EjLzETMtcDOlQzQlkGbhdHajhSI", + value: "!(chwalić-113.15.0.21.0.zzo-98.pos-25f8.umi-34f.wyd-838.chw-ac)!", + result: { + word: "chwalić", + correct: 15, + position: 0, + incorrect: 21, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "23.04.2025", + }, + }, + { + date: "23.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYh1ydoNmLmFWMtE2d15COxMTLsF2duIGOy0yZvxmLhZWLhd3cugTOt8me65CMuQTMuEjL0IjLzETMtcDOlQzQlkGbhdHajhSI", + value: + "!(chwalić-113.24.1.14.0.zzo-98.swa-fa.log-28b.wal-318.uwa-1af.chw-ac)!", + result: { + word: "chwalić", + correct: 24, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "23.04.2025", + }, + }, + { + date: "23.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjFWL3h2YuMWYiRTLk9GcuAjL34CMukjLzETMtcDOlQzQlkGbhdHajhSI", + value: "!(chwalić-113.9.0.7.0.pod-4bac.chw-ac)!", + result: { + word: "chwalić", + correct: 9, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "23.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/24-04-2025-flag-pl-diffle-difflepl-grywebowe-46-liter-w-8-slowach-large-green-ci" +] = [ + { + date: "24.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkRmMtEGbn5iMlFTLoN2MuATLi1WYuADZx0CbrNnL3UmMtkncm5CMtIXds5CMtQWdy5yMiRTLvJHcuAjLwIjLy4CNy4CNxETLhJXd6FGbnhSI", + value: + "!(glazura-114.24.2.20.0.pro-4b3.rud-0.lur-0.fry-2e7.skl-1d0.amb-0.3ch-1e2.gla-2dd)!", + result: { + word: "glazura", + correct: 24, + position: 2, + incorrect: 20, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 46, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZkJTLhx2ZuMzN20ic1JmL5YWOtM3br5CMucjLy4iMx4CNxETLhJXd6FGbnhSI", + value: "!(glazura-114.12.2.7.0.kos-9f9.bur-673.gla-2dd)!", + result: { + word: "glazura", + correct: 12, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkRmMtEGbn5COwQWLjp3cuIWLiVmeuEGZyITLr9GcuAjLzEjLx4iNx4CNxETLhJXd6FGbnhSI", + value: "!(glazura-114.16.1.13.0.pok-22da.zeb-b.szc-d08.gla-2dd)!", + result: { + word: "glazura", + correct: 16, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZkJTLhx2ZuATM00Sd6NnLiNjZtonc05CMtAXd65iZiJTL1h2YuAjLzEjLy4COx4CNxETLhJXd6FGbnhSI", + value: "!(glazura-114.18.2.13.0.chu-2bf.zup-0.trz-f3b.szu-410.gla-2dd)!", + result: { + word: "glazura", + correct: 18, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkRmMtEGbuYzNz0iehdmL4EWYtI3Z65CZyQTLyB3cuAjLzEjLy4SOx4CNxETLhJXd6FGbnhSI", + value: "!(glazura-114.19.2.13.0.spr-42d.zgr-aa8.gaz-376.la-2dd)!", + result: { + word: "glazura", + correct: 19, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQGZy0SYs5CO3ETLs5yMj1iYh5CN1ETLhdnLlFTLt9mLjZTYtEmcn5CMukjLw4iNy4CNxETLhJXd6FGbnhSI", + value: "!(glazura-114.26.0.9.0.gra-a6c.om-1e.wa-154.ab-c3.l-178.la-2dd)!", + result: { + word: "glazura", + correct: 26, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQGZy0SYsdmL1QGNtEmez5yM54yM50CZ6JmLmFDZx0ichBnLlVTLhtWduIjL3EjL04iMy4CNxETLhJXd6FGbnhSI", + value: + "!(glazura-114.22.4.17.2.uka-5e.par-1d1f.bzd-93.93.sza-4d5.gla-2dd)!", + result: { + word: "glazura", + correct: 22, + position: 4, + incorrect: 17, + knownIncorrect: 2, + totalWords: 6, + totalLetters: 43, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZkJTLhx2ZuUjMz0ieh1mL5UmMtIXY65CNhVTL6JHdllmbuAjL0EjLz4yNx4CNxETLhJXd6FGbnhSI", + value: "!(glazura-114.17.3.14.0.nietrz-5a4.zar-2e9.maz-325.gla-2dd)!", + result: { + word: "glazura", + correct: 17, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZkJTLhxmL2UWL6F2ZuEDOx0yYhtmL5EWLzl3duAjLwEjLx4yNx4CNxETLhJXd6FGbnhSI", + value: "!(glazura-114.17.1.10.0.wys-a9.kac-181.gaz-e6.la-2dd)!", + result: { + word: "glazura", + correct: 17, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkRmMtEGbn5CM5MTL6FWbucTOtoXYw5CNmFTLkl3duAjLxEjLx4yNx4CNxETLhJXd6FGbnhSI", + value: "!(glazura-114.17.1.11.0.wyd-1f4.paz-97.maz-390.gla-2dd)!", + result: { + word: "glazura", + correct: 17, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQGZy0SYsdmLwYTL6FGbuIjMh1iez9mLzkDOhFTL6JHcuAjLyEjLy4SOx4CNxETLhJXd6FGbnhSI", + value: "!(glazura-114.19.2.12.0.prz-1a893.osz-a22.laz-60.gla-2dd)!", + result: { + word: "glazura", + correct: 19, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQGZy0SYsdmLmhTNtInYv5SYxczMtoncw5CMukjLz4iMx4CNxETLhJXd6FGbnhSI", + value: "!(glazura-114.12.3.9.0.prz-371a.obr-58f.gla-2dd)!", + result: { + word: "glazura", + correct: 12, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQGZy0SYsdmLwYTL6FGbuIWLyVXbucjMtsWdl5CMugjLy4COx4CNxETLhJXd6FGbnhSI", + value: "!(glazura-114.18.2.8.0.euk-27.mur-b.laz-60.gla-2dd)!", + result: { + word: "glazura", + correct: 18, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQGZy0SYsdmL5YzMt0WZk5CMukjLx4CMx4CNxETLhJXd6FGbnhSI", + value: "!(glazura-114.10.1.9.0.dem-369.gla-2dd)!", + result: { + word: "glazura", + correct: 10, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkRmMtEGbn5SNiRTNx0ieyBnLhRTMtUHbi5iNhJWLllWbuAjL0EjL14CNx4CNxETLhJXd6FGbnhSI", + value: "!(glazura-114.14.5.14.0.mie-ba6.blu-14a.prz-154b5.gla-2dd)!", + result: { + word: "glazura", + correct: 14, + position: 5, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQGZy0SYsdmLldTL6FmYuUjNkFTLyF2auAjLwEjLz4CNx4CNxETLhJXd6FGbnhSI", + value: "!(glazura-114.14.3.10.0.kar-1d65.baz-7e.gla-2dd)!", + result: { + word: "glazura", + correct: 14, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "24.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/26-04-2025-diffle-difflepl-grywebowe-21-liter-w-3-slowach-large-green-circle-8-l" +] = [ + { + date: "26.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMhFTLiVHbuYmYtUHbw5yM0MTMtwWe35CMuMTMuAjL44iNxETL3gTJ0MUJpJWdshSI", + value: "!(lubić-116.8.0.13.0.wyl-1343.plu-bf.lub-1a0)!", + result: { + word: "lubić", + correct: 8, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "26.04.2025", + }, + }, + { + date: "26.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATYx0iY1xmL2UTLpJWduQmM40iY5dnL0MWMtEWai5CNlZTL6JHcuAjL1EjLw4iNx4iNxETL3gTJ0MUJpJWdshSI", + value: "!(lubić-116.16.0.15.0.prz-6e4.bia-1c4.wyb-82d.ubi-56.lub-1a0)!", + result: { + word: "lubić", + correct: 16, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "26.04.2025", + }, + }, + { + date: "26.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMhFTLiVnL2QTNtMXas5SO4IGNtQ2bw5CMuETMuAjL54iNxETL3gTJ0MUJpJWdshSI", + value: "!(lubić-116.9.0.11.0.pod-4b89.lis-546.ub-1a0)!", + result: { + word: "lubić", + correct: 9, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "26.04.2025", + }, + }, + { + date: "26.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMhFTLiVHbuETLpxGduMWZt0Wek5CZ4ETLwNXYuAjL1EjLw4SMx4iNxETL3gTJ0MUJpJWdshSI", + value: "!(lubić-116.11.0.15.0.asp-18d.dym-ec.tli-1.lub-1a0)!", + result: { + word: "lubić", + correct: 11, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "26.04.2025", + }, + }, + { + date: "26.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwEWMtIWds5yY10iapJmL2IGNtUWat5iN0UWLwN3duAjLxIjLw4SMx4iNxETL3gTJ0MUJpJWdshSI", + value: "!(lubić-116.11.0.21.0.wsp-e46.mie-4b6.bij-5c.lub-1a0)!", + result: { + word: "lubić", + correct: 11, + position: 0, + incorrect: 21, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "26.04.2025", + }, + }, + { + date: "26.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMhFTLiVHbuQjNtIWdn5iN10SaiVnL2QjMtQWdi5CZ2QTMtEmc05iZ2YTLjFWbuIzMzETLzl3duAjL2EjLx4iMy4iNxETL3gTJ0MUJpJWdshSI", + value: + "!(lubić-116.22.1.16.0.wys-1332.mac-66f.tra-146d.bud-246.ubi-56.gub-64.lub-1a0)!", + result: { + word: "lubić", + correct: 22, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "26.04.2025", + }, + }, + { + date: "26.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwEWMtIWds5COwITLpJWduMWYiRTLk9GcuAjLwEjLw4CMx4iNxETL3gTJ0MUJpJWdshSI", + value: "!(lubić-116.10.0.10.0.pod-4bac.ubi-208.lub-1a0)!", + result: { + word: "lubić", + correct: 10, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "26.04.2025", + }, + }, + { + date: "26.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwEWMtIWds5CZ20yc1tmL0ATMtAXds5iZiJTL1h2YuAjLyEjLw4yMx4iNxETL3gTJ0MUJpJWdshSI", + value: "!(lubić-116.13.0.12.0.chu-2bf.lup-104.kus-6d.lub-1a0)!", + result: { + word: "lubić", + correct: 13, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "26.04.2025", + }, + }, + { + date: "26.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATYx0iY1xmL2UTLpJWduETMx0iYvRmLmVzMy0yc5dnLmRzMx0SZpBnL4kTLvpneuAjLwIjLw4yNx4iNxETL3gTJ0MUJpJWdshSI", + value: + "!(lubić-116.17.0.20.0.zzo-98.pie-134f.wys-235f.dob-111.ubi-56.lub-1a0)!", + result: { + word: "lubić", + correct: 17, + position: 0, + incorrect: 20, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "26.04.2025", + }, + }, + { + date: "26.04.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATYx0iY1xmLlFTLslXbuQWM3MTL6JHcuAjLyEjLw4CMx4iNxETL3gTJ0MUJpJWdshSI", + value: "!(lubić-116.10.0.12.0.prz-371d.myl-1e.lub-1a0)!", + result: { + word: "lubić", + correct: 10, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "26.04.2025", + }, + }, + { + date: "26.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwEWMtIWds5SN1ITLq92duMTO4EWMtoncw5CMukTMuEjL44iNxETL3gTJ0MUJpJWdshSI", + value: "!(lubić-116.8.1.19.0.prz-1a893.woj-255.lub-1a0)!", + result: { + word: "lubić", + correct: 8, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "26.04.2025", + }, + }, + { + date: "26.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwEWMtIWds5CZygTLil3dugDOy0SZpJmLmlDNt8Gb65CMukjLw4iMx4iNxETL3gTJ0MUJpJWdshSI", + value: "!(lubić-116.12.0.9.0.zlo-49f.bie-288.wyb-82d.lub-1a0)!", + result: { + word: "lubić", + correct: 12, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "26.04.2025", + }, + }, + { + date: "26.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATYx0iY1xmL3kTMtwWdi5SZkFTL1JHdugTY00yc1BnLlVTLhtWduAjL3EjLy4iNx4iNxETL3gTJ0MUJpJWdshSI", + value: "!(lubić-116.16.2.17.0.uka-5e.pus-4a8.tru-1de.bul-197.lub-1a0)!", + result: { + word: "lubić", + correct: 16, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "26.04.2025", + }, + }, + { + date: "26.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMhFTLiVHbuQjNtIWdn5yYl1Sb5RmLxgzMt8Gcz5CO00SYydnL4kTLvpneuAjL5EjLw4SNx4iNxETL3gTJ0MUJpJWdshSI", + value: + "!(lubić-116.15.0.19.0.zzo-98.wra-48.spo-381.dym-ec.gub-64.lub-1a0)!", + result: { + word: "lubić", + correct: 15, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "26.04.2025", + }, + }, + { + date: "26.04.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMhFTLiVnL2QTNtMXas5iNhJWLllWbuAjLzEjLw4CMx4iNxETL3gTJ0MUJpJWdshSI", + value: "!(lubić-116.10.0.13.0.mie-ba6.lis-546.ub-1a0)!", + result: { + word: "lubić", + correct: 10, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "26.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/27-03-2025-diffle-difflepl-grywebowe-32-litery-w-4-slowach-large-green-circle" +] = [ + { + date: "27.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZi1SYn5yM3ITL51meuE2MhJWMtoncw5yM0MTMtwWe35CMuATMuIjLwIjL2gTL3gTJ0MUJhdXekF2Z6hSI", + value: "!(zgadywać-86.20.2.10.0.wyl-1343.prz-1ba3a.zmy-273.ga-bf)!", + result: { + word: "zgadywać", + correct: 20, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "27.03.2025", + }, + }, + { + date: "27.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJWLhdmLzIWL6VnL0gzMtkGbuMzNy0Set5CZiFTL5JmLmVjMtknc65iYhhTMtsWe35CMuMTMuIjL0MjL2gTL3gTJ0MUJhdXekF2Z6hSI", + value: + "!(zgadywać-86.34.2.13.0.wyk-18ab.zry-25f.by-1bd.my-273.li-384.uz-b3.ga-bf)!", + result: { + word: "zgadywać", + correct: 34, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 49, + date: "27.03.2025", + }, + }, + { + date: "27.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJWLhdmL0gTMtEGZuADOz0Sa3pnL2QTZtA3c35CMuITMuMjLwIjL2gTL3gTJ0MUJhdXekF2Z6hSI", + value: "!(zgadywać-86.20.3.12.0.wsp-e46.zwi-380.da-184.ga-bf)!", + result: { + word: "zgadywać", + correct: 20, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "27.03.2025", + }, + }, + { + date: "27.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZi1SYnpnLkFzNz0ieyBnLw4iNuEjLzEjL2gTL3gTJ0MUJhdXekF2Z6hSI", + value: "!(zgadywać-86.13.1.6.0.prz-371d.zga-bf)!", + result: { + word: "zgadywać", + correct: 13, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "27.03.2025", + }, + }, + { + date: "27.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJWLhdmL0gTMtEGZuMzMj1iYhpnLkhTMtA3ch5CMuITMuIjL5EjL2gTL3gTJ0MUJhdXekF2Z6hSI", + value: "!(zgadywać-86.19.2.12.0.asp-18d.zab-c33.da-184.ga-bf)!", + result: { + word: "zgadywać", + correct: 19, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "27.03.2025", + }, + }, + { + date: "27.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZi1SYnpnLmVDOz0Cc5dnLw4iNuIjLxEjL2gTL3gTJ0MUJhdXekF2Z6hSI", + value: "!(zgadywać-86.11.2.6.0.wyp-385f.zga-bf)!", + result: { + word: "zgadywać", + correct: 11, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "27.03.2025", + }, + }, + { + date: "27.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZi1SYnpnL4E2MtIXYuEjYx0SZpdmLw4yNuAjL2EjL2gTL3gTJ0MUJhdXekF2Z6hSI", + value: "!(zgadywać-86.16.0.7.0.gie-1b1.ar-3a8.zga-bf)!", + result: { + word: "zgadywać", + correct: 16, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "27.03.2025", + }, + }, + { + date: "27.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJWLhdmLmdTYtoXYuczYx0Sez5yM3ITL51mLkJWMtknYuITZ20SY3pnLmJmMtUHaj5CMuUTMuIjL1MjL2gTL3gTJ0MUJhdXekF2Z6hSI", + value: + "!(zgadywać-86.35.2.15.0.chu-2bf.zwa-6e2.by-1bd.my-273.sy-1c7.az-a7f.ga-bf)!", + result: { + word: "zgadywać", + correct: 35, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 52, + date: "27.03.2025", + }, + }, + { + date: "27.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJWLhdmL0gTMtEGZukzYh1SYt5CMkdTMtAXYugTOt8me65CMuETMuEjLzIjL2gTL3gTJ0MUJhdXekF2Z6hSI", + value: "!(zgadywać-86.23.1.11.0.zzo-98.ap-17d0.ma-ac9.da-184.ga-bf)!", + result: { + word: "zgadywać", + correct: 23, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "27.03.2025", + }, + }, + { + date: "27.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmYtE2ZuYWNy0SeypnLyMzMx0yc5dnLw4iNuAjL2EjL2gTL3gTJ0MUJhdXekF2Z6hSI", + value: "!(zgadywać-86.16.0.6.0.wys-1332.zry-25f.ga-bf)!", + result: { + word: "zgadywać", + correct: 16, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "27.03.2025", + }, + }, + { + date: "27.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmYtEmLhFmNtI3ZuYWO00ybspnLw4CNuAjL2EjL2gTL3gTJ0MUJhdXekF2Z6hSI", + value: "!(zgadywać-86.16.0.4.0.zlo-49f.gr-6aa.a-bf)!", + result: { + word: "zgadywać", + correct: 16, + position: 0, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "27.03.2025", + }, + }, + { + date: "27.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmYtE2ZucTMi1SYt5iZ3EWL6FmeuMTO4EWMtoncw5CMuMTMuAjLzIjL2gTL3gTJ0MUJhdXekF2Z6hSI", + value: "!(zgadywać-86.23.0.13.0.prz-1a893.zaz-a7f.ma-b17.ga-bf)!", + result: { + word: "zgadywać", + correct: 23, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "27.03.2025", + }, + }, + { + date: "27.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJWLhdmL4UmMtQmLwIjYtcXYugTOt8me65CMuATMuAjLxIjL2gTL3gTJ0MUJhdXekF2Z6hSI", + value: "!(zgadywać-86.21.0.10.0.zzo-98.aw-b20.d-2e8.ga-bf)!", + result: { + word: "zgadywać", + correct: 21, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "27.03.2025", + }, + }, + { + date: "27.03.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZi1SYn5SZx0iYv5SNjJWMtAXYucTZt8me65CMucTMuAjL2EjL2gTL3gTJ0MUJhdXekF2Z6hSI", + value: "!(zgadywać-86.16.0.17.0.zzo-e7.ap-1bc5.ob-1e.ga-bf)!", + result: { + word: "zgadywać", + correct: 16, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "27.03.2025", + }, + }, + { + date: "27.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJWLhdmL0gTMtcmLyE2Yx0ydhpnL2EmYtUWat5CMuITMuEjLzIjL2gTL3gTJ0MUJhdXekF2Z6hSI", + value: "!(zgadywać-86.23.1.12.0.mie-ba6.zaw-1ca2.g-184.ga-bf)!", + result: { + word: "zgadywać", + correct: 23, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "27.03.2025", + }, + }, + { + date: "27.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmYtE2ZugTZy0CZhpnLzQjY00CZvBnLw4iNuEjL3EjL2gTL3gTJ0MUJhdXekF2Z6hSI", + value: "!(zgadywać-86.17.1.6.0.pod-4b43.zad-2e8.ga-bf)!", + result: { + word: "zgadywać", + correct: 17, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "27.03.2025", + }, + }, + { + date: "27.03.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJWLhdmeuMWN10SZpBnLw4yNuEjLzEjL2gTL3gTJ0MUJhdXekF2Z6hSI", + value: "!(zgadywać-86.13.1.7.0.pie-55c.zga-bf)!", + result: { + word: "zgadywać", + correct: 13, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "27.03.2025", + }, + }, + { + date: "27.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJWLhdmL4YmMtk3duMTNx0Se65yM3ITL51mLkJWMtknYuMGOtE2d65CM3MTLhx2duEjNtcnc15CMuMTMuEjL1MjL2gTL3gTJ0MUJhdXekF2Z6hSI", + value: + "!(zgadywać-86.35.1.13.0.urw-61.wla-370.zwa-8c.by-1bd.my-273.zy-153.wy-2f8.ga-bf)!", + result: { + word: "zgadywać", + correct: 35, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 49, + date: "27.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/28-03-2025-diffle-difflepl-grywebowe-28-liter-w-5-slowach-large-green-circle" +] = [ + { + date: "28.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGMx0SYyJmLyImMtEmcn5CM1MWLlJHcugDM00CdlRmLzQzMx0Cb5dnLw4yNx4CMuETMucDOtcDOlQzQlEmcihSI", + value: "!(brać-87.11.0.17.0.wyl-1343.det-408.pre-c50.gra-2b2.bra-10a)!", + result: { + word: "brać", + correct: 11, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "28.03.2025", + }, + }, + { + date: "28.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGMx0SYyJmLyImMtEmcn5SMyETLtFmcuEmMy0ichRmLwkTMx0ychpnLw4CNx4SMuETMucDOtcDOlQzQlEmcihSI", + value: "!(brać-87.11.1.14.0.zas-1190.dar-22a.ram-121.gra-2b2.bra-10a)!", + result: { + word: "brać", + correct: 11, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "28.03.2025", + }, + }, + { + date: "28.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhBTMtEmci5CMtInY15iY40icn9mL4cDOx0ichpnLxEjM40ieyBnLw4COx4CMuUTMucDOtcDOlQzQlEmcihSI", + value: "!(brać-87.15.0.18.0.prz-8211.zar-1878.ogr-8b.ubr-0.bra-10a)!", + result: { + word: "brać", + correct: 15, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "28.03.2025", + }, + }, + { + date: "28.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYwETLhJnYuYmYtI3Z15iN0UWLwN3duAjLzEjLw4SOucDOtcDOlQzQlEmcihSI", + value: "!(brać-87.9.0.13.0.wsp-e46.ugr-bf.bra-10a)!", + result: { + word: "brać", + correct: 9, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "28.03.2025", + }, + }, + { + date: "28.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYwETLhJnYugzMtEmcz5SO2QTLyVHduUmNt02bw5CO50yb6pnLw4SOx4CMuMTMucDOtcDOlQzQlEmcihSI", + value: "!(brać-87.13.0.19.0.zzo-98.pom-6e.tur-469.sra-38.bra-10a)!", + result: { + word: "brać", + correct: 13, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "28.03.2025", + }, + }, + { + date: "28.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYwETLhJnYuIjYy0SYydmL1UWLyF2auQWL0l2duITLhRWduQGOx0CczFmLw4COx4CMuYTMucDOtcDOlQzQlEmcihSI", + value: "!(brać-87.16.0.18.0.asp-18d.uda-2.wit-d.kar-e5.gra-2b2.bra-10a)!", + result: { + word: "brać", + correct: 16, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "28.03.2025", + }, + }, + { + date: "28.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYwETLhJnLy0yd5JmLwEWMtIWds5CNkRjMtM3bw5CO50yb6pnLw4iNx4CMuITMucDOtcDOlQzQlEmcihSI", + value: "!(brać-87.12.0.16.0.zzo-98.pos-24d4.lub-1a0.byw-2.ra-10a)!", + result: { + word: "brać", + correct: 12, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "28.03.2025", + }, + }, + { + date: "28.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhBTMtEmci5SYjRTMtEmc05iZiJTL1h2YuAjLyEjLw4yNucDOtcDOlQzQlEmcihSI", + value: "!(brać-87.7.0.12.0.chu-2bf.tra-14ca.bra-10a)!", + result: { + word: "brać", + correct: 7, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "28.03.2025", + }, + }, + { + date: "28.03.2025", + nick: "Szuuz_Ekleer", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGMx0SYyJmL1IWMtEmcw5COz0SYyNnLmRTL0V3auAjL54CMuITMucDOtcDOlQzQlEmcihSI", + value: "!(brać-87.12.0.9.0.kut-4f.sra-38.pra-1b5.bra-10a)!", + result: { + word: "brać", + correct: 12, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "28.03.2025", + }, + }, + { + date: "28.03.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhBTMtEmci5iMiJTLhJ3ZuQTZt0Wey5CNyATMtEGcz5yNl1yb6pnLw4COx4CMuITMucDOtcDOlQzQlEmcihSI", + value: "!(brać-87.12.0.18.0.zzo-e7.spa-1024.rym-e4.gra-2b2.bra-10a)!", + result: { + word: "brać", + correct: 12, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "28.03.2025", + }, + }, + { + date: "28.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhBTMtEmci5yYyYWMtIWY65SOiNTLql3duAjLxEjLx4iNucDOtcDOlQzQlEmcihSI", + value: "!(brać-87.6.1.11.0.wyj-3b9.zab-1f2c.bra-10a)!", + result: { + word: "brać", + correct: 6, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "28.03.2025", + }, + }, + { + date: "28.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYwETLhJnYuQTYy0iYlpnLyImMtEmcn5SNiFTLhJHcugjN50SYytmLyMzMx0yc5dnLw4yMx4CMugTMucDOtcDOlQzQlEmcihSI", + value: + "!(brać-87.18.0.13.0.wys-1332.kra-968.pra-1b5.gra-2b2.zeb-2a4.bra-10a)!", + result: { + word: "brać", + correct: 18, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "28.03.2025", + }, + }, + { + date: "28.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGMx0SYyJmLiJTLhJ3buIjYy0SYydmLkFzNz0ieyBnLw4SMx4CMuMTMucDOtcDOlQzQlEmcihSI", + value: "!(brać-87.13.0.11.0.prz-371d.gra-2b2.ora-2b.bra-10a)!", + result: { + word: "brać", + correct: 13, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "28.03.2025", + }, + }, + { + date: "28.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYwETLhJnYuIjYy0SYydmL1UjMto2b35yM5gTYx0ieyBnLw4SMy4CMuATMucDOtcDOlQzQlEmcihSI", + value: "!(brać-87.10.0.21.0.prz-1a893.woj-255.gra-2b2.bra-10a)!", + result: { + word: "brać", + correct: 10, + position: 0, + incorrect: 21, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "28.03.2025", + }, + }, + { + date: "28.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYwETLhJnYuQjMtIXYq5SNiFTLhJHcuIjYy0SYydmL0IWNtUmc05CO50yb6pnLw4iNx4CMucTMucDOtcDOlQzQlEmcihSI", + value: + "!(brać-87.17.0.16.0.zzo-98.tre-5b4.gra-2b2.pra-1b5.jar-24.bra-10a)!", + result: { + word: "brać", + correct: 17, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "28.03.2025", + }, + }, + { + date: "28.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGMx0SYyJmLzEGZtMXYw5iNhJWLllWbuAjL1EjLw4yNucDOtcDOlQzQlEmcihSI", + value: "!(brać-87.7.0.15.0.mie-ba6.pas-da3.bra-10a)!", + result: { + word: "brać", + correct: 7, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "28.03.2025", + }, + }, + { + date: "28.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYwETLhJnYuMWLl12ZuUjYx0SYyBnLwcjMtEmc05CZhVTLyt2cuE2MwETLyl3duYWO00ybspnLw4SOx4CMuAjMucDOtcDOlQzQlEmcihSI", + value: + "!(brać-87.20.0.19.0.zlo-49f.wyr-103a.skr-5ad.tra-270.pra-1b5.gme-c.bra-10a)!", + result: { + word: "brać", + correct: 20, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "28.03.2025", + }, + }, + { + date: "28.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYwETLhJnYuIjYy0SYydmLz0Cb1tmLiFzMy0yc5dnLzQjY00CZvBnLw4COx4CMuMTMucDOtcDOlQzQlEmcihSI", + value: "!(brać-87.13.0.18.0.pod-4b43.wys-231b.kul-3.gra-2b2.bra-10a)!", + result: { + word: "brać", + correct: 13, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "28.03.2025", + }, + }, + { + date: "28.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGMx0SYyJmLlNTLoN2MuITL3lnLz0iahJmL5UTLoN2MuATYx0iY1xmLmZTY10ievBnLw4yNx4CMucTMucDOtcDOlQzQlEmcihSI", + value: + "!(brać-87.17.0.17.0.poz-5a6f.lub-1a0.3ch-59.baj-3.yw-2.3ch-3e.bra-10a)!", + result: { + word: "brać", + correct: 17, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 34, + date: "28.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/31-03-2025-diffle-difflepl-grywebowe-22-litery-w-3-slowach-large-green-circle" +] = [ + { + date: "31.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMzUWLh5CO2QTL1hmLzEGOtUmej5CMuYjLy4CNx4CM50Sbv9mc0FGajhSI", + value: "!(chatroom-90.14.2.6.0.cze-8a3.hu-468.a-e33)!", + result: { + word: "chatroom", + correct: 14, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "31.03.2025", + }, + }, + { + date: "31.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzMTZtEGaj5CNwETLjF2duETOtUGbw5CMukjLx4yMx4CM50Sbv9mc0FGajhSI", + value: "!(chatroom-90.13.1.9.0.ple-91.wac-104.cha-e33)!", + result: { + word: "chatroom", + correct: 13, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "31.03.2025", + }, + }, + { + date: "31.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMzMl1SYuUGZx0icoNmLycjNx0SYyRnL5Q2Mt8mcn5yYyETLlpncuAjLzEjL14iMy4CM50Sbv9mc0FGajhSI", + value: "!(chatroom-90.22.5.13.0.rze-12c.gro-3d9.tra-1672.chr-1de.a-e33)!", + result: { + word: "chatroom", + correct: 22, + position: 5, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "31.03.2025", + }, + }, + { + date: "31.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMzUWLhh2YuUTY20Cdh1mL0cjMtIXe05CZyQTLyB3cuAjLzEjLz4yNx4CM50Sbv9mc0FGajhSI", + value: "!(chatroom-90.17.3.13.0.spr-42d.tyr-274.mat-6a5.cha-e33)!", + result: { + word: "chatroom", + correct: 17, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "31.03.2025", + }, + }, + { + date: "31.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMzUWLhh2YuUTM10Cdh1mL0QTMts2bs5iZhFTL0FmcuEWM3MTL6JHcuAjLzEjL14CMy4CM50Sbv9mc0FGajhSI", + value: "!(chatroom-90.20.5.13.0.prz-371a.rat-1af.lok-144.mat-515.cha-e33)!", + result: { + word: "chatroom", + correct: 20, + position: 5, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "31.03.2025", + }, + }, + { + date: "31.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMzMl1SYoNmLhVWLjFmYuIDZl1ichBnLjZTYtEmcn5CMucjLz4CNx4CM50Sbv9mc0FGajhSI", + value: "!(chatroom-90.14.3.7.0.gra-a6c.par-ed2.bac-ea.cha-e33)!", + result: { + word: "chatroom", + correct: 14, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "31.03.2025", + }, + }, + { + date: "31.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMzUWLhh2YuITZtIHdukjMtIGbh5iMyUTL0FWbuMmN00CdhBnL3ITLrVXZuMjL2EjLy4COy4CM50Sbv9mc0FGajhSI", + value: + "!(chatroom-90.28.2.16.3.euk-27.pat-46c.mat-522.alb-29.tr-e2.cha-e33)!", + result: { + word: "chatroom", + correct: 28, + position: 2, + incorrect: 16, + knownIncorrect: 3, + totalWords: 6, + totalLetters: 46, + date: "31.03.2025", + }, + }, + { + date: "31.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzMTZtEGaj5yN0ITLq92duUjZi1SYoNmLzkDOhFTL6JHcuAjLyEjL04yNx4CM50Sbv9mc0FGajhSI", + value: "!(chatroom-90.17.4.12.0.prz-1a893.cha-bf5.woj-247.cha-e33)!", + result: { + word: "chatroom", + correct: 17, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "31.03.2025", + }, + }, + { + date: "31.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMzMl1SYoNmL4EWLn9mcuEmNy0CdhxmL1cjNtQXYt5SYkZTLyF2duEWMyUTL69GcuAjLzEjLz4CNy4CM50Sbv9mc0FGajhSI", + value: + "!(chatroom-90.24.3.13.0.poz-521a.war-6da.mat-675.lat-26a.rog-a8.cha-e33)!", + result: { + word: "chatroom", + correct: 24, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "31.03.2025", + }, + }, + { + date: "31.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMzMl1SYoNmLzkDNtQXYw5iNx0icmFmLygjMtI3Zv5SZ4MTLqFmYuYDNtsWYz5CNmFTLkl3duAjL2EjLy4yNy4CM50Sbv9mc0FGajhSI", + value: + "!(chatroom-90.27.2.16.0.wyd-1f4.sak-46.baj-38e.ogr-282.afr-16.pat-493.cha-e33)!", + result: { + word: "chatroom", + correct: 27, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "31.03.2025", + }, + }, + { + date: "31.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzMTZukDZk1SYoNmL2EmYtUWat5CMukjLy4yNx4CM50Sbv9mc0FGajhSI", + value: "!(chatroom-90.17.2.9.0.mie-ba6.cha-dd9.e33)!", + result: { + word: "chatroom", + correct: 17, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "31.03.2025", + }, + }, + { + date: "31.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMzUmL1UmYtEGaj5iZzETLjJXYuYDM00iYvRmLygTLjp2buAjLwEjL24CMy4CM50Sbv9mc0FGajhSI", + value: "!(chatroom-90.20.6.10.0.ojc-82.dob-406.arc-13f.cha-be5.e33)!", + result: { + word: "chatroom", + correct: 20, + position: 6, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "31.03.2025", + }, + }, + { + date: "31.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMzUmL4QGZtEGaj5iN0UTLoN2bugTZz0ichhmL4QmMtEGd15CNhVTL6JHdllmbuAjL0EjL14SNy4CM50Sbv9mc0FGajhSI", + value: + "!(chatroom-90.25.5.14.0.nietrz-5a4.uta-2d8.har-3e8.och-546.cha-dd8.e33)!", + result: { + word: "chatroom", + correct: 25, + position: 5, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 44, + date: "31.03.2025", + }, + }, + { + date: "31.03.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMzMl1SYo5iNx0ich5SNhNWLhp3YuITMtQXew5CMugjLz4SNx4CM50Sbv9mc0FGajhSI", + value: "!(chatroom-90.15.3.8.0.pyt-12.cza-ca5.ar-16.ha-e33)!", + result: { + word: "chatroom", + correct: 15, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "31.03.2025", + }, + }, + { + date: "31.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMzUmLyEGZtEGaj5COh1yZucTYtomLyITMtQmLzIDMm1ievJnLlZ2NtIXY05iZh1SYsFmLzIGNtEmcr5iZxcTLzl3dllmbuAjL3EjLy4COz4CM50Sbv9mc0FGajhSI", + value: + "!(chatroom-90.38.2.17.0.niewys-71f.kra-4b3.ala-af.tar-7fe.roz-f023.d-122.j-a7.g-a8.cha-da2.e33)!", + result: { + word: "chatroom", + correct: 38, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 57, + date: "31.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/absolutnie-nieznane-bylem-bliski-poddania-27-04-2025-flag-pl-diffle-difflepl-gry" +] = [ + { + date: "27.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNyETMtEmcw5SZtoXYy5SO5QjYtoncw5SZ5QTLoN2MuczYtIXZ65CNxQmMt8mcw5CZ50ia1JmL0EWLj9GbuETNxITLv5SZ1MjZtoncw5iMuYTMuYjLwQjL3ETMt0Wek9WZ6FmcwhSI", + value: + "!(prazeodym-117.40.6.16.2.prz-f35e.o-2151.loc-a4.buj-9d.pro-2d14.zer-c7.3ch-49e.prz-b499.raz-e.pra-1124)!", + result: { + word: "prazeodym", + correct: 40, + position: 6, + incorrect: 16, + knownIncorrect: 2, + totalWords: 10, + totalLetters: 62, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNyETMuQWNtEmcw5CMtcWam5CMtkHZv5SOh1SdsBnL1MmMtIXe35yM3UTLoN2MuUGO10ici9mLl1iehJnLiVWOtM3br5CMuMTMuYjLzMjL3ETMt0Wek9WZ6FmcwhSI", + value: + "!(prazeodym-117.33.6.13.0.kos-9eb.raz-e.obr-58e.3ch-573.wyr-2c5.plu-a9.ody-0.fig-0.pra-5d.1124)!", + result: { + word: "prazeodym", + correct: 33, + position: 6, + incorrect: 13, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 52, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNyETMtEmcw5iYzETLoN2MukTM2kTL6JHcuITN50CchpnLxMmNtM2bwVWau5CMuETMuQjL0IjL3ETMt0Wek9WZ6FmcwhSI", + value: + "!(prazeodym-117.24.4.11.0.niepoc-6c1.zap-952.prz-9619.3ch-13b.pra-1124)!", + result: { + word: "prazeodym", + correct: 24, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjMxETLhJHcuITNtQ2bt5iN2kTLhJHcuQmM00icwNnLw4SOuUjLyIjL3ETMt0Wek9WZ6FmcwhSI", + value: "!(prazeodym-117.22.5.9.0.spr-42d.pra-966.mod-52.pra-1124)!", + result: { + word: "prazeodym", + correct: 22, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNyETMtEmcuY2Yk1SYs5SOxYTL55CZ00Sdy5iYmdDNto3bw5CNhVTL6JHdllmbuAjLyEjLwEjL4IjL3ETMt0Wek9WZ6FmcwhSI", + value: + "!(prazeodym-117.28.10.12.0.nietrz-5a4.poz-47fb.ru-4d.y-619.la-dcf.ra-1124)!", + result: { + word: "prazeodym", + correct: 28, + position: 10, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 50, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0ITMx0SYuQGZ00SeyBnLzU2NtEmcm5SZtoXYy5CO30ieytmL5kzMx0iYhpnLmJmMtUHaj5CMuYTMuUjLxMjL3ETMt0Wek9WZ6FmcwhSI", + value: + "!(prazeodym-117.31.5.16.0.chu-2bf.zab-1399.krz-78.raz-e.fra-7e3.pry-4dd.a-1124)!", + result: { + word: "prazeodym", + correct: 31, + position: 5, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 52, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjMxETLh5CNxQmMt8mcw5SO0ETLkVHbuUWL6FmcuMmNh1SYydmLw4iNuMjLyIjL3ETMt0Wek9WZ6FmcwhSI", + value: "!(prazeodym-117.22.3.6.0.gra-a6c.raz-e.lud-149.pro-2d14.a-1124)!", + result: { + word: "prazeodym", + correct: 22, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNyETMtEmLyYGNwETL6JnLhFjM10ievBnLw4yNuMjL4EjL3ETMt0Wek9WZ6FmcwhSI", + value: "!(prazeodym-117.18.3.7.0.poz-521a.rz-104f2.a-1124)!", + result: { + word: "prazeodym", + correct: 18, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjMxETLh5SY0YjMtoncw5SYjdTMtcXY65CNx0SdlZmLw4SNuMjLxIjL3ETMt0Wek9WZ6FmcwhSI", + value: "!(prazeodym-117.21.3.5.0.feu-14.zaw-17ca.prz-264a.a-1124)!", + result: { + word: "prazeodym", + correct: 21, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNyETMtEmcw5yN5cTLhJnZuUTZt8Gdv5iYzETLoN2MuUWL6FmcuQjZx0CZ5dnLw4COuMjL0IjL3ETMt0Wek9WZ6FmcwhSI", + value: + "!(prazeodym-117.24.3.8.0.wyd-1f4.raz-e.3ch-13b.oto-e5.fra-797.pra-1124)!", + result: { + word: "prazeodym", + correct: 24, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0ITMx0SYyBnLjRjMtoWYy5CMlFTLjJnLmlTLyVWYucjMtsWdl5yMuYTMuYjL0IjL3ETMt0Wek9WZ6FmcwhSI", + value: "!(prazeodym-117.24.6.16.3.euk-27.aer-9f.rc-1e0.raj-24c.pra-1124)!", + result: { + word: "prazeodym", + correct: 24, + position: 6, + incorrect: 16, + knownIncorrect: 3, + totalWords: 5, + totalLetters: 46, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNyETMtEmcw5yYxgTLhJnZugDMx0SYlJnLw4SOuEjL3EjL3ETMt0Wek9WZ6FmcwhSI", + value: "!(prazeodym-117.17.1.9.0.rea-108.fra-81c.pra-1124)!", + result: { + word: "prazeodym", + correct: 17, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNyETMtEmLkRmY00ieyBnL2EmYtUWat5CMuETMuQjL3EjL3ETMt0Wek9WZ6FmcwhSI", + value: "!(prazeodym-117.17.4.11.0.mie-ba6.prz-4bdd.a-1124)!", + result: { + word: "prazeodym", + correct: 17, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 32, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjMxETLhJHcuUWL6FmcuI2N2ATMtonL0kTZy0ybugTYxETLl5SYxczMtoncw5SMuETMuQjLyMjL3ETMt0Wek9WZ6FmcwhSI", + value: + "!(prazeodym-117.32.4.11.1.prz-371a.e-11a8.o-2e94.z-1067b.raz-e.pra-1124)!", + result: { + word: "prazeodym", + correct: 32, + position: 4, + incorrect: 11, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 47, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0ITMx0SYuMTNyATMtoncw5SN00SekdmLyMmMx0ybuMTO4EWMtoncw5CMuETMuUjL3IjL3ETMt0Wek9WZ6FmcwhSI", + value: + "!(prazeodym-117.27.5.11.0.prz-1a893.o-12c2.gdy-45.prz-10253.a-1124)!", + result: { + word: "prazeodym", + correct: 27, + position: 5, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 43, + date: "27.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-strzal-slightly-smiling-face-13-05-2025-diffle-difflepl-grywebowe-14-liter-w" +] = [ + { + date: "13.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNz0Cav1mLiVWOtM3br5CMuUjLy4yNuMzMx0iclh2bthSI", + value: "!(moher-133.7.2.5.0.kos-9eb.moh-34)!", + result: { + word: "moher", + correct: 7, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "13.05.2025", + }, + }, + { + date: "13.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNz0Cav1mLmRWLv9mYuImNt8mcl5yNhZTLlx2auYDZx0SZpBnLw4iNx4iMuQTMuMzMx0iclh2bthSI", + value: "!(moher-133.14.2.16.0.pie-1d6.kle-6a7.ero-6b.boo-df.moh-34)!", + result: { + word: "moher", + correct: 14, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "13.05.2025", + }, + }, + { + date: "13.05.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzMtg2bt5SMjFTLtVHauIGMzETLkFmbuAjL54iMuATMuMzMx0iclh2bthSI", + value: "!(moher-133.10.2.9.0.nad-130b.hum-1c1.moh-34)!", + result: { + word: "moher", + correct: 10, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "13.05.2025", + }, + }, + { + date: "13.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzMtg2bt5SO4ETLyVmZuEWM3MTL6JHcuAjLyEjLz4COuMzMx0iclh2bthSI", + value: "!(moher-133.8.3.12.0.prz-371a.fer-189.moh-34)!", + result: { + word: "moher", + correct: 8, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "13.05.2025", + }, + }, + { + date: "13.05.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0MTLo9mLhNWOtQXZt5SY1YmZtoncw5CMucjLy4SOuMzMx0iclh2bthSI", + value: "!(moher-133.9.2.7.0.prz-ff5a.met-9ca.oh-34)!", + result: { + word: "moher", + correct: 9, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "13.05.2025", + }, + }, + { + date: "13.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNz0Cav1mLmJmMtUHaj5CMugjLx4iNuMzMx0iclh2bthSI", + value: "!(moher-133.6.1.8.0.chu-2bf.moh-34)!", + result: { + word: "moher", + correct: 6, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "13.05.2025", + }, + }, + { + date: "13.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNz0Cav1mLwYzNtI3bm5CZyQTLyB3cuAjLyEjLy4SOuMzMx0iclh2bthSI", + value: "!(moher-133.9.2.12.0.spr-42d.for-760.moh-34)!", + result: { + word: "moher", + correct: 9, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "13.05.2025", + }, + }, + { + date: "13.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzMtg2bt5iM40iclhmLzkDOhFTL6JHcuAjLxEjLy4SOuMzMx0iclh2bthSI", + value: "!(moher-133.9.2.11.0.prz-1a893.her-82.moh-34)!", + result: { + word: "moher", + correct: 9, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "13.05.2025", + }, + }, + { + date: "13.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzMtg2bt5CZ4YTLvh2YucjMt8mez5yYz0SZw9mLwYWLvJXZuMmNh1SYydmLw4iMx4CNucTMuMzMx0iclh2bthSI", + value: + "!(moher-133.17.4.12.0.gra-a6c.ero-f0.ope-3c.szo-27.cho-68d.moh-34)!", + result: { + word: "moher", + correct: 17, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "13.05.2025", + }, + }, + { + date: "13.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzMtg2bt5yM4ITLlJ2buQTY10ieyRXZp5mLw4yMx4SMuATMuMzMx0iclh2bthSI", + value: "!(moher-133.10.1.13.0.nietrz-5a4.obe-283.moh-34)!", + result: { + word: "moher", + correct: 10, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "13.05.2025", + }, + }, + { + date: "13.05.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzMtg2bt5iYjhTLt9GcuEGNtkXb1VWau5CMukjLy4COuMzMx0iclh2bthSI", + value: "!(moher-133.8.2.9.0.nieumy-4a.pom-8cb.moh-34)!", + result: { + word: "moher", + correct: 8, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "13.05.2025", + }, + }, + { + date: "13.05.2025", + nick: "Tomekku", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0MTLo9WbukjY30CbvBnL3ITLrVXZuAjL54SMuATMuMzMx0iclh2bthSI", + value: "!(moher-133.10.1.9.0.euk-27.pol-7b9.moh-34)!", + result: { + word: "moher", + correct: 10, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "13.05.2025", + }, + }, + { + date: "13.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNz0Cav1mL2MmNts2bw5SYjlTL0VWbuQjZx0CZ5dnLw4CMx4SMuITMuMzMx0iclh2bthSI", + value: "!(moher-133.12.1.10.0.wyd-1f4.met-9ca.pok-6c6.moh-34)!", + result: { + word: "moher", + correct: 12, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "13.05.2025", + }, + }, + { + date: "13.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0MTLo5iM30CcukDNy0CZv1mLw4CMx4CMuETMuMzMx0iclh2bthSI", + value: "!(moher-133.11.0.10.0.mod-249.p-72.h-34)!", + result: { + word: "moher", + correct: 11, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "13.05.2025", + }, + }, + { + date: "13.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0MTLo9WbukzNx0ybvpnL3ITLrVXZuAjL54iMuATMuMzMx0iclh2bthSI", + value: "!(moher-133.10.2.9.0.euk-27.zoo-179.moh-34)!", + result: { + word: "moher", + correct: 10, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "13.05.2025", + }, + }, + { + date: "13.05.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNz0Cav1mLiJWMt8mc05CMuMjLy4yNuMzMx0iclh2bthSI", + value: "!(moher-133.7.2.3.0.tro-1bb.moh-34)!", + result: { + word: "moher", + correct: 7, + position: 2, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 12, + date: "13.05.2025", + }, + }, + { + date: "13.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0MTLo9WbuATL09GauEWMyUTL69GcuAjLwEjLx4SOuMzMx0iclh2bthSI", + value: "!(moher-133.9.1.10.0.poz-521a.hot-0.moh-34)!", + result: { + word: "moher", + correct: 9, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "13.05.2025", + }, + }, + { + date: "13.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzMtg2bt5CNwETLt9GaukDM50iclBnLjNDNtIXZ35CM50SalJnLw4iNx4yMuQTMuMzMx0iclh2bthSI", + value: "!(moher-133.14.3.16.0.rei-90.wer-43c.per-909.hom-104.moh-34)!", + result: { + word: "moher", + correct: 14, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "13.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-wredne-blush-04-04-2025-diffle-difflepl-grywebowe-25-liter-w-4-slowach-large" +] = [ + { + date: "04.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM5ETL6dWZuATL65iM30iblpnLzEGOtUmej5CMucjLw4COx4CN50SY6V2Zlp3ZlhSI", + value: "!(egzegeza-94.18.0.7.0.cze-8a3.zen-72.z-0.egz-190)!", + result: { + word: "egzegeza", + correct: 18, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "04.04.2025", + }, + }, + { + date: "04.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM5ETL6dWZukTYz0SZ6NmL0EjNtg2Yz4SNjRTLyR3cllmbuAjL0EjLx4yNx4CN50SY6V2Zlp3ZlhSI", + value: "!(egzegeza-94.17.1.14.0.niestr-4c5.3ch-614.cze-3a9.egz-190)!", + result: { + word: "egzegeza", + correct: 17, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "04.04.2025", + }, + }, + { + date: "04.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwkTMto3Zl5CNiFTLoN2MuATL6VmeuATMtMWdt5CMtoXZi5CNhVTL6JHdllmbuAjL4EjLw4SMy4CN50SY6V2Zlp3ZlhSI", + value: + "!(egzegeza-94.21.0.18.0.nietrz-5a4.bez-0.muc-10.zez-0.3ch-1b4.egz-190)!", + result: { + word: "egzegeza", + correct: 21, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "04.04.2025", + }, + }, + { + date: "04.04.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATOx0ienVmL4IWMuITYx0CajNjLw0iZhdmLw0ialJmLxIWMtEGaj5CMtQXZ65SZzMTLzVXbuEGZyITLr9GcuEjLyIjLw4iNy4CN50SY6V2Zlp3ZlhSI", + value: + "!(egzegeza-94.26.0.22.1.pok-22da.mus-33e.zet-0.cha-1b1.bej-0.gaf-0.3ch-1a2.1b8.egz-190)!", + result: { + word: "egzegeza", + correct: 26, + position: 0, + incorrect: 22, + knownIncorrect: 1, + totalWords: 9, + totalLetters: 48, + date: "04.04.2025", + }, + }, + { + date: "04.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATOx0ienVmLw0yZlBnLhZTMuQjNx0CajNjLw0ialhmL2QzMtQWZt5SZhhTLhx2auAjLyIjLx4SMy4CN50SY6V2Zlp3ZlhSI", + value: + "!(egzegeza-94.21.1.22.0.kla-8ae.med-346.hej-0.3ch-164.16a.peg-0.egz-190)!", + result: { + word: "egzegeza", + correct: 21, + position: 1, + incorrect: 22, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 44, + date: "04.04.2025", + }, + }, + { + date: "04.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATOx0ienVmLw0ielJmL1kTMt4WYm5CMtoWZo5iMtQWe65iZihTL0p3cuAjL5EjLw4CMy4CN50SY6V2Zlp3ZlhSI", + value: + "!(egzegeza-94.20.0.19.0.szt-8bf.zyd-2.hej-0.fan-195.bez-0.egz-190)!", + result: { + word: "egzegeza", + correct: 20, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "04.04.2025", + }, + }, + { + date: "04.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM5EjL0IjMto3Zl5SY2ETLoN2MukTLn5CMtoXZ65iN5MTL6F2ZuAjYx4SM4ETLoN2MuATL6VmYuQjYy0Cbl1mLiZjMtUmey5SMtMXY65iZiJTL1h2YuIjLzIjLy4CN04CN50SY6V2Zlp3ZlhSI", + value: + "!(egzegeza-94.44.2.23.2.chu-2bf.zas-1.rze-26b.mel-2b4.bez-0.3ch-181.1b0.gaz-396.zez-0.g-9.3ch-16a.egz-224.190)!", + result: { + word: "egzegeza", + correct: 44, + position: 2, + incorrect: 23, + knownIncorrect: 2, + totalWords: 13, + totalLetters: 69, + date: "04.04.2025", + }, + }, + { + date: "04.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwkTMto3Zl5yN20ialdmLw0Sd6NmLlJGNto3Zl5SMtcWZw5COtcWZr5CMtcWZt5yY2EWLhJ3ZuAjL2EjLx4COy4CN50SY6V2Zlp3ZlhSI", + value: + "!(egzegeza-94.28.1.16.0.gra-a6c.meg-0.keg-8.peg-1.egz-4be.czu-0.gej-67.egz-190)!", + result: { + word: "egzegeza", + correct: 28, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 45, + date: "04.04.2025", + }, + }, + { + date: "04.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwkTMukTOx0ienVmLmdjNtQXY65CZyQTLyB3cuAjL1EjLy4yNx4CN50SY6V2Zlp3ZlhSI", + value: "!(egzegeza-94.17.2.15.0.spr-42d.zat-67f.egz-199.190)!", + result: { + word: "egzegeza", + correct: 17, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "04.04.2025", + }, + }, + { + date: "04.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM5ETL6dWZuATLmF2ZuATL6VmeucDNy0iavdnLzkDOhFTL6JHcuAjL5EjLw4yNx4CN50SY6V2Zlp3ZlhSI", + value: "!(egzegeza-94.17.0.19.0.prz-1a893.woj-247.zez-0.gaf-0.egz-190)!", + result: { + word: "egzegeza", + correct: 17, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "04.04.2025", + }, + }, + { + date: "04.04.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM5EjL0IjMto3Zl5SMtUGbn5SMyQTL3FmbllmbuAjLyEjLw4COx4CN50SY6V2Zlp3ZlhSI", + value: "!(egzegeza-94.18.0.12.0.nienaw-421.gle-1.egz-224.190)!", + result: { + word: "egzegeza", + correct: 18, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "04.04.2025", + }, + }, + { + date: "04.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM5ETL6dWZuATL6VmeuEmN20yY6NnLw0ielJmLlVTLhtWduAjL0EjLx4CMy4CN50SY6V2Zlp3ZlhSI", + value: "!(egzegeza-94.20.1.14.0.uka-5e.bez-0.szc-66a.zez-0.egz-190)!", + result: { + word: "egzegeza", + correct: 20, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "04.04.2025", + }, + }, + { + date: "04.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATOx0ienVmLhZTMtg2Yz4CMtYGbuATLoNmL3ITLrVXZuAjLyEjLw4yNx4CN50SY6V2Zlp3ZlhSI", + value: "!(egzegeza-94.17.0.12.0.euk-27.ch-0.lf-0.3ch-16a.egz-190)!", + result: { + word: "egzegeza", + correct: 17, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "04.04.2025", + }, + }, + { + date: "04.04.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATOx0ienVmLw0ie5BnLw0iehZmLw0ialdmLw0ielpnLw0ielJmL2MjMtUGZ15iNhJWLllWbuAjLwIjLw4COy4CN50SY6V2Zlp3ZlhSI", + value: + "!(egzegeza-94.28.0.20.0.mie-ba6.ude-236.bez-0.zez-0.gej-0.faz-0.pyz-0.egz-190)!", + result: { + word: "egzegeza", + correct: 28, + position: 0, + incorrect: 20, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 48, + date: "04.04.2025", + }, + }, + { + date: "04.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwkTMto3Zl5COy0CajJjLmFWLoN2MuEmNtg2Yy4CMtoWdi5CNyITL6dWZuIDZy0SZ6NnL4ATMtQXZ65CNmFTLkl3duEjLwIjLx4CNy4CN50SY6V2Zlp3ZlhSI", + value: + "!(egzegeza-94.24.1.20.1.wyd-1f4.zet-108.sze-2d2.egz-224.buj-0.2ch-6a.3ch-af.2ch-28.egz-190)!", + result: { + word: "egzegeza", + correct: 24, + position: 1, + incorrect: 20, + knownIncorrect: 1, + totalWords: 9, + totalLetters: 45, + date: "04.04.2025", + }, + }, + { + date: "04.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATOx4CNyITL6dWZuEWMx0iehdmL3YWLlp3YuEWMyUTL69GcuAjLzEjLx4iMy4CN50SY6V2Zlp3ZlhSI", + value: "!(egzegeza-94.22.1.13.0.poz-521a.cze-f7.gaz-11a.egz-224.190)!", + result: { + word: "egzegeza", + correct: 22, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "04.04.2025", + }, + }, + { + date: "04.04.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATOx0ienVmLmFWMuAzNx0CajNjLmNTLoNmMuATLjVGauATL6VmeuUTNx0SbhtmLmFjMtc2bi5CZ5ITLuV2ZuEWM3MTL6JHcuAjLwIjLy4COy4CN50SY6V2Zlp3ZlhSI", + value: + "!(egzegeza-94.28.2.20.0.prz-371a.gen-29d.bog-21f.kam-155.zez-0.hec-0.2ch-3f.3ch-170.1af.egz-190)!", + result: { + word: "egzegeza", + correct: 28, + position: 2, + incorrect: 20, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 50, + date: "04.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/alez-blisko-bylem-w-trzecim-slowie-ostrzegam-zdradliwe-06-05-2025-diffle-difflep" +] = [ + { + date: "06.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZkFjL1QWLw9GduYTL152buIWZ50ycvtmLw4COuAjLzIjL2ITMtUWauVWauB3b0hSI", + value: "!(topnienie-126.23.0.8.0.kos-9eb.onu-6.top-d5.1dd)!", + result: { + word: "topnienie", + correct: 23, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "06.05.2025", + }, + }, + { + date: "06.05.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZkFTLw9GduMjZy0CdhBnLw4iMuEjLzEjL2ITMtUWauVWauB3b0hSI", + value: "!(topnienie-126.13.1.2.0.pat-2f3.top-1dd)!", + result: { + word: "topnienie", + correct: 13, + position: 1, + incorrect: 2, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "06.05.2025", + }, + }, + { + date: "06.05.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkRWMtA3b05SOkZTLvR3cucTM40Saw9mLhRmMy0yavBnLw4COuEjL3IjL2ITMtUWauVWauB3b0hSI", + value: "!(topnienie-126.27.1.8.0.pok-22da.opi-817.sto-6d9.top-1dd)!", + result: { + word: "topnienie", + correct: 27, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "06.05.2025", + }, + }, + { + date: "06.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZkFjL1QWLw9GduQmM00icwNnLw4yNuEjLxIjL2ITMtUWauVWauB3b0hSI", + value: "!(topnienie-126.21.1.7.0.spr-42d.top-d5.1dd)!", + result: { + word: "topnienie", + correct: 21, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "06.05.2025", + }, + }, + { + date: "06.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQGZx4SNk1CcvRnLzMTOy0ycvBnLmJmMtUHaj5CMuATMuIjLyIjL2ITMtUWauVWauB3b0hSI", + value: "!(topnienie-126.22.2.10.0.chu-2bf.pos-2933.top-d5.1dd)!", + result: { + word: "topnienie", + correct: 22, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "06.05.2025", + }, + }, + { + date: "06.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZkFTLw9GduYzN10CajNjL1IjMtkGcl5yM20CZpJmLzMTLv5CMj1CduYWNy0ibpBnLwgzYtI3az5CMuITMugjL5IjL2ITMtUWauVWauB3b0hSI", + value: + "!(topnienie-126.29.8.12.0.skr-c80.pin-25f.t-c0.o-33.bid-63.epi-225.3ch-576.top-1dd)!", + result: { + word: "topnienie", + correct: 29, + position: 8, + incorrect: 12, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 49, + date: "06.05.2025", + }, + }, + { + date: "06.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkRWMugTYtA3buMzNtAXd05SYxczMtoncw5CMuETMuEjLyIjL2ITMtUWauVWauB3b0hSI", + value: "!(topnienie-126.22.1.11.0.prz-371a.tup-73.op-a8.1dd)!", + result: { + word: "topnienie", + correct: 22, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "06.05.2025", + }, + }, + { + date: "06.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZkFTLw9GducTNz0iYvRmL3EDOtkGcv5yMwETLjVHcuMmNh1SYydmLw4COuEjL3IjL2ITMtUWauVWauB3b0hSI", + value: "!(topnienie-126.27.1.8.0.gra-a6c.puc-103.opi-817.dob-357.top-1dd)!", + result: { + word: "topnienie", + correct: 27, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "06.05.2025", + }, + }, + { + date: "06.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZkFjL1QWLw9mL5YTLlxmLlFWLuVGduQjZx0CZ5dnLw4COuIjL5IjL2ITMtUWauVWauB3b0hSI", + value: "!(topnienie-126.29.2.8.0.wyd-1f4.ten-ae.le-69.op-d5.1dd)!", + result: { + word: "topnienie", + correct: 29, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "06.05.2025", + }, + }, + { + date: "06.05.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQGZx0CcvRnL5M2N10CZvBnL2EmYtUWat5CMuITMuMjLwIjL2ITMtUWauVWauB3b0hSI", + value: "!(topnienie-126.20.3.12.0.mie-ba6.pod-57c9.top-1dd)!", + result: { + word: "topnienie", + correct: 20, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 35, + date: "06.05.2025", + }, + }, + { + date: "06.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQGZx0CcvRnL2MTNx0CdvBnL0EWNtonc0VWau5CMuETMuUjL2EjL2ITMtUWauVWauB3b0hSI", + value: "!(topnienie-126.16.5.11.0.nietrz-5a4.pot-1536.top-1dd)!", + result: { + word: "topnienie", + correct: 16, + position: 5, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 32, + date: "06.05.2025", + }, + }, + { + date: "06.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZkFTLw9GduU2My0ibl5yM5gTYx0ieyBnLw4SOuMjL4EjL2ITMtUWauVWauB3b0hSI", + value: "!(topnienie-126.18.3.9.0.prz-1a893.en-23e.top-1dd)!", + result: { + word: "topnienie", + correct: 18, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "06.05.2025", + }, + }, + { + date: "06.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkRWMtA3b05iZh1yb0VnLhFjM10ievBnLw4yNuEjLwIjL2ITMtUWauVWauB3b0hSI", + value: "!(topnienie-126.20.1.7.0.poz-521a.uto-af.top-1dd)!", + result: { + word: "topnienie", + correct: 20, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "06.05.2025", + }, + }, + { + date: "06.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQGZx4SNk1CcvRnLzIjMx0yavBnL5QjMtQ2bt5CMuETMuEjL2IjL2ITMtUWauVWauB3b0hSI", + value: "!(topnienie-126.26.1.11.0.mod-249.pok-1223.top-d5.1dd)!", + result: { + word: "topnienie", + correct: 26, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 38, + date: "06.05.2025", + }, + }, + { + date: "06.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQGZx0CcuQTNtM2b05yNy0ya1VmLw4yNuMjL3EjL2ITMtUWauVWauB3b0hSI", + value: "!(topnienie-126.17.3.7.0.euk-27.toc-54.p-1dd)!", + result: { + word: "topnienie", + correct: 17, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "06.05.2025", + }, + }, + { + date: "06.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQGZx4SNk1CcvRnL0UWMz0Cc5dnLw4COuEjLyIjL2ITMtUWauVWauB3b0hSI", + value: "!(topnienie-126.22.1.8.0.wyp-31e4.top-d5.1dd)!", + result: { + word: "topnienie", + correct: 22, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "06.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/banalne-dzisiaj-jak-sie-trafi-z-pierwszym-slowem-deg-deg-06-03-2025-diffle-diffl" +] = [ + { + date: "06.03.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ATNtEmb65SO1YmMt42br5CMuUjLx4SOuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.9.1.5.0.kon-2f59.zna-508)!", + result: { + word: "znawca", + correct: 9, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOwUTLh5meukzYtonc35CMuQjLy4SOuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.9.2.4.0.wrz-c9.zna-508)!", + result: { + word: "znawca", + correct: 9, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ATNtEmb65SO1YmMt42br5CMuUjLx4SOuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.9.1.5.0.kon-2f59.zna-508)!", + result: { + word: "znawca", + correct: 9, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOwUTLh5mLiVjNtIWY65CZyQTLyB3cuAjL54yMuMTMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.13.3.9.0.spr-42d.zab-65b.na-508)!", + result: { + word: "znawca", + correct: 13, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDM10SYupnLmJmMtUHaj5CMuUjLy4SOuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.9.2.5.0.chu-2bf.zna-508)!", + result: { + word: "znawca", + correct: 9, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDM10SYupnL5UTLrp3cuAjL24SMuATMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.10.1.6.0.szk-59.zna-508)!", + result: { + word: "znawca", + correct: 10, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOwUTLh5meuIjZ10ydh5mLlVTZy0yc5dnLw4iMx4SMuETMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.11.1.12.0.wys-2e5e.naw-5f2.zna-508)!", + result: { + word: "znawca", + correct: 11, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ATNtEmb65iNyMWLjFmbuEDOt42bz5yY2EWLhJ3ZuAjL44SMuMTMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.13.1.8.0.gra-a6c.son-81.nac-c26.zna-508)!", + result: { + word: "znawca", + correct: 13, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOwUTLh5meuQTY10ieyRXZp5mLw4CMx4SMuATMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.10.1.10.0.nietrz-5a4.zna-508)!", + result: { + word: "znawca", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDM10SYupnL0UTOtoXYu5CNmFTLkl3duAjL14yMuITMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.12.3.5.0.wyd-1f4.naz-954.zna-508)!", + result: { + word: "znawca", + correct: 12, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDM10SYupnLzkDOhFTL6JHcuAjL54CMuATMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.10.0.9.0.prz-1a893.zna-508)!", + result: { + word: "znawca", + correct: 10, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDM10SYupnLw0ydh5mL1YTL3FmauATLkVnbuUDOz0iclNnLw4SMx4SMucTMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.17.1.11.0.ser-385.nud-0.jaw-65.naw-0.zna-508)!", + result: { + word: "znawca", + correct: 17, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDM10SYupnLxE2Ny0ych5mLmFTLrVXZuAjL54iMuETMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.11.2.9.0.euk-1f.nas-27a1.zna-508)!", + result: { + word: "znawca", + correct: 11, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ATNtEmb65SNzYTL6l3duYTYi1SZp1mLw4SMx4iMuUTMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.15.2.11.0.mie-ba6.wyz-635.zna-508)!", + result: { + word: "znawca", + correct: 15, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOwUTLh5mLhBjYx0yYhpnL1ITLuFmcuEWMyUTL69GcuAjL44CNuUTMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.15.4.8.0.poz-521a.ran-25.zac-1b0a.na-508)!", + result: { + word: "znawca", + correct: 15, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDM10SYu5iY3ETLhpmeuE2Nx0SYnFmLkNTMtE2duMWM20iYhpnLhFzNz0ieyBnLw4CNx4iMuMjMuUjNtE2Y3Fmb6hSI", + value: + "!(znawca-65.23.2.14.0.prz-371a.zab-61c.wa-13d.aga-17a.zja-17b.na-508)!", + result: { + word: "znawca", + correct: 23, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOwUTLh5mL0Y2MtEmY65CM4ETLsFGcuATL0l3cuMmYx0CZv1mLw4iMx4CMugTMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.18.0.12.0.mod-1bc.syt-0.pal-180.zba-3f4.na-508)!", + result: { + word: "znawca", + correct: 18, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "Tysiek", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ATNuYmZtEmbuEGMiFTLjFmeuYTYi1SZp1mLw4iMx4yMucTMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.17.3.12.0.mie-ba6.zac-1b0a.na-ff.508)!", + result: { + word: "znawca", + correct: 17, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "Mazia", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOwUTLh5meuIGMy0Cdh1mLw4CMx4CMuATMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.10.0.10.0.mat-20b.zna-508)!", + result: { + word: "znawca", + correct: 10, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDM10SYupnL1QGZtcXYu5COxITLyV2duAjL44CMuATMuUjNtE2Y3Fmb6hSI", + value: "!(znawca-65.10.0.8.0.wer-218.naw-dd5.zna-508)!", + result: { + word: "znawca", + correct: 10, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "06.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/banalnie-latwe-ale-tylko-dla-ludzi-z-iq-gt-80-25-03-2025-diffle-difflepl-grywebo" +] = [ + { + date: "25.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOy0ibphmLwUTL0NXauATLnlmZuEGOtEGZ15SMjVTLoN2MuATL1x2aucjMz0SdyRmLx0yc51mL1Q2Mtg2Yz4iNl1iezBnLw4CNx4yNukjMuQDOtEGdzlWdk5WaohSI", + value: + "!(hinduista-84.29.7.14.0.psz-e6.3ch-3d5.mys-1.dru-327.klu-0.3ch-5c1.uda-8a.fig-0.ist-50.hin-28)!", + result: { + word: "hinduista", + correct: 29, + position: 7, + incorrect: 14, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 50, + date: "25.03.2025", + }, + }, + { + date: "25.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjMt4Wao5SMi1ibpZmLjJWL0lGcuIzY10icldnLw4yMx4iMuAjMuQDOtEGdzlWdk5WaohSI", + value: "!(hinduista-84.20.2.13.0.wer-5c2.pit-bc.fin-b1.hin-28)!", + result: { + word: "hinduista", + correct: 20, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "25.03.2025", + }, + }, + { + date: "25.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOy0ibphmLxIWLulmZuYTYi1SZp1mLw4iMx4iMukTMuQDOtEGdzlWdk5WaohSI", + value: "!(hinduista-84.19.2.12.0.mie-ba6.fin-b1.hin-28)!", + result: { + word: "hinduista", + correct: 19, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 33, + date: "25.03.2025", + }, + }, + { + date: "25.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOy4SO20ibphmL3UjMtkGaj5CNkFTLm5WauEzNx0ibpxmLhRmMy0yavBnLw4yMx4CMuEzMuQDOtEGdzlWdk5WaohSI", + value: + "!(hinduista-84.31.0.13.0.pok-22da.lin-171.inf-1d4.chi-257.hin-69.28)!", + result: { + word: "hinduista", + correct: 31, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 44, + date: "25.03.2025", + }, + }, + { + date: "25.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ITLulGauATNtQ3cp5CZyQTLyB3cuAjL34CNuUTMuQDOtEGdzlWdk5WaohSI", + value: "!(hinduista-84.15.4.7.0.spr-42d.ist-50.hin-28)!", + result: { + word: "hinduista", + correct: 15, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "25.03.2025", + }, + }, + { + date: "25.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ITLulGauATL0l2cucjNtQXYs5CO0YWLyB3cuYmYy0SdoNmLw4iMx4CNuAjMuQDOtEGdzlWdk5WaohSI", + value: "!(hinduista-84.20.4.12.0.chu-2bf.spr-f48.lat-67.sit-0.hin-28)!", + result: { + word: "hinduista", + correct: 20, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "25.03.2025", + }, + }, + { + date: "25.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ITLulmLw0Cd1hmL1ImMt4Wam5yMkRTLpJmeuQDMwETLy92auMTMy0ib5RmLlVWLp52ZuEmMx0CctlmLw4CNx4CNuEzMuQDOtEGdzlWdk5WaohSI", + value: + "!(hinduista-84.31.4.14.0.imp-12a.gni-ee.dyn-213.kor-1004.zbi-4d3.fin-2b5.hut-0.in-28)!", + result: { + word: "hinduista", + correct: 31, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 49, + date: "25.03.2025", + }, + }, + { + date: "25.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ITLulGauYDM20SauVnLwUTMtwWdt5CMtMXdr5yNldTL1p3cuAjL54iMuUjMuQDOtEGdzlWdk5WaohSI", + value: "!(hinduista-84.25.2.9.0.szu-7e7.kus-0.mul-150.uni-606.hin-28)!", + result: { + word: "hinduista", + correct: 25, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "25.03.2025", + }, + }, + { + date: "25.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ITLulGauQzYtMWau5CMt4Wek5COwITLuV2duYTY20SauVnLkZTLuV3cuImZx0ibhZmLw4yMx4yNugjMuQDOtEGdzlWdk5WaohSI", + value: + "!(hinduista-84.28.7.13.0.fan-1fb.sun-6d.uni-6a6.wen-208.dyn-0.nic-c4.hin-28)!", + result: { + word: "hinduista", + correct: 28, + position: 7, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 48, + date: "25.03.2025", + }, + }, + { + date: "25.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOy0ibphmLw0Cap5mLjZTL1lGZuUjMtQWdu5iMx0SZ1dnLjRmNtkmb15yNy0ya1VmLz4yMx4yNuUzMuQDOtEGdzlWdk5WaohSI", + value: + "!(hinduista-84.35.7.13.3.euk-27.uni-6dc.wue-12.nud-25.diu-6c.nih-0.hin-28)!", + result: { + word: "hinduista", + correct: 35, + position: 7, + incorrect: 13, + knownIncorrect: 3, + totalWords: 7, + totalLetters: 55, + date: "25.03.2025", + }, + }, + { + date: "25.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ITLulGauYTY20SauVnL0ITMtQXaz5SMlVTLiFmbuMTN20ybhpnLw4CMx4SNuIjMuQDOtEGdzlWdk5WaohSI", + value: "!(hinduista-84.22.5.10.0.zao-653.nab-5e1.sit-124.uni-6a6.hin-28)!", + result: { + word: "hinduista", + correct: 22, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "25.03.2025", + }, + }, + { + date: "25.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOy0ibphmL2EmNtkmbugzY00CdzVnL3QjMto2b35yM5gTYx0ieyBnLw4yMx4SNuIjMuQDOtEGdzlWdk5WaohSI", + value: "!(hinduista-84.22.5.13.0.prz-1a893.woj-247.ust-4c8.ni-6a6.hin-28)!", + result: { + word: "hinduista", + correct: 22, + position: 5, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "25.03.2025", + }, + }, + { + date: "25.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOy0ibphmL2YGNtQmbp5COxEWLulWbuATLul2cuEWMyUTL69GcuAjL44CNuYjMuQDOtEGdzlWdk5WaohSI", + value: "!(hinduista-84.26.4.8.0.poz-521a.sin-0.min-a18.ind-4f6.hin-28)!", + result: { + word: "hinduista", + correct: 26, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "25.03.2025", + }, + }, + { + date: "25.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOy0ibphmLmBjMtg2Yz4CO2cTLsh2YuQTY10ieyRXZp5mLw4yMx4iMugTMuQDOtEGdzlWdk5WaohSI", + value: "!(hinduista-84.18.2.13.0.nietrz-5a4.chl-768.3ch-20f.hin-28)!", + result: { + word: "hinduista", + correct: 18, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "25.03.2025", + }, + }, + { + date: "25.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjMt4Wao5iM00ibpJmLw0CZ15mL5EDNt42bt5yMy0SeklmLhFzNz0ieyBnLw4iMx4iMuEzMuQDOtEGdzlWdk5WaohSI", + value: + "!(hinduista-84.31.2.12.0.prz-371a.idy-23.mon-419.nud-0.bin-42.hin-28)!", + result: { + word: "hinduista", + correct: 31, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 45, + date: "25.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/calkiem-proste-11-04-2025-diffle-difflepl-grywebowe-27-liter-w-4-slowach-large-g" +] = [ + { + date: "11.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ10CchpmLmFTMt8Gcv5CMtkmbw5CN3YWL6VmYuAjLwEjLx4iNx4SMwETLhtmbvBXYqhSI", + value: "!(japonka-101.16.1.10.0.bez-f74.pni-0.opo-11f.jap-5f)!", + result: { + word: "japonka", + correct: 16, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "11.04.2025", + }, + }, + { + date: "11.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ10CchpmL2YTMt8Gcv5CNhVTL6JHdllmbuAjLwEjLz4SNx4SMwETLhtmbvBXYqhSI", + value: "!(japonka-101.15.3.10.0.nietrz-5a4.opo-166.jap-5f)!", + result: { + word: "japonka", + correct: 15, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "11.04.2025", + }, + }, + { + date: "11.04.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWNtAXYq5SYjVTLhB3buIGMzETLkFmbuAjLwEjL04yMx4SMwETLhtmbvBXYqhSI", + value: "!(japonka-101.13.4.10.0.nad-130b.opa-5ca.jap-5f)!", + result: { + word: "japonka", + correct: 13, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "11.04.2025", + }, + }, + { + date: "11.04.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWNtAXYq5yYiVTMtAXYu5SYkJjMts2bw5CMucjLy4iNx4SMwETLhtmbvBXYqhSI", + value: "!(japonka-101.16.2.7.0.pok-22da.nap-15bc.jap-5f)!", + result: { + word: "japonka", + correct: 16, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "11.04.2025", + }, + }, + { + date: "11.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ10CchpmLkNTOz0ycvBnL3QWLvB3buEDNtAXds5SM2UTL6JHduAjLzEjLx4CMy4SMwETLhtmbvBXYqhSI", + value: "!(japonka-101.20.1.13.0.trz-561.lup-41.opo-d7.pos-393d.jap-5f)!", + result: { + word: "japonka", + correct: 20, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "11.04.2025", + }, + }, + { + date: "11.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVTLwFmauETMz0iavBnL3QTNtEmc05iZiJTL1h2YuAjLxEjLy4SOx4SMwETLhtmbvBXYqhSI", + value: "!(japonka-101.19.2.11.0.chu-2bf.tra-547.poj-311.jap-5f)!", + result: { + word: "japonka", + correct: 19, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "11.04.2025", + }, + }, + { + date: "11.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWNtAXYq5SMmVTMtAXYu5CZyQTLyB3cuAjLwEjLz4SNx4SMwETLhtmbvBXYqhSI", + value: "!(japonka-101.15.3.10.0.spr-42d.nap-15f1.jap-5f)!", + result: { + word: "japonka", + correct: 15, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "11.04.2025", + }, + }, + { + date: "11.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWNtAXYq5SMyITLtFWbuMzN10CbhJmL0IWMtMXYm5yY2EWLhJ3ZuAjLxEjLw4SOx4SMwETLhtmbvBXYqhSI", + value: "!(japonka-101.19.0.11.0.gra-a6c.fas-1b4.bal-573.mam-221.jap-5f)!", + result: { + word: "japonka", + correct: 19, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "11.04.2025", + }, + }, + { + date: "11.04.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVTLwFmaukTMx0yZhdnL4MTL0NXdllmbuAjLwEjLw4yMx4SMwETLhtmbvBXYqhSI", + value: "!(japonka-101.13.0.10.0.nieust-38.wag-119.jap-5f)!", + result: { + word: "japonka", + correct: 13, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "11.04.2025", + }, + }, + { + date: "11.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVTLwFmauYWMx0ybw9mLzkDOhFTL6JHcuAjLxEjLw4CNx4SMwETLhtmbvBXYqhSI", + value: "!(japonka-101.14.0.11.0.prz-1a893.opo-11f.jap-5f)!", + result: { + word: "japonka", + correct: 14, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "11.04.2025", + }, + }, + { + date: "11.04.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ10CchpmL2YTMt8Gcv5iNhJWLllWbuAjLxEjLy4CNx4SMwETLhtmbvBXYqhSI", + value: "!(japonka-101.14.2.11.0.mie-ba6.opo-166.jap-5f)!", + result: { + word: "japonka", + correct: 14, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "11.04.2025", + }, + }, + { + date: "11.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVTLwFmauEWNz0ibhNnL0YWMtQWe35CMukjLx4yMx4SMwETLhtmbvBXYqhSI", + value: "!(japonka-101.13.1.9.0.wyd-1f4.san-35a.jap-5f)!", + result: { + word: "japonka", + correct: 13, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "11.04.2025", + }, + }, + { + date: "11.04.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ10CchpmLw0yawFmLyEzMtEGbr5SYxczMtoncw5CMukjLy4iNx4SMwETLhtmbvBXYqhSI", + value: "!(japonka-101.16.2.9.0.prz-371a.kla-312.apk-0.jap-5f)!", + result: { + word: "japonka", + correct: 16, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "11.04.2025", + }, + }, + { + date: "11.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVTLwFmauQmMjFTLrFmeucjMtsWdl5CMucjLy4yMx4SMwETLhtmbvBXYqhSI", + value: "!(japonka-101.13.2.7.0.euk-27.zak-1c2d.jap-5f)!", + result: { + word: "japonka", + correct: 13, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "11.04.2025", + }, + }, + { + date: "11.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVTLwFmauAjZt42bm5SN20yduMDM00ychpmLkVzMtoWYi5yYiFTLk9WbuAjLxEjL04iMy4SMwETLhtmbvBXYqhSI", + value: + "!(japonka-101.22.4.11.0.mod-1bc.baj-35d.jas-403.w-65.fon-f0.jap-5f)!", + result: { + word: "japonka", + correct: 22, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "11.04.2025", + }, + }, + { + date: "11.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ10CchpmL2YTMt8Gcv5SYxITNto3bw5CMuYjLx4iNx4SMwETLhtmbvBXYqhSI", + value: "!(japonka-101.16.1.6.0.poz-521a.opo-166.jap-5f)!", + result: { + word: "japonka", + correct: 16, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "11.04.2025", + }, + }, + { + date: "11.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ10CchpmLmRWYt8Gcz5yNwMTLwV3auUmY5kTL69mcuAjL0EjLx4yNx4SMwETLhtmbvBXYqhSI", + value: "!(japonka-101.17.1.14.0.roz-99be.kup-307.spo-adf.jap-5f)!", + result: { + word: "japonka", + correct: 17, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "11.04.2025", + }, + }, + { + date: "11.04.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVTLwFmauYjNx0ybw9mL4QTNtUWaw5CMukjLw4SNx4SMwETLhtmbvBXYqhSI", + value: "!(japonka-101.15.0.9.0.pie-548.opo-166.jap-5f)!", + result: { + word: "japonka", + correct: 15, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "11.04.2025", + }, + }, + { + date: "11.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ10CcuEDZtIXYq5SY10iavxmLhRmMtkmbh5CMukjLz4iNx4SMwETLhtmbvBXYqhSI", + value: "!(japonka-101.16.3.9.0.ani-2da.loj-5a.jar-d1.p-5f)!", + result: { + word: "japonka", + correct: 16, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "11.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dobre-duuuuzo-mozliwosci-30-04-2025-flag-pl-diffle-difflepl-grywebowe-41-liter-w" +] = [ + { + date: "30.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2Mm1CcuU2Y40iYuMjM3ETLs9GcuY2M20SZyRnLmZTNt8GbukTYt0WYw5CMucTMuAjL0IjLwITMtcDOlQzQlEmapB3bwhSI", + value: + "!(popijać-120.24.0.17.0.pam-a9.lo-56f.tre-63f.pol-1723.b-8ce.p-f3c)!", + result: { + word: "popijać", + correct: 24, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 41, + date: "30.04.2025", + }, + }, + { + date: "30.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjNjZtA3bw5iN5YTLpB3buMzNi1CcvRmLw0Cc1dmLiJjMtUmc05yM0MTMtwWe35CMucTMuAjLzIjLwITMtcDOlQzQlEmapB3bwhSI", + value: + "!(popijać-120.23.0.17.0.wyl-1343.tre-22b.gup-0.dop-b73.opi-696.pop-f3c)!", + result: { + word: "popijać", + correct: 23, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "30.04.2025", + }, + }, + { + date: "30.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYzYWLw5iMlZWLt9GcuMmMz0CdpxmLw4CNuEjL1EjLwITMtcDOlQzQlEmapB3bwhSI", + value: "!(popijać-120.15.1.4.0.lit-32c.pom-fe2.p-f3c)!", + result: { + word: "popijać", + correct: 15, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "30.04.2025", + }, + }, + { + date: "30.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2Mm1CcuU2Y40iYuEWZwETL05iMtQmLhBTNy0yauIWNx0SbvBnLkhTMtA3ch5CMukTMuEjLyMjLwITMtcDOlQzQlEmapB3bwhSI", + value: + "!(popijać-120.32.1.19.0.asp-18d.pom-15b.k-250a.d-2.t-10ea.b-8ce.p-f3c)!", + result: { + word: "popijać", + correct: 32, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 52, + date: "30.04.2025", + }, + }, + { + date: "30.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjNjZtAnLiNmNtQ2bw5CO3ITLp12buYmYy0SdoNmLw4SOuEjLxIjLwITMtcDOlQzQlEmapB3bwhSI", + value: "!(popijać-120.21.1.9.0.chu-2bf.omi-278.pod-6cb.p-f3c)!", + result: { + word: "popijać", + correct: 21, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "30.04.2025", + }, + }, + { + date: "30.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjNjZtA3bw5CM2kTLw9GZugzNy0Sat9mLyMzMx0yc5dnLw4yNuAjLxIjLwITMtcDOlQzQlEmapB3bwhSI", + value: "!(popijać-120.21.0.7.0.wys-1332.omi-278.dop-960.pop-f3c)!", + result: { + word: "popijać", + correct: 21, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "30.04.2025", + }, + }, + { + date: "30.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2Mm1CcuIDZ30ycuIjN1UTL69GcuUWNtE2a15CMuQTMuEjL2EjLwITMtcDOlQzQlEmapB3bwhSI", + value: "!(popijać-120.16.1.14.0.uka-5e.poz-5562.s-7d2.p-f3c)!", + result: { + word: "popijać", + correct: 16, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "30.04.2025", + }, + }, + { + date: "30.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjNjZtAnLiNmNtQmLyUmZt02bw5SN1ITLq92duMTO4EWMtoncw5CMuAjMuAjL1IjLwITMtcDOlQzQlEmapB3bwhSI", + value: "!(popijać-120.25.0.20.0.prz-1a893.woj-255.pom-fe2.d-6cb.p-f3c)!", + result: { + word: "popijać", + correct: 25, + position: 0, + incorrect: 20, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 45, + date: "30.04.2025", + }, + }, + { + date: "30.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYzYWLw5iMlZWLt5iYjZTLk5CZklTLz5SNwEWLr9GcuYWYx0SYn9mLmlDNt8Gb65CMuQTMuAjL1MjLwITMtcDOlQzQlEmapB3bwhSI", + value: + "!(popijać-120.35.0.14.0.zlo-49f.oga-1af.pok-a05.s-9dd.d-6cb.m-fe2.p-f3c)!", + result: { + word: "popijać", + correct: 35, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 49, + date: "30.04.2025", + }, + }, + { + date: "30.04.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYzYWLw9GcuMDZ10iYk9mL2EmYtUWat5CMuMTMuEjL0EjLwITMtcDOlQzQlEmapB3bwhSI", + value: "!(popijać-120.14.1.13.0.mie-ba6.odb-5d3.pop-f3c)!", + result: { + word: "popijać", + correct: 14, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "30.04.2025", + }, + }, + { + date: "30.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2Mm1CcuITZm1SbuMDN20CZuYWM1UTLz9GcugTOt8me65CMucTMuAjLzIjLwITMtcDOlQzQlEmapB3bwhSI", + value: "!(popijać-120.23.0.17.0.zzo-98.pos-551f.d-643.m-fe2.p-f3c)!", + result: { + word: "popijać", + correct: 23, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "30.04.2025", + }, + }, + { + date: "30.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjNjZtAnLxUWYtc3buYmYjFTLvJHcugTOt8me65CMuATMuAjL3EjLwITMtcDOlQzQlEmapB3bwhSI", + value: "!(popijać-120.17.0.10.0.zzo-98.pro-1cbf.ow-ae1.p-f3c)!", + result: { + word: "popijać", + correct: 17, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "30.04.2025", + }, + }, + { + date: "30.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2Mm1CcuU2Y40iYuETYj1yauIWNx0SbvBnL2QTZtA3c35CMucTMuAjL1IjLwITMtcDOlQzQlEmapB3bwhSI", + value: "!(popijać-120.25.0.17.0.wsp-e46.pom-15b.k-ca1.b-8ce.p-f3c)!", + result: { + word: "popijać", + correct: 25, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "30.04.2025", + }, + }, + { + date: "30.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2Mm1CcuITZm1SbuUTOiFTLu5yNhFTL35yYhJGNtQ2bw5CMuETMuEjL1IjLwITMtcDOlQzQlEmapB3bwhSI", + value: "!(popijać-120.25.1.11.0.pod-4bac.w-1a7.n-1b95.m-fe2.p-f3c)!", + result: { + word: "popijać", + correct: 25, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "30.04.2025", + }, + }, + { + date: "30.04.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYzYWLw5SNiJTLv5iMlZWLt9mLz0yap5CZxczMtoncw5CMuITMuAjL3IjLwITMtcDOlQzQlEmapB3bwhSI", + value: "!(popijać-120.27.0.12.0.prz-371d.ik-3.om-fe2.o-2b5.p-f3c)!", + result: { + word: "popijać", + correct: 27, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "30.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/doceniam-doceniam-ale-i-tak-zgadlem-w-2-stuck-out-tongue-winking-eye-01-04-2025-" +] = [ + { + date: "01.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYyQTLrp3cukzMx0ic1tmLw4SNuAjLwEjLxkTLvdXastmezhSI", + value: "!(szkliwo-91.10.0.5.0.kur-139.szk-42b)!", + result: { + word: "szkliwo", + correct: 10, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "01.04.2025", + }, + }, + { + date: "01.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJDNtsmez5SYzETLzVGcukzMz0SeyJmL2IWOx0Sa6RmLmJmMtUHaj5CMuQTMuMjL1EjLxkTLvdXastmezhSI", + value: "!(szkliwo-91.15.3.14.0.chu-2bf.dzi-19b6.bry-339.pes-13a.szk-42b)!", + result: { + word: "szkliwo", + correct: 15, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "01.04.2025", + }, + }, + { + date: "01.04.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpImM00ya6NnLhRmMy0yavBnLw4iNuIjLwEjLxkTLvdXastmezhSI", + value: "!(szkliwo-91.10.2.6.0.pok-22da.szk-42b)!", + result: { + word: "szkliwo", + correct: 10, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "01.04.2025", + }, + }, + { + date: "01.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJDNuUjYz0ya6NnLzMTMtkGbi5SZ3kTMt42br5CMuATMuQjL4EjLxkTLvdXastmezhSI", + value: "!(szkliwo-91.18.4.10.0.kon-197e.bli-133.szk-3b5.42b)!", + result: { + word: "szkliwo", + correct: 18, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "01.04.2025", + }, + }, + { + date: "01.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJDNtsmeuQmM00icwNnLw4yNuIjLwEjLxkTLvdXastmezhSI", + value: "!(szkliwo-91.10.2.7.0.spr-42d.zk-42b)!", + result: { + word: "szkliwo", + correct: 10, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "01.04.2025", + }, + }, + { + date: "01.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYyQTLr5iMmNTLsp3cuY2Mx0yY1JmLmZTL0l2cuUjNx0ycpBnLjZTYtEmcn5CMuMTMuIjL3EjLxkTLvdXastmezhSI", + value: + "!(szkliwo-91.17.2.13.0.gra-a6c.pis-165.sit-6f.buc-13f.szl-3f2.k-42b)!", + result: { + word: "szkliwo", + correct: 17, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "01.04.2025", + }, + }, + { + date: "01.04.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJDNtsmLkdTLpp3cuYGZy0ycp5mLhFzNz0ieyBnLw4SOuQjL3EjLxkTLvdXastmezhSI", + value: "!(szkliwo-91.17.4.9.0.prz-371a.nis-2df.szi-7d.k-42b)!", + result: { + word: "szkliwo", + correct: 17, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "01.04.2025", + }, + }, + { + date: "01.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYyQTLrp3cuMTO4EWMtoncw5CMuATMuAjLwEjLxkTLvdXastmezhSI", + value: "!(szkliwo-91.10.0.10.0.prz-1a893.szk-42b)!", + result: { + word: "szkliwo", + correct: 10, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "01.04.2025", + }, + }, + { + date: "01.04.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJDNuAjY00ya6NnL0MTMtUne15CMuATMuEjLzEjLxkTLvdXastmezhSI", + value: "!(szkliwo-91.13.1.10.0.uzu-134.szk-4b0.42b)!", + result: { + word: "szkliwo", + correct: 13, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "01.04.2025", + }, + }, + { + date: "01.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpImM00ya6NnLlRWNtwWar5yNy0ya1VmLw4COuEjLzEjLxkTLvdXastmezhSI", + value: "!(szkliwo-91.13.1.8.0.euk-27.kil-5de.szk-42b)!", + result: { + word: "szkliwo", + correct: 13, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "01.04.2025", + }, + }, + { + date: "01.04.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYyQTLrp3cuYTYi1SZp1mLw4yNuAjL0EjLxkTLvdXastmezhSI", + value: "!(szkliwo-91.14.0.7.0.mie-ba6.szk-42b)!", + result: { + word: "szkliwo", + correct: 14, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "01.04.2025", + }, + }, + { + date: "01.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYyQTLr5CZ30Sa6NnL2ETMtcXaw5yMkRWLpdneuQjZx0CZ5dnLw4yNuMjL5EjLxkTLvdXastmezhSI", + value: "!(szkliwo-91.19.3.7.0.wyd-1f4.zwi-dd3.piw-116.szi-7d.k-42b)!", + result: { + word: "szkliwo", + correct: 19, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "01.04.2025", + }, + }, + { + date: "01.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYyQTLrp3cuEmMz0Sas9mL3YDOt8mcr5SMuATMuQjLzEjLxkTLvdXastmezhSI", + value: "!(szkliwo-91.13.4.10.1.kro-867.oli-32a.szk-42b)!", + result: { + word: "szkliwo", + correct: 13, + position: 4, + incorrect: 10, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 27, + date: "01.04.2025", + }, + }, + { + date: "01.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYyQjLiZWMtsmez5CMyMDNtM3bw5CMuATMuMjL2EjLxkTLvdXastmezhSI", + value: "!(szkliwo-91.16.3.10.0.pos-4320.szk-1fb.42b)!", + result: { + word: "szkliwo", + correct: 16, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "01.04.2025", + }, + }, + { + date: "01.04.2025", + nick: "Tysiek", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYyQTLrp3cuYTYi1SZp1mLw4yNuAjL0EjLxkTLvdXastmezhSI", + value: "!(szkliwo-91.14.0.7.0.mie-ba6.szk-42b)!", + result: { + word: "szkliwo", + correct: 14, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "01.04.2025", + }, + }, + { + date: "01.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJDNtsmez5CZ0ETL3lGcuYTMy0ybpdnLw4yMuQjLyEjLxkTLvdXastmezhSI", + value: "!(szkliwo-91.12.4.3.0.wio-216.piw-14d.szk-42b)!", + result: { + word: "szkliwo", + correct: 12, + position: 4, + incorrect: 3, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "01.04.2025", + }, + }, + { + date: "01.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJDNtsmeuMGOzETLvt2cuMDZk1Sa3pnL0EWNtonc0VWau5CMuATMuUjL1EjLxkTLvdXastmezhSI", + value: "!(szkliwo-91.15.5.10.0.nietrz-5a4.zwi-dd3.sko-138c.zk-42b)!", + result: { + word: "szkliwo", + correct: 15, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "01.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/guud-leri-guud-tak-to-pewna-podpowiedz-30-03-2025-flag-pl-diffle-difflepl-gryweb" +] = [ + { + date: "30.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1Q2Nx4yN2cTLu92auQTMy0ych1mL2IGNtQWa35CMuETMuMjLwIjL5gTLDJUJ1MUJyVmaz52brhSI", + value: "!(konsjerż-89.20.3.11.0.wid-4b6.mas-214.kon-767.17d5)!", + result: { + word: "konsjerż", + correct: 20, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "30.03.2025", + }, + }, + { + date: "30.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDZ3ETLu92auQTLut2cukTOz0CchxmLlVmYtIHdz5CMuQTMuMjL3EjL5gTLDJUJ1MUJyVmaz52brhSI", + value: "!(konsjerż-89.17.3.14.0.str-bee.lap-399.skn-4.kon-17d5)!", + result: { + word: "konsjerż", + correct: 17, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "30.03.2025", + }, + }, + { + date: "30.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDZ3ETLu92auIGOy0CajNjLzUWMtIXdr5iM5IWMt42bw5yNj1ibvxmLjZTLu9GduImYt42b65yM0MTMtwWe35CMuYTMuMjL1IjL5gTLDJUJ1MUJyVmaz52brhSI", + value: + "!(konsjerż-89.25.3.16.0.wyl-1343.zon-bb.ton-6c.lon-c7.pon-1b92.kur-1e3.3ch-28b.kon-17d5)!", + result: { + word: "konsjerż", + correct: 25, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 44, + date: "30.03.2025", + }, + }, + { + date: "30.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDZ3ETLu92augTY4ITLz9GcuQ2M30ibvtmL4YWLlJ3buczMx0iY1pnL5Q2Mtg2Yz4iYzUTLhx2cuQGNtM3br5iMzMTMtMXe35CMuAjMuIjL4IjL5gTLDJUJ1MUJyVmaz52brhSI", + value: + "!(konsjerż-89.28.2.20.0.wys-1332.kos-4d.sla-53b.3ch-3d9.zub-137.ore-f8.kon-73d.pos-28a8.kon-17d5)!", + result: { + word: "konsjerż", + correct: 28, + position: 2, + incorrect: 20, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 50, + date: "30.03.2025", + }, + }, + { + date: "30.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1Q2Nx4CZzcTLu92auMWO10ib5dnLkhTMtA3ch5CMuMTMuMjL4EjL5gTLDJUJ1MUJyVmaz52brhSI", + value: "!(konsjerż-89.18.3.13.0.asp-18d.wyn-59c.kon-73d.17d5)!", + result: { + word: "konsjerż", + correct: 18, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "30.03.2025", + }, + }, + { + date: "30.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDZ3ETLu9mLmVWMtk2cr5CO50yb6pnLw4COuIjLzEjL5gTLDJUJ1MUJyVmaz52brhSI", + value: "!(konsjerż-89.13.2.8.0.zzo-98.ksi-1ef.on-17d5)!", + result: { + word: "konsjerż", + correct: 13, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "30.03.2025", + }, + }, + { + date: "30.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1Q2Nx0ibuATMxETLs92auUDZtcWZu5iY3gjLjVDOtQ3cv5CN1cTLrl3dugTOt8me65yNuIjMuUjL3IjL5gTLDJUJ1MUJyVmaz52brhSI", + value: + "!(konsjerż-89.27.5.22.7.zzo-98.wyk-754.ost-85c.87b.neg-d5.kol-1110.n-17d5)!", + result: { + word: "konsjerż", + correct: 27, + position: 5, + incorrect: 22, + knownIncorrect: 7, + totalWords: 7, + totalLetters: 54, + date: "30.03.2025", + }, + }, + { + date: "30.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1Q2Nx0ibvtmL0kTL692duEzNto3bu5iN2MWMtQWY65CM50yZhpmLmlDNt8Gb65SMuUTMuMjL2EjL5gTLDJUJ1MUJyVmaz52brhSI", + value: + "!(konsjerż-89.16.3.15.1.zlo-49f.jag-90.zad-1c66.noz-71.woz-94.kon-17d5)!", + result: { + word: "konsjerż", + correct: 16, + position: 3, + incorrect: 15, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 34, + date: "30.03.2025", + }, + }, + { + date: "30.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1Q2Nx4CZzcTLu92auMTO4EWMtoncw5CMuETMuIjL1EjL5gTLDJUJ1MUJyVmaz52brhSI", + value: "!(konsjerż-89.15.2.11.0.prz-1a893.kon-73d.17d5)!", + result: { + word: "konsjerż", + correct: 15, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "30.03.2025", + }, + }, + { + date: "30.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDZ3EjL0Q2Nx0ibvtmLykTLvp3cugjZtUmcv5iNmZDMx0ievJnLyYTN10ievBnL2kjNtw2b65CMuETMucjLzIjL5gTLDJUJ1MUJyVmaz52brhSI", + value: + "!(konsjerż-89.23.7.11.0.zol-696.poz-5562.roz-106f6.ore-f8.szo-92.kon-17d4.17d5)!", + result: { + word: "konsjerż", + correct: 23, + position: 7, + incorrect: 11, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "30.03.2025", + }, + }, + { + date: "30.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1Q2Nx0ibvtmLkNTOtEGbi5CZzcTLu92auYzY00icr9mL2EmYtUWat5SMukTMuUjL5EjL5gTLDJUJ1MUJyVmaz52brhSI", + value: "!(konsjerż-89.19.5.19.1.mie-ba6.okr-4c6.kon-73d.bla-93d.kon-17d5)!", + result: { + word: "konsjerż", + correct: 19, + position: 5, + incorrect: 19, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 43, + date: "30.03.2025", + }, + }, + { + date: "30.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1Q2Nx0ibuATNtM3br5CO10CajJjLzUTLz9GbuczYx0iclNnLiNjNtg2Yz4yN40iehJnLjJjYx0SYyRnL2QTZtA3c35CMuEjMukjL1IjL5gTLDJUJ1MUJyVmaz52brhSI", + value: + "!(konsjerż-89.25.9.21.0.wsp-e46.tra-1b2c.raz-87.3ch-63b.ser-1c7.los-53.2ch-58.kos-50.n-17d5)!", + result: { + word: "konsjerż", + correct: 25, + position: 9, + incorrect: 21, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 55, + date: "30.03.2025", + }, + }, + { + date: "30.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1Q2Nx0ibv5iMxETLlN3auUDNz0iclpnL3YGNtg2Yz4yNlN2Ytoncw5CMuATMuQjL4EjL5gTLDJUJ1MUJyVmaz52brhSI", + value: "!(konsjerż-89.18.4.10.0.prz-cce7.3ch-4f7.zer-345.kse-112.on-17d5)!", + result: { + word: "konsjerż", + correct: 18, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "30.03.2025", + }, + }, + { + date: "30.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDZ3ETLu92auEGOz0iey9mLygjYwEjL2YmNwETL69mcuUGZtw2bi5yM0IGNtQ2bw5CMuYTMuYjL4EjL5gTLDJUJ1MUJyVmaz52brhSI", + value: + "!(konsjerż-89.18.6.16.0.pod-4b43.bol-de.roz-106f6.10b82.orz-38a.kon-17d5)!", + result: { + word: "konsjerż", + correct: 18, + position: 6, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "30.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/haslo-na-czasie-16-05-2025-diffle-difflepl-grywebowe-19-liter-w-3-slowach-large-" +] = [ + { + date: "16.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITYx0iavdnLxUWMt42bw5SOmlTLz92auAjL44SMuATMuYzMx0SYup2b3hSI", + value: "!(wojna-136.10.1.8.0.kos-9f9.pon-1e1.woj-1a2)!", + result: { + word: "wojna", + correct: 10, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "16.05.2025", + }, + }, + { + date: "16.05.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyEWMto2b35CNhVTL6JHdllmbuAjLxEjLy4yNuYzMx0SYup2b3hSI", + value: "!(wojna-136.7.2.11.0.nietrz-5a4.woj-1a2)!", + result: { + word: "wojna", + correct: 7, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "16.05.2025", + }, + }, + { + date: "16.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyEWMtomLiVTLu92duQTY10ieyRXZp5mLw4iMx4iMuETMuYzMx0SYup2b3hSI", + value: "!(wojna-136.11.2.12.0.nietrz-5a4.won-5b.j-1a2)!", + result: { + word: "wojna", + correct: 11, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "16.05.2025", + }, + }, + { + date: "16.05.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMhFTLq5yYlFTLs92duIGMzETLkFmbuAjL54SMuETMuYzMx0SYup2b3hSI", + value: "!(wojna-136.11.1.9.0.nad-130b.wol-1ec.j-1a2)!", + result: { + word: "wojna", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "16.05.2025", + }, + }, + { + date: "16.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITYx0iavdnLmJmMtUHaj5CMuUjLy4COuYzMx0SYup2b3hSI", + value: "!(wojna-136.8.2.5.0.chu-2bf.woj-1a2)!", + result: { + word: "wojna", + correct: 8, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "16.05.2025", + }, + }, + { + date: "16.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyEWMtomLjVWMtwmLiVTLu92duQmM00icwNnLw4CMx4SMuYTMuYzMx0SYup2b3hSI", + value: "!(wojna-136.16.1.10.0.spr-42d.won-5b.l-1ec.j-1a2)!", + result: { + word: "wojna", + correct: 16, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "16.05.2025", + }, + }, + { + date: "16.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMhFTLq92duATL1d3buczYz0ybwFmLx4CMx4SMuETMuYzMx0SYup2b3hSI", + value: "!(wojna-136.11.1.10.1.apo-3c7.owu-0.woj-1a2)!", + result: { + word: "wojna", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 22, + date: "16.05.2025", + }, + }, + { + date: "16.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMhFTLq92duATMto2bo5SN1YTLs9GZuATLu9GdugjMlFTLzFmbuMmNh1SYydmLw4SMx4SMugTMuYzMx0SYup2b3hSI", + value: + "!(wojna-136.18.1.11.0.gra-a6c.nas-1e28.ton-0.dol-655.hoj-10.woj-1a2)!", + result: { + word: "wojna", + correct: 18, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "16.05.2025", + }, + }, + { + date: "16.05.2025", + nick: "Szuuz_Ekleer", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITYx0iauIWNt4mLzMTLk5yYlFTLs9mL2EjMt8Wa35iZ00Cd1tmLw4SMx4SMuMjMuYzMx0SYup2b3hSI", + value: "!(wojna-136.23.1.11.0.kut-4f.wio-216.ol-1ec.d-33.n-5b.j-1a2)!", + result: { + word: "wojna", + correct: 23, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "16.05.2025", + }, + }, + { + date: "16.05.2025", + nick: "Tomekku", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITYx0iauMzMtQ2b35CN50yY6NnLlVTMtw2bw5yNy0ya1VmLw4SNx4iMuUTMuYzMx0SYup2b3hSI", + value: "!(wojna-136.15.2.15.0.euk-27.pol-15e.szc-94.wod-33.j-1a2)!", + result: { + word: "wojna", + correct: 15, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "16.05.2025", + }, + }, + { + date: "16.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyEWMtomLw0CZv5CMtcWe35CMtcXaz5iN30ydhtmLw4iMx4CMuQTMuYzMx0SYup2b3hSI", + value: "!(wojna-136.14.0.12.0.kaw-76.siw-0.wyg-0.od-0.j-1a2)!", + result: { + word: "wojna", + correct: 14, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "16.05.2025", + }, + }, + { + date: "16.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITYx0iauMzMtQ2b35yM5gTYx0ieyBnLw4iMx4CMuETMuYzMx0SYup2b3hSI", + value: "!(wojna-136.11.0.12.0.prz-1a893.wod-33.j-1a2)!", + result: { + word: "wojna", + correct: 11, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "16.05.2025", + }, + }, + { + date: "16.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITYx0iav5CO0ETLvJnLldTNy0Cc5dnLw4iMx4CMuITMuYzMx0SYup2b3hSI", + value: "!(wojna-136.12.0.12.0.wyp-257e.ro-148.oj-1a2)!", + result: { + word: "wojna", + correct: 12, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "16.05.2025", + }, + }, + { + date: "16.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyEWMto2b35iYlRzMtM3bw5yY3cTLy9WbuAjLyEjLw4COuYzMx0SYup2b3hSI", + value: "!(wojna-136.8.0.12.0.mor-77c.pos-34eb.woj-1a2)!", + result: { + word: "wojna", + correct: 8, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "16.05.2025", + }, + }, + { + date: "16.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyEWMto2b35iM4UTLvt2buEWM3MTL6JHcuAjLxEjLx4SOuYzMx0SYup2b3hSI", + value: "!(wojna-136.9.1.11.0.prz-371a.oko-582.woj-1a2)!", + result: { + word: "wojna", + correct: 9, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "16.05.2025", + }, + }, + { + date: "16.05.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITYx0iauMzMtQmLiVTLu92duYTYi1SZp1mLw4iMx4iMuUTMuYzMx0SYup2b3hSI", + value: "!(wojna-136.15.2.12.0.mie-ba6.won-5b.d-33.j-1a2)!", + result: { + word: "wojna", + correct: 15, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "16.05.2025", + }, + }, + { + date: "16.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITYx0iavdnLlVTMtw2bw5yNy0ya1VmLw4CMx4SMuATMuYzMx0SYup2b3hSI", + value: "!(wojna-136.10.1.10.0.euk-27.pol-15e.woj-1a2)!", + result: { + word: "wojna", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "16.05.2025", + }, + }, + { + date: "16.05.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITYx0iavdnL2cTNt0WZk5CMugjLx4COuYzMx0SYup2b3hSI", + value: "!(wojna-136.8.1.8.0.dem-576.woj-1a2)!", + result: { + word: "wojna", + correct: 8, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "16.05.2025", + }, + }, + { + date: "16.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMhFTLq5iY10ibvdnL0ATMtUHd15SMm1icv5mLhFjM10ievBnLw4CNx4iMuYTMuYzMx0SYup2b3hSI", + value: "!(wojna-136.16.2.14.0.poz-521a.nor-f1.utu-104.won-5b.j-1a2)!", + result: { + word: "wojna", + correct: 16, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "16.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/hmm-czy-ja-wiem-no-dobra-niech-bedzie-10-05-2025-diffle-difflepl-grywebowe-29-li" +] = [ + { + date: "10.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMy0ychJmLyImYtEmcw5SY3UTMtEGdz5iYllTLz92auAjLwEjLw4SOx4CMzETLkJXY0NXYihSI", + value: "!(bastard-130.19.0.10.0.kos-9eb.sta-157a.pra-bb2.bas-22f)!", + result: { + word: "bastard", + correct: 19, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "10.05.2025", + }, + }, + { + date: "10.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMy0ychJmL0EWNtonc0VWau5CMukjLz4CMx4CMzETLkJXY0NXYihSI", + value: "!(bastard-130.10.3.9.0.nietrz-5a4.bas-22f)!", + result: { + word: "bastard", + correct: 10, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "10.05.2025", + }, + }, + { + date: "10.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMy0ychJmLlRDNtMXYr5CZyQTLyB3cuAjLxEjLz4CNx4CMzETLkJXY0NXYihSI", + value: "!(bastard-130.14.3.11.0.spr-42d.kas-44e.bas-22f)!", + result: { + word: "bastard", + correct: 14, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "10.05.2025", + }, + }, + { + date: "10.05.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMy0ychJmLzETYtMXYw5iYwMTMtQWYu5CMugjLx4CNx4CMzETLkJXY0NXYihSI", + value: "!(bastard-130.14.1.8.0.nad-130b.pas-a13.bas-22f)!", + result: { + word: "bastard", + correct: 14, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "10.05.2025", + }, + }, + { + date: "10.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJjMtMXYuITM40SYyJmLkV2MtIXYm5SO40SYsBnLlZWYtQXZt5iZiJTL1h2YuAjL3EjLz4COx4CMzETLkJXY0NXYihSI", + value: + "!(bastard-130.18.3.17.0.chu-2bf.met-afe.pla-89.far-3ed.bra-812.as-22f)!", + result: { + word: "bastard", + correct: 18, + position: 3, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "10.05.2025", + }, + }, + { + date: "10.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMy0ychJmLkVDOtEGdz5SYxczMtoncw5CMucjL04SNx4CMzETLkJXY0NXYihSI", + value: "!(bastard-130.15.4.7.0.prz-371a.sta-85d.bas-22f)!", + result: { + word: "bastard", + correct: 15, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "10.05.2025", + }, + }, + { + date: "10.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMy0ychJmLmlTMtQ3ch5SYjdTL0pnLkNjZtIHcz5SNyQTLy9mbuAjL0EjL04yNx4CMzETLkJXY0NXYihSI", + value: "!(bastard-130.17.4.14.0.nor-425.spr-f3d.zt-7ca.ast-19f.bas-22f)!", + result: { + word: "bastard", + correct: 17, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "10.05.2025", + }, + }, + { + date: "10.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMy0ycuYGN00ichJmLwgTLyFmauMjMk1ichtmL0YWMtQWe35CMugjLx4SOx4CMzETLkJXY0NXYihSI", + value: "!(bastard-130.19.1.8.0.wyd-1f4.kar-d23.jar-80.bar-44f.s-22f)!", + result: { + word: "bastard", + correct: 19, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "10.05.2025", + }, + }, + { + date: "10.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJjMtMXYi5SZ20iYhRnLidTMtwWYn5SZk1ichBnLlVTLhtWduAjL0EjLz4CMy4CMzETLkJXY0NXYihSI", + value: "!(bastard-130.20.3.14.0.uka-5e.par-de.gal-17b.tab-6e.bas-22f)!", + result: { + word: "bastard", + correct: 20, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "10.05.2025", + }, + }, + { + date: "10.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmMy0ychJmLlR2MtkWb15CZmJmLyUDNx0SY0NnLw0CdzBnLlJWNtUGdz5yN1EWLz92auAjLzEjLy4SNy4CMzETLkJXY0NXYihSI", + value: + "!(bastard-130.25.2.13.0.kos-a57.ste-5be.pst-0.sta-1452.bfd.umi-3de.bas-22f)!", + result: { + word: "bastard", + correct: 25, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "10.05.2025", + }, + }, + { + date: "10.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZyITLzFmYuMGM00CbhZmLmBDNx0SY0NnL3ITLrVXZuAjLyEjLy4COx4CMzETLkJXY0NXYihSI", + value: "!(bastard-130.18.2.12.0.euk-27.sta-140f.fal-40c.bas-22f)!", + result: { + word: "bastard", + correct: 18, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "10.05.2025", + }, + }, + { + date: "10.05.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJjMtMXYi5SY3UTMtEGdz5CMtQ3c15iNhJWLllWbuAjLzEjLx4iNx4CMzETLkJXY0NXYihSI", + value: "!(bastard-130.16.1.13.0.mie-ba6.ust-0.sta-157a.bas-22f)!", + result: { + word: "bastard", + correct: 16, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "10.05.2025", + }, + }, + { + date: "10.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJjMtMXYi5SYkNTLvJHZuU2Mz0CdhtmL5YmNx0SYyRnLzkDOhFTL6JHcuAjL2EjL04iNx4CMzETLkJXY0NXYihSI", + value: + "!(bastard-130.16.4.16.0.prz-1a893.tra-16f9.kat-33e.dro-3da.bas-22f)!", + result: { + word: "bastard", + correct: 16, + position: 4, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "10.05.2025", + }, + }, + { + date: "10.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJjMtMXYi5iM1QTMtEGdz5SYxITNto3bw5CMukjLw4yMx4CMzETLkJXY0NXYihSI", + value: "!(bastard-130.13.0.9.0.poz-521a.sta-1452.bas-22f)!", + result: { + word: "bastard", + correct: 13, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "10.05.2025", + }, + }, + { + date: "10.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmJjMuUmMy0ych5SMx0yY1JmLz0CdhRnLmZjMtQnch5yY2EWLhJ3ZuAjLxEjLy4CMy4CMzETLkJXY0NXYihSI", + value: "!(bastard-130.20.2.11.0.gra-a6c.art-26f.tat-3.buc-11.as-22e.22f)!", + result: { + word: "bastard", + correct: 20, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "10.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/hmm-zupelnie-nie-zgadlem-29-03-2025-flag-pl-diffle-difflepl-grywebowe-37-liter-w" +] = [ + { + date: "29.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2gTLylWbuETLylmZuYTNx0iYuUWMx0yYhJnL1MDZtMXYw5CMuYTMuIjL5EjL4gTLhRmbhJXathSI", + value: "!(miranda-88.19.2.16.0.pas-d35.rac-11e.b-156.fir-1.mir-86)!", + result: { + word: "miranda", + correct: 19, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "29.03.2025", + }, + }, + { + date: "29.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYDOtIXat5CMtQWYuEmZy0CZvJnLlVWNtIXZ35CMuETMuMjL2EjL4gTLhRmbhJXathSI", + value: "!(miranda-88.16.3.11.0.wer-5ee.rod-2fa.ad-0.mir-86)!", + result: { + word: "miranda", + correct: 16, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "29.03.2025", + }, + }, + { + date: "29.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN40icp1mL0UzMx0SY6NnLw4CNuMjLwEjL4gTLhRmbhJXathSI", + value: "!(miranda-88.10.3.4.0.sza-1354.mir-86)!", + result: { + word: "miranda", + correct: 10, + position: 3, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "29.03.2025", + }, + }, + { + date: "29.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2gTLylWbuQmM00icwNnLw4iNuIjLxEjL4gTLhRmbhJXathSI", + value: "!(miranda-88.11.2.6.0.spr-42d.mir-86)!", + result: { + word: "miranda", + correct: 11, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "29.03.2025", + }, + }, + { + date: "29.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2gTLylWbuYGZ3ETLppHZuYWO10yb0NnLmNTMtMWdi5yMx0icpZmLjZTYtEmcn5CMuUTMuIjL2EjL4gTLhRmbhJXathSI", + value: + "!(miranda-88.16.2.15.0.gra-a6c.fir-13.buc-13f.sto-59f.dzi-17df.mir-86)!", + result: { + word: "miranda", + correct: 16, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "29.03.2025", + }, + }, + { + date: "29.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN40icp1mLx0icpZmL0EWNtonc0VWau5CMuATMuEjL3EjL4gTLhRmbhJXathSI", + value: "!(miranda-88.17.1.10.0.nietrz-5a4.fir-1.mir-86)!", + result: { + word: "miranda", + correct: 17, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "29.03.2025", + }, + }, + { + date: "29.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYDOtInLyETMtEWat5yMldTLlJHcuQGOk1CdulmLmJmMtUHaj5CMuMTMuMjLwIjL4gTLhRmbhJXathSI", + value: "!(miranda-88.20.3.13.0.chu-2bf.int-d8d.pre-7e3.mia-112.r-86)!", + result: { + word: "miranda", + correct: 20, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "29.03.2025", + }, + }, + { + date: "29.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYDOuATLylWbuITLtFmcuEjYy0SYyRmL40yavxmLw4SOuQjL5EjL4gTLhRmbhJXathSI", + value: "!(miranda-88.19.4.9.0.lok-8.dra-2b1.ram-2.mir-0.86)!", + result: { + word: "miranda", + correct: 19, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "29.03.2025", + }, + }, + { + date: "29.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2gTLylWbuM2MtEmck5CO0ETLvJ3duMTO4EWMtoncw5CMuMTMuUjL3EjL4gTLhRmbhJXathSI", + value: "!(miranda-88.17.5.13.0.prz-1a893.wro-148.dra-3c.mir-86)!", + result: { + word: "miranda", + correct: 17, + position: 5, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "29.03.2025", + }, + }, + { + date: "29.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN40icp1mLx0icpZmLmZDNtkmY65SMtMmcp5iNyMTLlJHduMGOt4Wey5CMxQTMt42br5CMuYTMuEjL0IjL4gTLhRmbhJXathSI", + value: + "!(miranda-88.24.1.16.0.kon-1410.ryn-8c.tre-326.irc-1.zbi-46f.fir-1.mir-86)!", + result: { + word: "miranda", + correct: 24, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "29.03.2025", + }, + }, + { + date: "29.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYDOtIXat5CZt4Wdy5iM00SYuUTNtomL2EmYtUWat5CMuMTMuAjL0IjL4gTLhRmbhJXathSI", + value: "!(miranda-88.24.0.13.0.mie-ba6.j-55.a-42.run-d.mir-86)!", + result: { + word: "miranda", + correct: 24, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "29.03.2025", + }, + }, + { + date: "29.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN40icp1mLx0icpZmLhFjM10ievBnLw4COuEjL0EjL4gTLhRmbhJXathSI", + value: "!(miranda-88.14.1.8.0.poz-521a.fir-1.mir-86)!", + result: { + word: "miranda", + correct: 14, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "29.03.2025", + }, + }, + { + date: "29.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2gTLylWbuETLylmZuMmYtIXaw5yNy0ya1VmLw4SOuIjL5EjL4gTLhRmbhJXathSI", + value: "!(miranda-88.19.2.9.0.euk-27.pir-bc.fir-1.mir-86)!", + result: { + word: "miranda", + correct: 19, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "29.03.2025", + }, + }, + { + date: "29.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN40icp1mL1cTLyFmbuATLkVncuQjZx0CZ5dnLw4iNuQjL2EjL4gTLhRmbhJXathSI", + value: "!(miranda-88.16.4.6.0.wyd-1f4.rud-0.nar-75.mir-86)!", + result: { + word: "miranda", + correct: 16, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "29.03.2025", + }, + }, + { + date: "29.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2gTLylWbukjMx0CZhJnLhFzNz0ieyBnLw4SOuMjL0EjL4gTLhRmbhJXathSI", + value: "!(miranda-88.14.3.9.0.prz-371a.rad-129.mir-86)!", + result: { + word: "miranda", + correct: 14, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "29.03.2025", + }, + }, + { + date: "29.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYDOtIXat5SMtIXam5CM10ibnlmLyQWNtIXZ35CMuITMuEjLwIjL4gTLhRmbhJXathSI", + value: "!(miranda-88.20.1.12.0.wer-5d2.ign-50.fir-1.mir-86)!", + result: { + word: "miranda", + correct: 20, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "29.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/i-tak-lubie-06-04-2025-diffle-difflepl-20-liter-w-2-slowach-large-green-circle" +] = [ + { + date: "06.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYkFTLqFWbuQzYtMXZn5CMuYjLy4iMx4iN50CdhR3clpWYthSI", + value: "!(majestat-96.12.2.6.0.ges-c4.maj-1db)!", + result: { + word: "majestat", + correct: 12, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "06.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/i-to-tez-nie-01-05-2025-diffle-diffleen-grywebowe-23-letters-in-3-words-large-gr" +] = [ + { + date: "01.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMx0Say9mLhRGNt42bt5SZiJTLhxGcuAjLz4iNuQTMuEjMx0CbhRnbllmcvhSI", + value: "!(oriental-121.14.6.3.0.pla-2be.mon-4da.ori-11)!", + result: { + word: "oriental", + correct: 14, + position: 6, + incorrect: 3, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "01.05.2025", + }, + }, + { + date: "01.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMx4SMy0Say9mLyUTL19WbuY2Ny0CajNjLkRTLpJ3duUmNx0SayBnL3UTLpJnYuQTL29mcuETMtQnbp5SMy0SZoNmLw4SOx4iNuczMuEjMx0CbhRnbllmcvhSI", + value: + "!(oriental-121.37.6.19.0.che-21.int-11.rov-4.bri-57.pri-16e.wri-4d.3ch-27f.mou-52.ori-21.11)!", + result: { + word: "oriental", + correct: 37, + position: 6, + incorrect: 19, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 62, + date: "01.05.2025", + }, + }, + { + date: "01.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETMtkmcv5iM3ETL0hXZuAjL24iMuMTMuEjMx0CbhRnbllmcvhSI", + value: "!(oriental-121.13.2.6.0.ext-172.ori-11)!", + result: { + word: "oriental", + correct: 13, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "01.05.2025", + }, + }, + { + date: "01.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETMtkmcv5iNtUncw5yY10CblJnLyYTLtF2ZuAjL24CNugTMuEjMx0CbhRnbllmcvhSI", + value: "!(oriental-121.18.4.6.0.gam-62.rel-5c.pru-6.ori-11)!", + result: { + word: "oriental", + correct: 18, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "01.05.2025", + }, + }, + { + date: "01.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxETLpJ3buUWZt4WZy5iY2QTL05WauEWL1VmZuAjL24yMuIjMuEjMx0CbhRnbllmcvhSI", + value: "!(oriental-121.22.3.6.0.feu-a.int-46b.ren-ee.ori-11)!", + result: { + word: "oriental", + correct: 22, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "01.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/i-znow-nauka-tym-razem-jednak-latwiejsza-28-04-2025-flag-pl-diffle-difflepl-gryw" +] = [ + { + date: "28.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhRjNtMXZk5CZk1Se0VmLjljMtQXZt5iN30SZpJmLw0SekVmLjljZx0yc5dnLw4iMx4iNuIjMugTMx0CdhxWe0NXZkhSI", + value: + "!(destylat-118.22.6.12.0.wys-1f9c.edy-0.bie-76.met-29c.ety-dd.des-64a)!", + result: { + word: "destylat", + correct: 22, + position: 6, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "28.04.2025", + }, + }, + { + date: "28.04.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhRjNtMXZk5iNhJWLllWbuAjL54SMuITMugTMx0CdhxWe0NXZkhSI", + value: "!(destylat-118.12.1.9.0.mie-ba6.des-64a)!", + result: { + word: "destylat", + correct: 12, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "28.04.2025", + }, + }, + { + date: "28.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGN24iN4UTLzVGZuAjL14CMuMTMugTMx0CdhxWe0NXZkhSI", + value: "!(destylat-118.13.0.5.0.des-586.64a)!", + result: { + word: "destylat", + correct: 13, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "28.04.2025", + }, + }, + { + date: "28.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGN20yclRmLx0ycldmLxkjLkZmMtg2Yz4CM3ETL5B3cukjZ50ycvtmLw4iMx4yMugTMugTMx0CdhxWe0NXZkhSI", + value: + "!(destylat-118.18.3.12.0.kos-9f9.spy-170.3ch-2fd.91.ges-1.des-64a)!", + result: { + word: "destylat", + correct: 18, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "28.04.2025", + }, + }, + { + date: "28.04.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhRjNtMXZk5iZ4MTLrVGbugDN00ybwVnLw4SMx4yMuUTMugTMx0CdhxWe0NXZkhSI", + value: "!(destylat-118.15.3.11.0.upo-448.lek-38f.des-64a)!", + result: { + word: "destylat", + correct: 15, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "28.04.2025", + }, + }, + { + date: "28.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY0YjL1IjNtMXZk5yNyITL0NXZuQTY10ieyRXZp5mLw4yMx4iMuQjMugTMx0CdhxWe0NXZkhSI", + value: "!(destylat-118.24.2.13.0.nietrz-5a4.est-227.des-625.64a)!", + result: { + word: "destylat", + correct: 24, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 39, + date: "28.04.2025", + }, + }, + { + date: "28.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY0YTLzVmLhVjMt0Wek5CMtwWez5iMxUTLyFGcuYmYy0SdoNmLw4yNx4iMucTMugTMx0CdhxWe0NXZkhSI", + value: "!(destylat-118.17.2.17.0.chu-2bf.par-512.syl-0.dym-25a.es-64a)!", + result: { + word: "destylat", + correct: 17, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "28.04.2025", + }, + }, + { + date: "28.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY0YjLwYWMtMXZk5CZyQTLyB3cuAjL54iMuQTMugTMx0CdhxWe0NXZkhSI", + value: "!(destylat-118.14.2.9.0.spr-42d.des-1f0.64a)!", + result: { + word: "destylat", + correct: 14, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "28.04.2025", + }, + }, + { + date: "28.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGN20ycl5yNj1Cb5RmL0ETL1VmZuAjL24CNuUTMugTMx0CdhxWe0NXZkhSI", + value: "!(destylat-118.15.4.6.0.feu-14.dyl-c7.es-64a)!", + result: { + word: "destylat", + correct: 15, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "28.04.2025", + }, + }, + { + date: "28.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGN20yclRmL1QGNtMXZy5yNyITL0NXZuQDM20Se6NnLw4SMx4iMuAjMugTMx0CdhxWe0NXZkhSI", + value: "!(destylat-118.20.2.11.0.szy-604.est-227.res-4d5.des-64a)!", + result: { + word: "destylat", + correct: 20, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "28.04.2025", + }, + }, + { + date: "28.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGN20yclRmL1EmMtUnez5COm1yYuUDZy0ydlRmL1IWLhRXZuMmNh1SYydmLw4iNx4SMuIjMugTMx0CdhxWe0NXZkhSI", + value: + "!(destylat-118.22.1.16.0.gra-a6c.eta-b5.dew-2d5.c-f8.szu-2a5.des-64a)!", + result: { + word: "destylat", + correct: 22, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "28.04.2025", + }, + }, + { + date: "28.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY0YTLzVGZucjMy0CdzVmLxgTL0V2duAjL34CMucTMugTMx0CdhxWe0NXZkhSI", + value: "!(destylat-118.17.0.7.0.wet-81.est-227.des-64a)!", + result: { + word: "destylat", + correct: 17, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "28.04.2025", + }, + }, + { + date: "28.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGN20yclRmLhRmYtQXZt5yM5gTYx0ieyBnLw4SMx4iMuYTMugTMx0CdhxWe0NXZkhSI", + value: "!(destylat-118.16.2.11.0.prz-1a893.met-bda.des-64a)!", + result: { + word: "destylat", + correct: 16, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "28.04.2025", + }, + }, + { + date: "28.04.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGN24CMmFTLzVGZugzYxETLyB3cuAjL14yMuQTMugTMx0CdhxWe0NXZkhSI", + value: "!(destylat-118.14.3.5.0.spr-11c8.des-1f0.64a)!", + result: { + word: "destylat", + correct: 14, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "28.04.2025", + }, + }, + { + date: "28.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY0YTLzVGZuUDZy0CdlBnL3ITLrVXZuAjL54SMuUTMugTMx0CdhxWe0NXZkhSI", + value: "!(destylat-118.15.1.9.0.euk-27.pet-2d5.des-64a)!", + result: { + word: "destylat", + correct: 15, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "28.04.2025", + }, + }, + { + date: "28.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhRjNtMXZk5yNyITL0NXZuEWMyUTL69GcuAjL34iMuUTMugTMx0CdhxWe0NXZkhSI", + value: "!(destylat-118.15.2.7.0.poz-521a.est-227.des-64a)!", + result: { + word: "destylat", + correct: 15, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "28.04.2025", + }, + }, + { + date: "28.04.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY0YTLzVGZuEWM3MTL6JHcuAjL24SMuITMugTMx0CdhxWe0NXZkhSI", + value: "!(destylat-118.12.1.6.0.prz-371a.des-64a)!", + result: { + word: "destylat", + correct: 12, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "28.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/jest-ok-07-03-2025-diffle-difflepl-grywebowe-18-liter-w-3-slowach-large-green-ci" +] = [ + { + date: "07.03.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50ybyZmLjNTNt8mc05SO1YmMt42br5CMuYjLy4CMx4iN20Cdu9mcmhSI", + value: "!(front-66.10.2.6.0.kon-2f59.tro-53c.fro-9b)!", + result: { + word: "front", + correct: 10, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50ybyZmLjNTNt8mc05CZ0QWMts2bw5CMucjLy4CMx4iN20Cdu9mcmhSI", + value: "!(front-66.10.2.7.0.pok-1d4d.tro-53c.fro-9b)!", + result: { + word: "front", + correct: 10, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50ybyZmLhNWLr9mcuMTNtMXej5CMukjLy4CMx4iN20Cdu9mcmhSI", + value: "!(front-66.10.2.9.0.cys-53.rok-ca.fro-9b)!", + result: { + word: "front", + correct: 10, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50ybyZmL3MGMx0ic0NnLjJTYtQXZt5SYykzMtQ2bw5iZiJTL1h2YuAjL5EjLx4CNx4iN20Cdu9mcmhSI", + value: "!(front-66.14.1.19.0.chu-2bf.pod-392a.met-a2c.str-10c7.fro-9b)!", + result: { + word: "front", + correct: 14, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50ybyZmLjNTNt8mc05SYkJjMts2bw5CMugjLx4SMx4iN20Cdu9mcmhSI", + value: "!(front-66.11.1.8.0.pok-22da.tro-53c.fro-9b)!", + result: { + word: "front", + correct: 11, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWOuQjNx0ybyZmLwYTMt0Gaj5SYlVTLvJ3ZuYjMwETLs92auEWM3MTL6JHcuAjL4EjLx4yNx4iN20Cdu9mcmhSI", + value: + "!(front-66.17.1.18.0.prz-371a.kol-1026.gro-5ea.chm-160.fro-164.9b)!", + result: { + word: "front", + correct: 17, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50ybyZmLjNTNt8mc05SO1YmMt42br5CMuYjLy4CMx4iN20Cdu9mcmhSI", + value: "!(front-66.10.2.6.0.kon-2f59.tro-53c.fro-9b)!", + result: { + word: "front", + correct: 10, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKilTLvJnZuM2M10ybyRnL1YWNt8mci5CZyQTLyB3cuAjLxEjLx4CNx4iN20Cdu9mcmhSI", + value: "!(front-66.14.1.11.0.spr-42d.bro-5f5.tro-53c.fro-9b)!", + result: { + word: "front", + correct: 14, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKilTLvJnZuMTO10ybyRnL5ATNt8mci5SZlRTLvJHZuU2NzETLhp3cuYWL39mcukTMjFTLt9GcuAjL0EjLy4SOx4iN20Cdu9mcmhSI", + value: + "!(front-66.19.2.14.0.pom-1c19.row-f.sza-137e.dro-4ee.bro-509.tro-593.fro-9b)!", + result: { + word: "front", + correct: 19, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 35, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50ybyZmLjNTNt8mc05iNkdjMtoncw5CMukjLx4SMx4iN20Cdu9mcmhSI", + value: "!(front-66.11.1.9.0.prz-27d6.tro-53c.fro-9b)!", + result: { + word: "front", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50ybyZmL2YWMtQ3by5CO4cTLvJ3auMTYt0WYn5CMukjLx4iMx4iN20Cdu9mcmhSI", + value: "!(front-66.12.1.9.0.gam-a3.kro-788.rot-1f6.fro-9b)!", + result: { + word: "front", + correct: 12, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50ybyZmLxIWLu9mcukDNz0ybpBnL5UTLrp3cuAjL3EjLx4iMx4iN20Cdu9mcmhSI", + value: "!(front-66.12.1.17.0.szk-59.pio-349.ron-b1.fro-9b)!", + result: { + word: "front", + correct: 12, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKilTLvJnZuM2M10ybyRnL0YWMtQWe35CMucjLx4CMx4iN20Cdu9mcmhSI", + value: "!(front-66.10.1.7.0.wyd-1f4.tro-53c.fro-9b)!", + result: { + word: "front", + correct: 10, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKilTLvJnZuczYwETLyR3cuYWMtsWdl5CMucjLw4yMx4iN20Cdu9mcmhSI", + value: "!(front-66.13.0.7.0.euk-1f.str-10c7.fro-9b)!", + result: { + word: "front", + correct: 13, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWOt8mcuMTM30icvZmLzcTLoN2MuAjNt8GZ35SMi1ibvJnL3MGMx0ic0NnLzkDOhFTL6JHcuAjL5EjLy4CMy4iN20Cdu9mcmhSI", + value: + "!(front-66.20.2.19.0.prz-1a893.str-10c7.ron-b1.wdo-60.3ch-73.for-713.ro-9b)!", + result: { + word: "front", + correct: 20, + position: 2, + incorrect: 19, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50ybyZmL1EWMtUnck5SYh1ibvxmLhNDNt42bt5iN3ITLvp3cuAjLzEjLw4CNx4iN20Cdu9mcmhSI", + value: "!(front-66.14.0.13.0.szo-276.mon-43a.lon-aa.dru-1a5.fro-9b)!", + result: { + word: "front", + correct: 14, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "Tysiek", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50yby5yYkJTLu9mZuETZz0CajNjL3kTMtQ3bu5iNhJWLllWbuAjLzEjLy4SNx4iN20Cdu9mcmhSI", + value: "!(front-66.15.2.13.0.mie-ba6.not-197.3ch-3e1.fon-2dc.ro-9b)!", + result: { + word: "front", + correct: 15, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50yby5yYkJTLu9mZuEWYt42bs5SOwITLu92ZuEWMyUTL69GcuAjLwEjLw4yNx4iN20Cdu9mcmhSI", + value: "!(front-66.17.0.10.0.poz-521a.gon-209.lon-aa.fon-2dc.ro-9b)!", + result: { + word: "front", + correct: 17, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKilTLvJnZuAjZ00yclRmLw4SOuEjL34iN20Cdu9mcmhSI", + value: "!(front-66.7.1.9.0.des-4f0.fro-9b)!", + result: { + word: "front", + correct: 7, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "07.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/latwe-dzisiaj-08-04-2025-diffle-difflepl-grywebowe-23-litery-w-4-slowach-large-g" +] = [ + { + date: "08.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1MTNtkGbr5SNx0CcpdmL1EGZtAXYu5CN3ETL5p3cuAjLwEjLy4SMx4CO50ycwlGbrhSI", + value: "!(klips-98.11.2.10.0.szy-174.nap-da5.gip-15.kli-535)!", + result: { + word: "klips", + correct: 11, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "08.04.2025", + }, + }, + { + date: "08.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1MTNtkGbr5SNzETLzlGbuMTNlJTLzl3duAjLxEjLx4CMx4CO50ycwlGbrhSI", + value: "!(klips-98.10.1.11.0.wys-2e53.lis-135.kli-535)!", + result: { + word: "klips", + correct: 10, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "08.04.2025", + }, + }, + { + date: "08.04.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUzM10Sas5iM4ITLsV3auEWLptWZuEGZyITLr9GcuAjLxEjLx4yMx4CO50ycwlGbrhSI", + value: "!(klips-98.13.1.11.0.pok-22da.eki-a.kul-282.li-535)!", + result: { + word: "klips", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "08.04.2025", + }, + }, + { + date: "08.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNzUTLpx2aukjMtkGbw5iMykTL5JHduQmYtIWan5yYiBTMtkGcz5iZiJTL1h2YuAjL3EjL14CNx4CO50ycwlGbrhSI", + value: + "!(klips-98.14.5.17.0.chu-2bf.spi-10bc.gib-bd.try-922.pli-29.kli-535)!", + result: { + word: "klips", + correct: 14, + position: 5, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "08.04.2025", + }, + }, + { + date: "08.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUzM10SastmLiFzNtAnez5CN2MjMt8mcw5CMuITMuMjL44CO50ycwlGbrhSI", + value: "!(klips-98.8.3.12.0.pro-2364.szp-71b.kli-535)!", + result: { + word: "klips", + correct: 8, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "08.04.2025", + }, + }, + { + date: "08.04.2025", + nick: "hapaczuri", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1MTNuMmY00SastmL3YWLsVHduQ2M4ETL6JHcuAjLxEjLx4yMx4CO50ycwlGbrhSI", + value: "!(klips-98.13.1.11.0.prz-183d.tul-f7.kli-4bc.535)!", + result: { + word: "klips", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "08.04.2025", + }, + }, + { + date: "08.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNzUjLjJGNtkGbr5SOy0SasBnL2gTNtUWa35CMxYTLhJ3ZuAjLxEjLz4yMx4CO50ycwlGbrhSI", + value: "!(klips-98.13.3.11.0.gra-610.wie-586.pli-29.kli-4bc.535)!", + result: { + word: "klips", + correct: 13, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "08.04.2025", + }, + }, + { + date: "08.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1MTNuMmY00SastmLzkDOhFTL6JHcuAjLwEjLx4SMx4CO50ycwlGbrhSI", + value: "!(klips-98.11.1.10.0.prz-1a893.kli-4bc.535)!", + result: { + word: "klips", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "08.04.2025", + }, + }, + { + date: "08.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNzUTLpx2auQ2NtkGbz5SO3UjMtAXY65CMuMTMuIjL54CO50ycwlGbrhSI", + value: "!(klips-98.9.2.13.0.zap-2579.sli-7d.kli-535)!", + result: { + word: "klips", + correct: 9, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "08.04.2025", + }, + }, + { + date: "08.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUzM10SastmLiJTMtkGbi5SMxgjMtMXe35CMuITMuEjL54CO50ycwlGbrhSI", + value: "!(klips-98.9.1.12.0.wys-2811.bli-12b.kli-535)!", + result: { + word: "klips", + correct: 9, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "08.04.2025", + }, + }, + { + date: "08.04.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1MTNtkGbr5SN2ETLzlGcuMTM50iez9mLw4yNuMjL44CO50ycwlGbrhSI", + value: "!(klips-98.8.3.7.0.osz-913.pis-165.kli-535)!", + result: { + word: "klips", + correct: 8, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "08.04.2025", + }, + }, + { + date: "08.04.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNzUTLpxmLhBzMtwWdr5iNhJWLllWbuAjLyEjLx4iMx4CO50ycwlGbrhSI", + value: "!(klips-98.12.1.12.0.mie-ba6.kul-30a.li-535)!", + result: { + word: "klips", + correct: 12, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "08.04.2025", + }, + }, + { + date: "08.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNzUTLpx2auImMx0SasJmL3ITLrVXZuAjLwEjLx4CMx4CO50ycwlGbrhSI", + value: "!(klips-98.10.1.10.0.euk-27.bli-12b.kli-535)!", + result: { + word: "klips", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "08.04.2025", + }, + }, + { + date: "08.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1MTNtkGbr5iYyETLpxmYukjM30CctlmL1YTMtMXaw5CNhVTL6JHdllmbuAjL1EjL24SNx4CO50ycwlGbrhSI", + value: "!(klips-98.15.6.15.0.nietrz-5a4.pis-165.imp-729.bli-12b.kli-535)!", + result: { + word: "klips", + correct: 15, + position: 6, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "08.04.2025", + }, + }, + { + date: "08.04.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1MTNtkGbuIDNz0SZp5SO1YmMt42br5CMukjLw4iMx4CO50ycwlGbrhSI", + value: "!(klips-98.12.0.9.0.kon-2f59.ie-342.li-535)!", + result: { + word: "klips", + correct: 12, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "08.04.2025", + }, + }, + { + date: "08.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUzM10SastmLhFjM10ievBnLw4iNuIjL34CO50ycwlGbrhSI", + value: "!(klips-98.7.2.6.0.poz-521a.kli-535)!", + result: { + word: "klips", + correct: 7, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "08.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/latwiutkie-05-03-2025-flag-pl-diffle-difflepl-grywebowe-24-litery-w-4-slowach-la" +] = [ + { + date: "05.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0Sb1dmL2QTLmVXbukDZtUHaj5CMk1SaiFmLw4yMx4iMukjL0YTLh1WdnhSI", + value: "!(guma-64.9.2.13.0.abi-d0.chu-d9.muf-46.gum-0)!", + result: { + word: "guma", + correct: 9, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0Sb1dmLw0Sb1RmL2ETLtVHduIzNt0We35SM1EjMt8mcw5CMuQTMuAjLyEjL0YTLh1WdnhSI", + value: "!(guma-64.12.0.14.0.pro-2151.wym-72.tum-16.dum-0.gum-0)!", + result: { + word: "guma", + correct: 12, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLtV3ZuATLtV3cuATLmVXbuUmYz0ic1tmL0cDNt8Gc15CMugTMuEjLyEjL0YTLh1WdnhSI", + value: "!(guma-64.12.1.18.0.upo-474.kur-3be.muf-0.sum-0.gum-0)!", + result: { + word: "guma", + correct: 12, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0Sb1dmLw0Sb1BnLw0Sb1NmLw0Sb1RmLw0Sb1NnL3IDNtIWds5CMuETMuAjL4EjL0YTLh1WdnhSI", + value: "!(guma-64.18.0.11.0.lub-427.sum-0.dum-0.cum-0.pum-0.gum-0)!", + result: { + word: "guma", + correct: 18, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 29, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMt0Wdn5yM2MTLoN2MuMzNy0CbhBnL5UjZy0ibvtmLw4yMx4CMugjL0YTLh1WdnhSI", + value: "!(guma-64.8.0.13.0.kon-2f59.pal-273.3ch-363.gum-0)!", + result: { + word: "guma", + correct: 8, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLtV3ZuATLtV3cuATLtVnauUmYtMWZk5SYkJjMts2bw5CMuYTMuAjLyEjL0YTLh1WdnhSI", + value: "!(guma-64.12.0.16.0.pok-22da.dec-be.jum-0.sum-0.gum-0)!", + result: { + word: "guma", + correct: 12, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMt0Wdn5SZ4MTLtFWbuQmM00icwNnLw4yMx4SMucjL0YTLh1WdnhSI", + value: "!(guma-64.7.1.13.0.spr-42d.mam-38e.gum-0)!", + result: { + word: "guma", + correct: 7, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "pingWIN", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMt0Wdn5CMtcWam5SZ1ETLyBXYuAjL54CMucjL0YTLh1WdnhSI", + value: "!(guma-64.7.0.9.0.apr-15e.fig-0.gum-0)!", + result: { + word: "guma", + correct: 7, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 16, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLtV3ZukTNz0CajNjL5QzMt8Waw5SO10ya6NnLw4SOx4SMugjL0YTLh1WdnhSI", + value: "!(guma-64.8.1.19.0.szk-59.pio-349.3ch-359.gum-0)!", + result: { + word: "guma", + correct: 8, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMt0Wdn5CMt0Wdr5CMtYWdt5CMtQWdk5CMtAXdw5CO10yc1xmLmJmMtUHaj5CMugTMuEjL3EjL0YTLh1WdnhSI", + value: "!(guma-64.17.1.18.0.chu-2bf.lus-58.pup-0.dud-0.muf-0.kum-0.gum-0)!", + result: { + word: "guma", + correct: 17, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 36, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLtV3ZuATLtV3cuATLtVHZuIWLs12buM2YlVTMtoncw5CMuQTMuAjLyEjL0YTLh1WdnhSI", + value: "!(guma-64.12.0.14.0.prz-15ecc.oml-b.dum-0.sum-0.gum-0)!", + result: { + word: "guma", + correct: 12, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLtV3ZukTLjlXbuEjNi1CbvtmLhFzNz0ieyBnLw4yNx4CMugjL0YTLh1WdnhSI", + value: "!(guma-64.8.0.17.0.prz-371a.kol-b61.myc-9.gum-0)!", + result: { + word: "guma", + correct: 8, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLtV3ZuQTY10ieyRXZp5mLw4CNx4CMuUjL0YTLh1WdnhSI", + value: "!(guma-64.5.0.14.0.nietrz-5a4.gum-0)!", + result: { + word: "guma", + correct: 5, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0Sb1dmL3QjMto2b35yM5gTYx0ieyBnLw4yNx4CMucjL0YTLh1WdnhSI", + value: "!(guma-64.7.0.17.0.prz-1a893.woj-247.gum-0)!", + result: { + word: "guma", + correct: 7, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0SbucDNtwWdn5iZx0ya1VmLw4CMx4CMukjL0YTLh1WdnhSI", + value: "!(guma-64.9.0.10.0.euk-1f.gul-47.m-0)!", + result: { + word: "guma", + correct: 9, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMt0WduATLh1mLzEWLtF2ZuAjL04SMukjL0YTLh1WdnhSI", + value: "!(guma-64.9.1.4.0.gam-a3.ma-0.um-0)!", + result: { + word: "guma", + correct: 9, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 14, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0Sb1dmLw0Sb1NnLw0SbppnLjdzNtI3bt5CMuATMuAjLxEjL0YTLh1WdnhSI", + value: "!(guma-64.11.0.10.0.mor-77c.zim-0.sum-0.gum-0)!", + result: { + word: "guma", + correct: 11, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLtV3ZucTYx0CajNjL5cTNy0CchpnLw4CNx4CMucjL0YTLh1WdnhSI", + value: "!(guma-64.7.0.14.0.zap-2579.3ch-1a7.gum-0)!", + result: { + word: "guma", + correct: 7, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLtV3ZuATLtVHcuYTYi1SZp1mLw4yMx4CMukjL0YTLh1WdnhSI", + value: "!(guma-64.9.0.13.0.mie-ba6.pum-0.gum-0)!", + result: { + word: "guma", + correct: 9, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "Tysiek", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0Sb15SN5ETLtF2ZuYTYi1SZp1mLw4CNx4CMukjL0YTLh1WdnhSI", + value: "!(guma-64.9.0.14.0.mie-ba6.gam-195.um-0)!", + result: { + word: "guma", + correct: 9, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMt0Wdn5CMt0Wdw5CMx0ych1mLjFzNt0WZk5CMucTMuAjLxEjL0YTLh1WdnhSI", + value: "!(guma-64.11.0.17.0.dem-71c.mas-10.pum-0.gum-0)!", + result: { + word: "guma", + correct: 11, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "05.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/mam-ochote-otagowac-polityka-11-05-2025-flag-pl-diffle-difflepl-grywebowe-47-lit" +] = [ + { + date: "11.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzgTLrlmbuMzYy0SZo5CZmZTLll2YuQ2Yl1Sb5dnLyE2Nt8mcw5CMuYTMuYjL1IjLxMTMtknbtVmejtWauhSI", + value: "!(nikczemny-131.25.6.16.0.pro-7a2.wym-ecd.cie-6fd.he-2c3.nik-83)!", + result: { + word: "nikczemny", + correct: 25, + position: 6, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 47, + date: "11.05.2025", + }, + }, + { + date: "11.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzgTLrlmbucTN00CajNjL4YTLrVnYuIWZ50ycvtmLw4yNuIjL2EjLxMTMtknbtVmejtWauhSI", + value: "!(nikczemny-131.16.2.7.0.kos-9eb.buk-68.3ch-457.nik-83)!", + result: { + word: "nikczemny", + correct: 16, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "11.05.2025", + }, + }, + { + date: "11.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzgTLrlmbuITOz0SastmLkJDNtIHcz5CMuETMuMjL3EjLxMTMtknbtVmejtWauhSI", + value: "!(nikczemny-131.17.3.11.0.spr-42d.kli-392.nik-83)!", + result: { + word: "nikczemny", + correct: 17, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "11.05.2025", + }, + }, + { + date: "11.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzgTLrlmbuQjNx0yYptmL3gDNtUmeuYmYy0SdoNmLw4yNuQjL5EjLxMTMtknbtVmejtWauhSI", + value: "!(nikczemny-131.19.4.7.0.chu-2bf.ze-487.kic-164.nik-83)!", + result: { + word: "nikczemny", + correct: 19, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "11.05.2025", + }, + }, + { + date: "11.05.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzgTLrlmLiBzMx0CZh5mLw4iNuIjLyEjLxMTMtknbtVmejtWauhSI", + value: "!(nikczemny-131.12.2.6.0.nad-130b.ik-83)!", + result: { + word: "nikczemny", + correct: 12, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "11.05.2025", + }, + }, + { + date: "11.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzgjLmhTMtsmL0EWNtonc0VWau5CMuATMuMjL3EjLxMTMtknbtVmejtWauhSI", + value: "!(nikczemny-131.17.3.10.0.nietrz-5a4.k-18f.83)!", + result: { + word: "nikczemny", + correct: 17, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "11.05.2025", + }, + }, + { + date: "11.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDOtsWau5CMhFTL1h2YuITOtsmLzITL0lmbuMmNh1SYydmLw4SOuEjLxIjLxMTMtknbtVmejtWauhSI", + value: "!(nikczemny-131.21.1.9.0.gra-a6c.nit-23.k-92.chu-1a0.nik-83)!", + result: { + word: "nikczemny", + correct: 21, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "11.05.2025", + }, + }, + { + date: "11.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM40yap5mL1MjZt42br5yM5gTYx0ieyBnLw4COuUjL4EjLxMTMtknbtVmejtWauhSI", + value: "!(nikczemny-131.18.5.8.0.prz-1a893.kon-f35.nik-83)!", + result: { + word: "nikczemny", + correct: 18, + position: 5, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "11.05.2025", + }, + }, + { + date: "11.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDOtsWau5SY50Cbp1mLhFzNz0ieyBnLw4SOuMjL1EjLxMTMtknbtVmejtWauhSI", + value: "!(nikczemny-131.15.3.9.0.prz-371a.mil-9a.nik-83)!", + result: { + word: "nikczemny", + correct: 15, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "11.05.2025", + }, + }, + { + date: "11.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDOtsWau5iNiJTLjp3cuQjZx0CZ5dnLw4yNuMjL3EjLxMTMtknbtVmejtWauhSI", + value: "!(nikczemny-131.17.3.7.0.wyd-1f4.szc-2b6.nik-83)!", + result: { + word: "nikczemny", + correct: 17, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "11.05.2025", + }, + }, + { + date: "11.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM40yap5mL1Q2MtUWaw5yNy0ya1VmLw4SOuIjL3EjLxMTMtknbtVmejtWauhSI", + value: "!(nikczemny-131.17.2.9.0.euk-27.pie-3d5.nik-83)!", + result: { + word: "nikczemny", + correct: 17, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "11.05.2025", + }, + }, + { + date: "11.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDOtsWau5iM0ITLvt2buQWNt0WZuIGOtcXYr5CMuETMuMjLwIjLxMTMtknbtVmejtWauhSI", + value: "!(nikczemny-131.20.3.11.0.kaw-8b.em-5d.oko-242.nik-83)!", + result: { + word: "nikczemny", + correct: 20, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "11.05.2025", + }, + }, + { + date: "11.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzgTLrlmbukDNy0CZv1mLw4iNuMjLyEjLxMTMtknbtVmejtWauhSI", + value: "!(nikczemny-131.12.3.6.0.mod-249.nik-83)!", + result: { + word: "nikczemny", + correct: 12, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "11.05.2025", + }, + }, + { + date: "11.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM40yap5mLhFjM10ievBnLw4CNuMjLyEjLxMTMtknbtVmejtWauhSI", + value: "!(nikczemny-131.12.3.4.0.poz-521a.nik-83)!", + result: { + word: "nikczemny", + correct: 12, + position: 3, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "11.05.2025", + }, + }, + { + date: "11.05.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzgTLrlmbuYTYi1SZp1mLw4yNuQjLyEjLxMTMtknbtVmejtWauhSI", + value: "!(nikczemny-131.12.4.7.0.mie-ba6.nik-83)!", + result: { + word: "nikczemny", + correct: 12, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "11.05.2025", + }, + }, + { + date: "11.05.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDOtsWau5CZmZTLll2YuQGNx0SYvtmLw4iNuIjL3EjLxMTMtknbtVmejtWauhSI", + value: "!(nikczemny-131.17.2.6.0.koa-14d.cie-6fd.nik-83)!", + result: { + word: "nikczemny", + correct: 17, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "11.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/moze-byc-zwodnicze-14-04-2025-diffle-difflepl-grywebowe-29-liter-w-5-slowach-lar" +] = [ + { + date: "14.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2YjNtc3bu5CNkNTLoN2MuIjMtMWdt5yNlVTLyF2ZuIDNx0yalJnLw4COuIjL5EjL0ATMtsWZk9mcvd3buhSI", + value: "!(noworodek-104.19.2.8.0.rek-142.gar-5e7.muc-22.3ch-3d4.now-666)!", + result: { + word: "noworodek", + correct: 19, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "14.04.2025", + }, + }, + { + date: "14.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYjN20ydv5mL2kDMy0ichtmLw4yMuIjLzEjL0ATMtsWZk9mcvd3buhSI", + value: "!(noworodek-104.13.2.3.0.kar-2096.now-666)!", + result: { + word: "noworodek", + correct: 13, + position: 2, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "14.04.2025", + }, + }, + { + date: "14.04.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN2YTL39mbuMmYh1icvtmLhRmMy0yavBnLw4iNuUjL2EjL0ATMtsWZk9mcvd3buhSI", + value: "!(noworodek-104.16.5.6.0.pok-22da.kor-abc.now-666)!", + result: { + word: "noworodek", + correct: 16, + position: 5, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "14.04.2025", + }, + }, + { + date: "14.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN2YTL39mbuQmM00icwNnLw4iNuIjLzEjL0ATMtsWZk9mcvd3buhSI", + value: "!(noworodek-104.13.2.6.0.spr-42d.now-666)!", + result: { + word: "noworodek", + correct: 13, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "14.04.2025", + }, + }, + { + date: "14.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN2YTL39mbuATNtQ2br5COzETLy92ZuIWYtc3bu5CMxETLk9GbuYmM40ydi9mLlhTN50CZvBnLmJmMtUHaj5CMuUTMukjLyMjL0ATMtsWZk9mcvd3buhSI", + value: + "!(noworodek-104.32.9.15.0.chu-2bf.pod-958e.obw-82f.lod-110.now-ab.gor-138.kod-50.now-666)!", + result: { + word: "noworodek", + correct: 32, + position: 9, + incorrect: 15, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 56, + date: "14.04.2025", + }, + }, + { + date: "14.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN2YTL39mbuMmZt82dk5SYh1icvdnLw0SdvZmL50SZy5iYyczMtMXe35CMuITMuMjL3IjL0ATMtsWZk9mcvd3buhSI", + value: + "!(noworodek-104.27.3.12.0.wys-372b.re-9.fou-0.wor-aa.dwo-fc.now-666)!", + result: { + word: "noworodek", + correct: 27, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 42, + date: "14.04.2025", + }, + }, + { + date: "14.04.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2YjNtcnLhVTLy9mLiBzMx0CZh5mLw4COuMjL3EjL0ATMtsWZk9mcvd3buhSI", + value: "!(noworodek-104.17.3.8.0.nad-130b.or-5a.w-666)!", + result: { + word: "noworodek", + correct: 17, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "14.04.2025", + }, + }, + { + date: "14.04.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN2YTL39mbukzM50ic5dnLhFzNz0ieyBnLw4COuMjL2EjL0ATMtsWZk9mcvd3buhSI", + value: "!(noworodek-104.16.3.8.0.prz-371a.wyr-939.now-666)!", + result: { + word: "noworodek", + correct: 16, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "14.04.2025", + }, + }, + { + date: "14.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2YjNtcnLhlTLy9mbuMmNh1SYydmLw4yMuEjL2EjL0ATMtsWZk9mcvd3buhSI", + value: "!(noworodek-104.16.1.3.0.gra-a6c.nor-9a.w-666)!", + result: { + word: "noworodek", + correct: 16, + position: 1, + incorrect: 3, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "14.04.2025", + }, + }, + { + date: "14.04.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYjN20ydv5mLykTLuVncucDMz0SYyRnLw4iNuIjLzEjL0ATMtsWZk9mcvd3buhSI", + value: "!(noworodek-104.13.2.6.0.tra-307.run-92.now-666)!", + result: { + word: "noworodek", + correct: 13, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "14.04.2025", + }, + }, + { + date: "14.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2YjNuIWYtc3bu5SMtUGZuQjZx0CZ5dnLw4iNuIjL5EjL0ATMtsWZk9mcvd3buhSI", + value: "!(noworodek-104.19.2.6.0.wyd-1f4.de-1.now-ab.666)!", + result: { + word: "noworodek", + correct: 19, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "14.04.2025", + }, + }, + { + date: "14.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2YjNtc3bu5SYh1icvdnLhNjMtUGbv5CM0EWLoN2cuUWNtE2a15CMuETMuIjL0IjL0ATMtsWZk9mcvd3buhSI", + value: "!(noworodek-104.24.2.11.0.uka-5e.sch-a40.ole-23a.wor-aa.now-666)!", + result: { + word: "noworodek", + correct: 24, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "14.04.2025", + }, + }, + { + date: "14.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN2YTL39mbukTY10ybyJmLhVWY50ievJnLw4SOuQjL2EjL0ATMtsWZk9mcvd3buhSI", + value: "!(noworodek-104.16.4.9.0.roz-9aea.bro-5a9.now-666)!", + result: { + word: "noworodek", + correct: 16, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "14.04.2025", + }, + }, + { + date: "14.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2YjNtc3buYWMtIXduQTY10ieyRXZp5mLw4SOuMjL3EjL0ATMtsWZk9mcvd3buhSI", + value: "!(noworodek-104.17.3.9.0.nietrz-5a4.ur-1f.ow-666)!", + result: { + word: "noworodek", + correct: 17, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "14.04.2025", + }, + }, + { + date: "14.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYjN20ydv5mL4IjYtQWZq5yNy0ya1VmLw4yNuQjL2EjL0ATMtsWZk9mcvd3buhSI", + value: "!(noworodek-104.16.4.7.0.euk-27.jed-b28.now-666)!", + result: { + word: "noworodek", + correct: 16, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "14.04.2025", + }, + }, + { + date: "14.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN2YTL39mbucDNy0iavdnLhlTLy9mbuMTO4EWMtoncw5CMuMTMuIjL5EjL0ATMtsWZk9mcvd3buhSI", + value: "!(noworodek-104.19.2.13.0.prz-1a893.nor-9a.woj-247.now-666)!", + result: { + word: "noworodek", + correct: 19, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "14.04.2025", + }, + }, + { + date: "14.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2YjNtc3bu5CM3ETLvJ3duEWZ20ic1tmLhlTLy9mbuYzMx0ybudmLiJTMtwWZq5SYxITNto3bw5CMuQTMuQjLxMjL0ATMtsWZk9mcvd3buhSI", + value: + "!(noworodek-104.31.4.14.0.poz-521a.jel-12b.gno-136.nor-9a.kur-6ea.wro-170.now-666)!", + result: { + word: "noworodek", + correct: 31, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 49, + date: "14.04.2025", + }, + }, + { + date: "14.04.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN2YTL39mbuYTYi1SZp1mLw4SOuIjLyEjL0ATMtsWZk9mcvd3buhSI", + value: "!(noworodek-104.12.2.9.0.mie-ba6.now-666)!", + result: { + word: "noworodek", + correct: 12, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "14.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nic-mi-sie-nie-chcialo-ulozyc-dobrze-ze-slowo-pomocnicze-w-koncu-dobrze-weszlo-i" +] = [ + { + date: "06.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYkFTLqFWbuIWNz0CajNjL1MWLtF2ZuQTOz0ichhmLwgTLw92auAjLwEjLy4COx4iN50CdhR3clpWYthSI", + value: "!(majestat-96.18.2.10.0.kop-80.har-394.gam-c5.3ch-35b.maj-1db)!", + result: { + word: "majestat", + correct: 18, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "06.04.2025", + }, + }, + { + date: "06.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYkFTLqFWbuQzYtMXZn5CMuYjLy4iMx4iN50CdhR3clpWYthSI", + value: "!(majestat-96.12.2.6.0.ges-c4.maj-1db)!", + result: { + word: "majestat", + correct: 12, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "06.04.2025", + }, + }, + { + date: "06.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiRWMtomL1QGZtIXYt5CMucjLx4yMx4iN50CdhR3clpWYthSI", + value: "!(majestat-96.13.1.7.0.mar-dd5.j-1db)!", + result: { + word: "majestat", + correct: 13, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "06.04.2025", + }, + }, + { + date: "06.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYkFTLqFWbuIWNz0CajNjLjFWLqVGbuYTO10SeyRnL1QjMtg2Yz4iZiJTL1h2YuAjL0EjLx4SMy4iN50CdhR3clpWYthSI", + value: + "!(majestat-96.21.1.14.0.chu-2bf.3ch-245.try-596.lej-ac.3ch-35b.maj-1db)!", + result: { + word: "majestat", + correct: 21, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "06.04.2025", + }, + }, + { + date: "06.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIGZx0iah1mL5IjMtQ3cl5CZyQTLyB3cuAjLwEjL14CNx4iN50CdhR3clpWYthSI", + value: "!(majestat-96.14.5.10.0.spr-42d.est-229.maj-1db)!", + result: { + word: "majestat", + correct: 14, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "06.04.2025", + }, + }, + { + date: "06.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIGZx0iauIzMy0Cbh1mLjJWMtMXYw5CNmFTLkl3duAjLxEjLx4SNx4iN50CdhR3clpWYthSI", + value: "!(majestat-96.15.1.11.0.wyd-1f4.pas-1bc.mal-232.j-1db)!", + result: { + word: "majestat", + correct: 15, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "06.04.2025", + }, + }, + { + date: "06.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYkFTLqFWbuAjMtgWZw5yY20iYlRmL3ITLrVXZuAjLxEjLy4SOx4iN50CdhR3clpWYthSI", + value: "!(majestat-96.19.2.11.0.euk-27.deb-6c.peh-20.maj-1db)!", + result: { + word: "majestat", + correct: 19, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "06.04.2025", + }, + }, + { + date: "06.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIGZx0iah1mLjVWLvdneuADOtMWdk5SZ0ETLlRXYuQWNtMXYs5yY2EWLhJ3ZuAjL0EjLy4COx4iN50CdhR3clpWYthSI", + value: + "!(majestat-96.18.2.14.0.gra-a6c.las-5d.ate-14e.duc-80.zwo-ec.maj-1db)!", + result: { + word: "majestat", + correct: 18, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "06.04.2025", + }, + }, + { + date: "06.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIGZx0iah1mLiJTLlt2cuQjMx0SY0VmLzkDOhFTL6JHcuAjLyEjL04iNx4iN50CdhR3clpWYthSI", + value: "!(majestat-96.16.4.12.0.prz-1a893.eta-124.ske-2b.maj-1db)!", + result: { + word: "majestat", + correct: 16, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "06.04.2025", + }, + }, + { + date: "06.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYkFTLqFWbuIWLtVGduYGOt02br5CMucjLz4CNx4iN50CdhR3clpWYthSI", + value: "!(majestat-96.14.3.7.0.kom-8f.tem-b.maj-1db)!", + result: { + word: "majestat", + correct: 14, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "06.04.2025", + }, + }, + { + date: "06.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiRWMtoWYt5iMhFTLlRXYuEzMtQ3cl5CNhVTL6JHdllmbuAjLyEjL04SOx4iN50CdhR3clpWYthSI", + value: "!(majestat-96.19.4.12.0.nietrz-5a4.est-31.ate-1a2.maj-1db)!", + result: { + word: "majestat", + correct: 19, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "06.04.2025", + }, + }, + { + date: "06.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIGZx0iah1mLhlTOtUGdz5SYxITNto3bw5CMugjLz4yMx4iN50CdhR3clpWYthSI", + value: "!(majestat-96.13.3.8.0.poz-521a.ste-99a.maj-1db)!", + result: { + word: "majestat", + correct: 13, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "06.04.2025", + }, + }, + { + date: "06.04.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYkFTLqFmL0gTNtQXZt5SYxczMtoncw5CMukjLx4iNx4iN50CdhR3clpWYthSI", + value: "!(majestat-96.16.1.9.0.prz-371a.met-584.aj-1db)!", + result: { + word: "majestat", + correct: 16, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "06.04.2025", + }, + }, + { + date: "06.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiRWMtoWYt5iZx0SZqNnLjRWLlx2ZucDOtoWZw5iZiJTL1h2YuAjL0EjLy4SOx4iN50CdhR3clpWYthSI", + value: "!(majestat-96.19.2.14.0.chu-2bf.pej-87.gle-dc.sje-1f.maj-1db)!", + result: { + word: "majestat", + correct: 19, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "06.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nielatwe-ale-godne-27-04-2025-diffle-diffleen-grywebowe-39-letters-in-7-words-la" +] = [ + { + date: "27.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5czNtMXak5SZwgTLoN2MugzYx0iclZnLiRTLyVmauYGZx0iclhmLihTLhVGduYzYy0CbvNmLw4SNx4CMuQjMucTMx0SZzJXZwNXakhSI", + value: + "!(disperse-117.24.0.15.0.col-2c6.tea-8b.her-1df.jer-4b.ver-1c8.3ch-80e.dis-779)!", + result: { + word: "disperse", + correct: 24, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5czNtMXak5COiFTLoN2MugTN10ycp1mL1QWNtg2Yz4SNi1CajJjL3gTLyV3cukDZtg2Yz4CNtIXaz5iN40SYlJnLw4SMx4yMucjMucTMx0SZzJXZwNXakhSI", + value: + "!(disperse-117.27.3.11.0.rea-86.sir-4.3ch-d9.sur-87.2ch-b5.3ch-5d5.mis-558.3ch-1b8.dis-779)!", + result: { + word: "disperse", + correct: 27, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 41, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSO3cTLzlGZugDNt0Wdi5SNz0iduYTLylGZuYTNtk2az5SMy0SZoNmLw4CNx4yMuIjMucTMx0SZzJXZwNXakhSI", + value: "!(disperse-117.22.3.14.0.che-21.ski-56.dir-6.v-35.bum-48.dis-779)!", + result: { + word: "disperse", + correct: 22, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5czNuQWN30ycuIGMx0CcpRmL4gTLslGcuQTLllmduQjMt8mcl5iM20SbhdmLw4iMx4yMuEzMucTMx0SZzJXZwNXakhSI", + value: + "!(disperse-117.31.3.12.0.gam-62.ero-24.vie-4.pil-88.dip-10b.s-75d.779)!", + result: { + word: "disperse", + correct: 31, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 46, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkzN30ycp5SZjFTLzVGZuEWL1VmZuAjL14yMuYTMucTMx0SZzJXZwNXakhSI", + value: "!(disperse-117.16.3.5.0.feu-a.des-1ce.is-779)!", + result: { + word: "disperse", + correct: 16, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5czNuE2N30ycpRmLk1ycpxmLwATMtkmcj5SY0ETLph2duAjL54CMuIzMucTMx0SZzJXZwNXakhSI", + value: "!(disperse-117.32.0.9.0.whi-14a.cri-100.lis-d.dis-77a.779)!", + result: { + word: "disperse", + correct: 32, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSO3cTLzlGZuIzNtkWdx5yYx0CZ1pmLxQWLul2auIGOtgGcz5iMh1ybyBnLx4COx4SMuAjMucTMx0SZzJXZwNXakhSI", + value: + "!(disperse-117.20.1.18.1.pro-a2.sph-8b.kin-d1.jud-1c.qui-72.dis-779)!", + result: { + word: "disperse", + correct: 20, + position: 1, + incorrect: 18, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 39, + date: "27.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nietrudne-acz-gaszcz-mozliwosci-14-05-2025-flag-pl-diffle-difflepl-grywebowe-38-" +] = [ + { + date: "14.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpU2M30CZhJnLmNjMtQWYr5SMi1ychJnLiFTYtEmcn5yMxITL0FWbuAjLzEjLx4CNy4CNzETL5d3bpRWYyhSI", + value: "!(radiowy-134.24.1.13.0.mat-213.gra-a1b.ras-b1.kad-23f.rad-73e)!", + result: { + word: "radiowy", + correct: 24, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "14.05.2025", + }, + }, + { + date: "14.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpU2M30CZhJnL4MWMukTOx0CajNjLw0SYsJmL5cTMtAXYy5SOmlTLz92auAjL1EjLy4iNx4CNzETL5d3bpRWYyhSI", + value: + "!(radiowy-134.16.2.15.0.kos-9f9.rap-179.bla-0.3ch-199.1c8.rad-73e)!", + result: { + word: "radiowy", + correct: 16, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "14.05.2025", + }, + }, + { + date: "14.05.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlNzNuADN50CZhJnLwUjMt8Wbh5CMuMjLx4SNx4CNzETL5d3bpRWYyhSI", + value: "!(radiowy-134.15.1.3.0.amo-250.rad-940.73e)!", + result: { + word: "radiowy", + correct: 15, + position: 1, + incorrect: 3, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "14.05.2025", + }, + }, + { + date: "14.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpU2M30CZhJnL0EWNtonc0VWau5CMugjLy4iMx4CNzETL5d3bpRWYyhSI", + value: "!(radiowy-134.12.2.8.0.nietrz-5a4.rad-73e)!", + result: { + word: "radiowy", + correct: 12, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "14.05.2025", + }, + }, + { + date: "14.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpU2M30CZhJnL2Q2NtMXYw5CMukjLz4CMx4CNzETL5d3bpRWYyhSI", + value: "!(radiowy-134.10.3.9.0.pas-7d6.rad-73e)!", + result: { + word: "radiowy", + correct: 10, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "14.05.2025", + }, + }, + { + date: "14.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlNzNtQWYy5SYxczMtoncw5CMuYjLy4CMx4CNzETL5d3bpRWYyhSI", + value: "!(radiowy-134.10.2.6.0.prz-371a.rad-73e)!", + result: { + word: "radiowy", + correct: 10, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "14.05.2025", + }, + }, + { + date: "14.05.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlNzNtQWYy5SYkJjMts2bw5CMuUjLz4CMx4CNzETL5d3bpRWYyhSI", + value: "!(radiowy-134.10.3.5.0.pok-22da.rad-73e)!", + result: { + word: "radiowy", + correct: 10, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "14.05.2025", + }, + }, + { + date: "14.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZzcTLkFmcuUDNz0SYpBnLmJmMtUHaj5CMukjLz4yMx4CNzETL5d3bpRWYyhSI", + value: "!(radiowy-134.13.3.9.0.chu-2bf.pia-345.rad-73e)!", + result: { + word: "radiowy", + correct: 13, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "14.05.2025", + }, + }, + { + date: "14.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpU2M30CZhJnLmFmNx0iY5dnLmdTL05SOy0ycuIWMtsWYy5yY2EWLhJ3ZuAjLyEjLw4iMy4CNzETL5d3bpRWYyhSI", + value: + "!(radiowy-134.22.0.12.0.gra-a6c.rak-1b.s-29.t-7f.wyb-16af.rad-73e)!", + result: { + word: "radiowy", + correct: 22, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "14.05.2025", + }, + }, + { + date: "14.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZzcTLkFmcuQjZx0CZ5dnLw4yMuQjL54CNzETL5d3bpRWYyhSI", + value: "!(radiowy-134.9.4.3.0.wyd-1f4.rad-73e)!", + result: { + word: "radiowy", + correct: 9, + position: 4, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "14.05.2025", + }, + }, + { + date: "14.05.2025", + nick: "Szuuz_Ekleer", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZzcTLkFmcuEGM3ETLyFGcuYGNtQXdr5CMukjLy4iMx4CNzETL5d3bpRWYyhSI", + value: "!(radiowy-134.12.2.9.0.kut-4f.par-170a.rad-73e)!", + result: { + word: "radiowy", + correct: 12, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "14.05.2025", + }, + }, + { + date: "14.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlNzNtQWYy5SZk1icp1mLzkDOhFTL6JHcuAjLxEjLz4yMx4CNzETL5d3bpRWYyhSI", + value: "!(radiowy-134.13.3.11.0.prz-1a893.mir-de.rad-73e)!", + result: { + word: "radiowy", + correct: 13, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "14.05.2025", + }, + }, + { + date: "14.05.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlNzNuczYx0CZhJnL5UjMto2bw5CMuYjLy4CNx4CNzETL5d3bpRWYyhSI", + value: "!(radiowy-134.14.2.6.0.poj-259.rad-1c7.73e)!", + result: { + word: "radiowy", + correct: 14, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "14.05.2025", + }, + }, + { + date: "14.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlNzNuczYx0CZhJnL5QjMtQ2bt5CMucjLz4CNx4CNzETL5d3bpRWYyhSI", + value: "!(radiowy-134.14.3.7.0.mod-249.rad-1c7.73e)!", + result: { + word: "radiowy", + correct: 14, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "14.05.2025", + }, + }, + { + date: "14.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpU2M30CZhJnLhRTLjF2ZucjMtsWdl5CMucjLy4SNx4CNzETL5d3bpRWYyhSI", + value: "!(radiowy-134.15.2.7.0.euk-27.gac-4a.rad-73e)!", + result: { + word: "radiowy", + correct: 15, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "14.05.2025", + }, + }, + { + date: "14.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZzcTLkFmcuUmZtkmZv5SYxITNto3bw5CMucjL14SMx4CNzETL5d3bpRWYyhSI", + value: "!(radiowy-134.11.5.7.0.poz-521a.ofi-fe.rad-73e)!", + result: { + word: "radiowy", + correct: 11, + position: 5, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "14.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nietrudne-ale-nieoczywiste-05-05-2025-flag-pl-diffle-difflepl-grywebowe-44-liter" +] = [ + { + date: "05.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmLwIjLw0ib1xmLjRmYt4WYt5yM5gTLhx2auU2N20Cdi9mLx4iMx4yNuUjMuUjMx0yayFGch5WdshSI", + value: "!(lunapark-125.25.7.12.1.obt-67e.kla-893.man-bdc.lun-0.20.d)!", + result: { + word: "lunapark", + correct: 25, + position: 7, + incorrect: 12, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 44, + date: "05.05.2025", + }, + }, + { + date: "05.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZt4Wds5CNz0yY1BnLmRTMtAXdk5yNtwWdi5SNhFWLyFmbukjZ50ycvtmLw4CNx4SNuAjMuUjMx0yayFGch5WdshSI", + value: + "!(lunapark-125.20.5.14.0.kos-9f9.nar-aa5.bul-7.dup-14f.puc-34.lun-d)!", + result: { + word: "lunapark", + correct: 20, + position: 5, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "05.05.2025", + }, + }, + { + date: "05.05.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKk1ib1xmLjZWYy0CZh5mL2YTLu92auAjLy4iMuUTMuUjMx0yayFGch5WdshSI", + value: "!(lunapark-125.15.2.2.0.kon-66.nad-2afc.lun-d)!", + result: { + word: "lunapark", + correct: 15, + position: 2, + incorrect: 2, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "05.05.2025", + }, + }, + { + date: "05.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKk1ib1xmL5kTLwF2auEWM3MTL6JHcuAjL44yMuQTMuUjMx0yayFGch5WdshSI", + value: "!(lunapark-125.14.3.8.0.prz-371a.kap-99.lun-d)!", + result: { + word: "lunapark", + correct: 14, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "05.05.2025", + }, + }, + { + date: "05.05.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKk1ib1xmLkVTLwF2auEGZyITLr9GcuAjL24CNuQTMuUjMx0yayFGch5WdshSI", + value: "!(lunapark-125.14.4.6.0.pok-22da.kap-5d.lun-d)!", + result: { + word: "lunapark", + correct: 14, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "05.05.2025", + }, + }, + { + date: "05.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKk1ib1xmL3AzMtAXYu5CZyQTLyB3cuAjL34yMuUTMuUjMx0yayFGch5WdshSI", + value: "!(lunapark-125.15.3.7.0.spr-42d.nap-307.lun-d)!", + result: { + word: "lunapark", + correct: 15, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "05.05.2025", + }, + }, + { + date: "05.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKk5CMy0ib1xmL1MTLnlHZugDZ1ETLyR3cuYmYy0SdoNmLw4CNx4CNuAjMuUjMx0yayFGch5WdshSI", + value: "!(lunapark-125.20.4.14.0.chu-2bf.str-15d8.dyg-35.lun-20.d)!", + result: { + word: "lunapark", + correct: 20, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "05.05.2025", + }, + }, + { + date: "05.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWLuVHbuIWLyVXbuQTY10ieyRXZp5mLw4CMx4CNuQTMuUjMx0yayFGch5WdshSI", + value: "!(lunapark-125.14.4.10.0.nietrz-5a4.mur-b.lun-d)!", + result: { + word: "lunapark", + correct: 14, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "05.05.2025", + }, + }, + { + date: "05.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKk1ib1xmLzkDOhFTL6JHcuAjL34yMuETMuUjMx0yayFGch5WdshSI", + value: "!(lunapark-125.11.3.7.0.prz-1a893.lun-d)!", + result: { + word: "lunapark", + correct: 11, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "05.05.2025", + }, + }, + { + date: "05.05.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZt4Wds5SYlVTLhxGcuYTYi1SZp1mLw4CMx4CNuMTMuUjMx0yayFGch5WdshSI", + value: "!(lunapark-125.13.4.10.0.mie-ba6.pla-5ea.lun-d)!", + result: { + word: "lunapark", + correct: 13, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "05.05.2025", + }, + }, + { + date: "05.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZt4Wds5yMwITLuFGcuETYx0CbvtmL1UWYtIXYu5yY2EWLhJ3ZuAjL44CNucTMuUjMx0yayFGch5WdshSI", + value: "!(lunapark-125.17.4.8.0.gra-a6c.nar-ae5.kol-1a1.pan-203.lun-d)!", + result: { + word: "lunapark", + correct: 17, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "05.05.2025", + }, + }, + { + date: "05.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKk1ib1xmL3AzMtAnL2kTYtIXYu5SO0ITLk9WbuAjL54iMukTMuUjMx0yayFGch5WdshSI", + value: "!(lunapark-125.19.2.9.0.mod-249.nar-a96.p-307.lun-d)!", + result: { + word: "lunapark", + correct: 19, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "05.05.2025", + }, + }, + { + date: "05.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWLuVHbuATLtFGducDMz0Cch5mLhFTLu92cuQjZx0CZ5dnLw4CMx4SMuAjMuUjMx0yayFGch5WdshSI", + value: "!(lunapark-125.20.1.10.0.wyd-1f4.son-1a.nap-307.tam-0.lun-d)!", + result: { + word: "lunapark", + correct: 20, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "05.05.2025", + }, + }, + { + date: "05.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWLuVHbucjM30Cb1tmL3ITLrVXZuAjL24yMuUTMuUjMx0yayFGch5WdshSI", + value: "!(lunapark-125.15.3.6.0.euk-27.kul-727.lun-d)!", + result: { + word: "lunapark", + correct: 15, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "05.05.2025", + }, + }, + { + date: "05.05.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWLuVHbuATLuV3auIGMzETLkFmbuAjL24iMuUTMuUjMx0yayFGch5WdshSI", + value: "!(lunapark-125.15.2.6.0.nad-130b.kun-0.lun-d)!", + result: { + word: "lunapark", + correct: 15, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "05.05.2025", + }, + }, + { + date: "05.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZt4Wds5SOhFTLuF2auEWMyUTL69GcuAjL44yMuQTMuUjMx0yayFGch5WdshSI", + value: "!(lunapark-125.14.3.8.0.poz-521a.kan-1a9.lun-d)!", + result: { + word: "lunapark", + correct: 14, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "05.05.2025", + }, + }, + { + date: "05.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKk1ib1xmL3AzMtAXYu5SZ0EWLvB3cuAjL54iMuUTMuUjMx0yayFGch5WdshSI", + value: "!(lunapark-125.15.2.9.0.spo-a4e.nap-307.lun-d)!", + result: { + word: "lunapark", + correct: 15, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "05.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ok-to-bylo-zaskakujaco-szybkie-slightly-smiling-face-04-05-2025-diffle-difflepl-" +] = [ + { + date: "04.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzE2MtIXYq5iYllTLz92auAjL04yMugjL0ITMt8Wb6JXYqhSI", + value: "!(jarzmo-124.8.3.4.0.kos-9eb.jar-3a3)!", + result: { + word: "jarzmo", + correct: 8, + position: 3, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "04.05.2025", + }, + }, + { + date: "04.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMhNTLyFmauMTN00icnpnLkJDNtIHcz5CMuATMuQjLwEjL0ITMt8Wb6JXYqhSI", + value: "!(jarzmo-124.10.4.10.0.spr-42d.zgr-453.jar-3a3)!", + result: { + word: "jarzmo", + correct: 10, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "04.05.2025", + }, + }, + { + date: "04.05.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMhNTLyFmauETMzETLyF2auAjLz4CMukjL0ITMt8Wb6JXYqhSI", + value: "!(jarzmo-124.9.0.3.0.kar-1311.jar-3a3)!", + result: { + word: "jarzmo", + correct: 9, + position: 0, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 12, + date: "04.05.2025", + }, + }, + { + date: "04.05.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTYz0ichpmLkVWMt0WYy5iZ20SbvtmLw4yNuMjLwEjL0ITMt8Wb6JXYqhSI", + value: "!(jarzmo-124.10.3.7.0.kom-6f.ram-1ed.jar-3a3)!", + result: { + word: "jarzmo", + correct: 10, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "04.05.2025", + }, + }, + { + date: "04.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzE2MtInLyITMtomLxQWL6FmauYjN30SY6NnLmJmMtUHaj5CMuETMuMjL2EjL0ITMt8Wb6JXYqhSI", + value: "!(jarzmo-124.16.3.11.0.chu-2bf.sza-766.jaz-d1.j-122.r-3a3)!", + result: { + word: "jarzmo", + correct: 16, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "04.05.2025", + }, + }, + { + date: "04.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTYz0ichpmLiFWNx0ich1mLhFzNz0ieyBnLw4SOuIjLxEjL0ITMt8Wb6JXYqhSI", + value: "!(jarzmo-124.11.2.9.0.prz-371a.mar-15ab.jar-3a3)!", + result: { + word: "jarzmo", + correct: 11, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "04.05.2025", + }, + }, + { + date: "04.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzE2MtIXYq5iNz0Cb11mL0EWNtonc0VWau5CMuQTMuIjLzEjL0ITMt8Wb6JXYqhSI", + value: "!(jarzmo-124.13.2.14.0.nietrz-5a4.mul-36.jar-3a3)!", + result: { + word: "jarzmo", + correct: 13, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "04.05.2025", + }, + }, + { + date: "04.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzE2MtIXYq5SO0ITLk9WbuAjL24CNugjL0ITMt8Wb6JXYqhSI", + value: "!(jarzmo-124.8.4.6.0.mod-249.jar-3a3)!", + result: { + word: "jarzmo", + correct: 8, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "04.05.2025", + }, + }, + { + date: "04.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTYz0ichpmLzcTNtg2Yz4CMzUWMtIXYw5SYiNTLyF2duQzYm1ich1mLjZTYtEmcn5CMuETMuQjL3EjL0ITMt8Wb6JXYqhSI", + value: + "!(jarzmo-124.17.4.11.0.gra-a6c.mar-fc4.war-3ba.par-1e30.3ch-573.jar-3a3)!", + result: { + word: "jarzmo", + correct: 17, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "04.05.2025", + }, + }, + { + date: "04.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzE2MucTN00ichpmL2ATNtMXZk5CMuQTMuEjLyEjL0ITMt8Wb6JXYqhSI", + value: "!(jarzmo-124.12.1.14.0.des-506.jar-457.3a3)!", + result: { + word: "jarzmo", + correct: 12, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "04.05.2025", + }, + }, + { + date: "04.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMhNTLyFmauY2Y10yYh1mLhFjM10ievBnLw4COuMjLwEjL0ITMt8Wb6JXYqhSI", + value: "!(jarzmo-124.10.3.8.0.poz-521a.mac-5cf.jar-3a3)!", + result: { + word: "jarzmo", + correct: 10, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "04.05.2025", + }, + }, + { + date: "04.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzE2MtIXYq5yY50ych1mLkZGNx0ichpnL0YWMtQWe35CMuETMuEjL1EjL0ITMt8Wb6JXYqhSI", + value: "!(jarzmo-124.15.1.11.0.wyd-1f4.zar-14fd.mas-9c.jar-3a3)!", + result: { + word: "jarzmo", + correct: 15, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "04.05.2025", + }, + }, + { + date: "04.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTYz0ichpmL1MTMtIXYk5iMzYWLyFWbucjMtsWdl5CMuETMuEjL2EjL0ITMt8Wb6JXYqhSI", + value: "!(jarzmo-124.16.1.11.0.euk-27.mar-f32.dar-135.jar-3a3)!", + result: { + word: "jarzmo", + correct: 16, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "04.05.2025", + }, + }, + { + date: "04.05.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMhNTLyFmauYTYi1SZp1mLw4CMx4iMugjL0ITMt8Wb6JXYqhSI", + value: "!(jarzmo-124.8.2.10.0.mie-ba6.jar-3a3)!", + result: { + word: "jarzmo", + correct: 8, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "04.05.2025", + }, + }, + { + date: "04.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMhNTLyFmauITNl1SYsBnL3kDNt0WZk5CMuATMuIjLyEjL0ITMt8Wb6JXYqhSI", + value: "!(jarzmo-124.12.2.10.0.dem-497.pla-e52.jar-3a3)!", + result: { + word: "jarzmo", + correct: 12, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "04.05.2025", + }, + }, + { + date: "04.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzE2MtIXYq5yN0ITLq92duMTO4EWMtoncw5CMuQTMuIjLwEjL0ITMt8Wb6JXYqhSI", + value: "!(jarzmo-124.10.2.14.0.prz-1a893.woj-247.jar-3a3)!", + result: { + word: "jarzmo", + correct: 10, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "04.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/piekny-strzal-ale-prawie-wszystko-mialem-juz-w-pierwszym-slowie-15-05-2025-diffl" +] = [ + { + date: "15.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYkRTLvVmbuIWZ50ycvtmLw4iNuEjL24SNzETLu9WZuhSI", + value: "!(neon-135.6.1.6.0.kos-9eb.neo-4dc)!", + result: { + word: "neon", + correct: 6, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "15.05.2025", + }, + }, + { + date: "15.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYkRTLvVmLw0ybv5yMl1ic15mLjhTNtMXek5CMuAjMuAjL34SNzETLu9WZuhSI", + value: "!(neon-135.7.0.20.0.dys-58c.nur-e3.oo-0.eo-4dc)!", + result: { + word: "neon", + correct: 7, + position: 0, + incorrect: 20, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "15.05.2025", + }, + }, + { + date: "15.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYkRTLvVmbuQTNx0CajNjLwAjNtwWZt5yYzUTLvJHduYzNtg2Yz4SMyMWMt42bw5iZiJTL1h2YuAjL1EjLw4COx4SNzETLu9WZuhSI", + value: + "!(neon-135.18.0.15.0.chu-2bf.pon-1c21.3ch-76.tro-53c.mel-600.3ch-154.neo-4dc)!", + result: { + word: "neon", + correct: 18, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 33, + date: "15.05.2025", + }, + }, + { + date: "15.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjRGNt8WZu5CMtsWZn5iYi1CdlJmL2kjMtU2Yv5CZyQTLyB3cuAjL1EjLy4CNx4SNzETLu9WZuhSI", + value: "!(neon-135.14.2.15.0.spr-42d.oce-296.bet-bb.gek-0.neo-4dc)!", + result: { + word: "neon", + correct: 14, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "15.05.2025", + }, + }, + { + date: "15.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYkRTLvVmLkFWL09mbuMmNh1SYydmLw4iNuEjL44SNzETLu9WZuhSI", + value: "!(neon-135.8.1.6.0.gra-a6c.not-ad.eo-4dc)!", + result: { + word: "neon", + correct: 8, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 15, + date: "15.05.2025", + }, + }, + { + date: "15.05.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYkRTLvVmbuImYtQXZi5CZ0QTLtVGZuIDZ0ETLn9GcuAjLxEjLx4iMx4SNzETLu9WZuhSI", + value: "!(neon-135.12.1.11.0.pog-14d2.dem-44d.bet-bb.neo-4dc)!", + result: { + word: "neon", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "15.05.2025", + }, + }, + { + date: "15.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjRGNt8WZu5CN1ETLoN2MuATLzV2auImYtQXZi5SO0ITLk9WbuAjLzEjLx4SNx4SNzETLu9WZuhSI", + value: "!(neon-135.15.1.13.0.mod-249.bet-bb.kes-0.3ch-154.neo-4dc)!", + result: { + word: "neon", + correct: 15, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "15.05.2025", + }, + }, + { + date: "15.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjRGNt8WZu5CN1ETLoN2MuATLrV2ZuQGNtYWZ05CNmFTLkl3duAjLyEjLw4SNx4SNzETLu9WZuhSI", + value: "!(neon-135.15.0.12.0.wyd-1f4.tef-4d.gek-0.3ch-154.neo-4dc)!", + result: { + word: "neon", + correct: 15, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "15.05.2025", + }, + }, + { + date: "15.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGZ00ybl5mLwAjNtwWZt5iMyETLrVmYuEWM3MTL6JHcuAjL0EjLw4SMx4SNzETLu9WZuhSI", + value: "!(neon-135.11.0.14.0.prz-371a.bek-122.mel-600.neo-4dc)!", + result: { + word: "neon", + correct: 11, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "15.05.2025", + }, + }, + { + date: "15.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGZ00ybl5mLi1yYvJmL0EWNtonc0VWau5CMuUTMuEjL54SNzETLu9WZuhSI", + value: "!(neon-135.9.1.15.0.nietrz-5a4.boc-b.neo-4dc)!", + result: { + word: "neon", + correct: 9, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "15.05.2025", + }, + }, + { + date: "15.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjRGNt8WZu5CN1ETLoN2MuQGN00SblRmLzkDOhFTL6JHcuAjLzEjLw4iMx4SNzETLu9WZuhSI", + value: "!(neon-135.12.0.13.0.prz-1a893.dem-44d.3ch-154.neo-4dc)!", + result: { + word: "neon", + correct: 12, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "15.05.2025", + }, + }, + { + date: "15.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjRGNt8WZu5CMwYTLsVWbucjMtsWdl5CMukjLw4CMx4SNzETLu9WZuhSI", + value: "!(neon-135.10.0.9.0.euk-27.mel-600.neo-4dc)!", + result: { + word: "neon", + correct: 10, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "15.05.2025", + }, + }, + { + date: "15.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYkRTLvVmbuATLvVmauImYtQXZi5CMwYTLsVWbuEWMyUTL69GcuAjLyEjLx4SNx4SNzETLu9WZuhSI", + value: "!(neon-135.15.1.12.0.poz-521a.mel-600.bet-bb.jeo-0.neo-4dc)!", + result: { + word: "neon", + correct: 15, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "15.05.2025", + }, + }, + { + date: "15.05.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjRGNt8WZu5CN1ETLoN2MuIzMtUGcv5iNhJWLllWbuAjLyEjLy4SMx4SNzETLu9WZuhSI", + value: "!(neon-135.11.2.12.0.mie-ba6.ope-32.3ch-154.neo-4dc)!", + result: { + word: "neon", + correct: 11, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "15.05.2025", + }, + }, + { + date: "15.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGZ00ybl5mLkRTMx0ycvBnLw4COuEjL24SNzETLu9WZuhSI", + value: "!(neon-135.6.1.8.0.pos-114d.neo-4dc)!", + result: { + word: "neon", + correct: 6, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "15.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/podstepne-29-04-2025-diffle-difflepl-grywebowe-31-liter-w-4-slowach-large-green-" +] = [ + { + date: "29.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMhJTLl5WYugTOtwWe35yM3MTLhl2YuIWZ50ycvtmLw4SOuMjL5EjL5ETMtEma6VGdzVmbhhSI", + value: "!(anestezja-119.19.3.9.0.kos-9eb.cia-373.wyl-98.ane-2a3)!", + result: { + word: "anestezja", + correct: 19, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "29.04.2025", + }, + }, + { + date: "29.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTYy0SZuFmLjVWMtIHdz5yMyYTLnFWbuATL6VmauYGOz0yalxmLmJmMtUHaj5CMuUTMuQjL2IjL5ETMtEma6VGdzVmbhhSI", + value: + "!(anestezja-119.26.4.15.0.chu-2bf.lek-38f.jez-0.mag-623.str-1ec.ane-2a3)!", + result: { + word: "anestezja", + correct: 26, + position: 4, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 45, + date: "29.04.2025", + }, + }, + { + date: "29.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMhJTLl5WYuQmM00icwNnLw4iNuMjLyEjL5ETMtEma6VGdzVmbhhSI", + value: "!(anestezja-119.12.3.6.0.spr-42d.ane-2a3)!", + result: { + word: "anestezja", + correct: 12, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "29.04.2025", + }, + }, + { + date: "29.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTYy0SZuUTM5EjLzYTMtQnbh5SYyETLuFGduMmNh1SYydmLw4COuEjL2IjL5ETMtEma6VGdzVmbhhSI", + value: "!(anestezja-119.26.1.8.0.gra-a6c.tan-12a.ant-163.1915.e-2a3)!", + result: { + word: "anestezja", + correct: 26, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "29.04.2025", + }, + }, + { + date: "29.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzEmMtUmbh5yYmNTL5R3cucjNtIXZu5CZ5ITLuV2ZuATLu9meuQTMtUXZm5CMuITMuMjLzIjL5ETMtEma6VGdzVmbhhSI", + value: + "!(anestezja-119.23.3.12.0.feu-14.zon-0.gen-29d.ner-67.sty-3fc.ane-2a3)!", + result: { + word: "anestezja", + correct: 23, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "29.04.2025", + }, + }, + { + date: "29.04.2025", + nick: "Szuuz_Ekleer", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTYy0SZuFmLwAzNt4Wez5iZ00Cd1tmLw4iNuIjL3EjL5ETMtEma6VGdzVmbhhSI", + value: "!(anestezja-119.17.2.6.0.kut-4f.syn-700.ane-2a3)!", + result: { + word: "anestezja", + correct: 17, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "29.04.2025", + }, + }, + { + date: "29.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzEmMtUmbuIGOt4Wbh5CNj1ycldmLw4yNuEjLwIjL5ETMtEma6VGdzVmbhhSI", + value: "!(anestezja-119.20.1.7.0.ges-c4.amn-8b.ne-2a3)!", + result: { + word: "anestezja", + correct: 20, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "29.04.2025", + }, + }, + { + date: "29.04.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTYy0SZuFmL2QmMx0SYyRnLzQTLupXducTN10CbhpnLw4COuQjL5EjL5ETMtEma6VGdzVmbhhSI", + value: "!(anestezja-119.19.4.8.0.zal-557.uzn-43.tra-12d6.ane-2a3)!", + result: { + word: "anestezja", + correct: 19, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "29.04.2025", + }, + }, + { + date: "29.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTYy0SZuFmL5QDNtEGdz5yN0ITLq92duMTO4EWMtoncw5CMuQTMuYjL3EjL5ETMtEma6VGdzVmbhhSI", + value: "!(anestezja-119.17.6.14.0.prz-1a893.woj-247.sta-449.ane-2a3)!", + result: { + word: "anestezja", + correct: 17, + position: 6, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "29.04.2025", + }, + }, + { + date: "29.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMhJTLl5WYugTZ30SYsBnL4EGNt0WZk5CMuATMuIjL2EjL5ETMtEma6VGdzVmbhhSI", + value: "!(anestezja-119.16.2.10.0.dem-4a8.pla-7e8.ane-2a3)!", + result: { + word: "anestezja", + correct: 16, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "29.04.2025", + }, + }, + { + date: "29.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMhJTLl5iZ4MTLh5yM2ETL05WYuITYtUGd15CMuETMuIjLxIjL5ETMtEma6VGdzVmbhhSI", + value: "!(anestezja-119.21.2.11.0.ute-a2.ant-163.a-38f.e-2a3)!", + result: { + word: "anestezja", + correct: 21, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "29.04.2025", + }, + }, + { + date: "29.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTYy0SZuFmLjRmMx0SYyRnLhFjM10ievBnLw4iNuQjL4EjL5ETMtEma6VGdzVmbhhSI", + value: "!(anestezja-119.18.4.6.0.poz-521a.tra-12dc.ane-2a3)!", + result: { + word: "anestezja", + correct: 18, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "29.04.2025", + }, + }, + { + date: "29.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMhJjL4kjMtUmbh5iY3QTLhxGcucjMtsWdl5SMuITMuEjL0IjL5ETMtEma6VGdzVmbhhSI", + value: "!(anestezja-119.24.1.12.1.euk-27.pla-47b.ane-298.2a3)!", + result: { + word: "anestezja", + correct: 24, + position: 1, + incorrect: 12, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 37, + date: "29.04.2025", + }, + }, + { + date: "29.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTYy0SZuFmL3AzMt4WYt5iY3QTLhxGcuQjZx0CZ5dnLw4SOuIjLxIjL5ETMtEma6VGdzVmbhhSI", + value: "!(anestezja-119.21.2.9.0.wyd-1f4.pla-47b.man-307.ane-2a3)!", + result: { + word: "anestezja", + correct: 21, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "29.04.2025", + }, + }, + { + date: "29.04.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMhJTLl5WYucTYx0SYsVmLhFzNz0ieyBnLw4COuQjL4EjL5ETMtEma6VGdzVmbhhSI", + value: "!(anestezja-119.18.4.8.0.prz-371a.ela-1a7.ane-2a3)!", + result: { + word: "anestezja", + correct: 18, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "29.04.2025", + }, + }, + { + date: "29.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMhJTLl5WYuQTY10ieyRXZp5mLw4COuIjL0EjL5ETMtEma6VGdzVmbhhSI", + value: "!(anestezja-119.14.2.8.0.nietrz-5a4.ane-2a3)!", + result: { + word: "anestezja", + correct: 14, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 24, + date: "29.04.2025", + }, + }, + { + date: "29.04.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzEmMtUmbh5iYiFWLhR3cuQWY00iblRmL2EmYtUWat5CMuETMuUjLxIjL5ETMtEma6VGdzVmbhhSI", + value: "!(anestezja-119.21.5.11.0.mie-ba6.den-4ad.sta-abb.ane-2a3)!", + result: { + word: "anestezja", + correct: 21, + position: 5, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "29.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/porazka-nie-chcialo-mi-te-slowo-w-ogole-przyjsc-do-glowy-11-03-2025-diffle-diffl" +] = [ + { + date: "11.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ITMtMmYv5yMx0iYvZmLkNjMt8Waz5SNmFWNto3bw5CNyETLj9GZuMDNzETLsl3duAjLxIjLz4SNx4CM30SanlTOlQzQlMmYvhSI", + value: + "!(obcęgi-70.15.3.21.0.wyl-1343.doc-124.poz-5af5.sio-23d.fob-13.obc-125)!", + result: { + word: "obcęgi", + correct: 15, + position: 3, + incorrect: 21, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ITMtMmYv5SMzATMtM2bw5iNhJWLllWbuAjLzEjLy4CMx4CM30SanlTOlQzQlMmYvhSI", + value: "!(obcęgi-70.10.2.13.0.mie-ba6.poc-1031.obc-125)!", + result: { + word: "obcęgi", + correct: 10, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ITMtMmL3UjZtwmYv5yNhljMtM3bw5SMjlTLrVmcuAjLyEjLx4iMx4CM30SanlTOlQzQlMmYvhSI", + value: "!(obcęgi-70.12.1.12.0.rek-9c1.pos-29a7.obl-f57.c-125)!", + result: { + word: "obcęgi", + correct: 12, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ITMtMmYv5CZlVTLlh2YuITYx0CZldnL4kTLvpneuAjL1EjLy4SMx4CM30SanlTOlQzQlMmYvhSI", + value: "!(obcęgi-70.11.2.15.0.zzo-98.wed-1a2.che-5ed.obc-125)!", + result: { + word: "obcęgi", + correct: 11, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMx0yYi9mLxMTMtcWZj5CZwUWMtUWaw5CMuYjLx4iMx4CM30SanlTOlQzQlMmYvhSI", + value: "!(obcęgi-70.12.1.6.0.pie-1e0d.ceg-131.obc-125)!", + result: { + word: "obcęgi", + correct: 12, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMx0yYi9mLhJWMtg2Yz4yN1YWLs5CM2ETLpJmLzUTNtI3av5iYlJTMtkGcz5iZiJTL1h2YuAjL4EjLz4SOx4CM30SanlTOlQzQlMmYvhSI", + value: + "!(obcęgi-70.19.3.18.0.chu-2bf.spi-12eb.okr-553.bi-160.l-f57.3ch-1ba.obc-125)!", + result: { + word: "obcęgi", + correct: 19, + position: 3, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMx0yYi9mLhNGOtg2Yz5yMlFGNtM3bw5SOiNTLql3duAjL3EjLx4iMx4CM30SanlTOlQzQlMmYvhSI", + value: "!(obcęgi-70.12.1.17.0.wyj-3b9.pos-4ae3.sch-8ca.obc-125)!", + result: { + word: "obcęgi", + correct: 12, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMx0yYi5SOmlTLjR2buU2Mt8mc05CZ4ETLwNXYuAjL3EjLw4SNx4CM30SanlTOlQzQlMmYvhSI", + value: "!(obcęgi-70.15.0.17.0.asp-18d.tro-3e.odc-9f9.bc-125)!", + result: { + word: "obcęgi", + correct: 15, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNyETLj5SZx0Sdi5yNjJTLp1mL3ETLvd2buYTN3MTL6JHcuAjL5EjLw4SNx4CM30SanlTOlQzQlMmYvhSI", + value: "!(obcęgi-70.15.0.19.0.prz-3756.ogo-17.mi-2c7.bu-1e.c-125)!", + result: { + word: "obcęgi", + correct: 15, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMx0yYi9mL1UmZtUWaj5iM10yYldnL4kTLvpneuAjLxEjLx4SMx4CM30SanlTOlQzQlMmYvhSI", + value: "!(obcęgi-70.11.1.11.0.zzo-98.wec-52.cie-fe5.obc-125)!", + result: { + word: "obcęgi", + correct: 11, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ITMtMmYv5CO3YTLlh2YuMTOtMWZq5CMugjLx4SMx4CM30SanlTOlQzQlMmYvhSI", + value: "!(obcęgi-70.11.1.8.0.jec-93.che-678.obc-125)!", + result: { + word: "obcęgi", + correct: 11, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ITMtMmYv5yMwYTLhl2YuMTO4EWMtoncw5CMuMTMuIjL54CM30SanlTOlQzQlMmYvhSI", + value: "!(obcęgi-70.9.2.13.0.prz-1a893.cia-603.obc-125)!", + result: { + word: "obcęgi", + correct: 9, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ITMtMmYv5yN2ITLzF2ZuITYx0CZhJmLxEzMtomYv5SMx0yY1JmLyEjNt8mc05iN0ETLu9meuIzMzETLzl3duEjL0IjLz4SMy4CM30SanlTOlQzQlMmYvhSI", + value: + "!(obcęgi-70.21.3.24.1.wys-1332.zon-146.tro-612.buc-11.obj-311.bad-1a2.gas-267.obc-125)!", + result: { + word: "obcęgi", + correct: 21, + position: 3, + incorrect: 24, + knownIncorrect: 1, + totalWords: 8, + totalLetters: 48, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMx0yYi9mL2MmMx0SZyBnL3UWLvpneuAjLwEjLx4CMx4CM30SanlTOlQzQlMmYvhSI", + value: "!(obcęgi-70.10.1.10.0.zzo-e7.pre-12c6.obc-125)!", + result: { + word: "obcęgi", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ITMtMmYv5SZ5gTLvh2YuUWM00CajNjLi1San9mLiVTNtw2bn5iZzUWLu9WbuAjL1EjLy4SNx4CM30SanlTOlQzQlMmYvhSI", + value: + "!(obcęgi-70.15.2.15.0.mon-e3f.gol-55b.ogi-b.3ch-41e.cho-89e.obc-125)!", + result: { + word: "obcęgi", + correct: 15, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMx0yYi9mLzETLi9mZuQ2NtQXdi5iN0UWLwN3duAjL4EjLy4SMx4CM30SanlTOlQzQlMmYvhSI", + value: "!(obcęgi-70.11.2.18.0.wsp-e46.but-7d.fob-13.obc-125)!", + result: { + word: "obcęgi", + correct: 11, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ITMtMmYv5SM4ETLy92ZuMWYiRTLk9GcuAjLwEjLy4CMx4CM30SanlTOlQzQlMmYvhSI", + value: "!(obcęgi-70.10.2.10.0.pod-4bac.gor-181.obc-125)!", + result: { + word: "obcęgi", + correct: 10, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "11.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/potrafi-zmylic-25-04-2025-diffle-difflepl-grywebowe-38-liter-w-5-slowach-large-g" +] = [ + { + date: "25.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNmdTLz9GZuImM30ybsNnLxETOt8Gbn5SNyETL39GbuMDNzETLsl3duAjL44iMugjMuUTMx0SZp52dvJDOlUzQlM3bkhSI", + value: + "!(dosłownie-115.28.2.8.0.wyl-1343.low-125.glo-911.slo-72b.dos-7f4)!", + result: { + word: "dosłownie", + correct: 28, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "25.04.2025", + }, + }, + { + date: "25.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0Y2NtM3bk5iYycTLvx2cuMTOtU2d65SZ2UTLnl3duITOx0yYz9mLx4SNx4iMuUjMuUTMx0SZp52dvJDOlUzQlM3bkhSI", + value: "!(dosłownie-115.25.2.15.1.osc-192.wyg-56e.zwe-93.slo-72b.dos-7f4)!", + result: { + word: "dosłownie", + correct: 25, + position: 2, + incorrect: 15, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 42, + date: "25.04.2025", + }, + }, + { + date: "25.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjZ30ycvRmLmZGNtEGbz5iN0UWLwN3duAjL54yMuYTMuUTMx0SZp52dvJDOlUzQlM3bkhSI", + value: "!(dosłownie-115.16.3.9.0.wsp-e46.sla-4ff.dos-7f4)!", + result: { + word: "dosłownie", + correct: 16, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "25.04.2025", + }, + }, + { + date: "25.04.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0Y2NtM3bk5CMxcTLvx2cucDZx0CbldnL4kTLvpneuAjL34iMukTMuUTMx0SZp52dvJDOlUzQlM3bkhSI", + value: "!(dosłownie-115.19.2.7.0.zzo-98.wel-1d7.slo-710.dos-7f4)!", + result: { + word: "dosłownie", + correct: 19, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "25.04.2025", + }, + }, + { + date: "25.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNmdTLz9GZuATOy0ybsNXZp5mLhFGOtwGcz5CO50yb6pnLw4CMx4iMuAjMuUTMx0SZp52dvJDOlUzQlM3bkhSI", + value: "!(dosłownie-115.20.2.10.0.zzo-98.spl-8aa.nieslo-290.dos-7f4)!", + result: { + word: "dosłownie", + correct: 20, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "25.04.2025", + }, + }, + { + date: "25.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjZ30ycvRmLkNTOtMHZv5CZ4ETLwNXYuAjL44CNukTMuUTMx0SZp52dvJDOlUzQlM3bkhSI", + value: "!(dosłownie-115.19.4.8.0.asp-18d.ods-93d.dos-7f4)!", + result: { + word: "dosłownie", + correct: 19, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "25.04.2025", + }, + }, + { + date: "25.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjZ30ycvRmL4MzNt8Gbz5iZiJTL1h2YuAjL34SMugTMuUTMx0SZp52dvJDOlUzQlM3bkhSI", + value: "!(dosłownie-115.18.1.7.0.chu-2bf.slo-738.dos-7f4)!", + result: { + word: "dosłownie", + correct: 18, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "25.04.2025", + }, + }, + { + date: "25.04.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNmdTLz9GZukjYt8Waz5CMkNjMtw2bw5CN1QWLz92auAjL44CNuIjMuUTMx0SZp52dvJDOlUzQlM3bkhSI", + value: "!(dosłownie-115.22.4.8.0.kos-d54.pol-23d0.sio-b9.dos-7f4)!", + result: { + word: "dosłownie", + correct: 22, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "25.04.2025", + }, + }, + { + date: "25.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0Y2NtM3bk5COzcTLvx2cuIzMzETLzl3duAjL04CMuAjMuUTMx0SZp52dvJDOlUzQlM3bkhSI", + value: "!(dosłownie-115.20.0.4.0.wys-1332.slo-738.dos-7f4)!", + result: { + word: "dosłownie", + correct: 20, + position: 0, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "25.04.2025", + }, + }, + { + date: "25.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjZ30ycvRmLiJzNt8Gbz5SY40ycvxmLzYjNt8Gbw5iZ5QTLvxmeuAjL44SMuQjMuUTMx0SZp52dvJDOlUzQlM3bkhSI", + value: "!(dosłownie-115.24.1.8.0.zlo-49f.plo-663.los-8a.slo-72b.dos-7f4)!", + result: { + word: "dosłownie", + correct: 24, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "25.04.2025", + }, + }, + { + date: "25.04.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjZ30ycvRmLkJDNx0ycvBnL3UWLvpneuAjL54CMugTMuUTMx0SZp52dvJDOlUzQlM3bkhSI", + value: "!(dosłownie-115.18.0.9.0.zzo-e7.pos-142d.dos-7f4)!", + result: { + word: "dosłownie", + correct: 18, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "25.04.2025", + }, + }, + { + date: "25.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjZ30ycvRmL1UjMto2b35yM5gTYx0ieyBnLw4iNx4SMuUTMuUTMx0SZp52dvJDOlUzQlM3bkhSI", + value: "!(dosłownie-115.15.1.16.0.prz-1a893.woj-255.dos-7f4)!", + result: { + word: "dosłownie", + correct: 15, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 32, + date: "25.04.2025", + }, + }, + { + date: "25.04.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjZ30ycvRmLiJzNt8Gbz5iNhJWLllWbuAjL44yMukTMuUTMx0SZp52dvJDOlUzQlM3bkhSI", + value: "!(dosłownie-115.19.3.8.0.mie-ba6.slo-72b.dos-7f4)!", + result: { + word: "dosłownie", + correct: 19, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "25.04.2025", + }, + }, + { + date: "25.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNmdTLz9mL5ITLvxGZucjNx0CZhxmL4kTLvpneuAjL34SMuEjMuUTMx0SZp52dvJDOlUzQlM3bkhSI", + value: "!(dosłownie-115.21.1.7.0.zzo-98.lad-167.dlo-29.os-7f4)!", + result: { + word: "dosłownie", + correct: 21, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "25.04.2025", + }, + }, + { + date: "25.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjZ30ycvRmLiJzNt8Gbz5CMk1ydvxmLjBzNtw2b65SZ10SYrVnLw4SMx4iMucjMuUTMx0SZp52dvJDOlUzQlM3bkhSI", + value: "!(dosłownie-115.27.2.11.0.uka-5e.zol-70c.low-d0.slo-72b.dos-7f4)!", + result: { + word: "dosłownie", + correct: 27, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "25.04.2025", + }, + }, + { + date: "25.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjZ30ycuMmZ40yduYWZ00yZuQzNh1CbvRmLjFmY00CZvBnLw4SMx4yMucjMuUTMx0SZp52dvJDOlUzQlM3bkhSI", + value: "!(dosłownie-115.27.3.11.0.pod-4bac.dol-a74.g-4ef.w-8fc.s-7f4)!", + result: { + word: "dosłownie", + correct: 27, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "25.04.2025", + }, + }, + { + date: "25.04.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNmdTLz9GZuQWM3MTL6JHcuAjL34SMuMTMuUTMx0SZp52dvJDOlUzQlM3bkhSI", + value: "!(dosłownie-115.13.1.7.0.prz-371d.dos-7f4)!", + result: { + word: "dosłownie", + correct: 13, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "25.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/prosciuchne-panie-holmes-03-04-2025-flag-pl-diffle-difflepl-grywebowe-32-litery-" +] = [ + { + date: "03.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGN0kjLwYGZx0CZukjZtM3bw5iNlhTLyt2cuAjLyEjLx4SOx4yM50SY3FGdzR2bwhSI", + value: "!(podstawa-93.19.1.12.0.skr-8e6.pos-f9.d-1df0.944a)!", + result: { + word: "podstawa", + correct: 19, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "03.04.2025", + }, + }, + { + date: "03.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhRDN50CZvBnLjhDNt8Gcz5SYmlTLz92auAjLwEjLw4iNx4yM50SY3FGdzR2bwhSI", + value: "!(podstawa-93.16.0.10.0.kos-9fa.spo-48c.pod-944a)!", + result: { + word: "podstawa", + correct: 16, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "03.04.2025", + }, + }, + { + date: "03.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhRDN50CZvBnL0EWNtonc0VWau5CMucjL04iMx4yM50SY3FGdzR2bwhSI", + value: "!(podstawa-93.12.4.7.0.nietrz-5a4.pod-944a)!", + result: { + word: "podstawa", + correct: 12, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "03.04.2025", + }, + }, + { + date: "03.04.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGN0kTLk5SYkJjMts2bw5CMucjLw4iMx4yM50SY3FGdzR2bwhSI", + value: "!(podstawa-93.12.0.7.0.pok-22da.d-944a)!", + result: { + word: "podstawa", + correct: 12, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "03.04.2025", + }, + }, + { + date: "03.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY0QTOtQ2bucjNtMXdw5yM3UTLwVmcuAjLyEjLw4CNx4yM50SY3FGdzR2bwhSI", + value: "!(podstawa-93.14.0.12.0.rep-573.pus-67.od-944a)!", + result: { + word: "podstawa", + correct: 14, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "03.04.2025", + }, + }, + { + date: "03.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGN0kTLk9GcuEDOj1yck9mLkJDNtIHcz5CMuUjL04COx4yM50SY3FGdzR2bwhSI", + value: "!(podstawa-93.18.4.5.0.spr-42d.ods-c81.pod-944a)!", + result: { + word: "podstawa", + correct: 18, + position: 4, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "03.04.2025", + }, + }, + { + date: "03.04.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhRDN50CZv5SYxczMtoncw5CMuQjLw4SNx4yM50SY3FGdzR2bwhSI", + value: "!(podstawa-93.15.0.4.0.prz-371a.od-944a)!", + result: { + word: "podstawa", + correct: 15, + position: 0, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "03.04.2025", + }, + }, + { + date: "03.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY0QTOtQ2bw5SZj1Cck9mLwIWNtUGbr5iZiJTL1h2YuAjL1EjLz4COx4yM50SY3FGdzR2bwhSI", + value: "!(podstawa-93.18.3.15.0.chu-2bf.kle-5b0.odp-ce.pod-944a)!", + result: { + word: "podstawa", + correct: 18, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "03.04.2025", + }, + }, + { + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGN0kjLmF2M50CZv5yNkZTLzFGcuY2M40SY6NnLjZTYtEmcn5CMukjLx4iMy4yM50SY3FGdzR2bwhSI", + value: "!(podstawa-93.22.1.9.0.gra-a6c.sza-83f.pas-6d7.od-93af.944a)!", + result: { + word: "podstawa", + correct: 22, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + }, + }, + { + date: "03.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEGN0kjLxETY50CZvBnLklTLk92cuUzMx0CajNjL0YWMtQWe35CMugjLy4yMy4yM50SY3FGdzR2bwhSI", + value: "!(podstawa-93.23.2.8.0.wyd-1f4.3ch-135.sod-9d.pod-9a11.944a)!", + result: { + word: "podstawa", + correct: 23, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "03.04.2025", + }, + }, + { + date: "03.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY0QTOtQ2bw5iNzQWLz9GZuQjNh1yY6NnL3ITLrVXZuAjLwEjLz4SOx4yM50SY3FGdzR2bwhSI", + value: "!(podstawa-93.19.3.10.0.euk-27.szc-a64.dos-d36.pod-944a)!", + result: { + word: "podstawa", + correct: 19, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "03.04.2025", + }, + }, + { + date: "03.04.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhRDN50CZvBnL2MDZtM3bk5SZjFWMtEGdz5iNhJWLllWbuAjLxEjL04SMy4yM50SY3FGdzR2bwhSI", + value: "!(podstawa-93.21.4.11.0.mie-ba6.sta-1ace.dos-d36.pod-944a)!", + result: { + word: "podstawa", + correct: 21, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "03.04.2025", + }, + }, + { + date: "03.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhRDN50CZuEjZ2ITLz5iZyQTL09mLzkDOhFTL6JHcuAjLwEjLx4iMy4yM50SY3FGdzR2bwhSI", + value: "!(podstawa-93.22.1.10.0.prz-1a893.ot-42f.s-26f1.d-944a)!", + result: { + word: "podstawa", + correct: 22, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "03.04.2025", + }, + }, + { + date: "03.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhRDN50CZuETLz5SYxITNto3bw5CMuYjLx4yNx4yM50SY3FGdzR2bwhSI", + value: "!(podstawa-93.17.1.6.0.poz-521a.s-1.d-944a)!", + result: { + word: "podstawa", + correct: 17, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "03.04.2025", + }, + }, + { + date: "03.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhRDN50CZuEjZ2ITLz5iZyQTL09GcuMTNts2bi5yNiZTLlxWZuAjLwEjLx4yMy4yM50SY3FGdzR2bwhSI", + value: "!(podstawa-93.23.1.10.0.ele-6b7.bok-53.pot-42f.s-26f1.d-944a)!", + result: { + word: "podstawa", + correct: 23, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "03.04.2025", + }, + }, + { + date: "03.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY0QTOtQ2bw5SNwUWLzR2buIzN10iYvRmLhNWLzV2ZuAjLzEjLx4SMy4yM50SY3FGdzR2bwhSI", + value: "!(podstawa-93.21.1.13.0.ges-ca.dob-572.ods-e05.pod-944a)!", + result: { + word: "podstawa", + correct: 21, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "03.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/proste-ino-trzeba-trafic-24-04-2025-diffle-diffleen-grywebowe-bowe-31-letters-in" +] = [ + { + date: "24.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNx0CdhZmL0MTL0FGauImYx0SYwNnL1QTL0FWbuMDZtU3by5SOmFTLhxmYuAjL1EjLw4iNx4CNxETLlRXYmhSI", + value: "!(fate-114.16.0.15.0.bla-1f9.rou-d3.mat-45.spa-1bb.hat-34.fat-16)!", + result: { + word: "fate", + correct: 16, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYTMtQXYm5iZzITLoN2MuYjNt0Wds5iYx0CdhRmL2gTLhVmcuAjLyEjLx4SMx4CNxETLlRXYmhSI", + value: "!(fate-114.11.1.12.0.rea-86.dat-1b.lum-66.3ch-23f.fat-16)!", + result: { + word: "fate", + correct: 11, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYTMtQXYm5CMmRTLoN2MuIjNy0ybyJmL1ETL0FGbuEjMtUGaj5CMuQTMuEjL54CNxETLlRXYmhSI", + value: "!(fate-114.9.1.14.0.che-21.lat-15.bro-262.3ch-4f0.fat-16)!", + result: { + word: "fate", + correct: 9, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2ETL0FmZugTMtQXYi5COtsWY05SZx0CajFmLhRWLuF2cuITMx0CbhBnLyYTLtF2ZuAjLxEjLx4yNx4CNxETLlRXYmhSI", + value: + "!(fate-114.17.1.11.0.gam-62.pal-112.san-da.ach-1e.tak-8.bat-18.fat-16)!", + result: { + word: "fate", + correct: 17, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 29, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNx0CdhZmL0MTL0FGauUTMtQXYs5yMtQXYn5SZz0CdhBnLyQTLk9WbuAjLxEjLx4yNx4CNxETLlRXYmhSI", + value: "!(fate-114.17.1.11.0.mod-42.pat-3e.gat-3.lat-15.hat-34.fat-16)!", + result: { + word: "fate", + correct: 17, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 29, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNx0CdhZmL1QTL0FWbuATL1x2YuEWMtQXYn5iM3ETL0hXZuAjL3EjLy4SMx4CNxETLlRXYmhSI", + value: "!(fate-114.11.2.17.0.ext-172.gat-1a.clu-0.mat-45.fat-16)!", + result: { + word: "fate", + correct: 11, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNx0CdhZmL1QTL0FWbuMGNx0SdsZmL3EWL0VGcuAjLwEjLy4SMx4CNxETLlRXYmhSI", + value: "!(fate-114.11.2.10.0.pet-a7.flu-14c.mat-45.fat-16)!", + result: { + word: "fate", + correct: 11, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "24.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/przyjemne-12-05-2025-diffle-difflepl-grywebowe-25-liter-w-3-slowach-large-green-" +] = [ + { + date: "12.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2ATNtMXYs5iM1QTLvxGcuMDNzETLsl3duAjLyEjLw4yMx4iMzETLptGdvt2chJDOlUzQlgSI", + value: "!(łaskotki-132.13.0.12.0.wyl-1343.plo-452.las-506)!", + result: { + word: "łaskotki", + correct: 13, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "12.05.2025", + }, + }, + { + date: "12.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNwUjLhFGNtMXYs5iNyMTLhh2YuUjY10ybsdmLmFmYt8Gb65yNkNTLp1WduAjL4EjLx4CMy4iMzETLptGdvt2chJDOlUzQlgSI", + value: + "!(łaskotki-132.20.1.18.0.umi-3d7.zlo-baf.glo-5b5.cha-326.las-4aa.506)!", + result: { + word: "łaskotki", + correct: 20, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "12.05.2025", + }, + }, + { + date: "12.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2ATNtMXYs5SZ50ycvtmLkJTLhl2ZuUTYx0SZsZmL2MWOx0ybwNnLyYDNt8mc05iZiJTL1h2YuAjLxIjL14SOx4iMzETLptGdvt2chJDOlUzQlgSI", + value: + "!(łaskotki-132.19.5.21.0.chu-2bf.tro-462.spo-19c6.fle-1a5.gia-2d.kos-9e.las-506)!", + result: { + word: "łaskotki", + correct: 19, + position: 5, + incorrect: 21, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "12.05.2025", + }, + }, + { + date: "12.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNwUTLzFmLwETMtM3bs5iN0UWLwN3duAjLxEjLx4SNx4iMzETLptGdvt2chJDOlUzQlgSI", + value: "!(łaskotki-132.15.1.11.0.wsp-e46.los-110.as-506)!", + result: { + word: "łaskotki", + correct: 15, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "12.05.2025", + }, + }, + { + date: "12.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNwUTLzFGbuITZy0ych1mLkhTMtA3ch5CMukjLy4CNx4iMzETLptGdvt2chJDOlUzQlgSI", + value: "!(łaskotki-132.14.2.9.0.asp-18d.mas-2e2.las-506)!", + result: { + word: "łaskotki", + correct: 14, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "12.05.2025", + }, + }, + { + date: "12.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2ATNtMXYs5iMzMTMtMXe35CMuQjLx4SMx4iMzETLptGdvt2chJDOlUzQlgSI", + value: "!(łaskotki-132.11.1.4.0.wys-1332.las-506)!", + result: { + word: "łaskotki", + correct: 11, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "12.05.2025", + }, + }, + { + date: "12.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2ATNtMnLwEDNtQXYs5CZxczMtoncw5CMugjLx4iNx4iMzETLptGdvt2chJDOlUzQlgSI", + value: "!(łaskotki-132.16.1.8.0.prz-371d.lat-410.s-506)!", + result: { + word: "łaskotki", + correct: 16, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "12.05.2025", + }, + }, + { + date: "12.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNwUTLz5CNxQTLrFGbugDN20ybsdnLmlDNt8Gb65CMugjLw4yNx4iMzETLptGdvt2chJDOlUzQlgSI", + value: "!(łaskotki-132.17.0.8.0.zlo-49f.wlo-648.lak-414.s-506)!", + result: { + word: "łaskotki", + correct: 17, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "12.05.2025", + }, + }, + { + date: "12.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNwUTLz5iM5MTLrFGbugTOt8me65CMugjLw4SNx4iMzETLptGdvt2chJDOlUzQlgSI", + value: "!(łaskotki-132.15.0.8.0.zzo-98.lak-392.s-506)!", + result: { + word: "łaskotki", + correct: 15, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "12.05.2025", + }, + }, + { + date: "12.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYDM10ych5CZzETL69GbuUGM1ETLllWbuUTNy0iavdnLzkDOhFTL6JHcuAjLxIjLy4SOx4iMzETLptGdvt2chJDOlUzQlgSI", + value: + "!(łaskotki-132.19.2.21.0.prz-1a893.woj-255.mie-150e.loz-13d.as-506)!", + result: { + word: "łaskotki", + correct: 19, + position: 2, + incorrect: 21, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "12.05.2025", + }, + }, + { + date: "12.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNwUTLzFGbuEjZ00CajNjLiNGNt8Gbi5SZjZTLs9meuEjLyEjLx4SNx4iMzETLptGdvt2chJDOlUzQlgSI", + value: "!(łaskotki-132.15.1.12.1.zol-6ce.blo-4cb.3ch-4f1.las-506)!", + result: { + word: "łaskotki", + correct: 15, + position: 1, + incorrect: 12, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 28, + date: "12.05.2025", + }, + }, + { + date: "12.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNwUTLzFGbuATYz0ybyRnL5cTMtMXYm5iZk1ycv5mLzETNtEGbz5iMzEWLvxmeuMWYiRTLk9GcuAjL3EjL04yNy4iMzETLptGdvt2chJDOlUzQlgSI", + value: + "!(łaskotki-132.27.4.17.0.pod-4bac.zlo-a32.sla-513.nos-df.fas-179.tro-3a0.las-506)!", + result: { + word: "łaskotki", + correct: 27, + position: 4, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 48, + date: "12.05.2025", + }, + }, + { + date: "12.05.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2ATNtMXYs5SMhlTMt8Gcz5CMugjLy4CMx4iMzETLptGdvt2chJDOlUzQlgSI", + value: "!(łaskotki-132.10.2.8.0.spo-19a1.las-506)!", + result: { + word: "łaskotki", + correct: 10, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "12.05.2025", + }, + }, + { + date: "12.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNwUTLz5iMiNTLw5CNxQTLrFGbugTOt8me65CMukjLw4SOx4iMzETLptGdvt2chJDOlUzQlgSI", + value: "!(łaskotki-132.19.0.9.0.zzo-98.lak-414.p-3b2.s-506)!", + result: { + word: "łaskotki", + correct: 19, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "12.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/smiesznostka-nie-znalem-21-04-2025-flag-pl-diffle-difflepl-grywebowe-34-litery-w" +] = [ + { + date: "21.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpImYy0Cdh5iY10ycl5iY40Cd55CNk1Cb15CM5ATMx0ieyBnLw4SNx4CMukTMuETMx0SYrRXYwhSI", + value: "!(patka-111.19.0.15.0.prz-11090.ul-d4.yt-8b.es-5b.at-2bb)!", + result: { + word: "patka", + correct: 19, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "21.04.2025", + }, + }, + { + date: "21.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYiJTL0FGcukzY10CajNjLxIzMtMWYuEjZy0SZpBnLxQTLwVHbukjZ50ycvtmLw4CNx4CMucTMuETMx0SYrRXYwhSI", + value: + "!(patka-111.17.0.14.0.kos-9f9.lup-41.pie-2f1.ac-321.3ch-5c9.pat-2bb)!", + result: { + word: "patka", + correct: 17, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "21.04.2025", + }, + }, + { + date: "21.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJmMtQXYw5COkFTL0FGbuMmZtQ3c35iMiJTLqFmYukjNz0SblRmLw4COx4SMuYTMuETMx0SYrRXYwhSI", + value: "!(patka-111.16.1.18.0.dem-369.baj-2b2.wst-fc.lat-1d8.pat-2bb)!", + result: { + word: "patka", + correct: 16, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "21.04.2025", + }, + }, + { + date: "21.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpImYy0CdhBnLwYmMtQXYr5CZy0CalJmLw4yMx4iMuETMuETMx0SYrRXYwhSI", + value: "!(patka-111.11.2.13.0.beh-2d.kat-2f0.pat-2bb)!", + result: { + word: "patka", + correct: 11, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "21.04.2025", + }, + }, + { + date: "21.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpImYy4SO5cTL05yM3gTLsFGcuQmM00icwNnLw4iMx4CMuYTMuETMx0SYrRXYwhSI", + value: "!(patka-111.16.0.12.0.spr-42d.pal-873.t-799.2bb)!", + result: { + word: "patka", + correct: 16, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "21.04.2025", + }, + }, + { + date: "21.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYiJjL4kzNuY2YtQnLiJWYtwWYw5SYjdTLzFWbuMmNh1SYydmLw4yMx4CMugTMuETMx0SYrRXYwhSI", + value: "!(patka-111.18.0.13.0.gra-a6c.mas-7ca.pal-abb.t-cf.798.2bb)!", + result: { + word: "patka", + correct: 18, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "21.04.2025", + }, + }, + { + date: "21.04.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpImYy4CMuEWO20CdhBnLhNDNtg2Yz4iNzMTL0FGcuAjL44CMukTMuETMx0SYrRXYwhSI", + value: "!(patka-111.19.0.8.0.pat-336.3ch-43a.pat-69a.0.2bb)!", + result: { + word: "patka", + correct: 19, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "21.04.2025", + }, + }, + { + date: "21.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJmMtQXYw5CNhVTL6JHdllmbuAjLwEjLx4SOuETMx0SYrRXYwhSI", + value: "!(patka-111.9.1.10.0.nietrz-5a4.pat-2bb)!", + result: { + word: "patka", + correct: 9, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "21.04.2025", + }, + }, + { + date: "21.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpImYy0CdhBnL0QWL0FGduADOtQXYy5SZ4ETLrFWbuYmYy0SdoNmLw4CNx4CMugTMuETMx0SYrRXYwhSI", + value: "!(patka-111.18.0.14.0.chu-2bf.mak-18e.rat-80.tat-d4.pat-2bb)!", + result: { + word: "patka", + correct: 18, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "21.04.2025", + }, + }, + { + date: "21.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYiJTL0FmL50SY05CNyYjMtI3bw5CNx0SdlZmLw4SMx4SMuITMuETMx0SYrRXYwhSI", + value: "!(patka-111.12.1.11.0.feu-14.por-2624.ta-9.at-2bb)!", + result: { + word: "patka", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "21.04.2025", + }, + }, + { + date: "21.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYiJTL0FGcuE2Mx0SYnFmLwQGZtEGaj5iMx0CdhpmLwEmMtQXYt5SYjNTLzF2auQjZx0CZ5dnLw4SNx4SMuUjMuETMx0SYrRXYwhSI", + value: + "!(patka-111.25.1.15.0.wyd-1f4.kas-3ca.mat-2a0.jat-12.cha-dd0.aga-13a.pat-2bb)!", + result: { + word: "patka", + correct: 25, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "21.04.2025", + }, + }, + { + date: "21.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpImYy0CdhBnLiNDOtEGbr5iMx0CdhpmLjRTMtE2dz5CMhJTL0FWbucTMtE2a05yNy0ya1VmLw4SNx4SMuYjMuETMx0SYrRXYwhSI", + value: + "!(patka-111.26.1.15.0.euk-27.tka-17.mat-2a0.swa-14c.jat-12.kla-83b.pat-2bb)!", + result: { + word: "patka", + correct: 26, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "21.04.2025", + }, + }, + { + date: "21.04.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpImYy0Cdh5iNhNWLhxmLhFzNz0ieyBnLw4CMx4SMuITMuETMx0SYrRXYwhSI", + value: "!(patka-111.12.1.10.0.prz-371a.la-ca6.at-2bb)!", + result: { + word: "patka", + correct: 12, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "21.04.2025", + }, + }, + { + date: "21.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJmMtQXYuYGM30SYy5SNxITLhxmLhFjM10ievBnLw4SMx4SMucTMuETMx0SYrRXYwhSI", + value: "!(patka-111.17.1.11.0.poz-521a.la-215.ra-70f.at-2bb)!", + result: { + word: "patka", + correct: 17, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "21.04.2025", + }, + }, + { + date: "21.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJmMtQXYuYmM00Cdv5yM5gTYx0ieyBnLw4iMx4CMuETMuETMx0SYrRXYwhSI", + value: "!(patka-111.11.0.12.0.prz-1a893.ot-42f.at-2bb)!", + result: { + word: "patka", + correct: 11, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "21.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/sprawilo-wieksze-problemy-niz-powinno-02-04-2025-diffle-difflepl-grywebowe-29-li" +] = [ + { + date: "02.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpczMh1ycr5SNwITLrNXZuITO10CbptmLiFTL3p3YuAjL24iMuEjMuITOtIXZ0J3bwN3alhSI", + value: "!(eksporter-92.21.2.6.0.czw-1b.kil-592.esk-205.ks-a37)!", + result: { + word: "eksporter", + correct: 21, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "02.04.2025", + }, + }, + { + date: "02.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3MTYtM3al5SYiNTLlB3cuAjL04iMuITMuITOtIXZ0J3bwN3alhSI", + value: "!(eksporter-92.12.2.4.0.spe-3ba.eks-a37)!", + result: { + word: "eksporter", + correct: 12, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "02.04.2025", + }, + }, + { + date: "02.04.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNzEWLztWZuEmN1ITLy9GcucTO50Cc1NnLhRmMy0yavBnLw4CMx4yMuIjMuITOtIXZ0J3bwN3alhSI", + value: "!(eksporter-92.22.3.10.0.pok-22da.sup-997.por-256a.eks-a37)!", + result: { + word: "eksporter", + correct: 22, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "02.04.2025", + }, + }, + { + date: "02.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpczMh1ycrVmLkRTMtg2Yz4CMtU3b05iMmFTMt8Gcz5COhhjMtMnLkRzYtc2bw5iZzcTL0VWbuYGOi1iYhpnLw4CNx4yMuMzMuITOtIXZ0J3bwN3alhSI", + value: + "!(eksporter-92.33.3.14.0.zab-b8f.met-73f.pog-c4d.s-28a8.spo-11f2.tou-0.3ch-14d.eks-a37)!", + result: { + word: "eksporter", + correct: 33, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 50, + date: "02.04.2025", + }, + }, + { + date: "02.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNzEmL5ITYtM3al5CZyQTLyB3cuAjL34SMuAjMuITOtIXZ0J3bwN3alhSI", + value: "!(eksporter-92.20.1.7.0.spr-42d.eks-a29.a37)!", + result: { + word: "eksporter", + correct: 20, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "02.04.2025", + }, + }, + { + date: "02.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNzEWLztWZuEmN00CclJnLzEzNtI3bm5iNxETLoN2MuQWO00SZyRnL3IGNtg2Yz4iMidTMts2bw5SZ0ETLsVmYuIDM10Cdz9mLyQzNt8mcr5iZ5ETLz9WbuQmZ10yb0NnLmJmMtUHaj5CMugTMuUTMuEDNuITOtIXZ0J3bwN3alhSI", + value: + "!(eksporter-92.41.15.18.0.chu-2bf.sto-5fd.mos-19f.kro-742.ost-502.bel-14e.pok-17b2.3ch-4b7.tre-49d.3ch-116.for-713.rep-46a.eks-a37)!", + result: { + word: "eksporter", + correct: 41, + position: 15, + incorrect: 18, + knownIncorrect: 0, + totalWords: 13, + totalLetters: 74, + date: "02.04.2025", + }, + }, + { + date: "02.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpczMh1ycrVmL5UTLy92cuIDZz0SdytmLyEmMtUmcm5yY2EWLhJ3ZuAjL54CNuAjMuITOtIXZ0J3bwN3alhSI", + value: "!(eksporter-92.20.4.9.0.gra-a6c.fre-2a2.kru-3d2.sor-59.eks-a37)!", + result: { + word: "eksporter", + correct: 20, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "02.04.2025", + }, + }, + { + date: "02.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3MTYtM3al5SOtoWZm5CNk1iclRmL1cDZt8Gcz5yM5gTYx0ieyBnLw4iNx4SMuMjMuITOtIXZ0J3bwN3alhSI", + value: "!(eksporter-92.23.1.16.0.prz-1a893.spo-d75.der-d4.fej-9.eks-a37)!", + result: { + word: "eksporter", + correct: 23, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "02.04.2025", + }, + }, + { + date: "02.04.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNzEWLz5iZ0MTLvtWZuYTYi1SZp1mLx4iMx4yMucTMuITOtIXZ0J3bwN3alhSI", + value: "!(eksporter-92.17.3.12.1.mie-ba6.eko-34f.s-a37)!", + result: { + word: "eksporter", + correct: 17, + position: 3, + incorrect: 12, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 32, + date: "02.04.2025", + }, + }, + { + date: "02.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3MTYtM3al5iYxIWLlR3cuQTY10ieyRXZp5mLw4SMx4iNuYTMuITOtIXZ0J3bwN3alhSI", + value: "!(eksporter-92.16.6.11.0.nietrz-5a4.ste-b1b.eks-a37)!", + result: { + word: "eksporter", + correct: 16, + position: 6, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 33, + date: "02.04.2025", + }, + }, + { + date: "02.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNzEWLztWZuQmM30CbvtmLlVWLrV2dukjNz0SblRmLw4CNx4iMuAjMuITOtIXZ0J3bwN3alhSI", + value: "!(eksporter-92.20.2.14.0.dem-369.wek-ee.kol-72d.eks-a37)!", + result: { + word: "eksporter", + correct: 20, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "02.04.2025", + }, + }, + { + date: "02.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3MTYukzNh1ycr5SNmFTLrNnL3ITLrVXZuAjL34iMuYjMuITOtIXZ0J3bwN3alhSI", + value: "!(eksporter-92.26.2.7.0.euk-27.sk-1f5.ks-a79.a37)!", + result: { + word: "eksporter", + correct: 26, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "02.04.2025", + }, + }, + { + date: "02.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNzEWLztWZuEmN00CclJnLyYWMx0ybwNnL2IWMt8Gcv5SOidTLs9GcuMmYx0CZv1mLw4iMx4CMuEzMuITOtIXZ0J3bwN3alhSI", + value: + "!(eksporter-92.31.0.12.0.mod-1bc.pol-7b9.opo-1b6.spo-11f2.rep-46a.eks-a37)!", + result: { + word: "eksporter", + correct: 31, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "02.04.2025", + }, + }, + { + date: "02.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpczMh1ycrVmL0ITMx0CbvtmL2QDNy0icvBnLyQGZtIXZ05SNjJTL0VmcuQjZx0CZ5dnLw4CMx4CNuAzMuITOtIXZ0J3bwN3alhSI", + value: + "!(eksporter-92.30.4.10.0.wyd-1f4.ret-2c5.ter-dd2.por-2446.kol-1124.eks-a37)!", + result: { + word: "eksporter", + correct: 30, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 44, + date: "02.04.2025", + }, + }, + { + date: "02.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3MTYtM3al5iZzMWLvB3cuEWMyUTL69GcuAjL14yMucTMuITOtIXZ0J3bwN3alhSI", + value: "!(eksporter-92.17.3.5.0.poz-521a.spo-c3f.eks-a37)!", + result: { + word: "eksporter", + correct: 17, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "02.04.2025", + }, + }, + { + date: "02.04.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3MTYtM3al5CNyETMtw2br5iN0QjMtI3bw5iNk1iZ1JmLjZGZuM2Mj1ybwNnLhFzNz0ieyBnLw4CNx4iMuYzMuITOtIXZ0J3bwN3alhSI", + value: + "!(eksporter-92.36.2.14.0.prz-371a.spo-c3c.dfc.buf-d6.por-2446.kol-1124.eks-a37)!", + result: { + word: "eksporter", + correct: 36, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 52, + date: "02.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/swietne-24-03-2025-flag-pl-diffle-difflepl-grywebowe-34-litery-w-5-slowach-large" +] = [ + { + date: "24.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiZmNt4mLw0yZ5dnLhVWL51WducjMx0CZhNnLzADOtI3bm5CMuUTMuMjL2EjLzgTLhh2Yv5We3hSI", + value: "!(wynocha-83.16.3.15.0.for-803.sad-127.umy-ea.wyg-0.n-6fb)!", + result: { + word: "wynocha", + correct: 16, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "24.03.2025", + }, + }, + { + date: "24.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiZmNt4mLzImZtMWe35yNh1yYhRmL0EzNtoncw5CMuETMuEjL1EjLzgTLhh2Yv5We3hSI", + value: "!(wynocha-83.15.1.11.0.prz-714.dac-a7.wyc-fb3.n-6fb)!", + result: { + word: "wynocha", + correct: 15, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "24.03.2025", + }, + }, + { + date: "24.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiZmNt4We35CM2YTL0F2auAjL34yMukjLzgTLhh2Yv5We3hSI", + value: "!(wynocha-83.9.3.7.0.kat-660.wyn-6fb)!", + result: { + word: "wynocha", + correct: 9, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "24.03.2025", + }, + }, + { + date: "24.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYmZTLul3duI2Y10ib5NnLhRmMy0yavBnLw4yNuMjL0EjLzgTLhh2Yv5We3hSI", + value: "!(wynocha-83.14.3.7.0.pok-22da.syn-5cb.wyn-6fb)!", + result: { + word: "wynocha", + correct: 14, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "24.03.2025", + }, + }, + { + date: "24.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYmZTLul3duYmYy0SdoNmLw4CNuMjLwEjLzgTLhh2Yv5We3hSI", + value: "!(wynocha-83.10.3.4.0.chu-2bf.wyn-6fb)!", + result: { + word: "wynocha", + correct: 10, + position: 3, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "24.03.2025", + }, + }, + { + date: "24.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiZmNt4mLxMjYx0Sb5dnLkJDNtIHcz5CMuATMuIjL0EjLzgTLhh2Yv5We3hSI", + value: "!(wynocha-83.14.2.10.0.spr-42d.wym-1b31.n-6fb)!", + result: { + word: "wynocha", + correct: 14, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "24.03.2025", + }, + }, + { + date: "24.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiZmNt4WeuMWZx0CbvdnL0EWNtonc0VWau5CMuETMuMjLzEjLzgTLhh2Yv5We3hSI", + value: "!(wynocha-83.13.3.11.0.nietrz-5a4.wol-1ec.yn-6fb)!", + result: { + word: "wynocha", + correct: 13, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "24.03.2025", + }, + }, + { + date: "24.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiZmNt4mL1EjYtMWe35SOzETLjFWbukTOx0CajNjL1QTNtQ2buUWMt8Gb35CZ5ETLul3YuczM30Se6NnLjZTYtEmcn5CMugTMuUjL1IjLzgTLhh2Yv5We3hSI", + value: + "!(wynocha-83.25.5.18.0.gra-a6c.szy-737.cyn-19d.wlo-1e.od-545.3ch-199.mac-139.wyc-b15.n-6fb)!", + result: { + word: "wynocha", + correct: 25, + position: 5, + incorrect: 18, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 48, + date: "24.03.2025", + }, + }, + { + date: "24.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiZmNt4mLkFmNx0ya5dnLkR2M00CcvBnLw4COuMjLzEjLzgTLhh2Yv5We3hSI", + value: "!(wynocha-83.13.3.8.0.pop-43dd.wyk-16ad.n-6fb)!", + result: { + word: "wynocha", + correct: 13, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "24.03.2025", + }, + }, + { + date: "24.03.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiZmNt4mLiJjYx0Sb55CMtw2b35CMt82Z65SM0ETLl9GcucjZtsWaz5CMuMTMuAjLwIjLzgTLhh2Yv5We3hSI", + value: "!(wynocha-83.20.0.13.0.sik-f7.poe-141.zgo-0.wol-0.ym-1b2b.n-6fb)!", + result: { + word: "wynocha", + correct: 20, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "24.03.2025", + }, + }, + { + date: "24.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiZmNt4mLycjNx0yauQjZx0CZ5dnLw4iNuIjL0EjLzgTLhh2Yv5We3hSI", + value: "!(wynocha-83.14.2.6.0.wyd-1f4.k-1672.n-6fb)!", + result: { + word: "wynocha", + correct: 14, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "24.03.2025", + }, + }, + { + date: "24.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiZmNt4We35yM5gTYx0ieyBnLw4COuEjLxEjLzgTLhh2Yv5We3hSI", + value: "!(wynocha-83.11.1.8.0.prz-1a893.wyn-6fb)!", + result: { + word: "wynocha", + correct: 11, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "24.03.2025", + }, + }, + { + date: "24.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpImZ20ib5dnL4U2Ntknez5CO0ITLuR2buYWMtsWdl5CMuETMuMjL1EjLzgTLhh2Yv5We3hSI", + value: "!(wynocha-83.15.3.11.0.euk-1f.odn-248.szy-7e8.wyn-6fb)!", + result: { + word: "wynocha", + correct: 15, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "24.03.2025", + }, + }, + { + date: "24.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiZmNt4We35iNhJWLllWbuAjL54yMukjLzgTLhh2Yv5We3hSI", + value: "!(wynocha-83.9.3.9.0.mie-ba6.wyn-6fb)!", + result: { + word: "wynocha", + correct: 9, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "24.03.2025", + }, + }, + { + date: "24.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpImZ20ib5dnL1YWL5JXduQGOxETL05WYuUmMt42bn5SYxITNto3bw5CMuMTMucjL3EjLzgTLhh2Yv5We3hSI", + value: "!(wynocha-83.17.7.13.0.poz-521a.gon-2e.ant-118d.ury-f5.wyn-6fb)!", + result: { + word: "wynocha", + correct: 17, + position: 7, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "24.03.2025", + }, + }, + { + date: "24.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpImZ20ib5dnLw0ydv5mLhFzNz0ieyBnLw4SOuEjLyEjLzgTLhh2Yv5We3hSI", + value: "!(wynocha-83.12.1.9.0.prz-371a.now-0.wyn-6fb)!", + result: { + word: "wynocha", + correct: 12, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "24.03.2025", + }, + }, + { + date: "24.03.2025", + nick: "Swbd", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYmZTLul3duITY5ETL09GcuMTNtonck5CMuATMuEjLxEjLzgTLhh2Yv5We3hSI", + value: "!(wynocha-83.11.1.10.0.drz-53.pot-19a2.wyn-6fb)!", + result: { + word: "wynocha", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "24.03.2025", + }, + }, + { + date: "24.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiZmNt4WeuETLvl2duATL69GcuATLk9WbugTZtEmcm5CMuATMuAjL3EjLzgTLhh2Yv5We3hSI", + value: "!(wynocha-83.17.0.10.0.fra-e8.mod-0.poz-0.wio-1.yn-6fb)!", + result: { + word: "wynocha", + correct: 17, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "24.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/szybko-i-latwo-26-03-2025-diffle-difflepl-grywebowe-28-liter-w-3-slowach-large-g" +] = [ + { + date: "26.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWOl1SY6NnL2cTYx0ychpnLzQzMx0Cb5dnLw4yNuMjL4EjL1gTL3gTJ0MUJhd3buFmezhSI", + value: "!(szanować-85.18.3.7.0.wyl-1343.zas-1a76.sza-e9d)!", + result: { + word: "szanować", + correct: 18, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "26.03.2025", + }, + }, + { + date: "26.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ5UmLzEjNtEmeuQGNx0yd0NnLyI2NtA3c35CMuITMuMjLxIjL1gTL3gTJ0MUJhd3buFmezhSI", + value: "!(szanować-85.21.3.12.0.wsp-7b2.stw-14d.za-613.e9d)!", + result: { + word: "szanować", + correct: 21, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "26.03.2025", + }, + }, + { + date: "26.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ5UWLhp3cuYDNl1CczdnLw4yNuEjLzEjL1gTL3gTJ0MUJhd3buFmezhSI", + value: "!(szanować-85.13.1.7.0.wsp-e46.sza-e9d)!", + result: { + word: "szanować", + correct: 13, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "26.03.2025", + }, + }, + { + date: "26.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKklTZtEmez5iZxQDNto3bw5CO50yb6pnLw4iNuEjL1EjL1gTL3gTJ0MUJhd3buFmezhSI", + value: "!(szanować-85.15.1.6.0.zzo-98.poz-441f.sza-e9d)!", + result: { + word: "szanować", + correct: 15, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "26.03.2025", + }, + }, + { + date: "26.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ5UWLhp3cuQGOx0CczFmLw4iNuEjLzEjL1gTL3gTJ0MUJhd3buFmezhSI", + value: "!(szanować-85.13.1.6.0.asp-18d.sza-e9d)!", + result: { + word: "szanować", + correct: 13, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "26.03.2025", + }, + }, + { + date: "26.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWOl1SYuQ2Y10Se6NnL0IWYh1ievJnLmJmMtUHaj5CMuETMuQjLyIjL1gTL3gTJ0MUJhd3buFmezhSI", + value: "!(szanować-85.22.4.11.0.chu-2bf.roz-aab4.szy-5cd.a-e9d)!", + result: { + word: "szanować", + correct: 22, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "26.03.2025", + }, + }, + { + date: "26.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKklTZtEmez5iZjVWLlp3YuIDNi1ieytmLw4SOuEjL2EjL1gTL3gTJ0MUJhd3buFmezhSI", + value: "!(szanować-85.16.1.9.0.krz-b42.cze-ecf.sza-e9d)!", + result: { + word: "szanować", + correct: 16, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "26.03.2025", + }, + }, + { + date: "26.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKklTZtEmLyATMt4mLyEWLvpnLlZWOtg2Yz5iMzMTMtMXe35CMuATMuAjLwMjL1gTL3gTJ0MUJhd3buFmezhSI", + value: "!(szanować-85.30.0.10.0.wys-1332.sch-9fe.zo-a2.n-102.a-e9d)!", + result: { + word: "szanować", + correct: 30, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "26.03.2025", + }, + }, + { + date: "26.03.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWOl1SY6NnLjJTL6NXduYWM0QTL69GcucTZt8me65CMuATMuEjLyIjL1gTL3gTJ0MUJhd3buFmezhSI", + value: "!(szanować-85.22.1.10.0.zzo-e7.poz-441f.usz-2c.sza-e9d)!", + result: { + word: "szanować", + correct: 22, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "26.03.2025", + }, + }, + { + date: "26.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKklTZtEmez5CO50yb6pnLw4SNuAjLxEjL1gTL3gTJ0MUJhd3buFmezhSI", + value: "!(szanować-85.11.0.5.0.zzo-98.sza-e9d)!", + result: { + word: "szanować", + correct: 11, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "26.03.2025", + }, + }, + { + date: "26.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWOl1SY6NnLjNTNx0ydk9mL5UTL6JHcugTOt8me65CMuQTMuIjLwIjL1gTL3gTJ0MUJhd3buFmezhSI", + value: "!(szanować-85.20.2.14.0.zzo-98.prz-59.odw-153c.sza-e9d)!", + result: { + word: "szanować", + correct: 20, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "26.03.2025", + }, + }, + { + date: "26.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKklTZtEmez5SYkJTLh5meuMTO4EWMtoncw5CMuETMuEjL3EjL1gTL3gTJ0MUJhd3buFmezhSI", + value: "!(szanować-85.17.1.11.0.prz-1a893.zna-2da.sza-e9d)!", + result: { + word: "szanować", + correct: 17, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "26.03.2025", + }, + }, + { + date: "26.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ5UWLhp3cuYTYi1SZp1mLw4COuEjLzEjL1gTL3gTJ0MUJhd3buFmezhSI", + value: "!(szanować-85.13.1.8.0.mie-ba6.sza-e9d)!", + result: { + word: "szanować", + correct: 13, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "26.03.2025", + }, + }, + { + date: "26.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWOl1SY6NnLzQTNy0ychpnLkFzNz0ieyBnLw4yNuIjL4EjL1gTL3gTJ0MUJhd3buFmezhSI", + value: "!(szanować-85.18.2.7.0.prz-371d.zas-2543.sza-e9d)!", + result: { + word: "szanować", + correct: 18, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "26.03.2025", + }, + }, + { + date: "26.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWOl5SNkRTLh5SM30ybuUDO10yauQWZ30yY6NnLmlDNt8Gb65CMuQTMuEjL1IjL1gTL3gTJ0MUJhd3buFmezhSI", + value: "!(szanować-85.25.1.14.0.zlo-49f.szc-7ed.k-585.o-71.a-4d5.e9d)!", + result: { + word: "szanować", + correct: 25, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "26.03.2025", + }, + }, + { + date: "26.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKklTZtEmez5yYwkzMx0ieyBnL0gTMtkWb15CMuMTMuAjL0EjL1gTL3gTJ0MUJhd3buFmezhSI", + value: "!(szanować-85.14.0.13.0.umi-184.prz-1390c.sza-e9d)!", + result: { + word: "szanować", + correct: 14, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "26.03.2025", + }, + }, + { + date: "26.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKklTZtEmez5iNiFWLyFmL2ITNtw2b65CMuATMuMjLzEjL1gTL3gTJ0MUJhd3buFmezhSI", + value: "!(szanować-85.13.3.10.0.zol-526.ar-ab6.sza-e9d)!", + result: { + word: "szanować", + correct: 13, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "26.03.2025", + }, + }, + { + date: "26.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWOl1SYuQTMtsmez5CM30ycvpnLzQjY00CZvBnLw4SOuMjLzIjL1gTL3gTJ0MUJhd3buFmezhSI", + value: "!(szanować-85.23.3.9.0.pod-4b43.zos-70.szk-14.a-e9d)!", + result: { + word: "szanować", + correct: 23, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "26.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/trudne-sie-wylosowalo-diffle-25-03-2025-diffle-difflepl-92-litery-w-15-slowach-5" +] = [ + { + date: "25.03.2025", + nick: "hapaczuri", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOy0ibukDNtcWao5yNjNTLpxmL4EjMt8mbn5COh1ycuMWLllGauATLp5WduIGNt4WYuADZx0ycp5mLz0iYvZmLy0ydpJmL3cTLll2auMGZ50SYyRnLlJzMtQWZt5CMtAXdk5CNx4iMz4iNuQTNuQDOtEGdzlWdk5WaohSI", + value: + "!(hinduista-84.54.6.32.14.dup-0.med-32e.tra-9dc.kie-77.biw-2.fob-3.nis-1d0.an-4b.uni-0.hie-c.s-a8.gno-218.li-3c7.hig-49.n-28)!", + result: { + word: "hinduista", + correct: 54, + position: 6, + incorrect: 32, + knownIncorrect: 14, + totalWords: 15, + totalLetters: 92, + date: "25.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/uczciwie-zlosliwe-nietrudne-takie-jak-lubie-18-04-2025-flag-pl-diffle-difflepl-g" +] = [ + { + date: "18.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2NtYWYo5SNuAjMtg2Yz4CNyETLtp3cuADOtcWZ35yYhVTLvJHcuAjLwIjLx4yMx4COwETL0ZWYohSI", + value: "!(haft-108.13.1.20.0.pro-5ac.weg-80.szm-124.3ch-20.5.haf-7c)!", + result: { + word: "haft", + correct: 13, + position: 1, + incorrect: 20, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "18.04.2025", + }, + }, + { + date: "18.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY30iZhhmL0YWLkF2aucTMz0ybwFmL5MjNtwWYi5CMuYTMuAjL54COwETL0ZWYohSI", + value: "!(haft-108.9.0.16.0.bal-639.apo-317.kad-f4.haf-7c)!", + result: { + word: "haft", + correct: 9, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "18.04.2025", + }, + }, + { + date: "18.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjdTLmFGauUTNl1SYoNmLiVWOtM3br5CMuATMuAjL44COwETL0ZWYohSI", + value: "!(haft-108.8.0.10.0.kos-9eb.cha-e55.haf-7c)!", + result: { + word: "haft", + correct: 8, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "18.04.2025", + }, + }, + { + date: "18.04.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2NtYWYo5CN3ITLqFmZuI2MuMGNtg2Yz4yY5ITL0VWbuEGZyITLr9GcuAjL2EjLy4iMx4COwETL0ZWYohSI", + value: "!(haft-108.12.2.16.0.pok-22da.met-29c.3ch-4c.3b.faj-274.haf-7c)!", + result: { + word: "haft", + correct: 12, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "18.04.2025", + }, + }, + { + date: "18.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjdTLmFGauMjNz0CajNjLx0Sd0FmL0EWNtonc0VWau5CMuYTMuEjL54COwETL0ZWYohSI", + value: "!(haft-108.9.1.16.0.nietrz-5a4.atu-1.3ch-363.haf-7c)!", + result: { + word: "haft", + correct: 9, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "18.04.2025", + }, + }, + { + date: "18.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjdTLmFGauMjZx0CajNjL4YzNtwGaj5CZyQTLyB3cuAjL1EjLw4CMx4COwETL0ZWYohSI", + value: "!(haft-108.10.0.15.0.spr-42d.chl-768.3ch-1f3.haf-7c)!", + result: { + word: "haft", + correct: 10, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "18.04.2025", + }, + }, + { + date: "18.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY30iZuMWZtMXYo5iMwQTLhxGcuQWZtIXZo5iZiJTL1h2YuAjL3EjLw4yMx4COwETL0ZWYohSI", + value: "!(haft-108.13.0.17.0.chu-2bf.her-ed.pla-402.has-ec.f-7c)!", + result: { + word: "haft", + correct: 13, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "18.04.2025", + }, + }, + { + date: "18.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2NtYWYo5iMhRWLhh2YuE2Y30ych1mLjZTYtEmcn5CMukjLw4CMx4COwETL0ZWYohSI", + value: "!(haft-108.10.0.9.0.gra-a6c.mas-7ca.cha-da2.haf-7c)!", + result: { + word: "haft", + correct: 10, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 19, + date: "18.04.2025", + }, + }, + { + date: "18.04.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2NtYWYo5CZlFTLoN2MuETL1dmeuU2Ntc3bk5CZtEGcz5CMuAjMuAjL54COwETL0ZWYohSI", + value: "!(haft-108.9.0.20.0.spa-d.dow-7e.zgu-1.3ch-1ed.haf-7c)!", + result: { + word: "haft", + correct: 9, + position: 0, + incorrect: 20, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "18.04.2025", + }, + }, + { + date: "18.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2NtYmL0kTLiFGauUmMt8Gdh5SZmJTLlB3cuAjL1EjLx4CMx4COwETL0ZWYohSI", + value: "!(haft-108.10.1.15.0.spe-2fe.ato-2e.hab-94.f-7c)!", + result: { + word: "haft", + correct: 10, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "18.04.2025", + }, + }, + { + date: "18.04.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY30iZhhmLjVTLmFGduY2M00iahJmL3UWMtIHd15iNhJWLllWbuEjL5EjLw4yMx4COwETL0ZWYohSI", + value: "!(haft-108.13.0.19.1.mie-ba6.utr-1e7.baj-43f.taf-5c.haf-7c)!", + result: { + word: "haft", + correct: 13, + position: 0, + incorrect: 19, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 32, + date: "18.04.2025", + }, + }, + { + date: "18.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjdTLm5iN10SdhhmLmNDNtoWYi5yY0ITLrFGcuATMt8Gdh5CMt0WY05CNmFTLkl3duAjL4EjLx4SNx4COwETL0ZWYohSI", + value: + "!(haft-108.15.1.18.0.wyd-1f4.tam-0.ato-10.pak-24c.baj-43f.hau-56.f-7c)!", + result: { + word: "haft", + correct: 15, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 34, + date: "18.04.2025", + }, + }, + { + date: "18.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2NtYWYo5iMhFjLzYWMtg2Yz4yN0ITLq92duMTO4EWMtoncw5CMukTMuIjL54COwETL0ZWYohSI", + value: "!(haft-108.9.2.19.0.prz-1a893.woj-247.3ch-1f3.1a2.haf-7c)!", + result: { + word: "haft", + correct: 9, + position: 2, + incorrect: 19, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "18.04.2025", + }, + }, + { + date: "18.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2NtYWYo5CZ50yYhZmLmN2MtEmci5SYxITNto3bw5CMuQTMuIjL34COwETL0ZWYohSI", + value: "!(haft-108.7.2.14.0.poz-521a.bra-3cf.fac-9d.haf-7c)!", + result: { + word: "haft", + correct: 7, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "18.04.2025", + }, + }, + { + date: "18.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjdTLmFGaugTYx0SYsBnLyMGOx0SY6NnL3ITLrVXZuAjL0EjLw4CMx4COwETL0ZWYohSI", + value: "!(haft-108.10.0.14.0.euk-27.sza-18c2.pla-1a8.haf-7c)!", + result: { + word: "haft", + correct: 10, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "18.04.2025", + }, + }, + { + date: "18.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2NtYWYo5iYtMWYk5iZzQTLqFmYuAjMuE2M00CajNjLhNGNx0SYyRnLlVTLhtWduEjLwIjLy4yMx4COwETL0ZWYohSI", + value: + "!(haft-108.13.2.20.1.uka-5e.tra-14ca.3ch-43a.20.baj-43f.dac-b.haf-7c)!", + result: { + word: "haft", + correct: 13, + position: 2, + incorrect: 20, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 35, + date: "18.04.2025", + }, + }, + { + date: "18.04.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY30iZhhmL1UTZtEGaj5SYxczMtoncw5CMuETMuEjL44COwETL0ZWYohSI", + value: "!(haft-108.8.1.11.0.prz-371a.cha-e55.haf-7c)!", + result: { + word: "haft", + correct: 8, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "18.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ultraomegaprosciuchne-szkoda-ze-nie-dla-mnie-12-03-2025-flag-pl-diffle-difflepl-" +] = [ + { + date: "12.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM00Cd1hmLzgTMtQXds5iNt4Gd15yNhFTLpd3ZuI2Mz0ib1ZmL2EWLtVHZuEjNz0Cdz9mLw4COx4yMuEjMuEzNtsWauRXdohSI", + value: + "!(hutnik-71.21.3.18.0.ost-361.dum-a6.fun-33b.gwi-1a7.utn-6.lut-183.hut-41)!", + result: { + word: "hutnik", + correct: 21, + position: 3, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNtQXdo5yM4ETL0VHbuQGZ00SauVnLj1ycp5mLhZTLvJXbuAjL54CMukTMuEzNtsWauRXdohSI", + value: "!(hutnik-71.19.0.9.0.mro-6a.nis-c.uni-4dd.lut-183.hut-41)!", + result: { + word: "hutnik", + correct: 19, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM00Cd1hmLzgTMtQXds5yYyETLu9GduADOz0yciFmLw4CMx4SMugTMuEzNtsWauRXdohSI", + value: "!(hutnik-71.18.1.10.0.abs-380.ton-12c.lut-183.hut-41)!", + result: { + word: "hutnik", + correct: 18, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQTL0VHaukDNz0ybpBnL5UTLrp3cuAjL2EjLy4SOuEzNtsWauRXdohSI", + value: "!(hutnik-71.9.2.16.0.szk-59.pio-349.hut-41)!", + result: { + word: "hutnik", + correct: 9, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM00Cd1hmL5ITMt4Wd05iM50yap5mLhRmMy0yavBnLw4SMx4yMuQTMuEzNtsWauRXdohSI", + value: "!(hutnik-71.14.3.11.0.pok-22da.nik-92.tun-129.hut-41)!", + result: { + word: "hutnik", + correct: 14, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNtQXdo5CZkRTLp5WduQmM00icwNnLw4CMx4CMuITMuEzNtsWauRXdohSI", + value: "!(hutnik-71.12.0.10.0.spr-42d.uni-4dd.hut-41)!", + result: { + word: "hutnik", + correct: 12, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "conradowl", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQTL0VHauMDOx0Cd1xmLxMTMtQXdi5iYtQXdk5SZ40ydvRnLw4SMx4SMukTMuEzNtsWauRXdohSI", + value: "!(hutnik-71.19.1.11.0.tow-8e.dut-b.but-131.lut-183.hut-41)!", + result: { + word: "hutnik", + correct: 19, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM00Cd1hmLxEjMtg2Yz4iZiJTL1h2YuAjL24SMuITMuEzNtsWauRXdohSI", + value: "!(hutnik-71.12.1.6.0.chu-2bf.3ch-211.hut-41)!", + result: { + word: "hutnik", + correct: 12, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQTL0VHauMDOx0Cd1xmLhFzNz0ieyBnLw4CMx4CMuMTMuEzNtsWauRXdohSI", + value: "!(hutnik-71.13.0.10.0.prz-371a.lut-183.hut-41)!", + result: { + word: "hutnik", + correct: 13, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Swbd", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM00Cd1hmLxMTMtQXdi5iNkFTL1l2YugDO50ieyRnLw4CMx4SMuMTMuEzNtsWauRXdohSI", + value: "!(hutnik-71.13.1.10.0.trz-988.ciu-1d6.but-131.hut-41)!", + result: { + word: "hutnik", + correct: 13, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQTL0VHauMTO4EWMtoncw5CMugjLy4SOuEzNtsWauRXdohSI", + value: "!(hutnik-71.9.2.8.0.prz-1a893.hut-41)!", + result: { + word: "hutnik", + correct: 9, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM00Cd1hmLzgTMtQXds5CZkRTLp5WduQTY10ieyRXZp5mLw4iMx4SMugTMuEzNtsWauRXdohSI", + value: "!(hutnik-71.18.1.12.0.nietrz-5a4.uni-4dd.lut-183.hut-41)!", + result: { + word: "hutnik", + correct: 18, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM00Cd1hmLhNDNt42bt5yY2EWLhJ3ZuAjL24SMuATMuEzNtsWauRXdohSI", + value: "!(hutnik-71.10.1.6.0.gra-a6c.mon-43a.hut-41)!", + result: { + word: "hutnik", + correct: 10, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQTL0VHauUjMtQXdu5yM4ETL0VHbuQTNz0SdwNnLkRGNtkmb15iN40SYkpXZp5mLw4CMx4CMucjMuEzNtsWauRXdohSI", + value: + "!(hutnik-71.27.0.10.0.niezda-86.uni-4dd.spu-354.lut-183.nut-25.hut-41)!", + result: { + word: "hutnik", + correct: 27, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQTL0VHauYmMx0ib1RnLmFTLrVXZuAjL14CNuITMuEzNtsWauRXdohSI", + value: "!(hutnik-71.12.4.5.0.euk-1f.tun-12f.hut-41)!", + result: { + word: "hutnik", + correct: 12, + position: 4, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM00Cd1hmLzgTMtQXds5CZkRTLp5WdugzMy0yapBnLwEWLud2buQjZx0CZ5dnLw4yMx4CMuMjMuEzNtsWauRXdohSI", + value: + "!(hutnik-71.23.0.13.0.wyd-1f4.ogn-a0.pik-238.uni-4dd.lut-183.hut-41)!", + result: { + word: "hutnik", + correct: 23, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQTL0VHauMDOx0Cd1xmLkBTZi1ieyBnLw4iMx4CMuMTMuEzNtsWauRXdohSI", + value: "!(hutnik-71.13.0.12.0.prz-be0d.lut-183.hut-41)!", + result: { + word: "hutnik", + correct: 13, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNtQXdo5iNhJWLllWbuAjLwEjLy4COuEzNtsWauRXdohSI", + value: "!(hutnik-71.8.2.10.0.mie-ba6.hut-41)!", + result: { + word: "hutnik", + correct: 8, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQTL0VHauMDOx0Cd1xmLjJTMt42b05SMwETL0FWbuAjL34CMukTMuEzNtsWauRXdohSI", + value: "!(hutnik-71.19.0.7.0.mat-101.ton-12c.lut-183.hut-41)!", + result: { + word: "hutnik", + correct: 19, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Tysiek", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDNtQXdo5CZzETLuVHduYTYi1SZp1mLw4iMx4yMuETMuEzNtsWauRXdohSI", + value: "!(hutnik-71.11.3.12.0.mie-ba6.tun-13d.hut-41)!", + result: { + word: "hutnik", + correct: 11, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM00Cd1hmLzgTMtQXds5CM4ITLrlmbuEWMyUTL69GcuAjL44iMuYTMuEzNtsWauRXdohSI", + value: "!(hutnik-71.16.2.8.0.poz-521a.nik-280.lut-183.hut-41)!", + result: { + word: "hutnik", + correct: 16, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "12.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/w-drugim-juz-bylo-blisko-13-04-2025-diffle-difflepl-grywebowe-23-litery-w-3-slow" +] = [ + { + date: "13.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATYtQWduIDOjNTLkFmbuMDNzETLsl3duAjL54SMuMTMuMDMx0yN4UCNDVSa6RWduhSI", + value: "!(nudzić-103.13.1.9.0.wyl-1343.nad-3c82.ud-a0)!", + result: { + word: "nudzić", + correct: 13, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "13.04.2025", + }, + }, + { + date: "13.04.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwEWLkVnbukDN1ETLppHZuYTYi1SZp1mLw4CNx4iMuITMuMDMx0yN4UCNDVSa6RWduhSI", + value: "!(nudzić-103.12.2.14.0.mie-ba6.dzi-1549.nud-a0)!", + result: { + word: "nudzić", + correct: 12, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "13.04.2025", + }, + }, + { + date: "13.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMh1CZ15mL4ImYtkmek5iNiRTLkl2duAjL54yMuATMuMDMx0yN4UCNDVSa6RWduhSI", + value: "!(nudzić-103.10.3.9.0.wid-4b6.dzi-bb8.nud-a0)!", + result: { + word: "nudzić", + correct: 10, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "13.04.2025", + }, + }, + { + date: "13.04.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMh1CZ15mL2QjMtQWdi5yYxETLhpncuMTY1ETLppHZukjMx0iekdnL0gTOx0ybwNnLw4iNx4CMuQjMuMDMx0yN4UCNDVSa6RWduhSI", + value: + "!(nudzić-103.24.0.16.0.spo-1984.wdz-129.dzi-15a3.rza-11c.bud-246.nud-a0)!", + result: { + word: "nudzić", + correct: 24, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "13.04.2025", + }, + }, + { + date: "13.04.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMh1CZ15mLmFTOtEGbi5CN2ETL6VmauQ2Nj1SYytmLw4CNx4CMugTMuMDMx0yN4UCNDVSa6RWduhSI", + value: "!(nudzić-103.18.0.14.0.kra-c7d.jez-164.bla-91f.nud-a0)!", + result: { + word: "nudzić", + correct: 18, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "13.04.2025", + }, + }, + { + date: "13.04.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMh1CZ15mL2QTZtA3c35CMukjLy4COuMDMx0yN4UCNDVSa6RWduhSI", + value: "!(nudzić-103.8.2.9.0.wsp-e46.nud-a0)!", + result: { + word: "nudzić", + correct: 8, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "13.04.2025", + }, + }, + { + date: "13.04.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMh1CZ15mLiZWLldXduQGOx0CczFmLw4SMx4SMuMTMuMDMx0yN4UCNDVSa6RWduhSI", + value: "!(nudzić-103.13.1.11.0.asp-18d.uwe-fb.nud-a0)!", + result: { + word: "nudzić", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "13.04.2025", + }, + }, + { + date: "13.04.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATYtQWdu5iN0ITLkVnYuI2MtMmej5iNy0CchdmLyMzMx0yc5dnLw4iMx4CMugTMuMDMx0yN4UCNDVSa6RWduhSI", + value: "!(nudzić-103.18.0.12.0.wys-1332.gap-26.czc-3b.bud-246.nud-a0)!", + result: { + word: "nudzić", + correct: 18, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "13.04.2025", + }, + }, + { + date: "13.04.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMh1CZ15mLmF2Mtkne15iZiJTL1h2YuAjL54yMuETMuMDMx0yN4UCNDVSa6RWduhSI", + value: "!(nudzić-103.11.3.9.0.chu-2bf.uzy-3af.nud-a0)!", + result: { + word: "nudzić", + correct: 11, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "13.04.2025", + }, + }, + { + date: "13.04.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMh1CZ15mL2QjMtQWdi5CZ1ITLkVHbugDZy0yboNmL2UzNz0ieyBnLw4iMx4SMuMjMuMDMx0yN4UCNDVSa6RWduhSI", + value: "!(nudzić-103.23.1.12.0.prz-3756.cho-2d8.lud-25d.bud-246.nud-a0)!", + result: { + word: "nudzić", + correct: 23, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "13.04.2025", + }, + }, + { + date: "13.04.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATYtQWdu5iMiFTL1R3cuQWM10CZlBnL0I2NtUWat5iMtkmen5SYkJTLhl2duYWO00ybspnLw4SNx4SMuUjMuMDMx0yN4UCNDVSa6RWduhSI", + value: + "!(nudzić-103.25.1.15.0.zlo-49f.wia-2da.gzi-2.mie-7b4.ped-51d.stu-1b2.nud-a0)!", + result: { + word: "nudzić", + correct: 25, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "13.04.2025", + }, + }, + { + date: "13.04.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMh1CZ15yNt8mbjVWau5yMhdjMtMXYu5CO50yb6pnLw4SNx4SMuQTMuMDMx0yN4UCNDVSa6RWduhSI", + value: "!(nudzić-103.14.1.15.0.zzo-98.nas-27a3.niecno-7.ud-a0)!", + result: { + word: "nudzić", + correct: 14, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "13.04.2025", + }, + }, + { + date: "13.04.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwEWLkVnbuUWNtE2a15CMukjLx4COuMDMx0yN4UCNDVSa6RWduhSI", + value: "!(nudzić-103.8.1.9.0.uka-5e.nud-a0)!", + result: { + word: "nudzić", + correct: 8, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "13.04.2025", + }, + }, + { + date: "13.04.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwEWLkVnbuIjYx0Sd0NnLxMWL1JmeuYWYy0SZkVnLzQjY00CZvBnLw4yMx4CMuMjMuMDMx0yN4UCNDVSa6RWduhSI", + value: "!(nudzić-103.23.0.13.0.pod-4b43.ude-2af.zbu-c1.stu-1b2.nud-a0)!", + result: { + word: "nudzić", + correct: 23, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "13.04.2025", + }, + }, + { + date: "13.04.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMh1CZ15mLhhzMy0Cch5CO50yb6pnLw4CMx4iMuETMuMDMx0yN4UCNDVSa6RWduhSI", + value: "!(nudzić-103.11.2.10.0.zzo-98.ap-238a.nud-a0)!", + result: { + word: "nudzić", + correct: 11, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "13.04.2025", + }, + }, + { + date: "13.04.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwEWLkVnbuUTNy0iavdnLzkDOhFTL6JHcuAjL4EjLy4SOuMDMx0yN4UCNDVSa6RWduhSI", + value: "!(nudzić-103.9.2.18.0.prz-1a893.woj-255.nud-a0)!", + result: { + word: "nudzić", + correct: 9, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "13.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zdecydowanie-nie-01-05-2025-flag-pl-diffle-difflepl-grywebowe-30-liter-w-3-slowa" +] = [ + { + date: "01.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3Y2MtEmc05SMiRTL0FWbucTNh1SYw9mLw4CNx4iMuQTMuEjMx0SYpRWZnFmc0hSI", + value: "!(tragedia-121.14.2.14.0.opa-a57.mat-4b1.tra-3f7)!", + result: { + word: "tragedia", + correct: 14, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "01.05.2025", + }, + }, + { + date: "01.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3Y2MtEmc05CZyQTLyB3cuAjL24iMuITMuEjMx0SYpRWZnFmc0hSI", + value: "!(tragedia-121.12.2.6.0.spr-42d.tra-3f7)!", + result: { + word: "tragedia", + correct: 12, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "01.05.2025", + }, + }, + { + date: "01.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNmNTLhJHduEWM3MTL6JHcuAjL04iMuMTMuEjMx0SYpRWZnFmc0hSI", + value: "!(tragedia-121.13.2.4.0.prz-371a.tra-3f7)!", + result: { + word: "tragedia", + correct: 13, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "01.05.2025", + }, + }, + { + date: "01.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3Y2MuEzYtEmc05CNhVTL6JHdllmbuAjL54iMucTMuEjMx0SYpRWZnFmc0hSI", + value: "!(tragedia-121.17.2.9.0.nietrz-5a4.tra-c1.3f7)!", + result: { + word: "tragedia", + correct: 17, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "01.05.2025", + }, + }, + { + date: "01.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjZz4SN0ITLhJHduITO20SastmLxETMt0WZy5SMjFWLllGcuYmYy0SdoNmLw4SNx4yMuIjMuEjMx0SYpRWZnFmc0hSI", + value: + "!(tragedia-121.22.3.15.0.chu-2bf.pie-ac1.rem-111.kli-692.tra-245.3f7)!", + result: { + word: "tragedia", + correct: 22, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "01.05.2025", + }, + }, + { + date: "01.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNmNTLhJHduYGZ40yavBnLw4CMx4SMuETMuEjMx0SYpRWZnFmc0hSI", + value: "!(tragedia-121.11.1.10.0.pok-8df.tra-3f7)!", + result: { + word: "tragedia", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "01.05.2025", + }, + }, + { + date: "01.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjZz0SYyRnL5cjMtAnez5yY2EWLhJ3ZuAjL14CNuUTMuEjMx0SYpRWZnFmc0hSI", + value: "!(tragedia-121.15.4.5.0.gra-a6c.szp-279.tra-3f7)!", + result: { + word: "tragedia", + correct: 15, + position: 4, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "01.05.2025", + }, + }, + { + date: "01.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3Y2MtEmc05CMuAjLw4COuEjMx0SYpRWZnFmc0hSI", + value: "!(tragedia-121.8.0.0.0.tra-3f7)!", + result: { + word: "tragedia", + correct: 8, + position: 0, + incorrect: 0, + knownIncorrect: 0, + totalWords: 1, + totalLetters: 8, + date: "01.05.2025", + }, + }, + { + date: "01.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3Y2MtEmc05SO0ITLk9WbuAjL24yMuETMuEjMx0SYpRWZnFmc0hSI", + value: "!(tragedia-121.11.3.6.0.mod-249.tra-3f7)!", + result: { + word: "tragedia", + correct: 11, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "01.05.2025", + }, + }, + { + date: "01.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjZz0SYyRnL4kjMtIXY35yM5gTYx0ieyBnLw4SMx4yMuUTMuEjMx0SYpRWZnFmc0hSI", + value: "!(tragedia-121.15.3.11.0.prz-1a893.war-298.tra-3f7)!", + result: { + word: "tragedia", + correct: 15, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "01.05.2025", + }, + }, + { + date: "01.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3Y2MtEmc05yNz0SbpRmL3ITLrVXZuAjL34SNuQTMuEjMx0SYpRWZnFmc0hSI", + value: "!(tragedia-121.14.5.7.0.euk-27.dim-37.tra-3f7)!", + result: { + word: "tragedia", + correct: 14, + position: 5, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "01.05.2025", + }, + }, + { + date: "01.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3Y2MtEmcuEDOk1iclRnLhFjM10ievBnLw4SMx4iMuQTMuEjMx0SYpRWZnFmc0hSI", + value: "!(tragedia-121.14.2.11.0.poz-521a.ter-d81.ra-3f7)!", + result: { + word: "tragedia", + correct: 14, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "01.05.2025", + }, + }, + { + date: "01.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjZz4SY2ETLhJHducTNtQXYy5iY1QWLhJHcuIWZ50ycvtmLw4SMx4yMuAjMuEjMx0SYpRWZnFmc0hSI", + value: "!(tragedia-121.20.3.11.0.kos-9eb.pra-d5b.rat-57.tra-16a.3f7)!", + result: { + word: "tragedia", + correct: 20, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "01.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zdradliwe-05-03-2025-diffle-difflepl-grywebowe-23-litery-w-4-slowach-large-green" +] = [ + { + date: "05.03.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0Sb1dmLw0Sb1BnLx0SYsJmL5UjZy0ibvtmLw4CNx4CMukjL0YTLh1WdnhSI", + value: "!(guma-64.9.0.14.0.kon-2f59.bla-1.pum-0.gum-0)!", + result: { + word: "guma", + correct: 9, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "05.03.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLtV3ZuATLtV3cuATLmVXbuUmYz0ic1tmL0cDNt8Gc15CMugTMuEjLyEjL0YTLh1WdnhSI", + value: "!(guma-64.12.1.18.0.upo-474.kur-3be.muf-0.sum-0.gum-0)!", + result: { + word: "guma", + correct: 12, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + }, + }, + { + date: "05.03.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0Sb1dmL3QjMto2b35yM5gTYx0ieyBnLw4yNx4CMucjL0YTLh1WdnhSI", + value: "!(guma-64.7.0.17.0.prz-1a893.woj-247.gum-0)!", + result: { + word: "guma", + correct: 7, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0SbucDNtwWdn5iZx0ya1VmLw4CMx4CMukjL0YTLh1WdnhSI", + value: "!(guma-64.9.0.10.0.euk-1f.gul-47.m-0)!", + result: { + word: "guma", + correct: 9, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0Sb1dmLw0Sb1RmLiNTNtUnci5SYxITNto3bw5CMuQTMuAjLwEjL0YTLh1WdnhSI", + value: "!(guma-64.10.0.14.0.poz-521a.bru-53b.dum-0.gum-0)!", + result: { + word: "guma", + correct: 10, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "05.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zgrabnie-poszlo-nawet-09-05-2025-diffle-difflepl-grywebowe-21-liter-w-3-slowach-" +] = [ + { + date: "09.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYlRTLlpncuEzN50ieyRnLzQzMx0Cb5dnLw4CMx4CMuETMukjMx0SarJUOlUzQlUmeyhSI", + value: "!(rześki-129.11.0.10.0.wyl-1343.trz-971.rze-4eb)!", + result: { + word: "rześki", + correct: 11, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "09.05.2025", + }, + }, + { + date: "09.05.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWZ00SZ6JnLkZWLsVmeuAjLz4CMuATMukjMx0SarJUOlUzQlUmeyhSI", + value: "!(rześki-129.10.0.3.0.zel-fd.rze-4eb)!", + result: { + word: "rześki", + correct: 10, + position: 0, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "09.05.2025", + }, + }, + { + date: "09.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYlRTLlpncuUGN1ETLyFWbuYDNl1CczdnLw4yMx4CMuITMukjMx0SarJUOlUzQlUmeyhSI", + value: "!(rześki-129.12.0.13.0.wsp-e46.mar-154e.rze-4eb)!", + result: { + word: "rześki", + correct: 12, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "09.05.2025", + }, + }, + { + date: "09.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiVGNtUmey5CMyQTL6JnYuMzN20SZkpnLw4SNx4SMuMTMukjMx0SarJUOlUzQlUmeyhSI", + value: "!(rześki-129.13.1.15.0.zde-673.brz-420.rze-4eb)!", + result: { + word: "rześki", + correct: 13, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "09.05.2025", + }, + }, + { + date: "09.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiVGNtUmey5yNkdTLpdneuQGOx0CczFmLw4CMx4iMuETMukjMx0SarJUOlUzQlUmeyhSI", + value: "!(rześki-129.11.2.10.0.asp-18d.zwi-7d7.rze-4eb)!", + result: { + word: "rześki", + correct: 11, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "09.05.2025", + }, + }, + { + date: "09.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWZ00SZ6JnL3YzNtoncn5CZhVTLp1meuMTY1ETLppHZuYmYy0SdoNmLw4CNx4yMuYTMukjMx0SarJUOlUzQlUmeyhSI", + value: "!(rześki-129.16.3.14.0.chu-2bf.dzi-15a3.zmi-5ad.grz-767.rze-4eb)!", + result: { + word: "rześki", + correct: 16, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "09.05.2025", + }, + }, + { + date: "09.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWZ04SNmZTLlpncuYmNy0ieytmLkFzNz0ieyBnLw4yMx4iMugTMukjMx0SarJUOlUzQlUmeyhSI", + value: "!(rześki-129.18.2.13.0.prz-371d.krz-26f.rze-6f5.4eb)!", + result: { + word: "rześki", + correct: 18, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "09.05.2025", + }, + }, + { + date: "09.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiVGNtUmey5SOjZWMtIWY65iN1ITLlJ3cuczN00ycpxmLyMzMx0yc5dnLw4iNx4iMuMTMukjMx0SarJUOlUzQlUmeyhSI", + value: "!(rześki-129.13.2.16.0.wys-1332.lis-477.sre-256.zab-1fc9.rze-4eb)!", + result: { + word: "rześki", + correct: 13, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "09.05.2025", + }, + }, + { + date: "09.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWZ00SZ6JnL5M2Mtknej5SMzMmYtQ2bw5CO50yb6pnLw4CMy4SMuQTMukjMx0SarJUOlUzQlUmeyhSI", + value: "!(rześki-129.14.1.20.0.zzo-98.pod-bc31.czy-3c9.rze-4eb)!", + result: { + word: "rześki", + correct: 14, + position: 1, + incorrect: 20, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "09.05.2025", + }, + }, + { + date: "09.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWZ00SZ6JnLzUTNtoncr5yM5gTYx0ieyBnLw4SMx4SMuQTMukjMx0SarJUOlUzQlUmeyhSI", + value: "!(rześki-129.14.1.11.0.prz-1a893.krz-553.rze-4eb)!", + result: { + word: "rześki", + correct: 14, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "09.05.2025", + }, + }, + { + date: "09.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYlRTLlpncuQ2Mtoncw5iZ5QTLvxmeuAjL24SMuITMukjMx0SarJUOlUzQlUmeyhSI", + value: "!(rześki-129.12.1.6.0.zlo-49f.prz-3d.rze-4eb)!", + result: { + word: "rześki", + correct: 12, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "09.05.2025", + }, + }, + { + date: "09.05.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWZ00SZ65yM2YjNto3by5yNl1yb6pnLw4iMx4CMuMTMukjMx0SarJUOlUzQlUmeyhSI", + value: "!(rześki-129.13.0.12.0.zzo-e7.roz-6663.ze-4eb)!", + result: { + word: "rześki", + correct: 13, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "09.05.2025", + }, + }, + { + date: "09.05.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiVGNtUmey5CZ4MTL6J3auYTYi1SZp1mLw4iMx4SMuQTMukjMx0SarJUOlUzQlUmeyhSI", + value: "!(rześki-129.14.1.12.0.mie-ba6.krz-38d.rze-4eb)!", + result: { + word: "rześki", + correct: 14, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "09.05.2025", + }, + }, + { + date: "09.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWZ04SZ2YTLlpncuUzM20Sa3pnLjFmY00CZvBnLw4yNx4iMuMTMukjMx0SarJUOlUzQlUmeyhSI", + value: "!(rześki-129.13.2.17.0.pod-4bac.zwi-635.rze-66e.4eb)!", + result: { + word: "rześki", + correct: 13, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "09.05.2025", + }, + }, + { + date: "09.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiVGNtUmey5SZzETLulGcuUWMx0Sa6dnLlNGNtEmez5CO50yb6pnLy4yNx4iMuQTMukjMx0SarJUOlUzQlUmeyhSI", + value: "!(rześki-129.14.2.17.2.zzo-98.sza-4ce.wzi-11e.pin-13e.rze-4eb)!", + result: { + word: "rześki", + correct: 14, + position: 2, + incorrect: 17, + knownIncorrect: 2, + totalWords: 5, + totalLetters: 33, + date: "09.05.2025", + }, + }, + { + date: "09.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWZ00SZ6JnLhhTMxETL6JHcuEDO50yY6NnLiJTZtcXYuYjM10CbvpnLw4CMy4SMuUTMukjMx0SarJUOlUzQlUmeyhSI", + value: "!(rześki-129.15.1.20.0.zol-526.aw-e2b.szc-981.prz-1118a.rze-4eb)!", + result: { + word: "rześki", + correct: 15, + position: 1, + incorrect: 20, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "09.05.2025", + }, + }, +]; diff --git a/scripts/hejto/parts-2025/part-3.ts b/scripts/hejto/parts-2025/part-3.ts new file mode 100644 index 000000000..85aac6d39 --- /dev/null +++ b/scripts/hejto/parts-2025/part-3.ts @@ -0,0 +1,37408 @@ +import { ParsedHejtoResult } from "../hejto-types"; + +export const results: { + resultsBySource: { + [url: string]: ParsedHejtoResult[]; + }; +} = { + resultsBySource: {}, +}; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/02-07-25-flag-pl-diffle-difflepl-grywebowe-25-liter-w-3-slowach-large-green-circ" +] = [ + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO1UTL6JnYuMWMx0SY6JnLlBzNtwWYu5CMuITMuAjLzEjLzgTMtcDOlQzQlUWatpncihSI", + value: "!(brzmieć-183.13.0.12.0.nal-70e.rza-11c.brz-559)!", + result: { + word: "brzmieć", + correct: 13, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + }, + }, + { + date: "02.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO1UTL6JnLycjNtIXdi5iMiNTLlpncuYGNtkmY65yM0MTMtwWe35CMuATMuEjL4EjLzgTMtcDOlQzQlUWatpncihSI", + value: "!(brzmieć-183.18.1.10.0.wyl-1343.zbi-4f.rze-3b2.bur-672.rz-559)!", + result: { + word: "brzmieć", + correct: 18, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "02.07.2025", + }, + }, + { + date: "02.07.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO1UTL6JnYuQWY10SatpnL2EmYtUWat5CMuETMuEjL1EjLzgTMtcDOlQzQlUWatpncihSI", + value: "!(brzmieć-183.15.1.11.0.mie-ba6.zmi-5ad.brz-559)!", + result: { + word: "brzmieć", + correct: 15, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "02.07.2025", + }, + }, + { + date: "02.07.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5UTNtonci5CZiVTL6J3ZugTYzQTL69GcugTOt8me65CMuITMuAjL4EjLzgTMtcDOlQzQlUWatpncihSI", + value: "!(brzmieć-183.18.0.12.0.zzo-98.poz-43a8.grz-5bd.brz-559)!", + result: { + word: "brzmieć", + correct: 18, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "02.07.2025", + }, + }, + { + date: "02.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO1UTL6JnYukDN5ETLiFmeuQmY10ieydmL00ictVnLyYDNtM3by5yM1YWMt8mcw5CMuYTMuEjL3IjLzgTMtcDOlQzQlUWatpncihSI", + value: + "!(brzmieć-183.27.1.16.0.pro-1f53.ros-462.umr-4.grz-5bd.zab-1949.brz-559)!", + result: { + word: "brzmieć", + correct: 27, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 44, + date: "02.07.2025", + }, + }, + { + date: "02.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5UTNtonLxkzMtknci5CZ0ETLp1meuIWNx0SZpNnLiRmNtUWa65yY0ETLll2auEDM10SZsBnLmJmMtUHaj5CMuYjMuIjL1IjLzgTMtcDOlQzQlUWatpncihSI", + value: + "!(brzmieć-183.25.2.26.0.chu-2bf.ple-501.kie-14c.zie-6db.sie-15b.zmi-14d.bry-391.z-559)!", + result: { + word: "brzmieć", + correct: 25, + position: 2, + incorrect: 26, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 53, + date: "02.07.2025", + }, + }, + { + date: "02.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkTN10ieyJmLwMDNtoncn5iZk1SYyRnL2QTZtA3c35CMuYTMuEjL1EjLzgTMtcDOlQzQlUWatpncihSI", + value: "!(brzmieć-183.15.1.16.0.wsp-e46.tra-df.grz-430.brz-559)!", + result: { + word: "brzmieć", + correct: 15, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "02.07.2025", + }, + }, + { + date: "02.07.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO1UTL6JnYuQmY10ieydmL4gTOtonc05CMyI2Ntoncw5CMuATMuEjLxIjLzgTMtcDOlQzQlUWatpncihSI", + value: "!(brzmieć-183.21.1.10.0.prz-7b20.trz-988.grz-5bd.brz-559)!", + result: { + word: "brzmieć", + correct: 21, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "02.07.2025", + }, + }, + { + date: "02.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5UTNtonci5SZ1UDOtoncw5SMlJWMtUWa35yY50Sd6JnLwUjMx0SY6NnLmlDNt8Gb65CMuQTMuMjLzIjLzgTMtcDOlQzQlUWatpncihSI", + value: + "!(brzmieć-183.23.3.14.0.zlo-49f.sza-1250.rzu-9c.wie-1be1.prz-855e.brz-559)!", + result: { + word: "brzmieć", + correct: 23, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "02.07.2025", + }, + }, + { + date: "02.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO1UTL6JnYuQmY10ieydmL3UmMt02c15iZjVWLlp3YugTOt8me65CMucTMuIjLxIjLzgTMtcDOlQzQlUWatpncihSI", + value: "!(brzmieć-183.21.2.17.0.zzo-98.cze-ecf.usm-2e7.grz-5bd.brz-559)!", + result: { + word: "brzmieć", + correct: 21, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "02.07.2025", + }, + }, + { + date: "02.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkTN10ieyJmLkJWNtoncn5CZ0ETLp1meuEWNx0SatVnLlRTLp12auADMy0SatNnLxIWMtUWat5SOtEWaw5iMzMTMtMXe35CMuITMuAjL4MjLzgTMtcDOlQzQlUWatpncihSI", + value: + "!(brzmieć-183.38.0.12.0.wys-1332.pia-9.mie-1b1.smi-200.kmi-4e.umi-15a.zmi-14d.grz-5bd.brz-559)!", + result: { + word: "brzmieć", + correct: 38, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 50, + date: "02.07.2025", + }, + }, + { + date: "02.07.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkTN10ieyJmLxkTZx0ic0NnLjVTNtUWaw5CMuATMuMjL1EjLzgTMtcDOlQzQlUWatpncihSI", + value: "!(brzmieć-183.15.3.10.0.pie-55c.str-1e91.brz-559)!", + result: { + word: "brzmieć", + correct: 15, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "02.07.2025", + }, + }, + { + date: "02.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkTN10ieyJmLkJWNtoncn5iY5UjMtoncw5yYjNTLhp3cugTOt8me65CMuQTMuAjLxIjLzgTMtcDOlQzQlUWatpncihSI", + value: "!(brzmieć-183.21.0.14.0.zzo-98.sza-3cc.prz-259b.grz-5bd.brz-559)!", + result: { + word: "brzmieć", + correct: 21, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "02.07.2025", + }, + }, + { + date: "02.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkTN10ieyJmLkFzNz0ieyBnLw4yNuEjLxEjLzgTMtcDOlQzQlUWatpncihSI", + value: "!(brzmieć-183.11.1.7.0.prz-371d.brz-559)!", + result: { + word: "brzmieć", + correct: 11, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "02.07.2025", + }, + }, + { + date: "02.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkTN10ieyJmLmRTLpJmLiJTZtcXY65yYhJGNtQ2bw5CMuETMuEjL1EjLzgTMtcDOlQzQlUWatpncihSI", + value: "!(brzmieć-183.15.1.11.0.pod-4bac.zaw-e2b.bi-4f.brz-559)!", + result: { + word: "brzmieć", + correct: 15, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "02.07.2025", + }, + }, + { + date: "02.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5UTNtonci5SN1ITLq92duMTO4EWMtoncw5CMugTMuEjLxEjLzgTMtcDOlQzQlUWatpncihSI", + value: "!(brzmieć-183.11.1.18.0.prz-1a893.woj-255.brz-559)!", + result: { + word: "brzmieć", + correct: 11, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "02.07.2025", + }, + }, + { + date: "02.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5UTNtonci5CZiVTL6J3ZuITO00SatpnL5QjMtQ2bt5CMuATMuQjLwIjLzgTMtcDOlQzQlUWatpncihSI", + value: "!(brzmieć-183.20.4.10.0.mod-249.zmi-492.grz-5bd.brz-559)!", + result: { + word: "brzmieć", + correct: 20, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "02.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/03-07-25-flag-pl-diffle-difflepl-grywebowe-26-liter-w-3-slowach-large-green-circ" +] = [ + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJTOx0SZuIDOx0ybpdnL0AzNtwWYu5CMuETMuIjLzEjL0gTMt8mM4USNDVCdyVWa3hSI", + value: "!(wiertło-184.13.2.11.0.nal-704.wio-182.e-192a)!", + result: { + word: "wiertło", + correct: 13, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + }, + }, + { + date: "03.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJTOx0SZp5SYjNTLpB3duATLklmYuQDNy0ybs5yM0MTMtwWe35CMuITMuAjL4EjL0gTMt8mM4USNDVCdyVWa3hSI", + value: "!(wiertło-184.18.0.12.0.wyl-1343.lo-244.bid-0.wpi-3ca.ie-192a)!", + result: { + word: "wiertło", + correct: 18, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "03.07.2025", + }, + }, + { + date: "03.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJTOx0SZp5SYjNTLylnL2QTZtA3c35CMuMTMuEjL0EjL0gTMt8mM4USNDVCdyVWa3hSI", + value: "!(wiertło-184.14.1.13.0.wsp-e46.yr-3ca.ie-192a)!", + result: { + word: "wiertło", + correct: 14, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "03.07.2025", + }, + }, + { + date: "03.07.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJTOx0SZp5SYwETLhx2dugTOt8me65CMuETMuAjLwEjL0gTMt8mM4USNDVCdyVWa3hSI", + value: "!(wiertło-184.10.0.11.0.zzo-98.wla-10a.ie-192a)!", + result: { + word: "wiertło", + correct: 10, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "03.07.2025", + }, + }, + { + date: "03.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJTOx0SZpdnLjZWLvxGduEGMz0ybsJmLkhTMtA3ch5CMuMTMuUjL0EjL0gTMt8mM4USNDVCdyVWa3hSI", + value: "!(wiertło-184.14.5.13.0.asp-18d.blo-30a.tlo-fc.wie-192a)!", + result: { + word: "wiertło", + correct: 14, + position: 5, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "03.07.2025", + }, + }, + { + date: "03.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmM5ETLl5iM4ETLvl2duYmYy0SdoNmLw4SOuEjLzEjL0gTMt8mM4USNDVCdyVWa3hSI", + value: "!(wiertło-184.13.1.9.0.chu-2bf.wio-182.e-192a)!", + result: { + word: "wiertło", + correct: 13, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "03.07.2025", + }, + }, + { + date: "03.07.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmM5ETLl5SY3ITLylmL0kDNt8mcuEDMz0icr5SO2ETMtQXe35CMuMTMuIjLxIjL0gTMt8mM4USNDVCdyVWa3hSI", + value: "!(wiertło-184.21.2.13.0.wyt-1169.kr-301.ro-494.ir-27a.e-192a)!", + result: { + word: "wiertło", + correct: 21, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "03.07.2025", + }, + }, + { + date: "03.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmM5ETLllmLhZWLql3dugTOt8me65CMuITMuEjLxEjL0gTMt8mM4USNDVCdyVWa3hSI", + value: "!(wiertło-184.11.1.12.0.zzo-98.wyj-fa.ie-192a)!", + result: { + word: "wiertło", + correct: 11, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "03.07.2025", + }, + }, + { + date: "03.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmM5ETLl5iYyQTLs5yY5MTLklmLyMzMx0yc5dnLw4iNuEjL4EjL0gTMt8mM4USNDVCdyVWa3hSI", + value: "!(wiertło-184.18.1.6.0.wys-1332.id-39c.l-42b.e-192a)!", + result: { + word: "wiertło", + correct: 18, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "03.07.2025", + }, + }, + { + date: "03.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYykTMtUWa35iMmFTLudmeugDM30Cbp1mLw4yNuAjL0EjL0gTMt8mM4USNDVCdyVWa3hSI", + value: "!(wiertło-184.14.0.7.0.mil-708.zgn-1f2.wie-192a)!", + result: { + word: "wiertło", + correct: 14, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "03.07.2025", + }, + }, + { + date: "03.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmM5ETLll2duImN10CajNjL2ETLw9GbugTOt8me65CMuATMuEjLzEjL0gTMt8mM4USNDVCdyVWa3hSI", + value: "!(wiertło-184.13.1.10.0.zzo-98.lop-16.3ch-56b.wie-192a)!", + result: { + word: "wiertło", + correct: 13, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "03.07.2025", + }, + }, + { + date: "03.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJTOx0SZp5SN1ITLq92duMTO4EWMtoncw5CMucTMuIjLxEjL0gTMt8mM4USNDVCdyVWa3hSI", + value: "!(wiertło-184.11.2.17.0.prz-1a893.woj-255.ie-192a)!", + result: { + word: "wiertło", + correct: 11, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "03.07.2025", + }, + }, + { + date: "03.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJTOx0SZp5SO5ETLnF2duMWNj1SZpNnL5QjMtQ2bt5CMuMTMuIjL0EjL0gTMt8mM4USNDVCdyVWa3hSI", + value: "!(wiertło-184.14.2.13.0.mod-249.sie-c5c.wag-199.ie-192a)!", + result: { + word: "wiertło", + correct: 14, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "03.07.2025", + }, + }, + { + date: "03.07.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYykTMuAzNi1SZpdnLw4SNuEjLxEjL0gTMt8mM4USNDVCdyVWa3hSI", + value: "!(wiertło-184.11.1.5.0.wie-b70.192a)!", + result: { + word: "wiertło", + correct: 11, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "03.07.2025", + }, + }, + { + date: "03.07.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmM5ETLll2duMWN10SZpBnLw4COuEjLxEjL0gTMt8mM4USNDVCdyVWa3hSI", + value: "!(wiertło-184.11.1.8.0.pie-55c.wie-192a)!", + result: { + word: "wiertło", + correct: 11, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "03.07.2025", + }, + }, + { + date: "03.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYykTMtUWa35SY1QTLpd3auIWM20Cbp1mL1IjMtoWYs5yYhJGNtQ2bw5CMuITMuEjL4EjL0gTMt8mM4USNDVCdyVWa3hSI", + value: + "!(wiertło-184.18.1.12.0.pod-4bac.laj-225.mil-61b.kwi-45a.wie-192a)!", + result: { + word: "wiertło", + correct: 18, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "03.07.2025", + }, + }, + { + date: "03.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmM5ETLll2duYjN10SZptmL0IjZtw2bw5yN50SYuMDNxITLl5iM4ETLvlmL5MWYtIWe35SN50Cbk1mL0QmMtw2b65SMuMjMuEjLxMjL0gTMt8mM4USNDVCdyVWa3hSI", + value: + "!(wiertło-184.31.1.23.1.zol-2d4.mdl-95.wyb-ac9.io-182.e-2143.a-97.pol-f24.kie-566.wie-192a)!", + result: { + word: "wiertło", + correct: 31, + position: 1, + incorrect: 23, + knownIncorrect: 1, + totalWords: 9, + totalLetters: 55, + date: "03.07.2025", + }, + }, + { + date: "03.07.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmM5ETLll2duYTYi1SZp1mLw4SOuEjLxEjL0gTMt8mM4USNDVCdyVWa3hSI", + value: "!(wiertło-184.11.1.9.0.mie-ba6.wie-192a)!", + result: { + word: "wiertło", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "03.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/03-09-2025-diffle-difflepl-grywebowe-23-litery-w-4-slowach-large-green-circle" +] = [ + { + date: "03.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSN54SYiFjLwYTNtUmc05iYllTLz92auAjL54CMuQTMuYDNy0CbmVmc0hSI", + value: "!(trefl-246.14.0.9.0.kos-9eb.tre-560.1ba.95)!", + result: { + word: "trefl", + correct: 14, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "03.09.2025", + }, + }, + { + date: "03.09.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1kjLhJWMtUmc05CZyEWLyR3cuE2Y50Cdl1mLhRmMy0yavBnLw4yMx4SMuUTMuYDNy0CbmVmc0hSI", + value: "!(trefl-246.15.1.13.0.pok-22da.met-9ca.str-a2d.tre-1ba.95)!", + result: { + word: "trefl", + correct: 15, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "03.09.2025", + }, + }, + { + date: "03.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTOuEmYx0SZy5SOy0Cb5RnLlBzMtg2Yz4COj1Sb6NnLw4yMx4SMuMTMuYDNy0CbmVmc0hSI", + value: "!(trefl-246.13.1.13.0.szm-c8.3ch-30e.tyl-29.re-1ba.95)!", + result: { + word: "trefl", + correct: 13, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "03.09.2025", + }, + }, + { + date: "03.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1kjLhJWMtUmc05iYhRTLoN2MuAzMtUmcn5CZiFTLyVnYuQmM00icwNnLw4yNx4CMucTMuYDNy0CbmVmc0hSI", + value: "!(trefl-246.17.0.17.0.spr-42d.bur-1bd.gre-30.3ch-4ab.tre-1ba.95)!", + result: { + word: "trefl", + correct: 17, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "03.09.2025", + }, + }, + { + date: "03.09.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSN54SYiFTLlJHduQTY10ieyRXZp5mLw4iMx4SMuETMuYDNy0CbmVmc0hSI", + value: "!(trefl-246.11.1.12.0.nietrz-5a4.tre-1ba.95)!", + result: { + word: "trefl", + correct: 11, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "03.09.2025", + }, + }, + { + date: "03.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTOtUmc05CNiZTLhd3auAjLyEjLx4yNuYDNy0CbmVmc0hSI", + value: "!(trefl-246.7.1.12.0.kwa-6b4.tre-95)!", + result: { + word: "trefl", + correct: 7, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "03.09.2025", + }, + }, + { + date: "03.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1kjLkJWMucTNx0SZyRnLhNWOtQXZt5CZzYWLyB3cuYmYy0SdoNmLw4iNx4iMuUTMuYDNy0CbmVmc0hSI", + value: "!(trefl-246.15.2.16.0.chu-2bf.spr-f3d.met-9ca.tre-157.1bd.95)!", + result: { + word: "trefl", + correct: 15, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "03.09.2025", + }, + }, + { + date: "03.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTOuEmYx0SZyRnLzkDOhFTL6JHcuAjL54iMuETMuYDNy0CbmVmc0hSI", + value: "!(trefl-246.11.2.9.0.prz-1a893.tre-1ba.95)!", + result: { + word: "trefl", + correct: 11, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "03.09.2025", + }, + }, + { + date: "03.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTOuEmYx0SZyRnL4YTLkVHcuYTYi1SZp1mLw4CNx4iMuITMuYDNy0CbmVmc0hSI", + value: "!(trefl-246.12.2.14.0.mie-ba6.pud-68.tre-1ba.95)!", + result: { + word: "trefl", + correct: 12, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "03.09.2025", + }, + }, + { + date: "03.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSN54CZ5QTLlJHduUzYy0CdlJnLhhjMtUmcn5SZ3MTLlJ3auQjZx0CZ5dnLw4CNx4SMuYTMuYDNy0CbmVmc0hSI", + value: "!(trefl-246.16.1.14.0.wyd-1f4.kre-37e.gre-28a.ret-2c5.tre-49d.95)!", + result: { + word: "trefl", + correct: 16, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "03.09.2025", + }, + }, + { + date: "03.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1kjLhJjMucTNx4CZ5QTLlJHduImZtIXZi5SZ5ETL6JHZuMmNh1SYydmLw4yMx4SMuAjMuYDNy0CbmVmc0hSI", + value: "!(trefl-246.20.1.13.0.gra-a6c.drz-19e.ber-fb.tre-49d.157.22a.95)!", + result: { + word: "trefl", + correct: 20, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 34, + date: "03.09.2025", + }, + }, + { + date: "03.09.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1kjLhJWMuQWO00SZyRnLmZjMtUmcr5SOj1ieydnLw4SMx4SMuYTMuYDNy0CbmVmc0hSI", + value: "!(trefl-246.16.1.11.0.wrz-c9.kre-26f.tre-49d.1ba.95)!", + result: { + word: "trefl", + correct: 16, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "03.09.2025", + }, + }, + { + date: "03.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1kjLxcDNtUmcuU2Y20iclRnL30Cd5JnLhFzNz0ieyBnLw4CNx4yMuUTMuYDNy0CbmVmc0hSI", + value: "!(trefl-246.15.3.14.0.prz-371a.ryt-7.ter-6ce.re-471.95)!", + result: { + word: "trefl", + correct: 15, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "03.09.2025", + }, + }, + { + date: "03.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSN50SZyRnL1YWLyV2duEWMyUTL69GcuAjLyEjLw4SOuYDNy0CbmVmc0hSI", + value: "!(trefl-246.9.0.12.0.poz-521a.wer-f5.tre-95)!", + result: { + word: "trefl", + correct: 9, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "03.09.2025", + }, + }, + { + date: "03.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTOtUmc05iMhhTLyR3cucTLo9mcuAjL44SMuETMuYDNy0CbmVmc0hSI", + value: "!(trefl-246.11.1.8.0.roh-7.str-8a2.tre-95)!", + result: { + word: "trefl", + correct: 11, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "03.09.2025", + }, + }, + { + date: "03.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTOuEmYx4iM3UjLklDNtUmc05yNy0ya1VmLw4SMx4iMuYTMuYDNy0CbmVmc0hSI", + value: "!(trefl-246.16.2.11.0.euk-27.tre-49d.572.1ba.95)!", + result: { + word: "trefl", + correct: 16, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "03.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/04-07-2025-flag-pl-diffle-difflepl-grywebowe-22-litery-w-2-slowach-large-green-c" +] = [ + { + date: "04.07.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKycjZx0Sb5dnL2EmYtUWat5CMukjLx4iMx4SN4ETL3gTJ0MUJhp3c11We3hSI", + value: "!(wymuszać-185.12.1.9.0.mie-ba6.wym-1f72)!", + result: { + word: "wymuszać", + correct: 12, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "04.07.2025", + }, + }, + { + date: "04.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM3YWMuATZm1SbuQDZ20yauImZzETLnl3duUTN20CajNjLjhTLhdneuMDNzETLsl3duAjLzEjLy4yMz4SN4ETL3gTJ0MUJhp3c11We3hSI", + value: + "!(wymuszać-185.33.2.13.0.wyl-1343.zwa-8c.3ch-655.wyg-13fb.k-6d4.m-fe0.1f72)!", + result: { + word: "wymuszać", + correct: 33, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 48, + date: "04.07.2025", + }, + }, + { + date: "04.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM3YWMt0mLkVDOtoXe35CZxczMtoncw5CMukjLz4iNx4SN4ETL3gTJ0MUJhp3c11We3hSI", + value: "!(wymuszać-185.16.3.9.0.prz-371d.wyz-85d.m-1f72)!", + result: { + word: "wymuszać", + correct: 16, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "04.07.2025", + }, + }, + { + date: "04.07.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzNmFjLwUmZuYzM40Sb5dnL4E2M00ievBnL4kTLvpneuAjLxEjLz4iNy4SN4ETL3gTJ0MUJhp3c11We3hSI", + value: "!(wymuszać-185.26.3.11.0.zzo-98.poz-43a8.wym-836.fe0.1f72)!", + result: { + word: "wymuszać", + correct: 26, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "04.07.2025", + }, + }, + { + date: "04.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzNmFTLtl3duQDZx0Sd6NnLkhTMtA3ch5CMukjLy4SNx4SN4ETL3gTJ0MUJhp3c11We3hSI", + value: "!(wymuszać-185.15.2.9.0.asp-18d.szu-1d4.wym-1f72)!", + result: { + word: "wymuszać", + correct: 15, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "04.07.2025", + }, + }, + { + date: "04.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM3YWMuEWZlFTLt5SN4MTMtInLiJjZy0yc55CMtQ3c35CZtcXdz5iZiJTL1h2YuAjLzEjL04CNz4SN4ETL3gTJ0MUJhp3c11We3hSI", + value: + "!(wymuszać-185.34.4.13.0.chu-2bf.suw-d.wst-0.ys-2f2b.r-1385.m-1eea.1f72)!", + result: { + word: "wymuszać", + correct: 34, + position: 4, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 51, + date: "04.07.2025", + }, + }, + { + date: "04.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM3YWMt0We35CMtIWZn5SMkJTLslGcuU2Ym1icuQjYmJTLz5iY4YTMtQWe35yN4YzMtMXY65SNjFTLrp3cuAjL2EjL04yNz4SN4ETL3gTJ0MUJhp3c11We3hSI", + value: + "!(wymuszać-185.37.4.16.0.szk-1c5.zas-3687.wyd-168b.s-2fb4.r-fce.pil-2d1.geb-0.wym-1f72)!", + result: { + word: "wymuszać", + correct: 37, + position: 4, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 57, + date: "04.07.2025", + }, + }, + { + date: "04.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzNmFTLt5COzQTLn5CZiNTLk5iMzMTMtMXe35CMugjLw4yMy4SN4ETL3gTJ0MUJhp3c11We3hSI", + value: "!(wymuszać-185.23.0.8.0.wys-1332.d-3bd.g-438.m-1f72)!", + result: { + word: "wymuszać", + correct: 23, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "04.07.2025", + }, + }, + { + date: "04.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM3YWMt0We35SY3ETL11meuUmZh1SY6NnLj1SZtdmL4AzNtwWat5CMukjLx4yMy4SN4ETL3gTJ0MUJhp3c11We3hSI", + value: "!(wymuszać-185.23.1.9.0.mil-708.gme-c.sza-afe.zmu-17a.wym-1f72)!", + result: { + word: "wymuszać", + correct: 23, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "04.07.2025", + }, + }, + { + date: "04.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzNmFTLt5yNxIDNtMXe35yYhJGNtQ2bw5CMucjLy4iNx4SN4ETL3gTJ0MUJhp3c11We3hSI", + value: "!(wymuszać-185.16.2.7.0.pod-4bac.wys-4217.m-1f72)!", + result: { + word: "wymuszać", + correct: 16, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "04.07.2025", + }, + }, + { + date: "04.07.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzNmFTLt5SYkBjMtMmL3QmNtoXe35SYwQmNx0ieyBnL3UWLvpneuAjL2EjLy4iMy4SN4ETL3gTJ0MUJhp3c11We3hSI", + value: "!(wymuszać-185.22.2.16.0.zzo-e7.prz-16d0a.wyz-6d7.c-20da.m-1f72)!", + result: { + word: "wymuszać", + correct: 22, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "04.07.2025", + }, + }, + { + date: "04.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzNmFjL2MDOt0mL0QWYtwmLkRjNx0iY5dnLlRGZx0yYvBnL4kTLvpneuAjL4EjLx4SOy4SN4ETL3gTJ0MUJhp3c11We3hSI", + value: + "!(wymuszać-185.29.1.18.0.zzo-98.poc-1dde.wyb-164d.l-ad4.m-836.1f72)!", + result: { + word: "wymuszać", + correct: 29, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 48, + date: "04.07.2025", + }, + }, + { + date: "04.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM3YWMt0WeukzYtIneuQDNjFTLll2duM2Yz0SY6NnL4kTLvpneuAjLzEjLx4SNy4SN4ETL3gTJ0MUJhp3c11We3hSI", + value: "!(wymuszać-185.25.1.13.0.zzo-98.sza-3cc.wie-1c44.zr-c9.ym-1f72)!", + result: { + word: "wymuszać", + correct: 25, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "04.07.2025", + }, + }, + { + date: "04.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKycjZx0SbuQjYmJjL3EjM00yc5dnLzkDOhFTL6JHcuAjLxEjLy4CNy4SN4ETL3gTJ0MUJhp3c11We3hSI", + value: "!(wymuszać-185.24.2.11.0.prz-1a893.wys-4217.2fb4.m-1f72)!", + result: { + word: "wymuszać", + correct: 24, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "04.07.2025", + }, + }, + { + date: "04.07.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM3YWMuYzM40Sb5dnLjVTNtUWaw5CMugjLy4COx4SN4ETL3gTJ0MUJhp3c11We3hSI", + value: "!(wymuszać-185.18.2.8.0.pie-55c.wym-836.1f72)!", + result: { + word: "wymuszać", + correct: 18, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "04.07.2025", + }, + }, + { + date: "04.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM3YWMt0mL0ImZy0ycuU2Ym1ic5dnL2MWNz0ych5SOiZTLs9meuAjLzEjLy4yNy4SN4ETL3gTJ0MUJhp3c11We3hSI", + value: "!(wymuszać-185.27.2.13.0.zol-6b9.as-35c6.wyr-fce.s-2fb4.m-1f72)!", + result: { + word: "wymuszać", + correct: 27, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "04.07.2025", + }, + }, + { + date: "04.07.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM3YWMt0We35SMiVWLzlHZuEzN4UTMtoncw5CMukjLw4yMx4SN4ETL3gTJ0MUJhp3c11We3hSI", + value: "!(wymuszać-185.13.0.9.0.prz-15871.dys-eb1.wym-1f72)!", + result: { + word: "wymuszać", + correct: 13, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "04.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/05-07-2025-diffle-difflepl-grywebowe-18-liter-w-3-slowach-large-green-circle-7-l" +] = [ + { + date: "05.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO00CZ55CM1ETL1pncuIWZ50ycvtmLw4SOuIjL34iN4ETL6RWeyhSI", + value: "!(rydz-186.7.2.9.0.kos-9eb.rzu-150.yd-49)!", + result: { + word: "rydz", + correct: 7, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "05.07.2025", + }, + }, + { + date: "05.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO00CZ5JnLwYjNtoncn5SN4QTMt82az5CMuETMuIjL44iN4ETL6RWeyhSI", + value: "!(rydz-186.8.2.11.0.sko-1485.grz-660.ryd-49)!", + result: { + word: "rydz", + correct: 8, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "05.07.2025", + }, + }, + { + date: "05.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkDNtQWey5SOxcTLydmeuMTO4EWMtoncw5CMuITMuEjL54iN4ETL6RWeyhSI", + value: "!(rydz-186.9.1.12.0.prz-1a893.zgr-719.ryd-49)!", + result: { + word: "rydz", + correct: 9, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "05.07.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5QTLklncuQGZ40ieydmLjdjMtMXYw5CMuMTMuEjL34iN4ETL6RWeyhSI", + value: "!(rydz-186.7.1.13.0.pas-27c.grz-8dd.ryd-49)!", + result: { + word: "rydz", + correct: 7, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + }, + }, + { + date: "05.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkDNtQWey5yNl1SdyRmLkJDNtIHcz5CMuETMuIjL54iN4ETL6RWeyhSI", + value: "!(rydz-186.9.2.11.0.spr-42d.dru-e7.ryd-49)!", + result: { + word: "rydz", + correct: 9, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "05.07.2025", + }, + }, + { + date: "05.07.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO00CZuAjMtomLxgTMtMWey5SZjNTL5J3ZuEGZyITLr9GcuAjLzEjLx4SNx4iN4ETL6RWeyhSI", + value: "!(rydz-186.15.1.13.0.pok-22da.gry-3ce.ryc-181.j-20.d-49)!", + result: { + word: "rydz", + correct: 15, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "05.07.2025", + }, + }, + { + date: "05.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO00CZ5JnL0EWNtonc0VWau5CMuETMuEjL34iN4ETL6RWeyhSI", + value: "!(rydz-186.7.1.11.0.nietrz-5a4.ryd-49)!", + result: { + word: "rydz", + correct: 7, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "05.07.2025", + }, + }, + { + date: "05.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5QTLklncuczMx0CajNjLxgjMtkncm5yM40yc51mLlN2Mtkncn5iNkZTL6J3aucTZ1ATMtoncw5iZiJTL1h2YuAjLwIjLy4yNx4iN4ETL6RWeyhSI", + value: + "!(rydz-186.17.2.20.0.chu-2bf.prz-105e7.krz-6d6.gry-3ce.mys-83.fry-281.3ch-137.ryd-49)!", + result: { + word: "rydz", + correct: 17, + position: 2, + incorrect: 20, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 39, + date: "05.07.2025", + }, + }, + { + date: "05.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkDNtQmL5UWL6lncuUmN20ic1JmLxATMtkncw5yY2EWLhJ3ZuAjLyEjLw4iMx4iN4ETL6RWeyhSI", + value: "!(rydz-186.12.0.12.0.gra-a6c.pry-101.bur-66e.ryz-e9.d-49)!", + result: { + word: "rydz", + correct: 12, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "05.07.2025", + }, + }, + { + date: "05.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO00CZ5JnLhFzNz0ieyBnLw4COuEjL24iN4ETL6RWeyhSI", + value: "!(rydz-186.6.1.8.0.prz-371a.ryd-49)!", + result: { + word: "rydz", + correct: 6, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "05.07.2025", + }, + }, + { + date: "05.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkDNtQWeuQDZy0CZ1JnL5QjMtQ2bt5CMuATMuIjL44iN4ETL6RWeyhSI", + value: "!(rydz-186.8.2.10.0.mod-249.rud-2d4.yd-49)!", + result: { + word: "rydz", + correct: 8, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "05.07.2025", + }, + }, + { + date: "05.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5QTLklncuQjZx0CZ5dnLw4SNuEjL34iN4ETL6RWeyhSI", + value: "!(rydz-186.7.1.5.0.wyd-1f4.ryd-49)!", + result: { + word: "rydz", + correct: 7, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "05.07.2025", + }, + }, + { + date: "05.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO00CZ5JnL3YzMtkncm5CNiZTLhd3auAjLzEjLw4CMx4iN4ETL6RWeyhSI", + value: "!(rydz-186.10.0.13.0.kwa-6b4.fry-367.ryd-49)!", + result: { + word: "rydz", + correct: 10, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "05.07.2025", + }, + }, + { + date: "05.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO00CZ5JnLyUGNtg2Yz4CMyADNx0ieyBnL3ITLrVXZuAjLwEjLx4SMx4iN4ETL6RWeyhSI", + value: "!(rydz-186.11.1.10.0.euk-27.prz-14020.3ch-4e2.ryd-49)!", + result: { + word: "rydz", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "05.07.2025", + }, + }, + { + date: "05.07.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO00CZ5JnLiBzMx0CZh5mLw4COuEjL24iN4ETL6RWeyhSI", + value: "!(rydz-186.6.1.8.0.nad-130b.ryd-49)!", + result: { + word: "rydz", + correct: 6, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "05.07.2025", + }, + }, + { + date: "05.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO00CZuEDOx0yY5JnLhFjM10ievBnLw4SOuEjL44iN4ETL6RWeyhSI", + value: "!(rydz-186.8.1.9.0.poz-521a.ryc-181.d-49)!", + result: { + word: "rydz", + correct: 8, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "05.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/06-09-2025-diffle-difflepl-grywebowe-32-litery-w-5-slowach-large-green-circle" +] = [ + { + date: "06.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkZTLwFmL4UmZx0SZp5CZj1iel5SZ5YTLk9mLzQzMx0Cb5dnLw4yNx4SMuQTMukDNy0CN4USNDVSZpBXY3hSI", + value: "!(wapień-249.14.1.17.0.wyl-1343.od-69e.ez-cd.ie-1fe8.ap-6d)!", + result: { + word: "wapień", + correct: 14, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "06.09.2025", + }, + }, + { + date: "06.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkZTLwF2dukzYzETLpB3cuYTN3MTL6JHcuAjL44SNuETMukDNy0CN4USNDVSZpBXY3hSI", + value: "!(wapień-249.11.5.8.0.prz-3756.spi-13c9.wap-6d)!", + result: { + word: "wapień", + correct: 11, + position: 5, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "06.09.2025", + }, + }, + { + date: "06.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ20CchdnLkhTMtA3ch5CMukjLw4SOukDNy0CN4USNDVSZpBXY3hSI", + value: "!(wapień-249.9.0.9.0.asp-18d.wap-6d)!", + result: { + word: "wapień", + correct: 9, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "06.09.2025", + }, + }, + { + date: "06.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkZTLw5iZxETL6F2duITY5ETLhR3cuYmYy0SdoNmLw4yMx4iMuMTMukDNy0CN4USNDVSZpBXY3hSI", + value: "!(wapień-249.13.2.13.0.chu-2bf.sta-19a2.waz-11f.p-6d)!", + result: { + word: "wapień", + correct: 13, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "06.09.2025", + }, + }, + { + date: "06.09.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmNtAXY35CZ5ITL1h2YuYDNl1CczdnLw4yNx4CMuATMukDNy0CN4USNDVSZpBXY3hSI", + value: "!(wapień-249.10.0.17.0.wsp-e46.chu-29d.wap-6d)!", + result: { + word: "wapień", + correct: 10, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "06.09.2025", + }, + }, + { + date: "06.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmNtAXYuUTNy0iavdnLzkDOhFTL6JHcuAjL4EjLy4SOukDNy0CN4USNDVSZpBXY3hSI", + value: "!(wapień-249.9.2.18.0.prz-1a893.woj-255.ap-6d)!", + result: { + word: "wapień", + correct: 9, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "06.09.2025", + }, + }, + { + date: "06.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkZTLw5iM5ITLs5SYyITLzFmLkljMtUWa35SNz0Se3pXZp5mLw4SOx4iMucTMukDNy0CN4USNDVSZpBXY3hSI", + value: "!(wapień-249.17.2.19.0.niezwy-35.wie-29d.as-22a.l-292.p-6d)!", + result: { + word: "wapień", + correct: 17, + position: 2, + incorrect: 19, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "06.09.2025", + }, + }, + { + date: "06.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ20CchdnLjVzNz0yahpnLwkTLnFmaugDM30Cbp1mLw4iMx4CMuITMukDNy0CN4USNDVSZpBXY3hSI", + value: "!(wapień-249.12.0.12.0.mil-708.jag-90.zak-375c.wap-6d)!", + result: { + word: "wapień", + correct: 12, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "06.09.2025", + }, + }, + { + date: "06.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ20Cch5COlZWMtUWauIzMzETLzl3duAjL34SMuETMukDNy0CN4USNDVSZpBXY3hSI", + value: "!(wapień-249.11.1.7.0.wys-1332.ie-1fe8.ap-6d)!", + result: { + word: "wapień", + correct: 11, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "06.09.2025", + }, + }, + { + date: "06.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ20CchdnLlR2NuYTZiFTLllGcuYjM10CbvpnLw4SMx4CMuMTMukDNy0CN4USNDVSZpBXY3hSI", + value: "!(wapień-249.13.0.11.0.zol-526.pie-1be6.7de.wap-6d)!", + result: { + word: "wapień", + correct: 13, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "06.09.2025", + }, + }, + { + date: "06.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmNtAXYuQGNwITLll2duAzYt0Wat5CO50yb6pnLw4CMy4SMuATMukDNy0CN4USNDVSZpBXY3hSI", + value: "!(wapień-249.10.1.20.0.zzo-98.mim-c0.wie-204d.ap-6d)!", + result: { + word: "wapień", + correct: 10, + position: 1, + incorrect: 20, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "06.09.2025", + }, + }, + { + date: "06.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ20Cch5SZzQTLyV2dukDO40SajNnL4kTLvpneuAjL1EjLy4SOukDNy0CN4USNDVSZpBXY3hSI", + value: "!(wapień-249.9.2.15.0.zzo-98.sci-889.wer-43e.ap-6d)!", + result: { + word: "wapień", + correct: 9, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "06.09.2025", + }, + }, + { + date: "06.09.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ20Cch5SO1QWMtUWauQzMzETLsl3duAjL44CMuETMukDNy0CN4USNDVSZpBXY3hSI", + value: "!(wapień-249.11.0.8.0.wyl-1334.ie-1d59.ap-6d)!", + result: { + word: "wapień", + correct: 11, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "06.09.2025", + }, + }, + { + date: "06.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkZTLwF2duMWYj1Cch5mLzQjY00CZvBnLw4SMx4SMuATMukDNy0CN4USNDVSZpBXY3hSI", + value: "!(wapień-249.10.1.11.0.pod-4b43.nap-cac.wap-6d)!", + result: { + word: "wapień", + correct: 10, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "06.09.2025", + }, + }, + { + date: "06.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ20CchdnL0EWL3F2ZuYTYi1SZp1mLw4yMx4yMuETMukDNy0CN4USNDVSZpBXY3hSI", + value: "!(wapień-249.11.3.13.0.mie-ba6.gaw-a4.wap-6d)!", + result: { + word: "wapień", + correct: 11, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "06.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/09-06-2025-diffle-difflepl-grywebowe-29-liter-w-5-slowach-large-green-circle" +] = [ + { + date: "09.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYjM3ETLzFmeuYGZy0SYsBnL1ITL0V3cuIGZ20SZppnLzQzMx0Cb5dnLw4iNx4CMuMTMuAjNx0yN4UCNDVSYwNXY6hSI", + value: "!(zaspać-160.13.0.16.0.wyl-1343.zie-6db.sut-25.pla-2df.zas-1726)!", + result: { + word: "zaspać", + correct: 13, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "09.06.2025", + }, + }, + { + date: "09.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2IzNx0ychpnL2QTZtA3c35CMukjLx4SOuAjNx0yN4UCNDVSYwNXY6hSI", + value: "!(zaspać-160.9.1.9.0.wsp-e46.zas-1726)!", + result: { + word: "zaspać", + correct: 9, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "09.06.2025", + }, + }, + { + date: "09.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYjM3ETLzFmeuQWM3MTL6JHcuAjL24iMuATMuAjNx0yN4UCNDVSYwNXY6hSI", + value: "!(zaspać-160.10.2.6.0.prz-371d.zas-1726)!", + result: { + word: "zaspać", + correct: 10, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "09.06.2025", + }, + }, + { + date: "09.06.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNycTMuUmY5ETLz5yN4QWLr5CZiVWL05SMyEWL6FmeuYmYy0SdoNmLw4SMy4CMuIjMuAjNx0yN4UCNDVSYwNXY6hSI", + value: "!(zaspać-160.22.0.21.0.chu-2bf.zaz-a21.t-ebd.k-d87.s-19be.1726)!", + result: { + word: "zaspać", + correct: 22, + position: 0, + incorrect: 21, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "09.06.2025", + }, + }, + { + date: "09.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNycTMtMXY65CZ4ETLwNXYuAjL34SMuATMuAjNx0yN4UCNDVSYwNXY6hSI", + value: "!(zaspać-160.10.1.7.0.asp-18d.zas-1726)!", + result: { + word: "zaspać", + correct: 10, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "09.06.2025", + }, + }, + { + date: "09.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYjM3ETLz5yMhNTLwFmL4kTLvpneuAjL44CMuMTMuAjNx0yN4UCNDVSYwNXY6hSI", + value: "!(zaspać-160.13.0.8.0.zzo-98.ap-3a3.s-1726)!", + result: { + word: "zaspać", + correct: 13, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "09.06.2025", + }, + }, + { + date: "09.06.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2IzNx0ycuUWZwETLwFmeugTNidTL6JHcuAjL44SMuETMuAjNx0yN4UCNDVSYwNXY6hSI", + value: "!(zaspać-160.11.1.8.0.prz-7b58.zap-10ee.s-1726)!", + result: { + word: "zaspać", + correct: 11, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "09.06.2025", + }, + }, + { + date: "09.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNycTMtMnLhFWYz4CZiRWMtAXY65iNlFDMx0ieyBnLw4CNx4SMugTMuAjNx0yN4UCNDVSYwNXY6hSI", + value: "!(zaspać-160.18.1.14.0.prz-101e6.zap-1dbd.3aaa.s-1726)!", + result: { + word: "zaspać", + correct: 18, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "09.06.2025", + }, + }, + { + date: "09.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNycTMtMXY65yYkNTLwp3cuIDOh1ychtmLyMzMx0yc5dnLw4CMx4SMuUTMuAjNx0yN4UCNDVSYwNXY6hSI", + value: "!(zaspać-160.15.1.10.0.wys-1332.kas-a82.szp-3dc.zas-1726)!", + result: { + word: "zaspać", + correct: 15, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "09.06.2025", + }, + }, + { + date: "09.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNycTMucDO2MTLzFmL4kTLvpneuAjL54CMuMTMuAjNx0yN4UCNDVSYwNXY6hSI", + value: "!(zaspać-160.13.0.9.0.zzo-98.as-3687.1726)!", + result: { + word: "zaspać", + correct: 13, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "09.06.2025", + }, + }, + { + date: "09.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2IzNx0ychpnLlVWMtEGcz5yNwETLhJHcuAjL44CMuMTMuAjNx0yN4UCNDVSYwNXY6hSI", + value: "!(zaspać-160.13.0.8.0.pra-107.spa-1ee.zas-1726)!", + result: { + word: "zaspać", + correct: 13, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "09.06.2025", + }, + }, + { + date: "09.06.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2IzNx4CM0YWLzFmeuYTYi1SZp1mLw4iMx4SMuMTMuAjNx0yN4UCNDVSYwNXY6hSI", + value: "!(zaspać-160.13.1.12.0.mie-ba6.zas-f40.1726)!", + result: { + word: "zaspać", + correct: 13, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "09.06.2025", + }, + }, + { + date: "09.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYjM3EjLlJWOx0ych5SNxQTLs9meukDNy0CZv1mLw4iNx4CMuUTMuAjNx0yN4UCNDVSYwNXY6hSI", + value: "!(zaspać-160.15.0.16.0.mod-249.zol-415.as-19be.1726)!", + result: { + word: "zaspać", + correct: 15, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "09.06.2025", + }, + }, + { + date: "09.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2IzNx0ycuADZ3ETLwFmeuMWYiRTLk9GcuAjL34iMuMTMuAjNx0yN4UCNDVSYwNXY6hSI", + value: "!(zaspać-160.13.2.7.0.pod-4bac.zap-17d0.s-1726)!", + result: { + word: "zaspać", + correct: 13, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "09.06.2025", + }, + }, + { + date: "09.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2IzNx0ychpnL1UjMto2b35yM5gTYx0ieyBnLw4COx4SMuATMuAjNx0yN4UCNDVSYwNXY6hSI", + value: "!(zaspać-160.10.1.18.0.prz-1a893.woj-255.zas-1726)!", + result: { + word: "zaspać", + correct: 10, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "09.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/11-06-2025-diffle-difflepl-grywebowe-25-liter-w-3-slowach-large-green-circle" +] = [ + { + date: "11.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxcjYuMmZ44iYllTLz92auAjL24CMukTMuIjNx0SYrxWd6N3brhSI", + value: "!(koszulka-162.19.0.6.0.kos-9eb.8fc.b71)!", + result: { + word: "koszulka", + correct: 19, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "11.06.2025", + }, + }, + { + date: "11.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM3IWLz9mLzYTMt0Wdr5iZwITLjtWYuAjL44yMugTMuIjNx0SYrxWd6N3brhSI", + value: "!(koszulka-162.18.3.8.0.akc-20f.kum-163.os-b71)!", + result: { + word: "koszulka", + correct: 18, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "11.06.2025", + }, + }, + { + date: "11.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzNi5SNzIWLz92auQTY10ieyRXZp5mLw4CMx4iMugTMuIjNx0SYrxWd6N3brhSI", + value: "!(koszulka-162.18.2.10.0.nietrz-5a4.kos-b35.b71)!", + result: { + word: "koszulka", + correct: 18, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "11.06.2025", + }, + }, + { + date: "11.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM3ImLzQmYuYTZ34SMzEWLz92auQmM00icwNnLw4CMx4SMucjMuIjNx0SYrxWd6N3brhSI", + value: "!(koszulka-162.27.1.10.0.spr-42d.kos-a31.7e6.bd3.b71)!", + result: { + word: "koszulka", + correct: 27, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "11.06.2025", + }, + }, + { + date: "11.06.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM3IWLz9mLjVmNtIXdr5CM5UTLr9GcuYmYy0SdoNmLw4CMx4iMugTMuIjNx0SYrxWd6N3brhSI", + value: "!(koszulka-162.18.2.10.0.chu-2bf.pok-590.kur-6ec.os-b71)!", + result: { + word: "koszulka", + correct: 18, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "11.06.2025", + }, + }, + { + date: "11.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzNi1ycvtmLwYTNto3c15SO10Se6NnLhFzNz0ieyBnLw4CMx4iMugTMuIjNx0SYrxWd6N3brhSI", + value: "!(koszulka-162.18.2.10.0.prz-371a.szy-59.usz-560.kos-b71)!", + result: { + word: "koszulka", + correct: 18, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "11.06.2025", + }, + }, + { + date: "11.06.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM3ImL1MjYtMnLkhTLs92auUjY2ETLrl3duAjL54CMuIjMuIjNx0SYrxWd6N3brhSI", + value: "!(koszulka-162.22.0.9.0.wyk-16b5.kol-8d.s-b35.b71)!", + result: { + word: "koszulka", + correct: 22, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "11.06.2025", + }, + }, + { + date: "11.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxcjYuUzMi1ycvtmLzkDOhFTL6JHcuAjL54CMukTMuIjNx0SYrxWd6N3brhSI", + value: "!(koszulka-162.19.0.9.0.prz-1a893.kos-b35.b71)!", + result: { + word: "koszulka", + correct: 19, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "11.06.2025", + }, + }, + { + date: "11.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxcjYtMnLw0CbvtmLiJWYtwWYw5yY2EWLhJ3ZuAjL34iMuQTMuIjNx0SYrxWd6N3brhSI", + value: "!(koszulka-162.14.2.7.0.gra-a6c.pal-abb.kol-0.s-b71)!", + result: { + word: "koszulka", + correct: 14, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "11.06.2025", + }, + }, + { + date: "11.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM3IWLz92auUmZ50iez9mL5UTLzVHduATL69GcukDNy0CZv1mLw4SMx4SMuQjMuIjNx0SYrxWd6N3brhSI", + value: "!(koszulka-162.24.1.11.0.mod-249.poz-0.tus-59.osz-9fe.kos-b71)!", + result: { + word: "koszulka", + correct: 24, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "11.06.2025", + }, + }, + { + date: "11.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM3ImL1MjYuYTZ34SMzEWLz5CMto3br5SZ5QWMtsWY65CNmFTLkl3duAjL54yMuIzMuIjNx0SYrxWd6N3brhSI", + value: "!(koszulka-162.32.3.9.0.wyd-1f4.zak-1d9e.koz-0.s-a31.7e6.b35.b71)!", + result: { + word: "koszulka", + correct: 32, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 44, + date: "11.06.2025", + }, + }, + { + date: "11.06.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM3IWLz92auMWYzQTLz9GcuYTYi1SZp1mLw4CMx4iMugTMuIjNx0SYrxWd6N3brhSI", + value: "!(koszulka-162.18.2.10.0.mie-ba6.pos-43ac.kos-b71)!", + result: { + word: "koszulka", + correct: 18, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "11.06.2025", + }, + }, + { + date: "11.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzNi1ycvtmLyUmNto3cv5yM0ETLwp3cuAjL54iMucTMuIjNx0SYrxWd6N3brhSI", + value: "!(koszulka-162.17.2.9.0.szp-143.osz-6e2.kos-b71)!", + result: { + word: "koszulka", + correct: 17, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "11.06.2025", + }, + }, + { + date: "11.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM3IWLz92auADOx0CZ1pmL3ITLrVXZuAjL44iMuQTMuIjNx0SYrxWd6N3brhSI", + value: "!(koszulka-162.14.2.8.0.euk-27.jud-180.kos-b71)!", + result: { + word: "koszulka", + correct: 14, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "11.06.2025", + }, + }, + { + date: "11.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzNi5yYmhTLz92auEWMyUTL69GcuAjL34SMugTMuIjNx0SYrxWd6N3brhSI", + value: "!(koszulka-162.18.1.7.0.poz-521a.kos-8fc.b71)!", + result: { + word: "koszulka", + correct: 18, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "11.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/14-06-2025-diffle-difflepl-grywebowe-16-liter-w-2-slowach-large-green-circle-9-l" +] = [ + { + date: "14.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhVTLuVnYuIWZ50ycvtmLw4SNuIjL54SN2ETLyVWar5WdihSI", + value: "!(bunkier-165.9.2.5.0.kos-9eb.bun-5a)!", + result: { + word: "bunkier", + correct: 9, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "14.06.2025", + }, + }, + { + date: "14.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhVTLuVnYuUWYz0SastmLjZTLyVmbuImZmNWL6JHcuAjLzEjLz4yNx4SN2ETLyVWar5WdihSI", + value: "!(bunkier-165.17.3.13.0.prz-cffb.ner-6c.kli-3ae.bun-5a)!", + result: { + word: "bunkier", + correct: 17, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "14.06.2025", + }, + }, + { + date: "14.06.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhVTLuVnYuMTZtsWdw5iNhJWLllWbuAjLxEjLz4yMx4SN2ETLyVWar5WdihSI", + value: "!(bunkier-165.13.3.11.0.mie-ba6.puk-e3.bun-5a)!", + result: { + word: "bunkier", + correct: 13, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "14.06.2025", + }, + }, + { + date: "14.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWNt4Wdi5CMz0ic15mLkJDNtIHcz5CMukjLz4CNx4SN2ETLyVWar5WdihSI", + value: "!(bunkier-165.14.3.9.0.spr-42d.nur-30.bun-5a)!", + result: { + word: "bunkier", + correct: 14, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "14.06.2025", + }, + }, + { + date: "14.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWNt4Wdi5CNhVTL6JHdllmbuAjLwEjLx4SMx4SN2ETLyVWar5WdihSI", + value: "!(bunkier-165.11.1.10.0.nietrz-5a4.bun-5a)!", + result: { + word: "bunkier", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "14.06.2025", + }, + }, + { + date: "14.06.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY10ib1JmLmNWLuVHcuQGZ00SauVnLmJmMtUHaj5CMugjLy4iNx4SN2ETLyVWar5WdihSI", + value: "!(bunkier-165.16.2.8.0.chu-2bf.uni-4dd.pun-cf.bun-5a)!", + result: { + word: "bunkier", + correct: 16, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "14.06.2025", + }, + }, + { + date: "14.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhVTLuVnYuQ2N10SZptmLiNmMtIXZz5SO2MTLtVGZuAjLyEjL34SNx4SN2ETLyVWar5WdihSI", + value: "!(bunkier-165.15.7.12.0.dem-369.ser-2cb.kie-57d.bun-5a)!", + result: { + word: "bunkier", + correct: 15, + position: 7, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "14.06.2025", + }, + }, + { + date: "14.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY10ib1JmLjZTLyVmbucDNy0iavdnLzkDOhFTL6JHcuAjL0EjL04CNx4SN2ETLyVWar5WdihSI", + value: "!(bunkier-165.14.4.14.0.prz-1a893.woj-247.ner-6c.bun-5a)!", + result: { + word: "bunkier", + correct: 14, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "14.06.2025", + }, + }, + { + date: "14.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWNt4mLxETLjVnYuUmMz0Saw9mLmFzNtUWat5yY2EWLhJ3ZuAjLxEjLx4COx4SN2ETLyVWar5WdihSI", + value: "!(bunkier-165.18.1.11.0.gra-a6c.mie-71f.opi-32e.buc-11.n-5a)!", + result: { + word: "bunkier", + correct: 18, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "14.06.2025", + }, + }, + { + date: "14.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhVTLuVnYuE2MtsWas5yY20icl5mL0YWMtQWe35CMucjL04iNx4SN2ETLyVWar5WdihSI", + value: "!(bunkier-165.16.4.7.0.wyd-1f4.ner-6c.lik-3a.bun-5a)!", + result: { + word: "bunkier", + correct: 16, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "14.06.2025", + }, + }, + { + date: "14.06.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhVTLuVnYuYTZ40SZpNmL3UWYt4WYw5CMukjLx4CNx4SN2ETLyVWar5WdihSI", + value: "!(bunkier-165.14.1.9.0.pan-ae7.cie-8e6.bun-5a)!", + result: { + word: "bunkier", + correct: 14, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "14.06.2025", + }, + }, + { + date: "14.06.2025", + nick: "Peregrin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWNt4Wdi5CZmdTLu92auAjLwEjLx4CMx4SN2ETLyVWar5WdihSI", + value: "!(bunkier-165.10.1.10.0.kon-7fd.bun-5a)!", + result: { + word: "bunkier", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "14.06.2025", + }, + }, + { + date: "14.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY10ib1JmLldzNtkmb15CM3UTL1p3cucjMtsWdl5CMugjL34COx4SN2ETLyVWar5WdihSI", + value: "!(bunkier-165.18.7.8.0.euk-27.szu-570.uni-77e.bun-5a)!", + result: { + word: "bunkier", + correct: 18, + position: 7, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "14.06.2025", + }, + }, + { + date: "14.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhVTLuVnYuATLrV3YuImNz0ic1tmL1ETLpd2buEWM3MTL6JHcuAjLyEjLz4CMy4SN2ETLyVWar5WdihSI", + value: "!(bunkier-165.20.3.12.0.prz-371a.ogi-15.kur-36b.cuk-0.bun-5a)!", + result: { + word: "bunkier", + correct: 20, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "14.06.2025", + }, + }, + { + date: "14.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhVTLuVnYuUmZ00SdrNnLmFTLyVnbuQTMtUXZm5CMucjL14SNx4SN2ETLyVWar5WdihSI", + value: "!(bunkier-165.15.5.7.0.feu-14.nur-1f.sku-4fe.bun-5a)!", + result: { + word: "bunkier", + correct: 15, + position: 5, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "14.06.2025", + }, + }, + { + date: "14.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWNt4Wdi5yN3ITLyV2YuEWMyUTL69GcuAjLwEjLz4yMx4SN2ETLyVWar5WdihSI", + value: "!(bunkier-165.13.3.10.0.poz-521a.cer-277.bun-5a)!", + result: { + word: "bunkier", + correct: 13, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "14.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/14-08-2025-diffle-difflepl-grywebowe-36-liter-w-5-slowach-large-green-circle" +] = [ + { + date: "14.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0YTLrV2cugjY20SYoNmL4IDNtsWZucDM30SYrNnL5YWOtM3br5CMuATMuIjL0IjL2IjMtQnbhRmb1tWZzhSI", + value: "!(sekundant-226.24.2.10.0.kos-9f9.ska-707.ek-428.cha-6b8.sek-641)!", + result: { + word: "sekundant", + correct: 24, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "14.08.2025", + }, + }, + { + date: "14.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDN20yalNnLjNWNtUWa35CMuETMuAjLzEjL2IjMtQnbhRmb1tWZzhSI", + value: "!(sekundant-226.13.0.11.0.wie-5cc.sek-641)!", + result: { + word: "sekundant", + correct: 13, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 24, + date: "14.08.2025", + }, + }, + { + date: "14.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDN20yal5iYihTL1t2cuQTY10ieyRXZp5mLw4SOuUjL2EjL2IjMtQnbhRmb1tWZzhSI", + value: "!(sekundant-226.16.5.9.0.nietrz-5a4.sku-8bb.ek-641)!", + result: { + word: "sekundant", + correct: 16, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "14.08.2025", + }, + }, + { + date: "14.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0YTLrVmL0YmNx0ic0NnLmJmMtUHaj5CMuATMuEjL0EjL2IjMtQnbhRmb1tWZzhSI", + value: "!(sekundant-226.14.1.10.0.chu-2bf.str-16f4.ek-641)!", + result: { + word: "sekundant", + correct: 14, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "14.08.2025", + }, + }, + { + date: "14.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQjNtsWZz5iYiRTLiVHbucDOj1yboNmLzEWOt4WYr5COy0yclRmL50SYlBnLjZTYtEmcn5CMuETMuMjL0IjL2IjMtQnbhRmb1tWZzhSI", + value: + "!(sekundant-226.24.3.11.0.gra-a6c.pea-9.des-28.kan-9a3.cho-c87.lub-4bb.sek-641)!", + result: { + word: "sekundant", + correct: 24, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 38, + date: "14.08.2025", + }, + }, + { + date: "14.08.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQjNugjM00yalNnL4QTNtUWaw5CMuATMuEjL3EjL2IjMtQnbhRmb1tWZzhSI", + value: "!(sekundant-226.17.1.10.0.pie-548.sek-428.641)!", + result: { + word: "sekundant", + correct: 17, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "14.08.2025", + }, + }, + { + date: "14.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0YTLrVmL0YWMtUXbz5yM5gTYx0ieyBnLw4SOuMjL2EjL2IjMtQnbhRmb1tWZzhSI", + value: "!(sekundant-226.16.3.9.0.prz-1a893.smu-1f4.ek-641)!", + result: { + word: "sekundant", + correct: 16, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "14.08.2025", + }, + }, + { + date: "14.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0YTLr5iNx0CZlNnLklTLuFGZuQjZx0CZ5dnLw4SNuIjLwIjL2IjMtQnbhRmb1tWZzhSI", + value: "!(sekundant-226.20.2.5.0.wyd-1f4.dan-9d.sed-16.k-641)!", + result: { + word: "sekundant", + correct: 20, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "14.08.2025", + }, + }, + { + date: "14.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0YTLrV2cuQjY20SY3tmLw4COuQjLyEjL2IjMtQnbhRmb1tWZzhSI", + value: "!(sekundant-226.12.4.8.0.kwa-6b4.sek-641)!", + result: { + word: "sekundant", + correct: 12, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 24, + date: "14.08.2025", + }, + }, + { + date: "14.08.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0YTLrV2cuYTYi1SZp1mLw4COuEjL0EjL2IjMtQnbhRmb1tWZzhSI", + value: "!(sekundant-226.14.1.8.0.mie-ba6.sek-641)!", + result: { + word: "sekundant", + correct: 14, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "14.08.2025", + }, + }, + { + date: "14.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQjNtsWZz5yNl1SZ3tmL5gjNtAXZk5yNy0ya1VmLx4SOuMjL0IjL2IjMtQnbhRmb1tWZzhSI", + value: "!(sekundant-226.24.3.9.1.euk-27.dep-689.kwe-e7.sek-641)!", + result: { + word: "sekundant", + correct: 24, + position: 3, + incorrect: 9, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 36, + date: "14.08.2025", + }, + }, + { + date: "14.08.2025", + nick: "djsclub", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQjNucDO10yalNnLwYWMtMXZk5SMlJTL1xGcuQTMy0SYyRnLw4yNucjLwIjL2IjMtQnbhRmb1tWZzhSI", + value: "!(sekundant-226.20.7.7.0.tra-214.plu-2e1.des-1f0.sek-587.641)!", + result: { + word: "sekundant", + correct: 20, + position: 7, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "14.08.2025", + }, + }, + { + date: "14.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxQjNugjM00yalNnLhFjM10ievBnLw4yNuIjL4EjL2IjMtQnbhRmb1tWZzhSI", + value: "!(sekundant-226.18.2.7.0.poz-521a.sek-428.641)!", + result: { + word: "sekundant", + correct: 18, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "14.08.2025", + }, + }, + { + date: "14.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDN20yalNnLzETLoN2MuIWMt4WZuMmZz0Se0NnL5QjMtQ2bt5CMuATMuMjLxIjL2IjMtQnbhRmb1tWZzhSI", + value: "!(sekundant-226.21.3.10.0.mod-249.sty-3fc.en-1b.3ch-13.sek-641)!", + result: { + word: "sekundant", + correct: 21, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "14.08.2025", + }, + }, + { + date: "14.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM0YTLr5COz0SblNnLhFzNz0ieyBnLw4COuMjL3EjL2IjMtQnbhRmb1tWZzhSI", + value: "!(sekundant-226.17.3.8.0.prz-371a.sem-38.k-641)!", + result: { + word: "sekundant", + correct: 17, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "14.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/16-07-2025-diffle-difflepl-grywebowe-21-liter-w-3-slowach-large-green-circle-9-l" +] = [ + { + date: "16.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZh1SbhJmL4EWOtU3dk5iYllTLz92auAjL44CNukjL3kTMtMXdi1WYihSI", + value: "!(bambus-197.9.4.8.0.kos-9eb.dwu-9a8.bam-af)!", + result: { + word: "bambus", + correct: 9, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "16.07.2025", + }, + }, + { + date: "16.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZh1Sbh5CZtI2bi5SYxczMtoncw5CMuATMuIjLwEjL3kTMtMXdi1WYihSI", + value: "!(bambus-197.10.2.10.0.prz-371a.bob-d.am-af)!", + result: { + word: "bambus", + correct: 10, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "16.07.2025", + }, + }, + { + date: "16.07.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWYt0WYuATLkVnYuIDZ4ETLtF2cuMmZ00SYoNmLjljMtQXZt5SYkJjMts2bw5CMuYTMuMjL1EjL3kTMtMXdi1WYihSI", + value: + "!(bambus-197.15.3.16.0.pok-22da.met-29c.cha-4fc.sam-18d2.bud-0.am-af)!", + result: { + word: "bambus", + correct: 15, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "16.07.2025", + }, + }, + { + date: "16.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWYt0WYi5iNjdTLhx2auQmM00icwNnLw4CNx4SMukjL3kTMtMXdi1WYihSI", + value: "!(bambus-197.9.1.14.0.spr-42d.kla-7c6.bam-af)!", + result: { + word: "bambus", + correct: 9, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "16.07.2025", + }, + }, + { + date: "16.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmFWLtFmYuIDN20ych5CMx0yY11mL0EWNtonc0VWau5CMuYTMuQjLxEjL3kTMtMXdi1WYihSI", + value: "!(bambus-197.11.4.16.0.nietrz-5a4.muc-10.as-642.bam-af)!", + result: { + word: "bambus", + correct: 11, + position: 4, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "16.07.2025", + }, + }, + { + date: "16.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZh1SbuEDZ20CbhJmL0ImNtE2dr5CMuQTMuIjLzEjL3kTMtMXdi1WYihSI", + value: "!(bambus-197.13.2.14.0.kwa-6b4.bal-6d1.m-af)!", + result: { + word: "bambus", + correct: 13, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "16.07.2025", + }, + }, + { + date: "16.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZh1SbhJmLhRjLlhjLkBzMuQTYz4iM2MTLoN2MuATLtVHZugjZ50SYyBnLyUDOx0SY0NnLmJmMtUHaj5CMugTMucjLzIjL3kTMtMXdi1WYihSI", + value: + "!(bambus-197.23.7.18.0.chu-2bf.sta-1852.pra-9f8.dum-0.3ch-362.3a4.30d.8e.4a.bam-af)!", + result: { + word: "bambus", + correct: 23, + position: 7, + incorrect: 18, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 48, + date: "16.07.2025", + }, + }, + { + date: "16.07.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmFWLtFmLiJTL1JnYuE2Yz0SY6NnL3UWYt4WYw5CMuUTMuIjLxEjL3kTMtMXdi1WYihSI", + value: "!(bambus-197.11.2.15.0.pan-ae7.sza-3ca.bru-2b.am-af)!", + result: { + word: "bambus", + correct: 11, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "16.07.2025", + }, + }, + { + date: "16.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmFWLtFmYuI2Nt0WYz5CMt0WYm5SOj1iah1mLldTL1F2ZuATLsVHcugjNx0ychhmL1EWOtUmcr5iMuIjMuQjL5EjL3kTMtMXdi1WYihSI", + value: + "!(bambus-197.19.4.22.2.kre-9a5.has-168.pul-0.gau-7e.maj-c9.fam-0.sam-7b.bam-af)!", + result: { + word: "bambus", + correct: 19, + position: 4, + incorrect: 22, + knownIncorrect: 2, + totalWords: 8, + totalLetters: 45, + date: "16.07.2025", + }, + }, + { + date: "16.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZh1SbhJmL1YGNt0WYs5SYjdTLzFWbuMmNh1SYydmLw4COuEjLzEjL3kTMtMXdi1WYihSI", + value: "!(bambus-197.13.1.8.0.gra-a6c.mas-7ca.lam-4f5.bam-af)!", + result: { + word: "bambus", + correct: 13, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "16.07.2025", + }, + }, + { + date: "16.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZh1Sbh5CMtQWdi5yN0ITLq92duMTO4EWMtoncw5CMucTMuMjLwEjL3kTMtMXdi1WYihSI", + value: "!(bambus-197.10.3.17.0.prz-1a893.woj-247.bud-0.am-af)!", + result: { + word: "bambus", + correct: 10, + position: 3, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "16.07.2025", + }, + }, + { + date: "16.07.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWYt0WYi5CMtAXdk5iZkVWLyFmL2EmYtUWat5CMuQTMuMjLxEjL3kTMtMXdi1WYihSI", + value: "!(bambus-197.11.3.14.0.mie-ba6.ar-edf.dup-0.bam-af)!", + result: { + word: "bambus", + correct: 11, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "16.07.2025", + }, + }, + { + date: "16.07.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZh1SbhJmLmhjMtoXYr5yMkJTLsFmZuU2NtUXYn5SOyITL0NXduIDOtI3bwVWau5CMugTMuEjL4EjL3kTMtMXdi1WYihSI", + value: + "!(bambus-197.18.1.18.0.niepor-82.ust-229.gau-7e.fal-2d3.kaz-28f.bam-af)!", + result: { + word: "bambus", + correct: 18, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "16.07.2025", + }, + }, + { + date: "16.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmFWLtFmYuUjZ00SbhxmL0EmNtEGaj5iN0ITLoN2MuATLzFWbucTMx0SYtNnL0YWMtQWe35SMucTMuMjL5EjL3kTMtMXdi1WYihSI", + value: + "!(bambus-197.19.3.17.1.wyd-1f4.sma-117.mas-0.3ch-246.cha-6a4.lam-4f5.bam-af)!", + result: { + word: "bambus", + correct: 19, + position: 3, + incorrect: 17, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 39, + date: "16.07.2025", + }, + }, + { + date: "16.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWYt0WYi5SNmRTLtFGbuATYy0Sd0NnL5QjMtQ2bt5CMuMTMuMjLzEjL3kTMtMXdi1WYihSI", + value: "!(bambus-197.13.3.13.0.mod-249.stu-2a0.lam-4f5.bam-af)!", + result: { + word: "bambus", + correct: 13, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "16.07.2025", + }, + }, + { + date: "16.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZh1SbuIDNz0iYhJmLxcTMtAXYs5iMxQTLhp3cucjMtsWdl5CMuQTMuIjL3EjL3kTMtMXdi1WYihSI", + value: "!(bambus-197.17.2.14.0.euk-27.sza-412.lap-171.bab-342.m-af)!", + result: { + word: "bambus", + correct: 17, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "16.07.2025", + }, + }, + { + date: "16.07.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZh1SbhJmLjVTL5R2ZuIjYy0yc1BnLiJzYtUWa35CMuAjMuEjLwEjL3kTMtMXdi1WYihSI", + value: "!(bambus-197.10.1.20.0.wie-c2b.pus-2b2.gdy-5c.bam-af)!", + result: { + word: "bambus", + correct: 10, + position: 1, + incorrect: 20, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "16.07.2025", + }, + }, + { + date: "16.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZh1SbhJmL1YGNt0WYs5yY20SbhdnLmRWZtIXYt5SYxITNto3bw5CMuETMuIjL2EjL3kTMtMXdi1WYihSI", + value: "!(bambus-197.16.2.11.0.poz-521a.mar-edf.wam-6c.lam-4f5.bam-af)!", + result: { + word: "bambus", + correct: 16, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "16.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/17-06-2025-flag-pl-diffle-difflepl-grywebowe-31-liter-w-3-slowach-large-green-ci" +] = [ + { + date: "17.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAzYtUWat5CN1ITLp1meuQTY10ieyRXZp5mLw4SMx4iMugTMugjNx0yap5mejVWathSI", + value: "!(miecznik-168.18.2.11.0.nietrz-5a4.zmi-254.mie-c0)!", + result: { + word: "miecznik", + correct: 18, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "17.06.2025", + }, + }, + { + date: "17.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMj1SZp1mLkZmNtUWauUGNy0icoNmLw4iMx4yMuMTMugjNx0yap5mejVWathSI", + value: "!(miecznik-168.13.3.12.0.chr-24e.ie-6fd.mie-c0)!", + result: { + word: "miecznik", + correct: 13, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "17.06.2025", + }, + }, + { + date: "17.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMj1SZp1mL0UjMtkWb65CZyQTLyB3cuAjL54iMucTMugjNx0yap5mejVWathSI", + value: "!(miecznik-168.17.2.9.0.spr-42d.zmi-254.mie-c0)!", + result: { + word: "miecznik", + correct: 17, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "17.06.2025", + }, + }, + { + date: "17.06.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMj1SZp1mLzcDNtMWas5iZiJTL1h2YuAjL44SMuUTMugjNx0yap5mejVWathSI", + value: "!(miecznik-168.15.1.8.0.chu-2bf.lic-473.mie-c0)!", + result: { + word: "miecznik", + correct: 15, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "17.06.2025", + }, + }, + { + date: "17.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAzYtUWat5CNiZTLhd3auAjL44CNuETMugjNx0yap5mejVWathSI", + value: "!(miecznik-168.11.4.8.0.kwa-6b4.mie-c0)!", + result: { + word: "miecznik", + correct: 11, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "17.06.2025", + }, + }, + { + date: "17.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwMWLllmL4EmMtMWZt5iYllTLz92auAjL04yMuQTMugjNx0yap5mejVWathSI", + value: "!(miecznik-168.14.3.4.0.kos-9eb.mec-2a8.ie-c0)!", + result: { + word: "miecznik", + correct: 14, + position: 3, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "17.06.2025", + }, + }, + { + date: "17.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAzYtUWauQTYtUGbugTYy0yYl5SO0ITLk9WbuAjL44iMuIjMugjNx0yap5mejVWathSI", + value: "!(miecznik-168.22.2.8.0.mod-249.ec-2a8.le-a4.ie-c0)!", + result: { + word: "miecznik", + correct: 22, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "17.06.2025", + }, + }, + { + date: "17.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMj1SZp1mLwIjZt42br5yM5gTYx0ieyBnLw4SMx4yMucTMugjNx0yap5mejVWathSI", + value: "!(miecznik-168.17.3.11.0.prz-1a893.kon-f20.mie-c0)!", + result: { + word: "miecznik", + correct: 17, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "17.06.2025", + }, + }, + { + date: "17.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwMWLllWbuQTYy0CbpdnLx0Cc15CZ50yYv1mLzEWLtF2ZuAjL54SMucTMugjNx0yap5mejVWathSI", + value: "!(miecznik-168.17.1.9.0.gam-a3.moc-9d.up-1.wil-2a4.mie-c0)!", + result: { + word: "miecznik", + correct: 17, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "17.06.2025", + }, + }, + { + date: "17.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwMWLllmL5kTLlxWbuEzYt8Gcz5CNmFTLkl3duAjL54iMuEjMugjNx0yap5mejVWathSI", + value: "!(miecznik-168.21.2.9.0.wyd-1f4.spo-c1.mle-99.ie-c0)!", + result: { + word: "miecznik", + correct: 21, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "17.06.2025", + }, + }, + { + date: "17.06.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMj5iNhJWLllWbuAjL24iMuQTMugjNx0yap5mejVWathSI", + value: "!(miecznik-168.14.2.6.0.mie-ba6.c0)!", + result: { + word: "miecznik", + correct: 14, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "17.06.2025", + }, + }, + { + date: "17.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAzYtUWat5iM3YTL6VmYuUmZ00SZppnLhFzNz0ieyBnLw4yMx4SNucTMugjNx0yap5mejVWathSI", + value: "!(miecznik-168.17.5.13.0.prz-371a.zie-4fe.bez-672.mie-c0)!", + result: { + word: "miecznik", + correct: 17, + position: 5, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "17.06.2025", + }, + }, + { + date: "17.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMj1SZp1mLjJGZtoXZi5CMtk2ajVWau5yNy0ya1VmLw4CMx4CNuEjMugjNx0yap5mejVWathSI", + value: "!(miecznik-168.21.4.10.0.euk-27.niecki-0.bez-dbc.mie-c0)!", + result: { + word: "miecznik", + correct: 21, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "17.06.2025", + }, + }, + { + date: "17.06.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAzYtUWat5CO0UTLllGcuAjL24SMuITMugjNx0yap5mejVWathSI", + value: "!(miecznik-168.12.1.6.0.pie-548.mie-c0)!", + result: { + word: "miecznik", + correct: 12, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "17.06.2025", + }, + }, + { + date: "17.06.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAzYtUWat5SO50SatlmLjJzMtUWa35SZ5ETLlJ3auUjMi1ibhBnLw4iMx4yMuAjMugjNx0yap5mejVWathSI", + value: "!(miecznik-168.20.3.12.0.pan-b25.kre-19e.wie-32c.imi-99.mie-c0)!", + result: { + word: "miecznik", + correct: 20, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "17.06.2025", + }, + }, + { + date: "17.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwMWLllWbuEWMyUTL69GcuAjL14iMuETMugjNx0yap5mejVWathSI", + value: "!(miecznik-168.11.2.5.0.poz-521a.mie-c0)!", + result: { + word: "miecznik", + correct: 11, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "17.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/17-07-2025-diffle-difflepl-grywebowe-24-litery-w-3-slowach-18-3-white-circle" +] = [ + { + date: "17.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY3cjL4AzNtEmcuIWZ50ycvtmLw4yMuMjL4EjL4kTMtQWds9mbzFmcrhSI", + value: "!(krasnolud-198.18.3.3.0.kos-9eb.ra-708.77a)!", + result: { + word: "krasnolud", + correct: 18, + position: 3, + incorrect: 3, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "17.07.2025", + }, + }, + { + date: "17.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhdzNtEmcr5CM0kTLkFmcuQmM00icwNnLw4yNuQjL3EjL4kTMtQWds9mbzFmcrhSI", + value: "!(krasnolud-198.17.4.7.0.spr-42d.rad-940.kra-77a)!", + result: { + word: "krasnolud", + correct: 17, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "17.07.2025", + }, + }, + { + date: "17.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhdzNuUzM10SYytmLihjMtI3bw5CMlZTLhJHduMDNy0CZuFmLmJmMtUHaj5CMuUTMugjLzIjL4kTMtQWds9mbzFmcrhSI", + value: + "!(krasnolud-198.23.8.15.0.chu-2bf.and-243.tra-6e0.por-28b.kra-535.77a)!", + result: { + word: "krasnolud", + correct: 23, + position: 8, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 46, + date: "17.07.2025", + }, + }, + { + date: "17.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY3cjL4AzNtEmcr5SYyIWLhJHcuMmNh1SYydmLw4yNuEjLyIjL4kTMtQWds9mbzFmcrhSI", + value: "!(krasnolud-198.22.1.7.0.gra-a6c.pra-b2a.kra-708.77a)!", + result: { + word: "krasnolud", + correct: 22, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "17.07.2025", + }, + }, + { + date: "17.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2N34CMykTLhJ3auEWYt4Wdm5SNzUTLhJnLiRWLy92auEWOt4WYy5CZmFzMtAXY65CMuQTMukjLwMjL4kTMtQWds9mbzFmcrhSI", + value: + "!(krasnolud-198.30.9.14.0.zap-31fd.ran-9a.kor-db.ra-535.fun-aa.kra-920.77a)!", + result: { + word: "krasnolud", + correct: 30, + position: 9, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 53, + date: "17.07.2025", + }, + }, + { + date: "17.07.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY3cTLhJnLiVTLsV3auYTYi1SZp1mLw4COuQjL2EjL4kTMtQWds9mbzFmcrhSI", + value: "!(krasnolud-198.16.4.8.0.mie-ba6.kul-5b.ra-77a)!", + result: { + word: "krasnolud", + correct: 16, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "17.07.2025", + }, + }, + { + date: "17.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2N30SYytmL0EjMtMXYt5iYy0SdyJmLhFzNz0ieyBnLw4SOucjL4EjL4kTMtQWds9mbzFmcrhSI", + value: "!(krasnolud-198.18.7.9.0.prz-371a.bru-2b.mas-214.kra-77a)!", + result: { + word: "krasnolud", + correct: 18, + position: 7, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "17.07.2025", + }, + }, + { + date: "17.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhdzNtEmcr5iYyUTLhJnYuITLtFmcuQjZx0CZ5dnLw4SOuMjL4EjL4kTMtQWds9mbzFmcrhSI", + value: "!(krasnolud-198.18.3.9.0.wyd-1f4.ram-2.bra-52b.kra-77a)!", + result: { + word: "krasnolud", + correct: 18, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "17.07.2025", + }, + }, + { + date: "17.07.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhdzNtEmcuMDZy0ichtmL4QTNtUWaw5CMuATMuIjL2EjL4kTMtQWds9mbzFmcrhSI", + value: "!(krasnolud-198.16.2.10.0.pie-548.kar-2d3.ra-77a)!", + result: { + word: "krasnolud", + correct: 16, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "17.07.2025", + }, + }, + { + date: "17.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhdzNtEmcuYjZtIXdr5yNy0ya1VmLw4yNuUjL2EjL4kTMtQWds9mbzFmcrhSI", + value: "!(krasnolud-198.16.5.7.0.euk-27.kur-f6.ra-77a)!", + result: { + word: "krasnolud", + correct: 16, + position: 5, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "17.07.2025", + }, + }, + { + date: "17.07.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY3cTLhJ3aucTZh1ibhBnLw4SNuEjLzEjL4kTMtQWds9mbzFmcrhSI", + value: "!(krasnolud-198.13.1.5.0.pan-ae7.kra-77a)!", + result: { + word: "krasnolud", + correct: 13, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "17.07.2025", + }, + }, + { + date: "17.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhdzNtEmcuQjY20SY3tmLw4COuIjL0EjL4kTMtQWds9mbzFmcrhSI", + value: "!(krasnolud-198.14.2.8.0.kwa-6b4.ra-77a)!", + result: { + word: "krasnolud", + correct: 14, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 24, + date: "17.07.2025", + }, + }, + { + date: "17.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhdzNtEmcuATLyVnLzUTMtw2br5SZ10SYrVnLw4COuMjLwIjL4kTMtQWds9mbzFmcrhSI", + value: "!(krasnolud-198.20.3.8.0.uka-5e.kol-153.ur-0.ra-77a)!", + result: { + word: "krasnolud", + correct: 20, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "17.07.2025", + }, + }, + { + date: "17.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2N34CN0YTLhJ3auYDNy0iavdnLlJWLy9WbuMTO4EWMtoncw5CMuMTMuYjLwIjL4kTMtQWds9mbzFmcrhSI", + value: "!(krasnolud-198.20.6.13.0.prz-1a893.mor-be.woj-246.kra-644.77a)!", + result: { + word: "krasnolud", + correct: 20, + position: 6, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "17.07.2025", + }, + }, + { + date: "17.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2N34CMlZTLhJnLlBTYx0ibvtmLh1ycr9mLhFjM10ievBnLw4SOugjL0IjL4kTMtQWds9mbzFmcrhSI", + value: "!(krasnolud-198.24.8.9.0.poz-521a.oks-a.kon-1a0e.ra-6e0.77a)!", + result: { + word: "krasnolud", + correct: 24, + position: 8, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "17.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/17-09-2025-diffle-difflepl-14-liter-w-2-slowach-large-green-circle-8-large-yello" +] = [ + { + date: "17.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjM10ybtpnLiVWOtM3br5CMuUjLx4COuAjNy0SY39Wb6hSI", + value: "!(zmowa-260.8.1.5.0.kos-9eb.zmo-528)!", + result: { + word: "zmowa", + correct: 8, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "17.09.2025", + }, + }, + { + date: "17.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjM10ybtpnLhVWLtlWbuATLt92aukTMtM2bs5SOidTL0FGcuMjYy0SYydmLw4CNx4iMuQTMuAjNy0SY39Wb6hSI", + value: + "!(zmowa-260.14.2.14.0.gra-2b3.pat-7b9.loc-19.kom-0.mim-ea.zmo-528)!", + result: { + word: "zmowa", + correct: 14, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "17.09.2025", + }, + }, + { + date: "17.09.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ITNt8Wb65CN0ETL6V3ZuQTY10ieyRXZp5mLw4yMx4CMuMTMuAjNy0SY39Wb6hSI", + value: "!(zmowa-260.13.0.13.0.nietrz-5a4.guz-144.zmo-528)!", + result: { + word: "zmowa", + correct: 13, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "17.09.2025", + }, + }, + { + date: "17.09.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ITNt8Wb65SYkJjMts2bw5CMucjLx4COuAjNy0SY39Wb6hSI", + value: "!(zmowa-260.8.1.7.0.pok-22da.zmo-528)!", + result: { + word: "zmowa", + correct: 8, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "17.09.2025", + }, + }, + { + date: "17.09.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOyUTLv1meuMGO1gTL69mcuImMy0ibhZmLw4yMx4SMuETMuAjNy0SY39Wb6hSI", + value: "!(zmowa-260.11.1.13.0.fan-22b.roz-858c.zmo-528)!", + result: { + word: "zmowa", + correct: 11, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "17.09.2025", + }, + }, + { + date: "17.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjM10ybtpnLmJmMtUHaj5CMuYjLx4COuAjNy0SY39Wb6hSI", + value: "!(zmowa-260.8.1.6.0.chu-2bf.zmo-528)!", + result: { + word: "zmowa", + correct: 8, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "17.09.2025", + }, + }, + { + date: "17.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjM10ybtpnLkJDNtIHcz5CMugjLy4yNuAjNy0SY39Wb6hSI", + value: "!(zmowa-260.7.2.8.0.spr-42d.zmo-528)!", + result: { + word: "zmowa", + correct: 7, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "17.09.2025", + }, + }, + { + date: "17.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOyUTLv1meugjMx0yb6NnL3ITLrVXZuAjLwEjLx4SOuAjNy0SY39Wb6hSI", + value: "!(zmowa-260.9.1.10.0.euk-27.szo-128.zmo-528)!", + result: { + word: "zmowa", + correct: 9, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "17.09.2025", + }, + }, + { + date: "17.09.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ITNt8Wb65iMyMTLv1WduATL39GduQDNx0SYwNnLw4yMx4CMuUTMuAjNy0SY39Wb6hSI", + value: "!(zmowa-260.15.0.13.0.spa-144.tow-0.umo-322.zmo-528)!", + result: { + word: "zmowa", + correct: 15, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "17.09.2025", + }, + }, + { + date: "17.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ITNt8WbuYTNtMXY65yM5gTYx0ieyBnLw4SNx4CMuETMuAjNy0SY39Wb6hSI", + value: "!(zmowa-260.11.0.15.0.prz-1a893.zas-56.mo-528)!", + result: { + word: "zmowa", + correct: 11, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "17.09.2025", + }, + }, + { + date: "17.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOyUTLv1mLidTMtEma65CNmFTLkl3duAjL44SMuATMuAjNy0SY39Wb6hSI", + value: "!(zmowa-260.10.1.8.0.wyd-1f4.zja-17b.mo-528)!", + result: { + word: "zmowa", + correct: 10, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "17.09.2025", + }, + }, + { + date: "17.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjM10ybtpnL2EmYtUWat5CMukjLz4yNuAjNy0SY39Wb6hSI", + value: "!(zmowa-260.7.3.9.0.mie-ba6.zmo-528)!", + result: { + word: "zmowa", + correct: 7, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "17.09.2025", + }, + }, + { + date: "17.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjM10ybtpnLyIzMt8Wb15iYyIWMt0We35CMtQ2bt5CMtw2bj5yNkZTLzFGcuMmNh1SYydmLw4SNx4CMuAjMuAjNy0SY39Wb6hSI", + value: + "!(zmowa-260.20.0.15.0.gra-a6c.pas-6d7.col-0.mod-0.wym-1b2b.umo-322.zmo-528)!", + result: { + word: "zmowa", + correct: 20, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 35, + date: "17.09.2025", + }, + }, + { + date: "17.09.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjM10ybtpnLyIzMt8Wb15CMtc3bt5yMjJTL5JnZuAjL54CMuYTMuAjNy0SY39Wb6hSI", + value: "!(zmowa-260.16.0.9.0.fry-2c3.mow-0.umo-322.zmo-528)!", + result: { + word: "zmowa", + correct: 16, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "17.09.2025", + }, + }, + { + date: "17.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjM10ybtpnLlRTLj9WbuEWMyUTL69GcuAjL54iMuATMuAjNy0SY39Wb6hSI", + value: "!(zmowa-260.10.2.9.0.poz-521a.moc-4e.zmo-528)!", + result: { + word: "zmowa", + correct: 10, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "17.09.2025", + }, + }, + { + date: "17.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjM10ybtpnL5QjMtQ2bt5CMugjLx4COuAjNy0SY39Wb6hSI", + value: "!(zmowa-260.8.1.8.0.mod-249.zmo-528)!", + result: { + word: "zmowa", + correct: 8, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "17.09.2025", + }, + }, + { + date: "17.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ITNt8Wb65CNiZTLhd3auAjLwEjLz4yNuAjNy0SY39Wb6hSI", + value: "!(zmowa-260.7.3.10.0.kwa-6b4.zmo-528)!", + result: { + word: "zmowa", + correct: 7, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "17.09.2025", + }, + }, + { + date: "17.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOyUTLv1meugTNz0Sd6NmLhFzNz0ieyBnLw4CMx4CMuETMuAjNy0SY39Wb6hSI", + value: "!(zmowa-260.11.0.10.0.prz-371a.czu-358.zmo-528)!", + result: { + word: "zmowa", + correct: 11, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "17.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/18-05-2025-diffle-difflepl-grywebowe-25-liter-w-4-slowach-large-green-circle" +] = [ + { + date: "18.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1YmMtUnck5iYiFTLtVncuIWLyVXbukjZ50ycvtmLw4iNuQjL1EjL4MTMtEGbtVnckhSI", + value: "!(drumla-138.15.4.6.0.kos-9f9.mur-b.rum-1bb.dru-2f5)!", + result: { + word: "drumla", + correct: 15, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "18.05.2025", + }, + }, + { + date: "18.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1YmMtUnck5iM20ichxmLiNGNtg2Yz4CMtYWds5CN4EWLlJ3aucDOyETLyFWbucDZ2ETLhp3cuI2M10SdyJmL5MWMt8Waw5SMuIjMuYjL2IjL4MTMtEGbtVnckhSI", + value: + "!(drumla-138.26.6.22.1.pio-1c9.bru-53b.sza-16d7.mar-1287.kre-a84.luf-0.3ch-4cb.lar-62.dru-2f5)!", + result: { + word: "drumla", + correct: 26, + position: 6, + incorrect: 22, + knownIncorrect: 1, + totalWords: 9, + totalLetters: 54, + date: "18.05.2025", + }, + }, + { + date: "18.05.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1YmMtUnck5iYiFTLtVncuQTOy0SeyBnLw0SbhxmL2EmYtUWat5CMuQTMuMjL5EjL4MTMtEGbtVnckhSI", + value: "!(drumla-138.19.3.14.0.mie-ba6.lam-0.pry-294.rum-1bb.dru-2f5)!", + result: { + word: "drumla", + correct: 19, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "18.05.2025", + }, + }, + { + date: "18.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1YmMugjMz4SOl1SdyRmLw0CZ1JnLkJDNtIHcz5CMuETMuIjL5EjL4MTMtEGbtVnckhSI", + value: "!(drumla-138.19.2.11.0.spr-42d.rud-0.dru-e9.328.2f5)!", + result: { + word: "drumla", + correct: 19, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "18.05.2025", + }, + }, + { + date: "18.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNmJjL5UWL1JnL0QWLyVnL2ADNtI2bk5SYxczMtoncw5CMuITMuIjL4EjL4MTMtEGbtVnckhSI", + value: "!(drumla-138.18.2.12.0.prz-371a.dob-406.ur-d4.ru-e9.2f5)!", + result: { + word: "drumla", + correct: 18, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "18.05.2025", + }, + }, + { + date: "18.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNmJTL1JHZuATLtV3YuYTYx4SOl1SdyRmL0EWNtonc0VWau5CMuUTMuEjL5EjL4MTMtEGbtVnckhSI", + value: "!(drumla-138.19.1.15.0.nietrz-5a4.dru-e9.1a6.cum-0.dru-2f5)!", + result: { + word: "drumla", + correct: 19, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "18.05.2025", + }, + }, + { + date: "18.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1YmMtUncuQDZx0ic1RmLwYzMtg2Yz4SMyETLiVmcuYjYz0ic1ZmLw0yZsVnLmJmMtUHaj5CMugTMuEjLxIjL4MTMtEGbtVnckhSI", + value: + "!(drumla-138.21.1.18.0.chu-2bf.ulg-0.fur-3b6.reb-121.3ch-360.dur-1d4.ru-2f5)!", + result: { + word: "drumla", + correct: 21, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "18.05.2025", + }, + }, + { + date: "18.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1YmMuYTYx4SOl1SdyRmLw0CZ1JnL3UWMtIHd15SYxITNto3bw5CMuQTMuIjLwIjL4MTMtEGbtVnckhSI", + value: "!(drumla-138.20.2.14.0.poz-521a.utr-1e7.rud-0.dru-e9.1a6.2f5)!", + result: { + word: "drumla", + correct: 20, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "18.05.2025", + }, + }, + { + date: "18.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNmJTL1JHZuATLsFmZuAzNtoWd35iNhFjL4IzMtUnck5SZwcjMx0ieyBnLw0ycvJnLjZTYtEmcn5CMuYTMuEjL0IjL4MTMtEGbtVnckhSI", + value: + "!(drumla-138.24.1.16.0.gra-a6c.ros-0.prz-1270e.dru-328.1a6.wuj-70.fal-0.dru-2f5)!", + result: { + word: "drumla", + correct: 24, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 41, + date: "18.05.2025", + }, + }, + { + date: "18.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1YmMtUnck5iN0ITLoN2MugjMz0SdukzMz0ybuYmY10SYyRmL0YWMtQWe35CMuMTMuIjL5EjL4MTMtEGbtVnckhSI", + value: + "!(drumla-138.19.2.13.0.wyd-1f4.dra-5bf.o-339.u-328.3ch-246.dru-2f5)!", + result: { + word: "drumla", + correct: 19, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "18.05.2025", + }, + }, + { + date: "18.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjZy0SdyRmL3gjMx0ich1mLjFGZtMGZv5CMuMTMuIjLxEjL4MTMtEGbtVnckhSI", + value: "!(drumla-138.11.2.13.0.odc-dac.mar-1287.dru-2f5)!", + result: { + word: "drumla", + correct: 11, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "18.05.2025", + }, + }, + { + date: "18.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1YmMtUnck5iYtIXdt5yNy0ya1VmLw4yNuQjLwEjL4MTMtEGbtVnckhSI", + value: "!(drumla-138.10.4.7.0.euk-27.mur-b.dru-2f5)!", + result: { + word: "drumla", + correct: 10, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "18.05.2025", + }, + }, + { + date: "18.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1YmMtUnck5SO0ITLk9WbuAjL44SMukjL4MTMtEGbtVnckhSI", + value: "!(drumla-138.9.1.8.0.mod-249.dru-2f5)!", + result: { + word: "drumla", + correct: 9, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "18.05.2025", + }, + }, + { + date: "18.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNmJTL1JHZuImMtUnci5iN2UTL1J3ZuMWLrVncuMTO4EWMtoncw5CMuQTMuEjLxIjL4MTMtEGbtVnckhSI", + value: "!(drumla-138.21.1.14.0.prz-1a893.ruk-c.gru-566.bru-2b.dru-2f5)!", + result: { + word: "drumla", + correct: 21, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "18.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/18-06-2025-diffle-difflepl-grywebowe-32-litery-w-4-slowach-large-green-circle" +] = [ + { + date: "18.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2Y00ichdmL1UzNx0ichpnLkJWOtwGcz5yM0MTMtwWe35CMuITMuEjL5EjL5YTMto3YhJDOlUzQlIXYnhSI", + value: "!(garłacz-169.19.1.12.0.wyl-1343.spl-9bd.zar-1755.gar-4cc)!", + result: { + word: "garłacz", + correct: 19, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "18.06.2025", + }, + }, + { + date: "18.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2Y00ichdmLlJWMtwWd05CZ5ATMtEGbw5yMhZTLoN2cugTOt8me65CMuQTMuIjL4EjL5YTMto3YhJDOlUzQlIXYnhSI", + value: "!(garłacz-169.18.2.14.0.zzo-98.sch-6a3.pla-109d.tul-1be.gar-4cc)!", + result: { + word: "garłacz", + correct: 18, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "18.06.2025", + }, + }, + { + date: "18.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2Y00ichdmLxITMtsmez5SMygTMtIXY65CMuITMuEjLzEjL5YTMto3YhJDOlUzQlIXYnhSI", + value: "!(garłacz-169.13.1.12.0.zar-1821.szk-121.gar-4cc)!", + result: { + word: "garłacz", + correct: 13, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "18.06.2025", + }, + }, + { + date: "18.06.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjNGNtIXYn5iZ0QTLyFmYuATLtFGbuMTLhJ3cukTYwETLhxGcuMzNz0CbvpnLmJmMtUHaj5CMuAjMuIjL1IjL5YTMto3YhJDOlUzQlIXYnhSI", + value: + "!(garłacz-169.25.2.20.0.chu-2bf.zol-373.pla-10a9.sra-3.lam-0.bar-44f.gar-4cc)!", + result: { + word: "garłacz", + correct: 25, + position: 2, + incorrect: 20, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 47, + date: "18.06.2025", + }, + }, + { + date: "18.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2Y00ichdmL2MWLhJXduITYz0SZ6JnL2QTZtA3c35CMucTMuEjL1EjL5YTMto3YhJDOlUzQlIXYnhSI", + value: "!(garłacz-169.15.1.17.0.wsp-e46.rze-3a2.ura-c6.gar-4cc)!", + result: { + word: "garłacz", + correct: 15, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "18.06.2025", + }, + }, + { + date: "18.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYjRTLyF2ZuUTN3ETLyFmeuQGOx0CczFmLw4SOuAjL3EjL5YTMto3YhJDOlUzQlIXYnhSI", + value: "!(garłacz-169.17.0.9.0.asp-18d.zar-1755.gar-4cc)!", + result: { + word: "garłacz", + correct: 17, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "18.06.2025", + }, + }, + { + date: "18.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjNGNtIXYn5SN1cTMtIXY65SN1ITLq92duUjMx0iYl5CZkJTLjFmcuMTO4EWMtoncw5CMuMjMuEjL0IjL5YTMto3YhJDOlUzQlIXYnhSI", + value: + "!(garłacz-169.24.1.23.0.prz-1a893.rac-2dd.eb-125.woj-255.zar-1755.gar-4cc)!", + result: { + word: "garłacz", + correct: 24, + position: 1, + incorrect: 23, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 48, + date: "18.06.2025", + }, + }, + { + date: "18.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2Y00ich5iMxIWLhJ3ZuAzY00CajNjLh1yY1JnL1EmMtIWZ65iY10CZhpmL4MWMtAXYs5iMzMTMtMXe35CMuEjMuIjLxIjL5YTMto3YhJDOlUzQlIXYnhSI", + value: + "!(garłacz-169.21.2.21.0.wys-1332.lap-1c8.jad-5b.zeb-2a5.ruc-a.3ch-4c0.gra-b12.ar-4cc)!", + result: { + word: "garłacz", + correct: 21, + position: 2, + incorrect: 21, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 44, + date: "18.06.2025", + }, + }, + { + date: "18.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2Y00ichdmLzQmNx0SYsBnLjJWLhpHbuYWO00ybspnLw4iNuIjLzEjL5YTMto3YhJDOlUzQlIXYnhSI", + value: "!(garłacz-169.13.2.6.0.zlo-49f.lza-bc.pla-16d3.gar-4cc)!", + result: { + word: "garłacz", + correct: 13, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "18.06.2025", + }, + }, + { + date: "18.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2Y00ichdmL1UzNx0ichpnLlRmMx0ichtmLjVmMtIXY65CZxczMtoncw5CMuUTMuIjLzIjL5YTMto3YhJDOlUzQlIXYnhSI", + value: + "!(garłacz-169.23.2.15.0.prz-371d.zar-2ec.kar-12de.zar-1755.gar-4cc)!", + result: { + word: "garłacz", + correct: 23, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "18.06.2025", + }, + }, + { + date: "18.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2Y00ichdmLw0ydlJnLklDMx0SYsBnL2ITNtw2b65CMuETMuAjL1EjL5YTMto3YhJDOlUzQlIXYnhSI", + value: "!(garłacz-169.15.0.11.0.zol-526.pla-109d.rew-0.gar-4cc)!", + result: { + word: "garłacz", + correct: 15, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "18.06.2025", + }, + }, + { + date: "18.06.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2Y00ichdmL0QmMtw2b65SNyETLiVmcucDOx0SYyBnL2EmYtUWat5CMucTMuEjL4EjL5YTMto3YhJDOlUzQlIXYnhSI", + value: "!(garłacz-169.18.1.17.0.mie-ba6.pra-187.reb-125.zol-2d4.gar-4cc)!", + result: { + word: "garłacz", + correct: 18, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "18.06.2025", + }, + }, + { + date: "18.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYjRTLyF2ZuUmYx0Cb1RnLlRjMtwWaz5CZ5ATMtEGbw5CM3MTLhx2dugTOt8me65CMuITMuEjLzIjL5YTMto3YhJDOlUzQlIXYnhSI", + value: + "!(garłacz-169.23.1.12.0.zzo-98.wla-370.pla-109d.sil-24e.tul-1be.gar-4cc)!", + result: { + word: "garłacz", + correct: 23, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "18.06.2025", + }, + }, + { + date: "18.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjNGNtIXYn5SZiFTLsVHduUGNy0CbpNnLmRWYtEGbr5yYhJGNtQ2bw5CMuMTMuAjLyIjL5YTMto3YhJDOlUzQlIXYnhSI", + value: "!(garłacz-169.22.0.13.0.pod-4bac.kla-adf.sil-24e.tul-1be.gar-4cc)!", + result: { + word: "garłacz", + correct: 22, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "18.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/18-08-2025-diffle-difflepl-grywebowe-31-liter-w-6-slowach-large-green-circle-8-l" +] = [ + { + date: "18.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmMhFTLvB3cuQjMtw2Zt5SM44iYzYTLoN2MuEGOy0ickVnLzQzMx0Cb5dnLw4yMy4CMugjLwMjMtI3MCVyMDVCczhSI", + value: "!(spór-230.8.0.23.0.wyl-1343.udr-28a.3ch-63b.81.mgl-24.spo-1a2d)!", + result: { + word: "spór", + correct: 8, + position: 0, + incorrect: 23, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "18.08.2025", + }, + }, + { + date: "18.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkJTYx0ybw5COwUTLvJ3cuAjL24iMuYjLwMjMtI3MCVyMDVCczhSI", + value: "!(spór-230.6.2.6.0.sro-508.po-1a2d)!", + result: { + word: "spór", + correct: 6, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "18.08.2025", + }, + }, + { + date: "18.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkJTYx0ybw5yMzITMtIHduIzNz0CZhNnLyMzMx0yc5dnLw4yMx4SMugjLwMjMtI3MCVyMDVCczhSI", + value: "!(spór-230.8.1.13.0.wys-1332.sad-372.tr-1233.po-1a2d)!", + result: { + word: "spór", + correct: 8, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "18.08.2025", + }, + }, + { + date: "18.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZyEWMt8Gcz5iN0UWLwN3duAjL54CMugjLwMjMtI3MCVyMDVCczhSI", + value: "!(spór-230.8.0.9.0.wsp-e46.spo-1a2d)!", + result: { + word: "spór", + correct: 8, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "18.08.2025", + }, + }, + { + date: "18.08.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkJTYx0ybwNnLmJWZy0ybyBnL4kTLvpneuAjL54SMucjLwMjMtI3MCVyMDVCczhSI", + value: "!(spór-230.7.1.9.0.zzo-98.pro-2ebf.spo-1a2d)!", + result: { + word: "spór", + correct: 7, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "18.08.2025", + }, + }, + { + date: "18.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkJTYx0ybuITNh1SZw5iYycTLyR3cuYmYy0SdoNmLw4iNx4CMugjLwMjMtI3MCVyMDVCczhSI", + value: "!(spór-230.8.0.16.0.chu-2bf.str-72b.pe-a52.o-1a2d)!", + result: { + word: "spór", + correct: 8, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "18.08.2025", + }, + }, + { + date: "18.08.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZyEWMuITY4ETLvB3cuQGOx0CczFmLw4SMx4CMukjLwMjMtI3MCVyMDVCczhSI", + value: "!(spór-230.9.0.11.0.asp-18d.spo-18a2.1a2d)!", + result: { + word: "spór", + correct: 9, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "18.08.2025", + }, + }, + { + date: "18.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmMhFTLvB3cuQWM3MTL6JHcuAjL54SMuYjLwMjMtI3MCVyMDVCczhSI", + value: "!(spór-230.6.1.9.0.prz-371d.spo-1a2d)!", + result: { + word: "spór", + correct: 6, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "18.08.2025", + }, + }, + { + date: "18.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkJTYx0ybwNnL3gzMt8mc35CO50yb6pnLw4SMx4SMuYjLwMjMtI3MCVyMDVCczhSI", + value: "!(spór-230.6.1.11.0.zzo-98.wro-387.spo-1a2d)!", + result: { + word: "spór", + correct: 6, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "18.08.2025", + }, + }, + { + date: "18.08.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkJTYx0ybwNnL3MzMx0SZyBnL0MzMx0Cb5dnLw4SMx4CMuYjLwMjMtI3MCVyMDVCczhSI", + value: "!(spór-230.6.0.11.0.wyl-1334.pre-1337.spo-1a2d)!", + result: { + word: "spór", + correct: 6, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "18.08.2025", + }, + }, + { + date: "18.08.2025", + nick: "motokate", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmMhFTLv5SYjNWLyB3cuAjL44SMucjLwMjMtI3MCVyMDVCczhSI", + value: "!(spór-230.7.1.8.0.spr-cca.o-1a2d)!", + result: { + word: "spór", + correct: 7, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "18.08.2025", + }, + }, + { + date: "18.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZyEWMt8Gcz5yYwcTLs9meuQmMz0CdlBnLwUTLoN2MugDM30Cbp1mLx4SNx4CMuYjLwMjMtI3MCVyMDVCczhSI", + value: "!(spór-230.6.0.15.1.mil-708.3ch-50.pet-32d.zol-70c.spo-1a2d)!", + result: { + word: "spór", + correct: 6, + position: 0, + incorrect: 15, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 21, + date: "18.08.2025", + }, + }, + { + date: "18.08.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkJTYx0ybucTYj1icuQjZh1CbuADZh1SZwNnL2EmYtUWat5CMuIjMuEjLyEjLwMjMtI3MCVyMDVCczhSI", + value: "!(spór-230.12.1.22.0.mie-ba6.spe-ad0.l-af4.r-ca7.o-1a2d)!", + result: { + word: "spór", + correct: 12, + position: 1, + incorrect: 22, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "18.08.2025", + }, + }, + { + date: "18.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZyEWMt8Gcz5SOzcTLq9GcuYjM10CbvpnLw4iMx4CMucjLwMjMtI3MCVyMDVCczhSI", + value: "!(spór-230.7.0.12.0.zol-526.poj-739.spo-1a2d)!", + result: { + word: "spór", + correct: 7, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "18.08.2025", + }, + }, + { + date: "18.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZyEWMt8Gcz5yM5gTYx0ieyBnLw4SMx4CMuYjLwMjMtI3MCVyMDVCczhSI", + value: "!(spór-230.6.0.11.0.prz-1a893.spo-1a2d)!", + result: { + word: "spór", + correct: 6, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "18.08.2025", + }, + }, + { + date: "18.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkJTYx0ybwNnL4kTLvpneuAjL34CMuUjLwMjMtI3MCVyMDVCczhSI", + value: "!(spór-230.5.0.7.0.zzo-98.spo-1a2d)!", + result: { + word: "spór", + correct: 5, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 12, + date: "18.08.2025", + }, + }, + { + date: "18.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZyEWMt8Gcz5SZ3QTLwN3duQzY00CczVnLjFmY00CZvBnLw4iNx4CMukjLwMjMtI3MCVyMDVCczhSI", + value: "!(spór-230.9.0.16.0.pod-4bac.usp-4c4.wsp-47e.spo-1a2d)!", + result: { + word: "spór", + correct: 9, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "18.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/20-05-2025-diffle-difflepl-grywebowe-25-liter-w-4-slowach-large-green-circle" +] = [ + { + date: "20.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzQDZx0ydvBnL2ITMtcHdv5iY2ETL392cuMDNzETLsl3duAjLzEjLy4CMx4CM0ETLkNjQlMzQlc3bwhSI", + value: "!(powód-140.10.2.13.0.wyl-1343.sow-16b.otw-126.pow-1d43)!", + result: { + word: "powód", + correct: 10, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "20.05.2025", + }, + }, + { + date: "20.05.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDNkFjLkVDZx0ydvBnL0UDZtM3br5CMukjLx4SMx4CM0ETLkNjQlMzQlc3bwhSI", + value: "!(powód-140.11.1.9.0.kos-d54.pow-1d5d.1d43)!", + result: { + word: "powód", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "20.05.2025", + }, + }, + { + date: "20.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDNkFTL39GcuYDNl1CczdnLw4COuIjL44CM0ETLkNjQlMzQlc3bwhSI", + value: "!(powód-140.8.2.8.0.wsp-e46.pow-1d43)!", + result: { + word: "powód", + correct: 8, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "20.05.2025", + }, + }, + { + date: "20.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM0QWMtc3bw5SNhlTL39GZuAjZ10CajNjL3cDZt8Gaj5CZjVTLoN2MukTZz0ybsdnLmNWMtoXYq5yM0EWL6VmYuAjLyIjLy4CNx4CM0ETLkNjQlMzQlc3bwhSI", + value: + "!(powód-140.14.2.22.0.bez-a43.jaz-1cf.wlo-3e9.3ch-5cd.cho-d77.3ch-5f0.dow-9a5.pow-1d43)!", + result: { + word: "powód", + correct: 14, + position: 2, + incorrect: 22, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 38, + date: "20.05.2025", + }, + }, + { + date: "20.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzQDZx0ydukDNwETLi5CO2kTMtsmL5QjZt02bw5CZ4ETLwNXYuAjL5EjLw4SNx4CM0ETLkNjQlMzQlc3bwhSI", + value: "!(powód-140.15.0.19.0.asp-18d.pom-f49.k-1968.b-1049.w-1d43)!", + result: { + word: "powód", + correct: 15, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "20.05.2025", + }, + }, + { + date: "20.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDNkFTL39GcuYmYy0SdoNmLw4COuAjL34CM0ETLkNjQlMzQlc3bwhSI", + value: "!(powód-140.7.0.8.0.chu-2bf.pow-1d43)!", + result: { + word: "powód", + correct: 7, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "20.05.2025", + }, + }, + { + date: "20.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM0QWMucTNkFTL39mLzkDOhFTL6JHcuAjLzEjLw4SMx4CM0ETLkNjQlMzQlc3bwhSI", + value: "!(powód-140.11.0.13.0.prz-1a893.ow-1d57.1d43)!", + result: { + word: "powód", + correct: 11, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "20.05.2025", + }, + }, + { + date: "20.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzQDZx0yduUzY40CcvBnLlV2MtI2bk5iYxUTLsVmeuATL39WbuIzMzETLzl3duAjL4EjLx4iNx4CM0ETLkNjQlMzQlc3bwhSI", + value: + "!(powód-140.16.1.18.0.wys-1332.mow-0.zel-51b.dob-3ee.pop-8c5.w-1d43)!", + result: { + word: "powód", + correct: 16, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "20.05.2025", + }, + }, + { + date: "20.05.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM0QWMtcnLjJWY10ievBnLw4COuAjL44CM0ETLkNjQlMzQlc3bwhSI", + value: "!(powód-140.8.0.8.0.poz-5abc.w-1d43)!", + result: { + word: "powód", + correct: 8, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "20.05.2025", + }, + }, + { + date: "20.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDNkFTL39mL4gjMx0SYyBnLyImMt82av5iN50ibvpnL2kjMtMXZn5iZ5QTLvxmeuAjL2EjLw4SMx4CM0ETLkNjQlMzQlc3bwhSI", + value: + "!(powód-140.11.0.16.0.zlo-49f.ges-296.zon-96.oko-2b2.pra-1288.ow-1d43)!", + result: { + word: "powód", + correct: 11, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 27, + date: "20.05.2025", + }, + }, + { + date: "20.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDNkFTL35SN5cDNtw2buQWM3MTL6JHcuAjLyEjLz4CMx4CM0ETLkNjQlMzQlc3bwhSI", + value: "!(powód-140.10.3.12.0.prz-371d.ol-4795.w-1d43)!", + result: { + word: "powód", + correct: 10, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "20.05.2025", + }, + }, + { + date: "20.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDNkFTL39GcuATZt82dn5SZ50yb0dnL4kTLvpneuAjLzEjLw4SMx4CM0ETLkNjQlMzQlc3bwhSI", + value: "!(powód-140.11.0.13.0.zzo-98.wto-9e.gwo-e0.pow-1d43)!", + result: { + word: "powód", + correct: 11, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "20.05.2025", + }, + }, + { + date: "20.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM0QWMucTNkFTL35SYxUjMtwmLyAzMtQ2bw5SO0ITLk9WbuAjL3EjLw4COx4CM0ETLkNjQlMzQlc3bwhSI", + value: "!(powód-140.18.0.17.0.mod-249.pod-302.l-251a.w-1d57.1d43)!", + result: { + word: "powód", + correct: 18, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "20.05.2025", + }, + }, + { + date: "20.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM0QWMukTZxITL39GcugTOt8me65CMukjLw4CMx4CM0ETLkNjQlMzQlc3bwhSI", + value: "!(powód-140.10.0.9.0.zzo-98.pow-21e9.1d43)!", + result: { + word: "powód", + correct: 10, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "20.05.2025", + }, + }, + { + date: "20.05.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzQDZx4yN1QWMtcnLwE2M40CZuEDMlFTLj9GcuAjLzEjLx4SNx4CM0ETLkNjQlMzQlc3bwhSI", + value: "!(powód-140.15.1.13.0.poc-1e01.d-83a0.w-1d57.1d43)!", + result: { + word: "powód", + correct: 15, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "20.05.2025", + }, + }, + { + date: "20.05.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzQDZx4yN1QWMtc3bw5iNhJWLllWbuAjLzEjLx4SMx4CM0ETLkNjQlMzQlc3bwhSI", + value: "!(powód-140.11.1.13.0.mie-ba6.pow-1d57.1d43)!", + result: { + word: "powód", + correct: 11, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "20.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/20-08-2025-diffle-difflepl-grywebowe-36-liter-w-5-slowach-large-green-circle" +] = [ + { + date: "20.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjMuIjMt0Wdm5CZyMTLsh2YuEWMyETLyFWbuQWZ50ycvtmLw4iMx4SMuMjMuIzMy0SYs9mch1WdmhSI", + value: "!(fumarola-232.23.1.12.0.kos-9ed.mar-121a.chl-32d.fum-22.23)!", + result: { + word: "fumarola", + correct: 23, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "20.08.2025", + }, + }, + { + date: "20.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMy0Sb1ZmLw0Sb1RmLw0Sb1pmLhVGNtIXY35CM40ybyFmLlBDMx0ycvBnLw4CNx4CNuQjMuIzMy0SYs9mch1WdmhSI", + value: + "!(fumarola-232.24.4.14.0.pos-100e.aro-80.war-4ea.jum-0.dum-0.fum-23)!", + result: { + word: "fumarola", + correct: 24, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 42, + date: "20.08.2025", + }, + }, + { + date: "20.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMy0Sb15SO5ITLhJnZuU2MtUXbh5CMtIWds5SN5ITL1h2YuQTY10ieyRXZp5mLw4iNx4yNuAjMuIzMy0SYs9mch1WdmhSI", + value: + "!(fumarola-232.20.7.16.0.nietrz-5a4.chu-295.lub-0.amu-3e.fra-299.um-23)!", + result: { + word: "fumarola", + correct: 20, + position: 7, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "20.08.2025", + }, + }, + { + date: "20.08.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjMt0Wdm5CMt0Wdz5SZz0SdtFmLw0CbvJnLiVWNt8mcn5SN50ybyJmLhRmMy0yavBnLw4yMx4iMuYjMuIzMy0SYs9mch1WdmhSI", + value: + "!(fumarola-232.26.2.13.0.pok-22da.bro-95.gro-5eb.rol-0.amu-3e.sum-0.fum-23)!", + result: { + word: "fumarola", + correct: 26, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "20.08.2025", + }, + }, + { + date: "20.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzITLt5CMtIXduATLtFmZuMmN50ichJmLjRWLnFGcukTMtIXdh5SOmJTLzFGbuYmYy0SdoNmLw4iNx4CNuEzMuIzMy0SYs9mch1WdmhSI", + value: + "!(fumarola-232.31.4.16.0.chu-2bf.las-2f9.aur-19.pag-dc.bar-96c.fam-0.ur-0.m-23)!", + result: { + word: "fumarola", + correct: 31, + position: 4, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 51, + date: "20.08.2025", + }, + }, + { + date: "20.08.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjMt0mL4czMtIXdm5CMwgTLyFGduIWN3ETLyF2auQmM00icwNnLw4yMx4SMuQjMuIzMy0SYs9mch1WdmhSI", + value: "!(fumarola-232.24.1.13.0.spr-42d.kar-175b.tar-800.fur-378.m-23)!", + result: { + word: "fumarola", + correct: 24, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "20.08.2025", + }, + }, + { + date: "20.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMy0Sb15SOxETLvxmZukjZ10CajNjLjZDOuATN00icv5CNwETLvxmZuIDNuYWYz0CajNjLx0yYvJnLlRTMt8mc15yNyITLzVncuMmNh1SYydmLw4iNx4SOuMzMuIzMy0SYs9mch1WdmhSI", + value: + "!(fumarola-232.33.9.16.0.gra-a6c.rus-227.uro-14e.roc-1.3ch-3af.42.flo-104.or-450.86c.3ch-5f9.flo-119.um-23)!", + result: { + word: "fumarola", + correct: 33, + position: 9, + incorrect: 16, + knownIncorrect: 0, + totalWords: 12, + totalLetters: 58, + date: "20.08.2025", + }, + }, + { + date: "20.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMy0Sb1ZmL3kTMtg2Yz4CMtYWdt5COiFTL1J3ZuUGNx0ybyVnL3QjMto2b35yM5gTYx0ieyBnLw4yNx4iNuIjMuIzMy0SYs9mch1WdmhSI", + value: + "!(fumarola-232.22.6.17.0.prz-1a893.woj-247.uro-14e.gru-1b8.muf-0.3ch-197.fum-23)!", + result: { + word: "fumarola", + correct: 22, + position: 6, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "20.08.2025", + }, + }, + { + date: "20.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzITLtVnZuYWNx0SYtVnLzkTOtwWYr5iZkVWLyFWbuQjZx0CZ5dnLx4CMx4iMuIjMuIzMy0SYs9mch1WdmhSI", + value: "!(fumarola-232.22.2.10.1.wyd-1f4.mar-edf.kal-993.uma-15f.fum-23)!", + result: { + word: "fumarola", + correct: 22, + position: 2, + incorrect: 10, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 34, + date: "20.08.2025", + }, + }, + { + date: "20.08.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMy0Sb1ZmLw0Cc1RmLxgTLvJ3ZuYTYi1SZp1mLw4SNx4SMuUTMuIzMy0SYs9mch1WdmhSI", + value: "!(fumarola-232.15.1.15.0.mie-ba6.gro-81.dup-0.fum-23)!", + result: { + word: "fumarola", + correct: 15, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "20.08.2025", + }, + }, + { + date: "20.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMy4CNi1Sb15CMt0mL0cjMtIXYm5CNygTMtIXYw5iYlFTLtFmcukDNy0CZv1mLw4SMx4iNugjMuIzMy0SYs9mch1WdmhSI", + value: + "!(fumarola-232.28.6.11.0.mod-249.ram-1eb.par-1824.far-274.m-0.um-b4.23)!", + result: { + word: "fumarola", + correct: 28, + position: 6, + incorrect: 11, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "20.08.2025", + }, + }, + { + date: "20.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzITLtVnZugTZy0Cb1JmL3ITLrVXZuAjL54SMucTMuIzMy0SYs9mch1WdmhSI", + value: "!(fumarola-232.17.1.9.0.euk-27.bul-2e8.fum-23)!", + result: { + word: "fumarola", + correct: 17, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "20.08.2025", + }, + }, + { + date: "20.08.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjMt0mLx0ia15yN5cTLhJnZuUWY00yboNmL1UjNtw2bk5COxQTLs92duQzNx0ych5CN40CbvZmLw4iMx4iMuQzMuIzMy0SYs9mch1WdmhSI", + value: + "!(fumarola-232.34.2.12.0.fol-84.as-174.wol-418.dol-655.cho-4ae.fra-797.uj-1.m-23)!", + result: { + word: "fumarola", + correct: 34, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 48, + date: "20.08.2025", + }, + }, + { + date: "20.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzITLtVnZuATLtV3YuAzM30ichdmLkhjMtIWbh5iYlFTLtFmcuYTOx0icv1mLhFjM10ievBnLw4CNx4CNuYjMuIzMy0SYs9mch1WdmhSI", + value: + "!(fumarola-232.26.4.14.0.poz-521a.mor-196.ram-1eb.amb-28d.gar-730.cum-0.fum-23)!", + result: { + word: "fumarola", + correct: 26, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 44, + date: "20.08.2025", + }, + }, + { + date: "20.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzIjLyITLtVnZuI2YtwWdi5SMjFTLtVHauQjY20SY3tmLw4CNx4SNuIjMuIzMy0SYs9mch1WdmhSI", + value: "!(fumarola-232.22.5.14.0.kwa-6b4.hum-1c1.bul-cb.fum-22.23)!", + result: { + word: "fumarola", + correct: 22, + position: 5, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "20.08.2025", + }, + }, + { + date: "20.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMy0Sb1ZmLkFWLh1WduQTMi1ich1mL40SboNmLwITLuVHbuMDOz0ich1mL2MmMx0ichtmLhFzNz0ieyBnLw4iNx4yMuIzMuIzMy0SYs9mch1WdmhSI", + value: + "!(fumarola-232.32.3.16.0.prz-371a.kar-12c6.mar-383.lun-20.chm-8.mar-b14.uma-ad.fum-23)!", + result: { + word: "fumarola", + correct: 32, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 51, + date: "20.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/21-08-2025-diffle-difflepl-grywebowe-15-liter-w-2-slowach-large-green-circle-8-l" +] = [ + { + date: "21.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkJzYx0yahpnLkVWOtM3br5CMuUjLy4COuMzMy0ibvtWY6hSI", + value: "!(zakon-233.8.2.5.0.kos-9ed.zak-1c2d)!", + result: { + word: "zakon", + correct: 8, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "21.08.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZyMWMtsWY65yYhhTLhB3cuUWYh1SeyRnLw4CMx4SMuATMuMzMy0ibvtWY6hSI", + value: "!(zakon-233.10.1.10.0.try-aae.spa-8ac.zak-1c2d)!", + result: { + word: "zakon", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + }, + }, + { + date: "21.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZyMWMtsWY65CNhVTL6JHdllmbuAjLwEjLx4SOuMzMy0ibvtWY6hSI", + value: "!(zakon-233.9.1.10.0.nietrz-5a4.zak-1c2d)!", + result: { + word: "zakon", + correct: 9, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "21.08.2025", + }, + }, + { + date: "21.08.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZyMWMtsWY65SYkJjMts2bw5CMuYjLy4COuMzMy0ibvtWY6hSI", + value: "!(zakon-233.8.2.6.0.pok-22da.zak-1c2d)!", + result: { + word: "zakon", + correct: 8, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "21.08.2025", + }, + }, + { + date: "21.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkJzYx0yauUWY3ETLjFmeuAjLwEjLw4SOuMzMy0ibvtWY6hSI", + value: "!(zakon-233.9.0.10.0.zac-17ae.k-1c2d)!", + result: { + word: "zakon", + correct: 9, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "21.08.2025", + }, + }, + { + date: "21.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmMjFTLr5yNlFTMtIWY65iZiJTL1h2YuAjL54iMuETMuMzMy0ibvtWY6hSI", + value: "!(zakon-233.11.2.9.0.chu-2bf.zab-11e7.k-1c2d)!", + result: { + word: "zakon", + correct: 11, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "21.08.2025", + }, + }, + { + date: "21.08.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkJzYx0yaucTZxETLiFmeuQmM00icwNnLw4SMx4SMuITMuMzMy0ibvtWY6hSI", + value: "!(zakon-233.12.1.11.0.spr-42d.zab-11e7.k-1c2d)!", + result: { + word: "zakon", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "21.08.2025", + }, + }, + { + date: "21.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkJzYx0yauI2M0ITLwFmeuQzYtoXY35yMy0ybtFmL0UTLjFGbuMmNh1SYydmLw4SMx4SMuAjMuMzMy0ibvtWY6hSI", + value: + "!(zakon-233.20.1.11.0.gra-a6c.lac-54.amo-23.waz-c4.zap-243b.k-1c2d)!", + result: { + word: "zakon", + correct: 20, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "21.08.2025", + }, + }, + { + date: "21.08.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZyMWMtsWY65iYwMTMtQWYu5CMuYjLy4COuMzMy0ibvtWY6hSI", + value: "!(zakon-233.8.2.6.0.nad-130b.zak-1c2d)!", + result: { + word: "zakon", + correct: 8, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "21.08.2025", + }, + }, + { + date: "21.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmMjFTLr5yNlFTMtIWY65yM5gTYx0ieyBnLw4yMx4SMuETMuMzMy0ibvtWY6hSI", + value: "!(zakon-233.11.1.13.0.prz-1a893.zab-11e7.k-1c2d)!", + result: { + word: "zakon", + correct: 11, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "21.08.2025", + }, + }, + { + date: "21.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmMjFTLr5SYwIWMtMWY65CNmFTLkl3duAjL44SMuATMuMzMy0ibvtWY6hSI", + value: "!(zakon-233.10.1.8.0.wyd-1f4.zac-1b0a.k-1c2d)!", + result: { + word: "zakon", + correct: 10, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "21.08.2025", + }, + }, + { + date: "21.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmMjFTLr5yNlFTMtImL5EGMx0yZhpnLhFzNz0ieyBnLw4CNx4CMuUTMuMzMy0ibvtWY6hSI", + value: "!(zakon-233.15.0.14.0.prz-371a.zag-10a9.b-11e7.k-1c2d)!", + result: { + word: "zakon", + correct: 15, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "21.08.2025", + }, + }, + { + date: "21.08.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkJzYx0yahpnL2EmYtUWat5CMukjLy4COuMzMy0ibvtWY6hSI", + value: "!(zakon-233.8.2.9.0.mie-ba6.zak-1c2d)!", + result: { + word: "zakon", + correct: 8, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "21.08.2025", + }, + }, + { + date: "21.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZyMWMtsWY65CNiZTLhd3auAjLwEjLy4COuMzMy0ibvtWY6hSI", + value: "!(zakon-233.8.2.10.0.kwa-6b4.zak-1c2d)!", + result: { + word: "zakon", + correct: 8, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "21.08.2025", + }, + }, + { + date: "21.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZyMWMtsmLiRDMx0yZucTZxETLiFmeukDNy0CZv1mLw4iMx4iMuUTMuMzMy0ibvtWY6hSI", + value: "!(zakon-233.15.2.12.0.mod-249.zab-11e7.g-104b.k-1c2d)!", + result: { + word: "zakon", + correct: 15, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "21.08.2025", + }, + }, + { + date: "21.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkJzYx0yahpnL1kjMtEmbh5yNy0ya1VmLw4CMx4SMuITMuMzMy0ibvtWY6hSI", + value: "!(zakon-233.12.1.10.0.euk-27.ana-295.zak-1c2d)!", + result: { + word: "zakon", + correct: 12, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "21.08.2025", + }, + }, + { + date: "21.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZyMWMtsWY65SYxITNto3bw5CMuUjLy4COuMzMy0ibvtWY6hSI", + value: "!(zakon-233.8.2.5.0.poz-521a.zak-1c2d)!", + result: { + word: "zakon", + correct: 8, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "21.08.2025", + }, + }, + { + date: "21.08.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkJzYx0yahpnL2ITMtM3ah5SZjNTLht2bucTZh1ibhBnLw4CMx4CNuMTMuMzMy0ibvtWY6hSI", + value: "!(zakon-233.13.4.10.0.pan-ae7.oka-3ce.aks-126.zak-1c2d)!", + result: { + word: "zakon", + correct: 13, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "21.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/23-05-2025-flag-pl-diffle-difflepl-grywebowe-21-liter-w-2-slowach-large-green-ci" +] = [ + { + date: "23.05.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjYzETLpB3cuYTYi1SZp1mLw4CMx4SMuATMuMDNx0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-143.10.1.10.0.mie-ba6.spi-13b5)!", + result: { + word: "śpiewać", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "23.05.2025", + }, + }, + { + date: "23.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1I2Mx0Saw5iMkNTLpN2cuUTNy0SZsdmLw4SMx4CMuQTMuMDNx0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-143.14.0.11.0.gle-255.sci-3d2.pi-13b5)!", + result: { + word: "śpiewać", + correct: 14, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "23.05.2025", + }, + }, + { + date: "23.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNiNTMtkGcuUGZxETLpd3cuMDNzETLsl3duAjL44iMuMTMuMDNx0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-143.13.2.8.0.wyl-1343.swi-11de.pi-13b5)!", + result: { + word: "śpiewać", + correct: 13, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "23.05.2025", + }, + }, + { + date: "23.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1I2Mx0SawNnL2QTZtA3c35CMukjLy4SOuMDNx0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-143.9.2.9.0.wsp-e46.spi-13b5)!", + result: { + word: "śpiewać", + correct: 9, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "23.05.2025", + }, + }, + { + date: "23.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjYzETLpB3cuQWM3MTL6JHcuAjL24SMuITMuMDNx0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-143.12.1.6.0.prz-371d.spi-13b5)!", + result: { + word: "śpiewać", + correct: 12, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "23.05.2025", + }, + }, + { + date: "23.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNiNTMtkGcz5CZ4ETLwNXYuAjL34iMuATMuMDNx0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-143.10.2.7.0.asp-18d.spi-13b5)!", + result: { + word: "śpiewać", + correct: 10, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "23.05.2025", + }, + }, + { + date: "23.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNiNTMtkGcz5yYtcXar5iZiJTL1h2YuAjL44SMuMTMuMDNx0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-143.13.1.8.0.chu-2bf.kiw-c.spi-13b5)!", + result: { + word: "śpiewać", + correct: 13, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "23.05.2025", + }, + }, + { + date: "23.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1I2Mx0SawNnL1UjMto2b35yM5gTYx0ieyBnLw4iNx4iMuITMuMDNx0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-143.12.2.16.0.prz-1a893.woj-255.spi-13b5)!", + result: { + word: "śpiewać", + correct: 12, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "23.05.2025", + }, + }, + { + date: "23.05.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1I2Mx4SN4MTMtkGcz5CN1QWLz92auAjL44CMuUTMuMDNx0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-143.15.0.8.0.kos-d54.spi-1385.13b5)!", + result: { + word: "śpiewać", + correct: 15, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "23.05.2025", + }, + }, + { + date: "23.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjYzETLpB3cuMWL3l2auIzMzETLzl3duAjL24SMuMTMuMDNx0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-143.13.1.6.0.wys-1332.kiw-c.spi-13b5)!", + result: { + word: "śpiewać", + correct: 13, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "23.05.2025", + }, + }, + { + date: "23.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNiNTMtkGcuEjMwETLpdnLlFGOtk2Yz5CO50yb6pnLw4iMx4CMucTMuMDNx0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-143.17.0.12.0.zzo-98.sci-8ae.wi-1021.pi-13b5)!", + result: { + word: "śpiewać", + correct: 17, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "23.05.2025", + }, + }, + { + date: "23.05.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1I2Mx0SawNnL2QTOx0Cc5dnLjJWY10ievBnLw4SMx4SMuMTMuMDNx0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-143.13.1.11.0.poz-5abc.wyp-1946.spi-13b5)!", + result: { + word: "śpiewać", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "23.05.2025", + }, + }, + { + date: "23.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjYzETLpBnLjVjMtUGbz5iZ5QTLvxmeuAjL24SMuITMuMDNx0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-143.12.1.6.0.zlo-49f.sle-25c.pi-13b5)!", + result: { + word: "śpiewać", + correct: 12, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "23.05.2025", + }, + }, + { + date: "23.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjYzETLpB3cuMDNiRTLk9GcuAjL24CMuATMuMDNx0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-143.10.0.6.0.pod-4b43.spi-13b5)!", + result: { + word: "śpiewać", + correct: 10, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "23.05.2025", + }, + }, + { + date: "23.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjYzETLpB3cuADZzETLllGcukDNy0CZv1mLw4CMx4iMuITMuMDNx0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-143.12.2.10.0.mod-249.pie-13d0.spi-13b5)!", + result: { + word: "śpiewać", + correct: 12, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "23.05.2025", + }, + }, + { + date: "23.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1I2Mx0SawNnLjJ2YtUWat5CNx0SY3JnLkJWMtIWYz5CO50yb6pnLw4SNx4CMukTMuMDNx0yN4UCNDVSY3VWawJUOlUzQlgSI", + value: "!(śpiewać-143.19.0.15.0.zzo-98.sab-1bd.rwa-14.mie-cbc.spi-13b5)!", + result: { + word: "śpiewać", + correct: 19, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "23.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/23-09-2025-diffle-difflepl-grywebowe-25-liter-w-4-slowach-large-green-circle-13-" +] = [ + { + date: "23.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM5UWLyVGcuATYx0SdoNmLw0yayVmLkVWOtM3br5CMuATMuIjLzEjL2YjMtE2a1JXZwhSI", + value: "!(peruka-266.13.2.10.0.kos-9ed.erk-0.chu-1a0.per-e90)!", + result: { + word: "peruka", + correct: 13, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "23.09.2025", + }, + }, + { + date: "23.09.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATOl1iclBnL0EWNtonc0VWau5CMuATMuEjLwEjL2YjMtE2a1JXZwhSI", + value: "!(peruka-266.10.1.10.0.nietrz-5a4.per-e90)!", + result: { + word: "peruka", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "23.09.2025", + }, + }, + { + date: "23.09.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwkTZtIXZuEGZyITLr9GcuAjL34SMukjL2YjMtE2a1JXZwhSI", + value: "!(peruka-266.9.1.7.0.pok-22da.er-e90)!", + result: { + word: "peruka", + correct: 9, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "23.09.2025", + }, + }, + { + date: "23.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATOl5COlVTLyVGcuQmM00icwNnLw4COuEjL0EjL2YjMtE2a1JXZwhSI", + value: "!(peruka-266.14.1.8.0.spr-42d.per-5e8.e90)!", + result: { + word: "peruka", + correct: 14, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "23.09.2025", + }, + }, + { + date: "23.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwkTZtIXZw5yNy0ya1VmLw4SNuEjLwEjL2YjMtE2a1JXZwhSI", + value: "!(peruka-266.10.1.5.0.euk-27.per-e90)!", + result: { + word: "peruka", + correct: 10, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "23.09.2025", + }, + }, + { + date: "23.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwkTZuIWZ10iclBnL2UDOtsWZk5CMuATMuIjLzEjL2YjMtE2a1JXZwhSI", + value: "!(peruka-266.13.2.10.0.dek-856.per-5eb.e90)!", + result: { + word: "peruka", + correct: 13, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "23.09.2025", + }, + }, + { + date: "23.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATOl1icl5yM5gTYx0ieyBnLw4COuEjLwEjL2YjMtE2a1JXZwhSI", + value: "!(peruka-266.10.1.8.0.prz-1a893.er-e90)!", + result: { + word: "peruka", + correct: 10, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "23.09.2025", + }, + }, + { + date: "23.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM5UWLyVGcukTMtIXdl5iZwQTLiFmL0ImNtE2dr5CMuMTMuYjL0EjL2YjMtE2a1JXZwhSI", + value: "!(peruka-266.14.6.13.0.kwa-6b4.ab-40f.eur-19.per-e90)!", + result: { + word: "peruka", + correct: 14, + position: 6, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "23.09.2025", + }, + }, + { + date: "23.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATOl5COlVTLyVmLhFzNz0ieyBnLw4yNuEjL0EjL2YjMtE2a1JXZwhSI", + value: "!(peruka-266.14.1.7.0.prz-371a.er-5e8.e90)!", + result: { + word: "peruka", + correct: 14, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "23.09.2025", + }, + }, + { + date: "23.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwkTZugTZ10iclBnLhVmMtA3br5SN1ETLoN2MuATLiVmcuQjZx0CZ5dnLw4SOuQjLxIjL2YjMtE2a1JXZwhSI", + value: "!(peruka-266.21.4.9.0.wyd-1f4.reb-0.3ch-155.kop-2ea.per-5e8.e90)!", + result: { + word: "peruka", + correct: 21, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "23.09.2025", + }, + }, + { + date: "23.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM5UWLyVGcuIzNx0SboNmL0gjMtIXZz5SMm1ybyVmLjZTYtEmcn5CMuATMuIjL5EjL2YjMtE2a1JXZwhSI", + value: "!(peruka-266.19.2.10.0.gra-a6c.ero-f1.ser-284.chm-172.per-e90)!", + result: { + word: "peruka", + correct: 19, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "23.09.2025", + }, + }, + { + date: "23.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM5UWLyVGcuEzYx0iclRmL2EmYtUWat5CMuITMuAjLzEjL2YjMtE2a1JXZwhSI", + value: "!(peruka-266.13.0.12.0.mie-ba6.der-1c1.per-e90)!", + result: { + word: "peruka", + correct: 13, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "23.09.2025", + }, + }, + { + date: "23.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwkTZtIXZw5SM30SeyVmLkhTLhVmcuEGOtQ2bt5CMuITMuIjL1EjL2YjMtE2a1JXZwhSI", + value: "!(peruka-266.15.2.12.0.mod-8a.rea-8d.ery-71.per-e90)!", + result: { + word: "peruka", + correct: 15, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "23.09.2025", + }, + }, + { + date: "23.09.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwkTZtIXZugDN10SZpBnLw4iNuAjLxEjL2YjMtE2a1JXZwhSI", + value: "!(peruka-266.11.0.6.0.pie-548.er-e90)!", + result: { + word: "peruka", + correct: 11, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "23.09.2025", + }, + }, + { + date: "23.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATOl5iYlVTLyVmLhFjM10ievBnLw4yNuEjL0EjL2YjMtE2a1JXZwhSI", + value: "!(peruka-266.14.1.7.0.poz-521a.er-5eb.e90)!", + result: { + word: "peruka", + correct: 14, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "23.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/24-07-2025-diffle-difflepl-grywebowe-22-litery-w-3-slowach-large-green-circle" +] = [ + { + date: "24.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwAjYx4CMhFWMtEmc05yM0MTMtwWe35CMugjLw4CNx4SNwITL3gTJ0MUJpNWN4UCNDVic0hSI", + value: "!(trącić-205.14.0.8.0.wyl-1343.tra-1aa0.1b00)!", + result: { + word: "trącić", + correct: 14, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "24.07.2025", + }, + }, + { + date: "24.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwAjYx4yYmlTMtEmc05CZxczMtoncw5CMukjLx4CNx4SNwITL3gTJ0MUJpNWN4UCNDVic0hSI", + value: "!(trącić-205.14.1.9.0.prz-371d.tra-19fc.1b00)!", + result: { + word: "trącić", + correct: 14, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "24.07.2025", + }, + }, + { + date: "24.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMwIWMtEmc05yMtI3Zp5iN0UWLwN3duAjLzEjLx4CMx4SNwITL3gTJ0MUJpNWN4UCNDVic0hSI", + value: "!(trącić-205.10.1.13.0.wsp-e46.igr-3.tra-1b00)!", + result: { + word: "trącić", + correct: 10, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "24.07.2025", + }, + }, + { + date: "24.07.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwAjYx0SYyRnLllTMtIHd35yMjZTLyR3cuIjYl1CdvBnLiRTZtUmcr5CMugjLx4iNy4SNwITL3gTJ0MUJpNWN4UCNDVic0hSI", + value: "!(trącić-205.26.1.8.0.kre-e4b.pot-eb2.str-6c3.wtr-19e.tra-1b00)!", + result: { + word: "trącić", + correct: 26, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "24.07.2025", + }, + }, + { + date: "24.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpADMiFTLhJHduMDM00ybydnLjBjMtkHaj5CZ4ETLwNXYuAjL1EjLw4SNx4SNwITL3gTJ0MUJpNWN4UCNDVic0hSI", + value: "!(trącić-205.15.0.15.0.asp-18d.chy-20c.wro-403.tra-1b00)!", + result: { + word: "trącić", + correct: 15, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "24.07.2025", + }, + }, + { + date: "24.07.2025", + nick: "wojtasg", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwAjYx0SYyRnLmZjNtMWYt5yM0MTMtwWe35CMugjLw4yMx4SNwITL3gTJ0MUJpNWN4UCNDVic0hSI", + value: "!(trącić-205.13.0.8.0.wyl-1343.mac-66f.tra-1b00)!", + result: { + word: "trącić", + correct: 13, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "24.07.2025", + }, + }, + { + date: "24.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpADMiFTLhJnL0MzMtQXZuEWYtwWd05iNllTLiFmeuIzMzETLzl3duAjL0EjLw4iNx4SNwITL3gTJ0MUJpNWN4UCNDVic0hSI", + value: "!(trącić-205.16.0.14.0.wys-1332.zab-9e6.tul-aa.et-334.ra-1b00)!", + result: { + word: "trącić", + correct: 16, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "24.07.2025", + }, + }, + { + date: "24.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwAjYx0SYuETNtknc05SN5ETLp1mLmNjNtI3az5iNl1ic35SZyIWLvxmeuAjL3EjLw4iMy4SNwITL3gTJ0MUJpNWN4UCNDVic0hSI", + value: + "!(trącić-205.22.0.17.0.zlo-b2e.wr-e6.skr-63f.mi-195.try-51.a-1b00)!", + result: { + word: "trącić", + correct: 22, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "24.07.2025", + }, + }, + { + date: "24.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwAjYx0SYyRnLzMmNtIHdz5iZ2YTLjFWbuEmNtk2Yz5iZiJTL1h2YuAjLxEjLx4SMy4SNwITL3gTJ0MUJpNWN4UCNDVic0hSI", + value: "!(trącić-205.21.1.11.0.chu-2bf.sci-6a.mac-66f.str-6c3.tra-1b00)!", + result: { + word: "trącić", + correct: 21, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "24.07.2025", + }, + }, + { + date: "24.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwAjYx0SYyRnL0ImNtE2dr5CMuETMuIjL44SNwITL3gTJ0MUJpNWN4UCNDVic0hSI", + value: "!(trącić-205.8.2.11.0.kwa-6b4.tra-1b00)!", + result: { + word: "trącić", + correct: 8, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "24.07.2025", + }, + }, + { + date: "24.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMwIWMtEmLyETMtUnc05SMz0SZ0JnLwUWMx0ic5dnL2MDNtUGbr5iZ5QTLvxmeuAjL0EjLx4SNx4SNwITL3gTJ0MUJpNWN4UCNDVic0hSI", + value: + "!(trącić-205.15.1.14.0.zlo-49f.kle-436.wyr-11e0.rte-31.tru-112.a-1b00)!", + result: { + word: "trącić", + correct: 15, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "24.07.2025", + }, + }, + { + date: "24.07.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwAjYx4yNwIWMtEmc05iNhJWLllWbuAjLyEjLy4iMx4SNwITL3gTJ0MUJpNWN4UCNDVic0hSI", + value: "!(trącić-205.12.2.12.0.mie-ba6.tra-1b07.1b00)!", + result: { + word: "trącić", + correct: 12, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "24.07.2025", + }, + }, + { + date: "24.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMwIWMtEmc05iMy0yY15mL1kTMtkWbz5iZhRjMtAXe35iZmhTL6FmeuAjL1EjLw4COx4SNwITL3gTJ0MUJpNWN4UCNDVic0hSI", + value: "!(trącić-205.18.0.15.0.zaz-8ff.wyp-24af.smi-195.nuc-22.tra-1b00)!", + result: { + word: "trącić", + correct: 18, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "24.07.2025", + }, + }, + { + date: "24.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMwIWMtEmc05yM5gTYx0ieyBnLw4SOuIjL44SNwITL3gTJ0MUJpNWN4UCNDVic0hSI", + value: "!(trącić-205.8.2.9.0.prz-1a893.tra-1b00)!", + result: { + word: "trącić", + correct: 8, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "24.07.2025", + }, + }, + { + date: "24.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMwIWMtEmc05iZ2YTLjFWbuIDZ30ycvBnL4kTLvpneuAjLxEjLx4CNx4SNwITL3gTJ0MUJpNWN4UCNDVic0hSI", + value: "!(trącić-205.14.1.11.0.zzo-98.pos-7d2.mac-66f.tra-1b00)!", + result: { + word: "trącić", + correct: 14, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "24.07.2025", + }, + }, + { + date: "24.07.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwAjYx0SYuETNtkncuETLpxGduUjYkFTL3FmeuAjLwEjLx4SNx4SNwITL3gTJ0MUJpNWN4UCNDVic0hSI", + value: "!(trącić-205.15.1.10.0.zaw-1db5.tli-1.ry-51.a-1b00)!", + result: { + word: "trącić", + correct: 15, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "24.07.2025", + }, + }, + { + date: "24.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpADMiFTLhJHduMzY20ic0NnLmZjNtMWYt5iZkFTLjF2duMWYiRTLk9GcuAjLxEjLw4iMy4SNwITL3gTJ0MUJpNWN4UCNDVic0hSI", + value: "!(trącić-205.22.0.11.0.pod-4bac.wac-1df.mac-66f.str-6c3.tra-1b00)!", + result: { + word: "trącić", + correct: 22, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "24.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/24-09-2025-diffle-difflepl-grywebowe-20-liter-w-2-slowach-8-2-10-0" +] = [ + { + date: "24.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0UWNt4WY65CNiZTLhd3auAjLwEjLy4COucjNy0yap5WY6hSI", + value: "!(zanik-267.8.2.10.0.kwa-6b4.zan-5e4)!", + result: { + word: "zanik", + correct: 8, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "24.09.2025", + }, + }, + { + date: "24.09.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0UWNt4WY65CNhVTL6JHdllmbuAjLwEjLy4COucjNy0yap5WY6hSI", + value: "!(zanik-267.8.2.10.0.nietrz-5a4.zan-5e4)!", + result: { + word: "zanik", + correct: 8, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "24.09.2025", + }, + }, + { + date: "24.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNlVTLuFmeuEzMtImek5iYllTLz92auAjL34iMuITMucjNy0yap5WY6hSI", + value: "!(zanik-267.12.2.7.0.kos-9eb.dzb-31.zan-5e4)!", + result: { + word: "zanik", + correct: 12, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "24.09.2025", + }, + }, + { + date: "24.09.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0UWNt4WY65SZlVTL6FmbuEGZyITLr9GcuAjL54SNuATMucjNy0yap5WY6hSI", + value: "!(zanik-267.10.5.9.0.pok-22da.naz-5ee.zan-5e4)!", + result: { + word: "zanik", + correct: 10, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "24.09.2025", + }, + }, + { + date: "24.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTZ10ibhpnLxIjNt4WYw5iMjNTLuF2cuMGOtIXYr5iN50CajlmLx4iNx4CNuUTMucjNy0yap5WY6hSI", + value: "!(zanik-267.15.4.16.1.ich-96.kar-8c.san-3c2.pan-621.zan-5e4)!", + result: { + word: "zanik", + correct: 15, + position: 4, + incorrect: 16, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 35, + date: "24.09.2025", + }, + }, + { + date: "24.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTZ10ibhpnLkJDNtIHcz5CMugjLw4SOucjNy0yap5WY6hSI", + value: "!(zanik-267.9.0.8.0.spr-42d.zan-5e4)!", + result: { + word: "zanik", + correct: 9, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "24.09.2025", + }, + }, + { + date: "24.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTZ10ibhpnLmJmMtUHaj5CMuYjLy4yNucjNy0yap5WY6hSI", + value: "!(zanik-267.7.2.6.0.chu-2bf.zan-5e4)!", + result: { + word: "zanik", + correct: 7, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "24.09.2025", + }, + }, + { + date: "24.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0UWNt4WY65SM1ETLhp3cuIjMtMWdt5yY20yd5RmLxIjNt4WYw5CO1ITLuFGduMmNh1SYydmLw4yNx4CMuIjMucjNy0yap5WY6hSI", + value: + "!(zanik-267.22.0.17.0.gra-a6c.tan-258.pan-621.dyw-6c.muc-22.sza-151.zan-5e4)!", + result: { + word: "zanik", + correct: 22, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "24.09.2025", + }, + }, + { + date: "24.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNlVTLuFmeucjMtsWdl5CMuYjLy4yNucjNy0yap5WY6hSI", + value: "!(zanik-267.7.2.6.0.euk-27.zan-5e4)!", + result: { + word: "zanik", + correct: 7, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "24.09.2025", + }, + }, + { + date: "24.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTZ10ibhpnL0YWMtQWe35CMuUjLx4COucjNy0yap5WY6hSI", + value: "!(zanik-267.8.1.5.0.wyd-1f4.zan-5e4)!", + result: { + word: "zanik", + correct: 8, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "24.09.2025", + }, + }, + { + date: "24.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNlVjL5cjNt4WY65yM5gTYx0ieyBnLw4SMx4SMuMTMucjNy0yap5WY6hSI", + value: "!(zanik-267.13.1.11.0.prz-1a893.zan-679.5e4)!", + result: { + word: "zanik", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "24.09.2025", + }, + }, + { + date: "24.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0UWNt4WY65SYxITNto3bw5CMuUjLx4SOucjNy0yap5WY6hSI", + value: "!(zanik-267.9.1.5.0.poz-521a.zan-5e4)!", + result: { + word: "zanik", + correct: 9, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "24.09.2025", + }, + }, + { + date: "24.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTZ10ibhpnL2EmYtUWat5CMukjLx4SOucjNy0yap5WY6hSI", + value: "!(zanik-267.9.1.9.0.mie-ba6.zan-5e4)!", + result: { + word: "zanik", + correct: 9, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "24.09.2025", + }, + }, + { + date: "24.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTZ10ibhpnL5QjMtQ2bt5CMugjLy4yNucjNy0yap5WY6hSI", + value: "!(zanik-267.7.2.8.0.mod-249.zan-5e4)!", + result: { + word: "zanik", + correct: 7, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "24.09.2025", + }, + }, + { + date: "24.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0UWNt4WY65SYxczMtoncw5CMugjLw4COucjNy0yap5WY6hSI", + value: "!(zanik-267.8.0.8.0.prz-371a.zan-5e4)!", + result: { + word: "zanik", + correct: 8, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "24.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/25-06-2025-flag-pl-diffle-difflepl-grywebowe-53-litery-w-7-slowach-large-green-c" +] = [ + { + date: "25.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM5YWLyt2cuEmY10icrVnLyIzMtkncn5iZ1ITL5JneuATL3lncuUDZ50SYyRnL4ITZtUWaw5CMuAjMuEjLyMjL2cTMtcDOlQzQlE2d5J3azhSI", + value: + "!(skrywać-176.32.1.20.0.pie-e28.tra-9d5.ryw-0.zry-25f.gry-322.ukr-5ba.skr-f92)!", + result: { + word: "skrywać", + correct: 32, + position: 1, + incorrect: 20, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 53, + date: "25.06.2025", + }, + }, + { + date: "25.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM5YWLyt2cuYTZ1ITLrl3duEmY10icrVnLjRWMtg2Yz4iMtcXei5yM0MTMtwWe35CMuITMuEjL3IjL2cTMtcDOlQzQlE2d5J3azhSI", + value: + "!(skrywać-176.27.1.12.0.wyl-1343.byw-2.3ch-1dc.ukr-5ba.wyk-25e6.skr-f92)!", + result: { + word: "skrywać", + correct: 27, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "25.06.2025", + }, + }, + { + date: "25.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKykjZtI3az5SYiVTLytWduUWNxITLrl3dukjNwETLr9GcugTOt8me65CMuUTMuIjLyIjL2cTMtcDOlQzQlE2d5J3azhSI", + value: "!(skrywać-176.22.2.15.0.zzo-98.pok-1069.wyk-215e.ukr-5ba.skr-f92)!", + result: { + word: "skrywać", + correct: 22, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "25.06.2025", + }, + }, + { + date: "25.06.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITOm1icrNnLhJWNtI3a15SN4MTMtIXe35CNmR2NtQ2bw5CMuATMuEjLwIjL2cTMtcDOlQzQlE2d5J3azhSI", + value: "!(skrywać-176.20.1.10.0.pod-7df4.wyr-1385.ukr-5ba.skr-f92)!", + result: { + word: "skrywać", + correct: 20, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "25.06.2025", + }, + }, + { + date: "25.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKykjZtI3auQWL3VnL4UTOx0SY0NnLkhTMtA3ch5CMuITMuEjL3EjL2cTMtcDOlQzQlE2d5J3azhSI", + value: "!(skrywać-176.17.1.12.0.asp-18d.sta-1958.uw-d.kr-f92)!", + result: { + word: "skrywać", + correct: 17, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "25.06.2025", + }, + }, + { + date: "25.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITOm1icrNnL5QTMtknc15COkRTLh1mL2QTMtUmZuEDM10ic0NnL2QTZtA3c35CMuUTMuMjL1IjL2cTMtcDOlQzQlE2d5J3azhSI", + value: + "!(skrywać-176.25.3.15.0.wsp-e46.str-501.fe-146.ma-4d8.ury-149.skr-f92)!", + result: { + word: "skrywać", + correct: 25, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "25.06.2025", + }, + }, + { + date: "25.06.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKykjZtI3az5iNlVjMtsWe35iY3ETLilncuQDMx0SY3RnLmJmMtUHaj5CMuMTMuMjLwIjL2cTMtcDOlQzQlE2d5J3azhSI", + value: "!(skrywać-176.20.3.13.0.chu-2bf.twa-104.ryb-17b.wyk-25e6.skr-f92)!", + result: { + word: "skrywać", + correct: 20, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "25.06.2025", + }, + }, + { + date: "25.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM5YWLyt2cuETO40icr9mLjJTMtknci5SZ0ETL5J3ZuMTO4EWMtoncw5CMuUTMuEjLzIjL2cTMtcDOlQzQlE2d5J3azhSI", + value: + "!(skrywać-176.23.1.15.0.prz-1a893.gry-14e.bry-12c.okr-891.skr-f92)!", + result: { + word: "skrywać", + correct: 23, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "25.06.2025", + }, + }, + { + date: "25.06.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKykjZtI3az5SYzATMtIXe35iMy0yY1JnLyImMtEmcn5SZzMTLw9GZucTZt8me65CMugTMuEjLwIjL2cTMtcDOlQzQlE2d5J3azhSI", + value: + "!(skrywać-176.20.1.18.0.zzo-e7.dop-33e.gra-2b2.ruc-22.wyr-103a.skr-f92)!", + result: { + word: "skrywać", + correct: 20, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "25.06.2025", + }, + }, + { + date: "25.06.2025", + nick: "Calypso_Cluster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITOm5CMkZmL0ATZuQTO1ETLyt2cuMTMx0SdyRnLyYzNtEGbr5CMuYTMuEjL2IjL2cTMtcDOlQzQlE2d5J3azhSI", + value: "!(skrywać-176.26.1.16.0.kla-762.tru-113.skr-1594.e04.fd0.f92)!", + result: { + word: "skrywać", + correct: 26, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "25.06.2025", + }, + }, + { + date: "25.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITOm5SNlJTLytmLzEDNtUneugzMtEmcz5SMz0SZ0JnL4AzNtwWat5CMuATMuAjL0IjL2cTMtcDOlQzQlE2d5J3azhSI", + value: "!(skrywać-176.24.0.10.0.mil-708.rte-31.sra-38.zu-413.kr-2e5.f92)!", + result: { + word: "skrywać", + correct: 24, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "25.06.2025", + }, + }, + { + date: "25.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKykjZtI3az5CZ3kTLrVmcuUWNy0SdsBnL5kjMto3c65iMzMTMtMXe35CMuMTMuIjL3EjL2cTMtcDOlQzQlE2d5J3azhSI", + value: "!(skrywać-176.17.2.13.0.wys-1332.zsz-299.plu-25e.rek-97d.skr-f92)!", + result: { + word: "skrywać", + correct: 17, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "25.06.2025", + }, + }, + { + date: "25.06.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITOm5SNlJTLy5CO50ydrNnL2EmYtUWat5CMuETMuIjLwIjL2cTMtcDOlQzQlE2d5J3azhSI", + value: "!(skrywać-176.20.2.11.0.mie-ba6.skw-98.r-2e5.f92)!", + result: { + word: "skrywać", + correct: 20, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "25.06.2025", + }, + }, + { + date: "25.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKykjZtI3az5SO0ETL5JXduIjMz0SeydmL1gzMx0ic5dnLw0ic5BnLlNmNtw2b65CMuYTMuEjL1IjL2cTMtcDOlQzQlE2d5J3azhSI", + value: + "!(skrywać-176.25.1.16.0.zol-6ce.pyr-0.wyr-1385.gry-322.ury-149.skr-f92)!", + result: { + word: "skrywać", + correct: 25, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 42, + date: "25.06.2025", + }, + }, + { + date: "25.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKykjZtInLlVGOx0ybrNnLkFzNz0ieyBnLw4SOuEjL3EjL2cTMtcDOlQzQlE2d5J3azhSI", + value: "!(skrywać-176.17.1.9.0.prz-371d.sko-18ee.r-f92)!", + result: { + word: "skrywać", + correct: 17, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "25.06.2025", + }, + }, + { + date: "25.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITOm1icrNnL2QzMtMXYr5CO50yb6pnLw4COuEjLzEjL2cTMtcDOlQzQlE2d5J3azhSI", + value: "!(skrywać-176.13.1.8.0.zzo-98.kas-346.skr-f92)!", + result: { + word: "skrywać", + correct: 13, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "25.06.2025", + }, + }, + { + date: "25.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITOm1icrNnL5EjYtMXe35yYhJGNtQ2bw5CMuATMuIjLxEjL2cTMtcDOlQzQlE2d5J3azhSI", + value: "!(skrywać-176.11.2.10.0.pod-4bac.wys-b19.skr-f92)!", + result: { + word: "skrywać", + correct: 11, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "25.06.2025", + }, + }, + { + date: "25.06.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKykjZtI3az5SNwMTLpd3YukDM10yalxmLw4SOuIjLxEjL2cTMtcDOlQzQlE2d5J3azhSI", + value: "!(skrywać-176.11.2.9.0.lek-509.cwi-305.skr-f92)!", + result: { + word: "skrywać", + correct: 11, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "25.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/25-09-2025-diffle-difflepl-grywebowe-19-liter-w-2-slowach-12-1-6-0" +] = [ + { + date: "25.09.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYkNTLpJmeuEGZyITLr9GcuAjL24SMuITMugjNy0Se6NmcvlmY6hSI", + value: "!(zbiorczy-268.12.1.6.0.pok-22da.zbi-3dc)!", + result: { + word: "zbiorczy", + correct: 12, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "25.09.2025", + }, + }, + { + date: "25.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGZz0SaipnL0cTLhp3cllmbuAjL44SMuITMugjNy0Se6NmcvlmY6hSI", + value: "!(zbiorczy-268.12.1.8.0.niesza-74.zbi-3dc)!", + result: { + word: "zbiorczy", + correct: 12, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "25.09.2025", + }, + }, + { + date: "25.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGZz0SaipnL1EWMt8Wai5COiNWLs9GcuYmYy0SdoNmLw4SMx4yMugTMugjNy0Se6NmcvlmY6hSI", + value: "!(zbiorczy-268.18.3.11.0.chu-2bf.pol-cb8.bio-1a5.zbi-3dc)!", + result: { + word: "zbiorczy", + correct: 18, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "25.09.2025", + }, + }, + { + date: "25.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYkNjLkNDNuQGN00SaipnL3ITLrVXZuAjL44SMuMjMugjNy0Se6NmcvlmY6hSI", + value: "!(zbiorczy-268.23.1.8.0.euk-27.zbi-44d.43d.3dc)!", + result: { + word: "zbiorczy", + correct: 23, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "25.09.2025", + }, + }, + { + date: "25.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGZz0SaipnLyEzYt8Gaj5iYmdDNto3bw5iY5YWLyR3cuQGZ3ETLppHZuMmNh1SYydmLw4iMx4yMuMjMugjNy0Se6NmcvlmY6hSI", + value: + "!(zbiorczy-268.23.3.12.0.gra-a6c.dzi-17dd.str-f9b.poz-47fb.cho-c12.zbi-3dc)!", + result: { + word: "zbiorczy", + correct: 23, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "25.09.2025", + }, + }, + { + date: "25.09.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjR2MtkmY65CO0UTLllGcuAjL34CMuITMugjNy0Se6NmcvlmY6hSI", + value: "!(zbiorczy-268.12.0.7.0.pie-548.zbi-3dc)!", + result: { + word: "zbiorczy", + correct: 12, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "25.09.2025", + }, + }, + { + date: "25.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjR2MtkmY65iMidTMtMWe35SO0ITLk9WbuAjL44CNuQTMugjNy0Se6NmcvlmY6hSI", + value: "!(zbiorczy-268.14.4.8.0.mod-249.wyc-17b2.zbi-3dc)!", + result: { + word: "zbiorczy", + correct: 14, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "25.09.2025", + }, + }, + { + date: "25.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGZz0SaipnL3EWMt8mej5COmFTLvJXbuEWNx0SaydmL5UWL6lncuQjZx0CZ5dnLw4SMx4yNuEjMugjNy0Se6NmcvlmY6hSI", + value: + "!(zbiorczy-268.21.7.11.0.wyd-1f4.ryz-e9.gri-15a.mro-1f8.czo-1a7.zbi-3dc)!", + result: { + word: "zbiorczy", + correct: 21, + position: 7, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "25.09.2025", + }, + }, + { + date: "25.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGZz0SaipnL0YjNtIGZv5SN30ybyJmL3QjMto2b35yM5gTYx0ieyBnLx4iNx4yMuQjMugjNy0Se6NmcvlmY6hSI", + value: + "!(zbiorczy-268.24.3.16.1.prz-1a893.woj-247.bro-75.odb-664.zbi-3dc)!", + result: { + word: "zbiorczy", + correct: 24, + position: 3, + incorrect: 16, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 43, + date: "25.09.2025", + }, + }, + { + date: "25.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYkNTLpJmeuYWNy0CZvJnLkZTL5JHcuYTYi1SZp1mLw4iMx4CNucTMugjNy0Se6NmcvlmY6hSI", + value: "!(zbiorczy-268.17.4.12.0.mie-ba6.pry-6d.rod-25f.zbi-3dc)!", + result: { + word: "zbiorczy", + correct: 17, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "25.09.2025", + }, + }, + { + date: "25.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjR2MtkmY65SMj1icpxmLhFzNz0ieyBnLw4SMx4SMuUTMugjNy0Se6NmcvlmY6hSI", + value: "!(zbiorczy-268.15.1.11.0.prz-371a.lir-c1.zbi-3dc)!", + result: { + word: "zbiorczy", + correct: 15, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "25.09.2025", + }, + }, + { + date: "25.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjR2MtkmY65CNiZTLhd3auAjL54iMuITMugjNy0Se6NmcvlmY6hSI", + value: "!(zbiorczy-268.12.2.9.0.kwa-6b4.zbi-3dc)!", + result: { + word: "zbiorczy", + correct: 12, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "25.09.2025", + }, + }, + { + date: "25.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGZz0Sai5iN3QWLpdneuEWMyUTL69GcuAjL44SMucTMugjNy0Se6NmcvlmY6hSI", + value: "!(zbiorczy-268.17.1.8.0.poz-521a.zwi-d76.bi-3dc)!", + result: { + word: "zbiorczy", + correct: 17, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "25.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/27-05-2025-diffle-difflepl-grywebowe-25-liter-w-3-slowach-large-green-circle" +] = [ + { + date: "27.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJjMtUGbh5CZi1ydhJmLiVWOtM3br5CMugjL14iMx4yN0ETLrlmYtVGbhhSI", + value: "!(alembik-147.12.5.8.0.kos-9eb.baw-bd.ale-22a)!", + result: { + word: "alembik", + correct: 12, + position: 5, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "27.05.2025", + }, + }, + { + date: "27.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYyITLlxWYuMTZt8GbuMDZ00SbhtmLkVTMtcWYt5SOlVTLwVGZuAjL3EjL34iNx4yN0ETLrlmYtVGbhhSI", + value: "!(alembik-147.16.7.17.0.dep-5e9.mag-15d.kam-4d3.lo-e3.ale-22a)!", + result: { + word: "alembik", + correct: 16, + position: 7, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "27.05.2025", + }, + }, + { + date: "27.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYyITLlxWYuETMtkWYn5CNhVTL6JHdllmbuAjLzEjL04iMx4yN0ETLrlmYtVGbhhSI", + value: "!(alembik-147.12.4.13.0.nietrz-5a4.gai-11.ale-22a)!", + result: { + word: "alembik", + correct: 12, + position: 4, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "27.05.2025", + }, + }, + { + date: "27.05.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmMy0SZsFmLhhTMtcWYt5SYkJjMts2bw5CMukjLz4SMx4yN0ETLrlmYtVGbhhSI", + value: "!(alembik-147.11.3.9.0.pok-22da.mag-18a.ale-22a)!", + result: { + word: "alembik", + correct: 11, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "27.05.2025", + }, + }, + { + date: "27.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYyITLlxWYuUjMtMXYk5CMtEWZ05yYkFTLlJnZuAjLzEjLy4CNx4yN0ETLrlmYtVGbhhSI", + value: "!(alembik-147.14.2.13.0.fre-1dc.tea-0.das-25.ale-22a)!", + result: { + word: "alembik", + correct: 14, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "27.05.2025", + }, + }, + { + date: "27.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJjMtUGbh5CNuUTLoNmMuIGZy4CZl1CajNjLiZWMtMXYt5SO50SbhJnLjlzNtQXYw5iZiJTL1h2YuAjL1EjL14CNy4yN0ETLrlmYtVGbhhSI", + value: + "!(alembik-147.24.5.15.0.chu-2bf.pat-79c.ram-99.mas-1fb.3ch-ed.2db.2ch-5.4.ale-22a)!", + result: { + word: "alembik", + correct: 24, + position: 5, + incorrect: 15, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 44, + date: "27.05.2025", + }, + }, + { + date: "27.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYyIjLwQTMtUGbh5iMtsWZs5CZyQTLyB3cuEjLxEjL04COx4yN0ETLrlmYtVGbhhSI", + value: "!(alembik-147.18.4.11.1.spr-42d.lek-2.ale-140.22a)!", + result: { + word: "alembik", + correct: 18, + position: 4, + incorrect: 11, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 33, + date: "27.05.2025", + }, + }, + { + date: "27.05.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmMy0SZsFmLzYTMtIWY05CN2gTMt42bw5CMucjL04iMx4yN0ETLrlmYtVGbhhSI", + value: "!(alembik-147.12.4.7.0.pon-1864.tab-163.ale-22a)!", + result: { + word: "alembik", + correct: 12, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "27.05.2025", + }, + }, + { + date: "27.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmMy0SZsFmLhFzNz0ieyBnLw4COuEjL54yN0ETLrlmYtVGbhhSI", + value: "!(alembik-147.9.1.8.0.prz-371a.ale-22a)!", + result: { + word: "alembik", + correct: 9, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "27.05.2025", + }, + }, + { + date: "27.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJjMtUGbh5iYz0CbhRmLzkDOhFTL6JHcuAjLwEjLz4CNx4yN0ETLrlmYtVGbhhSI", + value: "!(alembik-147.14.3.10.0.prz-1a893.dal-3b.ale-22a)!", + result: { + word: "alembik", + correct: 14, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "27.05.2025", + }, + }, + { + date: "27.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYyITLl5CMtIGbh5CMkFTLkVnYuIWZtQXYt5yY2EWLhJ3ZuAjLwEjLz4iNx4yN0ETLrlmYtVGbhhSI", + value: "!(alembik-147.16.3.10.0.gra-a6c.mat-eb.bud-1d0.alb-0.e-22a)!", + result: { + word: "alembik", + correct: 16, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "27.05.2025", + }, + }, + { + date: "27.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYyITLlxmLx0Sd0FmLxATNuI2Nz0CajNjLmljMtwWYw5CNmFTLkl3duAjLxEjLx4SMy4yN0ETLrlmYtVGbhhSI", + value: "!(alembik-147.21.1.11.0.wyd-1f4.pal-29f.3ch-37b.501.atu-1.le-22a)!", + result: { + word: "alembik", + correct: 21, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "27.05.2025", + }, + }, + { + date: "27.05.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYyIjLldjMtUGbh5iNhJWLllWbuAjLwEjLz4SNx4yN0ETLrlmYtVGbhhSI", + value: "!(alembik-147.15.3.10.0.mie-ba6.ale-27e.22a)!", + result: { + word: "alembik", + correct: 15, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "27.05.2025", + }, + }, + { + date: "27.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmMy0SZsFmLi1SYzBnLiRTMtEWb15SO0ITLk9WbuAjLyEjLy4SNx4yN0ETLrlmYtVGbhhSI", + value: "!(alembik-147.15.2.12.0.mod-249.uma-14b.psa-b.ale-22a)!", + result: { + word: "alembik", + correct: 15, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "27.05.2025", + }, + }, + { + date: "27.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmMy0SZsFmLxMTLzFmaucjMtsWdl5CMugjLz4iMx4yN0ETLrlmYtVGbhhSI", + value: "!(alembik-147.12.3.8.0.euk-27.jas-31.ale-22a)!", + result: { + word: "alembik", + correct: 12, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "27.05.2025", + }, + }, + { + date: "27.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJjMtUGbh5iNiFTLyFGauEWMyUTL69GcuAjLwEjLz4iMx4yN0ETLrlmYtVGbhhSI", + value: "!(alembik-147.12.3.10.0.poz-521a.har-1b6.ale-22a)!", + result: { + word: "alembik", + correct: 12, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "27.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/28-05-2025-diffle-difflepl-grywebowe-25-liter-w-4-slowach-large-green-circle" +] = [ + { + date: "28.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpETL35CMtQnLiFTMtEmez5iYllTLz92auAjL54CMuYTMugDNx0iYhdnezhSI", + value: "!(szwab-148.16.0.9.0.kos-9eb.sza-11b.t-0.w-1)!", + result: { + word: "szwab", + correct: 16, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "28.05.2025", + }, + }, + { + date: "28.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEjLwcTL3p3cuQTY10ieyRXZp5mLw4yMx4SMuITMugDNx0iYhdnezhSI", + value: "!(szwab-148.12.1.13.0.nietrz-5a4.szw-70.1)!", + result: { + word: "szwab", + correct: 12, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "28.05.2025", + }, + }, + { + date: "28.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMtcnLlVWOtQnez5SYzETLzVGcuATL6F2duYmYy0SdoNmLw4iNx4iMuQTMugDNx0iYhdnezhSI", + value: "!(szwab-148.14.2.16.0.chu-2bf.waz-0.pes-13a.szt-9ee.w-1)!", + result: { + word: "szwab", + correct: 14, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "28.05.2025", + }, + }, + { + date: "28.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMtcnez5iNlNTLyB3cllmbuAjLxEjLw4SOugDNx0iYhdnezhSI", + value: "!(szwab-148.9.0.11.0.niespr-3e6.szw-1)!", + result: { + word: "szwab", + correct: 9, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "28.05.2025", + }, + }, + { + date: "28.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKx4CMuEzNtcneuQmM00icwNnLw4CMx4SMuYTMugDNx0iYhdnezhSI", + value: "!(szwab-148.16.1.10.0.spr-42d.zw-71.0.1)!", + result: { + word: "szwab", + correct: 16, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "28.05.2025", + }, + }, + { + date: "28.05.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMtcnez5SO1YmMt42br5CMuUjLy4yNugDNx0iYhdnezhSI", + value: "!(szwab-148.7.2.5.0.kon-2f59.szw-1)!", + result: { + word: "szwab", + correct: 7, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "28.05.2025", + }, + }, + { + date: "28.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEjLxcTL3p3cuEWM3MTL6JHcuAjL54SMuITMugDNx0iYhdnezhSI", + value: "!(szwab-148.12.1.9.0.prz-371a.szw-71.1)!", + result: { + word: "szwab", + correct: 12, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "28.05.2025", + }, + }, + { + date: "28.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMtcnez5yNkZTMtMXY65yM5gTYx0ieyBnLw4CNx4SMuATMugDNx0iYhdnezhSI", + value: "!(szwab-148.10.1.14.0.prz-1a893.zas-16d7.szw-1)!", + result: { + word: "szwab", + correct: 10, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "28.05.2025", + }, + }, + { + date: "28.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKx0yd65CMtg2Yz5iYiFWLsFGcuMmNh1SYydmLw4SMx4CMuATMugDNx0iYhdnezhSI", + value: "!(szwab-148.10.0.11.0.gra-a6c.pal-abb.sch-0.zw-1)!", + result: { + word: "szwab", + correct: 10, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "28.05.2025", + }, + }, + { + date: "28.05.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpETL35yNldTL1p3cuATL6N3duYTYi1SZp1mLw4yMx4iMuUTMugDNx0iYhdnezhSI", + value: "!(szwab-148.15.2.13.0.mie-ba6.wsz-0.szu-7e7.w-1)!", + result: { + word: "szwab", + correct: 15, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "28.05.2025", + }, + }, + { + date: "28.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMuATL3p3cuMTMx0ychdnL3ITLrVXZuAjL54iMuITMugDNx0iYhdnezhSI", + value: "!(szwab-148.12.2.9.0.euk-27.was-113.szw-0.1)!", + result: { + word: "szwab", + correct: 12, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "28.05.2025", + }, + }, + { + date: "28.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKx0yd6NnL0YWMtQWe35CMuYjLx4yNugDNx0iYhdnezhSI", + value: "!(szwab-148.7.1.6.0.wyd-1f4.szw-1)!", + result: { + word: "szwab", + correct: 7, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "28.05.2025", + }, + }, + { + date: "28.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpETL35CMwMTLw5yN1ETLs5SMlZTL0p3cukDNy0CZv1mLw4yNx4CMuYTMugDNx0iYhdnezhSI", + value: "!(szwab-148.16.0.17.0.mod-249.szt-6e1.l-157.p-300.w-1)!", + result: { + word: "szwab", + correct: 16, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "28.05.2025", + }, + }, + { + date: "28.05.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKx4CMuEzNtcnez5CZ00ic3pnL2UWOx0CZ5dnLw4CNx4SMugTMugDNx0iYhdnezhSI", + value: "!(szwab-148.18.1.14.0.wyd-19e6.zwr-4d.szw-71.0.1)!", + result: { + word: "szwab", + correct: 18, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "28.05.2025", + }, + }, + { + date: "28.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKx0yduATL0p3cuEWMyUTL69GcuAjL44SMuETMugDNx0iYhdnezhSI", + value: "!(szwab-148.11.1.8.0.poz-521a.szt-0.w-1)!", + result: { + word: "szwab", + correct: 11, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "28.05.2025", + }, + }, + { + date: "28.05.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMtcnez5CMk1iY1tmLiFTLj5WZuAjL1EjLx4COugDNx0iYhdnezhSI", + value: "!(szwab-148.8.1.15.0.enc-1b.kub-d0.szw-1)!", + result: { + word: "szwab", + correct: 8, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "28.05.2025", + }, + }, + { + date: "28.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpETL35iYxETLhp3cuQjY20SY3tmLw4yMx4iMuETMugDNx0iYhdnezhSI", + value: "!(szwab-148.11.2.13.0.kwa-6b4.sza-11b.w-1)!", + result: { + word: "szwab", + correct: 11, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "28.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/29-09-2025-diffle-difflepl-grywebowe-24-litery-w-3-slowach-large-green-circle-19" +] = [ + { + date: "29.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzIDNx4SMxMTMtIXYuIWZ50ycvtmLw4CNuEjL5EjLycjMtwWZpNWatJXYrhSI", + value: "!(karmiciel-272.19.1.4.0.kos-9eb.ar-1311.1423)!", + result: { + word: "karmiciel", + correct: 19, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "29.09.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMyQTMtIXYr5SMk1iclFmLw4COuEjL0EjLycjMtwWZpNWatJXYrhSI", + value: "!(karmiciel-272.14.1.8.0.aer-d1.kar-1423)!", + result: { + word: "karmiciel", + correct: 14, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + }, + }, + { + date: "29.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjM0ETLyF2auQmNy0SZpNmLkJTLhxGcuYmYy0SdoNmLw4COuYjL5EjLycjMtwWZpNWatJXYrhSI", + value: "!(karmiciel-272.19.6.8.0.chu-2bf.pla-2d.cie-26d.kar-1423)!", + result: { + word: "karmiciel", + correct: 19, + position: 6, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "29.09.2025", + }, + }, + { + date: "29.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjM0EjL4EmZtIXYuMDZx0ybytmLw4COuEjL2EjLycjMtwWZpNWatJXYrhSI", + value: "!(karmiciel-272.16.1.8.0.kro-1d3.ar-fa8.1423)!", + result: { + word: "karmiciel", + correct: 16, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "29.09.2025", + }, + }, + { + date: "29.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMyQTMuYmMxEjLwYDMx0ichtmLkJDNtIHcz5CMuETMuIjLyIjLycjMtwWZpNWatJXYrhSI", + value: "!(karmiciel-272.22.2.11.0.spr-42d.kar-1060.112f.1423)!", + result: { + word: "karmiciel", + correct: 22, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "29.09.2025", + }, + }, + { + date: "29.09.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjM0EjLzQTOx4CNidTMucTNwIjL1IDMx0ichtmL3gTMtQXYy5SMuETMuIjLyMjLycjMtwWZpNWatJXYrhSI", + value: "!(karmiciel-272.32.2.11.1.rat-187.kar-1025.2057.17b4.1943.1423)!", + result: { + word: "karmiciel", + correct: 32, + position: 2, + incorrect: 11, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 45, + date: "29.09.2025", + }, + }, + { + date: "29.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMyQTMuEWN0EjL5I2MuADN5ETLyF2aucjMtsWdl5SMuATMuEjLwMjLycjMtwWZpNWatJXYrhSI", + value: "!(karmiciel-272.30.1.10.1.euk-27.kar-1940.3b9.145a.1423)!", + result: { + word: "karmiciel", + correct: 30, + position: 1, + incorrect: 10, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 41, + date: "29.09.2025", + }, + }, + { + date: "29.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjM0ETLyF2auU2Yy0yYyFmL0cjYtUWat5CM20SawVnLx0ydpJnLjZTYtEmcn5CMuITMuUjL2IjLycjMtwWZpNWatJXYrhSI", + value: + "!(karmiciel-272.26.5.12.0.gra-a6c.riw-1.upi-60.mie-b74.arc-2ce.kar-1423)!", + result: { + word: "karmiciel", + correct: 26, + position: 5, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "29.09.2025", + }, + }, + { + date: "29.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMyQTMtIXYuEWZj1SYy5CZxITLz92auMTO4EWMtoncw5CMuQTMuUjL5EjLycjMtwWZpNWatJXYrhSI", + value: "!(karmiciel-272.19.5.14.0.prz-1a893.kos-21d.ra-cea.ar-1423)!", + result: { + word: "karmiciel", + correct: 19, + position: 5, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 38, + date: "29.09.2025", + }, + }, + { + date: "29.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzIDNx4SN1QTMtIXYr5yMhZWLyFGcuQjZx0CZ5dnLw4yNuIjLyIjLycjMtwWZpNWatJXYrhSI", + value: "!(karmiciel-272.22.2.7.0.wyd-1f4.par-fa3.kar-1455.1423)!", + result: { + word: "karmiciel", + correct: 22, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "29.09.2025", + }, + }, + { + date: "29.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMyQTMtIXYr5SYt0Gaj5SZ5ETLtF2aukjMz0SZpdnLhFjM10ievBnLw4SOuQjL0IjLycjMtwWZpNWatJXYrhSI", + value: "!(karmiciel-272.24.4.9.0.poz-521a.wie-329.kam-19e.chm-a.kar-1423)!", + result: { + word: "karmiciel", + correct: 24, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "29.09.2025", + }, + }, + { + date: "29.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMyQTMtIXYr5yNm1SdyJmL2EmYtUWat5CMuATMuQjL0EjLycjMtwWZpNWatJXYrhSI", + value: "!(karmiciel-272.14.4.10.0.mie-ba6.bru-f7.kar-1423)!", + result: { + word: "karmiciel", + correct: 14, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "29.09.2025", + }, + }, + { + date: "29.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzIDNx0ichtmL50SZp1mL5QjL4kDNtg2Yz4yMldTLlJHcukDNy0CZv1mLw4SOucjLyIjLycjMtwWZpNWatJXYrhSI", + value: + "!(karmiciel-272.22.7.9.0.mod-249.pre-7e3.3ch-498.49.mie-9.kar-1423)!", + result: { + word: "karmiciel", + correct: 22, + position: 7, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "29.09.2025", + }, + }, + { + date: "29.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzIDNx4iN1QTMuAjNwETLyF2auYGNtkmch5SYxczMtoncw5CMuATMuMjL2IjLycjMtwWZpNWatJXYrhSI", + value: "!(karmiciel-272.26.3.10.0.prz-371a.ari-4f.kar-1060.1456.1423)!", + result: { + word: "karmiciel", + correct: 26, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "29.09.2025", + }, + }, + { + date: "29.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzIDNx4iMyQTMtIXYuQjY20SY3tmLw4COuEjLzIjLycjMtwWZpNWatJXYrhSI", + value: "!(karmiciel-272.23.1.8.0.kwa-6b4.ar-1422.1423)!", + result: { + word: "karmiciel", + correct: 23, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 32, + date: "29.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/30-08-2025-diffle-difflepl-grywebowe-26-liter-w-4-slowach-large-green-circle" +] = [ + { + date: "30.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNz4CMt4War5CM1ETLrlmbuMDNzETLsl3duAjL54yMuQTMuIDNy0iM4USNDVSYDJUJ1MUJk5WarhSI", + value: "!(kindżał-242.14.3.9.0.wyl-1343.nik-150.kin-0.37)!", + result: { + word: "kindżał", + correct: 14, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "30.08.2025", + }, + }, + { + date: "30.08.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3MjL4ETLul2auYjY0ETLpB3cugjN30ibh5iYkNWLhx2auYTYi1SZp1mLz4iMy4iNuEjMuIDNy0iM4USNDVSYDJUJ1MUJk5WarhSI", + value: + "!(kindżał-242.21.6.22.3.mie-ba6.kla-cdb.an-768.spi-14b6.kin-18.37)!", + result: { + word: "kindżał", + correct: 21, + position: 6, + incorrect: 22, + knownIncorrect: 3, + totalWords: 6, + totalLetters: 49, + date: "30.08.2025", + }, + }, + { + date: "30.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNz0ibp5CZzETL5JnL2ITLsV3auMzNy0CajNjLjJWOx0Cbv5iNmRWLhx2auUTNy0SZsdmLw4COx4iMuMjMuIDNy0iM4USNDVSYDJUJ1MUJk5WarhSI", + value: + "!(kindżał-242.23.2.18.0.gle-255.kla-df6.ol-19bc.3ch-273.kul-26.ry-13d.in-37)!", + result: { + word: "kindżał", + correct: 23, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 43, + date: "30.08.2025", + }, + }, + { + date: "30.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpczMt4mLidzNtwWar5CZ5ITL1h2YuYDNl1CczdnLw4SNx4CNuMTMuIDNy0iM4USNDVSYDJUJ1MUJk5WarhSI", + value: "!(kindżał-242.13.4.15.0.wsp-e46.chu-29d.kil-77b.n-37)!", + result: { + word: "kindżał", + correct: 13, + position: 4, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "30.08.2025", + }, + }, + { + date: "30.08.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNz0ibptmLkJDOtkmb15yM4gTLsFmbuQGOx0CczFmLw4iMx4iMuYTMuIDNy0iM4USNDVSYDJUJ1MUJk5WarhSI", + value: "!(kindżał-242.16.2.12.0.asp-18d.nal-883.uni-82d.kin-37)!", + result: { + word: "kindżał", + correct: 16, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "30.08.2025", + }, + }, + { + date: "30.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNz0ibptmL1kjYx0CZhpnLjVmLyQjMtg2Yz4iZm1CbhZmLkFDNt4WZn5iY5ETL05yYx0yYptmLyMTLrlGcuIWLhlWbugjZj1iYhpnLyMzMx0yc5dnLw4CMy4yNuIzMuIDNy0iM4USNDVSYDJUJ1MUJk5WarhSI", + value: + "!(kindżał-242.32.7.20.0.wys-1332.zab-cf8.mia-b.pik-32.kic-1c.t-19b.gen-41d.fal-ff.3ch-242.ec.zad-1b95.kin-37)!", + result: { + word: "kindżał", + correct: 32, + position: 7, + incorrect: 20, + knownIncorrect: 0, + totalWords: 12, + totalLetters: 59, + date: "30.08.2025", + }, + }, + { + date: "30.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpczMt4War5iZi1yZp1mLkFzNz0ieyBnLw4SMx4SMuMTMuIDNy0iM4USNDVSYDJUJ1MUJk5WarhSI", + value: "!(kindżał-242.13.1.11.0.prz-371d.mig-bf.kin-37)!", + result: { + word: "kindżał", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "30.08.2025", + }, + }, + { + date: "30.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNz4CMt4WauUDOi1SYs5CMjJTL6F2auQjZtg2Yz4iYzczMtsWY65iN40yZpJmLlVTLzlncuEjM00CbvpnL5gzYx0SZpBnLmJmMtUHaj5CMuQjMuATMuAzMuIDNy0iM4USNDVSYDJUJ1MUJk5WarhSI", + value: + "!(kindżał-242.30.10.24.0.chu-2bf.pie-1c89.zol-421.rys-5e.big-86.zak-373b.3ch-f4.kaz-2c0.la-b85.in-0.37)!", + result: { + word: "kindżał", + correct: 30, + position: 10, + incorrect: 24, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 64, + date: "30.08.2025", + }, + }, + { + date: "30.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpczMt4War5yNxETLl52ducTMtcmbh5iZjNTLoN2MuU2Y20CbvpnLw4iMx4SNuUTMuIDNy0iM4USNDVSYDJUJ1MUJk5WarhSI", + value: "!(kindżał-242.15.5.12.0.zol-6ce.3ch-3cf.ang-17.wne-117.kin-37)!", + result: { + word: "kindżał", + correct: 15, + position: 5, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "30.08.2025", + }, + }, + { + date: "30.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3MTLul2auMzNy0CajNjLyQmMtEGc15iZyITLoN2MuETYt4WYz5COtIWek5CM1ETLulWbukTOt4Wam5SN4ETL3FGbuYWO00ybspnLx4yNx4SMuMzMuIDNy0iM4USNDVSYDJUJ1MUJk5WarhSI", + value: + "!(kindżał-242.33.1.17.1.zlo-49f.law-185.fin-99.min-150.dyb-8.san-a1.3ch-22f.upa-2d2.3ch-273.kin-37)!", + result: { + word: "kindżał", + correct: 33, + position: 1, + incorrect: 17, + knownIncorrect: 1, + totalWords: 10, + totalLetters: 51, + date: "30.08.2025", + }, + }, + { + date: "30.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3MTLul2auQTN30CbvpnLmFDNtcWYu5yM5gTYx0ieyBnLw4COx4iMuQTMuIDNy0iM4USNDVSYDJUJ1MUJk5WarhSI", + value: "!(kindżał-242.14.2.18.0.prz-1a893.nag-41f.zol-754.kin-37)!", + result: { + word: "kindżał", + correct: 14, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "30.08.2025", + }, + }, + { + date: "30.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3MTLul2augTOt8me65CMuQjLy4SOuIDNy0iM4USNDVSYDJUJ1MUJk5WarhSI", + value: "!(kindżał-242.9.2.4.0.zzo-98.kin-37)!", + result: { + word: "kindżał", + correct: 9, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "30.08.2025", + }, + }, + { + date: "30.08.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNz0ibp5CO2cTLuF2auQzMzETLsl3duAjL44SNuETMuIDNy0iM4USNDVSYDJUJ1MUJk5WarhSI", + value: "!(kindżał-242.11.5.8.0.wyl-1334.kan-768.in-37)!", + result: { + word: "kindżał", + correct: 11, + position: 5, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "30.08.2025", + }, + }, + { + date: "30.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3MTLulmL4EWLp52auEWMyUTL69GcuAjL34yMuITMuIDNy0iM4USNDVSYDJUJ1MUJk5WarhSI", + value: "!(kindżał-242.12.3.7.0.poz-521a.kni-a8.in-37)!", + result: { + word: "kindżał", + correct: 12, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "30.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/absolutnie-nie-na-miejscu-dawac-takie-haslo-w-imieniu-ludzi-ktorzy-przez-nie-cie" +] = [ + { + date: "30.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNkVTLrp3cuMTNtw2b65iM10CcvxmL5UjNx0CbhpnLw4CNx4CNuMTMuETMy0SYygTJ1MUJvtmezhSI", + value: "!(szkoła-211.13.4.14.0.zal-1659.lop-52.zol-53.szk-5d7)!", + result: { + word: "szkoła", + correct: 13, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "30.07.2025", + }, + }, + { + date: "30.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcDZ10ya6NnLmdTLpx2ZuMTMx0SdyRnL2YWLvp3cuUWM20CajNjLzQzMx0Cb5dnLw4SNx4iMuQTMuETMy0SYygTJ1MUJvtmezhSI", + value: + "!(szkoła-211.14.2.15.0.wyl-1343.3ch-61e.szo-f6.tru-113.gli-7f.szk-5d7)!", + result: { + word: "szkoła", + correct: 14, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "30.07.2025", + }, + }, + { + date: "30.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNkVTLr5iM3EWLhp3cuE2YxMTLzFmeuYDNl1CczdnLw4yMx4CNuYTMuETMy0SYygTJ1MUJvtmezhSI", + value: "!(szkoła-211.16.4.13.0.wsp-e46.zas-31ca.sza-a72.k-5d7)!", + result: { + word: "szkoła", + correct: 16, + position: 4, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "30.07.2025", + }, + }, + { + date: "30.07.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNkVTLrp3cuUGZx0ievtmL4kTLvpneuAjL34iMuETMuETMy0SYygTJ1MUJvtmezhSI", + value: "!(szkoła-211.11.2.7.0.zzo-98.koz-1de.szk-5d7)!", + result: { + word: "szkoła", + correct: 11, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "30.07.2025", + }, + }, + { + date: "30.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcDZ10ya6NnLkhTMtA3ch5CMucjLy4SOuETMy0SYygTJ1MUJvtmezhSI", + value: "!(szkoła-211.9.2.7.0.asp-18d.szk-5d7)!", + result: { + word: "szkoła", + correct: 9, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "30.07.2025", + }, + }, + { + date: "30.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3QWNtsmez5yNxEWL6FmeuYmYy0SdoNmLw4CMx4SMuETMuETMy0SYygTJ1MUJvtmezhSI", + value: "!(szkoła-211.11.1.10.0.chu-2bf.zaz-a17.szk-5d7)!", + result: { + word: "szkoła", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "30.07.2025", + }, + }, + { + date: "30.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNkVTLrpnLkJjMt8Wbz5CZxQTLvBXYuIzMzETLzl3duAjL54iMuUTMuETMy0SYygTJ1MUJvtmezhSI", + value: "!(szkoła-211.15.2.9.0.wys-1332.apo-41d.smo-22d.zk-5d7)!", + result: { + word: "szkoła", + correct: 15, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "30.07.2025", + }, + }, + { + date: "30.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3QWNtsmez5iNl1yb6NmLmlDNt8GbuU2Y20CbvpnLw4yMx4iMuMTMuETMy0SYygTJ1MUJvtmezhSI", + value: "!(szkoła-211.13.2.13.0.zol-6ce.lo-49f.czo-e6.szk-5d7)!", + result: { + word: "szkoła", + correct: 13, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "30.07.2025", + }, + }, + { + date: "30.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3QWNtsmez5yMkNTMtw2br5yMzETLnFGbuQDZy0CbvpnLw4SMx4SMuMTMuETMy0SYygTJ1MUJvtmezhSI", + value: "!(szkoła-211.13.1.11.0.zol-2d4.lag-133.kol-13d3.szk-5d7)!", + result: { + word: "szkoła", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "30.07.2025", + }, + }, + { + date: "30.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcDZ10ya6NnL1UjMto2b35yM5gTYx0ieyBnLw4COx4CMuETMuETMy0SYygTJ1MUJvtmezhSI", + value: "!(szkoła-211.11.0.18.0.prz-1a893.woj-255.szk-5d7)!", + result: { + word: "szkoła", + correct: 11, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "30.07.2025", + }, + }, + { + date: "30.07.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3QWNtsmez5CN20ieydmL1IGZx0ydhpnLw4SMx4SMuETMuETMy0SYygTJ1MUJvtmezhSI", + value: "!(szkoła-211.11.1.11.0.zaw-1db5.grz-64.szk-5d7)!", + result: { + word: "szkoła", + correct: 11, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "30.07.2025", + }, + }, + { + date: "30.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3QWNuUGZ10ya6NnLjFzNx0ychpnLkFzNz0ieyBnLw4iMx4iMuUTMuETMy0SYygTJ1MUJvtmezhSI", + value: "!(szkoła-211.15.2.12.0.prz-371d.zas-171c.szk-5de.5d7)!", + result: { + word: "szkoła", + correct: 15, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "30.07.2025", + }, + }, + { + date: "30.07.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3QWNtsmez5SY4EjMtw2bw5CMuYjLx4SOuETMy0SYygTJ1MUJvtmezhSI", + value: "!(szkoła-211.9.1.6.0.pol-218a.szk-5d7)!", + result: { + word: "szkoła", + correct: 9, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "30.07.2025", + }, + }, + { + date: "30.07.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcDZ10ya6NnLmRDZtM3br5CMugjLw4SOuETMy0SYygTJ1MUJvtmezhSI", + value: "!(szkoła-211.9.0.8.0.kos-d4f.szk-5d7)!", + result: { + word: "szkoła", + correct: 9, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "30.07.2025", + }, + }, + { + date: "30.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNkVTLrp3cuMGOy0SZ6JnL4kTLvpneuAjL54SMuETMuETMy0SYygTJ1MUJvtmezhSI", + value: "!(szkoła-211.11.1.9.0.zzo-98.rze-28c.szk-5d7)!", + result: { + word: "szkoła", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "30.07.2025", + }, + }, + { + date: "30.07.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3QWNtsmez5iNhJWLllWbuAjL54SMuATMuETMy0SYygTJ1MUJvtmezhSI", + value: "!(szkoła-211.10.1.9.0.mie-ba6.szk-5d7)!", + result: { + word: "szkoła", + correct: 10, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "30.07.2025", + }, + }, + { + date: "30.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNkVTLrp3cugTOt8me65CMuUjLx4COuETMy0SYygTJ1MUJvtmezhSI", + value: "!(szkoła-211.8.1.5.0.zzo-98.szk-5d7)!", + result: { + word: "szkoła", + correct: 8, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "30.07.2025", + }, + }, + { + date: "30.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3QWNtsmez5yYhJGNtQ2bw5CMuYjLx4COuETMy0SYygTJ1MUJvtmezhSI", + value: "!(szkoła-211.8.1.6.0.pod-4bac.szk-5d7)!", + result: { + word: "szkoła", + correct: 8, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "30.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-mnie-wydymalo-28-07-2025-diffle-difflepl-grywebowe-38-liter-w-7-slowach-larg" +] = [ + { + date: "28.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhFWLjVncuQmMz0CboNmLxMTLm5CZzITLy5CNkJTLkVncuATL5JHduIWZ50ycvtmLw4CNx4CMuQjMukDMy0Se3lGboNWdyhSI", + value: + "!(ruchliwy-209.24.0.14.0.kos-9eb.try-0.rud-2d4.r-23d.f-31.chl-32d.ruc-aa)!", + result: { + word: "ruchliwy", + correct: 24, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 38, + date: "28.07.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWYtMWdy5SNiFTLvJXduMmZy0SZwNnLw4CNx4iMuQTMukDMy0Se3lGboNWdyhSI", + value: "!(ruchliwy-209.14.2.14.0.spe-2fc.uro-1b5.ruc-aa)!", + result: { + word: "ruchliwy", + correct: 14, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + }, + }, + { + date: "28.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhFWLjVncuAzYy0yYpdnLzQTL3JXduQTY10ieyRXZp5mLw4yMx4yNuYTMukDMy0Se3lGboNWdyhSI", + value: "!(ruchliwy-209.16.7.13.0.nietrz-5a4.urw-43.wic-2c0.ruc-aa)!", + result: { + word: "ruchliwy", + correct: 16, + position: 7, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "28.07.2025", + }, + }, + { + date: "28.07.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWYtMWdy5SZzMTLjl2duEGZyITLr9GcuAjL34iNuMTMukDMy0Se3lGboNWdyhSI", + value: "!(ruchliwy-209.13.6.7.0.pok-22da.wic-33e.ruc-aa)!", + result: { + word: "ruchliwy", + correct: 13, + position: 6, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "28.07.2025", + }, + }, + { + date: "28.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYh1yY15SY3ETLilncuQmM00icwNnLw4iMx4SMuQTMukDMy0Se3lGboNWdyhSI", + value: "!(ruchliwy-209.14.1.12.0.spr-42d.ryb-17a.uc-aa)!", + result: { + word: "ruchliwy", + correct: 14, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "28.07.2025", + }, + }, + { + date: "28.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWYtMWdy5SYjFTL3l2cuAzYtUnc05iZiJTL1h2YuAjL44iMukTMukDMy0Se3lGboNWdyhSI", + value: "!(ruchliwy-209.19.2.8.0.chu-2bf.tru-c0.siw-1ca.ruc-aa)!", + result: { + word: "ruchliwy", + correct: 19, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "28.07.2025", + }, + }, + { + date: "28.07.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWYtMWdy5yNlFWLuFGcuAjL44CMuATMukDMy0Se3lGboNWdyhSI", + value: "!(ruchliwy-209.10.0.8.0.pan-ae7.ruc-aa)!", + result: { + word: "ruchliwy", + correct: 10, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "28.07.2025", + }, + }, + { + date: "28.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYh1yY1JnL3UWMtIXej5iZ2MTLytWduUDOtQXdu5CNx0SdlZmLw4yMx4iMukTMukDMy0Se3lGboNWdyhSI", + value: "!(ruchliwy-209.19.2.13.0.feu-14.nut-85.ukr-36f.cyr-1e7.ruc-aa)!", + result: { + word: "ruchliwy", + correct: 19, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "28.07.2025", + }, + }, + { + date: "28.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhFWLjVncugTZx0icpdnLhFzNz0ieyBnLw4CMx4iMuMTMukDMy0Se3lGboNWdyhSI", + value: "!(ruchliwy-209.13.2.10.0.prz-371a.wir-1e8.ruc-aa)!", + result: { + word: "ruchliwy", + correct: 13, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "28.07.2025", + }, + }, + { + date: "28.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWYtMWdy5SYiNTLsVnYukTN20SZkpnLw4yMx4CMuQTMukDMy0Se3lGboNWdyhSI", + value: "!(ruchliwy-209.14.0.13.0.zde-659.bul-3ba.ruc-aa)!", + result: { + word: "ruchliwy", + correct: 14, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "28.07.2025", + }, + }, + { + date: "28.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYh1yY1JnL2MTZtUWaj5CNmFTLkl3duEjL44yMuUTMukDMy0Se3lGboNWdyhSI", + value: "!(ruchliwy-209.15.3.8.1.wyd-1f4.cie-e36.ruc-aa)!", + result: { + word: "ruchliwy", + correct: 15, + position: 3, + incorrect: 8, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 26, + date: "28.07.2025", + }, + }, + { + date: "28.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYh1yY1JnLzkDOhFTL6JHcuAjL24yMuITMukDMy0Se3lGboNWdyhSI", + value: "!(ruchliwy-209.12.3.6.0.prz-1a893.ruc-aa)!", + result: { + word: "ruchliwy", + correct: 12, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "28.07.2025", + }, + }, + { + date: "28.07.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhFWLjVncuYTYi1SZp1mLw4CMx4SMuETMukDMy0Se3lGboNWdyhSI", + value: "!(ruchliwy-209.11.1.10.0.mie-ba6.ruc-aa)!", + result: { + word: "ruchliwy", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "28.07.2025", + }, + }, + { + date: "28.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWYtMWdy5iZtMWdt5SNzITLzVHcuUGNtw2by5yY2EWLhJ3ZuAjL54CMugTMukDMy0Se3lGboNWdyhSI", + value: "!(ruchliwy-209.18.0.9.0.gra-a6c.rol-4e.pus-235.muc-f.ruc-aa)!", + result: { + word: "ruchliwy", + correct: 18, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "28.07.2025", + }, + }, + { + date: "28.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhFWLjVncuUGOtsWYm5yNy0ya1VmLy4CMx4iMuMTMukDMy0Se3lGboNWdyhSI", + value: "!(ruchliwy-209.13.2.10.2.euk-27.fak-8e.ruc-aa)!", + result: { + word: "ruchliwy", + correct: 13, + position: 2, + incorrect: 10, + knownIncorrect: 2, + totalWords: 3, + totalLetters: 25, + date: "28.07.2025", + }, + }, + { + date: "28.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWYtMWdy5SZ3MTLpN2duUWMy0Cdp1mLhFjM10ievBnLw4CMx4yMuQTMukDMy0Se3lGboNWdyhSI", + value: "!(ruchliwy-209.14.3.10.0.poz-521a.mit-21e.wci-37e.ruc-aa)!", + result: { + word: "ruchliwy", + correct: 14, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "28.07.2025", + }, + }, + { + date: "28.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWYtMWdy5CNiZTLhd3auAjL54CNuATMukDMy0Se3lGboNWdyhSI", + value: "!(ruchliwy-209.10.4.9.0.kwa-6b4.ruc-aa)!", + result: { + word: "ruchliwy", + correct: 10, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "28.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-pieknie-weszlo-01-06-2025-diffle-difflepl-grywebowe-17-liter-w-2-slowach-lar" +] = [ + { + date: "01.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2cDNtk3cw5iYllTLz92auAjL14SMuETMuITNx0SY69Gajl3cwhSI", + value: "!(psychoza-152.11.1.5.0.kos-9eb.psy-476)!", + result: { + word: "psychoza", + correct: 11, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "01.06.2025", + }, + }, + { + date: "01.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN3QTL5NnLw0ieuQjNmlTLk9GcuAjL04SMuYTMuITNx0SY69Gajl3cwhSI", + value: "!(psychoza-152.16.1.4.0.pod-9f64.z-0.sy-476)!", + result: { + word: "psychoza", + correct: 16, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "01.06.2025", + }, + }, + { + date: "01.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2cDNtk3cw5CMtQWe35SY0ETL1xmYuImZi1ychBnLjZTMtEGcz5SYjdTLzFWbuMmNh1SYydmLw4CNx4yMuMjMuITNx0SY69Gajl3cwhSI", + value: + "!(psychoza-152.23.3.14.0.gra-a6c.mas-7ca.spa-16c.pas-bfb.blu-14a.wyd-0.psy-476)!", + result: { + word: "psychoza", + correct: 23, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "01.06.2025", + }, + }, + { + date: "01.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2cDNtk3cw5CZyQTLyB3cuAjL34SMuITMuITNx0SY69Gajl3cwhSI", + value: "!(psychoza-152.12.1.7.0.spr-42d.psy-476)!", + result: { + word: "psychoza", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "01.06.2025", + }, + }, + { + date: "01.06.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2cDNtk3cw5CM2YTL0F2auAjL34iMuETMuITNx0SY69Gajl3cwhSI", + value: "!(psychoza-152.11.2.7.0.kat-660.psy-476)!", + result: { + word: "psychoza", + correct: 11, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "01.06.2025", + }, + }, + { + date: "01.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2cDNtk3cuEWM3MTL6JHcuAjL34SMuETMuITNx0SY69Gajl3cwhSI", + value: "!(psychoza-152.11.1.7.0.prz-371a.sy-476)!", + result: { + word: "psychoza", + correct: 11, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "01.06.2025", + }, + }, + { + date: "01.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYzN00SezBnL4ITMt8mez5CNhVTL6JHdllmbuAjL54SNuQTMuITNx0SY69Gajl3cwhSI", + value: "!(psychoza-152.14.5.9.0.nietrz-5a4.szo-128.psy-476)!", + result: { + word: "psychoza", + correct: 14, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "01.06.2025", + }, + }, + { + date: "01.06.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN3QTL5NnLkZzNtM2bw5iZiJTL1h2YuAjL34SMucTMuITNx0SY69Gajl3cwhSI", + value: "!(psychoza-152.17.1.7.0.chu-2bf.poc-76d.sy-476)!", + result: { + word: "psychoza", + correct: 17, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "01.06.2025", + }, + }, + { + date: "01.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2cDNtk3cuEWMyUTL69GcuAjL04iMuITMuITNx0SY69Gajl3cwhSI", + value: "!(psychoza-152.12.2.4.0.poz-521a.sy-476)!", + result: { + word: "psychoza", + correct: 12, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "01.06.2025", + }, + }, + { + date: "01.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN3QTL5NnLw0ie5BnLxYTOtknez5CNmFTLkl3duAjL54SMugTMuITNx0SY69Gajl3cwhSI", + value: "!(psychoza-152.18.1.9.0.wyd-1f4.szy-961.pyz-0.sy-476)!", + result: { + word: "psychoza", + correct: 18, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "01.06.2025", + }, + }, + { + date: "01.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN3QTL5NHcuADNy0Cd5NmL2kTLj9mZukDNy0CZv1mLw4SMx4yMugTMuITNx0SY69Gajl3cwhSI", + value: "!(psychoza-152.18.3.11.0.mod-249.foc-96.cyt-240.psy-476)!", + result: { + word: "psychoza", + correct: 18, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "01.06.2025", + }, + }, + { + date: "01.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2cDNtk3cugjNxUTL69GcuQGNt8Wbz5yNy0ya1VmLw4CMx4iNucTMuITNx0SY69Gajl3cwhSI", + value: "!(psychoza-152.17.6.10.0.euk-27.smo-4d.poz-5168.sy-476)!", + result: { + word: "psychoza", + correct: 17, + position: 6, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "01.06.2025", + }, + }, + { + date: "01.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2cDNtk3cukDM1QTLw9mLzkDOhFTL6JHcuAjL54CNucTMuITNx0SY69Gajl3cwhSI", + value: "!(psychoza-152.17.4.9.0.prz-1a893.op-4509.sy-476)!", + result: { + word: "psychoza", + correct: 17, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "01.06.2025", + }, + }, + { + date: "01.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYzN04SOzITL5NHcuMmNlFTLzl3duAjL54iMucTMuITNx0SY69Gajl3cwhSI", + value: "!(psychoza-152.17.2.9.0.wys-1e6c.psy-239.476)!", + result: { + word: "psychoza", + correct: 17, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "01.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-sie-ubawilem-04-06-2025-diffle-difflepl-grywebowe-22-litery-w-3-slowach-10" +] = [ + { + date: "04.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0MWLp12cuczN00ycpxmLzQzMx0Cb5dnLw4CMx4iMuATMuUTNx0CajVWatJUOlUzQlgSI", + value: "!(śmiech-155.10.2.10.0.wyl-1343.lis-477.smi-c4)!", + result: { + word: "śmiech", + correct: 10, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "04.06.2025", + }, + }, + { + date: "04.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0MmL2AjMtkWbz5SMkVWLtl3dugDNk1SZy5CO50yb6pnLw4iNx4SMuQTMuUTNx0CajVWatJUOlUzQlgSI", + value: "!(śmiech-155.14.1.16.0.zzo-98.re-d48.wym-ed1.smi-206.c4)!", + result: { + word: "śmiech", + correct: 14, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "04.06.2025", + }, + }, + { + date: "04.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzYtkWbz5iN0UWLwN3duAjLyEjLw4yNuUTNx0CajVWatJUOlUzQlgSI", + value: "!(śmiech-155.7.0.12.0.wsp-e46.smi-c4)!", + result: { + word: "śmiech", + correct: 7, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "04.06.2025", + }, + }, + { + date: "04.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0MmLwAjMtkWbz5iMhFTLs9meuIWZx0CclBnLw4SNx4CMuITMuUTNx0CajVWatJUOlUzQlgSI", + value: "!(śmiech-155.12.0.15.0.pep-1eb.zol-1a2.smi-200.c4)!", + result: { + word: "śmiech", + correct: 12, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "04.06.2025", + }, + }, + { + date: "04.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNj1SatNnLkhTMtA3ch5CMukjLx4COuUTNx0CajVWatJUOlUzQlgSI", + value: "!(śmiech-155.8.1.9.0.asp-18d.smi-c4)!", + result: { + word: "śmiech", + correct: 8, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "04.06.2025", + }, + }, + { + date: "04.06.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNj1SatNnLmJmMtUHaj5CMucjLx4COuUTNx0CajVWatJUOlUzQlgSI", + value: "!(śmiech-155.8.1.7.0.chu-2bf.smi-c4)!", + result: { + word: "śmiech", + correct: 8, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "04.06.2025", + }, + }, + { + date: "04.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0MmLmFmL2kTMtkWbz5SYz0yY5pnLi1San9mLkFzNz0ieyBnLw4COx4iMuEjMuUTNx0CajVWatJUOlUzQlgSI", + value: "!(śmiech-155.21.2.18.0.prz-371d.ogi-b.zyc-3a.smi-196.af.c4)!", + result: { + word: "śmiech", + correct: 21, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 41, + date: "04.06.2025", + }, + }, + { + date: "04.06.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0MmL1YTMtkWbucDZm1Sa3NnLlNzMtA3bk5yNl1yb6pnLw4yNx4CMuUTMuUTNx0CajVWatJUOlUzQlgSI", + value: "!(śmiech-155.15.0.17.0.zzo-e7.dop-33e.swi-fd7.mi-165.c4)!", + result: { + word: "śmiech", + correct: 15, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "04.06.2025", + }, + }, + { + date: "04.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0MmLwMjMtkWbuEDN10SdsNnLiRzYx0SZpBnLyMzMx0yc5dnLw4iNx4CMuMTMuUTNx0CajVWatJUOlUzQlgSI", + value: "!(śmiech-155.13.0.16.0.wys-1332.pie-1c4b.slu-541.mi-230.c4)!", + result: { + word: "śmiech", + correct: 13, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "04.06.2025", + }, + }, + { + date: "04.06.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0MWLp12cuYTYi1SZp1mLw4CMx4CMuATMuUTNx0CajVWatJUOlUzQlgSI", + value: "!(śmiech-155.10.0.10.0.mie-ba6.smi-c4)!", + result: { + word: "śmiech", + correct: 10, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "04.06.2025", + }, + }, + { + date: "04.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0MWLp1mL0MWMtUGbuYDO10Sa3NnLwkTLnFmauYWO00ybspnLw4CNx4CMuYTMuUTNx0CajVWatJUOlUzQlgSI", + value: "!(śmiech-155.16.0.14.0.zlo-49f.jag-90.swi-586.le-1c4.mi-c4)!", + result: { + word: "śmiech", + correct: 16, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "04.06.2025", + }, + }, + { + date: "04.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNj1SatNnL1UjMto2b35yM5gTYx0ieyBnLw4COx4SMuATMuUTNx0CajVWatJUOlUzQlgSI", + value: "!(śmiech-155.10.1.18.0.prz-1a893.woj-255.smi-c4)!", + result: { + word: "śmiech", + correct: 10, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "04.06.2025", + }, + }, + { + date: "04.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzYuUjNx4CMi1SatNnLidTOtUWaj5yY2ITMtUmcw5CO1ETLll2cuMTM00CbvpnLw4yMy4SMuQjMuUTNx0CajVWatJUOlUzQlgSI", + value: + "!(śmiech-155.24.1.23.0.zol-413.sie-158.pre-126c.cie-97b.smi-b0.165.c4)!", + result: { + word: "śmiech", + correct: 24, + position: 1, + incorrect: 23, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 48, + date: "04.06.2025", + }, + }, + { + date: "04.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzYtkWbuUDOz0SajNnLjFmY00CZvBnLw4CMx4SMuATMuUTNx0CajVWatJUOlUzQlgSI", + value: "!(śmiech-155.10.1.10.0.pod-4bac.sci-385.mi-c4)!", + result: { + word: "śmiech", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "04.06.2025", + }, + }, + { + date: "04.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzYtkWbz5iY3ETLtNXdugTMl1SZpBnLxMzMtcWZ35CO50yb6pnLw4COx4SMuQTMuUTNx0CajVWatJUOlUzQlgSI", + value: "!(śmiech-155.14.1.18.0.zzo-98.weg-331.pie-e18.usm-17b.smi-c4)!", + result: { + word: "śmiech", + correct: 14, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "04.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/alez-blisko-bylem-w-drugim-01-08-2025-diffle-difflepl-grywebowe-25-liter-w-3-slo" +] = [ + { + date: "01.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMyQTLyRmL2MWLydneuIWZ50ycvtmLw4SNuIjL4EjLzEjMtknb092dvJHZ6hSI", + value: "!(zdrowotny-213.18.2.5.0.kos-9eb.zwr-c6.dr-420)!", + result: { + word: "zdrowotny", + correct: 18, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "01.08.2025", + }, + }, + { + date: "01.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMyQjLmJDNtIHZ65iZlJTLlJHZuAzNx0ydytmLw4COuEjLyIjLzEjMtknb092dvJHZ6hSI", + value: "!(zdrowotny-213.22.1.8.0.krw-170.dre-2ef.zdr-42f.420)!", + result: { + word: "zdrowotny", + correct: 22, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "01.08.2025", + }, + }, + { + date: "01.08.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjM00ick5iNj1ic3pnL5UjZy0ibvtmLw4CNuQjL3EjLzEjMtknb092dvJHZ6hSI", + value: "!(zdrowotny-213.17.4.4.0.kon-2f59.zwr-c6.dr-420)!", + result: { + word: "zdrowotny", + correct: 17, + position: 4, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "01.08.2025", + }, + }, + { + date: "01.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwIDNtIHZ65CZ3kTL39GZuYmYy0SdoNmLw4iNuIjL3EjLzEjMtknb092dvJHZ6hSI", + value: "!(zdrowotny-213.17.2.6.0.chu-2bf.dow-97d.zdr-420)!", + result: { + word: "zdrowotny", + correct: 17, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "01.08.2025", + }, + }, + { + date: "01.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjM00ickpnLhFzNz0ieyBnLw4iNuIjLyEjLzEjMtknb092dvJHZ6hSI", + value: "!(zdrowotny-213.12.2.6.0.prz-371a.zdr-420)!", + result: { + word: "zdrowotny", + correct: 12, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "01.08.2025", + }, + }, + { + date: "01.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMyQTLyRmeuEWOy0yb6NmLjF2MtMXdy5yMh1SbhdmLw4yNuIjL2EjLzEjMtknb092dvJHZ6hSI", + value: "!(zdrowotny-213.16.2.7.0.gam-a3.rus-3ac.czo-29a.zdr-420)!", + result: { + word: "zdrowotny", + correct: 16, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "01.08.2025", + }, + }, + { + date: "01.08.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMyQTLyRmL2MWLydneuYTYi1SZp1mLw4SOuMjL4EjLzEjMtknb092dvJHZ6hSI", + value: "!(zdrowotny-213.18.3.9.0.mie-ba6.zwr-c6.dr-420)!", + result: { + word: "zdrowotny", + correct: 18, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "01.08.2025", + }, + }, + { + date: "01.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwIDNtIHZ65SN5ETL3RXduQWL3pHZukDNy0CZv1mLw4COucjLwIjLzEjMtknb092dvJHZ6hSI", + value: "!(zdrowotny-213.20.7.8.0.mod-249.dzw-d.utw-195.zdr-420)!", + result: { + word: "zdrowotny", + correct: 20, + position: 7, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "01.08.2025", + }, + }, + { + date: "01.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwIDNtIHZuYzYtI3d65yN0ITLq92duMTO4EWMtoncw5CMuITMuQjLwIjLzEjMtknb092dvJHZ6hSI", + value: "!(zdrowotny-213.20.4.12.0.prz-1a893.woj-247.zwr-c6.dr-420)!", + result: { + word: "zdrowotny", + correct: 20, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "01.08.2025", + }, + }, + { + date: "01.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwIDNtIHZ65SZyETLvdHZuQjZx0CZ5dnLw4yMuQjL3EjLzEjMtknb092dvJHZ6hSI", + value: "!(zdrowotny-213.17.4.3.0.wyd-1f4.dwo-12e.zdr-420)!", + result: { + word: "zdrowotny", + correct: 17, + position: 4, + incorrect: 3, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "01.08.2025", + }, + }, + { + date: "01.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMyQTLyRmeuIjZkJTLvJHcuUmZt8mcz5SN0MWLyJ2bucjMtsWdl5CMuETMuIjLzMjLzEjMtknb092dvJHZ6hSI", + value: "!(zdrowotny-213.33.2.11.0.euk-27.obr-c45.sro-fe.pro-2df2.zdr-420)!", + result: { + word: "zdrowotny", + correct: 33, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 46, + date: "01.08.2025", + }, + }, + { + date: "01.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMyQTLyRmeuQGN00iejVnLhFjM10ievBnLw4COuIjL1EjLzEjMtknb092dvJHZ6hSI", + value: "!(zdrowotny-213.15.2.8.0.poz-521a.ucz-44d.zdr-420)!", + result: { + word: "zdrowotny", + correct: 15, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "01.08.2025", + }, + }, + { + date: "01.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMyQTLyRmL2MWLydneuQjY20SY3tmLw4COuQjL5EjLzEjMtknb092dvJHZ6hSI", + value: "!(zdrowotny-213.19.4.8.0.kwa-6b4.zwr-c6.dr-420)!", + result: { + word: "zdrowotny", + correct: 19, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "01.08.2025", + }, + }, + { + date: "01.08.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMyQTLyRmL2MWLydneucTZh1ibhBnLw4yNuMjL2EjLzEjMtknb092dvJHZ6hSI", + value: "!(zdrowotny-213.16.3.7.0.pan-ae7.zwr-c6.dr-420)!", + result: { + word: "zdrowotny", + correct: 16, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "01.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/alez-mi-mylilo-tropy-25-08-2025-diffle-difflepl-grywebowe-64-litery-w-9-slowach-" +] = [ + { + date: "25.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZy4SO00ic0NnLiBTMtkmbn5SZzUjL4gzMtIHdz5SOwETLiVHduYmYl1Saw5yMh1SYyNnLkVWOtM3br5CMuUTMuEjL4QjL3MjMtUWauV2YhJHdzhSI", + value: + "!(stracenie-237.48.1.15.0.kos-9ed.sra-a3.pi-ebf.tub-109.str-388.53e.gni-10b.str-49.2d)!", + result: { + word: "stracenie", + correct: 48, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 64, + date: "25.08.2025", + }, + }, + { + date: "25.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZy0ic0NnLjVTLyRXdukjMtEmc05SM3QWL0FmeuYGNy0ibl5SMk1iY5NmLw4SOuUjLyQjL3MjMtUWauV2YhJHdzhSI", + value: + "!(stracenie-237.42.5.9.0.cyb-d1.en-24f.zat-d71.tra-29.utr-5c.str-2d)!", + result: { + word: "stracenie", + correct: 42, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 56, + date: "25.08.2025", + }, + }, + { + date: "25.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkJTLyR3cuQTY10ieyRXZp5mLw4COuQjLyEjL3MjMtUWauV2YhJHdzhSI", + value: "!(stracenie-237.12.4.8.0.nietrz-5a4.str-2d)!", + result: { + word: "stracenie", + correct: 12, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 24, + date: "25.08.2025", + }, + }, + { + date: "25.08.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZy4CO4MTLyR3cugTMx0ibhJnLhRmMy0yavBnLw4SOuIjLyIjL3MjMtUWauV2YhJHdzhSI", + value: "!(stracenie-237.22.2.9.0.pok-22da.ran-118.str-388.2d)!", + result: { + word: "stracenie", + correct: 22, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "25.08.2025", + }, + }, + { + date: "25.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZy0ic0NnL5ITLhJHduITMtMWYn5CNiRTLjFGcuUGO40yYh5mLmJmMtUHaj5CMuETMuMjLyMjL3MjMtUWauV2YhJHdzhSI", + value: + "!(stracenie-237.32.3.11.0.chu-2bf.nac-88e.pac-4b4.gac-12.tra-29.str-2d)!", + result: { + word: "stracenie", + correct: 32, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 46, + date: "25.08.2025", + }, + }, + { + date: "25.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZy0ic0NnLiNWMtIHd15COycTLhJHduMmNh1SYydmLw4SOuAjL3IjL3MjMtUWauV2YhJHdzhSI", + value: "!(stracenie-237.27.0.9.0.gra-a6c.tra-728.utr-1cb.str-2d)!", + result: { + word: "stracenie", + correct: 27, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "25.08.2025", + }, + }, + { + date: "25.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmMukjMtIHdz5yM5gTYx0ieyBnLw4iNuMjLxIjL3MjMtUWauV2YhJHdzhSI", + value: "!(stracenie-237.21.3.6.0.prz-1a893.str-29.2d)!", + result: { + word: "stracenie", + correct: 21, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "25.08.2025", + }, + }, + { + date: "25.08.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmMtIHduMTYtEmcuQmM00icwNnLw4iNuAjLxIjL3MjMtUWauV2YhJHdzhSI", + value: "!(stracenie-237.21.0.6.0.spr-42d.ra-a3.tr-2d)!", + result: { + word: "stracenie", + correct: 21, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "25.08.2025", + }, + }, + { + date: "25.08.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkJTLy5SY2kTLhR3cuYTYi1SZp1mLw4yNuMjL5EjL3MjMtUWauV2YhJHdzhSI", + value: "!(stracenie-237.19.3.7.0.mie-ba6.sta-96a.r-2d)!", + result: { + word: "stracenie", + correct: 19, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "25.08.2025", + }, + }, + { + date: "25.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZy0ic05yNi1iblNnLmVmMt4WZt5COh1CchhmL0YWMtQWe35CMuITMuMjL0IjL3MjMtUWauV2YhJHdzhSI", + value: "!(stracenie-237.24.3.12.0.wyd-1f4.hap-a8.men-2ef.sen-b7.tr-2d)!", + result: { + word: "stracenie", + correct: 24, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "25.08.2025", + }, + }, + { + date: "25.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkJjL2kTLyR3cuQjY20SY3tmLw4SOuMjLyIjL3MjMtUWauV2YhJHdzhSI", + value: "!(stracenie-237.22.3.9.0.kwa-6b4.str-96.2d)!", + result: { + word: "stracenie", + correct: 22, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 34, + date: "25.08.2025", + }, + }, + { + date: "25.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmMtIHdz5SOj1icoNmL10icrVmL5QjMtQ2bt5CMuATMuUjLxIjL3MjMtUWauV2YhJHdzhSI", + value: "!(stracenie-237.21.5.10.0.mod-249.ekr-5.chr-c9.str-2d)!", + result: { + word: "stracenie", + correct: 21, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "25.08.2025", + }, + }, + { + date: "25.08.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZy4CO4MjLlNTNtInL3IzMtEGduAjY5ETLhp3cucTZh1ibhBnLw4SOuMjL3MjL3MjMtUWauV2YhJHdzhSI", + value: "!(stracenie-237.37.3.9.0.pan-ae7.sza-19b0.ta-327.r-53e.388.2d)!", + result: { + word: "stracenie", + correct: 37, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 49, + date: "25.08.2025", + }, + }, + { + date: "25.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkJjL4gzMuU2M10icucjMz0SY0NnLhFjM10ievBnLw4COuAjL0MjL3MjMtUWauV2YhJHdzhSI", + value: "!(stracenie-237.34.0.8.0.poz-521a.sta-327.r-53e.388.2d)!", + result: { + word: "stracenie", + correct: 34, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "25.08.2025", + }, + }, + { + date: "25.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZy4yNmFjL4gzMuAzYy0ic0NnLmRTL3JHducjMtsWdl5CMuATMuQjL5MjL3MjMtUWauV2YhJHdzhSI", + value: "!(stracenie-237.39.4.10.0.euk-27.trw-4f.str-2c0.388.1f7.2d)!", + result: { + word: "stracenie", + correct: 39, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 53, + date: "25.08.2025", + }, + }, + { + date: "25.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZy4CO4gTMuQmNl5SOjNTMtIHdz5SYxczMtoncw5CMuMTMuIjLzMjL3MjMtUWauV2YhJHdzhSI", + value: "!(stracenie-237.33.2.13.0.prz-371a.str-13c9.e6d.1888.2d)!", + result: { + word: "stracenie", + correct: 33, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 48, + date: "25.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/bardzo-fajne-moglbym-wczesniej-ale-tyle-radosci-dalo-zgadywanie-31-08-2025-flag-" +] = [ + { + date: "31.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK00yZhRmL4QTOy0ybyBnLzYWMt0Wdo5CZhRWLllGcuATL09mcuUTOx0SYy9mLmJmNtknez5iMugTMukjL4IjLzQjMtAXe09mcldWYkhSI", + value: + "!(dagerotyp-243.28.9.18.2.szy-6bf.ora-195.rot-0.pie-dad.hum-1f3.pro-2948.dag-4)!", + result: { + word: "dagerotyp", + correct: 28, + position: 9, + incorrect: 18, + knownIncorrect: 2, + totalWords: 7, + totalLetters: 55, + date: "31.08.2025", + }, + }, + { + date: "31.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTLnFGZucDMz0CbhdmLxMTMtIXZh5iZ50CdhJmLiVWOtM3br5CMuETMuQjL0IjLzQjMtAXe09mcldWYkhSI", + value: "!(dagerotyp-243.24.4.11.0.kos-9eb.bat-9f.aer-131.gal-307.dag-4)!", + result: { + word: "dagerotyp", + correct: 24, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "31.08.2025", + }, + }, + { + date: "31.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNtcWYk5CO5UTLoN2MugzNtcWYw5SOxETLnVGbuMmNh1SYydmLw4yMuUjLxIjLzQjMtAXe09mcldWYkhSI", + value: "!(dagerotyp-243.21.5.3.0.gra-a6c.leg-119.pag-78.3ch-598.dag-4)!", + result: { + word: "dagerotyp", + correct: 21, + position: 5, + incorrect: 3, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "31.08.2025", + }, + }, + { + date: "31.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTLnFGZugjZx0CZv1mL0EWNtonc0VWau5CMuATMuYjL3EjLzQjMtAXe09mcldWYkhSI", + value: "!(dagerotyp-243.17.6.10.0.nietrz-5a4.mod-1f8.dag-4)!", + result: { + word: "dagerotyp", + correct: 17, + position: 6, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 33, + date: "31.08.2025", + }, + }, + { + date: "31.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK00yZh5iZ1ETMtA3bk5yYyQTLoN2MukDNy0CZv1mLw4SOuYjL2EjLzQjMtAXe09mcldWYkhSI", + value: "!(dagerotyp-243.16.6.9.0.mod-249.3ch-42c.dop-115f.ag-4)!", + result: { + word: "dagerotyp", + correct: 16, + position: 6, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "31.08.2025", + }, + }, + { + date: "31.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNtcWYk5iM3ITLvR3cuMmYyITLvJHcuM2YtAXYy5SZy0yb0FmLmJmMtUHaj5CMuUTMuYjLxIjLzQjMtAXe09mcldWYkhSI", + value: + "!(dagerotyp-243.21.6.15.0.chu-2bf.ato-2e.rap-cc.pro-22bc.sto-272.dag-4)!", + result: { + word: "dagerotyp", + correct: 21, + position: 6, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 42, + date: "31.08.2025", + }, + }, + { + date: "31.08.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNtcWYuETOtknck5CO0ETLydWYuIDO20SdydmL2EmYtUWat5CMuUTMuUjLxIjLzQjMtAXe09mcldWYkhSI", + value: "!(dagerotyp-243.21.5.15.0.mie-ba6.gru-682.agr-148.dry-91.ag-4)!", + result: { + word: "dagerotyp", + correct: 21, + position: 5, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "31.08.2025", + }, + }, + { + date: "31.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK00yZuQ2MtwWYk5SOz0CZh1mL3MWMtMmch5SYxczMtoncw5SMuETMuYjLzIjLzQjMtAXe09mcldWYkhSI", + value: "!(dagerotyp-243.23.6.11.1.prz-371a.arc-1c7.mad-39.dal-3d.g-4)!", + result: { + word: "dagerotyp", + correct: 23, + position: 6, + incorrect: 11, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 40, + date: "31.08.2025", + }, + }, + { + date: "31.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNtcWYk5CO5UTLoN2MuATL0FGZuAjZt8mcl5CMj1SYk9mL0Y2NtQXZt5yN2UTLvh2YuMTMh1SZ0NnL0YWMtQWe35SMuQTMucjL3MjLzQjMtAXe09mcldWYkhSI", + value: + "!(dagerotyp-243.37.7.14.1.wyd-1f4.ste-a13.cho-567.met-7f4.oda-c0.ero-f0.dat-0.3ch-598.dag-4)!", + result: { + word: "dagerotyp", + correct: 37, + position: 7, + incorrect: 14, + knownIncorrect: 1, + totalWords: 9, + totalLetters: 58, + date: "31.08.2025", + }, + }, + { + date: "31.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNtcWYk5yYlJTLyVWYucjMtsWdl5SMuETMuEjLwIjLzQjMtAXe09mcldWYkhSI", + value: "!(dagerotyp-243.20.1.11.1.euk-27.aer-2ec.dag-4)!", + result: { + word: "dagerotyp", + correct: 20, + position: 1, + incorrect: 11, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 32, + date: "31.08.2025", + }, + }, + { + date: "31.08.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK00yZuUDOtIXYk5CMmhTLvh2YuQmM00icwNnLw4SOuYjL3EjLzQjMtAXe09mcldWYkhSI", + value: "!(dagerotyp-243.17.6.9.0.spr-42d.cho-8f0.dar-85.g-4)!", + result: { + word: "dagerotyp", + correct: 17, + position: 6, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "31.08.2025", + }, + }, + { + date: "31.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTLnFGZugTO10CajNjLmJGNtIXY05SNxETLnxWYuAjZ20SYw9mLhFjM10ievBnLw4SOukjL2IjLzQjMtAXe09mcldWYkhSI", + value: + "!(dagerotyp-243.26.9.9.0.poz-521a.opa-6f0.alg-115.tar-4bf.3ch-598.dag-4)!", + result: { + word: "dagerotyp", + correct: 26, + position: 9, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 44, + date: "31.08.2025", + }, + }, + { + date: "31.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTLnFGZugzNtcWYw5COtAXZn5CZjhTL0F2auUDOkFTLyFmLzkDOhFTL6JHcuAjLxEjL1EjL1IjLzQjMtAXe09mcldWYkhSI", + value: + "!(dagerotyp-243.25.15.11.0.prz-1a893.ar-1d85.kat-8cd.gep-8.pag-78.dag-4)!", + result: { + word: "dagerotyp", + correct: 25, + position: 15, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 51, + date: "31.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/bardzo-latwe-tylko-przez-pierwsze-2-slowa-nie-trafilem-zadnej-spolgloski-03-06-2" +] = [ + { + date: "03.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3gTMtIWY05CMjJTL0VnYugTOtcXYw5iYllTLz92auAjLxEjLx4yMx4CN1ETLlNWasJWY0hSI", + value: "!(tablice-154.13.1.11.0.kos-9eb.paw-98.but-2c0.tab-187)!", + result: { + word: "tablice", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "03.06.2025", + }, + }, + { + date: "03.06.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3gTMuMDOx0iYhRnLzQTLtF2ZuEGZyITLr9GcuAjLyEjLy4yNx4CN1ETLlNWasJWY0hSI", + value: "!(tablice-154.17.2.12.0.pok-22da.gam-43.tab-183.187)!", + result: { + word: "tablice", + correct: 17, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "03.06.2025", + }, + }, + { + date: "03.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3gTMtIWY05iNi1yclJmLzUTLsdWauUTLpxWduEGNz0Cbh1mL3kTMtwWYw5iNtwWZy5yNxITLlp3YuAjL3EjL24SMz4CN1ETLlNWasJWY0hSI", + value: + "!(tablice-154.31.6.17.0.cze-217.rel-6.pal-197.mal-34a.uli-5.igl-53.bes-b6.tab-187)!", + result: { + word: "tablice", + correct: 31, + position: 6, + incorrect: 17, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 54, + date: "03.06.2025", + }, + }, + { + date: "03.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcDOx0iYhRnLkJDNtIHcz5CMukjLw4CMx4CN1ETLlNWasJWY0hSI", + value: "!(tablice-154.10.0.9.0.spr-42d.tab-187)!", + result: { + word: "tablice", + correct: 10, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "03.06.2025", + }, + }, + { + date: "03.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3gTMtImL5gjMt4WY05SYxczMtoncw5CMugjLy4CNx4CN1ETLlNWasJWY0hSI", + value: "!(tablice-154.14.2.8.0.prz-371a.tan-289.b-187)!", + result: { + word: "tablice", + correct: 14, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "03.06.2025", + }, + }, + { + date: "03.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3gTMtIWY05iNjJTL0VWbuMTO4EWMtoncw5CMugjLz4iNx4CN1ETLlNWasJWY0hSI", + value: "!(tablice-154.16.3.8.0.prz-1a893.met-2c6.tab-187)!", + result: { + word: "tablice", + correct: 16, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "03.06.2025", + }, + }, + { + date: "03.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN4ETLiFGduUmMx0CdhxmLjZTYtEmcn5CMuUjLx4SNx4CN1ETLlNWasJWY0hSI", + value: "!(tablice-154.15.1.5.0.gra-a6c.lat-12e.tab-187)!", + result: { + word: "tablice", + correct: 15, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "03.06.2025", + }, + }, + { + date: "03.06.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN4ETLi5iY4ITLyFGduUzYx0SY0NnL1ATOtQXZt5CMukjLz4yNx4CN1ETLlNWasJWY0hSI", + value: "!(tablice-154.17.3.9.0.met-905.sta-1c5.tar-28b.b-187)!", + result: { + word: "tablice", + correct: 17, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "03.06.2025", + }, + }, + { + date: "03.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN4ETLiFGduYzMz0CbhJmL3UTLtFmZuEmNtAXYz5CNmFTLkl3duEjLzEjLy4CMy4CN1ETLlNWasJWY0hSI", + value: "!(tablice-154.20.2.13.1.wyd-1f4.sap-6a.fam-57.bal-336.tab-187)!", + result: { + word: "tablice", + correct: 20, + position: 2, + incorrect: 13, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 35, + date: "03.06.2025", + }, + }, + { + date: "03.06.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcDOx0iYhRnLjljMtwWYi5iNhJWLllWbuEjLwEjL14SNx4CN1ETLlNWasJWY0hSI", + value: "!(tablice-154.15.5.10.1.mie-ba6.bal-29c.tab-187)!", + result: { + word: "tablice", + correct: 15, + position: 5, + incorrect: 10, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 30, + date: "03.06.2025", + }, + }, + { + date: "03.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN4ETLiFGducjMtIWYi5yMzE2MtMXe35CMukjL04yMx4CN1ETLlNWasJWY0hSI", + value: "!(tablice-154.13.4.9.0.wys-3a33.bab-27.tab-187)!", + result: { + word: "tablice", + correct: 13, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "03.06.2025", + }, + }, + { + date: "03.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3gTMtIWY05CNtIWdw5SN4MTLsF2ZuQzYtMWas5SO0ITLk9WbuAjL0EjLy4yMy4CN1ETLlNWasJWY0hSI", + value: "!(tablice-154.23.2.14.0.mod-249.lic-c4.gal-385.pub-4.tab-187)!", + result: { + word: "tablice", + correct: 23, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "03.06.2025", + }, + }, + { + date: "03.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN4ETLiFGduIWNtEGdw5iNz0SZ0FmL3ITLrVXZuAjLwEjL04SNx4CN1ETLlNWasJWY0hSI", + value: "!(tablice-154.15.4.10.0.euk-27.ate-36.pta-5b.tab-187)!", + result: { + word: "tablice", + correct: 15, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "03.06.2025", + }, + }, + { + date: "03.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3gTMtIWY05SZyETL0FGbuQTLpdWYuEWMyUTL69GcuAjLwEjLy4COx4CN1ETLlNWasJWY0hSI", + value: "!(tablice-154.18.2.10.0.poz-521a.agi-4.lat-12e.tab-187)!", + result: { + word: "tablice", + correct: 18, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "03.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/blisko-coraz-blizej-18-09-2025-flag-pl-diffle-difflepl-grywebowe-32-litery-w-4-s" +] = [ + { + date: "18.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjYzEjL0E2Mx4iZiNTMtInYv5CNlZTL6JHcuAjL54SMuIjMuEjNy0Se39GZ5kTJ0MUJ6JnYvhSI", + value: "!(obrzędowy-261.22.1.9.0.prz-6e4.obr-13bf.13a4.13b7)!", + result: { + word: "obrzędowy", + correct: 22, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "18.09.2025", + }, + }, + { + date: "18.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNiNTMtInYv5yYwQTL6JXduEDOx0SYpBnL5UTLoN2MuAzMy0iYlpnLzQzMx0Cb5dnLw4iMx4yMuYjMuEjNy0Se39GZ5kTJ0MUJ6JnYvhSI", + value: + "!(obrzędowy-261.26.3.12.0.wyl-1343.zeb-230.3ch-59.pia-181.urz-40c.obr-13b7)!", + result: { + word: "obrzędowy", + correct: 26, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 41, + date: "18.09.2025", + }, + }, + { + date: "18.09.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjYzEjLkJ2Mx4CNhNTMtInYv5SYmFTLy9WbuITOk1CZvBnLw4SMx4iMucjMuEjNy0Se39GZ5kTJ0MUJ6JnYvhSI", + value: "!(obrzędowy-261.27.2.11.0.pod-d92.mor-1fa.obr-13a4.13bd.13b7)!", + result: { + word: "obrzędowy", + correct: 27, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "18.09.2025", + }, + }, + { + date: "18.09.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNiNTMtInYv5yNxUTL6JHduEWM10ieydmLxQDOtUmey5yYwQTL6JXduYDNl1CczdnLw4SNx4SMuMDNuEjNy0Se39GZ5kTJ0MUJ6JnYvhSI", + value: + "!(obrzędowy-261.43.1.15.0.wsp-e46.urz-40c.rze-841.grz-51a.trz-517.obr-13b7)!", + result: { + word: "obrzędowy", + correct: 43, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 59, + date: "18.09.2025", + }, + }, + { + date: "18.09.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjYzEjL0E2Mx0ici9mLlVDZtEmez5iNmFGNtM3bw5CO50yb6pnLw4yNx4SMuAjMuEjNy0Se39GZ5kTJ0MUJ6JnYvhSI", + value: "!(obrzędowy-261.20.1.17.0.zzo-98.pos-4af6.sza-d5e.obr-13a4.13b7)!", + result: { + word: "obrzędowy", + correct: 20, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "18.09.2025", + }, + }, + { + date: "18.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjYzETLyJ2bukTN00ieyJmLwMjMtIWZ65SZlhTLvx2ZuAjL54iMuMjMuEjNy0Se39GZ5kTJ0MUJ6JnYvhSI", + value: "!(obrzędowy-261.23.2.9.0.glo-8ee.zeb-230.brz-459.obr-13b7)!", + result: { + word: "obrzędowy", + correct: 23, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "18.09.2025", + }, + }, + { + date: "18.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjYzETLyJ2buMGM00ieyVnLxUDOtUmey5SN5AjMtIHdz5CO50yb6pnLw4SMx4CMuYjMuEjNy0Se39GZ5kTJ0MUJ6JnYvhSI", + value: + "!(obrzędowy-261.26.0.11.0.zzo-98.str-2095.rze-851.urz-40c.obr-13b7)!", + result: { + word: "obrzędowy", + correct: 26, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "18.09.2025", + }, + }, + { + date: "18.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNiNTMtInYv5yYwQTL6JXduEmN40SZ6JnLhZTZtUmej5iZ5QTLvxmeuAjL54CMuUjMuEjNy0Se39GZ5kTJ0MUJ6JnYvhSI", + value: + "!(obrzędowy-261.25.0.9.0.zlo-49f.cze-e6a.rze-86a.urz-40c.obr-13b7)!", + result: { + word: "obrzędowy", + correct: 25, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "18.09.2025", + }, + }, + { + date: "18.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3I2Mx0ici9mLx0CZl5mLxQzMtMWZt5SZ4kTL3JmLxUDNx0ydk9mLyMzMx0yc5dnLw4iMx4CNuEjMuEjNy0Se39GZ5kTJ0MUJ6JnYvhSI", + value: + "!(obrzędowy-261.21.4.12.0.wys-1332.odw-1451.bw-98e.mec-341.ned-1.obr-13b7)!", + result: { + word: "obrzędowy", + correct: 21, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "18.09.2025", + }, + }, + { + date: "18.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3I2Mx0ici9mLxQDOtUmey5yYwQTL6JXduYTN3MTL6JHcuAjL44CMucjMuEjNy0Se39GZ5kTJ0MUJ6JnYvhSI", + value: "!(obrzędowy-261.27.0.8.0.prz-3756.urz-40c.rze-841.obr-13b7)!", + result: { + word: "obrzędowy", + correct: 27, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "18.09.2025", + }, + }, + { + date: "18.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjYzETLyJ2buUWYz0iel1mL1UjMto2b35yM5gTYx0ieyBnLw4SOx4CMukTMuEjNy0Se39GZ5kTJ0MUJ6JnYvhSI", + value: "!(obrzędowy-261.19.0.19.0.prz-1a893.woj-255.mez-3ae.obr-13b7)!", + result: { + word: "obrzędowy", + correct: 19, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 38, + date: "18.09.2025", + }, + }, + { + date: "18.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjYzETLyJ2buMGM00ieyVnLxQDOtUmey5SYxUTL6J3ZukDZjRTLk9GcuATZmZWL69mcuYTYi1SZp1mLw4COx4yMukzMuEjNy0Se39GZ5kTJ0MUJ6JnYvhSI", + value: + "!(obrzędowy-261.39.3.18.0.mie-ba6.roz-ffe0.pod-4cd9.grz-51a.rze-841.urz-40c.obr-13b7)!", + result: { + word: "obrzędowy", + correct: 39, + position: 3, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 60, + date: "18.09.2025", + }, + }, + { + date: "18.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNiNTMtInYuMmY30CZk5SYx0ic39mLilTLvdHduQGOx0CczFmLx4COx4SNuMjMuEjNy0Se39GZ5kTJ0MUJ6JnYvhSI", + value: "!(obrzędowy-261.23.5.18.1.asp-18d.two-9b.owr-1a.dd-7bc.br-13b7)!", + result: { + word: "obrzędowy", + correct: 23, + position: 5, + incorrect: 18, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 46, + date: "18.09.2025", + }, + }, + { + date: "18.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNiNTMtInYuUmYtw2Zv5SN0UTLk92duU2N50Cdk5CO4ETLvp3buMTO30SZ6NnLw4iMx4iNuYjMuEjNy0Se39GZ5kTJ0MUJ6JnYvhSI", + value: + "!(obrzędowy-261.26.6.12.0.sze-793.ozo-188.dt-97e.wod-545.ogl-be.br-13b7)!", + result: { + word: "obrzędowy", + correct: 26, + position: 6, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 44, + date: "18.09.2025", + }, + }, + { + date: "18.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3I2Mx0ici9mLkJWZtUmej5CO50yb6pnLw4iNx4SMuQTMuEjNy0Se39GZ5kTJ0MUJ6JnYvhSI", + value: "!(obrzędowy-261.14.1.16.0.zzo-98.cze-ebd.obr-13b7)!", + result: { + word: "obrzędowy", + correct: 14, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "18.09.2025", + }, + }, + { + date: "18.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjYzETLyJmL5UTLkp3buMDNiRTLk9GcuAjL34yMuUTMuEjNy0Se39GZ5kTJ0MUJ6JnYvhSI", + value: "!(obrzędowy-261.15.3.7.0.pod-4b43.ozd-59.br-13b7)!", + result: { + word: "obrzędowy", + correct: 15, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "18.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/brzydkie-slowo-21-09-2025-diffle-difflepl-grywebowe-37-liter-w-7-slowach-large-g" +] = [ + { + date: "21.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzYmMtQWZuY2Yx0SZsBnL0UDNtg2Yz4yMwETLvV2ZuATYx0SdoNmLmBTMtQXZ35CZllTLz92auAjL1EjL04COx4CN2ITLslmZvRWZwhSI", + value: + "!(pedofil-264.18.4.15.0.kos-9ed.wet-10f.chu-1a0.geo-103.3ch-454.ple-1cf.ed-2f3)!", + result: { + word: "pedofil", + correct: 18, + position: 4, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 37, + date: "21.09.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjZy4COmJTLkVmLxYTMt8mcw5yN1QTLvBXduAjL1EjL04CMy4CN2ITLslmZvRWZwhSI", + value: "!(pedofil-264.20.4.15.0.upo-457.pro-161.ed-2f8.2f3)!", + result: { + word: "pedofil", + correct: 20, + position: 4, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 39, + }, + }, + { + date: "21.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjZy0CZlBnLzMmMt8WZn5CNiZTLhd3auAjL1EjLy4iMx4CN2ITLslmZvRWZwhSI", + value: "!(pedofil-264.12.2.15.0.kwa-6b4.geo-2c3.ped-2f3)!", + result: { + word: "pedofil", + correct: 12, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "21.09.2025", + }, + }, + { + date: "21.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMmJTLkVGcukTZz0CclRmLkJDNtIHcz5CMugjL04iMx4CN2ITLslmZvRWZwhSI", + value: "!(pedofil-264.12.4.8.0.spr-42d.dep-3e9.ped-2f3)!", + result: { + word: "pedofil", + correct: 12, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "21.09.2025", + }, + }, + { + date: "21.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzYmMtQWZuUmNz0Cbp5SMxETMtM3bw5iZiJTL1h2YuAjL1EjLx4SNx4CN2ITLslmZvRWZwhSI", + value: "!(pedofil-264.15.1.15.0.chu-2bf.pos-1111.il-36e.ed-2f3)!", + result: { + word: "pedofil", + correct: 15, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "21.09.2025", + }, + }, + { + date: "21.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjZy0CZl5iNyUWL39mLzkDOhFTL6JHcuAjLxEjLy4CNx4CN2ITLslmZvRWZwhSI", + value: "!(pedofil-264.14.2.11.0.prz-1a893.ow-e26.ed-2f3)!", + result: { + word: "pedofil", + correct: 14, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "21.09.2025", + }, + }, + { + date: "21.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzYmMtQWZw5CN40ydpxmLlZDNtg2Yz4CN5ITL1h2YuEDMx0CclxmLjhjMtsWZz5yY2EWLhJ3ZuAjL1EjL14SNx4CN2ITLslmZvRWZwhSI", + value: + "!(pedofil-264.15.5.15.0.gra-a6c.sek-28c.lep-101.chu-294.3ch-46e.liw-84.ped-2f3)!", + result: { + word: "pedofil", + correct: 15, + position: 5, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 35, + date: "21.09.2025", + }, + }, + { + date: "21.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzYmMtQWZw5SY3MTLsR2buI2Nx0SZstmLzITL1xmYuYWLv5yM2ETL0VGcuAjL0EjL04SOx4CN2ITLslmZvRWZwhSI", + value: + "!(pedofil-264.19.4.14.0.pet-163.o-f.blu-23.kle-17b.odl-37a.ped-2f3)!", + result: { + word: "pedofil", + correct: 19, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "21.09.2025", + }, + }, + { + date: "21.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjZy0CZlBnL1ATMtg2Yz4SMi1Cc1RmL0YWMtQWe35CMucjL04yMx4CN2ITLslmZvRWZwhSI", + value: "!(pedofil-264.13.4.7.0.wyd-1f4.dup-b1.3ch-105.ped-2f3)!", + result: { + word: "pedofil", + correct: 13, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "21.09.2025", + }, + }, + { + date: "21.09.2025", + nick: "motokate", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzYmMtQWZw5CMwUTLslmZuATOx0CbvBnLlhjMtkncm5CMukjLz4SNx4CN2ITLslmZvRWZwhSI", + value: "!(pedofil-264.15.3.9.0.fry-28e.pol-190.fil-500.ped-2f3)!", + result: { + word: "pedofil", + correct: 15, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "21.09.2025", + }, + }, + { + date: "21.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjZy0CZlBnLwEmMt8mci5iNhJWLllWbuAjL0EjLz4SMx4CN2ITLslmZvRWZwhSI", + value: "!(pedofil-264.11.3.14.0.mie-ba6.bro-2a0.ped-2f3)!", + result: { + word: "pedofil", + correct: 11, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "21.09.2025", + }, + }, + { + date: "21.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzYmMtQWZw5CNiRTLvB3cukDO00CbvBnL3ITLrVXZuEjLxEjL04SNx4CN2ITLslmZvRWZwhSI", + value: "!(pedofil-264.15.4.11.1.euk-27.pol-489.spo-4b4.ped-2f3)!", + result: { + word: "pedofil", + correct: 15, + position: 4, + incorrect: 11, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 30, + date: "21.09.2025", + }, + }, + { + date: "21.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzYmMtQWZuYjMx0yby5SYxITNto3bw5CMukjLy4yMx4CN2ITLslmZvRWZwhSI", + value: "!(pedofil-264.13.2.9.0.poz-521a.ro-126.ed-2f3)!", + result: { + word: "pedofil", + correct: 13, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "21.09.2025", + }, + }, + { + date: "21.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMmJTLkVGcuUDOx0CajNjLwETL09mZuEGOtQ2bt5CMuUjL04CNx4CN2ITLslmZvRWZwhSI", + value: "!(pedofil-264.14.4.5.0.mod-8a.fot-10.3ch-185.ped-2f3)!", + result: { + word: "pedofil", + correct: 14, + position: 4, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "21.09.2025", + }, + }, + { + date: "21.09.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzYmMtQWZuImNk1ydv5iNhlTLllmLj1CZ15SNzQTLhxGcuAjLxEjL24SOx4CN2ITLslmZvRWZwhSI", + value: "!(pedofil-264.19.6.11.0.pla-435.ud-c.ie-9a6.ow-d6b.ed-2f3)!", + result: { + word: "pedofil", + correct: 19, + position: 6, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "21.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/co-tu-duzo-gadac-niezle-13-09-2025-flag-pl-diffle-difflepl-grywebowe-25-liter-w-" +] = [ + { + date: "13.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNkRWLkFmLmNjMtsWZuEjMy0yY6NXZp5mLw4iMx4SMuITMuYTNy0Se0lTOlQzQlQWYuhSI", + value: "!(nadęty-256.12.1.12.0.nieszc-221.ek-23f.ad-dd6)!", + result: { + word: "nadęty", + correct: 12, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "13.09.2025", + }, + }, + { + date: "13.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNkRWLkFmbuETOiFTLkFmeuMDNzETLsl3duAjLwEjLy4SOuYTNy0Se0lTOlQzQlQWYuhSI", + value: "!(nadęty-256.9.2.10.0.wyl-1343.zad-1b91.nad-dd6)!", + result: { + word: "nadęty", + correct: 9, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "13.09.2025", + }, + }, + { + date: "13.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2QGZtQmL4ADOtoWYu5CMjNTL0VGcuU2Yx0ic0dnLkRWMtM3bn5CO50yb6pnLw4COx4SMuYTMuYTNy0Se0lTOlQzQlQWYuhSI", + value: + "!(nadęty-256.16.1.18.0.zzo-98.gos-1dd.wtr-1ce.pet-3c0.naj-808.d-dd6)!", + result: { + word: "nadęty", + correct: 16, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "13.09.2025", + }, + }, + { + date: "13.09.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2QGZtQWYu5iMxQTL0VGZuYDNl1CczdnLw4yMx4yMuATMuYTNy0Se0lTOlQzQlQWYuhSI", + value: "!(nadęty-256.10.3.13.0.wsp-e46.det-412.nad-dd6)!", + result: { + word: "nadęty", + correct: 10, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "13.09.2025", + }, + }, + { + date: "13.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNkRWLk5CMllTLyFmbuQGOx0CczFmLw4iMx4SMuATMuYTNy0Se0lTOlQzQlQWYuhSI", + value: "!(nadęty-256.10.1.12.0.asp-18d.nar-9e0.d-dd6)!", + result: { + word: "nadęty", + correct: 10, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "13.09.2025", + }, + }, + { + date: "13.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2QGZtQWYu5CNyITLrVGcuIzMz0ychRnLw0Cd5pnLyMzMx0yc5dnLw4iMx4CNuMTMuYTNy0Se0lTOlQzQlQWYuhSI", + value: "!(nadęty-256.13.4.12.0.wys-1332.zyt-0.tas-332.pek-224.nad-dd6)!", + result: { + word: "nadęty", + correct: 13, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "13.09.2025", + }, + }, + { + date: "13.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2QGZtQWYu5CZxczMtoncw5CMukjLx4COuYTNy0Se0lTOlQzQlQWYuhSI", + value: "!(nadęty-256.8.1.9.0.prz-371d.nad-dd6)!", + result: { + word: "nadęty", + correct: 8, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "13.09.2025", + }, + }, + { + date: "13.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYDZk1CZuMjY3ETLwFmbuUWZ40ybsdmLw4CMx4CMuATMuYTNy0Se0lTOlQzQlQWYuhSI", + value: "!(nadęty-256.10.0.10.0.glo-8ee.nap-17b3.d-dd6)!", + result: { + word: "nadęty", + correct: 10, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "13.09.2025", + }, + }, + { + date: "13.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYDZk1CZucTY40Cdh5mLwkTLnFmaugDM30Cbp1mLx4SMx4SMuITMuYTNy0Se0lTOlQzQlQWYuhSI", + value: "!(nadęty-256.12.1.11.1.mil-708.jag-90.nat-8a7.d-dd6)!", + result: { + word: "nadęty", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 24, + date: "13.09.2025", + }, + }, + { + date: "13.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNkRWLkFmbuATMz0iev1mL1UjMto2b35yM5gTYx0ieyBnLw4yMy4iMuATMuYTNy0Se0lTOlQzQlQWYuhSI", + value: "!(nadęty-256.10.2.23.0.prz-1a893.woj-255.moz-310.nad-dd6)!", + result: { + word: "nadęty", + correct: 10, + position: 2, + incorrect: 23, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "13.09.2025", + }, + }, + { + date: "13.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2QGZtQWYu5COmJjMtMWY65CO4ITLz92ZuMWY3ETLyFGcuIGNi1Cbh1mLw4CMy4CMuITMuYTNy0Se0lTOlQzQlQWYuhSI", + value: "!(nadęty-256.12.0.20.0.mal-b4b.par-17ac.gos-288.zac-22f8.nad-dd6)!", + result: { + word: "nadęty", + correct: 12, + position: 0, + incorrect: 20, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "13.09.2025", + }, + }, + { + date: "13.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYDZk1CZh5mL2MGOtEmcn5CZwUTLzVHcuYTYi1SZp1mLw4COx4SMuETMuYTNy0Se0lTOlQzQlQWYuhSI", + value: "!(nadęty-256.11.1.18.0.mie-ba6.pus-50d.gra-8c6.nad-dd6)!", + result: { + word: "nadęty", + correct: 11, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "13.09.2025", + }, + }, + { + date: "13.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYDZk1CZuMjN40Cch5mL0gTMtkGbz5CO50yb6pnLw4SMx4SMuITMuYTNy0Se0lTOlQzQlQWYuhSI", + value: "!(nadęty-256.12.1.11.0.zzo-98.sli-184.nap-863.d-dd6)!", + result: { + word: "nadęty", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "13.09.2025", + }, + }, + { + date: "13.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2QGZtQWYu5iY5UTLhx2cuMWYiRTLk9GcuAjL54CMuETMuYTNy0Se0lTOlQzQlQWYuhSI", + value: "!(nadęty-256.11.0.9.0.pod-4bac.sla-59b.nad-dd6)!", + result: { + word: "nadęty", + correct: 11, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "13.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/co-znow-09-07-2025-flag-pl-diffle-difflepl-grywebowe-22-litery-w-3-slowach-large" +] = [ + { + date: "09.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMyETLrVmYuATLrV2ZuETM00SYyZmLw4CMx4SMuETMuATOx0ibvtWZihSI", + value: "!(bekon-190.11.1.10.0.fra-411.gek-0.bek-122)!", + result: { + word: "bekon", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "09.07.2025", + }, + }, + { + date: "09.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMyEjLyUTMtsWZi5SOmlTLz92auAjL34CMuMTMuATOx0ibvtWZihSI", + value: "!(bekon-190.13.0.7.0.kos-9f9.bek-152.122)!", + result: { + word: "bekon", + correct: 13, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "09.07.2025", + }, + }, + { + date: "09.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMyETLrVmYuEWM3MTL6JHcuAjLwEjLw4iNuATOx0ibvtWZihSI", + value: "!(bekon-190.6.0.10.0.prz-371a.bek-122)!", + result: { + word: "bekon", + correct: 6, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "09.07.2025", + }, + }, + { + date: "09.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyITMtsWZi5CNhVTL6JHdllmbuAjLxEjLx4COuATOx0ibvtWZihSI", + value: "!(bekon-190.8.1.11.0.nietrz-5a4.bek-122)!", + result: { + word: "bekon", + correct: 8, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "09.07.2025", + }, + }, + { + date: "09.07.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyITMtsWZi5CMtsWZn5iZ40CdltmLhRmMy0yavBnLw4CMx4SMuUTMuATOx0ibvtWZihSI", + value: "!(bekon-190.15.1.10.0.pok-22da.ket-8f.gek-0.bek-122)!", + result: { + word: "bekon", + correct: 15, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "09.07.2025", + }, + }, + { + date: "09.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMyETLrVmYuATLrV2ZuMGZ00ybl5mL1ETLl12buQmM00icwNnLw4iMx4iMuYTMuATOx0ibvtWZihSI", + value: "!(bekon-190.16.2.12.0.spr-42d.ome-15.neo-4dc.gek-0.bek-122)!", + result: { + word: "bekon", + correct: 16, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "09.07.2025", + }, + }, + { + date: "09.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyITMtsWZi5yY0cTLu92auYmYy0SdoNmLw4yMx4SMuATMuATOx0ibvtWZihSI", + value: "!(bekon-190.10.1.13.0.chu-2bf.kon-74c.bek-122)!", + result: { + word: "bekon", + correct: 10, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "09.07.2025", + }, + }, + { + date: "09.07.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyITMtsWZi5CMtsWZn5yYzMWLll2duAjL44CMuMTMuATOx0ibvtWZihSI", + value: "!(bekon-190.13.0.8.0.wie-c3c.gek-0.bek-122)!", + result: { + word: "bekon", + correct: 13, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "09.07.2025", + }, + }, + { + date: "09.07.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjMx0yalJmL3UWYt4WYw5CMuYjLy4yNuATOx0ibvtWZihSI", + value: "!(bekon-190.7.2.6.0.pan-ae7.bek-122)!", + result: { + word: "bekon", + correct: 7, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "09.07.2025", + }, + }, + { + date: "09.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjMx0yalJmLlhTMuATMy0CajNjLw0yblBnLzYWLsV2duYjNx0iel1mLhVTL0V2cuMmNh1SYydmLw4SNx4iMukTMuATOx0ibvtWZihSI", + value: + "!(bekon-190.19.2.15.0.gra-a6c.set-5a.mez-166.wel-f3.peo-0.3ch-210.18e.bek-122)!", + result: { + word: "bekon", + correct: 19, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 36, + date: "09.07.2025", + }, + }, + { + date: "09.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMyETLrVmYuATLrV2ZuYGOtQXZr5CNmFTLkl3duAjL54SMuQTMuATOx0ibvtWZihSI", + value: "!(bekon-190.14.1.9.0.wyd-1f4.ket-8f.gek-0.bek-122)!", + result: { + word: "bekon", + correct: 14, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "09.07.2025", + }, + }, + { + date: "09.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjMx0yalJmLzMTMt42bz5SO0ITLk9WbuAjLyEjLy4SOuATOx0ibvtWZihSI", + value: "!(bekon-190.9.2.12.0.mod-249.son-133.bek-122)!", + result: { + word: "bekon", + correct: 9, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "09.07.2025", + }, + }, + { + date: "09.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjMx0yalJmLw0yaldmL3QjMto2b35yM5gTYx0ieyBnLw4yNx4CMuMTMuATOx0ibvtWZihSI", + value: "!(bekon-190.13.0.17.0.prz-1a893.woj-247.gek-0.bek-122)!", + result: { + word: "bekon", + correct: 13, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "09.07.2025", + }, + }, + { + date: "09.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjMx0yalJmLw0yaldmL3ITLrVXZuAjL34CMuMTMuATOx0ibvtWZihSI", + value: "!(bekon-190.13.0.7.0.euk-27.gek-0.bek-122)!", + result: { + word: "bekon", + correct: 13, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "09.07.2025", + }, + }, + { + date: "09.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyITMtsWZi5CMtsWZn5yNwETLpt2buITMyUTL69GcuAjL54yMuQTMuATOx0ibvtWZihSI", + value: "!(bekon-190.14.3.9.0.poz-5212.oki-107.gek-0.bek-122)!", + result: { + word: "bekon", + correct: 14, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "09.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/czy-ja-wiem-czy-jest-to-08-09-2025-flag-pl-diffle-difflepl-grywebowe-42-litery-w" +] = [ + { + date: "08.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2UWL6NHcuYmY10yY6NnL0ITMtMWZs5yMwMTLuVWbuUGM00ibldmLw4yMx4yMuYjMuETNy0SYjlmblp3cwhSI", + value: "!(pszenica-251.26.3.13.0.gen-40e.men-303.lec-124.szc-5bf.psz-e6)!", + result: { + word: "pszenica", + correct: 26, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "08.09.2025", + }, + }, + { + date: "08.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTZto3cw5CNiZTLhd3auAjL44yMuITMuETNy0SYjlmblp3cwhSI", + value: "!(pszenica-251.12.3.8.0.kwa-6b4.psz-e6)!", + result: { + word: "pszenica", + correct: 12, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "08.09.2025", + }, + }, + { + date: "08.09.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNl1iez5CN5ITMtM2bw5CZzYWLht2cuAjL14SNuQTMuETNy0SYjlmblp3cwhSI", + value: "!(pszenica-251.14.5.5.0.ska-f3d.poc-1294.sz-e6)!", + result: { + word: "pszenica", + correct: 14, + position: 5, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "08.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/czy-ty-wiesz-01-10-2025-diffle-difflepl-grywebowe-24-litery-w-4-slowach-large-gr" +] = [ + { + date: "01.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ITMtAXds5iYk1SdsBnLjRjMtwWaz5yM0MTMtwWe35CMuITMuMjL54CN3ITLDJUJ1MUJllGc1JDOlUzQlgSI", + value: "!(łupież-274.9.3.12.0.wyl-1343.sil-24c.plu-db.lup-128)!", + result: { + word: "łupież", + correct: 9, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "01.10.2025", + }, + }, + { + date: "01.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOyEjL1ATMuMWZtAXds5SN0MTLoN2MuYzNtAXds5yN5MjMtAXe35iY4UWLlp3YuAjL1EjLx4yMy4CN3ITLDJUJ1MUJllGc1JDOlUzQlgSI", + value: + "!(łupież-274.23.1.15.0.cze-e8b.wyp-2397.lup-76.3ch-345.lup-ec.105.128)!", + result: { + word: "łupież", + correct: 23, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "01.10.2025", + }, + }, + { + date: "01.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjMx0Cc1xmL1IGZtwGaj5iY1UWLwF2auYTN3MTL6JHcuAjL1EjLx4SNx4CN3ITLDJUJ1MUJllGc1JDOlUzQlgSI", + value: "!(łupież-274.15.1.15.0.prz-3756.kap-e5b.chl-db5.lup-128)!", + result: { + word: "łupież", + correct: 15, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "01.10.2025", + }, + }, + { + date: "01.10.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ITMtAXdugzNto3bs5CO50yb6pnLw4yNuIjL54CN3ITLDJUJ1MUJllGc1JDOlUzQlgSI", + value: "!(łupież-274.9.2.7.0.zzo-98.loz-78.up-128)!", + result: { + word: "łupież", + correct: 9, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "01.10.2025", + }, + }, + { + date: "01.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOyEjLwETMtAXds5CZ4ETLwNXYuAjLwEjLx4yMx4CN3ITLDJUJ1MUJllGc1JDOlUzQlgSI", + value: "!(łupież-274.13.1.10.0.asp-18d.lup-110.128)!", + result: { + word: "łupież", + correct: 13, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "01.10.2025", + }, + }, + { + date: "01.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjMx0Cc1xmLjJ2MtUnc05iZiJTL1h2YuAjLwEjLw4iMx4CN3ITLDJUJ1MUJllGc1JDOlUzQlgSI", + value: "!(łupież-274.12.0.10.0.chu-2bf.tru-3bc.lup-128)!", + result: { + word: "łupież", + correct: 12, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "01.10.2025", + }, + }, + { + date: "01.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ITMtAXdugzNto3bs5CO50yb6pnLw4yNuIjL54CN3ITLDJUJ1MUJllGc1JDOlUzQlgSI", + value: "!(łupież-274.9.2.7.0.zzo-98.loz-78.up-128)!", + result: { + word: "łupież", + correct: 9, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "01.10.2025", + }, + }, + { + date: "01.10.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjMx0Cc1xmL4kjMtUHaj5CMxQTL0FGbuIzMzETLzl3duAjLyEjLw4iMx4CN3ITLDJUJ1MUJllGc1JDOlUzQlgSI", + value: "!(łupież-274.12.0.12.0.wys-1332.lat-410.chu-298.lup-128)!", + result: { + word: "łupież", + correct: 12, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "01.10.2025", + }, + }, + { + date: "01.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjMx0Cc1xmLw4CMuAjL24CN3ITLDJUJ1MUJllGc1JDOlUzQlgSI", + value: "!(łupież-274.6.0.0.0.lup-128)!", + result: { + word: "łupież", + correct: 6, + position: 0, + incorrect: 0, + knownIncorrect: 0, + totalWords: 1, + totalLetters: 6, + date: "01.10.2025", + }, + }, + { + date: "01.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOyEjL5UmLxkjMtAXds5yM0IGNtQ2bw5CMukjLx4CNx4CN3ITLDJUJ1MUJllGc1JDOlUzQlgSI", + value: "!(łupież-274.14.1.9.0.pod-4b43.lup-291.e9.128)!", + result: { + word: "łupież", + correct: 14, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "01.10.2025", + }, + }, + { + date: "01.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ITMtAXds5CZhJTL1x2ZuUTNy0iavdnLzkDOhFTL6JHcuAjLwIjLy4yMx4CN3ITLDJUJ1MUJllGc1JDOlUzQlgSI", + value: "!(łupież-274.13.2.20.0.prz-1a893.woj-255.glu-2ad.lup-128)!", + result: { + word: "łupież", + correct: 13, + position: 2, + incorrect: 20, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "01.10.2025", + }, + }, + { + date: "01.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ITMtAnLlZTMt4Wds5CZzMjLzMzMtg2Yz4yY5ETLzlnLiBDNtQXYs5iZ5QTLvxmeuAjL2EjLw4iNx4CN3ITLDJUJ1MUJllGc1JDOlUzQlgSI", + value: + "!(łupież-274.16.0.16.0.zlo-49f.lat-40b.ys-19c.3ch-333.33d.lun-16e.p-128)!", + result: { + word: "łupież", + correct: 16, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 32, + date: "01.10.2025", + }, + }, + { + date: "01.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOyETLwVHbuMmMtAXdy5CMkNTMtUWaw5iMhJWLllWbuAjL1EjLw4SNx4CN3ITLDJUJ1MUJllGc1JDOlUzQlgSI", + value: "!(łupież-274.15.0.15.0.mie-ba2.pie-13d0.rup-2c.lup-128)!", + result: { + word: "łupież", + correct: 15, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "01.10.2025", + }, + }, + { + date: "01.10.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOyETLwVHbugjZz0SdsNnL4kTLvpneuAjLyEjLy4CMx4CN3ITLDJUJ1MUJllGc1JDOlUzQlgSI", + value: "!(łupież-274.10.2.12.0.zzo-98.slu-3f8.lup-128)!", + result: { + word: "łupież", + correct: 10, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "01.10.2025", + }, + }, + { + date: "01.10.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjMx0Cc1xmL0MzMx0Cb5dnLw4yNuAjL44CN3ITLDJUJ1MUJllGc1JDOlUzQlgSI", + value: "!(łupież-274.8.0.7.0.wyl-1334.lup-128)!", + result: { + word: "łupież", + correct: 8, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "01.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dobre-aczkolwiek-niezbyt-lubiane-08-07-2025-flag-pl-diffle-difflepl-grywebowe-39" +] = [ + { + date: "08.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOyETMtI3br5COz0yY51mL1MWLoN2MuMmMy0ybyRnLzMTYz0yc5dnLw4yMx4SNuEjMukDOx0SarNmb5J3brhSI", + value: "!(koryncki-189.21.5.13.0.wys-3a33.tro-22c.3ch-c5.myc-38.kor-1128)!", + result: { + word: "koryncki", + correct: 21, + position: 5, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "08.07.2025", + }, + }, + { + date: "08.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ITMx4CNyMWLy5iYllTLz92auAjL24SMuYTMukDOx0SarNmb5J3brhSI", + value: "!(koryncki-189.16.1.6.0.kos-9eb.r-c24.1128)!", + result: { + word: "koryncki", + correct: 16, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "08.07.2025", + }, + }, + { + date: "08.07.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjMxETLy92auEGZyITLr9GcuAjL14iMuITMukDOx0SarNmb5J3brhSI", + value: "!(koryncki-189.12.2.5.0.pok-22da.kor-1128)!", + result: { + word: "koryncki", + correct: 12, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "08.07.2025", + }, + }, + { + date: "08.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOyETMtI3br5CZyQTLyB3cuAjL44SMuETMukDOx0SarNmb5J3brhSI", + value: "!(koryncki-189.11.1.8.0.spr-42d.kor-1128)!", + result: { + word: "koryncki", + correct: 11, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "08.07.2025", + }, + }, + { + date: "08.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ITMx0icv5yYkFTL5J3auMWYx0iY5JnLjNTLq92ZuQTY10ieyRXZp5mLw4SNx4iNuIjMukDOx0SarNmb5J3brhSI", + value: + "!(koryncki-189.22.6.15.0.nietrz-5a4.goj-3c.ryb-1ac.kry-1dc.or-1128)!", + result: { + word: "koryncki", + correct: 22, + position: 6, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 43, + date: "08.07.2025", + }, + }, + { + date: "08.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjMxETLy92auczY50Cdz9mL0QGNx0ibukDZx0yYvtmLjlTLj9mbuYmYy0SdoNmLw4iMx4CNuQjMukDOx0SarNmb5J3brhSI", + value: + "!(koryncki-189.24.4.12.0.chu-2bf.noc-9c.koc-1d9.n-14d4.ost-9c7.kor-1128)!", + result: { + word: "koryncki", + correct: 24, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "08.07.2025", + }, + }, + { + date: "08.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjMxETLy92auEWLjVncuQWNt4We05CM2UjNx0ieyBnL0MTLu9mcuMmNh1SYydmLw4SMx4iMuQjMukDOx0SarNmb5J3brhSI", + value: + "!(koryncki-189.24.2.11.0.gra-a6c.ron-34.prz-16560.tyn-5d.ruc-a.kor-1128)!", + result: { + word: "koryncki", + correct: 24, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "08.07.2025", + }, + }, + { + date: "08.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ITMx0icv5CNiZTLhd3auAjL44SMuQTMukDOx0SarNmb5J3brhSI", + value: "!(koryncki-189.14.1.8.0.kwa-6b4.or-1128)!", + result: { + word: "koryncki", + correct: 14, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "08.07.2025", + }, + }, + { + date: "08.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjMxETLy92auQjNt4Wey5CNmFTLkl3duAjL14SMuYTMukDOx0SarNmb5J3brhSI", + value: "!(koryncki-189.16.1.5.0.wyd-1f4.ryn-64.kor-1128)!", + result: { + word: "koryncki", + correct: 16, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "08.07.2025", + }, + }, + { + date: "08.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOyETMuMGNi5SMmhTLy92auEGMx0iY1JnLhFzNz0ieyBnLw4iMx4yMuQjMukDOx0SarNmb5J3brhSI", + value: "!(koryncki-189.24.3.12.0.prz-371a.rub-10a.kor-8f1.b4c.1128)!", + result: { + word: "koryncki", + correct: 24, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "08.07.2025", + }, + }, + { + date: "08.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOyETMtI3buQGZx0SeytmLzkDOhFTL6JHcuAjL54yMucTMukDOx0SarNmb5J3brhSI", + value: "!(koryncki-189.17.3.9.0.prz-1a893.kry-1dd.or-1128)!", + result: { + word: "koryncki", + correct: 17, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "08.07.2025", + }, + }, + { + date: "08.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ITMx0icvtmL5AzMx0ybrNnL3M2N20ieyBnL3ITLrVXZuEjL54CNukTMukDOx0SarNmb5J3brhSI", + value: "!(koryncki-189.19.4.9.1.euk-27.prz-67c7.sko-1309.kor-1128)!", + result: { + word: "koryncki", + correct: 19, + position: 4, + incorrect: 9, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 32, + date: "08.07.2025", + }, + }, + { + date: "08.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOyETMtI3br5SO0ITLk9WbuAjL34SMuITMukDOx0SarNmb5J3brhSI", + value: "!(koryncki-189.12.1.7.0.mod-249.kor-1128)!", + result: { + word: "koryncki", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "08.07.2025", + }, + }, + { + date: "08.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjMxETLy92auEWMyUTL69GcuAjL14SMuITMukDOx0SarNmb5J3brhSI", + value: "!(koryncki-189.12.1.5.0.poz-521a.kor-1128)!", + result: { + word: "koryncki", + correct: 12, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "08.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dobre-haslo-piekne-slowo-03-08-2025-flag-pl-diffle-difflepl-grywebowe-39-liter-w" +] = [ + { + date: "03.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN00ybz9mLlRTLz9GbuEWNx0ydvNnLwITLzV3ZuATLvdXYuQWOk1iclBnLw4CNx4iMuMjMuUTMy0Se3lGbi92cvhSI", + value: + "!(osobliwy-215.23.2.14.0.per-d9d.awo-0.gus-20.sow-15a.los-4e.oso-47)!", + result: { + word: "osobliwy", + correct: 23, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "03.08.2025", + }, + }, + { + date: "03.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3QjLkFjLmRWLvN3bugTZtM3bi5iYllTLz92auAjL54SMuQjMuUTMy0Se3lGbi92cvhSI", + value: "!(osobliwy-215.24.1.9.0.kos-9eb.bos-e8.oso-df.1d.47)!", + result: { + word: "osobliwy", + correct: 24, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "03.08.2025", + }, + }, + { + date: "03.08.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN00ybz9mL4IWLzVnYuETZ5ETLzl3duQmM00icwNnLw4SMx4iNukTMuUTMy0Se3lGbi92cvhSI", + value: "!(osobliwy-215.19.6.11.0.spr-42d.wys-19e1.bus-b8.oso-47)!", + result: { + word: "osobliwy", + correct: 19, + position: 6, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "03.08.2025", + }, + }, + { + date: "03.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcDNt82cv5CM1ETLzl2YuQTY10ieyRXZp5mLw4SMx4yMuUTMuUTMy0Se3lGbi92cvhSI", + value: "!(osobliwy-215.15.3.11.0.nietrz-5a4.cis-150.oso-47)!", + result: { + word: "osobliwy", + correct: 15, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "03.08.2025", + }, + }, + { + date: "03.08.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcDNt82cuQ2Y20Cbi9mLiFWMtw2bi5yNlFWLuFGcuAjL54iMugTMuUTMy0Se3lGbi92cvhSI", + value: "!(osobliwy-215.18.2.9.0.pan-ae7.bol-1ab.obl-6cd.so-47)!", + result: { + word: "osobliwy", + correct: 18, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "03.08.2025", + }, + }, + { + date: "03.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN04SMk1ybz9mL1MGOtI2bk5CO0MTLvJnYuEWZ40ycvBnL4cTL0l2cuYmYy0SdoNmLw4SNx4yMugjMuUTMy0Se3lGbi92cvhSI", + value: + "!(osobliwy-215.28.3.15.0.chu-2bf.sit-78.pos-8ea.bro-348.dob-8c5.oso-d1.47)!", + result: { + word: "osobliwy", + correct: 28, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 46, + date: "03.08.2025", + }, + }, + { + date: "03.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcDNt82cuEmNz0Sas9mLjJWYtQWe35iNh1CbvhmLxgzMtwmez5SNzETLzlGbuMmNh1SYydmLw4SMx4iMuQjMuUTMy0Se3lGbi92cvhSI", + value: + "!(osobliwy-215.24.2.11.0.gra-a6c.lis-135.szl-381.hol-a6.wyd-abc.oli-36a.so-47)!", + result: { + word: "osobliwy", + correct: 24, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 37, + date: "03.08.2025", + }, + }, + { + date: "03.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcDNt82cv5SYjFTL3l2cuEWM3MTL6JHcuAjL44SMuQTMuUTMy0Se3lGbi92cvhSI", + value: "!(osobliwy-215.14.1.8.0.prz-371a.siw-1ca.oso-47)!", + result: { + word: "osobliwy", + correct: 14, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "03.08.2025", + }, + }, + { + date: "03.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3QTLv5SOjdTLpN3buEWMyUTL69GcuAjL24iMuYTMuUTMy0Se3lGbi92cvhSI", + value: "!(osobliwy-215.16.2.6.0.poz-521a.osi-7c9.o-47)!", + result: { + word: "osobliwy", + correct: 16, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "03.08.2025", + }, + }, + { + date: "03.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3QTLvN3bukzM40CdvBnLhNWMtcXaz5CNmFTLkl3duAjL44SMukTMuUTMy0Se3lGbi92cvhSI", + value: "!(osobliwy-215.19.1.8.0.wyd-1f4.siw-1ca.pot-839.oso-47)!", + result: { + word: "osobliwy", + correct: 19, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "03.08.2025", + }, + }, + { + date: "03.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3QTLvN3buYGNz0CbvNnLkN2MtMXas5yM5gTYx0ieyBnLw4SMx4iMugTMuUTMy0Se3lGbi92cvhSI", + value: "!(osobliwy-215.18.2.11.0.prz-1a893.lis-3cd.sol-34f.oso-47)!", + result: { + word: "osobliwy", + correct: 18, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "03.08.2025", + }, + }, + { + date: "03.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN00ybz5COxkTLpB3buQjY20SY3tmLw4SMx4yMuYTMuUTMy0Se3lGbi92cvhSI", + value: "!(osobliwy-215.16.3.11.0.kwa-6b4.opi-918.so-47)!", + result: { + word: "osobliwy", + correct: 16, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "03.08.2025", + }, + }, + { + date: "03.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN00ybz5iZy0yc35CNkhTLpB3bukDNy0CZv1mLw4iMx4iMuUTMuUTMy0Se3lGbi92cvhSI", + value: "!(osobliwy-215.15.2.12.0.mod-249.opi-8d4.ws-2f.so-47)!", + result: { + word: "osobliwy", + correct: 15, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "03.08.2025", + }, + }, + { + date: "03.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN00ybz9mLxMjMt8Gaj5yNy0ya1VmLw4CMx4SMuUTMuUTMy0Se3lGbi92cvhSI", + value: "!(osobliwy-215.15.1.10.0.euk-27.cho-231.oso-47)!", + result: { + word: "osobliwy", + correct: 15, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "03.08.2025", + }, + }, + { + date: "03.08.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN00ybz9mL3YWL1JnYuYTYi1SZp1mLw4iMx4SMuQTMuUTMy0Se3lGbi92cvhSI", + value: "!(osobliwy-215.14.1.12.0.mie-ba6.bru-f7.oso-47)!", + result: { + word: "osobliwy", + correct: 14, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "03.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dobre-i-trudniejsze-niz-by-sie-wydawalo-27-07-2025-flag-pl-diffle-difflepl-grywe" +] = [ + { + date: "27.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWZy0iY6dnLyMmMtUnY65iYkNTL1J2buIGNh1ieyRnL2QjMx0ieyBnLw4SOuAjLyMjL4AjMtknbvpnc1Jme3hSI", + value: + "!(wzburzony-208.32.0.9.0.prz-1246.trz-a4b.obu-3db.zbu-2c2.wzb-2eb)!", + result: { + word: "wzburzony", + correct: 32, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "27.07.2025", + }, + }, + { + date: "27.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiVmMuMGZx0iY6dnL2MWLydneuIWZ50ycvtmLw4SOuIjL0IjL4AjMtknbvpnc1Jme3hSI", + value: "!(wzburzony-208.24.2.9.0.kos-9eb.zwr-c6.wzb-1dc.2eb)!", + result: { + word: "wzburzony", + correct: 24, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "27.07.2025", + }, + }, + { + date: "27.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiVmMtImeuMWZ50ib5dnL0EWNtonc0VWau5CMuETMuMjL5EjL4AjMtknbvpnc1Jme3hSI", + value: "!(wzburzony-208.19.3.11.0.nietrz-5a4.wyn-9ec.zb-2eb)!", + result: { + word: "wzburzony", + correct: 19, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 33, + date: "27.07.2025", + }, + }, + { + date: "27.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiVmMtIme35yM1MTLyJmeuQmM00icwNnLw4COuIjL4EjL4AjMtknbvpnc1Jme3hSI", + value: "!(wzburzony-208.18.2.8.0.spr-42d.zbr-353.wzb-2eb)!", + result: { + word: "wzburzony", + correct: 18, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "27.07.2025", + }, + }, + { + date: "27.07.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYlJTLip3duQWOtIXb65CNi1ic6NnL3UWYt4WYw5CMuITMuEjLwIjL4AjMtknbvpnc1Jme3hSI", + value: "!(wzburzony-208.20.1.12.0.pan-ae7.szr-b4.zmr-9d.wzb-2eb)!", + result: { + word: "wzburzony", + correct: 20, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "27.07.2025", + }, + }, + { + date: "27.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWZy0iY65COyITL1tmLwYWOt4We35SYxczMtoncw5CMuATMuIjLzIjL4AjMtknbvpnc1Jme3hSI", + value: "!(wzburzony-208.23.2.10.0.prz-371a.wyn-9f0.ku-228.zb-2eb)!", + result: { + word: "wzburzony", + correct: 23, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "27.07.2025", + }, + }, + { + date: "27.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWZy0iYuYDOx0yb65SOkFTLvJnLmdTLu92duMTOx0CajNjLzAzMt42bi5CMkFTLoN2MugDZ4ETLrlnLmVWLs92duEGM00yd6NnL0QDNx0Sd3RmLmJmMtUHaj5CMugTMuYjLzQjL4AjMtknbvpnc1Jme3hSI", + value: + "!(wzburzony-208.43.6.18.0.chu-2bf.dwu-1444.szw-40a.wol-ef.yk-18d8.3ch-1d0.bon-303.3ch-193.won-7f.ro-1d9.zo-186.b-2eb)!", + result: { + word: "wzburzony", + correct: 43, + position: 6, + incorrect: 18, + knownIncorrect: 0, + totalWords: 12, + totalLetters: 67, + date: "27.07.2025", + }, + }, + { + date: "27.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWZy0iY6dnLyMmMtUnY65COxcTLyVnYuQDZxITLvJHcuM2M10ybyRnL4QWLy9mbuMTYt0WYn5CMuATMuIjL0MjL4AjMtknbvpnc1Jme3hSI", + value: + "!(wzburzony-208.34.2.10.0.gam-a3.nor-d8.tro-53c.pro-21d4.bur-718.zbu-2c2.wzb-2eb)!", + result: { + word: "wzburzony", + correct: 34, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 46, + date: "27.07.2025", + }, + }, + { + date: "27.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYlJTLipnL4IjMtU3auQjZx0CZ5dnLw4SNuEjLwIjL4AjMtknbvpnc1Jme3hSI", + value: "!(wzburzony-208.20.1.5.0.wyd-1f4.ku-228.zb-2eb)!", + result: { + word: "wzburzony", + correct: 20, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "27.07.2025", + }, + }, + { + date: "27.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiVmMtImeuMWZ50ib5dnL3EjMt8mc15yNy0ya1VmLw4SOuAjL3IjL4AjMtknbvpnc1Jme3hSI", + value: "!(wzburzony-208.27.0.9.0.euk-27.uro-217.wyn-9ec.zb-2eb)!", + result: { + word: "wzburzony", + correct: 27, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "27.07.2025", + }, + }, + { + date: "27.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiVmMtImeugjMy0Sdr5iZiNTL6J3duYGZ3ETLs9GcuIGNi1ieyRnL5QjMtQ2bt5CMuMTMuIjL4IjL4AjMtknbvpnc1Jme3hSI", + value: + "!(wzburzony-208.28.2.13.0.mod-249.trz-b4b.pol-17df.wrz-3bf.ku-228.zb-2eb)!", + result: { + word: "wzburzony", + correct: 28, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "27.07.2025", + }, + }, + { + date: "27.07.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYlJTLip3duIzYy0SdipnLk1yd6RmL2EmYtUWat5CMuETMuMjLyIjL4AjMtknbvpnc1Jme3hSI", + value: "!(wzburzony-208.22.3.11.0.mie-ba6.dzw-d.zbu-2c2.wzb-2eb)!", + result: { + word: "wzburzony", + correct: 22, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "27.07.2025", + }, + }, + { + date: "27.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYlJTLip3duQGN00iejVnLhFjM10ievBnLw4yNuIjL2EjL4AjMtknbvpnc1Jme3hSI", + value: "!(wzburzony-208.16.2.7.0.poz-521a.ucz-44d.wzb-2eb)!", + result: { + word: "wzburzony", + correct: 16, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "27.07.2025", + }, + }, + { + date: "27.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiVmMtIme35iMjJTL1JmeuMGZ0ETLrR2buMTO4EWMtoncw5CMuETMuIjL2IjL4AjMtknbvpnc1Jme3hSI", + value: "!(wzburzony-208.26.2.11.0.prz-1a893.odk-14dc.zbu-2c2.wzb-2eb)!", + result: { + word: "wzburzony", + correct: 26, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 39, + date: "27.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dobre-oj-dobre-17-05-2025-flag-pl-diffle-difflepl-grywebowe-35-liter-w-5-slowach" +] = [ + { + date: "17.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWOj1SZkpnL0ITLyVmbukjMtsWYuIjNtwWZy5SMjFTLyFWbuAjLzEjL14yNx4yNzETLrFmeyVGZ6hSI", + value: "!(zderzak-137.17.5.13.0.mar-1c1.rel-62.ak-29.ner-24.zde-c9d)!", + result: { + word: "zderzak", + correct: 17, + position: 5, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "17.05.2025", + }, + }, + { + date: "17.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ5MWLlRmeuImNy0SZ6JnLiVWOtM3br5CMuQjL14iMx4yNzETLrFmeyVGZ6hSI", + value: "!(zderzak-137.12.5.4.0.kos-9eb.rze-26b.zde-c9d)!", + result: { + word: "zderzak", + correct: 12, + position: 5, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "17.05.2025", + }, + }, + { + date: "17.05.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKklzYtUGZ65iNhJWLllWbuAjLwEjLx4CMx4yNzETLrFmeyVGZ6hSI", + value: "!(zderzak-137.10.1.10.0.mie-ba6.zde-c9d)!", + result: { + word: "zderzak", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "17.05.2025", + }, + }, + { + date: "17.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWOj1SZkpnLkJDNtIHcz5CMucjLy4CMx4yNzETLrFmeyVGZ6hSI", + value: "!(zderzak-137.10.2.7.0.spr-42d.zde-c9d)!", + result: { + word: "zderzak", + correct: 10, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "17.05.2025", + }, + }, + { + date: "17.05.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWOj1SZkpnL3IzMtsWZk5iYwMTMtQWYu5CMucjL04CNx4yNzETLrFmeyVGZ6hSI", + value: "!(zderzak-137.14.4.7.0.nad-130b.dek-327.zde-c9d)!", + result: { + word: "zderzak", + correct: 14, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "17.05.2025", + }, + }, + { + date: "17.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWOj1SZkpnL0EWNtonc0VWau5CMukjLx4iMx4yNzETLrFmeyVGZ6hSI", + value: "!(zderzak-137.12.1.9.0.nietrz-5a4.zde-c9d)!", + result: { + word: "zderzak", + correct: 12, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "17.05.2025", + }, + }, + { + date: "17.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ5MWLlRmeuYjZi1SbvRmLmBTMtQXdm5iM30ieytmLzI2MtUmey5yY2EWLhJ3ZuAjLxEjLy4SMy4yNzETLrFmeyVGZ6hSI", + value: + "!(zderzak-137.21.2.11.0.gra-a6c.rze-3b3.krz-72.fut-10f.dom-bf6.zde-c9d)!", + result: { + word: "zderzak", + correct: 21, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "17.05.2025", + }, + }, + { + date: "17.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ5MWLlRmeukDOtMWYs5SYxITNto3bw5CMugjLz4iMx4yNzETLrFmeyVGZ6hSI", + value: "!(zderzak-137.12.3.8.0.poz-521a.lac-89.zde-c9d)!", + result: { + word: "zderzak", + correct: 12, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "17.05.2025", + }, + }, + { + date: "17.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKklzYtUGZ65SYxczMtoncw5CMuYjLy4CMx4yNzETLrFmeyVGZ6hSI", + value: "!(zderzak-137.10.2.6.0.prz-371a.zde-c9d)!", + result: { + word: "zderzak", + correct: 10, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "17.05.2025", + }, + }, + { + date: "17.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWOj1SZkpnLh1ieyRmLzkDOhFTL6JHcuAjLyEjLy4CNx4yNzETLrFmeyVGZ6hSI", + value: "!(zderzak-137.14.2.12.0.prz-1a893.drz-a.zde-c9d)!", + result: { + word: "zderzak", + correct: 14, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "17.05.2025", + }, + }, + { + date: "17.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ5MWLlRmeuYzMy0SZkVnL0YWMtQWe35CMuUjLy4SNx4yNzETLrFmeyVGZ6hSI", + value: "!(zderzak-137.15.2.5.0.wyd-1f4.ude-236.zde-c9d)!", + result: { + word: "zderzak", + correct: 15, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "17.05.2025", + }, + }, + { + date: "17.05.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWOj1SZkpnLxQjMtUnck5SY2ITLk5WauAjLxEjLz4yMx4yNzETLrFmeyVGZ6hSI", + value: "!(zderzak-137.13.3.11.0.ind-26a.dru-241.zde-c9d)!", + result: { + word: "zderzak", + correct: 13, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "17.05.2025", + }, + }, + { + date: "17.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWOj1SZkpnL5QjMtQ2bt5CMucjLw4iMx4yNzETLrFmeyVGZ6hSI", + value: "!(zderzak-137.12.0.7.0.mod-249.zde-c9d)!", + result: { + word: "zderzak", + correct: 12, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "17.05.2025", + }, + }, + { + date: "17.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWOj1SZkpnL1I2MtUmey5iM0MTLyFWbucjMtsWdl5CMugjL14SNx4yNzETLrFmeyVGZ6hSI", + value: "!(zderzak-137.15.5.8.0.euk-27.mar-342.rze-3b5.zde-c9d)!", + result: { + word: "zderzak", + correct: 15, + position: 5, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "17.05.2025", + }, + }, + { + date: "17.05.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWOj1SZkpnL4QTNtUWaw5CMuYjLx4SMx4yNzETLrFmeyVGZ6hSI", + value: "!(zderzak-137.11.1.6.0.pie-548.zde-c9d)!", + result: { + word: "zderzak", + correct: 11, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "17.05.2025", + }, + }, + { + date: "17.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ5MWLlRmeuQTYtcHZh5CMuUjLx4SMx4yNzETLrFmeyVGZ6hSI", + value: "!(zderzak-137.11.1.5.0.adw-a4.zde-c9d)!", + result: { + word: "zderzak", + correct: 11, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "17.05.2025", + }, + }, + { + date: "17.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWOj1SZkpnLjRDNtEmcn5SMjFTLyVGZuQ2Yx0iclJmLh1CZl1mL0YjMtIHdz5iZiJTL1h2YuAjL3EjLz4CNy4yNzETLrFmeyVGZ6hSI", + value: + "!(zderzak-137.24.3.17.0.chu-2bf.str-264.med-a.ber-1cd.der-1c1.gra-44c.zde-c9d)!", + result: { + word: "zderzak", + correct: 24, + position: 3, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 44, + date: "17.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dobry-poczatek-ale-potem-za-duzo-mozliwosci-11-07-2025-diffle-difflepl-grywebowe" +] = [ + { + date: "11.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0IWMtoXam5CMjFjL4YjLmVDNtg2Yz4yM3QTLjlGbuIWZ50ycvtmLw4yMx4SMugTMuITOx0Seup3Y5pXamhSI", + value: "!(fizyczny-192.18.1.13.0.kos-9eb.lic-473.3ch-45f.68.1c0.fiz-1b4)!", + result: { + word: "fizyczny", + correct: 18, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "11.07.2025", + }, + }, + { + date: "11.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjYx0iepZmLkZWL6VXbuQTY10ieyRXZp5mLw4yMx4iMuYTMuITOx0Seup3Y5pXamhSI", + value: "!(fizyczny-192.16.2.13.0.nietrz-5a4.muz-fd.fiz-1b4)!", + result: { + word: "fizyczny", + correct: 16, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "11.07.2025", + }, + }, + { + date: "11.07.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNiFTL6lmZuEWZz0Se6NnLhRmMy0yavBnLw4SMx4iMuUTMuITOx0Seup3Y5pXamhSI", + value: "!(fizyczny-192.15.2.11.0.pok-22da.szy-3ea.fiz-1b4)!", + result: { + word: "fizyczny", + correct: 15, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "11.07.2025", + }, + }, + { + date: "11.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNiFTL6lmZuUTNx0SbppnLzYWL0lmYuMzMt8Waw5iMiJTLulGbuMmNh1SYydmLw4SMx4iMukTMuITOx0Seup3Y5pXamhSI", + value: + "!(fizyczny-192.19.2.11.0.gra-a6c.lin-2b2.pio-33.bit-f3.zim-155.fiz-1b4)!", + result: { + word: "fizyczny", + correct: 19, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "11.07.2025", + }, + }, + { + date: "11.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjYx0iepZmLkJjMtQXat5yM3ETLul3YuQmM00icwNnLw4yMx4iMuEjMuITOx0Seup3Y5pXamhSI", + value: "!(fizyczny-192.21.2.13.0.spr-42d.cyn-173.mit-22d.fiz-1b4)!", + result: { + word: "fizyczny", + correct: 21, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "11.07.2025", + }, + }, + { + date: "11.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjYx0iepZmLzcTMt4Wej5SMtMWan5iN1QTLoN2MuYWYtMWdo5SN1ETLtlmeuMTY10ibpdnLwYWNy0ibvtmLx4SOx4iMugjMuITOx0Seup3Y5pXamhSI", + value: + "!(fizyczny-192.28.2.19.1.kon-25f0.win-5a3.zim-155.huc-af.3ch-456.gic-1.cyn-173.fiz-1b4)!", + result: { + word: "fizyczny", + correct: 28, + position: 2, + incorrect: 19, + knownIncorrect: 1, + totalWords: 8, + totalLetters: 49, + date: "11.07.2025", + }, + }, + { + date: "11.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0IWMtoXam5iN0MTMtUWaw5SO1QTLjlGbuYmYy0SdoNmLw4yMx4SMugTMuITOx0Seup3Y5pXamhSI", + value: "!(fizyczny-192.18.1.13.0.chu-2bf.lic-459.pie-1346.fiz-1b4)!", + result: { + word: "fizyczny", + correct: 18, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "11.07.2025", + }, + }, + { + date: "11.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjYx0iepZmL3ETLvtWauMzN00yYpxmLhFzNz0ieyBnLw4CNx4SMukTMuITOx0Seup3Y5pXamhSI", + value: "!(fizyczny-192.19.1.14.0.prz-371a.lic-473.iko-17.fiz-1b4)!", + result: { + word: "fizyczny", + correct: 19, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "11.07.2025", + }, + }, + { + date: "11.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNiFTL6lmZuUmMtoXd05CNmFTLkl3duAjL34iMuMTMuITOx0Seup3Y5pXamhSI", + value: "!(fizyczny-192.13.2.7.0.wyd-1f4.tuz-2e.fiz-1b4)!", + result: { + word: "fizyczny", + correct: 13, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "11.07.2025", + }, + }, + { + date: "11.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjYx0iepZmL3kTZt42br5yM5gTYx0ieyBnLw4SMx4yMuUTMuITOx0Seup3Y5pXamhSI", + value: "!(fizyczny-192.15.3.11.0.prz-1a893.kon-e97.fiz-1b4)!", + result: { + word: "fizyczny", + correct: 15, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "11.07.2025", + }, + }, + { + date: "11.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0IWMtoXam5yM3QTLjlGbuQjY20SY3tmLw4SMx4iMuYTMuITOx0Seup3Y5pXamhSI", + value: "!(fizyczny-192.16.2.11.0.kwa-6b4.lic-473.fiz-1b4)!", + result: { + word: "fizyczny", + correct: 16, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "11.07.2025", + }, + }, + { + date: "11.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNiFTL65SMz0yZpZmL2EWMtwWaugDZtkGbz5SN1ETLtlmeuQWNtQWai5SN3QTLul2duMTOy0CbpBnLkNWYt4Wat5yNy0ya1VmL04SMy4SMuYzMuITOx0Seup3Y5pXamhSI", + value: + "!(fizyczny-192.36.1.21.4.euk-27.min-acd.pil-293.win-475.bid-5d.zim-155.sli-d8.il-1a6.fig-31.z-1b4)!", + result: { + word: "fizyczny", + correct: 36, + position: 1, + incorrect: 21, + knownIncorrect: 4, + totalWords: 10, + totalLetters: 58, + date: "11.07.2025", + }, + }, + { + date: "11.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0IWMtoXam5CM20CajNjL0kjYtAXao5SY2ETLu5WauQ2Yh1ibp1mLmJTMtg2Yz4yMl1ydrFmLw4SMy4CMuEjMuITOx0Seup3Y5pXamhSI", + value: + "!(fizyczny-192.21.0.21.0.akw-e3.3ch-12f.min-acd.inn-16a.hip-b94.3ch-60.fiz-1b4)!", + result: { + word: "fizyczny", + correct: 21, + position: 0, + incorrect: 21, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "11.07.2025", + }, + }, + { + date: "11.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjYx0iepZmL5EmMtoXa35yM4ITL6lGbuEWMyUTL69GcuAjL54SMukTMuITOx0Seup3Y5pXamhSI", + value: "!(fizyczny-192.19.1.9.0.poz-521a.liz-283.wiz-2a9.fiz-1b4)!", + result: { + word: "fizyczny", + correct: 19, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "11.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dosc-wymagajace-ale-drugie-slowo-dobrze-weszlo-30-05-2025-diffle-difflepl-gryweb" +] = [ + { + date: "30.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJTYtMWYuEjMtMWZu5yM0MTMtwWe35CMugjLx4yMx4CM1ETLll2Y5kTJ0MUJpNWYuhSI", + value: "!(nacięcie-150.13.1.8.0.wyl-1343.nec-21.ac-a2c)!", + result: { + word: "nacięcie", + correct: 13, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "30.05.2025", + }, + }, + { + date: "30.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYyEWLjFmLyITLjVmLxITMtMWau5iYlRGZtoncw5CMukjLy4iMy4CM1ETLll2Y5kTJ0MUJpNWYuhSI", + value: "!(nacięcie-150.22.2.9.0.prz-ddeb.nic-121.ec-22.ac-a2c)!", + result: { + word: "nacięcie", + correct: 22, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "30.05.2025", + }, + }, + { + date: "30.05.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYyEWLj5CM2cTLy5yM2gTLwFmbuAzYj1Cdl1mL4kTLvpneuAjL2EjLx4iNx4CM1ETLll2Y5kTJ0MUJpNWYuhSI", + value: "!(nacięcie-150.16.1.16.0.zzo-98.met-cc0.nap-863.r-760.c-a2c)!", + result: { + word: "nacięcie", + correct: 16, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "30.05.2025", + }, + }, + { + date: "30.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYyEWLj5SOiZ2MtQWYu5CZ4ETLwNXYuAjLyEjLy4SNx4CM1ETLll2Y5kTJ0MUJpNWYuhSI", + value: "!(nacięcie-150.15.2.12.0.asp-18d.nad-3fb9.c-a2c)!", + result: { + word: "nacięcie", + correct: 15, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "30.05.2025", + }, + }, + { + date: "30.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmMh5yY0EmL0I2NtMWYu5iZiJTL1h2YuAjLwEjLy4SOx4CM1ETLll2Y5kTJ0MUJpNWYuhSI", + value: "!(nacięcie-150.19.2.10.0.chu-2bf.nac-7b4.a4c.a2c)!", + result: { + word: "nacięcie", + correct: 19, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "30.05.2025", + }, + }, + { + date: "30.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJTYuUGO40yYh5mL5QjMtQ2bt5CMugjLy4iNx4CM1ETLll2Y5kTJ0MUJpNWYuhSI", + value: "!(nacięcie-150.16.2.8.0.mod-249.nac-88e.a2c)!", + result: { + word: "nacięcie", + correct: 16, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "30.05.2025", + }, + }, + { + date: "30.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYyEWLjFmbuUWMtEWaj5CZ5kTMtIXYw5SOjJTL6lGbuIzMzETLzl3duAjL1EjLx4iNx4CM1ETLll2Y5kTJ0MUJpNWYuhSI", + value: + "!(nacięcie-150.16.1.15.0.wys-1332.liz-2c9.par-199d.cia-1e.nac-a2c)!", + result: { + word: "nacięcie", + correct: 16, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "30.05.2025", + }, + }, + { + date: "30.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJTYuUmN40yYh5mL3YzNtwWYn5SOmJTL69WbuUTNy0iavdnLzkDOhFTL6JHcuAjL3IjLy4COx4CM1ETLll2Y5kTJ0MUJpNWYuhSI", + value: + "!(nacięcie-150.18.2.27.0.prz-1a893.woj-255.moz-2f9.gal-767.nac-86e.a2c)!", + result: { + word: "nacięcie", + correct: 18, + position: 2, + incorrect: 27, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 47, + date: "30.05.2025", + }, + }, + { + date: "30.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJTYtMWYu5CM50yZhpmL4AzNtwWat5CMucjLx4iMx4CM1ETLll2Y5kTJ0MUJpNWYuhSI", + value: "!(nacięcie-150.12.1.7.0.mil-708.jag-90.nac-a2c)!", + result: { + word: "nacięcie", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "30.05.2025", + }, + }, + { + date: "30.05.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYyEmLjNmYtMWYu5iN0ATMtEGbw5iNhJWLllWbuAjLzEjLz4CMy4CM1ETLll2Y5kTJ0MUJpNWYuhSI", + value: "!(nacięcie-150.20.3.13.0.mie-ba6.pla-1046.nac-bcc.a2c)!", + result: { + word: "nacięcie", + correct: 20, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "30.05.2025", + }, + }, + { + date: "30.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmMh1yYuUWZz0yZh5iZmFTLrVmL5MjMtM3bu5yY5MTLuFGbuQWM3MTL6JHcuAjL0EjLz4SOy4CM1ETLll2Y5kTJ0MUJpNWYuhSI", + value: + "!(nacięcie-150.29.3.14.0.prz-371d.lan-39c.nos-239.ek-1ff.ag-3ee.c-a2c)!", + result: { + word: "nacięcie", + correct: 29, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 46, + date: "30.05.2025", + }, + }, + { + date: "30.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmMh1yYuYTYk1CZh5mLiR2Nx0ibvBnL4kTLvpneuAjLyEjLx4yNx4CM1ETLll2Y5kTJ0MUJpNWYuhSI", + value: "!(nacięcie-150.17.1.12.0.zzo-98.pon-17db.nad-da6.c-a2c)!", + result: { + word: "nacięcie", + correct: 17, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "30.05.2025", + }, + }, + { + date: "30.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYyEWLj5iNjJWLw5yN4kTLt5SMhRWL3FmbuIDNx0SauNnL4kTLvpneuAjL3EjLx4SNy4CM1ETLll2Y5kTJ0MUJpNWYuhSI", + value: + "!(nacięcie-150.25.1.17.0.zzo-98.sni-142.naw-da1.m-987.p-bc6.c-a2c)!", + result: { + word: "nacięcie", + correct: 25, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "30.05.2025", + }, + }, + { + date: "30.05.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmMh1yYukDM10ych5yMhFTLslWbllmbukjNmRTL6JHcuAjL4EjLy4SOx4CM1ETLll2Y5kTJ0MUJpNWYuhSI", + value: "!(nacięcie-150.19.2.18.0.prz-4f69.niemil-1a3.as-509.c-a2c)!", + result: { + word: "nacięcie", + correct: 19, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 39, + date: "30.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/faaaajne-06-07-2025-flag-pl-diffle-difflepl-grywebowe-38-liter-w-5-slowach-large" +] = [ + { + date: "06.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOmNTMuMzM1EjL1QzNx0ich5CN00SYytmL3QTOx0SY6NnLw4yNuUjL2IjL3gTMtk3dvxWZtJXYrhSI", + value: "!(karmelowy-187.26.5.7.0.sza-1947.kra-44.ar-1745.1533.13f9)!", + result: { + word: "karmelowy", + correct: 26, + position: 5, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "06.07.2025", + }, + }, + { + date: "06.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkjZzETLyFmL5IWLy92auQmM00icwNnLw4COuUjL2EjL3gTMtk3dvxWZtJXYrhSI", + value: "!(karmelowy-187.16.5.8.0.spr-42d.kor-b9.ar-13f9)!", + result: { + word: "karmelowy", + correct: 16, + position: 5, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "06.07.2025", + }, + }, + { + date: "06.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5Y2Mx0ich5COzQTLlJ3auQTY10ieyRXZp5mLw4COuYjL3EjL3gTMtk3dvxWZtJXYrhSI", + value: "!(karmelowy-187.17.6.8.0.nietrz-5a4.kre-438.ar-13f9)!", + result: { + word: "karmelowy", + correct: 17, + position: 6, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "06.07.2025", + }, + }, + { + date: "06.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOmNTMtIXYr5SNxETLhxWYuYmYy0SdoNmLw4COuIjL3EjL3gTMtk3dvxWZtJXYrhSI", + value: "!(karmelowy-187.17.2.8.0.chu-2bf.ala-115.kar-13f9)!", + result: { + word: "karmelowy", + correct: 17, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "06.07.2025", + }, + }, + { + date: "06.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkjZzETLyF2auUGOz0ichhmLlRWZtEmcw5iYhRTLoN2MukDNy0CZv1mLw4SOucjLxIjL3gTMtk3dvxWZtJXYrhSI", + value: + "!(karmelowy-187.21.7.9.0.mod-249.3ch-4ab.pra-ede.har-38e.kar-13f9)!", + result: { + word: "karmelowy", + correct: 21, + position: 7, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "06.07.2025", + }, + }, + { + date: "06.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOmNTMtIXYuYWYm1Cbv5SNzIjLmRjYtUmLiBjNt8mcr5iMhFTLhVmcuYWY2ETLil3duYWM50SY6NnLjZTYtEmcn5CMuQTMuYjL3MjL3gTMtk3dvxWZtJXYrhSI", + value: + "!(karmelowy-187.37.6.14.0.gra-a6c.sza-91f.wyb-16af.rea-1a2.kro-60b.e-b4f.235.ol-faf.ar-13f9)!", + result: { + word: "karmelowy", + correct: 37, + position: 6, + incorrect: 14, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 57, + date: "06.07.2025", + }, + }, + { + date: "06.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOmNTMtInLlJzMt0WYuQjY20SY3tmLw4yNuUjLwIjL3gTMtk3dvxWZtJXYrhSI", + value: "!(karmelowy-187.20.5.7.0.kwa-6b4.am-32e.r-13f9)!", + result: { + word: "karmelowy", + correct: 20, + position: 5, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 32, + date: "06.07.2025", + }, + }, + { + date: "06.07.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOmNTMtIXYr5SZlNTLrFWbucTZh1ibhBnLw4iNuQjL2EjL3gTMtk3dvxWZtJXYrhSI", + value: "!(karmelowy-187.16.4.6.0.pan-ae7.mak-3ee.kar-13f9)!", + result: { + word: "karmelowy", + correct: 16, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "06.07.2025", + }, + }, + { + date: "06.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5Y2Mx0ichtmL1ETMtEGbh5SMkFTLyFWbuQjZx0CZ5dnLw4yNuQjLzIjL3gTMtk3dvxWZtJXYrhSI", + value: "!(karmelowy-187.23.4.7.0.wyd-1f4.mar-1d1.ala-115.kar-13f9)!", + result: { + word: "karmelowy", + correct: 23, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "06.07.2025", + }, + }, + { + date: "06.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkjZzEjLhZTYtIXYr5yNy0ya1VmLw4iNuEjLxIjL3gTMtk3dvxWZtJXYrhSI", + value: "!(karmelowy-187.21.1.6.0.euk-27.kar-a6a.13f9)!", + result: { + word: "karmelowy", + correct: 21, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "06.07.2025", + }, + }, + { + date: "06.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkjZzETLy5iN0EWLsF2auMTO4EWMtoncw5CMuATMuUjL2EjL3gTMtk3dvxWZtJXYrhSI", + value: "!(karmelowy-187.16.5.10.0.prz-1a893.kal-a46.r-13f9)!", + result: { + word: "karmelowy", + correct: 16, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "06.07.2025", + }, + }, + { + date: "06.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOmNTMuMjZzEjLxEzMx0ichtmLllTMtIXYt5SYxczMtoncw5CMuATMuIjLwMjL3gTMtk3dvxWZtJXYrhSI", + value: "!(karmelowy-187.30.2.10.0.prz-371a.mar-19e.kar-1311.13f3.13f9)!", + result: { + word: "karmelowy", + correct: 30, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "06.07.2025", + }, + }, + { + date: "06.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5Y2Mx0ichtmLyEjM10ievBnLw4CNuIjLyEjL3gTMtk3dvxWZtJXYrhSI", + value: "!(karmelowy-187.12.2.4.0.poz-5212.kar-13f9)!", + result: { + word: "karmelowy", + correct: 12, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "06.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/fajne-potrafi-zmylic-22-05-2025-diffle-difflepl-grywebowe-22-litery-w-3-slowach-" +] = [ + { + date: "22.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjMz4yY5QWLlp3YuMDNzETLsl3duAjL24CMuYTMuIDNx0yN4UCNDViQ5USNDVSdsVmejhSI", + value: "!(czeluść-142.16.0.6.0.wyl-1343.cze-d9c.328)!", + result: { + word: "czeluść", + correct: 16, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "22.05.2025", + }, + }, + { + date: "22.05.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjMz0SZ6NmLlZjMtUmeuEWNtUGbz5COhNDNto3bw5CO50yb6pnLw4iNx4yMugTMuIDNx0yN4UCNDViQ5USNDVSdsVmejhSI", + value: "!(czeluść-142.18.3.16.0.zzo-98.poz-43a8.sle-5a.ze-26e.cze-328)!", + result: { + word: "czeluść", + correct: 18, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "22.05.2025", + }, + }, + { + date: "22.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOyMTLlp3YuUzMy0SZkVnL5ITLpNHcuAjL44iMuATMuIDNx0yN4UCNDViQ5USNDVSdsVmejhSI", + value: "!(czeluść-142.10.2.8.0.psi-29.ude-235.cze-328)!", + result: { + word: "czeluść", + correct: 10, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "22.05.2025", + }, + }, + { + date: "22.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOyMjLjlDZtUmej5CZ4ETLwNXYuAjL34SMuYTMuIDNx0yN4UCNDViQ5USNDVSdsVmejhSI", + value: "!(czeluść-142.16.1.7.0.asp-18d.cze-d9c.328)!", + result: { + word: "czeluść", + correct: 16, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "22.05.2025", + }, + }, + { + date: "22.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4IzMtUmeuMWLsh2YuIzMzETLzl3duAjL54CMuETMuIDNx0yN4UCNDViQ5USNDVSdsVmejhSI", + value: "!(czeluść-142.11.0.9.0.wys-1332.chl-c.ze-328)!", + result: { + word: "czeluść", + correct: 11, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "22.05.2025", + }, + }, + { + date: "22.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjMz0SZuUmNy0Sd65iZiJTL1h2YuAjL54SMuITMuIDNx0yN4UCNDViQ5USNDVSdsVmejhSI", + value: "!(czeluść-142.12.1.9.0.chu-2bf.zu-26e.e-328)!", + result: { + word: "czeluść", + correct: 12, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "22.05.2025", + }, + }, + { + date: "22.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOyMTLlp3YugTYtoXdt5yMz0ialpnL3gTLhVmYuYDNl1CczdnLw4COx4CMugTMuIDNx0yN4UCNDViQ5USNDVSdsVmejhSI", + value: "!(czeluść-142.18.0.18.0.wsp-e46.bea-87.zej-33.muz-a8.cze-328)!", + result: { + word: "czeluść", + correct: 18, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "22.05.2025", + }, + }, + { + date: "22.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOyMjLjlDZtUmej5SZ5QjMtMWe35CO50yb6pnLw4SMx4CMugTMuIDNx0yN4UCNDViQ5USNDVSdsVmejhSI", + value: "!(czeluść-142.18.0.11.0.zzo-98.wyc-249e.cze-d9c.328)!", + result: { + word: "czeluść", + correct: 18, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "22.05.2025", + }, + }, + { + date: "22.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOyMjLjlDZtUmej5iZ5QTLvxmeuAjLy4CMuUTMuIDNx0yN4UCNDViQ5USNDVSdsVmejhSI", + value: "!(czeluść-142.15.0.2.0.zlo-49f.cze-d9c.328)!", + result: { + word: "czeluść", + correct: 15, + position: 0, + incorrect: 2, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "22.05.2025", + }, + }, + { + date: "22.05.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4IzMtUmej5iNhJWLllWbuAjLwEjLy4SOuIDNx0yN4UCNDViQ5USNDVSdsVmejhSI", + value: "!(czeluść-142.9.2.10.0.mie-ba6.cze-328)!", + result: { + word: "czeluść", + correct: 9, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "22.05.2025", + }, + }, + { + date: "22.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOyMTLlp3YuMTO4EWMtoncw5CMugjLz4SOuIDNx0yN4UCNDViQ5USNDVSdsVmejhSI", + value: "!(czeluść-142.9.3.8.0.prz-1a893.cze-328)!", + result: { + word: "czeluść", + correct: 9, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "22.05.2025", + }, + }, + { + date: "22.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4IzMtUmej5yYh1SblpnL3U2Yj1ieyBnLw4CMx4CMuQTMuIDNx0yN4UCNDViQ5USNDVSdsVmejhSI", + value: "!(czeluść-142.14.0.10.0.prz-cce7.zem-ac.cze-328)!", + result: { + word: "czeluść", + correct: 14, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "22.05.2025", + }, + }, + { + date: "22.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOyMTLl5yYxETL1p3YuEGZ10iejVnLjN2MtEmez5CO50yb6pnLw4iMx4iMugTMuIDNx0yN4UCNDViQ5USNDVSdsVmejhSI", + value: "!(czeluść-142.18.2.12.0.zzo-98.sza-3cc.ucz-5da.czu-11c.e-328)!", + result: { + word: "czeluść", + correct: 18, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "22.05.2025", + }, + }, + { + date: "22.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOyMjLjlDZtUmej5SO0ITLk9WbuAjL54iMuMTMuIDNx0yN4UCNDViQ5USNDVSdsVmejhSI", + value: "!(czeluść-142.13.2.9.0.mod-249.cze-d9c.328)!", + result: { + word: "czeluść", + correct: 13, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "22.05.2025", + }, + }, + { + date: "22.05.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOyMjLjlDZtUmej5SN40ialdnLjJWY10ievBnLw4yMx4CMuUTMuIDNx0yN4UCNDViQ5USNDVSdsVmejhSI", + value: "!(czeluść-142.15.0.13.0.poz-5abc.wej-85.cze-d9c.328)!", + result: { + word: "czeluść", + correct: 15, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "22.05.2025", + }, + }, + { + date: "22.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOyMTLl5yYxETL1p3YuUWL6NWduMWYiRTLk9GcuAjL44SMucTMuIDNx0yN4UCNDViQ5USNDVSdsVmejhSI", + value: "!(czeluść-142.17.1.8.0.pod-4bac.ucz-e.czu-11c.e-328)!", + result: { + word: "czeluść", + correct: 17, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "22.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/fajne-slightly-smiling-face-26-05-2025-diffle-difflepl-grywebowe-26-liter-w-4-sl" +] = [ + { + date: "26.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWOtIWZj5COjFTLsVmYuUTYy0CbpdnL5YWOtM3br5CMukjLx4iNx4iN0ETLhtGb1JWZjhSI", + value: "!(cebulka-146.16.1.9.0.kos-9f9.wil-2a5.bel-1c8.ceb-9b)!", + result: { + word: "cebulka", + correct: 16, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "26.05.2025", + }, + }, + { + date: "26.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50iYlNmL4MWMtwWZi5CO00ialhmLwITLrVGZuQjN3ETLu92auAjL0EjLy4SOx4iN0ETLhtGb1JWZjhSI", + value: "!(cebulka-146.19.2.14.0.kon-1764.dek-20.hej-48.bel-1c8.ceb-9b)!", + result: { + word: "cebulka", + correct: 19, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "26.05.2025", + }, + }, + { + date: "26.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKilTLiV2YuQmNtIWZo5SMt8mYl5iYyETLsVmZuEWM3MTL6JHcuAjL0EjLw4SMy4iN0ETLhtGb1JWZjhSI", + value: "!(cebulka-146.21.0.14.0.prz-371a.fel-12b.ebo-1.heb-6d.ceb-9b)!", + result: { + word: "cebulka", + correct: 21, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "26.05.2025", + }, + }, + { + date: "26.05.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWOtIWZj5iNlFTLjV3auEGZyITLr9GcuAjLxEjLy4SMx4iN0ETLhtGb1JWZjhSI", + value: "!(cebulka-146.11.2.11.0.pok-22da.kuc-1e6.ceb-9b)!", + result: { + word: "cebulka", + correct: 11, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "26.05.2025", + }, + }, + { + date: "26.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWOuQ2MtIWZuATLtVnLmJmMtUHaj5CMugjLw4SOx4iN0ETLhtGb1JWZjhSI", + value: "!(cebulka-146.19.0.8.0.chu-2bf.um-0.eb-3d.9b)!", + result: { + word: "cebulka", + correct: 19, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "26.05.2025", + }, + }, + { + date: "26.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50iYl5yMlFTLsh2YuATOtsWZs5CMtQXZt5CZyQTLyB3cuAjL0EjL04yNx4iN0ETLhtGb1JWZjhSI", + value: "!(cebulka-146.17.4.14.0.spr-42d.met-0.lek-90.chl-1e3.eb-9b)!", + result: { + word: "cebulka", + correct: 17, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "26.05.2025", + }, + }, + { + date: "26.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWOuQ2MtIWZj5SMi1SdtVmLzkDOhFTL6JHcuAjLxEjLy4CMy4iN0ETLhtGb1JWZjhSI", + value: "!(cebulka-146.20.2.11.0.prz-1a893.emu-b1.ceb-3d.9b)!", + result: { + word: "cebulka", + correct: 20, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "26.05.2025", + }, + }, + { + date: "26.05.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWOuQ2MtIWZj5CN2gTMt42bw5CMuUjLx4SNx4iN0ETLhtGb1JWZjhSI", + value: "!(cebulka-146.15.1.5.0.pon-1864.ceb-3d.9b)!", + result: { + word: "cebulka", + correct: 15, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "26.05.2025", + }, + }, + { + date: "26.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKilTLiV2YuEDNtUma65iZ40CdlJmLzczMtQWZt5CMts2cl5yY2EWLhJ3ZuAjLxEjLy4SMy4iN0ETLhtGb1JWZjhSI", + value: + "!(cebulka-146.21.2.11.0.gra-a6c.esk-0.med-373.bet-8f.zje-41.ceb-9b)!", + result: { + word: "cebulka", + correct: 21, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "26.05.2025", + }, + }, + { + date: "26.05.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50iYlNmL2EmYtUWat5CMukjLy4CMx4iN0ETLhtGb1JWZjhSI", + value: "!(cebulka-146.10.2.9.0.mie-ba6.ceb-9b)!", + result: { + word: "cebulka", + correct: 10, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "26.05.2025", + }, + }, + { + date: "26.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50iYlNmL4MWMtwWZi5SYxITNto3bw5CMucjLy4yMx4iN0ETLhtGb1JWZjhSI", + value: "!(cebulka-146.13.2.7.0.poz-521a.bel-1c8.ceb-9b)!", + result: { + word: "cebulka", + correct: 13, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "26.05.2025", + }, + }, + { + date: "26.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWOtIWZj5CMtwWdn5CMtsWZi5CNhVTL6JHdllmbuAjLzEjLx4iNx4iN0ETLhtGb1JWZjhSI", + value: "!(cebulka-146.16.1.13.0.nietrz-5a4.bek-0.gul-0.ceb-9b)!", + result: { + word: "cebulka", + correct: 16, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "26.05.2025", + }, + }, + { + date: "26.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWOtIWZj5CMhJTLsVGcucjMtsWdl5CMukjLx4SNx4iN0ETLhtGb1JWZjhSI", + value: "!(cebulka-146.15.1.9.0.euk-27.pel-2a0.ceb-9b)!", + result: { + word: "cebulka", + correct: 15, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "26.05.2025", + }, + }, + { + date: "26.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY50iYuEjNx0CbucTOtcXZj5SO0ITLk9WbuAjLwEjLx4COx4iN0ETLhtGb1JWZjhSI", + value: "!(cebulka-146.18.1.10.0.mod-249.cew-97.l-161.b-9b)!", + result: { + word: "cebulka", + correct: 18, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "26.05.2025", + }, + }, + { + date: "26.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIWOuYTNtIWZj5CNiZTLhd3auAjLwEjLz4iNx4iN0ETLhtGb1JWZjhSI", + value: "!(cebulka-146.16.3.10.0.kwa-6b4.ceb-56.9b)!", + result: { + word: "cebulka", + correct: 16, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "26.05.2025", + }, + }, + { + date: "26.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKilTLiVmLkZWMtwGaj5CMtsWZi5CMtQXZt5CNmFTLkl3duAjLwEjLz4COx4iN0ETLhtGb1JWZjhSI", + value: "!(cebulka-146.18.3.10.0.wyd-1f4.met-0.bek-0.chl-1fd.eb-9b)!", + result: { + word: "cebulka", + correct: 18, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "26.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/fuj-19-08-2025-flag-pl-diffle-difflepl-grywebowe-34-litery-w-5-slowach-large-gre" +] = [ + { + date: "19.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUmY04COhRTL09WbuAzYy0Cd1JmLw0CdvtmL3UzMm1ieyBnLw4iMx4SMuEjMuEzMy0SYjlGb5R3bthSI", + value: "!(motylica-231.21.1.12.0.prz-f357.kot-0.but-2c0.mot-4a8.4be)!", + result: { + word: "motylica", + correct: 21, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "19.08.2025", + }, + }, + { + date: "19.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUmY00Cdv1mLwMmMtQXdi5COkVTLoN2MuATLk9WbuQWZ50ycvtmLw4SMx4SMucTMuEzMy0SYjlGb5R3bthSI", + value: "!(motylica-231.17.1.11.0.kos-9ed.mod-0.3ch-5d8.but-2c0.mot-4be)!", + result: { + word: "motylica", + correct: 17, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "19.08.2025", + }, + }, + { + date: "19.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlJGNtQ3bt5yYwETLiVHduQTY10ieyRXZp5mLw4iMx4CNuYTMuEzMy0SYjlGb5R3bthSI", + value: "!(motylica-231.16.4.12.0.nietrz-5a4.tub-10c.mot-4be)!", + result: { + word: "motylica", + correct: 16, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 32, + date: "19.08.2025", + }, + }, + { + date: "19.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZiRTL09WbuUjNtwWe05CMtMWas5CNiFTLhVmcuEjZyETLs9GcuYmYy0SdoNmLw4iMx4iMuUjMuEzMy0SYjlGb5R3bthSI", + value: + "!(motylica-231.25.2.12.0.chu-2bf.pol-12f1.rea-1b4.lic-0.tyl-65.mot-4be)!", + result: { + word: "motylica", + correct: 25, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "19.08.2025", + }, + }, + { + date: "19.08.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlJGNtQ3bt5SZkFTLi92auQmM00icwNnLw4SMx4iMuMTMuEzMy0SYjlGb5R3bthSI", + value: "!(motylica-231.13.2.11.0.spr-42d.kob-1de.mot-4be)!", + result: { + word: "motylica", + correct: 13, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "19.08.2025", + }, + }, + { + date: "19.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZiRTL05SO0ITLk9WbuAjL34CMuMTMuEzMy0SYjlGb5R3bthSI", + value: "!(motylica-231.13.0.7.0.mod-249.t-4be)!", + result: { + word: "motylica", + correct: 13, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "19.08.2025", + }, + }, + { + date: "19.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZiRjL5QWL09mL3MWMtEWat5yY2EWLhJ3ZuAjL24iMucTMuEzMy0SYjlGb5R3bthSI", + value: "!(motylica-231.17.2.6.0.gra-a6c.mia-1c7.ot-d9.4be)!", + result: { + word: "motylica", + correct: 17, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "19.08.2025", + }, + }, + { + date: "19.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUmY00Cdv1mLx0SbvdnLkdTMtsWej5yM5gTYx0ieyBnLw4SMx4iNugTMuEzMy0SYjlGb5R3bthSI", + value: "!(motylica-231.18.6.11.0.prz-1a893.cyk-17d.wom-1.mot-4be)!", + result: { + word: "motylica", + correct: 18, + position: 6, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "19.08.2025", + }, + }, + { + date: "19.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlJGNtQ3bt5CNiZTLhd3auAjL44yMuITMuEzMy0SYjlGb5R3bthSI", + value: "!(motylica-231.12.3.8.0.kwa-6b4.mot-4be)!", + result: { + word: "motylica", + correct: 12, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "19.08.2025", + }, + }, + { + date: "19.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlJGNugTY04SOk1Cdv1mL2IWMtM3br5CNmFTLkl3duAjL44yMuQjMuEzMy0SYjlGb5R3bthSI", + value: "!(motylica-231.24.3.8.0.wyd-1f4.kos-1b6.mot-d9.4a8.4be)!", + result: { + word: "motylica", + correct: 24, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "19.08.2025", + }, + }, + { + date: "19.08.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUmY00Cdv5iNhJWLllWbuAjL34yMuITMuEzMy0SYjlGb5R3bthSI", + value: "!(motylica-231.12.3.7.0.mie-ba6.ot-4be)!", + result: { + word: "motylica", + correct: 12, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "19.08.2025", + }, + }, + { + date: "19.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZiRTL09WbukzMy0Se0NnL2U2Ytw2bw5yNy0ya1VmLx4CNx4iMuIjMuEzMy0SYjlGb5R3bthSI", + value: "!(motylica-231.22.2.14.1.euk-27.pol-ce6.sty-239.mot-4be)!", + result: { + word: "motylica", + correct: 22, + position: 2, + incorrect: 14, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 38, + date: "19.08.2025", + }, + }, + { + date: "19.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZiRTL09WbuEWMyUTL69GcuAjL24SMuETMuEzMy0SYjlGb5R3bthSI", + value: "!(motylica-231.11.1.6.0.poz-521a.mot-4be)!", + result: { + word: "motylica", + correct: 11, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "19.08.2025", + }, + }, + { + date: "19.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUmY04yNhRTL09WbukzNtg2Yz4iN40Sd09mLw0yapRnLhFzNz0ieyBnLw4iMx4CMuYjMuEzMy0SYjlGb5R3bthSI", + value: + "!(motylica-231.26.0.12.0.prz-371a.tik-0.otu-86.3ch-79.mot-4a7.4be)!", + result: { + word: "motylica", + correct: 26, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "19.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/grozne-haslo-slightly-smiling-face-09-09-2025-diffle-difflepl-grywebowe-24-liter" +] = [ + { + date: "09.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTN20CchpnL2UDNtEmej5iYllTLz92auAjL24CMugTMuITNy0SZpNmchBXY6hSI", + value: "!(zaparcie-252.18.0.6.0.kos-9eb.cza-456.zap-653)!", + result: { + word: "zaparcie", + correct: 18, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "09.09.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTN20CchpnLjJTLyVHcuAjL14yMuITMuITNy0SZpNmchBXY6hSI", + value: "!(zaparcie-252.12.3.5.0.pur-2c.zap-653)!", + result: { + word: "zaparcie", + correct: 12, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + }, + }, + { + date: "09.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM1YTLwFmeuEWM3MTL6JHcuAjL04CNuETMuITNy0SZpNmchBXY6hSI", + value: "!(zaparcie-252.11.4.4.0.prz-371a.zap-653)!", + result: { + word: "zaparcie", + correct: 11, + position: 4, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "09.09.2025", + }, + }, + { + date: "09.09.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzUjNtAXY65CNhVTL6JHdllmbuAjL44CNuETMuITNy0SZpNmchBXY6hSI", + value: "!(zaparcie-252.11.4.8.0.nietrz-5a4.zap-653)!", + result: { + word: "zaparcie", + correct: 11, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "09.09.2025", + }, + }, + { + date: "09.09.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM1YTLw5yM4QWL0FmeuEWYy0icwNnLhRmMy0yavBnLx4CMx4SNukTMuITNy0SZpNmchBXY6hSI", + value: "!(zaparcie-252.19.5.10.1.pok-22da.spr-2aa.zat-d83.p-653)!", + result: { + word: "zaparcie", + correct: 19, + position: 5, + incorrect: 10, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 34, + date: "09.09.2025", + }, + }, + { + date: "09.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzUjNtAnLjZ2MtQnLwMzMt0mLyMWNz0ycuczNyETLjFmeuYmYy0SdoNmLw4iMx4iMuQzMuITNy0SZpNmchBXY6hSI", + value: + "!(zaparcie-252.34.2.12.0.chu-2bf.zac-1277.s-35c2.m-330.t-3fc.p-653)!", + result: { + word: "zaparcie", + correct: 34, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 48, + date: "09.09.2025", + }, + }, + { + date: "09.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzUjNtAXY65CN0ETLjJXYuAjL14iMuITMuITNy0SZpNmchBXY6hSI", + value: "!(zaparcie-252.12.2.5.0.arc-144.zap-653)!", + result: { + word: "zaparcie", + correct: 12, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "09.09.2025", + }, + }, + { + date: "09.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzUjNtAXY65CZyQTLyB3cuAjL14yMuITMuITNy0SZpNmchBXY6hSI", + value: "!(zaparcie-252.12.3.5.0.spr-42d.zap-653)!", + result: { + word: "zaparcie", + correct: 12, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "09.09.2025", + }, + }, + { + date: "09.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTN20CcugjM5ETLz5yYlVWLyFmeuE2Yt0mch5yNy0ya1VmLx4CMx4iMuUjMuITNy0SZpNmchBXY6hSI", + value: "!(zaparcie-252.25.2.10.1.euk-27.arm-ca.zar-eec.s-1928.p-653)!", + result: { + word: "zaparcie", + correct: 25, + position: 2, + incorrect: 10, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 37, + date: "09.09.2025", + }, + }, + { + date: "09.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTN20CchpnL2UDNtEmej5iNhNTLyFGZuQjY20SY3tmLw4SMx4yMuMjMuITNy0SZpNmchBXY6hSI", + value: "!(zaparcie-252.23.3.11.0.kwa-6b4.dar-3a6.cza-456.zap-653)!", + result: { + word: "zaparcie", + correct: 23, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "09.09.2025", + }, + }, + { + date: "09.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTN20CchpnLkdzYtIXYw5iY4ITLyFGduUjMtIXYk5yY2EWLhJ3ZuAjL04SMucjMuITNy0SZpNmchBXY6hSI", + value: "!(zaparcie-252.27.1.4.0.gra-a6c.dar-25.tar-28b.par-c7d.zap-653)!", + result: { + word: "zaparcie", + correct: 27, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "09.09.2025", + }, + }, + { + date: "09.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzUjNtAXY65iNlFTMtEmez5CNmFTLkl3duAjL14iMuUTMuITNy0SZpNmchBXY6hSI", + value: "!(zaparcie-252.15.2.5.0.wyd-1f4.sza-11e6.zap-653)!", + result: { + word: "zaparcie", + correct: 15, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "09.09.2025", + }, + }, + { + date: "09.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM1YTLwFmeuUWMz0SY6NmLzkDOhFTL6JHcuAjL34SNuUTMuITNy0SZpNmchBXY6hSI", + value: "!(zaparcie-252.15.5.7.0.prz-1a893.cza-31e.zap-653)!", + result: { + word: "zaparcie", + correct: 15, + position: 5, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "09.09.2025", + }, + }, + { + date: "09.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTN20CcuMDMx0CZuETOm1icuEDZ1ETLjFmeuYTYi1SZp1mLw4SMx4yMukjMuITNy0SZpNmchBXY6hSI", + value: "!(zaparcie-252.29.3.11.0.mie-ba6.zac-15d1.r-f91.d-103.p-653)!", + result: { + word: "zaparcie", + correct: 29, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 43, + date: "09.09.2025", + }, + }, + { + date: "09.09.2025", + nick: "Atexor", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzUjNtAXY65yN0cTL0FGcuAjLz4SMuITMuITNy0SZpNmchBXY6hSI", + value: "!(zaparcie-252.12.1.3.0.pat-747.zap-653)!", + result: { + word: "zaparcie", + correct: 12, + position: 1, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "09.09.2025", + }, + }, + { + date: "09.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM1YTLw5yYmNTL05SMkVTMtMWY65SO0ITLk9WbuAjL24SNuMjMuITNy0SZpNmchBXY6hSI", + value: "!(zaparcie-252.23.5.6.0.mod-249.zac-15d1.t-3fc.p-653)!", + result: { + word: "zaparcie", + correct: 23, + position: 5, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "09.09.2025", + }, + }, + { + date: "09.09.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTN20CcuUWOjFTL35iMllTLiFmeuEWMx0SY6NmL2QTL6lGbuQDMh1CdhtmLx4yMx4iMugjMuITNy0SZpNmchBXY6hSI", + value: + "!(zaparcie-252.28.2.13.1.kat-a04.liz-46.cza-11a.zab-9e2.w-1c9e.p-653)!", + result: { + word: "zaparcie", + correct: 28, + position: 2, + incorrect: 13, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 43, + date: "09.09.2025", + }, + }, + { + date: "09.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM1YTLwFmeuEWMyUTL69GcuAjL14SMuITMuITNy0SZpNmchBXY6hSI", + value: "!(zaparcie-252.12.1.5.0.poz-521a.zap-653)!", + result: { + word: "zaparcie", + correct: 12, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "09.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/haslo-ladnie-wspolgra-ze-slowem-startowym-slightly-smiling-face-07-07-2025-diffl" +] = [ + { + date: "07.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZtkHav5SO0ITLvxGcucDNtQ2bn5iYllTLz92auAjLwEjLw4yNx4CO4ETLllmbklHavhSI", + value: "!(ohydnie-188.17.0.10.0.kos-9eb.god-47.plo-249.ohy-d)!", + result: { + word: "ohydnie", + correct: 17, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "07.07.2025", + }, + }, + { + date: "07.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKk1Seo5COj1Sek9mL3gjNtc2bk5CNhVTL6JHdllmbuAjLyEjL24SOx4CO4ETLllmbklHavhSI", + value: "!(ohydnie-188.19.6.12.0.nietrz-5a4.dog-687.ody-c8.hy-d)!", + result: { + word: "ohydnie", + correct: 19, + position: 6, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "07.07.2025", + }, + }, + { + date: "07.07.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmLj1Seo9mLygDOtg2Yz5SYkJjMts2bw5CMukjLy4CMy4CO4ETLllmbklHavhSI", + value: "!(ohydnie-188.20.2.9.0.pok-22da.sch-882.ohy-c.d)!", + result: { + word: "ohydnie", + correct: 20, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "07.07.2025", + }, + }, + { + date: "07.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZtkHaugzM20Cbk9mL3Y2MtQ2bt5CZyQTLyB3cuAjLxEjLw4iMy4CO4ETLllmbklHavhSI", + value: "!(ohydnie-188.22.0.11.0.spr-42d.mod-3f7.odl-638.hy-d)!", + result: { + word: "ohydnie", + correct: 22, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "07.07.2025", + }, + }, + { + date: "07.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWL5h2buEmZz0CajNjL10SauRmLjZWLoN2MuETLoNmMllmbugDM00CajNjL1gTLn9GbuYGZ04yM3UTLoN2MuQmMtA3bo5iZiJTL1h2YuAjL2EjL14SOy4CO4ETLllmbklHavhSI", + value: + "!(ohydnie-188.29.5.16.0.chu-2bf.hop-2d.3ch-573.4df.log-85.3ch-408.nie2ch-1.3ch-fc.dni-5.3ch-3fa.ohy-d)!", + result: { + word: "ohydnie", + correct: 29, + position: 5, + incorrect: 16, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 50, + date: "07.07.2025", + }, + }, + { + date: "07.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWL5h2buMjZy0Sd6NnLjZTYtEmcn5CMucjLw4yMx4CO4ETLllmbklHavhSI", + value: "!(ohydnie-188.13.0.7.0.gra-a6c.szu-2f3.ohy-d)!", + result: { + word: "ohydnie", + correct: 13, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "07.07.2025", + }, + }, + { + date: "07.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKk1Seo9mL3Y2MtQ2bt5COjNTLrVGZuEWM3MTL6JHcuAjLyEjLx4yNx4CO4ETLllmbklHavhSI", + value: "!(ohydnie-188.17.1.12.0.prz-371a.dek-3c8.mod-3f7.ohy-d)!", + result: { + word: "ohydnie", + correct: 17, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "07.07.2025", + }, + }, + { + date: "07.07.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKk1Seo9mL1AjMtQ2bq5yNkRTL5J3ZuITNtc3btVWau5yNlFWLuFGcuAjLyEjL24SMy4CO4ETLllmbklHavhSI", + value: "!(ohydnie-188.21.6.12.0.pan-ae7.niemow-52.gry-4d7.jod-205.ohy-d)!", + result: { + word: "ohydnie", + correct: 21, + position: 6, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "07.07.2025", + }, + }, + { + date: "07.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKk1Seo9mLlRWMtQWdi5CN3AjMtMWe35CMukjLx4SNx4CO4ETLllmbklHavhSI", + value: "!(ohydnie-188.15.1.9.0.wyc-2074.bud-1de.ohy-d)!", + result: { + word: "ohydnie", + correct: 15, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "07.07.2025", + }, + }, + { + date: "07.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKk1Seo5COj1Sek9mL0YWMtQWe35CMuUjLy4iNx4CO4ETLllmbklHavhSI", + value: "!(ohydnie-188.16.2.5.0.wyd-1f4.ody-c8.hy-d)!", + result: { + word: "ohydnie", + correct: 16, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "07.07.2025", + }, + }, + { + date: "07.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWL5h2buQTOy0SdoNmLw0CZlpmL4MWLklXbuIWNtkHZn5SO2UWLkl3duIWYx0yc5BnL3ITLrVXZuQjLxIjL34SNy4CO4ETLllmbklHavhSI", + value: + "!(ohydnie-188.25.7.21.4.euk-27.pys-1ab.wyd-e69.gdy-5b.myd-c8.jed-0.chu-294.ohy-d)!", + result: { + word: "ohydnie", + correct: 25, + position: 7, + incorrect: 21, + knownIncorrect: 4, + totalWords: 8, + totalLetters: 53, + date: "07.07.2025", + }, + }, + { + date: "07.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWL5h2buUTMl1yZ5dnL5ETL512bllmbuEWMyUTL69GcuAjLyEjLx4iMy4CO4ETLllmbklHavhSI", + value: "!(ohydnie-188.22.1.12.0.poz-521a.nieomy-19.wyg-e15.ohy-d)!", + result: { + word: "ohydnie", + correct: 22, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "07.07.2025", + }, + }, + { + date: "07.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWL5h2buUTMl1yZ5dnLhBjMt8Gcz5SO0ITLk9WbuAjLxEjLy4SMy4CO4ETLllmbklHavhSI", + value: "!(ohydnie-188.21.2.11.0.mod-249.spo-20a.wyg-e15.ohy-d)!", + result: { + word: "ohydnie", + correct: 21, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "07.07.2025", + }, + }, + { + date: "07.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWL5h2buUzY40iYvRmL3QjMto2b35CO00yZphmLzkDOhFTL6JHcuAjL5EjLz4yNx4CO4ETLllmbklHavhSI", + value: "!(ohydnie-188.17.3.19.0.prz-1a893.hig-48.woj-247.dob-8c5.ohy-d)!", + result: { + word: "ohydnie", + correct: 17, + position: 3, + incorrect: 19, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "07.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/i-o-takie-hasla-nic-nie-robilem-31-07-2025-flag-pl-diffle-difflepl-grywebowe-32-" +] = [ + { + date: "31.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKh1ydvJmLhVTZtc3bw5iMiRTL39GZuI2NtsWey5CMuQTMuAjL4EjLyEjMt0WZpd3bihSI", + value: "!(bowiem-212.18.0.14.0.ryk-7b.dow-4b2.pow-e5a.bow-a)!", + result: { + word: "bowiem", + correct: 18, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "31.07.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWL39mYuQzY00ydvRmLyETMt8mct5CMl1Sa39mLjRDNt8Gc15CMuUTMuEjLxIjLyEjMt0WZpd3bihSI", + value: "!(bowiem-212.21.1.15.0.upo-44c.owi-e0.mro-112.dow-4c4.bow-a)!", + result: { + word: "bowiem", + correct: 21, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + }, + }, + { + date: "31.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKh1ydvJmLlZWMto2b35yMj1Sa39mL0EWNtonc0VWau5CMuUTMuIjL2EjLyEjMt0WZpd3bihSI", + value: "!(bowiem-212.16.2.15.0.nietrz-5a4.owi-c3.woj-1fe.bow-a)!", + result: { + word: "bowiem", + correct: 16, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "31.07.2025", + }, + }, + { + date: "31.07.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKh1ydvJmLwUWLpd3buEWNtMWZj5SYkJjMts2bw5CMuITMuEjL2EjLyEjMt0WZpd3bihSI", + value: "!(bowiem-212.16.1.12.0.pok-22da.cec-5a.owi-e0.bow-a)!", + result: { + word: "bowiem", + correct: 16, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "31.07.2025", + }, + }, + { + date: "31.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKh1ydvJmLzMWLpd3bugzMz0SZpdnLkJDNtIHcz5CMuATMuIjL2EjLyEjMt0WZpd3bihSI", + value: "!(bowiem-212.16.2.10.0.spr-42d.wie-338.owi-c3.bow-a)!", + result: { + word: "bowiem", + correct: 16, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "31.07.2025", + }, + }, + { + date: "31.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWL39mYuUzNz0CajNjLmV2MtI2bk5CMt8Gbn5CMzkTLvJ3auU2YwETL39GcuMjMx0ydvNnLmJmMtUHaj5CMugTMuMjL2IjLyEjMt0WZpd3bihSI", + value: + "!(bowiem-212.26.3.18.0.chu-2bf.sow-123.pow-10ce.kro-930.glo-0.dob-3ef.3ch-375.bow-a)!", + result: { + word: "bowiem", + correct: 26, + position: 3, + incorrect: 18, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 47, + date: "31.07.2025", + }, + }, + { + date: "31.07.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYtc3bi5iYiRTL39GZugzYx0icpdnL3UWYt4WYw5CMuMTMuIjL2EjLyEjMt0WZpd3bihSI", + value: "!(bowiem-212.16.2.13.0.pan-ae7.wir-1c8.dow-4bb.bow-a)!", + result: { + word: "bowiem", + correct: 16, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "31.07.2025", + }, + }, + { + date: "31.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYtc3bi5SOwYTMtUWa35SZ1MTLll2YucDOh1Sa6RmL1EjMx0SZpBnLjZTYtEmcn5CMuATMuAjL5EjLyEjMt0WZpd3bihSI", + value: + "!(bowiem-212.19.0.10.0.gra-a6c.pie-1215.dzi-a87.cie-35e.wie-1609.bow-a)!", + result: { + word: "bowiem", + correct: 19, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 29, + date: "31.07.2025", + }, + }, + { + date: "31.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKh1ydvJmLwUWLpd3buUGOk1ydvBnL0YWMtQWe35CMuATMuEjL2EjLyEjMt0WZpd3bihSI", + value: "!(bowiem-212.16.1.10.0.wyd-1f4.pow-d8e.owi-e0.bow-a)!", + result: { + word: "bowiem", + correct: 16, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "31.07.2025", + }, + }, + { + date: "31.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWL35CMy0yav5CZ2MTLllmYuMTO4EWMtoncw5CMuMTMuIjL2EjLyEjMt0WZpd3bihSI", + value: "!(bowiem-212.16.2.13.0.prz-1a893.bie-36d.ok-20.w-a)!", + result: { + word: "bowiem", + correct: 16, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "31.07.2025", + }, + }, + { + date: "31.07.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWL39mYuEWNl1ydvBnL2EmYtUWat5CMuATMuMjLzEjLyEjMt0WZpd3bihSI", + value: "!(bowiem-212.13.3.10.0.mie-ba6.pow-e5a.bow-a)!", + result: { + word: "bowiem", + correct: 13, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "31.07.2025", + }, + }, + { + date: "31.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYtc3bi5iZiFTLtV3ZuUGNx0Sa39mL4MzMtUWa35SYxczMtoncw5CMuQTMuMjL5EjLyEjMt0WZpd3bihSI", + value: "!(bowiem-212.19.3.14.0.prz-371a.wie-338.owi-14e.gum-1bf.bow-a)!", + result: { + word: "bowiem", + correct: 19, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "31.07.2025", + }, + }, + { + date: "31.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWL39mYuMzNtg2Yz4iMx0iYvZmLwcDNy0ycvBnL5QjMtQ2bt5CMuMTMuMjL0EjLyEjMt0WZpd3bihSI", + value: "!(bowiem-212.14.3.13.0.mod-249.pos-2470.fob-12.3ch-73.bow-a)!", + result: { + word: "bowiem", + correct: 14, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "31.07.2025", + }, + }, + { + date: "31.07.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWL39mYugDO00Sdi9mL5UjZy0ibvtmLw4yNuEjLzEjLyEjMt0WZpd3bihSI", + value: "!(bowiem-212.13.1.7.0.kon-2f59.obu-488.bow-a)!", + result: { + word: "bowiem", + correct: 13, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "31.07.2025", + }, + }, + { + date: "31.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKh1ydvJmL0ImNtE2dr5CMuATMuEjLwEjLyEjMt0WZpd3bihSI", + value: "!(bowiem-212.10.1.10.0.kwa-6b4.bow-a)!", + result: { + word: "bowiem", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "31.07.2025", + }, + }, + { + date: "31.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYtc3bi5SN3EmYtQ2bw5CZ3ITLpN3bucjMtsWdl5CMuITMuIjLzEjLyEjMt0WZpd3bihSI", + value: "!(bowiem-212.13.2.12.0.euk-27.osi-27d.pod-ba75.bow-a)!", + result: { + word: "bowiem", + correct: 13, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "31.07.2025", + }, + }, + { + date: "31.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWL35SM40icvJmLwYTMtkmYv5SYxITNto3bw5CMuATMuEjL2EjLyEjMt0WZpd3bihSI", + value: "!(bowiem-212.16.1.10.0.poz-521a.obi-160.bor-81.w-a)!", + result: { + word: "bowiem", + correct: 16, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "31.07.2025", + }, + }, + { + date: "31.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYtc3bi5SY1UWL39GcukTZto2b35iNxITLvh2YuMzYtw2bn5yYk1CdvRnLiVWOtM3br5CMuUTMuIjL1IjLyEjMt0WZpd3bihSI", + value: + "!(bowiem-212.25.2.15.0.kos-9eb.tot-dc.gol-c3.cho-216.woj-e9.pow-e5a.bow-a)!", + result: { + word: "bowiem", + correct: 25, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "31.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/i-znow-pokonany-banalem-19-05-2025-flag-pl-diffle-difflepl-grywebowe-40-liter-w-" +] = [ + { + date: "19.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0iehdmL2ITLkFmYuUGZtQXYm5CMtoXYv5SO2UTLzF2auYzYtUXYw5CNjVWLyh2YuAjLxIjLw4SOx4SOzETLhpXYnhSI", + value: + "!(gaza-139.19.0.21.0.chr-ec4.pau-c6.kas-569.oaz-0.fat-de.bad-26.gaz-0)!", + result: { + word: "gaza", + correct: 19, + position: 0, + incorrect: 21, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "19.05.2025", + }, + }, + { + date: "19.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATL6FmLw0ie1dmLzE2Yx0ydhpnL2E2MtEmej5iYllTLz92auAjL1EjLw4yMx4SOzETLhpXYnhSI", + value: "!(gaza-139.13.0.15.0.kos-9eb.cza-3a6.zaw-1ca3.guz-0.az-0)!", + result: { + word: "gaza", + correct: 13, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "19.05.2025", + }, + }, + { + date: "19.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0iehdmL0EWNtonc0VWau5CMuITMuEjL24SOzETLhpXYnhSI", + value: "!(gaza-139.6.1.12.0.nietrz-5a4.gaz-0)!", + result: { + word: "gaza", + correct: 6, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "19.05.2025", + }, + }, + { + date: "19.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtoXYn5CMtoXYi5CZyQTLyB3cuAjLwEjLw4CMx4SOzETLhpXYnhSI", + value: "!(gaza-139.10.0.10.0.spr-42d.baz-0.gaz-0)!", + result: { + word: "gaza", + correct: 10, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "19.05.2025", + }, + }, + { + date: "19.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATL6F2ZuATL6FmZuMjZy0ieyRnLxYTOtknez5iZiJTL1h2YuAjL4EjLw4yMx4SOzETLhpXYnhSI", + value: "!(gaza-139.13.0.18.0.chu-2bf.szy-961.trz-2f3.faz-0.gaz-0)!", + result: { + word: "gaza", + correct: 13, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "19.05.2025", + }, + }, + { + date: "19.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0ieh5SMtU3buMmNh1SYydmLw4yNuAjL44SOzETLhpXYnhSI", + value: "!(gaza-139.8.0.7.0.gra-a6c.ou-1.az-0)!", + result: { + word: "gaza", + correct: 8, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 15, + date: "19.05.2025", + }, + }, + { + date: "19.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATL6F2ZuUWL51WYuATL6FmYuATL6FmZuATL6F2buEWM3MTL6JHcuAjL1EjLx4COx4SOzETLhpXYnhSI", + value: "!(gaza-139.18.1.15.0.prz-371a.oaz-0.faz-0.baz-0.amy-e.gaz-0)!", + result: { + word: "gaza", + correct: 18, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "19.05.2025", + }, + }, + { + date: "19.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATL6F2ZuMGM10yavBnL0YWMtQWe35CMuATMuAjL44SOzETLhpXYnhSI", + value: "!(gaza-139.8.0.10.0.wyd-1f4.pok-50c.gaz-0)!", + result: { + word: "gaza", + correct: 8, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "19.05.2025", + }, + }, + { + date: "19.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0iehdmLw0iehJmLw0iehdnL5YTNtMXYr5SO0ITLk9WbuAjLzEjLx4SNx4SOzETLhpXYnhSI", + value: "!(gaza-139.15.1.13.0.mod-249.kas-569.waz-0.baz-0.gaz-0)!", + result: { + word: "gaza", + correct: 15, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "19.05.2025", + }, + }, + { + date: "19.05.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATL65CMtomLw0SbuATLmF2ZuImZx0yZvBnLykTL0l2duAjLzEjLw4yNx4SOzETLhpXYnhSI", + value: "!(gaza-139.17.0.13.0.wit-92.pog-1fb.gaf-0.m-0.j-0.z-0)!", + result: { + word: "gaza", + correct: 17, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "19.05.2025", + }, + }, + { + date: "19.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATL6F2ZuATL6FmZuATL6F2duQGMj1SY6NnLzkDOhFTL6JHcuAjL3EjLw4CNx4SOzETLhpXYnhSI", + value: "!(gaza-139.14.0.17.0.prz-1a893.sza-c0d.waz-0.faz-0.gaz-0)!", + result: { + word: "gaza", + correct: 14, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "19.05.2025", + }, + }, + { + date: "19.05.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0iehdmLw0iehZmL4AjNtg2Yz4iNhJWLllWbuAjL0EjLw4SMx4SOzETLhpXYnhSI", + value: "!(gaza-139.11.0.14.0.mie-ba6.3ch-608.faz-0.gaz-0)!", + result: { + word: "gaza", + correct: 11, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "19.05.2025", + }, + }, + { + date: "19.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATL6F2ZuMTL6FmauMTMx0ychdnLmFTLrVXZuAjLyEjLw4CMx4SOzETLhpXYnhSI", + value: "!(gaza-139.10.0.12.0.euk-1f.was-113.jaz-3.gaz-0)!", + result: { + word: "gaza", + correct: 10, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "19.05.2025", + }, + }, + { + date: "19.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtoXYn5CMtoXYm5CMtoXY35yNhFWLhp3YuEWMyUTL69GcuAjLzEjLw4CNx4SOzETLhpXYnhSI", + value: "!(gaza-139.14.0.13.0.poz-521a.cza-aa7.waz-0.faz-0.gaz-0)!", + result: { + word: "gaza", + correct: 14, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "19.05.2025", + }, + }, + { + date: "19.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0iehdmLw0iehJmLzQWL1p3cuE2NiFTLrl3duAjL1EjLw4SMx4SOzETLhpXYnhSI", + value: "!(gaza-139.11.0.15.0.wyk-1b7a.szu-d3.baz-0.gaz-0)!", + result: { + word: "gaza", + correct: 11, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "19.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/jak-dla-mnie-trudne-moze-jak-szybko-sie-trafi-poczatek-to-latwiej-23-08-2025-dif" +] = [ + { + date: "23.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTN50SdydmLmJjNuIGN20CajNjLlJWL1xGcuMGZ20iejVnLzQzMx0Cb5dnLw4iMx4iMuEjMuUzMy0Se6NWasFkQlUzQlUncnhSI", + value: + "!(gruźliczy-235.21.2.12.0.wyl-1343.ucz-6dc.plu-be.3ch-64b.62f.gru-957)!", + result: { + word: "gruźliczy", + correct: 21, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "23.08.2025", + }, + }, + { + date: "23.08.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3UTOtUncuYTZ20icvdmLxQzMtUGbz5iY1MTLjlGbuYTYi1SZp1mLz4COx4SMucjMuUzMy0Se6NWasFkQlUzQlUncnhSI", + value: "!(gruźliczy-235.27.1.18.3.mie-ba6.lic-35b.sle-341.gor-6e6.ru-957)!", + result: { + word: "gruźliczy", + correct: 27, + position: 1, + incorrect: 18, + knownIncorrect: 3, + totalWords: 5, + totalLetters: 46, + date: "23.08.2025", + }, + }, + { + date: "23.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN1kjLxMTOtUncn5CN0ATMtUWaj5yMx0Sa1JnLjFWOx0ielJmL2MGNx0SawNnLyMzMx0yc5dnLw4iNx4iMuYjMuUzMy0Se6NWasFkQlUzQlUncnhSI", + value: + "!(gruźliczy-235.26.2.16.0.wys-1332.spi-14c6.bez-19ac.rui-13.cie-1044.gru-931.957)!", + result: { + word: "gruźliczy", + correct: 26, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 44, + date: "23.08.2025", + }, + }, + { + date: "23.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTN54SMzkTL1J3ZuIzYy0icnVnLjVWMtUHbp5SN2ETL6VXbuYDNl1CczdnLw4yNx4SNukjMuUzMy0Se6NWasFkQlUzQlUncnhSI", + value: + "!(gruźliczy-235.29.5.17.0.wsp-e46.muz-165.ilu-1ec.ugr-2c2.gru-931.957)!", + result: { + word: "gruźliczy", + correct: 29, + position: 5, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 51, + date: "23.08.2025", + }, + }, + { + date: "23.08.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTN50SdydmLzIGNtMWZy5CM2ITL3p3YuQGOx0CczFmLw4CNx4iMucTMuUzMy0Se6NWasFkQlUzQlUncnhSI", + value: "!(gruźliczy-235.17.2.14.0.asp-18d.czw-260.rec-4b3.gru-957)!", + result: { + word: "gruźliczy", + correct: 17, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "23.08.2025", + }, + }, + { + date: "23.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3UTOtUncn5SO1MTLlx2cuUmY10SYpBnLwEzMt8meuYmYy0SdoNmLw4iNx4iMuAjMuUzMy0Se6NWasFkQlUzQlUncnhSI", + value: "!(gruźliczy-235.20.2.16.0.chu-2bf.zo-310.pia-5be.sle-359.gru-957)!", + result: { + word: "gruźliczy", + correct: 20, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "23.08.2025", + }, + }, + { + date: "23.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3UTOtUncn5SNjFTLoN2MuUDZx0ie55yMmNTLjFmcuMGNz0SauNnLiBTMtIXdi5CZ00yY11mLw4SOx4SMuQjMuUzMy0Se6NWasFkQlUzQlUncnhSI", + value: + "!(gruźliczy-235.24.1.19.0.muc-4d.bur-10b.sni-34c.rac-3f3.yz-1d5.3ch-1c5.gru-957)!", + result: { + word: "gruźliczy", + correct: 24, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 44, + date: "23.08.2025", + }, + }, + { + date: "23.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN1kjLxMTOtUnL5QTNtkncn5CMwMTLoN2MuUTN20yby5CZ5IWLp1mLhNTMtIWZuYWO00ybspnLw4iNx4yMuAzMuUzMy0Se6NWasFkQlUzQlUncnhSI", + value: + "!(gruźliczy-235.30.3.16.0.zlo-49f.eb-13a.mi-b9d.ro-655.3ch-300.gry-549.u-931.957)!", + result: { + word: "gruźliczy", + correct: 30, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 49, + date: "23.08.2025", + }, + }, + { + date: "23.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN1kTL1JnLkZjMt42bn5SOxMTLkVncuUTMyETLllGcuE2NtoWdy5COlFTLpd3cuATZtEmc15COmFTLvJXbuUTOwITLyR3cugTOt8me65iMx4yMz4yMuczMuUzMy0Se6NWasFkQlUzQlUncnhSI", + value: + "!(gruźliczy-235.37.3.33.12.zzo-98.str-2095.mro-1f8.ura-e0.swi-1e8.ruj-7a.pie-1215.rud-319.gon-26d.ru-957)!", + result: { + word: "gruźliczy", + correct: 37, + position: 3, + incorrect: 33, + knownIncorrect: 12, + totalWords: 10, + totalLetters: 73, + date: "23.08.2025", + }, + }, + { + date: "23.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTN50Sdy5SYtkmeucjN00Sas5SM1ETLzV2ZuUzYx0CajNjL1UWMtkmbz5SZ4ETLq9GcuUTM00CbvpnLw4SOx4iMuIjMuUzMy0Se6NWasFkQlUzQlUncnhSI", + value: + "!(gruźliczy-235.22.2.19.0.zol-415.poj-18e.sni-1e5.3ch-1c5.ges-151.li-467.zi-a.ru-957)!", + result: { + word: "gruźliczy", + correct: 22, + position: 2, + incorrect: 19, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 43, + date: "23.08.2025", + }, + }, + { + date: "23.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN1kTL1J3ZuMTO00yYpxmLzEDZtI3az5yM5gTYx0ieyBnLw4yMx4iMuMjMuUzMy0Se6NWasFkQlUzQlUncnhSI", + value: "!(gruźliczy-235.23.2.13.0.prz-1a893.skr-d13.lic-493.gru-957)!", + result: { + word: "gruźliczy", + correct: 23, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 38, + date: "23.08.2025", + }, + }, + { + date: "23.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3UTOtUncn5SO1MTLlx2cuQTO10Se6NmLjFmY00CZvBnLw4SMx4CMukTMuUzMy0Se6NWasFkQlUzQlUncnhSI", + value: "!(gruźliczy-235.19.0.11.0.pod-4bac.czy-594.sle-359.gru-957)!", + result: { + word: "gruźliczy", + correct: 19, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "23.08.2025", + }, + }, + { + date: "23.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTN50SdydmLkNzMtw2bi5iY20Cb5pnLhhTMtkGbz5yMmNTLjFmLzIzN40ievJnLkFzNz0ieyBnLw4COx4CNuQjMuUzMy0Se6NWasFkQlUzQlUncnhSI", + value: + "!(gruźliczy-235.24.4.18.0.prz-371d.roz-8723.ac-3f3.sli-18a.zyl-6b.bol-33d.gru-957)!", + result: { + word: "gruźliczy", + correct: 24, + position: 4, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 46, + date: "23.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/jakis-to-jest-proste-01-09-2025-flag-pl-diffle-difflepl-grywebowe-39-liter-w-7-s" +] = [ + { + date: "01.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMtEmLkdTOtUWaz5yNjFTLoN2MucTM10CbpZmLiFTLqVnYuETZz0CcvRmL5MWZtcXe35CMuQjMuEjL0EjL0QjMtcDOlQzQlEWazhSI", + value: + "!(siać-244.14.1.24.0.wyw-ec9.dop-3e1.buj-1b.fil-517.3ch-1c7.sie-97d.a-2)!", + result: { + word: "siać", + correct: 14, + position: 1, + incorrect: 24, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "01.09.2025", + }, + }, + { + date: "01.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITLhl2cuImNy0SdsBnLzQzMx0Cb5dnLw4yMx4CMucjL0QjMtcDOlQzQlEWazhSI", + value: "!(siać-244.7.0.13.0.wyl-1343.plu-26b.sia-2)!", + result: { + word: "siać", + correct: 7, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "01.09.2025", + }, + }, + { + date: "01.09.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMucTLhl2cuUWYlFTLt9GcugTOt8me65CMuQTMuAjLxEjL0QjMtcDOlQzQlEWazhSI", + value: "!(siać-244.11.0.14.0.zzo-98.pom-1eae.sia-7.2)!", + result: { + word: "siać", + correct: 11, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "01.09.2025", + }, + }, + { + date: "01.09.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKy0SYpNnLmFzMtwWYi5CZ5ITL1h2YuYDNl1CczdnLw4iMy4SMugjL0QjMtcDOlQzQlEWazhSI", + value: "!(siać-244.8.1.22.0.wsp-e46.chu-29d.bal-31f.sia-2)!", + result: { + word: "siać", + correct: 8, + position: 1, + incorrect: 22, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "01.09.2025", + }, + }, + { + date: "01.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMtEWauIWLhNnLmVTMtE2auQWYy0SY0NnLkhTMtA3ch5CMuQTMuEjL1EjL0QjMtcDOlQzQlEWazhSI", + value: "!(siać-244.15.1.14.0.asp-18d.sta-2ad.ka-15f.sa-b.ia-2)!", + result: { + word: "siać", + correct: 15, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "01.09.2025", + }, + }, + { + date: "01.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITLhl2cuYTN3MTL6JHcuAjL34SMucjL0QjMtcDOlQzQlEWazhSI", + value: "!(siać-244.7.1.7.0.prz-3756.sia-2)!", + result: { + word: "siać", + correct: 7, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "01.09.2025", + }, + }, + { + date: "01.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKy0SYpNnL1UjMto2b35yM5gTYx0ieyBnLw4SOx4CMugjL0QjMtcDOlQzQlEWazhSI", + value: "!(siać-244.8.0.19.0.prz-1a893.woj-255.sia-2)!", + result: { + word: "siać", + correct: 8, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "01.09.2025", + }, + }, + { + date: "01.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMtEWaz5iZiJTL1h2YuAjL44CMuYjL0QjMtcDOlQzQlEWazhSI", + value: "!(siać-244.6.0.8.0.chu-2bf.sia-2)!", + result: { + word: "siać", + correct: 6, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "01.09.2025", + }, + }, + { + date: "01.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITLh5yY0ITLsl2cuYTYi1SZp1mLw4iMx4SMukjL0QjMtcDOlQzQlEWazhSI", + value: "!(siać-244.9.1.12.0.mie-ba6.sil-24c.a-2)!", + result: { + word: "siać", + correct: 9, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "01.09.2025", + }, + }, + { + date: "01.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITLhl2cuIzMzETLzl3duAjL14CMucjL0QjMtcDOlQzQlEWazhSI", + value: "!(siać-244.7.0.5.0.wys-1332.sia-2)!", + result: { + word: "siać", + correct: 7, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 12, + date: "01.09.2025", + }, + }, + { + date: "01.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITLh5iY1QWLllmLyYmYtkGcuYWNx0SYrNnLx0iYlpmLmlDNt8Gb65CMuQTMuAjL4EjL0QjMtcDOlQzQlEWazhSI", + value: "!(siać-244.18.0.14.0.zlo-49f.jeb-1.ska-15f.pi-bf2.ie-d5b.a-2)!", + result: { + word: "siać", + correct: 18, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "01.09.2025", + }, + }, + { + date: "01.09.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKy0SYpNnLwcjMtEmc05COx0yZp1mLwEWMtIWds5CMkNTMtUWaw5CNzMTMtwWe35CMuEjMuAjL0EjL0QjMtcDOlQzQlEWazhSI", + value: + "!(siać-244.14.0.21.0.wyl-1334.pie-13d0.lub-1a0.mig-18.tra-270.sia-2)!", + result: { + word: "siać", + correct: 14, + position: 0, + incorrect: 21, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "01.09.2025", + }, + }, + { + date: "01.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjL30SYpNnLhV2MtkWb15CN1EWLil3duMzYxETLj9GcugTOt8me65CMuEjMuAjL4EjL0QjMtcDOlQzQlEWazhSI", + value: "!(siać-244.18.0.21.0.zzo-98.poc-11c3.wyb-a54.umi-3ea.sia-7.2)!", + result: { + word: "siać", + correct: 18, + position: 0, + incorrect: 21, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "01.09.2025", + }, + }, + { + date: "01.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITLhl2cuYTZiFTLllGcuMGM30CbvpnL30CavJnLw4CNx4SMucjL0QjMtcDOlQzQlEWazhSI", + value: "!(siać-244.7.1.14.0.roh-7.zol-70c.pie-1be6.sia-2)!", + result: { + word: "siać", + correct: 7, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "01.09.2025", + }, + }, + { + date: "01.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITLhlmL3QWLyR3cuUDOtoWZ35CO50yb6pnLw4CNx4SMukjL0QjMtcDOlQzQlEWazhSI", + value: "!(siać-244.9.1.14.0.zzo-98.wej-85.str-d7.ia-2)!", + result: { + word: "siać", + correct: 9, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "01.09.2025", + }, + }, + { + date: "01.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKy0SYucTY20SZpNnLzkjNtk2d15yYhJGNtQ2bw5CMuMTMuAjLyEjL0QjMtcDOlQzQlEWazhSI", + value: "!(siać-244.12.0.13.0.pod-4bac.uwi-693.sie-6a7.a-2)!", + result: { + word: "siać", + correct: 12, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "01.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/jednak-pierwszy-xd-pdk-25-05-2025-diffle-difflepl-grywebowe-22-litery-w-3-slowac" +] = [ + { + date: "25.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0QWNtQnL5EjNtsmeuQmM00icwNnLw4CMx4iMuATMuUDNx0ycvRnezhSI", + value: "!(sztos-145.10.2.10.0.spr-42d.zk-619.t-5d4)!", + result: { + word: "sztos", + correct: 10, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "25.05.2025", + }, + }, + { + date: "25.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQDZ10Cd6NnLzUTMtwWdi5SYtUWaw5SOmlTLz92auAjL0EjLy4COuUDNx0ycvRnezhSI", + value: "!(sztos-145.8.2.14.0.kos-9f9.pie-a.bul-153.szt-5d4)!", + result: { + word: "sztos", + correct: 8, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "25.05.2025", + }, + }, + { + date: "25.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0QWNtQnez5SYxczMtoncw5CMugjLx4yNuUDNx0ycvRnezhSI", + value: "!(sztos-145.7.1.8.0.prz-371a.szt-5d4)!", + result: { + word: "sztos", + correct: 7, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "25.05.2025", + }, + }, + { + date: "25.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNkVTL0p3cuImYh1ieyRnLhdTLzlneuYmYy0SdoNmLw4iMx4yMuETMuUDNx0ycvRnezhSI", + value: "!(sztos-145.11.3.12.0.chu-2bf.zys-7a.trz-abb.szt-5d4)!", + result: { + word: "sztos", + correct: 11, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "25.05.2025", + }, + }, + { + date: "25.05.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNkVTL0p3cugDZwITLjl3duIGMzETLkFmbuAjLyEjLx4SOuUDNx0ycvRnezhSI", + value: "!(sztos-145.9.1.12.0.nad-130b.wyc-20d8.szt-5d4)!", + result: { + word: "sztos", + correct: 9, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "25.05.2025", + }, + }, + { + date: "25.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNkVjLwgDNtQnez5CNmFTLkl3duAjL54CMuATMuUDNx0ycvRnezhSI", + value: "!(sztos-145.10.0.9.0.wyd-1f4.szt-480.5d4)!", + result: { + word: "sztos", + correct: 10, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "25.05.2025", + }, + }, + { + date: "25.05.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0QWNtQnez5iNhJWLllWbuAjLwEjLw4SOuUDNx0ycvRnezhSI", + value: "!(sztos-145.9.0.10.0.mie-ba6.szt-5d4)!", + result: { + word: "sztos", + correct: 9, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "25.05.2025", + }, + }, + { + date: "25.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNkVTL0p3cucjMtsWdl5CMugjLx4iNuUDNx0ycvRnezhSI", + value: "!(sztos-145.6.1.8.0.euk-27.szt-5d4)!", + result: { + word: "sztos", + correct: 6, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "25.05.2025", + }, + }, + { + date: "25.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0QWNtQnL3ITMt8mL2YTL5p3cukDNy0CZv1mLw4CNx4SMuITMuUDNx0ycvRnezhSI", + value: "!(sztos-145.12.1.14.0.mod-249.szy-66.o-127.t-5d4)!", + result: { + word: "sztos", + correct: 12, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "25.05.2025", + }, + }, + { + date: "25.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0QWNtQnL5EjNtsmez5CNyYTLoN2MuYzY20CctlmLw4iMx4iMuETMuUDNx0ycvRnezhSI", + value: "!(sztos-145.11.2.12.0.imp-6c6.3ch-624.szk-619.t-5d4)!", + result: { + word: "sztos", + correct: 11, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "25.05.2025", + }, + }, + { + date: "25.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNkVTL0p3cuQWMx0CdvxmLkJTLjVnaucTZy0ybypnLhFjM10ievBnLw4yMx4iMuQTMuUDNx0ycvRnezhSI", + value: "!(sztos-145.14.2.13.0.poz-521a.zro-2e7.juc-2d.lot-11d.szt-5d4)!", + result: { + word: "sztos", + correct: 14, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "25.05.2025", + }, + }, + { + date: "25.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNkVTL0p3cuUDMx0yc1tmL1gTMtM3bt5yY2EWLhJ3ZuAjL54iMuETMuUDNx0ycvRnezhSI", + value: "!(sztos-145.11.2.9.0.gra-a6c.mos-185.kus-105.szt-5d4)!", + result: { + word: "sztos", + correct: 11, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "25.05.2025", + }, + }, + { + date: "25.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQDZ10Cd65CN0kTLvR3cuQjNm1ybyBnLw4SMx4SMuETMuUDNx0ycvRnezhSI", + value: "!(sztos-145.11.1.11.0.pro-f64.sto-944.zt-5d4)!", + result: { + word: "sztos", + correct: 11, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "25.05.2025", + }, + }, + { + date: "25.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNkVTL0p3cuQjM10CajNjL0ITLtV3YuQTY10ieyRXZp5mLw4CNx4iMuETMuUDNx0ycvRnezhSI", + value: "!(sztos-145.11.2.14.0.nietrz-5a4.cum-24.3ch-524.szt-5d4)!", + result: { + word: "sztos", + correct: 11, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "25.05.2025", + }, + }, + { + date: "25.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0QWNtQnL0kzMt8mez5yM5gTYx0ieyBnLw4SMx4SMuATMuUDNx0ycvRnezhSI", + value: "!(sztos-145.10.1.11.0.prz-1a893.szo-394.t-5d4)!", + result: { + word: "sztos", + correct: 10, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "25.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/kto-jak-kto-ale-ja-powinienem-szybciej-to-zgadnac-15-07-2025-diffle-difflepl-gry" +] = [ + { + date: "15.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkTO00CcuIWMl1SZuMjZ00yY6NnLiVWOtM3br5CMugjLx4yNx4iN5ETL55GdlBnezhSI", + value: "!(szpetny-196.17.1.8.0.kos-9eb.szc-4f3.e-e1b.p-499)!", + result: { + word: "szpetny", + correct: 17, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "15.07.2025", + }, + }, + { + date: "15.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkTO00Cc6NnL0EWNtonc0VWau5CMugjL04CMx4iN5ETL55GdlBnezhSI", + value: "!(szpetny-196.10.4.8.0.nietrz-5a4.szp-499)!", + result: { + word: "szpetny", + correct: 10, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "15.07.2025", + }, + }, + { + date: "15.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5kDNtAnez5SYxczMtoncw5CMuYjLy4CMx4iN5ETL55GdlBnezhSI", + value: "!(szpetny-196.10.2.6.0.prz-371a.szp-499)!", + result: { + word: "szpetny", + correct: 10, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "15.07.2025", + }, + }, + { + date: "15.07.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO5QTLwp3cuQWNtAXZu5SYkJjMts2bw5SMukjL14iMx4iN5ETL55GdlBnezhSI", + value: "!(szpetny-196.12.5.9.1.pok-22da.nep-5d.szp-499)!", + result: { + word: "szpetny", + correct: 12, + position: 5, + incorrect: 9, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 26, + date: "15.07.2025", + }, + }, + { + date: "15.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO5QTLwpnLkJDNtIHcz5CMucjLy4CMx4iN5ETL55GdlBnezhSI", + value: "!(szpetny-196.10.2.7.0.spr-42d.zp-499)!", + result: { + word: "szpetny", + correct: 10, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "15.07.2025", + }, + }, + { + date: "15.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO5QTLwp3cuUzNtcXZw5SMwkTLlB3cuUWZwETLs9GcuAjLxEjLy4COx4iN5ETL55GdlBnezhSI", + value: "!(szpetny-196.18.2.11.0.pol-10ee.spe-901.pew-75.szp-499)!", + result: { + word: "szpetny", + correct: 18, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "15.07.2025", + }, + }, + { + date: "15.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO5QTLw5yY5UjLkRDOtUmLwIDOtknez5iZiJTL1h2YuAjLzEjLx4iMy4iN5ETL55GdlBnezhSI", + value: "!(szpetny-196.22.1.13.0.chu-2bf.szy-820.e-84d.59c.p-499)!", + result: { + word: "szpetny", + correct: 22, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "15.07.2025", + }, + }, + { + date: "15.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO5QTLwp3cuEGOy0CduVmLjZTYtEmcn5CMuQjLy4SMx4iN5ETL55GdlBnezhSI", + value: "!(szpetny-196.11.2.4.0.gra-a6c.ent-28a.szp-499)!", + result: { + word: "szpetny", + correct: 11, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "15.07.2025", + }, + }, + { + date: "15.07.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkTO00Cc6NnLiJzYtUWa35CMukjLw4CMx4iN5ETL55GdlBnezhSI", + value: "!(szpetny-196.10.0.9.0.wie-c2b.szp-499)!", + result: { + word: "szpetny", + correct: 10, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "15.07.2025", + }, + }, + { + date: "15.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkTO00CcuYWZ00yY6NnL0YWMtQWe35CMugjLx4SNx4iN5ETL55GdlBnezhSI", + value: "!(szpetny-196.15.1.8.0.wyd-1f4.szc-4ef.p-499)!", + result: { + word: "szpetny", + correct: 15, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "15.07.2025", + }, + }, + { + date: "15.07.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkTO00Cc6NnL2EmYtUWat5CMukjLy4CMx4iN5ETL55GdlBnezhSI", + value: "!(szpetny-196.10.2.9.0.mie-ba6.szp-499)!", + result: { + word: "szpetny", + correct: 10, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "15.07.2025", + }, + }, + { + date: "15.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO5QTLwpnLhVTL0V2cucjMtsWdl5CMuYjLx4SNx4iN5ETL55GdlBnezhSI", + value: "!(szpetny-196.15.1.6.0.euk-27.set-5a.zp-499)!", + result: { + word: "szpetny", + correct: 15, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "15.07.2025", + }, + }, + { + date: "15.07.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5kDNtAnez5iZ1UWLlJHcuMzNtAXZu5yNlFWLuFGcuAjLyEjL04iNx4iN5ETL55GdlBnezhSI", + value: "!(szpetny-196.16.4.12.0.pan-ae7.nep-73.pre-e5f.szp-499)!", + result: { + word: "szpetny", + correct: 16, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "15.07.2025", + }, + }, + { + date: "15.07.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5kDNtAnez5SZxETL6NnL4QTNtUWaw5CMugjLy4SNx4iN5ETL55GdlBnezhSI", + value: "!(szpetny-196.15.2.8.0.pie-548.sz-11e.szp-499)!", + result: { + word: "szpetny", + correct: 15, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "15.07.2025", + }, + }, + { + date: "15.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkTO00Cc6NnLhFjM10ievBnLw4CNuQjL54iN5ETL55GdlBnezhSI", + value: "!(szpetny-196.9.4.4.0.poz-521a.szp-499)!", + result: { + word: "szpetny", + correct: 9, + position: 4, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "15.07.2025", + }, + }, + { + date: "15.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO5QTLwp3cukTOx0ie1dmL5UjLmBjNtg2Yz4SO0ITLk9WbuAjLyEjLy4SNx4iN5ETL55GdlBnezhSI", + value: "!(szpetny-196.15.2.12.0.mod-249.3ch-60f.59.guz-199.szp-499)!", + result: { + word: "szpetny", + correct: 15, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "15.07.2025", + }, + }, + { + date: "15.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkTO00Cc6NnL0ImNtE2dr5CMukjLz4CMx4iN5ETL55GdlBnezhSI", + value: "!(szpetny-196.10.3.9.0.kwa-6b4.szp-499)!", + result: { + word: "szpetny", + correct: 10, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "15.07.2025", + }, + }, + { + date: "15.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO5QTLw5yY5UTLlp3cuMTO4EWMtoncw5CMucjL04SNx4iN5ETL55GdlBnezhSI", + value: "!(szpetny-196.15.4.7.0.prz-1a893.sze-59c.p-499)!", + result: { + word: "szpetny", + correct: 15, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "15.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/kurcze-caly-czas-mialem-to-przed-oczami-05-06-2025-diffle-difflepl-grywebowe-26-" +] = [ + { + date: "05.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO10iepdnLwYDNtkGbn5CN5QWLiFmeuIWZ50ycvtmLw4yMx4SMuITMuYTNx0SYqpXa3hSI", + value: "!(wizja-156.12.1.13.0.kos-9eb.zab-d94.gli-460.wiz-59)!", + result: { + word: "wizja", + correct: 12, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "05.06.2025", + }, + }, + { + date: "05.06.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5UTL65iNzITLll2duEGZyITLr9GcuAjL54SMuITMuYTNx0SYqpXa3hSI", + value: "!(wizja-156.12.1.9.0.pok-22da.wie-236.z-59)!", + result: { + word: "wizja", + correct: 12, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "05.06.2025", + }, + }, + { + date: "05.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO14CMtoXa35CZyQTLyB3cuAjL44SMuITMuYTNx0SYqpXa3hSI", + value: "!(wizja-156.12.1.8.0.spr-42d.wiz-0.59)!", + result: { + word: "wizja", + correct: 12, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "05.06.2025", + }, + }, + { + date: "05.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO10iepdnLmhzMtEmbh5CN1ETLjlGcugjM20yc5RmLw4CNx4CMuMTMuYTNx0SYqpXa3hSI", + value: "!(wizja-156.13.0.14.0.dys-628.pic-154.ana-38f.wiz-59)!", + result: { + word: "wizja", + correct: 13, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "05.06.2025", + }, + }, + { + date: "05.06.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO10iepdnLmJmMtUHaj5CMuUjLx4SOuYTNx0SYqpXa3hSI", + value: "!(wizja-156.9.1.5.0.chu-2bf.wiz-59)!", + result: { + word: "wizja", + correct: 9, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "05.06.2025", + }, + }, + { + date: "05.06.2025", + nick: "Szuuz_Ekleer", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkTNuATL6l2duATLtlmeuQWOz0SY6NmLlZTZtMXek5iZ00Cd1tmLw4iNx4SMuYTMuYTNx0SYqpXa3hSI", + value: "!(wizja-156.16.1.16.0.kut-4f.dys-e6e.cza-39d.zim-0.wiz-0.59)!", + result: { + word: "wizja", + correct: 16, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "05.06.2025", + }, + }, + { + date: "05.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkTNuATL6l2duQTY10ieyRXZp5mLw4SMx4SMuITMuYTNx0SYqpXa3hSI", + value: "!(wizja-156.12.1.11.0.nietrz-5a4.wiz-0.59)!", + result: { + word: "wizja", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "05.06.2025", + }, + }, + { + date: "05.06.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkTNuATL6l2duIGMzETLkFmbuAjL44SMuETMuYTNx0SYqpXa3hSI", + value: "!(wizja-156.11.1.8.0.nad-130b.wiz-0.59)!", + result: { + word: "wizja", + correct: 11, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "05.06.2025", + }, + }, + { + date: "05.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkTNtoXa35SYxczMtoncw5CMucjLx4COuYTNx0SYqpXa3hSI", + value: "!(wizja-156.8.1.7.0.prz-371a.wiz-59)!", + result: { + word: "wizja", + correct: 8, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "05.06.2025", + }, + }, + { + date: "05.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO14SMmFjLw0iepdnLwYzMtMWas5iN1ETLzlWbuMmNh1SYydmLw4iMx4SMukTMuYTNx0SYqpXa3hSI", + value: "!(wizja-156.19.1.12.0.gra-a6c.mis-156.lic-360.wiz-0.1f1.59)!", + result: { + word: "wizja", + correct: 19, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "05.06.2025", + }, + }, + { + date: "05.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO14SMmFTL6l2dukDNy0CZv1mLw4CMx4CMuMTMuYTNx0SYqpXa3hSI", + value: "!(wizja-156.13.0.10.0.mod-249.wiz-1f1.59)!", + result: { + word: "wizja", + correct: 13, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "05.06.2025", + }, + }, + { + date: "05.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO14CMtoXa35yM5gTYx0ieyBnLw4CMx4SMuETMuYTNx0SYqpXa3hSI", + value: "!(wizja-156.11.1.10.0.prz-1a893.wiz-0.59)!", + result: { + word: "wizja", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "05.06.2025", + }, + }, + { + date: "05.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5UjL3QmLw0iep5CNmFTLkl3duAjL34iMuUTMuYTNx0SYqpXa3hSI", + value: "!(wizja-156.15.2.7.0.wyd-1f4.iz-0.d7.59)!", + result: { + word: "wizja", + correct: 15, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "05.06.2025", + }, + }, + { + date: "05.06.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkTNtoXa35iNhJWLllWbuAjLwEjLx4COuYTNx0SYqpXa3hSI", + value: "!(wizja-156.8.1.10.0.mie-ba6.wiz-59)!", + result: { + word: "wizja", + correct: 8, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "05.06.2025", + }, + }, + { + date: "05.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO14CMtoXa35SZ10ydhBnLwcjMtcHaj5yNy0ya1VmLw4yMx4SMuYTMuYTNx0SYqpXa3hSI", + value: "!(wizja-156.16.1.13.0.euk-27.chw-270.paw-5e.wiz-0.59)!", + result: { + word: "wizja", + correct: 16, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "05.06.2025", + }, + }, + { + date: "05.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSO10iepdnLkRTMtoXaw5CM2MTLjlGbuUjY00ya6NnLw4CNx4SMuITMuYTNx0SYqpXa3hSI", + value: "!(wizja-156.12.1.14.0.szk-4b5.lic-360.piz-14d.wiz-59)!", + result: { + word: "wizja", + correct: 12, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "05.06.2025", + }, + }, + { + date: "05.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkTNtoXa35SOlFTLsl2ZuEWMyUTL69GcuAjL54SMuATMuYTNx0SYqpXa3hSI", + value: "!(wizja-156.10.1.9.0.poz-521a.gil-1e9.wiz-59)!", + result: { + word: "wizja", + correct: 10, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "05.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ladnie-mnie-wywiodlo-w-pole-18-07-2025-diffle-difflepl-grywebowe-27-liter-w-4-sl" +] = [ + { + date: "18.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTYugDOtE2auMTLrVHduIWZ50ycvtmLw4SOuAjL4EjL5kTMtE2auF2a0hSI", + value: "!(tkanka-199.18.0.9.0.kos-9eb.tuk-3.ka-88.a5)!", + result: { + word: "tkanka", + correct: 18, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "18.07.2025", + }, + }, + { + date: "18.07.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1EWLhtmL00ya1RnL1ATMt4WZr5SYkJjMts2bw5CMuATMuEjL3EjL5kTMtE2auF2a0hSI", + value: "!(tkanka-199.17.1.10.0.pok-22da.ken-105.tuk-4.ka-a5)!", + result: { + word: "tkanka", + correct: 17, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "18.07.2025", + }, + }, + { + date: "18.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1EWLhtGduATLsF2ZuETOt0WduMzMz0ibhRnL0EWNtonc0VWau5CMuQTMuEjLyIjL5kTMtE2auF2a0hSI", + value: "!(tkanka-199.22.1.14.0.nietrz-5a4.tan-333.um-91.gal-0.tka-a5)!", + result: { + word: "tkanka", + correct: 22, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "18.07.2025", + }, + }, + { + date: "18.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNh1SYr5SM50Sb15yMzMTLuFGdukTNk1CduFmLkJDNtIHcz5CMuITMuIjLyIjL5kTMtE2auF2a0hSI", + value: "!(tkanka-199.22.2.12.0.spr-42d.ant-d59.tan-333.um-91.ka-a5)!", + result: { + word: "tkanka", + correct: 22, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "18.07.2025", + }, + }, + { + date: "18.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1EWLhtGduMGZ30ibhtmL1kTMt4WYm5iY4YTMt02buMGNj1ibhtmLyczNtE2az5iYzEjMtoncw5CMukTMuAjL3IjL5kTMtE2auF2a0hSI", + value: + "!(tkanka-199.27.0.19.0.prz-213b.ska-772.kan-c4c.om-168b.fan-195.kan-7dc.tka-a5)!", + result: { + word: "tkanka", + correct: 27, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 46, + date: "18.07.2025", + }, + }, + { + date: "18.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1EWLhtGduEWM3MTL6JHcuAjL44CMukjL5kTMtE2auF2a0hSI", + value: "!(tkanka-199.9.0.8.0.prz-371a.tka-a5)!", + result: { + word: "tkanka", + correct: 9, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "18.07.2025", + }, + }, + { + date: "18.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTYtE2auUjMz0SZyRnLzgTMtE2az5yYkdTLuF2auQDMy0ibhBnLmJmMtUHaj5CMucTMuAjLyIjL5kTMtE2auF2a0hSI", + value: + "!(tkanka-199.22.0.17.0.chu-2bf.pan-204.kan-7dc.ska-183.tre-325.ka-a5)!", + result: { + word: "tkanka", + correct: 22, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "18.07.2025", + }, + }, + { + date: "18.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1EWLhtmLzMzMt4WY05iN3EjLxQTLoN2MuUTOy0yboNmLxkTLtVnLyMzMt4WY05iNxYWLhp3cuQDM00SYsBnLjZTYtEmcn5CMugTMuEjL5IjL5kTMtE2auF2a0hSI", + value: + "!(tkanka-199.29.1.18.0.gra-a6c.pla-404.sza-f16.tan-332.um-91.cho-295.3ch-41.176.tan-333.ka-a5)!", + result: { + word: "tkanka", + correct: 29, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 48, + date: "18.07.2025", + }, + }, + { + date: "18.07.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTYugzNuU2YucTMtE2a05COx0CdhdmLlRGOtw2bw5CMuATMuEjLyIjL5kTMtE2auF2a0hSI", + value: "!(tkanka-199.22.1.10.0.pol-8de.gat-18.tka-17.ce.78.a5)!", + result: { + word: "tkanka", + correct: 22, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "18.07.2025", + }, + }, + { + date: "18.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1EWLhtmLzYWLqFGduQjZx0CZ5dnLw4COuAjLyEjL5kTMtE2auF2a0hSI", + value: "!(tkanka-199.12.0.8.0.wyd-1f4.taj-f3.ka-a5)!", + result: { + word: "tkanka", + correct: 12, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "18.07.2025", + }, + }, + { + date: "18.07.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1EWLhtGduYTYi1SZp1mLw4CMx4SMukjL5kTMtE2auF2a0hSI", + value: "!(tkanka-199.9.1.10.0.mie-ba6.tka-a5)!", + result: { + word: "tkanka", + correct: 9, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "18.07.2025", + }, + }, + { + date: "18.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTYtE2auATLu9GduMTO4EWMtoncw5CMuETMuAjLyEjL5kTMtE2auF2a0hSI", + value: "!(tkanka-199.12.0.11.0.prz-1a893.ton-0.ka-a5)!", + result: { + word: "tkanka", + correct: 12, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "18.07.2025", + }, + }, + { + date: "18.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNh1SYrRnLjRzYt4WYr5iYkdTLuFGcuATLilmbuEGOtQ2bt5CMuMTMuAjL1EjL5kTMtE2auF2a0hSI", + value: "!(tkanka-199.15.0.13.0.mod-8a.nib-0.pan-7db.kan-c4c.tka-a5)!", + result: { + word: "tkanka", + correct: 15, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "18.07.2025", + }, + }, + { + date: "18.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNh1SYrRnL3ITLrVXZuAjL24SMukjL5kTMtE2auF2a0hSI", + value: "!(tkanka-199.9.1.6.0.euk-27.tka-a5)!", + result: { + word: "tkanka", + correct: 9, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "18.07.2025", + }, + }, + { + date: "18.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1EmL4cTLhtGduUjMx0SYrFmL0ImNtE2dr5CMuETMuMjL3EjL5kTMtE2auF2a0hSI", + value: "!(tkanka-199.17.3.11.0.kwa-6b4.aka-125.tka-78.a5)!", + result: { + word: "tkanka", + correct: 17, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "18.07.2025", + }, + }, + { + date: "18.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1EmL4cTLhtmLz0ya1RnLhFjM10ievBnLw4COuAjL4EjL5kTMtE2auF2a0hSI", + value: "!(tkanka-199.18.0.8.0.poz-521a.tuk-3.ka-78.a5)!", + result: { + word: "tkanka", + correct: 18, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "18.07.2025", + }, + }, + { + date: "18.07.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTYtE2a05iYyMWLll2duAjL54SMugjL5kTMtE2auF2a0hSI", + value: "!(tkanka-199.8.1.9.0.wie-c2b.tka-a5)!", + result: { + word: "tkanka", + correct: 8, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "18.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/lal-ale-strzal-wink-08-06-2025-diffle-difflepl-grywebowe-13-liter-w-2-slowach" +] = [ + { + date: "08.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtoWZuIWZ50ycvtmLw4iNuEjL24SO1ETLhpWZrhSI", + value: "!(keja-159.6.1.6.0.kos-9eb.ej-0)!", + result: { + word: "keja", + correct: 6, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "08.06.2025", + }, + }, + { + date: "08.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0ial5CZmVTLllmL2ITLlx2auUWNzYWL6JHcuAjL3EjLw4SMx4SO1ETLhpWZrhSI", + value: "!(keja-159.11.0.17.0.prz-f35e.kle-26.ie-5fd.ej-0)!", + result: { + word: "keja", + correct: 11, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "08.06.2025", + }, + }, + { + date: "08.06.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0ialtmL0EWNtonc0VWau5CMuITMuEjL24SO1ETLhpWZrhSI", + value: "!(keja-159.6.1.12.0.nietrz-5a4.kej-0)!", + result: { + word: "keja", + correct: 6, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "08.06.2025", + }, + }, + { + date: "08.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0ialtmL4MWMtwWZi5SYxczMtoncw5CMuETMuEjL44SO1ETLhpWZrhSI", + value: "!(keja-159.8.1.11.0.prz-371a.bel-1c8.kej-0)!", + result: { + word: "keja", + correct: 8, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "08.06.2025", + }, + }, + { + date: "08.06.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtoWZuMWNx0SZytmL2EmYtUWat5CMuMTMuEjL54SO1ETLhpWZrhSI", + value: "!(keja-159.9.1.13.0.mie-ba6.kre-15c.ej-0)!", + result: { + word: "keja", + correct: 9, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "08.06.2025", + }, + }, + { + date: "08.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtoWZr5iZ40CbrVnLhVDOtQXZt5CZyQTLyB3cuAjL0EjLy4SMx4SO1ETLhpWZrhSI", + value: "!(keja-159.11.2.14.0.spr-42d.met-85a.ukl-8f.kej-0)!", + result: { + word: "keja", + correct: 11, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "08.06.2025", + }, + }, + { + date: "08.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0ialtmL0EWNtonc0VWau5CMuITMuEjL24SO1ETLhpWZrhSI", + value: "!(keja-159.6.1.12.0.nietrz-5a4.kej-0)!", + result: { + word: "keja", + correct: 6, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "08.06.2025", + }, + }, + { + date: "08.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLqVmL0ImNtE2dr5CMuITMuEjL24SO1ETLhpWZrhSI", + value: "!(keja-159.6.1.12.0.kwa-6b4.ej-0)!", + result: { + word: "keja", + correct: 6, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "08.06.2025", + }, + }, + { + date: "08.06.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0ialtmL2MTLrlHZuMTYx0SZyJmL4IzMtMXYw5iZiJTL1h2YuAjL2EjLw4yMx4SO1ETLhpWZrhSI", + value: "!(keja-159.13.0.16.0.chu-2bf.pas-328.bre-1a3.dyk-36.kej-0)!", + result: { + word: "keja", + correct: 13, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "08.06.2025", + }, + }, + { + date: "08.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLqV2auATLr9mZucTNy0Cc1RmL3ATMtMWZi5CMtcXZs5CMtQXZt5yY2EWLhJ3ZuAjL3EjLy4yMx4SO1ETLhpWZrhSI", + value: + "!(keja-159.13.2.17.0.gra-a6c.met-0.lew-0.bec-107.dup-257.fok-0.kej-0)!", + result: { + word: "keja", + correct: 13, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 32, + date: "08.06.2025", + }, + }, + { + date: "08.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtoWZr5CMxETLlxmZugDZtAXY05CNmFTLkl3duAjLzEjLx4CMx4SO1ETLhpWZrhSI", + value: "!(keja-159.10.1.13.0.wyd-1f4.tap-d8.fle-110.kej-0)!", + result: { + word: "keja", + correct: 10, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "08.06.2025", + }, + }, + { + date: "08.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLqV2aukDNy0CZv1mLw4SOuAjL34SO1ETLhpWZrhSI", + value: "!(keja-159.7.0.9.0.mod-249.kej-0)!", + result: { + word: "keja", + correct: 7, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "08.06.2025", + }, + }, + { + date: "08.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtoWZr5CMmFTLzVGZuMTO4EWMtoncw5CMuMTMuEjL44SO1ETLhpWZrhSI", + value: "!(keja-159.8.1.13.0.prz-1a893.des-1f0.kej-0)!", + result: { + word: "keja", + correct: 8, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "08.06.2025", + }, + }, + { + date: "08.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtoWZr5yNy0ya1VmLw4yNuEjL24SO1ETLhpWZrhSI", + value: "!(keja-159.6.1.7.0.euk-27.kej-0)!", + result: { + word: "keja", + correct: 6, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "08.06.2025", + }, + }, + { + date: "08.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0ial5yY1ETLlJnLiVTL3VnLxITLlx2auEWMyUTL69GcuAjL1EjLx4SNx4SO1ETLhpWZrhSI", + value: "!(keja-159.15.1.15.0.poz-521a.kle-21.uw-5b.re-15c.ej-0)!", + result: { + word: "keja", + correct: 15, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "08.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/latwe-ale-zachcialo-mi-sie-bawic-w-strzelanie-28-08-2025-diffle-difflepl-grywebo" +] = [ + { + date: "28.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMtkGb15CN0MTL3h2YuATLsV3ZuATLmVHcuATLkVnYuQWZ50ycvtmLw4COx4CMuQTMuADNy0SYjlGb1hSI", + value: "!(ulica-240.14.0.18.0.kos-9ed.bud-0.puf-0.gul-0.chw-344.uli-1)!", + result: { + word: "ulica", + correct: 14, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "28.08.2025", + }, + }, + { + date: "28.08.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMtkGb15SZkJTLslmZuATLnlGbuQTY10ieyRXZp5mLw4iNx4CMuMTMuADNy0SYjlGb1hSI", + value: "!(ulica-240.13.0.16.0.nietrz-5a4.lig-0.fil-2de.uli-1)!", + result: { + word: "ulica", + correct: 13, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "28.08.2025", + }, + }, + { + date: "28.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKx0SasVnL0IWLjlGbuUjY30ybpJmLw0yZpZmLhFzNz0ieyBnLw4yNx4CMuUTMuADNy0SYjlGb1hSI", + value: "!(ulica-240.15.0.17.0.prz-371a.fig-0.bio-7b5.lic-b4.uli-1)!", + result: { + word: "ulica", + correct: 15, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "28.08.2025", + }, + }, + { + date: "28.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMtkGbuYWO00CajVnL2MWLkV3YuMTMyETLhB3cuYTY00yZh1mLw4SOx4yMuITMuADNy0SYjlGb1hSI", + value: "!(ulica-240.12.3.19.0.mag-4a6.spa-1213.cud-c6.uch-49f.li-1)!", + result: { + word: "ulica", + correct: 12, + position: 3, + incorrect: 19, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "28.08.2025", + }, + }, + { + date: "28.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKx0SasVnL3kjMtUHaj5CNhVTL6JHdllmbuAjL2EjLy4SOuADNy0SYjlGb1hSI", + value: "!(ulica-240.9.2.16.0.nietrz-5a4.chu-297.uli-1)!", + result: { + word: "ulica", + correct: 9, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "28.08.2025", + }, + }, + { + date: "28.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpETLpxWduMTO4EWMtoncw5CMugjLx4SOuADNy0SYjlGb1hSI", + value: "!(ulica-240.9.1.8.0.prz-1a893.uli-1)!", + result: { + word: "ulica", + correct: 9, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "28.08.2025", + }, + }, + { + date: "28.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKx0SasVnL0ITMtQ2br5CMz0Cb5BnLwYzMtMWas5iNjFTLhlWbuMmNh1SYydmLw4CNx4SMucTMuADNy0SYjlGb1hSI", + value: + "!(ulica-240.17.1.14.0.gra-a6c.mia-1c6.lic-360.pyl-30.kod-124.uli-1)!", + result: { + word: "ulica", + correct: 17, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "28.08.2025", + }, + }, + { + date: "29.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY1QjLzMzMtEGduYTMtQXYz5CNiZTLhd3auAjL1EjLx4yMy4SM0ITLhlmbqFGdzhSI", + value: "!(stajnia-241.23.1.15.0.kwa-6b4.sat-16.ta-333.45a)!", + result: { + word: "stajnia", + correct: 23, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 39, + date: "29.08.2025", + }, + }, + { + date: "28.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKx0SasVnLmJmMtUHaj5CMuYjLx4COuADNy0SYjlGb1hSI", + value: "!(ulica-240.8.1.6.0.chu-2bf.uli-1)!", + result: { + word: "ulica", + correct: 8, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "28.08.2025", + }, + }, + { + date: "28.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpETLpxWduATLjl2auQjMtMWat5iYmJTLzlGcuQjZx0CZ5dnLw4SNx4SMuUTMuADNy0SYjlGb1hSI", + value: "!(ulica-240.15.1.15.0.wyd-1f4.pis-2fb.mic-24.kic-0.uli-1)!", + result: { + word: "ulica", + correct: 15, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "28.08.2025", + }, + }, + { + date: "28.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpETLpxWduEjNtkGbr5CMtAXas5yY2ITLppHZllmbuIjNy0SYp1mLw4SNx4SMuQTMuADNy0SYjlGb1hSI", + value: "!(ulica-240.14.1.15.0.mia-262.niedzi-26c.lip-0.kli-61.uli-1)!", + result: { + word: "ulica", + correct: 14, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "28.08.2025", + }, + }, + { + date: "28.08.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMtkGb15iNhJWLllWbuAjLwEjLx4COuADNy0SYjlGb1hSI", + value: "!(ulica-240.8.1.10.0.mie-ba6.uli-1)!", + result: { + word: "ulica", + correct: 8, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "28.08.2025", + }, + }, + { + date: "28.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKx0SasVnLw0iYpxmLw0Cbp1mLhFjM10ievBnLw4iMx4iMuITMuADNy0SYjlGb1hSI", + value: "!(ulica-240.12.2.12.0.poz-521a.mil-0.lib-0.uli-1)!", + result: { + word: "ulica", + correct: 12, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "28.08.2025", + }, + }, + { + date: "28.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpETLpxWducjMtsWdl5CMucjLx4yNuADNy0SYjlGb1hSI", + value: "!(ulica-240.7.1.7.0.euk-27.uli-1)!", + result: { + word: "ulica", + correct: 7, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "28.08.2025", + }, + }, + { + date: "28.08.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpETLpxWduYGNtw2Zp5CMtMWYi5SMtMWek5yNhFWLhp3YuYjNz0ych1mLw4CNx4CMuYTMuADNy0SYjlGb1hSI", + value: "!(ulica-240.16.0.14.0.mas-366.cza-aa7.dyc-1.bac-0.igl-4f.uli-1)!", + result: { + word: "ulica", + correct: 16, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "28.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/latwe-ale-zwodnicze-07-09-2025-diffle-difflepl-grywebowe-40-liter-w-5-slowach-la" +] = [ + { + date: "07.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwETMtMWZs5iY40yY1RnLhZWL5p3YuQTLp5meuIWZ50ycvtmLw4iMx4SMucjMuATNy0SZp5WZ6NWZshSI", + value: "!(leczenie-250.27.1.12.0.kos-9eb.zni-4.czy-fa.tuc-8b.lec-110)!", + result: { + word: "leczenie", + correct: 27, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "07.09.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATMx0yYlxmLlVmMtMWZt5iZ5ETLzV3auYGOy0Se3pnLw4iMx4CMuQjMuATNy0SZp5WZ6NWZshSI", + value: "!(leczenie-250.24.0.12.0.zwy-28f.kus-19f.mec-2ee.lec-110)!", + result: { + word: "leczenie", + correct: 24, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + }, + }, + { + date: "07.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATMx0yYl5SYmNTLjlGbuQjY20SY3tmLw4SMx4iMugTMuATNy0SZp5WZ6NWZshSI", + value: "!(leczenie-250.18.2.11.0.kwa-6b4.lic-3fa.ec-110)!", + result: { + word: "leczenie", + correct: 18, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "07.09.2025", + }, + }, + { + date: "07.09.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwETMtMWZuEmZz0yYpxmLxYmMtUmej5yYyQTL6NWduQTY10ieyRXZp5mLw4yMx4iMukjMuATNy0SZp5WZ6NWZshSI", + value: + "!(leczenie-250.29.2.13.0.nietrz-5a4.ucz-42c.cze-2f1.lic-3fa.ec-110)!", + result: { + word: "leczenie", + correct: 29, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 44, + date: "07.09.2025", + }, + }, + { + date: "07.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATMx0yYlxmL0YTLppXduQmM00icwNnLw4iMx4SMucTMuATNy0SZp5WZ6NWZshSI", + value: "!(leczenie-250.17.1.12.0.spr-42d.uzi-64.lec-110)!", + result: { + word: "leczenie", + correct: 17, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "07.09.2025", + }, + }, + { + date: "07.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMxETLjVmLhZ2MtMWas5SN40iejVnL30ybipnLhFzNz0ieyBnLw4yMx4CMucjMuATNy0SZp5WZ6NWZshSI", + value: "!(leczenie-250.27.0.13.0.prz-371a.zbo-7.ucz-85.lic-3fa.ec-110)!", + result: { + word: "leczenie", + correct: 27, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "07.09.2025", + }, + }, + { + date: "07.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMxETLjVmLhZ2MtMWas5iZiJTL1h2YuAjL34SMugTMuATNy0SZp5WZ6NWZshSI", + value: "!(leczenie-250.18.1.7.0.chu-2bf.lic-3fa.ec-110)!", + result: { + word: "leczenie", + correct: 18, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "07.09.2025", + }, + }, + { + date: "07.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATMx0yYlxmLzkDOhFTL6JHcuAjL34iMuITMuATNy0SZp5WZ6NWZshSI", + value: "!(leczenie-250.12.2.7.0.prz-1a893.lec-110)!", + result: { + word: "leczenie", + correct: 12, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "07.09.2025", + }, + }, + { + date: "07.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwETMtMWZs5COz0SZsdnLwETMtkmbn5iMl1CZ1NmLm1yYp5mL1QWYx0ibvtmLx4SNx4iMuEzMuATNy0SZp5WZ6NWZshSI", + value: + "!(leczenie-250.31.2.15.1.kon-1ad5.nic-f.cud-e2.gni-110.wle-38.lec-110)!", + result: { + word: "leczenie", + correct: 31, + position: 2, + incorrect: 15, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 48, + date: "07.09.2025", + }, + }, + { + date: "07.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMxETLjVmLhZ2MtMWas5iNwITLj9WbuUDOto3Y15iYm1iezBnLhNTLuVmeuQjZx0CZ5dnLw4CNx4SMuADNuATNy0SZp5WZ6NWZshSI", + value: + "!(leczenie-250.40.1.14.0.wyd-1f4.zen-3a.psz-fb.ucz-85.moc-206.lic-3fa.ec-110)!", + result: { + word: "leczenie", + correct: 40, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 55, + date: "07.09.2025", + }, + }, + { + date: "07.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMxETLj5CO20ibl5SOiFTLulGbuI2Mt4Wdz5CZwgTL09GcuMmNh1SYydmLw4CMx4CMuYjMuATNy0SZp5WZ6NWZshSI", + value: + "!(leczenie-250.26.0.10.0.gra-a6c.pot-80d.sun-3b.lin-1b9.en-68.c-110)!", + result: { + word: "leczenie", + correct: 26, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "07.09.2025", + }, + }, + { + date: "07.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwETMtMWZs5iMx0yYoNmLyYWNtUWat5yNy0ya1VmLw4SMx4SMukTMuATNy0SZp5WZ6NWZshSI", + value: "!(leczenie-250.19.1.11.0.euk-27.mie-5f2.chc-12.lec-110)!", + result: { + word: "leczenie", + correct: 19, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "07.09.2025", + }, + }, + { + date: "07.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwETMtMWZs5iNhJWLllWbuAjL44iMuITMuATNy0SZp5WZ6NWZshSI", + value: "!(leczenie-250.12.2.8.0.mie-ba6.lec-110)!", + result: { + word: "leczenie", + correct: 12, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "07.09.2025", + }, + }, + { + date: "07.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwETMtMWZs5SMyUTL6NWduEWMyUTL69GcuAjL44SMugTMuATNy0SZp5WZ6NWZshSI", + value: "!(leczenie-250.18.1.8.0.poz-521a.ucz-521.lec-110)!", + result: { + word: "leczenie", + correct: 18, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "07.09.2025", + }, + }, + { + date: "07.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATMx0yYlxmLxATMtMWZi5SO0ITLk9WbuAjL44iMugTMuATNy0SZp5WZ6NWZshSI", + value: "!(leczenie-250.18.2.8.0.mod-249.bec-101.lec-110)!", + result: { + word: "leczenie", + correct: 18, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "07.09.2025", + }, + }, + { + date: "07.09.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwETMtMWZuQ2Mt4Was5iMhNTLlp3cucTZjVWL6JHcuAjL54yMuYTMuATNy0SZp5WZ6NWZshSI", + value: "!(leczenie-250.16.3.9.0.prz-ece7.sze-3a2.lin-3d.ec-110)!", + result: { + word: "leczenie", + correct: 16, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "07.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/latwe-tradycyjnie-pomylka-o-1-literke-w-przedostatnim-16-09-2025-diffle-difflepl" +] = [ + { + date: "16.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0cTYtM3bw5SMlZTLpN3buEGM00yb0NnLzQzMx0Cb5dnLw4SOuIjL4EjL5UjMtsWZygTJ1MUJpN3bwhSI", + value: "!(posiłek-259.18.2.9.0.wyl-1343.sto-40a.osi-6e1.pos-a74)!", + result: { + word: "posiłek", + correct: 18, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "16.09.2025", + }, + }, + { + date: "16.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0cTYtM3buczM00SZpBnL3ATMtw2buITO20ybhpnL4QjMtkWbz5SMuAjMuQjL5EjL5UjMtsWZygTJ1MUJpN3bwhSI", + value: "!(posiłek-259.19.4.20.1.smi-248.zao-692.ol-107.pie-437.os-a74)!", + result: { + word: "posiłek", + correct: 19, + position: 4, + incorrect: 20, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 43, + date: "16.09.2025", + }, + }, + { + date: "16.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN3EWLz5CZzYWLr9mLkFzNz0ieyBnLw4SOuMjL1EjL5UjMtsWZygTJ1MUJpN3bwhSI", + value: "!(posiłek-259.15.3.9.0.prz-371d.ok-f3d.s-a74)!", + result: { + word: "posiłek", + correct: 15, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "16.09.2025", + }, + }, + { + date: "16.09.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzNh1ycvBnLxUmNtk2cv5SYhJTLvx2cuImZt8Gb05CO50yb6pnLw4yNuQjLwIjL5UjMtsWZygTJ1MUJpN3bwhSI", + value: "!(posiłek-259.20.4.7.0.zzo-98.tlo-fb.slo-2aa.osi-6e1.pos-a74)!", + result: { + word: "posiłek", + correct: 20, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "16.09.2025", + }, + }, + { + date: "16.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzNh5yN3EWLz9GcuUWZ40ybsdmLw4iNuEjL1EjL5UjMtsWZygTJ1MUJpN3bwhSI", + value: "!(posiłek-259.15.1.6.0.glo-8ee.pos-a77.a74)!", + result: { + word: "posiłek", + correct: 15, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "16.09.2025", + }, + }, + { + date: "16.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0cTYuUzN0ETLz9GcuQGOx0CczFmLw4COuEjL2EjL5UjMtsWZygTJ1MUJpN3bwhSI", + value: "!(posiłek-259.16.1.8.0.asp-18d.pos-1475.a74)!", + result: { + word: "posiłek", + correct: 16, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "16.09.2025", + }, + }, + { + date: "16.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN3EWLz5yNzkTLi5CO2ATMtc3buMTO4EWMtoncw5CMuUTMuEjL4EjL5UjMtsWZygTJ1MUJpN3bwhSI", + value: "!(posiłek-259.18.1.15.0.prz-1a893.ow-1068.b-937.s-a74)!", + result: { + word: "posiłek", + correct: 18, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "16.09.2025", + }, + }, + { + date: "16.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0cTYtM3bw5SMlZTLpN3buADZt8Gbz5iY5ETL3FGbugTOt8me65CMuATMuIjLwIjL5UjMtsWZygTJ1MUJpN3bwhSI", + value: "!(posiłek-259.20.2.10.0.zzo-98.law-19b.slo-d0.osi-6e1.pos-a74)!", + result: { + word: "posiłek", + correct: 20, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "16.09.2025", + }, + }, + { + date: "16.09.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN3EWLz9GcuImM30Saw9mL0MzMx0Cb5dnLw4iNuIjL0EjL5UjMtsWZygTJ1MUJpN3bwhSI", + value: "!(posiłek-259.14.2.6.0.wyl-1334.opi-72b.pos-a74)!", + result: { + word: "posiłek", + correct: 14, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "16.09.2025", + }, + }, + { + date: "16.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzNh1ycv5iM10Caj5yN4ITL5xGcugTOt8me65CMuITMuAjL2EjL5UjMtsWZygTJ1MUJpN3bwhSI", + value: "!(posiłek-259.16.0.12.0.zzo-98.ply-287.ch-52.os-a74)!", + result: { + word: "posiłek", + correct: 16, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "16.09.2025", + }, + }, + { + date: "16.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN3EmLyETNtM3bw5yYzMTLoN2MuUTM00CbvpnLw4yNuIjLzEjL5UjMtsWZygTJ1MUJpN3bwhSI", + value: "!(posiłek-259.13.2.7.0.zol-415.3ch-33c.pos-512.a74)!", + result: { + word: "posiłek", + correct: 13, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "16.09.2025", + }, + }, + { + date: "16.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0cTYtM3bw5SMlZTLpN3buYTYi1SZp1mLw4SOuIjL2EjL5UjMtsWZygTJ1MUJpN3bwhSI", + value: "!(posiłek-259.16.2.9.0.mie-ba6.osi-6e1.pos-a74)!", + result: { + word: "posiłek", + correct: 16, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "16.09.2025", + }, + }, + { + date: "16.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN3EWLz9GcuETZ20Saz9mLyMzMx0yc5dnLw4CNuIjL1EjL5UjMtsWZygTJ1MUJpN3bwhSI", + value: "!(posiłek-259.15.2.4.0.wys-1332.osi-6e1.pos-a74)!", + result: { + word: "posiłek", + correct: 15, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "16.09.2025", + }, + }, + { + date: "16.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0cTYtM3bw5SY00iYvRnLw4yMuAjLxEjL5UjMtsWZygTJ1MUJpN3bwhSI", + value: "!(posiłek-259.11.0.3.0.tob-4a.pos-a74)!", + result: { + word: "posiłek", + correct: 11, + position: 0, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "16.09.2025", + }, + }, + { + date: "16.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN3EmLzYTNx0ycuETO0ITLs5yM0IGNtQ2bw5CMuETMuEjL3EjL5UjMtsWZygTJ1MUJpN3bwhSI", + value: "!(posiłek-259.17.1.11.0.pod-4b43.l-2491.s-1563.a74)!", + result: { + word: "posiłek", + correct: 17, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "16.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/latwiutkie-podstawowe-09-08-2025-flag-pl-diffle-difflepl-grywebowe-25-liter-w-4-" +] = [ + { + date: "09.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ2ITLyVmLw0yZ55SM4MTL1JHduUWMh1yY6NnLw4CNx4CMuETMuEjMy0iblJXZ0hSI", + value: "!(teren-221.11.0.14.0.szc-a1e.tru-381.yg-0.er-26f)!", + result: { + word: "teren", + correct: 11, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "09.08.2025", + }, + }, + { + date: "09.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ2ITLyVmL2IzMtUmc05iYllTLz92auAjL24SMuETMuEjMy0iblJXZ0hSI", + value: "!(teren-221.11.1.6.0.kos-9eb.tre-326.er-26f)!", + result: { + word: "teren", + correct: 11, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "09.08.2025", + }, + }, + { + date: "09.08.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmNy0iclRnLkJDNtIHcz5CMukjLx4yNuEjMy0iblJXZ0hSI", + value: "!(teren-221.7.1.9.0.spr-42d.ter-26f)!", + result: { + word: "teren", + correct: 7, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "09.08.2025", + }, + }, + { + date: "09.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmNy0icl5CMlNTLlJHduQTY10ieyRXZp5mLw4iMx4yMuETMuEjMy0iblJXZ0hSI", + value: "!(teren-221.11.3.12.0.nietrz-5a4.tre-3e0.er-26f)!", + result: { + word: "teren", + correct: 11, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "09.08.2025", + }, + }, + { + date: "09.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmNy0icl5CMlNTLlJHduEWM3MTL6JHcuAjL54iMuETMuEjMy0iblJXZ0hSI", + value: "!(teren-221.11.2.9.0.prz-371a.tre-3e0.er-26f)!", + result: { + word: "teren", + correct: 11, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "09.08.2025", + }, + }, + { + date: "09.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmNy0icl5iNyMTLlJHduEWMyUTL69GcuAjL44SMuATMuEjMy0iblJXZ0hSI", + value: "!(teren-221.10.1.8.0.poz-521a.tre-326.er-26f)!", + result: { + word: "teren", + correct: 10, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "09.08.2025", + }, + }, + { + date: "09.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmNy0icl5CZlRTLy9mL5YzMtUmc05yM5gTYx0ieyBnLw4yMx4SMuYTMuEjMy0iblJXZ0hSI", + value: "!(teren-221.16.1.13.0.prz-1a893.tre-369.or-4ed.er-26f)!", + result: { + word: "teren", + correct: 16, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "09.08.2025", + }, + }, + { + date: "09.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZjMtIXZ05SM30CduVmLmJmMtUHaj5CMukjLy4SOuEjMy0iblJXZ0hSI", + value: "!(teren-221.9.2.9.0.chu-2bf.ent-71.ter-26f)!", + result: { + word: "teren", + correct: 9, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "09.08.2025", + }, + }, + { + date: "09.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZjMtIXZuYjMz0SZyRnL1IDNt4WZy5yY2EWLhJ3ZuAjL04iMuQTMuEjMy0iblJXZ0hSI", + value: "!(teren-221.14.2.4.0.gra-a6c.ren-425.tre-326.er-26f)!", + result: { + word: "teren", + correct: 14, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "09.08.2025", + }, + }, + { + date: "09.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ2ITLyVmL2IzMtUmc05CNmFTLkl3duAjL24CMuITMuEjMy0iblJXZ0hSI", + value: "!(teren-221.12.0.6.0.wyd-1f4.tre-326.er-26f)!", + result: { + word: "teren", + correct: 12, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "09.08.2025", + }, + }, + { + date: "09.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZjMtIXZ05SZiVTLlR3cukDNy0CZv1mLw4CMx4CMuETMuEjMy0iblJXZ0hSI", + value: "!(teren-221.11.0.10.0.mod-249.ste-5be.ter-26f)!", + result: { + word: "teren", + correct: 11, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "09.08.2025", + }, + }, + { + date: "09.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ2ITLyVGducjMtsWdl5CMuYjLx4COuEjMy0iblJXZ0hSI", + value: "!(teren-221.8.1.6.0.euk-27.ter-26f)!", + result: { + word: "teren", + correct: 8, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "09.08.2025", + }, + }, + { + date: "09.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmNy0icl5iNyMTLlJHduQjY20SY3tmLw4SMx4iMuETMuEjMy0iblJXZ0hSI", + value: "!(teren-221.11.2.11.0.kwa-6b4.tre-326.er-26f)!", + result: { + word: "teren", + correct: 11, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "09.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/masakra-jakas-23-06-25-flag-pl-diffle-difflepl-grywebowe-37-liter-w-4-slowach-la" +] = [ + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKy0yahpWZp5mLmVTLkFmallmbuUWNtEWa3VWau5yN1QTLvBXduAjLzEjLy4iMy4CN3ETLptWYqVWauhSI", + value: "!(niejaki-174.22.2.13.0.upo-457.niewia-5e.niejad-5f.niejak-2)!", + result: { + word: "niejaki", + correct: 22, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + }, + }, + { + date: "23.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITLrFmallmbukTN10yah5mLiVWOtM3br5CMuYjL04iMx4CN3ETLptWYqVWauhSI", + value: "!(niejaki-174.12.4.6.0.kos-9eb.nak-559.niejak-2)!", + result: { + word: "niejaki", + correct: 12, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "23.06.2025", + }, + }, + { + date: "23.06.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITLrFmallmbuQTLqlmbuYWYt4WYt5iMjNTLuF2cuEGZyITLr9GcuAjLxEjLz4iMy4CN3ETLptWYqVWauhSI", + value: "!(niejaki-174.22.3.11.0.pok-22da.san-3c2.man-af.nij-4.niejak-2)!", + result: { + word: "niejaki", + correct: 22, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "23.06.2025", + }, + }, + { + date: "23.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITLrFmallmbuATMtsWe0VWau5SYtg2YyUWau5CZyQTLyB3cuAjLzEjLy4SOx4CN3ETLptWYqVWauhSI", + value: "!(niejaki-174.19.2.13.0.spr-42d.nie2ch-a.nietyk-10.niejak-2)!", + result: { + word: "niejaki", + correct: 19, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "23.06.2025", + }, + }, + { + date: "23.06.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITLrFmallmbukTNtQWYqVWau5SMx0CajJTZp5mLhF2MtAXYu5iZiJTL1h2YuAjL1EjLz4SMy4CN3ETLptWYqVWauhSI", + value: + "!(niejaki-174.21.3.15.0.chu-2bf.nap-3aa.nie2ch-11.niejad-59.niejak-2)!", + result: { + word: "niejaki", + correct: 21, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "23.06.2025", + }, + }, + { + date: "23.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMtsWYqVWau5SM0ITLm5WauU2MtIWanVWau5CNhVTL6JHdllmbuAjL1EjL04SOx4CN3ETLptWYqVWauhSI", + value: "!(niejaki-174.19.4.15.0.nietrz-5a4.niegib-3e.inf-241.niejak-2)!", + result: { + word: "niejaki", + correct: 19, + position: 4, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 38, + date: "23.06.2025", + }, + }, + { + date: "23.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKy0yahpWZp5mL4ETLr5SMz0ychpmLjJWLhJHcuAjLwEjLz4iNx4CN3ETLptWYqVWauhSI", + value: "!(niejaki-174.16.3.10.0.pra-bc.jas-31.k-18.niejak-2)!", + result: { + word: "niejaki", + correct: 16, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "23.06.2025", + }, + }, + { + date: "23.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMtsWYqVWau5SZ5ETLiF2augDOtUWa3VWau5yYk1yY11mLxkDOtMXYw5yY2EWLhJ3ZuAjL3EjL04iNx4CN3ETLptWYqVWauhSI", + value: + "!(niejaki-174.16.4.17.0.gra-a6c.pas-891.muc-dc.niewie-88.kab-19e.niejak-2)!", + result: { + word: "niejaki", + correct: 16, + position: 4, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "23.06.2025", + }, + }, + { + date: "23.06.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMuEWLrFmallmbugDOtMXekVWau5CMugjLx4yNx4CN3ETLptWYqVWauhSI", + value: "!(niejaki-174.17.1.8.0.niedys-88.niejak-a.2)!", + result: { + word: "niejaki", + correct: 17, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "23.06.2025", + }, + }, + { + date: "23.06.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKy0yahpWZp5mL2kTNt4WYw5iNhJWLllWbuAjLwEjLz4iNx4CN3ETLptWYqVWauhSI", + value: "!(niejaki-174.16.3.10.0.mie-ba6.pan-596.niejak-2)!", + result: { + word: "niejaki", + correct: 16, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "23.06.2025", + }, + }, + { + date: "23.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMtsWYqVWau5CN10SZp1WZp5mL0YWMtQWe35CMukjLy4CNx4CN3ETLptWYqVWauhSI", + value: "!(niejaki-174.14.2.9.0.wyd-1f4.niemie-54.niejak-2)!", + result: { + word: "niejaki", + correct: 14, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "23.06.2025", + }, + }, + { + date: "23.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKy0yahpWZp5mL5QjMtQ2bt5CMucjLx4SMx4CN3ETLptWYqVWauhSI", + value: "!(niejaki-174.11.1.7.0.mod-249.niejak-2)!", + result: { + word: "niejaki", + correct: 11, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "23.06.2025", + }, + }, + { + date: "23.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITLrFmallmbukTNtQWYqVWau5iZx0ycvJWZp5mLzkDOhFTL6JHcuAjL0EjLy4CMy4CN3ETLptWYqVWauhSI", + value: "!(niejaki-174.20.2.14.0.prz-1a893.niebos-1f.niejad-59.niejak-2)!", + result: { + word: "niejaki", + correct: 20, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "23.06.2025", + }, + }, + { + date: "23.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITLrFmallmbuITOtsWY0VWau5CMtE2ajVWau5SYxITNto3bw5CMugjLz4SOx4CN3ETLptWYqVWauhSI", + value: "!(niejaki-174.19.3.8.0.poz-521a.niecka-0.nietak-92.niejak-2)!", + result: { + word: "niejaki", + correct: 19, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "23.06.2025", + }, + }, + { + date: "23.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMtsWYqVWau5CMyETLjVWbuEWM3MTL6JHcuAjLxEjLy4yMx4CN3ETLptWYqVWauhSI", + value: "!(niejaki-174.13.2.11.0.prz-371a.mec-120.niejak-2)!", + result: { + word: "niejaki", + correct: 13, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "23.06.2025", + }, + }, + { + date: "23.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITLrFmallmbuQTLsFGZllmbuYTZy0ibh1mL3ITLrVXZuAjLwEjLz4CMy4CN3ETLptWYqVWauhSI", + value: "!(niejaki-174.20.3.10.0.euk-27.man-2e6.niedal-4.niejak-2)!", + result: { + word: "niejaki", + correct: 20, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "23.06.2025", + }, + }, + { + date: "23.06.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITLrFmallmbuUGM10iYh5mL3UWYt4WYw5CMucjLy4iNx4CN3ETLptWYqVWauhSI", + value: "!(niejaki-174.16.2.7.0.pan-ae7.nab-50e.niejak-2)!", + result: { + word: "niejaki", + correct: 16, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "23.06.2025", + }, + }, + { + date: "23.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMtsWYqVWau5iNtoWau5CNiZTLhd3auAjLwEjLz4iNx4CN3ETLptWYqVWauhSI", + value: "!(niejaki-174.16.3.10.0.kwa-6b4.nij-6.niejak-2)!", + result: { + word: "niejaki", + correct: 16, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "23.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/moze-nie-trudne-ale-moze-wyprowadzic-w-pole-14-09-2025-diffle-difflepl-grywebowe" +] = [ + { + date: "14.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDM10ic1JmLhVTLzVncuI2Y5ETLyR3cuIWZ50ycvtmLw4COuQjLzEjL3UjMtk2azJXdihSI", + value: "!(burski-257.13.4.8.0.kos-9eb.str-19cb.rus-5a.bur-501)!", + result: { + word: "burski", + correct: 13, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "14.09.2025", + }, + }, + { + date: "14.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDM10ic1JmLmNjMtI3Z15SY10yc1JnL2EmYtUWat5CMuQTMuEjL4EjL3UjMtk2azJXdihSI", + value: "!(burski-257.18.1.14.0.mie-ba6.rus-5a.ugr-23f.bur-501)!", + result: { + word: "burski", + correct: 18, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "14.09.2025", + }, + }, + { + date: "14.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMwUjL4kjMuImM30ic1JmLzEzMtYWZk5CMuITMuEjL3EjL3UjMtk2azJXdihSI", + value: "!(burski-257.17.1.12.0.def-313.bur-72b.298.501)!", + result: { + word: "burski", + correct: 17, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "14.09.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDM14CZ2cjL4kjMtIXdi5yN2YTMtQ3bw5CMuATMuEjL5EjL3UjMtk2azJXdihSI", + value: "!(burski-257.19.1.10.0.pot-1667.bur-298.76d.501)!", + result: { + word: "burski", + correct: 19, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + }, + }, + { + date: "14.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxATNtIXdi5SY10yc1JnL0ImNtE2dr5CMuATMuQjLyEjL3UjMtk2azJXdihSI", + value: "!(burski-257.12.4.10.0.kwa-6b4.rus-5a.bur-501)!", + result: { + word: "burski", + correct: 12, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "14.09.2025", + }, + }, + { + date: "14.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMwUTLyVnYuIjNtMXdy5SN4EjMt8mcw5CMuATMuEjL0EjL3UjMtk2azJXdihSI", + value: "!(burski-257.14.1.10.0.pro-2185.rus-62.bur-501)!", + result: { + word: "burski", + correct: 14, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "14.09.2025", + }, + }, + { + date: "14.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMwUTLyVnYugjZ10ic1tmLhVTLzVncuYWNxITLvJHcuMmNh1SYydmLw4COuEjLxIjL3UjMtk2azJXdihSI", + value: "!(burski-257.21.1.8.0.gra-a6c.pro-215f.rus-5a.kur-5f8.bur-501)!", + result: { + word: "burski", + correct: 21, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "14.09.2025", + }, + }, + { + date: "14.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDM10ic1JmLw0SdidmL2QWLyVnbuczYtIXdq5yMkhTLyV3auEWNtMXdy5SYxczMtoncw5CMuYTMuEjLxMjL3UjMtk2azJXdihSI", + value: + "!(burski-257.31.1.16.0.prz-371a.rus-5a.kur-8d3.jur-c7.nur-d6.gbu-0.bur-501)!", + result: { + word: "burski", + correct: 31, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 48, + date: "14.09.2025", + }, + }, + { + date: "14.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDM10ic1JmLhVTLzVncuITYy0SeyZmL5QjMtQ2bt5CMuMTMuEjL1EjL3UjMtk2azJXdihSI", + value: "!(burski-257.15.1.13.0.mod-249.fry-2a2.rus-5a.bur-501)!", + result: { + word: "burski", + correct: 15, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "14.09.2025", + }, + }, + { + date: "14.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDM10ic1JmLhVTLzVncuMjN30ybytmL0YWMtQWe35CMuATMuEjL2EjL3UjMtk2azJXdihSI", + value: "!(burski-257.16.1.10.0.wyd-1f4.kro-763.rus-5a.bur-501)!", + result: { + word: "burski", + correct: 16, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "14.09.2025", + }, + }, + { + date: "14.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxATNugTOy0ic1JmLkJTL1J2ZuMTO4EWMtoncw5CMuMTMuEjL2EjL3UjMtk2azJXdihSI", + value: "!(burski-257.16.1.13.0.prz-1a893.gbu-2d.bur-298.501)!", + result: { + word: "burski", + correct: 16, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "14.09.2025", + }, + }, + { + date: "14.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDM10ic1JmL3cTL1J2ZuEWZtIXdy5yNy0ya1VmLw4COuEjL5EjL3UjMtk2azJXdihSI", + value: "!(burski-257.19.1.8.0.euk-27.rur-ea.gbu-77.bur-501)!", + result: { + word: "burski", + correct: 19, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "14.09.2025", + }, + }, + { + date: "14.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDM10ic1JmL4YWNtIXdr5yM00yc5JnLkJDNtIHcz5CMuETMuIjL2EjL3UjMtk2azJXdihSI", + value: "!(burski-257.16.2.11.0.spr-42d.rys-43.kur-5f8.bur-501)!", + result: { + word: "burski", + correct: 16, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "14.09.2025", + }, + }, + { + date: "14.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDM10ic1JmL4YWNtIXdr5SY10yc1JnLidTMtMXat5SYxITNto3bw5CMuATMuEjLxIjL3UjMtk2azJXdihSI", + value: "!(burski-257.21.1.10.0.poz-521a.mis-17b.rus-5a.kur-5f8.bur-501)!", + result: { + word: "burski", + correct: 21, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "14.09.2025", + }, + }, + { + date: "14.09.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxATNtIXduMWY30ieyJmL1cjMt8mcr5CNwATMtIXYw5CMuETMuAjL2EjL3UjMtk2azJXdihSI", + value: "!(burski-257.16.0.11.0.par-1004.kro-275.brz-7ac.ur-501)!", + result: { + word: "burski", + correct: 16, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "14.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/mozolnie-litera-po-literze-24-06-2025-diffle-difflepl-grywebowe-24-litery-w-4-sl" +] = [ + { + date: "24.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ3MTL1JHdugDZtIXdm5yMyITLiFmcuIWZ50ycvtmLw4SMx4yMuATMuUzNx0SYwVnc0hSI", + value: "!(trupa-175.10.3.11.0.kos-9eb.rab-223.fur-d8.tru-37d)!", + result: { + word: "trupa", + correct: 10, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "24.06.2025", + }, + }, + { + date: "24.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ3MTL1JHduIDO20SdydmL3ADZx0ieyBnLw4SMx4SMuETMuUzNx0SYwVnc0hSI", + value: "!(trupa-175.11.1.11.0.prz-1d07.gru-682.tru-37d)!", + result: { + word: "trupa", + correct: 11, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "24.06.2025", + }, + }, + { + date: "24.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkdzMtUnc05CNhVTL6JHdllmbuAjLxEjLw4SOuUzNx0SYwVnc0hSI", + value: "!(trupa-175.9.0.11.0.nietrz-5a4.tru-37d)!", + result: { + word: "trupa", + correct: 9, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "24.06.2025", + }, + }, + { + date: "24.06.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ3MTL15SZ5QTLlJHduEjMy0SbhJnLhRmMy0yavBnLw4SMx4SMuQTMuUzNx0SYwVnc0hSI", + value: "!(trupa-175.14.1.11.0.pok-22da.ram-221.tre-49e.u-37d)!", + result: { + word: "trupa", + correct: 14, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "24.06.2025", + }, + }, + { + date: "24.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkdzMtUnc05CNiZTLhd3auAjLxEjLy4yNuUzNx0SYwVnc0hSI", + value: "!(trupa-175.7.2.11.0.kwa-6b4.tru-37d)!", + result: { + word: "trupa", + correct: 7, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "24.06.2025", + }, + }, + { + date: "24.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ3MTL1JHduUGM3ITMtoncw5CMtM3by5yY2EWLhJ3ZuAjL54SMuETMuUzNx0SYwVnc0hSI", + value: "!(trupa-175.11.1.9.0.gra-a6c.ros-0.prz-1270e.tru-37d)!", + result: { + word: "trupa", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "24.06.2025", + }, + }, + { + date: "24.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkdzMtUnc05iM4YTL1J3ZuQmM00icwNnLw4CMx4SMuETMuUzNx0SYwVnc0hSI", + value: "!(trupa-175.11.1.10.0.spr-42d.gru-682.tru-37d)!", + result: { + word: "trupa", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "24.06.2025", + }, + }, + { + date: "24.06.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQ2Nz4COxIjLzETMtUnc05yM5ITLyVnYuYmYy0SdoNmLw4yMx4SMuYTMuUzNx0SYwVnc0hSI", + value: "!(trupa-175.16.1.13.0.chu-2bf.bur-293.tru-113.218.37d)!", + result: { + word: "trupa", + correct: 16, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "24.06.2025", + }, + }, + { + date: "24.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQ2Nz4iNwQTL1JHduEWM3MTL6JHcuAjL44iMuITMuUzNx0SYwVnc0hSI", + value: "!(trupa-175.12.2.8.0.prz-371a.tru-406.37d)!", + result: { + word: "trupa", + correct: 12, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "24.06.2025", + }, + }, + { + date: "24.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ3MTL1JHduATL1J3ZuATLmVncuATLyVHbukDNy0CZv1mLw4CNx4SMuUTMuUzNx0SYwVnc0hSI", + value: "!(trupa-175.15.1.14.0.mod-249.lur-0.ruf-0.gru-0.tru-37d)!", + result: { + word: "trupa", + correct: 15, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "24.06.2025", + }, + }, + { + date: "24.06.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQ2Nz0SdyRnL3UWYt4WYw5CMucjLx4yNuUzNx0SYwVnc0hSI", + value: "!(trupa-175.7.1.7.0.pan-ae7.tru-37d)!", + result: { + word: "trupa", + correct: 7, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "24.06.2025", + }, + }, + { + date: "24.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQ2Nz0SdyRnLmNjMtoWYy5CNmFTLkl3duAjLxEjLy4SOuUzNx0SYwVnc0hSI", + value: "!(trupa-175.9.2.11.0.wyd-1f4.raj-23f.tru-37d)!", + result: { + word: "trupa", + correct: 9, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "24.06.2025", + }, + }, + { + date: "24.06.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQ2Nz0Sdy5iMtA3b05CMx0ya5RXZp5mLw4CMx4CMuATMuUzNx0SYwVnc0hSI", + value: "!(trupa-175.10.0.10.0.nietyk-10.top-2.ru-37d)!", + result: { + word: "trupa", + correct: 10, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "24.06.2025", + }, + }, + { + date: "24.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ3MTL1JHduMTO4EWMtoncw5CMugjLy4COuUzNx0SYwVnc0hSI", + value: "!(trupa-175.8.2.8.0.prz-1a893.tru-37d)!", + result: { + word: "trupa", + correct: 8, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "24.06.2025", + }, + }, + { + date: "24.06.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQ2Nz0SdyRnL4QTNtUWaw5CMugjLx4yNuUzNx0SYwVnc0hSI", + value: "!(trupa-175.7.1.8.0.pie-548.tru-37d)!", + result: { + word: "trupa", + correct: 7, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "24.06.2025", + }, + }, + { + date: "24.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkdzMtUncuATLyVHdugDZy0SY0VnL3ITLrVXZuAjL34SNuITMuUzNx0SYwVnc0hSI", + value: "!(trupa-175.12.5.7.0.euk-27.uta-2d8.tur-0.ru-37d)!", + result: { + word: "trupa", + correct: 12, + position: 5, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "24.06.2025", + }, + }, + { + date: "24.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkdzMtUnc05CN30ic0FmLhFjM10ievBnLw4CMx4CMuETMuUzNx0SYwVnc0hSI", + value: "!(trupa-175.11.0.10.0.poz-521a.atr-74.tru-37d)!", + result: { + word: "trupa", + correct: 11, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "24.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/musialem-uzyc-slowa-pomocniczego-30-06-2025-diffle-difflepl-grywebowe-22-litery-" +] = [ + { + date: "30.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3YTLyVmZukDOx0CajNjLhRjMtIXZk5iYllTLz92auAjL44iMuITMuEDOx0SYtJXZmhSI", + value: "!(ferma-181.12.2.8.0.kos-9eb.der-24a.3ch-189.fer-67)!", + result: { + word: "ferma", + correct: 12, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "30.06.2025", + }, + }, + { + date: "30.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjNtIXZm5SMtIXZ55yN20icl5mLhFzNz0ieyBnLw4iMx4SMuMTMuEDOx0SYtJXZmhSI", + value: "!(ferma-181.13.1.12.0.prz-371a.ner-67.yer-1.fer-67)!", + result: { + word: "ferma", + correct: 13, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "30.06.2025", + }, + }, + { + date: "30.06.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN20iclZmLhRjMtIXZk5CMt0WZy5SM2ETLth2YuMTM40SYyJmLhRmMy0yavBnLw4iNx4iMugTMuEDOx0SYtJXZmhSI", + value: + "!(ferma-181.18.2.16.0.pok-22da.bra-813.chm-161.rem-0.der-24a.fer-67)!", + result: { + word: "ferma", + correct: 18, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "30.06.2025", + }, + }, + { + date: "30.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3YjLmdzMtIXZm5CMtcmcl5yMhFTLlJnYuATLyV2YuQTY10ieyRXZp5mLw4COx4SMuAjMuEDOx0SYtJXZmhSI", + value: "!(ferma-181.20.1.18.0.nietrz-5a4.cer-0.bre-1a3.erg-0.fer-37f.67)!", + result: { + word: "ferma", + correct: 20, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "30.06.2025", + }, + }, + { + date: "30.06.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3YTLyVmZugTYtUmZz5yMyUTLhJHcuYmYy0SdoNmLw4iNx4CMuITMuEDOx0SYtJXZmhSI", + value: "!(ferma-181.12.0.16.0.chu-2bf.pra-523.sfe-a8.fer-67)!", + result: { + word: "ferma", + correct: 12, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "30.06.2025", + }, + }, + { + date: "30.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN20iclZmLw0yayVmLwcTLnVmcuQmM00icwNnLw4yMx4iMuITMuEDOx0SYtJXZmhSI", + value: "!(ferma-181.12.2.13.0.spr-42d.reg-70.erk-0.fer-67)!", + result: { + word: "ferma", + correct: 12, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "30.06.2025", + }, + }, + { + date: "30.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjNtIXZm5SY0ITLyVGZuUDZx0SaoNmL2ITOy0ycvBnLw4yMx4SMuUTMuEDOx0SYtJXZmhSI", + value: "!(ferma-181.15.1.13.0.pos-2926.chi-1d5.der-24a.fer-67)!", + result: { + word: "ferma", + correct: 15, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "30.06.2025", + }, + }, + { + date: "30.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN20iclZmL2QTLlZ2bucDOtIXZt5CZjFTLyVmYuUDNtUncl5SY1YTLzVmcuMmNh1SYydmLw4CNx4yMuMjMuEDOx0SYtJXZmhSI", + value: + "!(ferma-181.23.3.14.0.gra-a6c.res-65a.eru-45.ber-1cd.mer-87.ofe-46.fer-67)!", + result: { + word: "ferma", + correct: 23, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "30.06.2025", + }, + }, + { + date: "30.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3YTLyVmZuEWMtUmcl5CNmFTLkl3duAjLwEjLy4SOuEDOx0SYtJXZmhSI", + value: "!(ferma-181.9.2.10.0.wyd-1f4.ere-1a.fer-67)!", + result: { + word: "ferma", + correct: 9, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "30.06.2025", + }, + }, + { + date: "30.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjNtIXZm5SY0ITLyVGZuQjY20SY3tmLw4iMx4iMuETMuEDOx0SYtJXZmhSI", + value: "!(ferma-181.11.2.12.0.kwa-6b4.der-24a.fer-67)!", + result: { + word: "ferma", + correct: 11, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "30.06.2025", + }, + }, + { + date: "30.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN20iclZmLwM2NtUGcz5iN5QTLyVGdukDNy0CZv1mLw4SMx4SMuYTMuEDOx0SYtJXZmhSI", + value: "!(ferma-181.16.1.11.0.mod-249.ter-496.spe-7c0.fer-67)!", + result: { + word: "ferma", + correct: 16, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "30.06.2025", + }, + }, + { + date: "30.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN20iclZmL0ImMtIXZo5SY0ITLyVGZuATLtVmYuMWOy0Cdl1mLhFjM10ievBnLw4yMx4yMukTMuEDOx0SYtJXZmhSI", + value: + "!(ferma-181.19.3.13.0.poz-521a.met-29c.bem-0.der-24a.her-2b4.fer-67)!", + result: { + word: "ferma", + correct: 19, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "30.06.2025", + }, + }, + { + date: "30.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjNtIXZm5SZ30iclJmLw0iclNnLzI2MtUmey5yNy0ya1VmLw4iMx4iMuUTMuEDOx0SYtJXZmhSI", + value: "!(ferma-181.15.2.12.0.euk-27.rze-3b3.ser-0.ber-7e.fer-67)!", + result: { + word: "ferma", + correct: 15, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "30.06.2025", + }, + }, + { + date: "30.06.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjNtIXZm5CMt0WZi5SZlFTLkVHcuYTYi1SZp1mLw4yNx4yMuETMuEDOx0SYtJXZmhSI", + value: "!(ferma-181.11.3.17.0.mie-ba6.pud-1ee.bem-0.fer-67)!", + result: { + word: "ferma", + correct: 11, + position: 3, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "30.06.2025", + }, + }, + { + date: "30.06.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN20iclZmL2kDNtIXZ05CO0UTLllGcuAjL44CMuMTMuEDOx0SYtJXZmhSI", + value: "!(ferma-181.13.0.8.0.pie-548.ter-496.fer-67)!", + result: { + word: "ferma", + correct: 13, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "30.06.2025", + }, + }, + { + date: "30.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN20iclZmL2QTLlZ2buEGNy0iclRmLkZWMt0WYr5yM5gTYx0ieyBnLw4CNx4iMukTMuEDOx0SYtJXZmhSI", + value: "!(ferma-181.19.2.14.0.prz-1a893.kam-1fd.der-24a.ofe-46.fer-67)!", + result: { + word: "ferma", + correct: 19, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "30.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nawet-trudne-przez-nietypowa-budowe-19-06-2025-diffle-difflepl-grywebowe-36-lite" +] = [ + { + date: "19.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN00ydsBnL5YTMtwWa35yY20yYv5mLwgTLjVHZuATLu9GduIWZ50ycvtmLw4yMx4iMuEjMuAzNx0SYul2YvdHbwhSI", + value: + "!(plwocina-170.21.2.13.0.kos-9eb.ton-0.duc-80.noc-6c.wil-169.plw-47)!", + result: { + word: "plwocina", + correct: 21, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "19.06.2025", + }, + }, + { + date: "19.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3QTL3xmL3kzMx0ydv5SOyETLvlGcuQTY10ieyRXZp5mLw4SMx4iNuAjMuAzNx0SYul2YvdHbwhSI", + value: "!(plwocina-170.20.6.11.0.nietrz-5a4.pio-129.ow-1397.lw-47)!", + result: { + word: "plwocina", + correct: 20, + position: 6, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "19.06.2025", + }, + }, + { + date: "19.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN00ydsBnLmNDOtEmez5iZhZTMtIWe35iYkZWLk9GcuATLulWbuMmNh1SYydmLw4SMx4yMuEjMuAzNx0SYul2YvdHbwhSI", + value: + "!(plwocina-170.21.3.11.0.gra-a6c.min-0.pod-fdb.wyb-16af.sza-83f.plw-47)!", + result: { + word: "plwocina", + correct: 21, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "19.06.2025", + }, + }, + { + date: "19.06.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcDNuATL35iYjNTL1xmLmZjMtwWaucTZh1ibhBnLw4CMx4iNuQjMuAzNx0SYul2YvdHbwhSI", + value: "!(plwocina-170.24.6.10.0.pan-ae7.il-26f.lu-3cb.w-0.47)!", + result: { + word: "plwocina", + correct: 24, + position: 6, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "19.06.2025", + }, + }, + { + date: "19.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN00yds5CO2ITLslmLzkDOhFTL6JHcuAjL54CNucTMuAzNx0SYul2YvdHbwhSI", + value: "!(plwocina-170.17.4.9.0.prz-1a893.il-268.lw-47)!", + result: { + word: "plwocina", + correct: 17, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "19.06.2025", + }, + }, + { + date: "19.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN00yds5SO1QmMtc3buMWOtcXauEWM3MTL6JHcuAjL54yMuIjMuAzNx0SYul2YvdHbwhSI", + value: "!(plwocina-170.22.3.9.0.prz-371a.iw-9c.ow-2d59.lw-47)!", + result: { + word: "plwocina", + correct: 22, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "19.06.2025", + }, + }, + { + date: "19.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN00yds5yN5MTMtc3buQTOtcXaw5CNmFTLkl3duAjL24CNukTMuAzNx0SYul2YvdHbwhSI", + value: "!(plwocina-170.19.4.6.0.wyd-1f4.piw-94.ow-1397.lw-47)!", + result: { + word: "plwocina", + correct: 19, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "19.06.2025", + }, + }, + { + date: "19.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN00yds5yMiJWLj9mL0MTLvlmL1ETLp5mL1gjMm1ieyBnLw4SMx4SNuEjMuAzNx0SYul2YvdHbwhSI", + value: "!(plwocina-170.21.5.11.0.prz-f285.ni-15.io-34.oc-bb3.lw-47)!", + result: { + word: "plwocina", + correct: 21, + position: 5, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "19.06.2025", + }, + }, + { + date: "19.06.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN00ydsBnLw0ib5NmLwIWLs92dllmbuYTYi1SZp1mLy4SMx4yNugTMuAzNx0SYul2YvdHbwhSI", + value: "!(plwocina-170.18.7.11.2.mie-ba6.niewol-b0.cyn-0.plw-47)!", + result: { + word: "plwocina", + correct: 18, + position: 7, + incorrect: 11, + knownIncorrect: 2, + totalWords: 4, + totalLetters: 36, + date: "19.06.2025", + }, + }, + { + date: "19.06.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3QTL3xmL5QWZh1CZv5yMyETL3lGcukTNmJTLu92auAjL34SNuEjMuAzNx0SYul2YvdHbwhSI", + value: "!(plwocina-170.21.5.7.0.kon-2f59.piw-123.od-aed9.lw-47)!", + result: { + word: "plwocina", + correct: 21, + position: 5, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "19.06.2025", + }, + }, + { + date: "19.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3QTL3xGcuMGZtwWY35CNi1ybsdmLmJTNtw2bk5iZx0ya1VmLw4CMx4SNuQjMuAzNx0SYul2YvdHbwhSI", + value: "!(plwocina-170.24.5.10.0.euk-1f.dol-52f.glo-b4.wal-dc.plw-47)!", + result: { + word: "plwocina", + correct: 24, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "19.06.2025", + }, + }, + { + date: "19.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3QTL3xGcuQmNtM2bi5SY2ETLyd2buAjL54yMuUTMuAzNx0SYul2YvdHbwhSI", + value: "!(plwocina-170.15.3.9.0.ogr-16a.boc-6d.plw-47)!", + result: { + word: "plwocina", + correct: 15, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "19.06.2025", + }, + }, + { + date: "19.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcDNtcHbuIzNiFTL39mLzITMtcXaw5CZyQTLyB3cuAjL44CNuIjMuAzNx0SYul2YvdHbwhSI", + value: "!(plwocina-170.22.4.8.0.spr-42d.piw-123.ow-1b72.lw-47)!", + result: { + word: "plwocina", + correct: 22, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "19.06.2025", + }, + }, + { + date: "19.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcDNtcHbw5SO0ITLk9WbuAjL34iMuETMuAzNx0SYul2YvdHbwhSI", + value: "!(plwocina-170.11.2.7.0.mod-249.plw-47)!", + result: { + word: "plwocina", + correct: 11, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "19.06.2025", + }, + }, + { + date: "19.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN00yds5SMlFTMt8mcuEWMyUTL69GcuAjL24yMuYTMuAzNx0SYul2YvdHbwhSI", + value: "!(plwocina-170.16.3.6.0.poz-521a.ro-11e1.lw-47)!", + result: { + word: "plwocina", + correct: 16, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "19.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/niby-latwe-ale-poleglem-21-07-2025-diffle-difflepl-grywebowe-52-litery-w-8-slowa" +] = [ + { + date: "21.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN2IWLsFWbuETN00CbvpnL1EzMtoXYugzYt42bs5iY2MTLvxmYukDMy0SdsRmLlhDNt8Gbz5yM0MTMtwWe35CMuAjMuQjL4IjLyAjMtE2au92QCVSNDViM4USNDVSYthSI", + value: + "!(małżonka-202.28.4.20.0.wyl-1343.slo-48e.dlu-209.blo-36b.lon-c8.az-315.zol-451.mal-b67)!", + result: { + word: "małżonka", + correct: 28, + position: 4, + incorrect: 20, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 52, + date: "21.07.2025", + }, + }, + { + date: "21.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjNi1Cbh1mL4QDNt8Gb35CO1QTLvxmYuEDOx0yZhxmLkhTMtA3ch5SMuUTMuIjLzIjLyAjMtE2au92QCVSNDViM4USNDVSYthSI", + value: "!(małżonka-202.23.2.15.1.asp-18d.lag-181.blo-458.wlo-448.mal-b67)!", + result: { + word: "małżonka", + correct: 23, + position: 2, + incorrect: 15, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 40, + date: "21.07.2025", + }, + }, + { + date: "21.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN2IWLsFWbuYTOt42b65iZx0ia51mLmhjYx0CZuEzMh1SbhpnL4ITZtUWaw5CMuUTMuIjL0IjLyAjMtE2au92QCVSNDViM4USNDVSYthSI", + value: + "!(małżonka-202.24.2.15.0.pie-e28.zam-a31.d-1b8f.myj-1f.zon-96.mal-b67)!", + result: { + word: "małżonka", + correct: 24, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 41, + date: "21.07.2025", + }, + }, + { + date: "21.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN2IWLsFWbuMmM2ETLsFmeuYmYy0SdoNmLw4COuEjL2EjLyAjMtE2au92QCVSNDViM4USNDVSYthSI", + value: "!(małżonka-202.16.1.8.0.chu-2bf.zal-162c.mal-b67)!", + result: { + word: "małżonka", + correct: 16, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "21.07.2025", + }, + }, + { + date: "21.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3YjYuMDNi1Cbh1mLzETLr9mZugTMy0ybudmL5ATMtUGbz5CZ30SdyRnLkFWYtwWYt5iMzMTMtMXe35CMuMjMuEjLyIjLyAjMtE2au92QCVSNDViM4USNDVSYthSI", + value: + "!(małżonka-202.22.1.23.0.wys-1332.mal-aad.tru-7d.sle-109.gno-218.fok-13.mal-b43.b67)!", + result: { + word: "małżonka", + correct: 22, + position: 1, + incorrect: 23, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 46, + date: "21.07.2025", + }, + }, + { + date: "21.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN2IWLsFmL4YWL09mLhFTLklnL4AzNtwWat5CMuATMuEjL3EjLyAjMtE2au92QCVSNDViM4USNDVSYthSI", + value: "!(małżonka-202.17.1.10.0.mil-708.yd-1a.ot-f8.al-b67)!", + result: { + word: "małżonka", + correct: 17, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "21.07.2025", + }, + }, + { + date: "21.07.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjNi1Cbh5iYhNTLu9mL2EmYtUWat5CMuETMuMjL2EjLyAjMtE2au92QCVSNDViM4USNDVSYthSI", + value: "!(małżonka-202.16.3.11.0.mie-ba6.on-3ab.al-b67)!", + result: { + word: "małżonka", + correct: 16, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "21.07.2025", + }, + }, + { + date: "21.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjNi1Cbh1mLwQTMt42b65SN1ITLq92duMTO4EWMtoncw5CMukTMuAjL3EjLyAjMtE2au92QCVSNDViM4USNDVSYthSI", + value: "!(małżonka-202.17.0.19.0.prz-1a893.woj-255.zon-140.mal-b67)!", + result: { + word: "małżonka", + correct: 17, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "21.07.2025", + }, + }, + { + date: "21.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN2ImLzQjYtwWYt5yN2cTLsF2ZuETO30Cbh1mL0ADZtwWYr5CNk1CbhNmLklzMt4WYo5CZxczMtoncw5CMukTMuEjLxMjLyAjMtE2au92QCVSNDViM4USNDVSYthSI", + value: + "!(małżonka-202.31.1.19.0.prz-371d.han-39d.cal-d4.kal-d04.mal-791.gal-767.mal-b43.b67)!", + result: { + word: "małżonka", + correct: 31, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 51, + date: "21.07.2025", + }, + }, + { + date: "21.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3YjYtwWYt5CMyITLrFmYuETZ0ITLs9GcugTOt8me65CMuETMuYjL4EjLyAjMtE2au92QCVSNDViM4USNDVSYthSI", + value: "!(małżonka-202.18.6.11.0.zzo-98.pol-24e1.bak-220.mal-b67)!", + result: { + word: "małżonka", + correct: 18, + position: 6, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "21.07.2025", + }, + }, + { + date: "21.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjNi1Cbh1mLkZDNtUHbz5iM30ie5xmL2ITNtw2b65CMuITMuIjL4EjLyAjMtE2au92QCVSNDViM4USNDVSYthSI", + value: "!(małżonka-202.18.2.12.0.zol-526.lyz-72.slu-46d.mal-b67)!", + result: { + word: "małżonka", + correct: 18, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "21.07.2025", + }, + }, + { + date: "21.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3YjYtwWYt5yMzIWLsFmYuYDM10yalxmL0I2Nt8Gbn5yM0IGNtQ2bw5CMuQTMuEjLzIjLyAjMtE2au92QCVSNDViM4USNDVSYthSI", + value: + "!(małżonka-202.23.1.14.0.pod-4b43.glo-7b4.lek-506.bal-b33.mal-b67)!", + result: { + word: "małżonka", + correct: 23, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "21.07.2025", + }, + }, + { + date: "21.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN2IWLs5SMyITLt5CN40iah1mLmJzMtg2Yz4yY0cTLhxmYuETYj1CboNmL2QTZtA3c35CMuMjMuQjL1IjLyAjMtE2au92QCVSNDViM4USNDVSYthSI", + value: + "!(małżonka-202.25.4.23.0.wsp-e46.chl-ca1.bla-74c.3ch-32f.maj-84.m-221.l-b67)!", + result: { + word: "małżonka", + correct: 25, + position: 4, + incorrect: 23, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 52, + date: "21.07.2025", + }, + }, + { + date: "21.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3YjYuYjNi1Cbh1mLjFWMtw2bugTOt8me65iMuATMuMjLxIjLyAjMtE2au92QCVSNDViM4USNDVSYthSI", + value: "!(małżonka-202.21.3.10.2.zzo-98.ol-1ac.mal-b66.b67)!", + result: { + word: "małżonka", + correct: 21, + position: 3, + incorrect: 10, + knownIncorrect: 2, + totalWords: 4, + totalLetters: 34, + date: "21.07.2025", + }, + }, + { + date: "21.07.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjNi1Cbh1mLmZ2Mt8Gbi5CMyI2Ntoncw5CMuITMuAjL2EjLyAjMtE2au92QCVSNDViM4USNDVSYthSI", + value: "!(małżonka-202.16.0.12.0.prz-7b20.blo-3ff.mal-b67)!", + result: { + word: "małżonka", + correct: 16, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "21.07.2025", + }, + }, + { + date: "21.07.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3YjYtwWYt5SMzUWLsFmeuQDM40ybsdmL4YTOx0yavBnL0YWMx0ych5mLwcjYtUWa35SMuEjMuMjLyIjLyAjMtE2au92QCVSNDViM4USNDVSYthSI", + value: + "!(małżonka-202.22.3.21.1.wie-b70.nas-11f4.pok-1968.glo-804.zal-e31.mal-b67)!", + result: { + word: "małżonka", + correct: 22, + position: 3, + incorrect: 21, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 46, + date: "21.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/niby-nie-takie-trudne-a-wymeczylo-31-05-2025-diffle-difflepl-grywebowe-40-liter-" +] = [ + { + date: "31.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATN5ETLvtmLlNGNtEmez5iN5MjLwMGNtg2Yz4yMhNTLlxGcuYmZ50iehpnLzQzMx0Cb5dnLw4SOx4iMukTMuETNx0Se0NXY6J3MCVyMDVyazhSI", + value: + "!(skórzasty-151.19.2.19.0.wyl-1343.zaz-9ff.ple-3a3.3ch-4c0.396.sza-4ce.ko-1950)!", + result: { + word: "skórzasty", + correct: 19, + position: 2, + incorrect: 19, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "31.05.2025", + }, + }, + { + date: "31.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwUTOx4iN0kTMukTZ3ETLvt2cuQDZ00ievtmL4kTLvpneuEjL34iMuYjMuETNx0Se0NXY6J3MCVyMDVyazhSI", + value: "!(skórzasty-151.26.2.7.1.zzo-98.koz-4d4.sko-17e9.1946.1950)!", + result: { + word: "skórzasty", + correct: 26, + position: 2, + incorrect: 7, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 35, + date: "31.05.2025", + }, + }, + { + date: "31.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM1kTMt8mLiBDMx0icrNnL3IGOtonci5yN2UTLyR3bukzMx0ielRnLjZTNtg2Yz4CN20ieydmLkVmMz0CchpnLw4iMy4yNuEzMuETNx0Se0NXY6J3MCVyMDVyazhSI", + value: + "!(skórzasty-151.31.7.22.0.zap-32ed.grz-64.3ch-56c.tez-139.otr-567.brz-8b7.skr-100b.o-1950)!", + result: { + word: "skórzasty", + correct: 31, + position: 7, + incorrect: 22, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 60, + date: "31.05.2025", + }, + }, + { + date: "31.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM1kTMt82az5SZ0EjMuMWM3ETLzFmeuQGOx0CczFmLw4SMx4CNukTMuETNx0Se0NXY6J3MCVyMDVyazhSI", + value: "!(skórzasty-151.19.4.11.0.asp-18d.zas-171c.214e.sko-1950)!", + result: { + word: "skórzasty", + correct: 19, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "31.05.2025", + }, + }, + { + date: "31.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwUTOx0ybuIGMwETLy5iYxgTMugTZ3ETLvtmL5YTLq92cuYDNl1CczdnLw4SNx4SMuMzMuETNx0Se0NXY6J3MCVyMDVyazhSI", + value: + "!(skórzasty-151.33.1.15.0.wsp-e46.soj-69.ko-17e8.181b.r-100b.o-1950)!", + result: { + word: "skórzasty", + correct: 33, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 49, + date: "31.05.2025", + }, + }, + { + date: "31.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM1kTMukTZ3ETLvt2cuIzN00CajNjLxUTYtMXYr5SYjZWMtIWY65SM0UTL1x2cuATMx0ychRmLyMzMx0yc5dnLw4SNx4yMuUjMuETNx0Se0NXY6J3MCVyMDVyazhSI", + value: + "!(skórzasty-151.25.3.15.0.wys-1332.das-110.slu-541.zab-1fca.kas-a51.3ch-472.sko-17e9.1950)!", + result: { + word: "skórzasty", + correct: 25, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 43, + date: "31.05.2025", + }, + }, + { + date: "31.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM1kTMt82az5yNhRWLyh2YuQGMz0ycldmLkFzNz0ieyBnLw4yMx4iMuAjMuETNx0Se0NXY6J3MCVyMDVyazhSI", + value: "!(skórzasty-151.20.2.13.0.prz-371d.ges-30d.chr-da7.sko-1950)!", + result: { + word: "skórzasty", + correct: 20, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "31.05.2025", + }, + }, + { + date: "31.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATN5ETLvtmL2gDNt8mez5SNzITLzVHcuU2Y20CbvpnLw4CMx4iMuAjMuETNx0Se0NXY6J3MCVyMDVyazhSI", + value: "!(skórzasty-151.20.2.10.0.zol-6ce.pus-235.szo-486.ko-1950)!", + result: { + word: "skórzasty", + correct: 20, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "31.05.2025", + }, + }, + { + date: "31.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM1kTMt82az5yYtMWe05iYjJjL3kzMtg2Yz4yNy0ieyJmL5kzNwETL69mcuIWZy0CajNjL4QjMx0ichpnLwkTLnFmauYWO00ybspnLw4yMy4yMuMjMuETNx0Se0NXY6J3MCVyMDVyazhSI", + value: + "!(skórzasty-151.23.3.23.0.zlo-49f.jag-90.zar-1248.3ch-2eb.roz-10799.brz-27.3ch-397.2cb.tyc-c.sko-1950)!", + result: { + word: "skórzasty", + correct: 23, + position: 3, + incorrect: 23, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 49, + date: "31.05.2025", + }, + }, + { + date: "31.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM1kTMt8mLiBDMx0icrNnLkJWMtE2d05yM5gTYx0ieyBnLw4SMx4CNuIjMuETNx0Se0NXY6J3MCVyMDVyazhSI", + value: "!(skórzasty-151.22.4.11.0.prz-1a893.twa-1bd.skr-100b.o-1950)!", + result: { + word: "skórzasty", + correct: 22, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "31.05.2025", + }, + }, + { + date: "31.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwUTOx4SNzkTMuMjN5ETLvt2cuQDZ00ievtmL4kTLvpneuEjL54iMuUjMuETNx0Se0NXY6J3MCVyMDVyazhSI", + value: "!(skórzasty-151.25.2.9.1.zzo-98.koz-4d4.sko-1963.1935.1950)!", + result: { + word: "skórzasty", + correct: 25, + position: 2, + incorrect: 9, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 36, + date: "31.05.2025", + }, + }, + { + date: "31.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwUTOx0ybrNnL5ITLvR3auI2YtMXdo5SZwITLsFmellmbuYzMy0iYlpnLjFmY00CZvBnLw4SMy4iMuIjMuETNx0Se0NXY6J3MCVyMDVyazhSI", + value: + "!(skórzasty-151.22.2.21.0.pod-4bac.zeb-236.niezal-20e.hus-cb.kto-29.sko-1950)!", + result: { + word: "skórzasty", + correct: 22, + position: 2, + incorrect: 21, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 45, + date: "31.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/niby-nietrudne-ale-wredne-15-09-2025-diffle-difflepl-grywebowe-34-litery-w-5-slo" +] = [ + { + date: "15.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAzYhFTLvJHcuQ2Nx0ybpZmL0EmNy0icvBnLyYTLvdHduIWZ50ycvtmLw4yMx4SMuAjMugTNy0yb6N2by9mcwhSI", + value: + "!(proroczo-258.20.1.13.0.kos-9eb.two-62.por-26a4.fio-17d.pro-1ac0)!", + result: { + word: "proroczo", + correct: 20, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "15.09.2025", + }, + }, + { + date: "15.09.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjFWMt8mcuEGZyITLr9GcuAjL24CMuMTMugTNy0yb6N2by9mcwhSI", + value: "!(proroczo-258.13.0.6.0.pok-22da.ro-1ac0)!", + result: { + word: "proroczo", + correct: 13, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "15.09.2025", + }, + }, + { + date: "15.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwMWYx4SNlRTMt8mL3IzNxEjL2M2Y20ieyBnLw4iMx4iMuIjMugTNy0yb6N2by9mcwhSI", + value: "!(proroczo-258.22.2.12.0.prz-6cc6.11727.o-14e5.1ac0)!", + result: { + word: "proroczo", + correct: 22, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "15.09.2025", + }, + }, + { + date: "15.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwMWYx4SMjFWMt8mcw5CZyQTLyB3cuAjL54CMukTMugTNy0yb6N2by9mcwhSI", + value: "!(proroczo-258.19.0.9.0.spr-42d.pro-1ac1.1ac0)!", + result: { + word: "proroczo", + correct: 19, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "15.09.2025", + }, + }, + { + date: "15.09.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjFWMuQTZ0EjL2YDNt8mcuMTZ3QTL69GcuQTY10ieyRXZp5mLw4SNx4iMuUjMugTNy0yb6N2by9mcwhSI", + value: "!(proroczo-258.25.2.15.0.nietrz-5a4.poz-47e3.ro-466.14e4.1ac0)!", + result: { + word: "proroczo", + correct: 25, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "15.09.2025", + }, + }, + { + date: "15.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAzYhFjL0kTZy0ybuEWM3MTL6JHcuAjL54CMuUTMugTNy0yb6N2by9mcwhSI", + value: "!(proroczo-258.15.0.9.0.prz-371a.o-2e94.1ac0)!", + result: { + word: "proroczo", + correct: 15, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "15.09.2025", + }, + }, + { + date: "15.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAzYhFjL4YGNukzNkFjLjRGNx0ybyBnLlJ2Mt8mck5yNy0ya1VmLw4iMx4CMuYjMugTNy0yb6N2by9mcwhSI", + value: "!(proroczo-258.26.0.12.0.euk-27.dro-3be.pro-14dc.1d79.4f8.1ac0)!", + result: { + word: "proroczo", + correct: 26, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "15.09.2025", + }, + }, + { + date: "15.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAzYhFTLvJnL0EmNy0icvBnL2UTLjJ3bukDNy0CZv1mLw4SMx4SMuAjMugTNy0yb6N2by9mcwhSI", + value: "!(proroczo-258.20.1.11.0.mod-249.orc-56.por-26a4.ro-1ac0)!", + result: { + word: "proroczo", + correct: 20, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "15.09.2025", + }, + }, + { + date: "15.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjFWMt8mcw5iMhFTLy9mYucTZ10CajNjLzEzNtI3bm5SZyETLvJ3auQWMtIXaz5iNjFTLtVncuYTYx0icvhmLw4CMy4SMuYjMugTNy0yb6N2by9mcwhSI", + value: + "!(proroczo-258.26.1.20.0.hor-1a6.rum-1c6.sir-1d.kro-12e.for-713.3ch-5e7.bor-1a2.pro-1ac0)!", + result: { + word: "proroczo", + correct: 26, + position: 1, + incorrect: 20, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 47, + date: "15.09.2025", + }, + }, + { + date: "15.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwMWYx0ybyBnL3QjMto2b35yM5gTYx0ieyBnLw4CNx4SMuMTMugTNy0yb6N2by9mcwhSI", + value: "!(proroczo-258.13.1.14.0.prz-1a893.woj-247.pro-1ac0)!", + result: { + word: "proroczo", + correct: 13, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "15.09.2025", + }, + }, + { + date: "15.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjFWMt8mcw5iMm1ybyVnL2IWLjp3YuYTYi1SZp1mLw4CNx4SMugTMugTNy0yb6N2by9mcwhSI", + value: "!(proroczo-258.18.1.14.0.mie-ba6.czc-b6.uro-f2.pro-1ac0)!", + result: { + word: "proroczo", + correct: 18, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "15.09.2025", + }, + }, + { + date: "15.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMjFWMuY2M5ETLvJHcuMGMx0yauMjMwYWL69mcuQjZx0CZ5dnLy4CNx4SMuMjMugTNy0yb6N2by9mcwhSI", + value: "!(proroczo-258.23.1.14.2.wyd-1f4.roz-f023.k-10c.pro-193f.1ac0)!", + result: { + word: "proroczo", + correct: 23, + position: 1, + incorrect: 14, + knownIncorrect: 2, + totalWords: 5, + totalLetters: 38, + date: "15.09.2025", + }, + }, + { + date: "15.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAzYhFTLvJHcuQjY20SY3tmLw4SMx4CMuITMugTNy0yb6N2by9mcwhSI", + value: "!(proroczo-258.12.0.11.0.kwa-6b4.pro-1ac0)!", + result: { + word: "proroczo", + correct: 12, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "15.09.2025", + }, + }, + { + date: "15.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwMWYx4SYlFTMt8mcuEWMyUTL69GcuAjL54CMuUTMugTNy0yb6N2by9mcwhSI", + value: "!(proroczo-258.15.0.9.0.poz-521a.ro-11ea.1ac0)!", + result: { + word: "proroczo", + correct: 15, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "15.09.2025", + }, + }, + { + date: "15.09.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAzYhFTLvJHcuQjM10Caj9mLiZ2N00ieuAzN0ITLy9mL0ADMx0ichBnLw4iMx4SMuIjMugTNy0yb6N2by9mcwhSI", + value: + "!(proroczo-258.22.1.12.0.par-1004.or-2470.z-47fb.och-524.pro-1ac0)!", + result: { + word: "proroczo", + correct: 22, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "15.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/niby-proste-02-09-2025-flag-pl-diffle-difflepl-grywebowe-35-liter-w-6-slowach-la" +] = [ + { + date: "02.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjYtk2Y35iYlVTLh5yNz0iepNmL5EWLjlneuIDN50SajNnLkRzYtUmcr5CMuUTMuIjL4EjL1QjMtMkQlUzQlUDOlQzQlk2Y3hSI", + value: "!(wciąż-245.18.2.15.0.kre-c4d.sci-942.zyc-a9.ciz-37.a-5eb.wci-b3)!", + result: { + word: "wciąż", + correct: 18, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "02.09.2025", + }, + }, + { + date: "02.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjYtk2YuMDNzETLsl3duAjL34SMucjL1QjMtMkQlUzQlUDOlQzQlk2Y3hSI", + value: "!(wciąż-245.7.1.7.0.wyl-1343.ci-b3)!", + result: { + word: "wciąż", + correct: 7, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "02.09.2025", + }, + }, + { + date: "02.09.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjYtk2Y35iZ5ITL1h2YuYDNl1CczdnLw4COx4CMugjL1QjMtMkQlUzQlUDOlQzQlk2Y3hSI", + value: "!(wciąż-245.8.0.18.0.wsp-e46.chu-29f.wci-b3)!", + result: { + word: "wciąż", + correct: 8, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "02.09.2025", + }, + }, + { + date: "02.09.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzIWLpNmL4Y2MtQWe35CZjVjLiZzMtg2Yz4CO50yb6pnLw4SOuEjL0EjL1QjMtMkQlUzQlUDOlQzQlk2Y3hSI", + value: "!(wciąż-245.14.1.9.0.zzo-98.3ch-36b.5cd.wyd-3f8.ci-b3)!", + result: { + word: "wciąż", + correct: 14, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "02.09.2025", + }, + }, + { + date: "02.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjYtk2YuYjMwITLll2duQGOx0CczFmLw4iMx4SMugjL1QjMtMkQlUzQlUDOlQzQlk2Y3hSI", + value: "!(wciąż-245.8.1.12.0.asp-18d.wie-2026.ci-b3)!", + result: { + word: "wciąż", + correct: 8, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "02.09.2025", + }, + }, + { + date: "02.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjYtk2Y35CMy0yY11mLxcjMtQWZuYGOx0SYp5iMzMTMtMXe35CMuUTMuAjLzEjL1QjMtMkQlUzQlUDOlQzQlk2Y3hSI", + value: "!(wciąż-245.13.0.15.0.wys-1332.ia-18f.ed-271.muc-20.wci-b3)!", + result: { + word: "wciąż", + correct: 13, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "02.09.2025", + }, + }, + { + date: "02.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzIWLpNmL2gTMx0yY55yY20yYldnLiJTMtc3bs5CZxczMtoncw5CMugTMuAjL1EjL1QjMtMkQlUzQlUDOlQzQlk2Y3hSI", + value: "!(wciąż-245.15.0.18.0.prz-371d.low-12b.wec-6c.yc-1186.ci-b3)!", + result: { + word: "wciąż", + correct: 15, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "02.09.2025", + }, + }, + { + date: "02.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMi1Saj5yYkZTLvxmL1UjMto2b35yM5gTYx0ieyBnLw4iMy4SMukjL1QjMtMkQlUzQlUDOlQzQlk2Y3hSI", + value: "!(wciąż-245.9.1.22.0.prz-1a893.woj-255.lo-6dc.ci-b3)!", + result: { + word: "wciąż", + correct: 9, + position: 1, + incorrect: 22, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "02.09.2025", + }, + }, + { + date: "02.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMi1Saj5SYwQTLvJnLhVWZz0Cc5dnL2EmYtUWat5CMukTMuIjLyEjL1QjMtMkQlUzQlUDOlQzQlk2Y3hSI", + value: "!(wciąż-245.12.2.19.0.mie-ba6.wyp-3eea.ro-40a.ci-b3)!", + result: { + word: "wciąż", + correct: 12, + position: 2, + incorrect: 19, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "02.09.2025", + }, + }, + { + date: "02.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjYtk2Y35yYxITLwFGcugzNi1Cb5dnL1EjZtk2d65CM50yZhpmL4AzNtwWat5SMucTMuEjL0EjL1QjMtMkQlUzQlUDOlQzQlk2Y3hSI", + value: + "!(wciąż-245.14.1.17.1.mil-708.jag-90.zwi-f15.wyl-b78.pap-21c.wci-b3)!", + result: { + word: "wciąż", + correct: 14, + position: 1, + incorrect: 17, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 32, + date: "02.09.2025", + }, + }, + { + date: "02.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjYtk2YuYDOxETLjlnL2UzNx0SZpdnLmJmMtUHaj5CMuMTMuEjL0EjL1QjMtMkQlUzQlUDOlQzQlk2Y3hSI", + value: "!(wciąż-245.14.1.13.0.chu-2bf.wie-1756.yc-1186.ci-b3)!", + result: { + word: "wciąż", + correct: 14, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "02.09.2025", + }, + }, + { + date: "02.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjYtk2YuYDOxETLjl3duMWN00SYpNmL5QjMtQ2bt5CMuMTMuEjLzEjL1QjMtMkQlUzQlUDOlQzQlk2Y3hSI", + value: "!(wciąż-245.13.1.13.0.mod-249.cia-45c.wyc-1186.ci-b3)!", + result: { + word: "wciąż", + correct: 13, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "02.09.2025", + }, + }, + { + date: "02.09.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjYtk2YuQzMzETLsl3duAjL14SMugjL1QjMtMkQlUzQlUDOlQzQlk2Y3hSI", + value: "!(wciąż-245.8.1.5.0.wyl-1334.ci-b3)!", + result: { + word: "wciąż", + correct: 8, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "02.09.2025", + }, + }, + { + date: "02.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMi1SajdnL1QGOt8Gaj5CO50yb6pnLw4CMx4SMukjL1QjMtMkQlUzQlUDOlQzQlk2Y3hSI", + value: "!(wciąż-245.9.1.10.0.zzo-98.cho-8d5.wci-b3)!", + result: { + word: "wciąż", + correct: 9, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "02.09.2025", + }, + }, + { + date: "02.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMjYtk2Y35SYm1yYp5mLkVDNtEWaj5yM0IGNtQ2bw5CMuATMuEjLyEjL1QjMtMkQlUzQlUDOlQzQlk2Y3hSI", + value: "!(wciąż-245.12.1.10.0.pod-4b43.cia-45d.nic-fa.wci-b3)!", + result: { + word: "wciąż", + correct: 12, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "02.09.2025", + }, + }, + { + date: "02.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMi1Saj5iNwgTL3lnLlZ2MtEWa35CZjVjLiZzMtg2Yz4CO50yb6pnLw4SOuEjL5EjL1QjMtMkQlUzQlUDOlQzQlk2Y3hSI", + value: "!(wciąż-245.19.1.9.0.zzo-98.3ch-36b.5cd.wia-3fe.yw-806.ci-b3)!", + result: { + word: "wciąż", + correct: 19, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 29, + date: "02.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/niby-proste-a-problemow-narobilo-15-08-2025-diffle-difflepl-grywebowe-33-litery-" +] = [ + { + date: "15.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWY10SZukTL1x2auAjM10CajNjL5YzNtUmcuIWZ50ycvtmLw4COuMjLyIjL3IjMtEmckl3cwVGbrhSI", + value: "!(klepsydra-227.22.3.8.0.kos-9eb.re-769.3ch-520.klu-9.e-5aa)!", + result: { + word: "klepsydra", + correct: 22, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "15.08.2025", + }, + }, + { + date: "15.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhFWNtUGbuQjY20SY3tmLw4SOuMjLyEjL3IjMtEmckl3cwVGbrhSI", + value: "!(klepsydra-227.12.3.9.0.kwa-6b4.le-5aa)!", + result: { + word: "klepsydra", + correct: 12, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 24, + date: "15.08.2025", + }, + }, + { + date: "15.08.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWY10SZstmLzUWL3tWYuQGMz0ic1JmL2EmYtUWat5yMuYTMuYjLwIjL3IjMtEmckl3cwVGbrhSI", + value: "!(klepsydra-227.20.6.16.3.mie-ba6.bur-30d.akw-e3.kle-5aa)!", + result: { + word: "klepsydra", + correct: 20, + position: 6, + incorrect: 16, + knownIncorrect: 3, + totalWords: 4, + totalLetters: 42, + date: "15.08.2025", + }, + }, + { + date: "15.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYhVTLlx2auQTY10ieyRXZp5mLw4yNuQjLzEjL3IjMtEmckl3cwVGbrhSI", + value: "!(klepsydra-227.13.4.7.0.nietrz-5a4.kle-5aa)!", + result: { + word: "klepsydra", + correct: 13, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 24, + date: "15.08.2025", + }, + }, + { + date: "15.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYhVTLlx2auMTLrNXZuATLyV2cuMmNh1SYydmLw4CNuMjL5EjL3IjMtEmckl3cwVGbrhSI", + value: "!(klepsydra-227.19.3.4.0.gra-a6c.ser-0.esk-3.kle-5aa)!", + result: { + word: "klepsydra", + correct: 19, + position: 3, + incorrect: 4, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "15.08.2025", + }, + }, + { + date: "15.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYhVTLl5yNxQTLhxmLzIGNtEmcr5iZygTLyF2ZuUWY00SYrNnLiRWOtAXYukjN30SZytmL0ATZtI3az5iMxIWLztWZuMDNy0yc5RmLiVWMtQXYw5iZiJTL1h2YuAjL3EjL3EjL4MjL3IjMtEmckl3cwVGbrhSI", + value: + "!(klepsydra-227.38.17.17.0.chu-2bf.pat-1eb.dys-243.eks-b12.skr-e04.kre-769.ap-9db.ska-4ae.gar-82f.kra-4b3.la-417.e-5aa)!", + result: { + word: "klepsydra", + correct: 38, + position: 17, + incorrect: 17, + knownIncorrect: 0, + totalWords: 12, + totalLetters: 72, + date: "15.08.2025", + }, + }, + { + date: "15.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYhVTLlx2auAzMy0SZwNnLhFzNz0ieyBnLw4yNuYjL1EjL3IjMtEmckl3cwVGbrhSI", + value: "!(klepsydra-227.15.6.7.0.prz-371a.spe-230.kle-5aa)!", + result: { + word: "klepsydra", + correct: 15, + position: 6, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "15.08.2025", + }, + }, + { + date: "15.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhFWNtUGbucTLrV2auYjYz0ic1ZmL5QjMtQ2bt5CMuITMuIjL3EjL3IjMtEmckl3cwVGbrhSI", + value: "!(klepsydra-227.17.2.12.0.mod-249.fur-3b6.kek-7.le-5aa)!", + result: { + word: "klepsydra", + correct: 17, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "15.08.2025", + }, + }, + { + date: "15.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhFWNtUGbuQWMy0ycvtmLjNWL3VGbuMTO4EWMtoncw5CMuMTMuUjL5EjL3IjMtEmckl3cwVGbrhSI", + value: "!(klepsydra-227.19.5.13.0.prz-1a893.lew-cc.kos-21d.le-5aa)!", + result: { + word: "klepsydra", + correct: 19, + position: 5, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "15.08.2025", + }, + }, + { + date: "15.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWY10SZstmLxYWMtw2az5iZz0yY1JmLklDZtIXZw5CMuITMuMjLwIjL3IjMtEmckl3cwVGbrhSI", + value: "!(klepsydra-227.20.3.12.0.per-d9d.buc-3f.skl-1f1.kle-5aa)!", + result: { + word: "klepsydra", + correct: 20, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "15.08.2025", + }, + }, + { + date: "15.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYhVTLlx2auIWLklHauYmNy0SZytmLkhTLhVmcuQjZx0CZ5dnLw4SOuYjLxIjL3IjMtEmckl3cwVGbrhSI", + value: "!(klepsydra-227.21.6.9.0.wyd-1f4.rea-8d.kre-26f.hyd-b.kle-5aa)!", + result: { + word: "klepsydra", + correct: 21, + position: 6, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "15.08.2025", + }, + }, + { + date: "15.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWY10SZs5SNx0Sel5iZ0YTL5J3aucjMtsWdl5SNuQTMuYjLwIjL3IjMtEmckl3cwVGbrhSI", + value: "!(klepsydra-227.20.6.14.5.euk-27.kry-64f.ey-15.le-5aa)!", + result: { + word: "klepsydra", + correct: 20, + position: 6, + incorrect: 14, + knownIncorrect: 5, + totalWords: 4, + totalLetters: 40, + date: "15.08.2025", + }, + }, + { + date: "15.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhFWNtUGbr5SMh1SdrFmLlZmNtM3al5SYxITNto3bw5CMuETMuYjLxIjL3IjMtEmckl3cwVGbrhSI", + value: "!(klepsydra-227.21.6.11.0.poz-521a.eks-6fe.aku-a1.kle-5aa)!", + result: { + word: "klepsydra", + correct: 21, + position: 6, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 38, + date: "15.08.2025", + }, + }, + { + date: "15.08.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWY10SZstmL3QWMtAXZs5iMxITLsF2aucTZh1ibhBnLw4SOuQjLxIjL3IjMtEmckl3cwVGbrhSI", + value: "!(klepsydra-227.21.4.9.0.pan-ae7.kal-212.lep-1d7.kle-5aa)!", + result: { + word: "klepsydra", + correct: 21, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "15.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/niby-proste-bardzo-polskie-08-09-2025-flag-pl-diffle-difflepl-grywebowe-42-liter" +] = [ + { + date: "08.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2UWL6NHcuYmY10yY6NnL0ITMtMWZs5yMwMTLuVWbuUGM00ibldmLw4yMx4yMuYjMuETNy0SYjlmblp3cwhSI", + value: "!(pszenica-251.26.3.13.0.gen-40e.men-303.lec-124.szc-5bf.psz-e6)!", + result: { + word: "pszenica", + correct: 26, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "08.09.2025", + }, + }, + { + date: "08.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTZto3cw5iYwETLzVmauETLlR2duYDZy0SaiVnL4YTLup3cuIWZ50ycvtmLw4yMx4CNuAjMuETNy0SYjlmblp3cwhSI", + value: + "!(pszenica-251.20.4.13.0.kos-9eb.szn-68.ubi-2d6.wde-1.jes-10b.psz-e6)!", + result: { + word: "pszenica", + correct: 20, + position: 4, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "08.09.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2UWL6NnLwgTLkVHcuAjL04SMuQTMuETNy0SYjlmblp3cwhSI", + value: "!(pszenica-251.14.1.4.0.pud-80.sz-e6)!", + result: { + word: "pszenica", + correct: 14, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + }, + }, + { + date: "08.09.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTZto3cuEGZyITLr9GcuAjL24SMuITMuETNy0SYjlmblp3cwhSI", + value: "!(pszenica-251.12.1.6.0.pok-22da.sz-e6)!", + result: { + word: "pszenica", + correct: 12, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "08.09.2025", + }, + }, + { + date: "08.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2UWL65CMxETLpNHcugzM00CajNjL1EjMx0SZpBnL4EWMtwWaz5SN5QTL6JHduEjM30Sa6RmLiJDOx0yYhpnLmJmMtUHaj5CMuQTMuETMuAzMuETNy0SYjlmblp3cwhSI", + value: + "!(pszenica-251.30.11.14.0.chu-2bf.zac-182b.dzi-721.trz-495.sil-1a8.pie-1215.3ch-438.psi-110.z-e6)!", + result: { + word: "pszenica", + correct: 30, + position: 11, + incorrect: 14, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 55, + date: "08.09.2025", + }, + }, + { + date: "08.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTZto3cw5CZyQTLyB3cuAjL14yMuITMuETNy0SYjlmblp3cwhSI", + value: "!(pszenica-251.12.3.5.0.spr-42d.psz-e6)!", + result: { + word: "pszenica", + correct: 12, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "08.09.2025", + }, + }, + { + date: "08.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTZto3cuczNx0iblBnL3ITLrVXZuAjL24iMuUTMuETNy0SYjlmblp3cwhSI", + value: "!(pszenica-251.15.2.6.0.euk-27.pen-177.sz-e6)!", + result: { + word: "pszenica", + correct: 15, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "08.09.2025", + }, + }, + { + date: "08.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTZto3cuEWM3MTL6JHcuAjL14SMuMTMuETNy0SYjlmblp3cwhSI", + value: "!(pszenica-251.13.1.5.0.prz-371a.sz-e6)!", + result: { + word: "pszenica", + correct: 13, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "08.09.2025", + }, + }, + { + date: "08.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTZto3cw5CNiZTLhd3auAjL44yMuITMuETNy0SYjlmblp3cwhSI", + value: "!(pszenica-251.12.3.8.0.kwa-6b4.psz-e6)!", + result: { + word: "pszenica", + correct: 12, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "08.09.2025", + }, + }, + { + date: "08.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2UWL6NnLzkDOhFTL6JHcuAjL24SMuQTMuETNy0SYjlmblp3cwhSI", + value: "!(pszenica-251.14.1.6.0.prz-1a893.sz-e6)!", + result: { + word: "pszenica", + correct: 14, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "08.09.2025", + }, + }, + { + date: "08.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNl1iezBnL4ITNtMmez5CNmFTLkl3duAjL24iMugTMuETNy0SYjlmblp3cwhSI", + value: "!(pszenica-251.18.2.6.0.wyd-1f4.szc-528.psz-e6)!", + result: { + word: "pszenica", + correct: 18, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "08.09.2025", + }, + }, + { + date: "08.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTZto3cw5SO0ITLk9WbuAjL24SMuMTMuETNy0SYjlmblp3cwhSI", + value: "!(pszenica-251.13.1.6.0.mod-249.psz-e6)!", + result: { + word: "pszenica", + correct: 13, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "08.09.2025", + }, + }, + { + date: "08.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2UWL6NnL1AzYtA3buQzMtcXZw5yY2EWLhJ3ZuAjL44iMuEjMuETNy0SYjlmblp3cwhSI", + value: "!(pszenica-251.21.2.8.0.gra-a6c.pew-34.op-c05.sz-e6)!", + result: { + word: "pszenica", + correct: 21, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "08.09.2025", + }, + }, + { + date: "08.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTZto3cw5iNhJWLllWbuAjL34iMuMTMuETNy0SYjlmblp3cwhSI", + value: "!(pszenica-251.13.2.7.0.mie-ba6.psz-e6)!", + result: { + word: "pszenica", + correct: 13, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "08.09.2025", + }, + }, + { + date: "08.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTZto3cuEWMyUTL69GcuAjLz4yMuITMuETNy0SYjlmblp3cwhSI", + value: "!(pszenica-251.12.3.3.0.poz-521a.sz-e6)!", + result: { + word: "pszenica", + correct: 12, + position: 3, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "08.09.2025", + }, + }, + { + date: "08.09.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTZto3cw5CNwMWLjp3cuIGMzETLkFmbuAjL54yMuYTMuETNy0SYjlmblp3cwhSI", + value: "!(pszenica-251.16.3.9.0.nad-130b.szc-c04.psz-e6)!", + result: { + word: "pszenica", + correct: 16, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "08.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-lubie-takich-slow-sa-tak-bardzo-przyszywane-obce-jeszcze-w-pelni-spolszczone" +] = [ + { + date: "17.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMtIXYj5SY10CajJjL2cjLwkDNtg2Yz4yYjRTLvJnYuUTL39GcuATLn9mbuEWY10Caj9mLzkTMtg2Yz4CMtIXds5CZ3ITLtp3cuYGOtsWek5CMukTMuUjL3MjL5IjMtEmch52biJXYjhSI", + value: + "!(carbonara-229.37.5.19.0.dyk-8f.szm-27d.lur-0.3ch-193.och-5aa.nog-0.pow-5.bro-4cc.3ch-490.76.2ch-5a.car-25)!", + result: { + word: "carbonara", + correct: 37, + position: 5, + incorrect: 19, + knownIncorrect: 0, + totalWords: 12, + totalLetters: 61, + date: "17.08.2025", + }, + }, + { + date: "17.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMtIXYuATLm92YuQWZx0CajNjL0QWLu9mYuEWYt42bs5yN1ITLwVHZuI2N00ibpdnLiVWOtM3br5CMucTMuIjLyIjL5IjMtEmch52biJXYjhSI", + value: + "!(carbonara-229.22.2.17.0.kos-9eb.win-47b.dup-257.lon-aa.bon-d4.3ch-1ed.cof-0.ar-25)!", + result: { + word: "carbonara", + correct: 22, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 41, + date: "17.08.2025", + }, + }, + { + date: "17.08.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMtIXYj5yN4ITLyd2buIzMz0SdyJmLkJDNtIHcz5CMuMTMuMjLwIjL5IjMtEmch52biJXYjhSI", + value: "!(carbonara-229.20.3.13.0.spr-42d.bru-332.ogr-287.car-25)!", + result: { + word: "carbonara", + correct: 20, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "17.08.2025", + }, + }, + { + date: "17.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ITLyF2YuATLs92ZuQWYy0SdoNmL0EWNtonc0VWau5CMuYTMuIjL2EjL5IjMtEmch52biJXYjhSI", + value: "!(carbonara-229.16.2.16.0.nietrz-5a4.chu-2ad.gol-0.car-25)!", + result: { + word: "carbonara", + correct: 16, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "17.08.2025", + }, + }, + { + date: "17.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNy0ich5CZ5MTLhp3YuADOtMWdk5yN20ibvtmLw0icv5mLjZTYtEmcn5CMuETMuIjLzIjL5IjMtEmch52biJXYjhSI", + value: + "!(carbonara-229.23.2.11.0.gra-a6c.nor-0.kon-67.duc-80.cza-39d.ar-25)!", + result: { + word: "carbonara", + correct: 23, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "17.08.2025", + }, + }, + { + date: "17.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ITLyF2YukDNy0CZv1mLw4iNuIjLzEjL5IjMtEmch52biJXYjhSI", + value: "!(carbonara-229.13.2.6.0.mod-249.car-25)!", + result: { + word: "carbonara", + correct: 13, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "17.08.2025", + }, + }, + { + date: "17.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNy4SY4ETLyF2YuQDOz0ichJmLlhjMt4WYy5iYx0iciVnLyQjYtInYv5iMlNTLvJ3ZuUDM10icvZmL3QTMt0WYy5SYxczMtoncw5CMukTMucjLxQjL5IjMtEmch52biJXYjhSI", + value: + "!(carbonara-229.41.7.19.0.prz-371a.ram-147.for-505.gro-3e2.obr-b42.ubr-1b.ran-28e.bar-384.car-18a.25)!", + result: { + word: "carbonara", + correct: 41, + position: 7, + incorrect: 19, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 67, + date: "17.08.2025", + }, + }, + { + date: "17.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMuIWMtIXYj5CMtIXYh5CO4cTLyF2ZucjMtsWdl5CMuETMuEjLxMjL5IjMtEmch52biJXYjhSI", + value: "!(carbonara-229.31.1.11.0.euk-27.gar-788.aar-0.car-1b.25)!", + result: { + word: "carbonara", + correct: 31, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 43, + date: "17.08.2025", + }, + }, + { + date: "17.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMtIXYj5iY1cTLyFmYuUTOtIXYm5SY5cTLyF2ZuIzYj1ich1mL0YWMtQWe35SMuITMuIjLxMjL5IjMtEmch52biJXYjhSI", + value: + "!(carbonara-229.31.2.12.1.wyd-1f4.mar-cc2.gar-79a.far-95.bar-75b.car-25)!", + result: { + word: "carbonara", + correct: 31, + position: 2, + incorrect: 12, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 45, + date: "17.08.2025", + }, + }, + { + date: "17.08.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMtIXYj5CM0ETLhJXYuYGZx0CZ1BnL5MTMtInYv5iNhJWLllWbuAjL5EjLwEjL4EjL5IjMtEmch52biJXYjhSI", + value: + "!(carbonara-229.18.10.19.0.mie-ba6.obr-139.pud-1df.ara-140.car-25)!", + result: { + word: "carbonara", + correct: 18, + position: 10, + incorrect: 19, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 47, + date: "17.08.2025", + }, + }, + { + date: "17.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1IjLw0ichNmLw0yY39mL4UTLs9mLw0Sb15CZyETLu9mLwUzNt8Gaj5CMtI3bu5SYxITNto3bw5CMuUTMuMjL1MjL5IjMtEmch52biJXYjhSI", + value: + "!(carbonara-229.35.3.15.0.poz-521a.nor-0.cho-750.on-12d.um-0.ol-58.owc-0.car-0.25)!", + result: { + word: "carbonara", + correct: 35, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 53, + date: "17.08.2025", + }, + }, + { + date: "17.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNy0ichNmLyQTLiFmcuM2Y00ybyJmLzMDNtI2bk5yMklTLy92auMTO4EWMtoncw5SMuUTMuYjL4IjL5IjMtEmch52biJXYjhSI", + value: + "!(carbonara-229.28.6.15.1.prz-1a893.kor-9d3.dob-433.bro-4cc.rab-42.car-25)!", + result: { + word: "carbonara", + correct: 28, + position: 6, + incorrect: 15, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 49, + date: "17.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-ma-o-czym-mowic-panie-piechniczek-19-09-2025-flag-pl-diffle-difflepl-21-lite" +] = [ + { + date: "19.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNkFTLkF2auMDOx0ickpnL2YWMt4Waz5CMukjLz4SOuIjNy0SYyRWYrhSI", + value: "!(kadra-262.9.3.9.0.sin-1f6.zdr-183.kad-1d5)!", + result: { + word: "kadra", + correct: 9, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "19.09.2025", + }, + }, + { + date: "19.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1QWMtQmLkFWOtAnLlNzMtQXYuIWZ50ycvtmLw4CMx4SMuUTMuIjNy0SYyRWYrhSI", + value: "!(kadra-262.15.1.10.0.kos-9eb.at-33e.p-9ad.d-1d5)!", + result: { + word: "kadra", + correct: 15, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "19.09.2025", + }, + }, + { + date: "19.09.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNkFTLk5CMtIXYr5iMxETL3F2ZucTN00ybwVnLw4iNx4CMuMTMuIjNy0SYyRWYrhSI", + value: "!(kadra-262.13.0.16.0.upo-457.gaw-112.kar-0.d-1d5)!", + result: { + word: "kadra", + correct: 13, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "19.09.2025", + }, + }, + { + date: "19.09.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1QWMtQWYr5CNhVTL6JHdllmbuAjLwEjLy4COuIjNy0SYyRWYrhSI", + value: "!(kadra-262.8.2.10.0.nietrz-5a4.kad-1d5)!", + result: { + word: "kadra", + correct: 8, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "19.09.2025", + }, + }, + { + date: "19.09.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNkFTLkF2auI2M40yah1mLhRmMy0yavBnLw4CNx4CMuITMuIjNy0SYyRWYrhSI", + value: "!(kadra-262.12.0.14.0.pok-22da.mak-83b.kad-1d5)!", + result: { + word: "kadra", + correct: 12, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "19.09.2025", + }, + }, + { + date: "19.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDZx0CZhtmLkJDNtIHcz5CMugjLx4COuIjNy0SYyRWYrhSI", + value: "!(kadra-262.8.1.8.0.spr-42d.kad-1d5)!", + result: { + word: "kadra", + correct: 8, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "19.09.2025", + }, + }, + { + date: "19.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1QWMtQmLw0icuQWNtAnL0MTNtIXYuQjY20SY3tmLw4CNx4SMugTMuIjNy0SYyRWYrhSI", + value: "!(kadra-262.18.1.14.0.kwa-6b4.ar-534.p-5d.r-0.d-1d5)!", + result: { + word: "kadra", + correct: 18, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "19.09.2025", + }, + }, + { + date: "19.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNkFTLk5CMtIXYuATLyVnL1kTLlJ3auAjL44CMuUTMuIjNy0SYyRWYrhSI", + value: "!(kadra-262.15.0.8.0.kre-95.ur-0.ar-0.d-1d5)!", + result: { + word: "kadra", + correct: 15, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "19.09.2025", + }, + }, + { + date: "19.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNkFTLkF2auATLkFmcuI2Yz0SYyVnLlRWZtEmcw5yY2EWLhJ3ZuAjL54SMuQTMuIjNy0SYyRWYrhSI", + value: "!(kadra-262.14.1.9.0.gra-a6c.pra-ede.ura-3cb.rad-0.kad-1d5)!", + result: { + word: "kadra", + correct: 14, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "19.09.2025", + }, + }, + { + date: "19.09.2025", + nick: "Szuuz_Ekleer", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1QWMtQmLw0ich5yNidTL6JnLmRTL0V3auAjL54CMuUTMuIjNy0SYyRWYrhSI", + value: "!(kadra-262.15.0.9.0.kut-4f.rz-7b7.ar-0.d-1d5)!", + result: { + word: "kadra", + correct: 15, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "19.09.2025", + }, + }, + { + date: "19.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNkFTLk5CZ10CchtmL3ITLrVXZuAjL44SMuETMuIjNy0SYyRWYrhSI", + value: "!(kadra-262.11.1.8.0.euk-27.kap-5d.d-1d5)!", + result: { + word: "kadra", + correct: 11, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "19.09.2025", + }, + }, + { + date: "19.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDZx0CZuATLyF2auIDZtI3b35yM5gTYx0ieyBnLw4SNx4SMuMTMuIjNy0SYyRWYrhSI", + value: "!(kadra-262.13.1.15.0.prz-1a893.wor-d2.kar-0.d-1d5)!", + result: { + word: "kadra", + correct: 13, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "19.09.2025", + }, + }, + { + date: "19.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDZx0CZhtmLhVjMtEmck5CNmFTLkl3duAjL44iMuATMuIjNy0SYyRWYrhSI", + value: "!(kadra-262.10.2.8.0.wyd-1f4.dra-25a.kad-1d5)!", + result: { + word: "kadra", + correct: 10, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "19.09.2025", + }, + }, + { + date: "19.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNkFTLkF2augTYx0ibh1mLhFzNz0ieyBnLw4iMx4yMuETMuIjNy0SYyRWYrhSI", + value: "!(kadra-262.11.3.12.0.prz-371a.man-1a8.kad-1d5)!", + result: { + word: "kadra", + correct: 11, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "19.09.2025", + }, + }, + { + date: "19.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDZx0CZhtmLidjYtQWY65yYiFTLk9WbuAjL24SMuITMuIjNy0SYyRWYrhSI", + value: "!(kadra-262.12.1.6.0.mod-1bc.zad-b7b.kad-1d5)!", + result: { + word: "kadra", + correct: 12, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "19.09.2025", + }, + }, + { + date: "19.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1QWMuQDZx0CZugTZ4ETLyF2auYTYi1SZp1mLw4yMx4CMuQTMuIjNy0SYyRWYrhSI", + value: "!(kadra-262.14.0.13.0.mie-ba6.kar-18e8.d-1d4.1d5)!", + result: { + word: "kadra", + correct: 14, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "19.09.2025", + }, + }, + { + date: "19.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNkFTLk5iZwQTLi5iNjJTMtIXYr5SZz0yahdnLhFjM10ievBnLw4yMx4SMucTMuIjNy0SYyRWYrhSI", + value: "!(kadra-262.17.1.13.0.poz-521a.wak-3e.kar-12c6.b-40f.d-1d5)!", + result: { + word: "kadra", + correct: 17, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "19.09.2025", + }, + }, + { + date: "19.09.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNkFTLk5CMtIXYr5SOiJTLoN2MugDZ30ic1tmL5IWLzlXbuUjMi1ibhBnLw4yMx4CMugTMuIjNy0SYyRWYrhSI", + value: "!(kadra-262.18.0.13.0.pan-b25.mys-b9.kur-7d8.3ch-2b9.kar-0.d-1d5)!", + result: { + word: "kadra", + correct: 18, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "19.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-ma-to-jak-nazwy-wlasne-jesli-macie-problem-z-dzisiejszym-haslem-to-szukajcie" +] = [ + { + date: "29.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ETLyZWYuEzM00SYyJmL1QzMtkmc05iM30SdyRmL3IzYtoncwVWau5CMuQTMuIjLyIjLwEjMtMnbhF2apJnZhhSI", + value: + "!(afrikaans-210.22.2.14.0.nieprz-c27.dru-72.tri-345.bra-431.afr-15)!", + result: { + word: "afrikaans", + correct: 22, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "29.07.2025", + }, + }, + { + date: "29.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNx0icm5SOwETLyRWYuATLzF2auMGMy0SY3FmL5cjMuMTLoN2MuM2MtI3ZuI2My0CdyFmLwIjNtEmcw5yM5ITLyVnYucDM30SYrNnLkVWOtM3br5CMucTMukjL0QjLwEjMtMnbhF2apJnZhhSI", + value: + "!(afrikaans-210.44.9.17.0.kos-9ed.ska-707.bur-293.pra-620.art-23b.gr-3c.3ch-3.279.awa-20c.kas-0.adr-109.fr-15)!", + result: { + word: "afrikaans", + correct: 44, + position: 9, + incorrect: 17, + knownIncorrect: 0, + totalWords: 12, + totalLetters: 70, + date: "29.07.2025", + }, + }, + { + date: "29.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNx0icmFmL1ITLuF2auQTLuJXYugDM20SYyBnL0ImNtE2dr5CMuITMugjL1IjLwEjMtMnbhF2apJnZhhSI", + value: "!(afrikaans-210.25.8.12.0.kwa-6b4.pra-608.arn-4.kan-25.afr-15)!", + result: { + word: "afrikaans", + correct: 25, + position: 8, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 45, + date: "29.07.2025", + }, + }, + { + date: "29.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTMtInZuQTLuJXYuAjY00iZulmLkJDNtIHcz5CMuITMucjLyIjLwEjMtMnbhF2apJnZhhSI", + value: "!(afrikaans-210.22.7.12.0.spr-42d.inf-4b0.arn-4.fr-15)!", + result: { + word: "afrikaans", + correct: 22, + position: 7, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 41, + date: "29.07.2025", + }, + }, + { + date: "29.07.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTMuQjMx0icmFmLk1SaylmL0IzMtMXYu5iZlJTLpx2auITMtg2Yz4CZlNTLyFmZuczYz0CajNjLm1yapNnLlJWMtwWYk5CMhNTLyFGauUWL0l2ZuYDM20ichJmL2kTLtVncuEGZyITLr9GcuIjLwIjL1EjL4QjLwEjMtMnbhF2apJnZhhSI", + value: + "!(afrikaans-210.48.15.20.2.pok-22da.rum-96.bar-606.git-e.har-3a0.dal-1be.sik-f.3ch-3c7.far-3ed.3ch-12.kli-2ef.nas-324.iri-d.afr-124.15)!", + result: { + word: "afrikaans", + correct: 48, + position: 15, + incorrect: 20, + knownIncorrect: 2, + totalWords: 15, + totalLetters: 83, + date: "29.07.2025", + }, + }, + { + date: "29.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTMtInZh5CNwETLyF2auETYx0SYyZmLw0yapBnLzUWMtsWat5SZtwWai5iZ40yculmLmJmMtUHaj5CMuUTMuYjLxMjLwEjMtMnbhF2apJnZhhSI", + value: + "!(afrikaans-210.31.6.15.0.chu-2bf.ins-8f.bil-e.mik-1e3.pik-0.fra-1a1.kar-104.afr-15)!", + result: { + word: "afrikaans", + correct: 31, + position: 6, + incorrect: 15, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 52, + date: "29.07.2025", + }, + }, + { + date: "29.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ETLyZmLw0yayFmL30CajJjLw0yahNnLzEWNtMXYr5SZ10SYrVnLw4SOuQjL2IjLwEjMtMnbhF2apJnZhhSI", + value: "!(afrikaans-210.26.4.9.0.uka-5e.kas-5a3.sak-0.2ch-7.ark-0.fr-15)!", + result: { + word: "afrikaans", + correct: 26, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "29.07.2025", + }, + }, + { + date: "29.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ETLyZWYuYzNx0CajNjLk1iahZmLzYTLrJXYuETYx0SYyZmL3AzNtE2az5iNj1yZhdnL1MTNtEmcr5CN5ITLuFmcuImZx0ych1mL2kTLvJHZuMTO4EWMtoncw5CMucTMukjL0QjLwEjMtMnbhF2apJnZhhSI", + value: + "!(afrikaans-210.44.9.17.0.prz-1a893.dro-96.mas-1fb.ran-294.kra-535.wag-c6.ska-707.fra-1a1.ark-63.faj-d.3ch-176.afr-15)!", + result: { + word: "afrikaans", + correct: 44, + position: 9, + incorrect: 17, + knownIncorrect: 0, + totalWords: 12, + totalLetters: 70, + date: "29.07.2025", + }, + }, + { + date: "29.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTMtInZh5SN0MTLpJHduYTOy0ibhxmL34SOtg2Yy4iMi1SYpBnL2UTMtIWYy5SZj1SbyFmL0YWMtQWe35CMuMTMuMjLxMjLwEjMtMnbhF2apJnZhhSI", + value: + "!(afrikaans-210.31.3.13.0.wyd-1f4.arm-ce.rab-156.pia-b2.2ch-9.7.lan-296.tri-345.afr-15)!", + result: { + word: "afrikaans", + correct: 31, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 47, + date: "29.07.2025", + }, + }, + { + date: "29.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ETLyZWYuQjNy0CbhZmL10yZmFmLx0iZh1mL1ETL1lmYuQDMx0ichtmLkNTLmFmcuMTMtIXam5CNhVTL6JHdllmbuAjL2EjL0EjL4MjLwEjMtMnbhF2apJnZhhSI", + value: + "!(afrikaans-210.38.14.16.0.nietrz-5a4.fir-13.raf-3d.kar-104.biu-15.maf-1.afg-5.fal-264.afr-15)!", + result: { + word: "afrikaans", + correct: 38, + position: 14, + incorrect: 16, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 68, + date: "29.07.2025", + }, + }, + { + date: "29.07.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTMtInZh5iZk1SYyZmL1ETLhtWauATL1J3ZuETYx0SazBnL2EmYtUWat5CMuYTMuMjL2IjLwEjMtMnbhF2apJnZhhSI", + value: + "!(afrikaans-210.26.3.16.0.mie-ba6.psi-1a1.gru-0.ika-15.fra-df.afr-15)!", + result: { + word: "afrikaans", + correct: 26, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 45, + date: "29.07.2025", + }, + }, + { + date: "29.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNx0icmFmL3EzNtEmcuETLylmZuADM20SYyBnLkhTLtVncuUWYx0icpdnLjZTYtEmcn5CMuETMugjLwMjLwEjMtMnbhF2apJnZhhSI", + value: + "!(afrikaans-210.30.8.11.0.gra-a6c.wir-1ae.rum-8d.pra-600.fir-1.ra-717.afr-15)!", + result: { + word: "afrikaans", + correct: 30, + position: 8, + incorrect: 11, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 49, + date: "29.07.2025", + }, + }, + { + date: "29.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNx0icmFmL0UjMtwWYi5yNy0ya1VmLx4COuIjL4EjLwEjMtMnbhF2apJnZhhSI", + value: "!(afrikaans-210.18.2.8.1.euk-27.bal-254.afr-15)!", + result: { + word: "afrikaans", + correct: 18, + position: 2, + incorrect: 8, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 28, + date: "29.07.2025", + }, + }, + { + date: "29.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTMtInZh5iY30ycpZmLhFjM10ievBnLw4iNuQjL3EjLwEjMtMnbhF2apJnZhhSI", + value: "!(afrikaans-210.17.4.6.0.poz-521a.fis-7b.afr-15)!", + result: { + word: "afrikaans", + correct: 17, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "29.07.2025", + }, + }, + { + date: "29.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNx4CNyETLyZWYuYmNtg2Yy4iZi1ycptmLxQ2Mtk2az5iN5ITLoN2MuQDN00SYyZmLiFTLu5WauUjMx0iZhtmLzkDNuYzNx0CajNjLw0yap5SMhFTLhJnZuITMtsWYq5CMtIXam5CMtYWay5SNmFTLyF2auUDZ00SYu5CMtg2YuczMtE2ch5CZxETLhl2cugDNx0ibhJnL1QjMtIXdm5CMtkmch5CMtYWYn5iNygTLuF2auMzNtsWYt5yYtg2Yz4iN40iYhtmLzgTLrJnLmJTLpxWYuYmMy0SYpNnLhFzNz0ieyBnL14iNy4iNy4CMxEjLwEjMtMnbhF2apJnZhhSI", + value: + "!(afrikaans-210.110.26.26.5.prz-371a.sia-22f.ali-2f.rk-83.kab-86.3ch-c.mak-73.kan-826.gaf-0.ari-0.fur-245.ran-148.sia-11d.asa-37.ch-0.na-4d5.kar-1f5.rif-0.fir-0.jak-12.fra-1a1.ik-0.3ch-176.493.kaf-125.inn-1b.fra-444.3ch-296.ski-3d1.kis-bf.2ch-6f.afr-124.15)!", + result: { + word: "afrikaans", + correct: 110, + position: 26, + incorrect: 26, + knownIncorrect: 5, + totalWords: 33, + totalLetters: 162, + date: "29.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-moge-spac-22-08-2025-flag-pl-diffle-difflepl-grywebowe-30-liter-w-3-slowach-" +] = [ + { + date: "22.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYl1ydrVmL3ETL3VGcuQTY10ieyRXZp5mLw4SOuUjL2EjL0MjMtsWZuVHcpd3alhSI", + value: "!(ekwipunek-234.16.5.9.0.nietrz-5a4.pew-17.ekw-ec)!", + result: { + word: "ekwipunek", + correct: 16, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "22.08.2025", + }, + }, + { + date: "22.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWZtc3al5iZ1QTLoN2MuADZiJTLrl3duQWZ50ycvtmLw4COuQjL3EjL0MjMtsWZuVHcpd3alhSI", + value: "!(ekwipunek-234.17.4.8.0.kos-9ed.wyk-2bd0.3ch-45f.ekw-ec)!", + result: { + word: "ekwipunek", + correct: 17, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "22.08.2025", + }, + }, + { + date: "22.08.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjVWL3tWZuYGZz0Cc1tmLhRmMy0yavBnLw4COuEjL3EjL0MjMtsWZuVHcpd3alhSI", + value: "!(ekwipunek-234.17.1.8.0.pok-22da.kup-3df.ekw-ec)!", + result: { + word: "ekwipunek", + correct: 17, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "22.08.2025", + }, + }, + { + date: "22.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWZtc3al5COzUTL1t2cuYTMx0ibpBnL0EmMtwWa35CZ3ETLjl2YuYjNy0ibptmLwQjMtAXbp5SM10CajJjLjZTYtEmcn5CMuITMuQjL4IjL0MjMtsWZuVHcpd3alhSI", + value: + "!(ekwipunek-234.28.4.12.0.gra-a6c.2ch-51.imp-240.kin-266.cic-17d.wil-2a4.pin-116.sku-538.ekw-ec)!", + result: { + word: "ekwipunek", + correct: 28, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 44, + date: "22.08.2025", + }, + }, + { + date: "22.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYl1ydrVmL4MjMt4Wdm5CZkRTLp5WduUWNt0Wdk5iNxQTLul2duQ2Mx0SaudmLjRTL3VmL2kTL3lGcuYDO10SZpdnLkJjNx0ic0NnLmJmMtUHaj5CMucTMukjL5MjL0MjMtsWZuVHcpd3alhSI", + value: + "!(ekwipunek-234.39.9.17.0.chu-2bf.str-162d.wie-586.piw-96.ew-4c.gni-13d.win-416.dum-5e.uni-4dd.fun-238.ekw-ec)!", + result: { + word: "ekwipunek", + correct: 39, + position: 9, + incorrect: 17, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 65, + date: "22.08.2025", + }, + }, + { + date: "22.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjVWL3tWZuEDOt0Wdt5SYm1CajNjLjRTL3VGcuUTZ10CajNjLkRGNtkmb15SY50ydpBnLwkjNtk2d15SMz0Sdu5SYxQTLul2duQjZh1ichJmL2ITMtwWa35SMucTMukjLwQjL0MjMtsWZuVHcpd3alhSI", + value: + "!(ekwipunek-234.40.9.17.1.wil-126.bar-af4.win-41a.nu-31.uwi-690.piw-9a.uni-4dd.3ch-5e5.pew-4c.3ch-fa.mum-81.ekw-ec)!", + result: { + word: "ekwipunek", + correct: 40, + position: 9, + incorrect: 17, + knownIncorrect: 1, + totalWords: 12, + totalLetters: 66, + date: "22.08.2025", + }, + }, + { + date: "21.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmMjFTLr5yNlFTMtIWY65yM5gTYx0ieyBnLw4yMx4SMuETMuMzMy0ibvtWY6hSI", + value: "!(zakon-233.11.1.13.0.prz-1a893.zab-11e7.k-1c2d)!", + result: { + word: "zakon", + correct: 11, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "21.08.2025", + }, + }, + { + date: "22.08.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjVWL3tWZuMDZx0ibpBnLzIDNtkGc35iN50ydpBnLkJDNtIHcz5CMuATMuYjL1IjL0MjMtsWZuVHcpd3alhSI", + value: "!(ekwipunek-234.25.6.10.0.spr-42d.piw-96.wpi-423.pin-1d3.ekw-ec)!", + result: { + word: "ekwipunek", + correct: 25, + position: 6, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "22.08.2025", + }, + }, + { + date: "22.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWZtc3al5yNx0ydlBnLxEWL35WauQjZx0CZ5dnLw4COuYjL4EjL0MjMtsWZuVHcpd3alhSI", + value: "!(ekwipunek-234.18.6.8.0.wyd-1f4.inw-a1.pew-17.ekw-ec)!", + result: { + word: "ekwipunek", + correct: 18, + position: 6, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "22.08.2025", + }, + }, + { + date: "22.08.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWZtc3al5SZl1ydytmL2EmYtUWat5CMuATMuIjL4EjL0MjMtsWZuVHcpd3alhSI", + value: "!(ekwipunek-234.18.2.10.0.mie-ba6.krw-ee.ekw-ec)!", + result: { + word: "ekwipunek", + correct: 18, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "22.08.2025", + }, + }, + { + date: "22.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjVWL3tWZuEWYz0CbpZmLhFjM10ievBnLw4SOuIjL3EjL0MjMtsWZuVHcpd3alhSI", + value: "!(ekwipunek-234.17.2.9.0.poz-521a.fil-3aa.ekw-ec)!", + result: { + word: "ekwipunek", + correct: 17, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "22.08.2025", + }, + }, + { + date: "22.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYl1ydr5yNy0ya1VmLw4SNuEjLzEjL0MjMtsWZuVHcpd3alhSI", + value: "!(ekwipunek-234.13.1.5.0.euk-27.kw-ec)!", + result: { + word: "ekwipunek", + correct: 13, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "22.08.2025", + }, + }, + { + date: "22.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYl1ydrVmLldDNtg2Yz4SOkFTL5R3cugjMz0SZpdnL5QjMtQ2bt5CMuQTMuEjL3EjL0MjMtsWZuVHcpd3alhSI", + value: "!(ekwipunek-234.17.1.14.0.mod-249.wie-328.sty-1d9.3ch-47e.ekw-ec)!", + result: { + word: "ekwipunek", + correct: 17, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "22.08.2025", + }, + }, + { + date: "22.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYl1ydr5SN20SawVmLhFzNz0ieyBnLw4SOuIjL1EjL0MjMtsWZuVHcpd3alhSI", + value: "!(ekwipunek-234.15.2.9.0.prz-371a.epi-65.kw-ec)!", + result: { + word: "ekwipunek", + correct: 15, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "22.08.2025", + }, + }, + { + date: "22.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYl1ydrVmL3MzMtkmL0ImNtE2dr5CMuETMuIjL2EjL0MjMtsWZuVHcpd3alhSI", + value: "!(ekwipunek-234.16.2.11.0.kwa-6b4.i-337.ekw-ec)!", + result: { + word: "ekwipunek", + correct: 16, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "22.08.2025", + }, + }, + { + date: "22.08.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjVWL3tWZuQGZ00SauVnLiBzMx0CZh5mLw4COuIjL0EjL0MjMtsWZuVHcpd3alhSI", + value: "!(ekwipunek-234.14.2.8.0.nad-130b.uni-4dd.ekw-ec)!", + result: { + word: "ekwipunek", + correct: 14, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "22.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-moja-branza-07-06-2025-flag-pl-diffle-difflepl-grywebowe-35-liter-w-4-slowac" +] = [ + { + date: "07.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMmFTLvB3buEDOk1icvtmLlRTNt8Gc15CNhVTL6JHdllmbuAjLyEjL24yNx4CO1ETLrlmby9GcvhSI", + value: "!(opornik-158.17.6.12.0.nietrz-5a4.upo-54e.kor-d81.opo-1f0)!", + result: { + word: "opornik", + correct: 17, + position: 6, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "07.06.2025", + }, + }, + { + date: "07.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjZx0ybw9mLw0SdsBnLxYGOtI3br5CNy0yb3RnLldzMtI3bu5SOmlTLz92auAjLzEjLx4iNy4CO1ETLrlmby9GcvhSI", + value: + "!(opornik-158.26.1.13.0.kos-9f9.nor-37e.two-24.kor-8f1.plu-0.opo-1f0)!", + result: { + word: "opornik", + correct: 26, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "07.06.2025", + }, + }, + { + date: "07.06.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMmFjL2YWMt8Gcv5CNhVTL6JHdllmbuAjLxEjLz4yNx4CO1ETLrlmby9GcvhSI", + value: "!(opornik-158.17.3.11.0.nietrz-5a4.opo-1f6.1f0)!", + result: { + word: "opornik", + correct: 17, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "07.06.2025", + }, + }, + { + date: "07.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjZx0ybw5iYiFTLvJ2buQDZ50SbvtmLldzMtI3bu5SMmhTLy92auYGOz0CZ1JnLwITLyR3cuEjL5EjLw4CNz4CO1ETLrlmby9GcvhSI", + value: + "!(opornik-158.34.0.19.1.str-20.rud-38f.kor-8f1.nor-37e.kom-9d4.obo-1bb.po-1f0)!", + result: { + word: "opornik", + correct: 34, + position: 0, + incorrect: 19, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 53, + date: "07.06.2025", + }, + }, + { + date: "07.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwYWMt8Gcv5SYxczMtoncw5CMugjLw4CMx4CO1ETLrlmby9GcvhSI", + value: "!(opornik-158.10.0.8.0.prz-371a.opo-1f0)!", + result: { + word: "opornik", + correct: 10, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "07.06.2025", + }, + }, + { + date: "07.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwYWMt8Gcv5CMxcjMtI3bw5CZyQTLyB3cuEjLwEjLx4yNx4CO1ETLrlmby9GcvhSI", + value: "!(opornik-158.17.1.10.1.spr-42d.por-2710.opo-1f0)!", + result: { + word: "opornik", + correct: 17, + position: 1, + incorrect: 10, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 28, + date: "07.06.2025", + }, + }, + { + date: "07.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjZx0ybw5CMxcTLyt2buMWYtkGaj5CMukjLz4CNx4CO1ETLrlmby9GcvhSI", + value: "!(opornik-158.14.3.9.0.chi-ac.okr-710.po-1f0)!", + result: { + word: "opornik", + correct: 14, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "07.06.2025", + }, + }, + { + date: "07.06.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwYWMt8Gcv5iYwMTLw9GdugzYts2bw5CMucjLx4SNx4CO1ETLrlmby9GcvhSI", + value: "!(opornik-158.15.1.7.0.pok-c8.top-30b.opo-1f0)!", + result: { + word: "opornik", + correct: 15, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "07.06.2025", + }, + }, + { + date: "07.06.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjZx0ybw5iYiFTLvJ2buMTOx0CbvJnL4cjZt42br5iZiJTL1h2YuAjLwEjLy4yMy4CO1ETLrlmby9GcvhSI", + value: "!(opornik-158.23.2.10.0.chu-2bf.kon-f78.rol-193.obo-1bb.po-1f0)!", + result: { + word: "opornik", + correct: 23, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "07.06.2025", + }, + }, + { + date: "07.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMmFTLvB3buMWN00CczdnLzkDOhFTL6JHcuAjLxEjLw4yNx4CO1ETLrlmby9GcvhSI", + value: "!(opornik-158.17.0.11.0.prz-1a893.wsp-45c.opo-1f0)!", + result: { + word: "opornik", + correct: 17, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "07.06.2025", + }, + }, + { + date: "07.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwYWMt8Gcv5CNwETLvxmZuMGZtMWdt5COwQTLpJmeuEjZ40icvtmL1QmZtIHdz5yY2EWLhJ3ZuAjL2EjLx4SNy4CO1ETLrlmby9GcvhSI", + value: + "!(opornik-158.25.1.16.0.gra-a6c.str-fd5.kor-8f1.zbi-408.muc-dc.flo-104.opo-1f0)!", + result: { + word: "opornik", + correct: 25, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "07.06.2025", + }, + }, + { + date: "07.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMmFTLvBnLiJWMt8mYucjZt4mcv5CNmFTLkl3duAjLxEjLx4CMy4CO1ETLrlmby9GcvhSI", + value: "!(opornik-158.20.1.11.0.wyd-1f4.orn-f7.bo-1bb.po-1f0)!", + result: { + word: "opornik", + correct: 20, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "07.06.2025", + }, + }, + { + date: "07.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwYWMt8Gcv5SYxITNto3bw5CMuUjLx4SMx4CO1ETLrlmby9GcvhSI", + value: "!(opornik-158.11.1.5.0.poz-521a.opo-1f0)!", + result: { + word: "opornik", + correct: 11, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "07.06.2025", + }, + }, + { + date: "07.06.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjZx0ybw5iYiFTLvJ2buEjZ40icvtmLjVTMtQWdy5iNhJWLllWbuAjL0EjLy4CNy4CO1ETLrlmby9GcvhSI", + value: "!(opornik-158.24.2.14.0.mie-ba6.rud-15c.kor-8f1.obo-1bb.po-1f0)!", + result: { + word: "opornik", + correct: 24, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "07.06.2025", + }, + }, + { + date: "07.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjZx0ybw9mL4ADNtkmY65SNiFTLvJ3ducjMtsWdl5CMukjL14yNx4CO1ETLrlmby9GcvhSI", + value: "!(opornik-158.17.5.9.0.euk-27.wro-1b5.zbi-408.opo-1f0)!", + result: { + word: "opornik", + correct: 17, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "07.06.2025", + }, + }, + { + date: "07.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMmFTLvB3buU2Nz0icv5mLxYGOtI3br5SO0ITLk9WbuAjLwEjLw4SMy4CO1ETLrlmby9GcvhSI", + value: "!(opornik-158.21.0.10.0.mod-249.kor-8f1.nor-37e.opo-1f0)!", + result: { + word: "opornik", + correct: 21, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "07.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-tak-mialo-wyjsc-27-08-2025-diffle-difflepl-grywebowe-27-liter-w-4-slowach-la" +] = [ + { + date: "27.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0SYulmL0ATZtMWYu5iM30iblpnLiVWOtM3br5CMucjL04iNx4SOzITLqVmejFmbphSI", + value: "!(inaczej-239.16.4.7.0.kos-9eb.zen-72.nac-e04.ina-0)!", + result: { + word: "inaczej", + correct: 16, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "27.08.2025", + }, + }, + { + date: "27.08.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtEmbp5yM5EWLjFmbuEGZyITLr9GcuAjLwEjLy4yMx4SOzITLqVmejFmbphSI", + value: "!(inaczej-239.13.2.10.0.pok-22da.nac-a93.ina-0)!", + result: { + word: "inaczej", + correct: 13, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "27.08.2025", + }, + }, + { + date: "27.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0SYulmL0EWNtonc0VWau5CMuATMuMjL54SOzITLqVmejFmbphSI", + value: "!(inaczej-239.9.3.10.0.nietrz-5a4.ina-0)!", + result: { + word: "inaczej", + correct: 9, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "27.08.2025", + }, + }, + { + date: "27.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLh5WauITLoNWMllmbuYTLoNmMllmbuMTO00SZpNmLk1SZpJmL0IWLuVmZuMzMtQWduITNh1yYh5mL3UmYtkGcz5SZ1gTLvJ3auEjLyIjL54CMz4SOzITLqVmejFmbphSI", + value: + "!(inaczej-239.30.9.22.1.kro-85e.spi-be7.nac-a52.ud-33.fen-b4.bie-d.cie-493.nie2ch-6.nie1ch-2.ina-0)!", + result: { + word: "inaczej", + correct: 30, + position: 9, + incorrect: 22, + knownIncorrect: 1, + totalWords: 10, + totalLetters: 61, + date: "27.08.2025", + }, + }, + { + date: "27.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtEmbp5CZ10SeyRnLhRDZtAXYu5iZiJTL1h2YuAjLyEjLz4iNx4SOzITLqVmejFmbphSI", + value: "!(inaczej-239.16.3.12.0.chu-2bf.nap-d4a.try-5d.ina-0)!", + result: { + word: "inaczej", + correct: 16, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "27.08.2025", + }, + }, + { + date: "27.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0SYulmL00yYptmLwIWLulmZuMGM50Cch5mLjZTYtEmcn5CMucjL14SOx4SOzITLqVmejFmbphSI", + value: "!(inaczej-239.19.5.7.0.gra-a6c.nap-90c.fin-b0.kic-4.ina-0)!", + result: { + word: "inaczej", + correct: 19, + position: 5, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "27.08.2025", + }, + }, + { + date: "27.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtEmbp5iNkRWLjFmbuEWM3MTL6JHcuAjLwEjLz4CNx4SOzITLqVmejFmbphSI", + value: "!(inaczej-239.14.3.10.0.prz-371a.nac-dd6.ina-0)!", + result: { + word: "inaczej", + correct: 14, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "27.08.2025", + }, + }, + { + date: "27.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLh5WauMTO4EWMtoncw5CMucjLz4CMx4SOzITLqVmejFmbphSI", + value: "!(inaczej-239.10.3.7.0.prz-1a893.ina-0)!", + result: { + word: "inaczej", + correct: 10, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "27.08.2025", + }, + }, + { + date: "27.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0SYulmL0YWMtQWe35CMuQjLy4CMx4SOzITLqVmejFmbphSI", + value: "!(inaczej-239.10.2.4.0.wyd-1f4.ina-0)!", + result: { + word: "inaczej", + correct: 10, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "27.08.2025", + }, + }, + { + date: "27.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLh5WauITMtoXY35SYxITNto3bw5CMugjL14iMx4SOzITLqVmejFmbphSI", + value: "!(inaczej-239.12.5.8.0.poz-521a.waz-12.ina-0)!", + result: { + word: "inaczej", + correct: 12, + position: 5, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "27.08.2025", + }, + }, + { + date: "27.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLh5WauMWLllGaucjMtsWdl5CMucjLz4iMx4SOzITLqVmejFmbphSI", + value: "!(inaczej-239.12.3.7.0.euk-27.hie-c.ina-0)!", + result: { + word: "inaczej", + correct: 12, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "27.08.2025", + }, + }, + { + date: "27.08.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0SYulmLzQjNtUWaw5iNhJWLllWbuEjLwEjL04SNx4SOzITLqVmejFmbphSI", + value: "!(inaczej-239.15.4.10.1.mie-ba6.pie-643.ina-0)!", + result: { + word: "inaczej", + correct: 15, + position: 4, + incorrect: 10, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 29, + date: "27.08.2025", + }, + }, + { + date: "27.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0SYulmL2QDOtUWai5CMz0ibpdnLxgTMtEWaw5iY1QTL09WbuAjLyEjLw4SNx4SOzITLqVmejFmbphSI", + value: "!(inaczej-239.15.0.12.0.mot-45b.pia-181.win-30.bie-846.ina-0)!", + result: { + word: "inaczej", + correct: 15, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "27.08.2025", + }, + }, + { + date: "27.08.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLh5WauMDN20SZpBnL5ATMtwWZy5CMugjLz4CNx4SOzITLqVmejFmbphSI", + value: "!(inaczej-239.14.3.8.0.rel-109.pie-643.ina-0)!", + result: { + word: "inaczej", + correct: 14, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "27.08.2025", + }, + }, + { + date: "27.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0SYulmL0ImNtE2dr5CMukjLy4SMx4SOzITLqVmejFmbphSI", + value: "!(inaczej-239.11.2.9.0.kwa-6b4.ina-0)!", + result: { + word: "inaczej", + correct: 11, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "27.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-wiem-co-sie-dzieje-ale-ostatnio-strzaly-mi-coraz-lepiej-wychodza-slightly-sm" +] = [ + { + date: "20.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxcjMtUGbw5iY2ETLuVWbuIWZ50ycvtmLw4yNuEjL1EjLxcTMtknbuVWatVGbwhSI", + value: "!(plemienny-171.15.1.7.0.kos-9eb.men-16b.ple-271)!", + result: { + word: "plemienny", + correct: 15, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "20.06.2025", + }, + }, + { + date: "20.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM3ITLlxGcuQTYh1SZpNmL0EWNtonc0VWau5CMuETMuQjL2EjLxcTMtknbuVWatVGbwhSI", + value: "!(plemienny-171.16.4.11.0.nietrz-5a4.cie-aa4.ple-271)!", + result: { + word: "plemienny", + correct: 16, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "20.06.2025", + }, + }, + { + date: "20.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzNy0SZs5SOyYTLllGcuQmM00icwNnLw4SOuEjL2EjLxcTMtknbuVWatVGbwhSI", + value: "!(plemienny-171.16.1.9.0.spr-42d.pie-629.le-271)!", + result: { + word: "plemienny", + correct: 16, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "20.06.2025", + }, + }, + { + date: "20.06.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM3ITLlxGcuM2Mj1SZpdnLw4iNuEjLzEjLxcTMtknbuVWatVGbwhSI", + value: "!(plemienny-171.13.1.6.0.wie-c3c.ple-271)!", + result: { + word: "plemienny", + correct: 13, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "20.06.2025", + }, + }, + { + date: "20.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxcjMuQDZ10SZs5yM5gTYx0ieyBnLw4SOuIjL5EjLxcTMtknbuVWatVGbwhSI", + value: "!(plemienny-171.19.2.9.0.prz-1a893.le-5d4.271)!", + result: { + word: "plemienny", + correct: 19, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "20.06.2025", + }, + }, + { + date: "20.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxcjMtUGbw5SM30SatlmL0ImNtE2dr5CMuITMuMjL3EjLxcTMtknbuVWatVGbwhSI", + value: "!(plemienny-171.17.3.12.0.kwa-6b4.imi-71.ple-271)!", + result: { + word: "plemienny", + correct: 17, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 32, + date: "20.06.2025", + }, + }, + { + date: "20.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzNy0SZsBnLlJDOtUWaz5iZhZTMtIWe35iMm1SZptmLjZTYtEmcn5CMuETMuMjL5EjLxcTMtknbuVWatVGbwhSI", + value: + "!(plemienny-171.19.3.11.0.gra-a6c.kie-f2.wyb-16af.sie-82e.ple-271)!", + result: { + word: "plemienny", + correct: 19, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "20.06.2025", + }, + }, + { + date: "20.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxcjMtUGbuczM20Cbv5SYxczMtoncw5CMuATMuAjL3EjLxcTMtknbuVWatVGbwhSI", + value: "!(plemienny-171.17.0.10.0.prz-371a.ol-637.le-271)!", + result: { + word: "plemienny", + correct: 17, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "20.06.2025", + }, + }, + { + date: "20.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM3ITLlxmLjRWLnFGcuQTZz0Sb5dXZp5mLyIzMtMXdt5CMuYTMuEjLxIjLxcTMtknbuVWatVGbwhSI", + value: "!(plemienny-171.21.1.16.0.mus-322.niewym-3e4.pag-dc.le-271)!", + result: { + word: "plemienny", + correct: 21, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 38, + date: "20.06.2025", + }, + }, + { + date: "20.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzNy0SZs5SYkdTLllmLhFjM10ievBnLw4SNuIjL4EjLxcTMtknbuVWatVGbwhSI", + value: "!(plemienny-171.18.2.5.0.poz-521a.ie-7da.le-271)!", + result: { + word: "plemienny", + correct: 18, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "20.06.2025", + }, + }, + { + date: "20.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzNy0SZsBnLxczMtg2Yz4yY0ETLulGcuUGZ00SarNnL5QjMtQ2bt5CMuETMuIjL5EjLxcTMtknbuVWatVGbwhSI", + value: + "!(plemienny-171.19.2.11.0.mod-249.ski-4de.pin-14c.3ch-371.ple-271)!", + result: { + word: "plemienny", + correct: 19, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "20.06.2025", + }, + }, + { + date: "20.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzNy0SZsBnLzI2MtwWZt5yNy0ya1VmLw4iNuIjL3EjLxcTMtknbuVWatVGbwhSI", + value: "!(plemienny-171.17.2.6.0.euk-27.mel-3b3.ple-271)!", + result: { + word: "plemienny", + correct: 17, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "20.06.2025", + }, + }, + { + date: "20.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzNy0SZsBnLkdTLtV3ZukTYtkWbp5SO3kTLll2cuQjZx0CZ5dnLw4SOuIjL4IjLxcTMtknbuVWatVGbwhSI", + value: "!(plemienny-171.28.2.9.0.wyd-1f4.sie-979.imi-a9.gum-7d.ple-271)!", + result: { + word: "plemienny", + correct: 28, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "20.06.2025", + }, + }, + { + date: "20.06.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxcjMtUGbuQmN5gTL6JnL3UWYt4WYw5CMuETMuMjL4EjLxcTMtknbuVWatVGbwhSI", + value: "!(plemienny-171.18.3.11.0.pan-ae7.rz-896d.le-271)!", + result: { + word: "plemienny", + correct: 18, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 32, + date: "20.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nielatwe-dobieranie-cos-dzis-10-07-2025-flag-pl-diffle-difflepl-grywebowe-72-lit" +] = [ + { + date: "10.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTZt42b65SY1ETLvx2auI2Nx0ibhhmLw0iZ1xmL1ITOt4WYw5CMlhTL39mbuITMx0ycvJmLzETYt0WY65iZjFTL6FmauEWZ00ich5yY4ITLvx2duIjL5IjLz4CM04SM5ETL3gTJ0MUJhd3bsdmbvNkQlUzQlgSI", + value: + "!(żonglować-191.40.3.29.2.wlo-28c.ar-4ea.jaz-1cf.zam-a13.bos-112.now-8e0.pan-925.luf-0.han-17b.klo-15a.zon-e7)!", + result: { + word: "żonglować", + correct: 40, + position: 3, + incorrect: 29, + knownIncorrect: 2, + totalWords: 11, + totalLetters: 72, + date: "10.07.2025", + }, + }, + { + date: "10.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNl1ibvpnLyczMx0SZyBnLzMTLuVHducjYx0Sbh5mL3QWLpxmYuMDNzETLsl3duAjL4EjLy4CMz4SM5ETL3gTJ0MUJhd3bsdmbvNkQlUzQlgSI", + value: + "!(żonglować-191.30.2.18.0.wyl-1343.bli-d7.nam-1b7.tun-33.pre-1372.zon-e7)!", + result: { + word: "żonglować", + correct: 30, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 50, + date: "10.07.2025", + }, + }, + { + date: "10.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNl1ibvpnLi1San9mLxETLjVnYuATZl1ibv1mLxI2Nx0ya55iN0UWLwN3duAjLyIjLx4SNy4SM5ETL3gTJ0MUJhd3bsdmbvNkQlUzQlgSI", + value: + "!(żonglować-191.25.1.22.0.wsp-e46.yk-17b1.mon-ee0.buc-11.ogi-b.zon-e7)!", + result: { + word: "żonglować", + correct: 25, + position: 1, + incorrect: 22, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 48, + date: "10.07.2025", + }, + }, + { + date: "10.07.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTZt42b65iY3cTNto3bw5SZ3ETL5pXdugTOt8me65CMukjLy4CMy4SM5ETL3gTJ0MUJhd3bsdmbvNkQlUzQlgSI", + value: "!(żonglować-191.20.2.9.0.zzo-98.uzy-17e.poz-577b.zon-e7)!", + result: { + word: "żonglować", + correct: 20, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "10.07.2025", + }, + }, + { + date: "10.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNl1ibvpnLkhTMtA3ch5CMucjLx4yMx4SM5ETL3gTJ0MUJhd3bsdmbvNkQlUzQlgSI", + value: "!(żonglować-191.13.1.7.0.asp-18d.zon-e7)!", + result: { + word: "żonglować", + correct: 13, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "10.07.2025", + }, + }, + { + date: "10.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNl1ibvpnLxUTLv92ZuY2Yx0CajNjLyMTLj9mbuEzYy0SdyRnLwcjMtgGZv5iMxEWMtw2bw5SN5ETLvxmYuIzMzETLzl3duEjLwIjL04SM04SM5ETL3gTJ0MUJhd3bsdmbvNkQlUzQlgSI", + value: + "!(żonglować-191.41.4.20.1.wys-1332.blo-195.pol-1a12.odh-270.tru-2c1.noc-32.3ch-1cf.goo-51.zon-e7)!", + result: { + word: "żonglować", + correct: 41, + position: 4, + incorrect: 20, + knownIncorrect: 1, + totalWords: 9, + totalLetters: 65, + date: "10.07.2025", + }, + }, + { + date: "10.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3UWLu9meugDNtw2bm5CO50iYvxmL1kzYt8Gaj5iNzQTL1t2buQWM3MTL6JHcuAjL2EjLy4SMz4SM5ETL3gTJ0MUJhd3bsdmbvNkQlUzQlgSI", + value: + "!(żonglować-191.31.2.16.0.prz-371d.oku-436.cho-c95.lob-98.fol-48.zon-e7)!", + result: { + word: "żonglować", + correct: 31, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 49, + date: "10.07.2025", + }, + }, + { + date: "10.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNl1ibvpnL3MGOtc3bk5yMm1CbldnLk1ibz9mLiJTOtEmc05iZiJTL1h2YuAjL4EjL24CNy4SM5ETL3gTJ0MUJhd3bsdmbvNkQlUzQlgSI", + value: + "!(żonglować-191.24.6.18.0.chu-2bf.tra-92b.osn-d.wel-f3.dow-8c7.zon-e7)!", + result: { + word: "żonglować", + correct: 24, + position: 6, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 48, + date: "10.07.2025", + }, + }, + { + date: "10.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3UWLu9mLhJmMtcXeugTOt8me65CMucjLx4SNx4SM5ETL3gTJ0MUJhd3bsdmbvNkQlUzQlgSI", + value: "!(żonglować-191.15.1.7.0.zzo-98.yw-2ba.on-e7)!", + result: { + word: "żonglować", + correct: 15, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "10.07.2025", + }, + }, + { + date: "10.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNl1ibv5SN0ETL6VnLjNTNtwWZ65COlZTLyJ2buMWYiRTLk9GcuAjLzEjLx4iNy4SM5ETL3gTJ0MUJhd3bsdmbvNkQlUzQlgSI", + value: "!(żonglować-191.26.1.13.0.pod-4bac.obr-6e8.zel-53c.uz-145.on-e7)!", + result: { + word: "żonglować", + correct: 26, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "10.07.2025", + }, + }, + { + date: "10.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTZt42b65yNiFTLtFmbuUTNy0iavdnLzkDOhFTL6JHcuAjL5EjLx4SMy4SM5ETL3gTJ0MUJhd3bsdmbvNkQlUzQlgSI", + value: "!(żonglować-191.21.1.19.0.prz-1a893.woj-255.nam-1b7.zon-e7)!", + result: { + word: "żonglować", + correct: 21, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 41, + date: "10.07.2025", + }, + }, + { + date: "10.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTZt42b65SYyITLs9GauQDOz0SZs9mL1IzM00CZvBnL5kTMt8mc05COwcTLslWbuAjLwEjLw4COy4SM5ETL3gTJ0MUJhd3bsdmbvNkQlUzQlgSI", + value: + "!(żonglować-191.28.0.10.0.mil-708.tro-199.pod-4325.ole-384.hol-22a.zon-e7)!", + result: { + word: "żonglować", + correct: 28, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "10.07.2025", + }, + }, + { + date: "10.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNl1ibvpnLmNTMt42bz5CMtw2bw5iY4ITLn9GbukDNtQ3bn5SO0ITLk9WbuAjLyEjLy4SOy4SM5ETL3gTJ0MUJhd3bsdmbvNkQlUzQlgSI", + value: + "!(żonglować-191.29.2.12.0.mod-249.got-49.log-28b.pol-0.son-13f.zon-e7)!", + result: { + word: "żonglować", + correct: 29, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "10.07.2025", + }, + }, + { + date: "10.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3UWLu9meuI2N3UTL69GcugTOt8me65CMucjLy4iNx4SM5ETL3gTJ0MUJhd3bsdmbvNkQlUzQlgSI", + value: "!(żonglować-191.16.2.7.0.zzo-98.poz-577b.zon-e7)!", + result: { + word: "żonglować", + correct: 16, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "10.07.2025", + }, + }, + { + date: "10.07.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTZt42b65SM10ybvdmLjVTNtUWaw5CMukjLx4SMy4SM5ETL3gTJ0MUJhd3bsdmbvNkQlUzQlgSI", + value: "!(żonglować-191.21.1.9.0.pie-55c.goo-51.zon-e7)!", + result: { + word: "żonglować", + correct: 21, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "10.07.2025", + }, + }, + { + date: "10.07.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTZt42buEjZ2ETL3FmeuYTMtUHdv5CM1YTLvt2cuQDNtw2by5yMlFGNtM3bw5SY1UTL6RmeuAjLyIjLw4iNy4SM5ETL3gTJ0MUJhd3bsdmbvNkQlUzQlgSI", + value: + "!(żonglować-191.26.0.22.0.zdz-55a.pos-4ae3.rol-44.sko-650.otu-16.zaw-16f1.on-e7)!", + result: { + word: "żonglować", + correct: 26, + position: 0, + incorrect: 22, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 48, + date: "10.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nieoczywiste-07-08-2025-diffle-difflepl-grywebowe-29-liter-w-5-slowach-large-gre" +] = [ + { + date: "07.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjY3EjLjF2Nx0icuETOiFTLkFmeuM2M00CajNjLzQzMx0Cb5dnLw4CNx4CMuUTMukTMy0yap5mchNkQlUzQlgSI", + value: "!(żarnik-219.15.0.14.0.wyl-1343.3ch-43c.zad-1b91.r-17ac.17b7)!", + result: { + word: "żarnik", + correct: 15, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "07.08.2025", + }, + }, + { + date: "07.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNidTMuQDO2EjL4cDOx0icuUmMh1iehpnLw4CMx4SMuYTMukTMy0yap5mchNkQlUzQlgSI", + value: "!(żarnik-219.16.1.10.0.zaz-a2e.r-1878.1684.17b7)!", + result: { + word: "żarnik", + correct: 16, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "07.08.2025", + }, + }, + { + date: "07.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjY3ETLyFmeukDN2ETLyF2auATOtoXYy5iZiVTL1J3ZuYDNl1CczdnLw4COx4yMugTMukTMy0yap5mchNkQlUzQlgSI", + value: "!(żarnik-219.18.3.18.0.wsp-e46.gru-5bf.raz-90.kar-1649.zar-17b7)!", + result: { + word: "żarnik", + correct: 18, + position: 3, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "07.08.2025", + }, + }, + { + date: "07.08.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3I2Nx0ich5CM0ETLu9mL4kTLvpneuAjL24iMuETMukTMy0yap5mchNkQlUzQlgSI", + value: "!(żarnik-219.11.2.6.0.zzo-98.on-140.ar-17b7)!", + result: { + word: "żarnik", + correct: 11, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "07.08.2025", + }, + }, + { + date: "07.08.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjY3ETLy5iZ4IWMtQWY65CMlFTL6F2duQGOx0CczFmLw4CNx4SMuMTMukTMy0yap5mchNkQlUzQlgSI", + value: "!(żarnik-219.13.1.14.0.asp-18d.waz-1e0.zad-1b8f.r-17b7)!", + result: { + word: "żarnik", + correct: 13, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "07.08.2025", + }, + }, + { + date: "07.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3I2Nx0ichpnLkFTLh52cllmbuYmYy0SdoNmLw4iMx4yMuATMukTMy0yap5mchNkQlUzQlgSI", + value: "!(żarnik-219.10.3.12.0.chu-2bf.niesna-1d.zar-17b7)!", + result: { + word: "żarnik", + correct: 10, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "07.08.2025", + }, + }, + { + date: "07.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjY3ETLyFmeuQzM20CajNjL0cDOwETL69mcuYjMz0SZpJmLyMzMx0yc5dnLw4iMx4iMuQTMukTMy0yap5mchNkQlUzQlgSI", + value: + "!(żarnik-219.14.2.12.0.wys-1332.bie-326.roz-10874.3ch-634.zar-17b7)!", + result: { + word: "żarnik", + correct: 14, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "07.08.2025", + }, + }, + { + date: "07.08.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjY3EjL4gDOx0ichpnLwIDNtIXYr5SYyITLyFGZuIjZ30icvBnLw4SMx4iMuUTMukTMy0yap5mchNkQlUzQlgSI", + value: "!(żarnik-219.15.2.11.0.por-7f2.dar-22a.kar-420.zar-1888.17b7)!", + result: { + word: "żarnik", + correct: 15, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "07.08.2025", + }, + }, + { + date: "07.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3I2Nx0ichpnL3UTMt4WYy5yM5gTYx0ieyBnLw4CMx4iMuITMukTMy0yap5mchNkQlUzQlgSI", + value: "!(żarnik-219.12.2.10.0.prz-1a893.ran-157.zar-17b7)!", + result: { + word: "żarnik", + correct: 12, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "07.08.2025", + }, + }, + { + date: "07.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjY3EjLjF2Nx4iNhhTMtIXYuczMx0iY1pnLjFmY00CZvBnLw4yMx4CMuUTMukTMy0yap5mchNkQlUzQlgSI", + value: "!(żarnik-219.15.0.13.0.pod-4bac.zub-137.ar-18a6.17ac.17b7)!", + result: { + word: "żarnik", + correct: 15, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "07.08.2025", + }, + }, + { + date: "07.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjY3ETLyFmL5QTNtkmYuQTZtAXducDOt4WZuYTO20CbvpnLw4iMx4SMuUTMukTMy0yap5mchNkQlUzQlgSI", + value: "!(żarnik-219.15.1.12.0.zol-696.en-87.up-e4.bi-549.ar-17b7)!", + result: { + word: "żarnik", + correct: 15, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "07.08.2025", + }, + }, + { + date: "07.08.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNidTMtIXY65SN0UTLhJ3auUTY10ieyRXZp5mLw4SMx4yMuMTMukTMy0yap5mchNkQlUzQlgSI", + value: "!(żarnik-219.13.3.11.0.nietrz-5a5.kra-545.zar-17b7)!", + result: { + word: "żarnik", + correct: 13, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "07.08.2025", + }, + }, + { + date: "07.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjY3EjL5EzNx0ich5CM0ETLu9mL4kTLvpneuAjL44yMuYTMukTMy0yap5mchNkQlUzQlgSI", + value: "!(żarnik-219.16.3.8.0.zzo-98.on-140.ar-1719.17b7)!", + result: { + word: "żarnik", + correct: 16, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "07.08.2025", + }, + }, + { + date: "07.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3I2Nx0ich5iN0ETLu9mL4kTLvpneuAjL34iMuETMukTMy0yap5mchNkQlUzQlgSI", + value: "!(żarnik-219.11.2.7.0.zzo-98.on-146.ar-17b7)!", + result: { + word: "żarnik", + correct: 11, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "07.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nieoczywiste-11-09-2025-diffle-difflepl-grywebowe-24-litery-w-3-slowach-large-gr" +] = [ + { + date: "11.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTMl1SZpNmL1UzMt8Waw5yM0MTMtwWe35CMugjLx4SNx4CN1ITL3gTJ0MUJClTJ1MUJvtGcyVWajhSI", + value: "!(cierpkość-254.15.1.8.0.wyl-1343.pio-355.cie-e15)!", + result: { + word: "cierpkość", + correct: 15, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "11.09.2025", + }, + }, + { + date: "11.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ETZuUjYk1SZpNmLlVTMtoXYw5CMucjLx4COx4CN1ITL3gTJ0MUJClTJ1MUJvtGcyVWajhSI", + value: "!(cierpkość-254.18.1.7.0.paz-15e.cie-db5.e15)!", + result: { + word: "cierpkość", + correct: 18, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "11.09.2025", + }, + }, + { + date: "11.09.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNxUWLllmLkljMtUHaj5iN0UWLwN3duAjLzEjLy4SNx4CN1ITL3gTJ0MUJClTJ1MUJvtGcyVWajhSI", + value: "!(cierpkość-254.15.2.13.0.wsp-e46.chu-29d.ie-e15)!", + result: { + word: "cierpkość", + correct: 15, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "11.09.2025", + }, + }, + { + date: "11.09.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTMl5SNiRWLll2YuYTOtM3br5SOhNTLwVmcugzNy0yavBnL4kTLvpneuEjL0EjL14COy4CN1ITL3gTJ0MUJClTJ1MUJvtGcyVWajhSI", + value: + "!(cierpkość-254.28.5.14.1.zzo-98.pok-278.rep-3a9.kos-96.cie-db5.e15)!", + result: { + word: "cierpkość", + correct: 28, + position: 5, + incorrect: 14, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 47, + date: "11.09.2025", + }, + }, + { + date: "11.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNxUmLjhTOtUWaj5CZmlTLhx2auEGNtAnLwYGMx0SZp5iZiJTL1h2YuAjLzEjLx4iNy4CN1ITL3gTJ0MUJClTJ1MUJvtGcyVWajhSI", + value: + "!(cierpkość-254.26.1.13.0.chu-2bf.ie-10f0.p-4a.kla-9fd.cie-98c.e15)!", + result: { + word: "cierpkość", + correct: 26, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "11.09.2025", + }, + }, + { + date: "11.09.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ETZuYGMl1SZpNmL1EWNtonc0VWau5CMukjLw4iMy4CN1ITL3gTJ0MUJClTJ1MUJvtGcyVWajhSI", + value: "!(cierpkość-254.22.0.9.0.nietrz-5a5.cie-e0f.e15)!", + result: { + word: "cierpkość", + correct: 22, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "11.09.2025", + }, + }, + { + date: "11.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNxUmLlJzYtUmL50Sdp5SOmFWLvh2YuU2M5ITLy9GcuATO00ychtmL4kTLvpneuQjLyIjLy4CMz4CN1ITL3gTJ0MUJClTJ1MUJvtGcyVWajhSI", + value: + "!(cierpkość-254.30.2.22.4.zzo-98.kas-490.por-293e.cho-af9.iu-9.e-c2e.e15)!", + result: { + word: "cierpkość", + correct: 30, + position: 2, + incorrect: 22, + knownIncorrect: 4, + totalWords: 7, + totalLetters: 54, + date: "11.09.2025", + }, + }, + { + date: "11.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTMl1SZpNmLkhTMtA3ch5CMuYjLy4yMx4CN1ITL3gTJ0MUJClTJ1MUJvtGcyVWajhSI", + value: "!(cierpkość-254.13.2.6.0.asp-18d.cie-e15)!", + result: { + word: "cierpkość", + correct: 13, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "11.09.2025", + }, + }, + { + date: "11.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNxUWLl5CZ1QTLhlmLjJTLhp3YuYWLjVXbuMmMz0CdpxmLxQWLu5WauIzMzETLzl3duAjL3EjLx4yMy4CN1ITL3gTJ0MUJClTJ1MUJvtGcyVWajhSI", + value: + "!(cierpkość-254.23.1.17.0.wys-1332.inn-d1.lit-32c.muc-f.cza-2c.ia-45d.e-e15)!", + result: { + word: "cierpkość", + correct: 23, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "11.09.2025", + }, + }, + { + date: "11.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUTMl1SZpNmL2EmYtUWat5CMukjLx4yMx4CN1ITL3gTJ0MUJClTJ1MUJvtGcyVWajhSI", + value: "!(cierpkość-254.13.1.9.0.mie-ba6.cie-e15)!", + result: { + word: "cierpkość", + correct: 13, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "11.09.2025", + }, + }, + { + date: "11.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNxUWLll2YuYmM00SayRnLiNWLil2ZuEWOyETLlJHcuUTNx0CczVnLhRGOx0ya5dnL4kTLvpneuAjL3EjL04CMz4CN1ITL3gTJ0MUJClTJ1MUJvtGcyVWajhSI", + value: + "!(cierpkość-254.30.4.17.0.zzo-98.wyk-18da.usp-155.pre-129a.gib-cb.tri-42f.cie-e15)!", + result: { + word: "cierpkość", + correct: 30, + position: 4, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 51, + date: "11.09.2025", + }, + }, + { + date: "11.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ETZtUWaj5SNmZTLpN2cuMTO4EWMtoncw5CMukjL14iNx4CN1ITL3gTJ0MUJClTJ1MUJvtGcyVWajhSI", + value: "!(cierpkość-254.16.5.9.0.prz-1a893.sci-6f5.cie-e15)!", + result: { + word: "cierpkość", + correct: 16, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "11.09.2025", + }, + }, + { + date: "11.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ETZuYGMl1SZpNmL5QjMtQ2bt5CMucjLz4COx4CN1ITL3gTJ0MUJClTJ1MUJvtGcyVWajhSI", + value: "!(cierpkość-254.18.3.7.0.mod-249.cie-e0f.e15)!", + result: { + word: "cierpkość", + correct: 18, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "11.09.2025", + }, + }, + { + date: "11.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ETZuMDMxETLllmLkdTLjh2YuImNx0yYp5mL4AzNtwWat5CMugjLx4COy4CN1ITL3gTJ0MUJClTJ1MUJvtGcyVWajhSI", + value: "!(cierpkość-254.28.1.8.0.mil-708.nic-16b.chc-7d.ie-1103.e15)!", + result: { + word: "cierpkość", + correct: 28, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "11.09.2025", + }, + }, + { + date: "11.09.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ETZuMDMxETLll2YuIDM0ETLj9GcuQzMzETLsl3duAjLwEjLy4SMy4CN1ITL3gTJ0MUJClTJ1MUJvtGcyVWajhSI", + value: "!(cierpkość-254.21.2.10.0.wyl-1334.poc-1402.cie-1103.e15)!", + result: { + word: "cierpkość", + correct: 21, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "11.09.2025", + }, + }, + { + date: "11.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNxUWLll2YuMjMtEGcz5yYhJGNtQ2bw5CMukjLy4yNx4CN1ITL3gTJ0MUJClTJ1MUJvtGcyVWajhSI", + value: "!(cierpkość-254.17.2.9.0.pod-4bac.spa-23.cie-e15)!", + result: { + word: "cierpkość", + correct: 17, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "11.09.2025", + }, + }, + { + date: "11.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNxUmLmBTZuE2Nl1SZpNmLxMDMx0yYvBnLjVTZuUjYk1SZpNmLjJTLwVncuQWM3MTL6JHcuAjLzEjL34SM04CN1ITL3gTJ0MUJClTJ1MUJvtGcyVWajhSI", + value: + "!(cierpkość-254.41.7.13.0.prz-371d.rup-2c.cie-db5.e5c.poc-1031.cie-e7a.e0f.e15)!", + result: { + word: "cierpkość", + correct: 41, + position: 7, + incorrect: 13, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 61, + date: "11.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nietrudne-ale-charakterystyczne-06-08-2025-flag-pl-diffle-difflepl-grywebowe-25-" +] = [ + { + date: "06.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ1EWLoN2cuUGZx0icoNmLlBjNtUGbl5CMuMTMuEjLxEjL4EjMt42byh2YzhSI", + value: "!(schron-218.11.1.13.0.ele-60e.chr-1de.sch-a5f)!", + result: { + word: "schron", + correct: 11, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "06.08.2025", + }, + }, + { + date: "06.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ1EWLoN2cuATYx0SdoNmL3MGMx0ic0NnLiVWOtM3br5CMuATMuEjL1EjL4EjMt42byh2YzhSI", + value: "!(schron-218.15.1.10.0.kos-9eb.str-10c7.chu-1a0.sch-a5f)!", + result: { + word: "schron", + correct: 15, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "06.08.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVTYtg2Yz5yN0ETLyh2YuE2N40CZhJnL0QWNt8Gc15CMuMTMuQjLzEjL4EjMt42byh2YzhSI", + value: "!(schron-218.13.4.13.0.upo-5d4.rad-87a.chr-147.sch-a5f)!", + result: { + word: "schron", + correct: 13, + position: 4, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + }, + }, + { + date: "06.08.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWNh1CajNnLiRTMtIXdo5SZlRTLvJHZuIWOt8mcm5SYkJjMts2bw5CMuITMuAjL5EjL4EjMt42byh2YzhSI", + value: "!(schron-218.19.0.12.0.pok-22da.fro-9b.dro-4ee.hur-14b.sch-a5f)!", + result: { + word: "schron", + correct: 19, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "06.08.2025", + }, + }, + { + date: "06.08.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVTYtg2YuQmM00icwNnLw4COuAjLwEjL4EjMt42byh2YzhSI", + value: "!(schron-218.10.0.8.0.spr-42d.ch-a5f)!", + result: { + word: "schron", + correct: 10, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "06.08.2025", + }, + }, + { + date: "06.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVTYtg2YuQ2Nx0ybm5COi1ybyNnL0EWNtonc0VWau5CMuQTMuIjL0EjL4EjMt42byh2YzhSI", + value: "!(schron-218.14.2.14.0.nietrz-5a4.sro-b8.fo-17d.ch-a5f)!", + result: { + word: "schron", + correct: 14, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "06.08.2025", + }, + }, + { + date: "06.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ1EWLoN2cuYmYy0SdoNmLw4iNuAjLwEjL4EjMt42byh2YzhSI", + value: "!(schron-218.10.0.6.0.chu-2bf.sch-a5f)!", + result: { + word: "schron", + correct: 10, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "06.08.2025", + }, + }, + { + date: "06.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWNh1Caj5SZy0yby5SOwMTMt82az5SYxczMtoncw5CMuMTMuIjLyEjL4EjMt42byh2YzhSI", + value: "!(schron-218.12.2.13.0.prz-371a.sko-1309.ro-2e.ch-a5f)!", + result: { + word: "schron", + correct: 12, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "06.08.2025", + }, + }, + { + date: "06.08.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWNh1Caj5CNi1ic6NnL4MTLu9mcukDZx0ybydnL3UWYt4WYw5CMuMTMuEjL3EjL4EjMt42byh2YzhSI", + value: "!(schron-218.17.1.13.0.pan-ae7.wro-1d9.ron-38.szr-b4.ch-a5f)!", + result: { + word: "schron", + correct: 17, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "06.08.2025", + }, + }, + { + date: "06.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWNh1CajNnLzkDOhFTL6JHcuAjL54iMugjL4EjMt42byh2YzhSI", + value: "!(schron-218.8.2.9.0.prz-1a893.sch-a5f)!", + result: { + word: "schron", + correct: 8, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "06.08.2025", + }, + }, + { + date: "06.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWNh1CajNnLyEWLt9mcuQGOt4mcv5iM50ib1JnL0YWMtQWe35iMuITMuMjL1EjL4EjMt42byh2YzhSI", + value: "!(schron-218.15.3.12.2.wyd-1f4.run-92.orn-8d.rom-a2.sch-a5f)!", + result: { + word: "schron", + correct: 15, + position: 3, + incorrect: 12, + knownIncorrect: 2, + totalWords: 5, + totalLetters: 30, + date: "06.08.2025", + }, + }, + { + date: "06.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ1EWLoN2cuQjY20SY3tmLw4CMx4iMukjL4EjMt42byh2YzhSI", + value: "!(schron-218.9.2.10.0.kwa-6b4.sch-a5f)!", + result: { + word: "schron", + correct: 9, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "06.08.2025", + }, + }, + { + date: "06.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWNh1CajNnLkNmNy0ycvBnLw4iNuAjLwEjL4EjMt42byh2YzhSI", + value: "!(schron-218.10.0.6.0.pos-26cd.sch-a5f)!", + result: { + word: "schron", + correct: 10, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "06.08.2025", + }, + }, + { + date: "06.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ1EWLoNmL3MGMx0ic0NnLhFjM10ievBnLw4SOuEjLyEjL4EjMt42byh2YzhSI", + value: "!(schron-218.12.1.9.0.poz-521a.str-10c7.ch-a5f)!", + result: { + word: "schron", + correct: 12, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "06.08.2025", + }, + }, + { + date: "06.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWNh1Caj5CNi1ic6NnL4MTLu9mcucjMtsWdl5CMuATMuAjL2EjL4EjMt42byh2YzhSI", + value: "!(schron-218.16.0.10.0.euk-27.ron-38.szr-b4.ch-a5f)!", + result: { + word: "schron", + correct: 16, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "06.08.2025", + }, + }, + { + date: "06.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmVTYtg2YuQjYtIneuQmM2ETLyR3cuMmNh1SYydmLw4COuAjL1EjL4EjMt42byh2YzhSI", + value: "!(schron-218.15.0.8.0.gra-a6c.str-162d.zr-b4.ch-a5f)!", + result: { + word: "schron", + correct: 15, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "06.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nietrudne-ale-duzo-mozliwosci-26-09-2025-diffle-difflepl-grywebowe-29-liter-w-4-" +] = [ + { + date: "26.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2MkFTLll2duQmZy0CajNjLwEjMtUmcuMDNzETLsl3duAjL44SMuAjMukjNy0yN4UCNDVSe6NmezVWa3hSI", + value: "!(wieszczyć-269.20.1.8.0.wyl-1343.re-210.3ch-2fd.wie-1d3a)!", + result: { + word: "wieszczyć", + correct: 20, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "26.09.2025", + }, + }, + { + date: "26.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhNDZx0SZpdnLxMmNtk2d65CM40ydpNnLhNTOt8Gb65yN3MTLpd3cuMmMtcXYw5CMl1yb3dmLx4COx4yMucjMukjNy0yN4UCNDVSe6NmezVWa3hSI", + value: + "!(wieszczyć-269.27.3.18.1.gwo-e0.paw-2c.swi-377.zlo-93a.siw-80.zwi-6c1.wie-1d3a)!", + result: { + word: "wieszczyć", + correct: 27, + position: 3, + incorrect: 18, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 48, + date: "26.09.2025", + }, + }, + { + date: "26.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2MkFTLll2dugzYtMWez5CZ4ETLwNXYuAjL34yMucTMukjNy0yN4UCNDVSe6NmezVWa3hSI", + value: "!(wieszczyć-269.17.3.7.0.asp-18d.syc-c8.wie-1d3a)!", + result: { + word: "wieszczyć", + correct: 17, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "26.09.2025", + }, + }, + { + date: "26.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhNDZx4SZkVWMtUWa35SY1YTLpd3cuYmYy0SdoNmLw4SMx4SMuMjMukjNy0yN4UCNDVSe6NmezVWa3hSI", + value: "!(wieszczyć-269.23.1.11.0.chu-2bf.swi-65a.wie-1ede.1d3a)!", + result: { + word: "wieszczyć", + correct: 23, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "26.09.2025", + }, + }, + { + date: "26.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2MkFTLll2duM2Yz0SY6NnL4kTLvpneuAjL54SMuUTMukjNy0yN4UCNDVSe6NmezVWa3hSI", + value: "!(wieszczyć-269.15.1.9.0.zzo-98.sza-3cc.wie-1d3a)!", + result: { + word: "wieszczyć", + correct: 15, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "26.09.2025", + }, + }, + { + date: "26.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2MkFjL3MzYx0SZp5SY2ETLpN3duYTLkVGduUWOx0ya1NnLxEmZt0mLyMzMx0yc5dnLw4yMx4yMugjMukjNy0yN4UCNDVSe6NmezVWa3hSI", + value: + "!(wieszczyć-269.28.3.13.0.wys-1332.m-fa1.suk-19e.ted-6.wsi-16a.ie-1c37.1d3a)!", + result: { + word: "wieszczyć", + correct: 28, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 44, + date: "26.09.2025", + }, + }, + { + date: "26.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2MkFTLllmL1UjMto2b35yM5gTYx0ieyBnLw4SNx4yMuQTMukjNy0yN4UCNDVSe6NmezVWa3hSI", + value: "!(wieszczyć-269.14.3.15.0.prz-1a893.woj-255.ie-1d3a)!", + result: { + word: "wieszczyć", + correct: 14, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 32, + date: "26.09.2025", + }, + }, + { + date: "26.09.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYzQWMtUWa35yY1UTLllGcuAjL34SMuQTMukjNy0yN4UCNDVSe6NmezVWa3hSI", + value: "!(wieszczyć-269.14.1.7.0.pie-55c.wie-1d3a)!", + result: { + word: "wieszczyć", + correct: 14, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "26.09.2025", + }, + }, + { + date: "26.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2MkFTLll2duQWM3MTL6JHcuAjL24yMuITMukjNy0yN4UCNDVSe6NmezVWa3hSI", + value: "!(wieszczyć-269.12.3.6.0.prz-371d.wie-1d3a)!", + result: { + word: "wieszczyć", + correct: 12, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "26.09.2025", + }, + }, + { + date: "26.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhNDZx0SZpdnLiljMtMXau5COj1yY5NnL5EWNtUmey5iZ5QTLvxmeuAjL24yMuUjMukjNy0yN4UCNDVSe6NmezVWa3hSI", + value: "!(wieszczyć-269.25.3.6.0.zlo-49f.rze-5a9.syc-c8.nis-29b.wie-1d3a)!", + result: { + word: "wieszczyć", + correct: 25, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "26.09.2025", + }, + }, + { + date: "26.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYzQWMtUWa35iNhJWLllWbuAjL44SMuQTMukjNy0yN4UCNDVSe6NmezVWa3hSI", + value: "!(wieszczyć-269.14.1.8.0.mie-ba6.wie-1d3a)!", + result: { + word: "wieszczyć", + correct: 14, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "26.09.2025", + }, + }, + { + date: "26.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYzQWMtUWa35iY5ITLzlmbuQDO00yYpxmLl1iejVnLzQjY00CZvBnLw4CMx4SMucjMukjNy0yN4UCNDVSe6NmezVWa3hSI", + value: + "!(wieszczyć-269.27.1.10.0.pod-4b43.ucz-e.lic-484.nis-29b.wie-1d3a)!", + result: { + word: "wieszczyć", + correct: 27, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "26.09.2025", + }, + }, + { + date: "26.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2MkFTLll2duEWLllGcugTOtg2Yz4CMhhTLllWbuU2Y20CbvpnLw4yMx4SMuEjMukjNy0yN4UCNDVSe6NmezVWa3hSI", + value: "!(wieszczyć-269.21.1.13.0.zol-6ce.mie-8a0.3ch-98.pie-a.wie-1d3a)!", + result: { + word: "wieszczyć", + correct: 21, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "26.09.2025", + }, + }, + { + date: "26.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhNDZx0SZp5SOhNTLs5CZmdTMtQXe35CO50yb6pnLw4iMx4iMuAjMukjNy0yN4UCNDVSe6NmezVWa3hSI", + value: "!(wieszczyć-269.20.2.12.0.zzo-98.wyt-17fd.l-3a9.ie-1d3a)!", + result: { + word: "wieszczyć", + correct: 20, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "26.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nietrudne-jak-trafisz-odpowiednie-literki-26-07-2025-diffle-difflepl-grywebowe-2" +] = [ + { + date: "26.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmN10yalJnLlVTLrVHbuIWZ50ycvtmLw4COuMjLwEjL3AjMtQXdytWZyhSI", + value: "!(rekrut-207.10.3.8.0.kos-9eb.luk-5e.rek-56f)!", + result: { + word: "rekrut", + correct: 10, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "26.07.2025", + }, + }, + { + date: "26.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZTNtsmL4kjMtwWZy5SMyITMtIHcz5CMuETMuAjLzEjL3AjMtQXdytWZyhSI", + value: "!(rekrut-207.13.0.11.0.spr-1221.rel-298.k-56f)!", + result: { + word: "rekrut", + correct: 13, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "26.07.2025", + }, + }, + { + date: "26.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZTNtsWZy5SOmVTLoN2MucTY00Cdv1mL0ATOtUmcr5CZ5QTLlJHduImMy0SZyRmLjZTYtEmcn5CMuYTMuIjL3EjL3AjMtQXdytWZyhSI", + value: + "!(rekrut-207.17.2.16.0.gra-a6c.dre-22b.tre-49d.kre-904.mot-4a7.3ch-5f9.rek-56f)!", + result: { + word: "rekrut", + correct: 17, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 35, + date: "26.07.2025", + }, + }, + { + date: "26.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ2UTLrVmcuQDM50SZytmLkJDNtIHcz5CMuATMuEjLxEjL3AjMtQXdytWZyhSI", + value: "!(rekrut-207.11.1.10.0.spr-42d.kre-904.rek-56f)!", + result: { + word: "rekrut", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "26.07.2025", + }, + }, + { + date: "26.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZTNtsWZy5CZ00Cd1tmL0EWNtonc0VWau5CMuETMuQjLxEjL3AjMtQXdytWZyhSI", + value: "!(rekrut-207.11.4.11.0.nietrz-5a4.kut-4d.rek-56f)!", + result: { + word: "rekrut", + correct: 11, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "26.07.2025", + }, + }, + { + date: "26.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ2UTLrVmcuQDM50SZytmLhFzNz0ieyBnLw4COuEjLyEjL3AjMtQXdytWZyhSI", + value: "!(rekrut-207.12.1.8.0.prz-371a.kre-904.rek-56f)!", + result: { + word: "rekrut", + correct: 12, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "26.07.2025", + }, + }, + { + date: "26.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmN10yalJnLlFWMtIXZz5yNyMTL1JHZuMjN00SdyRnLmJmMtUHaj5CMuQTMuEjL1EjL3AjMtQXdytWZyhSI", + value: "!(rekrut-207.15.1.14.0.chu-2bf.tru-463.dru-327.ser-1ae.rek-56f)!", + result: { + word: "rekrut", + correct: 15, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "26.07.2025", + }, + }, + { + date: "26.07.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZTNtsWZy5iMl1iZlRmL2EmYtUWat5CMuQTMuAjLyEjL3AjMtQXdytWZyhSI", + value: "!(rekrut-207.12.0.14.0.mie-ba6.def-e2.rek-56f)!", + result: { + word: "rekrut", + correct: 12, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "26.07.2025", + }, + }, + { + date: "26.07.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ2UTLrVmcuUTNx0yalNnLldzMtUmcr5SYkJjMts2bw5CMuITMuEjL0EjL3AjMtQXdytWZyhSI", + value: "!(rekrut-207.14.1.12.0.pok-22da.kre-37e.sek-155.rek-56f)!", + result: { + word: "rekrut", + correct: 14, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "26.07.2025", + }, + }, + { + date: "26.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZTNtsWZy5CZxITLz92auMTO4EWMtoncw5CMuYTMuIjLwEjL3AjMtQXdytWZyhSI", + value: "!(rekrut-207.10.2.16.0.prz-1a893.kos-21d.rek-56f)!", + result: { + word: "rekrut", + correct: 10, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "26.07.2025", + }, + }, + { + date: "26.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZTNuQzNy0yalJnL0YWMtQWe35CMuQTMuAjLxEjL3AjMtQXdytWZyhSI", + value: "!(rekrut-207.11.0.14.0.wyd-1f4.rek-274.56f)!", + result: { + word: "rekrut", + correct: 11, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "26.07.2025", + }, + }, + { + date: "26.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZTNtsWZy5yNy0ya1VmLw4SNuEjLwEjL3AjMtQXdytWZyhSI", + value: "!(rekrut-207.10.1.5.0.euk-27.rek-56f)!", + result: { + word: "rekrut", + correct: 10, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "26.07.2025", + }, + }, + { + date: "26.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZTNtsWZy5SYiJTLyVHduI2Nx0SZydmLhFjM10ievBnLw4SOuMjLzEjL3AjMtQXdytWZyhSI", + value: "!(rekrut-207.13.3.9.0.poz-521a.gre-17b.tur-2ba.rek-56f)!", + result: { + word: "rekrut", + correct: 13, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "26.07.2025", + }, + }, + { + date: "26.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmN10yalJnL3IDOtUncn5yM1UTLsV3auUWNtE2a15CMuITMuIjLyEjL3AjMtQXdytWZyhSI", + value: "!(rekrut-207.12.2.12.0.uka-5e.kul-553.gru-827.rek-56f)!", + result: { + word: "rekrut", + correct: 12, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "26.07.2025", + }, + }, + { + date: "26.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZTNtsWZy5CNwkTLlJnL0ImNtE2dr5CMuATMuMjLyEjL3AjMtQXdytWZyhSI", + value: "!(rekrut-207.12.3.10.0.kwa-6b4.re-904.rek-56f)!", + result: { + word: "rekrut", + correct: 12, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "26.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nietrudne-logiczne-25-07-2025-flag-pl-diffle-difflepl-grywebowe-32-litery-w-4-sl" +] = [ + { + date: "25.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwUTL6lmbugjZx0iep1mL00ycpBnL0IzMtYWZk5CMuYTMuEjL1EjL2AjMtEmbppXauhSI", + value: "!(nizina-206.15.1.16.0.def-324.pis-4.miz-1f8.niz-50)!", + result: { + word: "nizina", + correct: 15, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "25.07.2025", + }, + }, + { + date: "25.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATNtoXau5SOmFTLkVHcuMmZx0SasJmLiVWOtM3br5CMuITMuEjLyEjL2AjMtEmbppXauhSI", + value: "!(nizina-206.12.1.12.0.kos-9eb.bli-1fc.pud-1f9.niz-50)!", + result: { + word: "nizina", + correct: 12, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "25.07.2025", + }, + }, + { + date: "25.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwUTL6lmbuYWZtUHbw5CZkFTLj5CMkFTLzlmbuIjMl1ibvtmLjZTYtEmcn5CMuQTMuEjL5EjL2AjMtEmbppXauhSI", + value: + "!(nizina-206.19.1.14.0.gra-a6c.kon-e22.nis-1d0.c-1dd.plu-ef.niz-50)!", + result: { + word: "nizina", + correct: 19, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "25.07.2025", + }, + }, + { + date: "25.07.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATNtoXau5SY20ie1JmLwYWZtkmek5SMtkWb65SYkJjMts2bw5CMuQTMuAjLxIjL2AjMtEmbppXauhSI", + value: "!(nizina-206.21.0.14.0.pok-22da.zmi-1.dzi-ef0.buz-6a.niz-50)!", + result: { + word: "nizina", + correct: 21, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "25.07.2025", + }, + }, + { + date: "25.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwUTL6lmbuQjZx0SasZmLmJmMtUHaj5CMuATMuAjL1EjL2AjMtEmbppXauhSI", + value: "!(nizina-206.15.0.10.0.chu-2bf.fli-1f4.niz-50)!", + result: { + word: "nizina", + correct: 15, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "25.07.2025", + }, + }, + { + date: "25.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATNuAjNtoXau5yYkRTLulWbuQTZ10ibhpnLkJDNtIHcz5CMuUTMuYjL5EjL2AjMtEmbppXauhSI", + value: "!(nizina-206.19.6.15.0.spr-42d.zan-5e4.min-4dc.niz-60.50)!", + result: { + word: "nizina", + correct: 19, + position: 6, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "25.07.2025", + }, + }, + { + date: "25.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM10iep5mL5UTMtkmev5SYxczMtoncw5CMuATMuEjLzEjL2AjMtEmbppXauhSI", + value: "!(nizina-206.13.1.10.0.prz-371a.ozi-159.niz-50)!", + result: { + word: "nizina", + correct: 13, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "25.07.2025", + }, + }, + { + date: "25.07.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM10iep5mLiFWLzJ2buAjL14iMugjL2AjMtEmbppXauhSI", + value: "!(nizina-206.8.2.5.0.obs-ab.niz-50)!", + result: { + word: "nizina", + correct: 8, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "25.07.2025", + }, + }, + { + date: "25.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM10iep5mLw0yZpZmL10Cb1hmL0EWNtonc0VWau5CMucTMuAjLzEjL2AjMtEmbppXauhSI", + value: "!(nizina-206.13.0.17.0.nietrz-5a4.hul-5.fig-0.niz-50)!", + result: { + word: "nizina", + correct: 13, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "25.07.2025", + }, + }, + { + date: "25.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATNtoXau5SYtkmen5CMt0Wa65SY20ie1JmL0EDZy0ybyBnLxIjNtMXZk5CMucTMuAjL3EjL2AjMtEmbppXauhSI", + value: + "!(nizina-206.17.0.17.0.des-621.pro-2d14.buz-6a.zim-0.gzi-a.niz-50)!", + result: { + word: "nizina", + correct: 17, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "25.07.2025", + }, + }, + { + date: "25.07.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATNtoXau5iNhJWLllWbuAjL54iMukjL2AjMtEmbppXauhSI", + value: "!(nizina-206.9.2.9.0.mie-ba6.niz-50)!", + result: { + word: "nizina", + correct: 9, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "25.07.2025", + }, + }, + { + date: "25.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATNtoXau5CMjFTLoN2MuUDZx0iavdnLkNTLk5CMkFTLzlmbuMTO4EWMtoncw5CMukTMuEjL5EjL2AjMtEmbppXauhSI", + value: + "!(nizina-206.19.1.19.0.prz-1a893.nis-1d0.d-3d.woj-1d5.3ch-1c0.niz-50)!", + result: { + word: "nizina", + correct: 19, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "25.07.2025", + }, + }, + { + date: "25.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM10iep5mLkZmMtEWat5CMx0CduADZx0ycp5mL0YWMtQWe35SMuMTMuIjL5EjL2AjMtEmbppXauhSI", + value: "!(nizina-206.19.2.13.1.wyd-1f4.nis-1d0.t-10.mia-2fd.niz-50)!", + result: { + word: "nizina", + correct: 19, + position: 2, + incorrect: 13, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 34, + date: "25.07.2025", + }, + }, + { + date: "25.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATNtoXau5yMtoXYq5iM1ETLkF2ZuATLulmeuYmMy0SaoNmLw0ibpdmLw0ibpZmLw0ibpJmLw0ibpNnLw0ibpdnLw0ibp1mLw0ibpxmLmJTLhlGcucjMtsWdl5CNuQjMuEjL1QjL2AjMtEmbppXauhSI", + value: + "!(nizina-206.45.1.24.4.euk-27.pia-2f.lin-0.min-0.win-0.sin-0.bin-0.fin-0.gin-0.chi-22f.zin-0.gad-152.jaz-3.niz-50)!", + result: { + word: "nizina", + correct: 45, + position: 1, + incorrect: 24, + knownIncorrect: 4, + totalWords: 14, + totalLetters: 70, + date: "25.07.2025", + }, + }, + { + date: "25.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATNtoXau5CMtYWds5SM10iep1mLw0iY6lmL5UTL6l2duADOt42Z65SYxITNto3bw5CMuAjMuMjLxIjL2AjMtEmbppXauhSI", + value: + "!(nizina-206.21.3.20.0.poz-521a.zgn-80.wiz-59.izb-0.miz-51.luf-0.niz-50)!", + result: { + word: "nizina", + correct: 21, + position: 3, + incorrect: 20, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 44, + date: "25.07.2025", + }, + }, + { + date: "26.07.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZTNtsWZy5SN1ETLrV2cucTZh1ibhBnLw4SOuEjLyEjL3AjMtQXdytWZyhSI", + value: "!(rekrut-207.12.1.9.0.pan-ae7.sek-155.rek-56f)!", + result: { + word: "rekrut", + correct: 12, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "26.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/niezwykle-latwe-04-09-2025-diffle-difflepl-grywebowe-21-liter-w-3-slowach-large-" +] = [ + { + date: "04.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4MGNtIXYi5SNiFTLkl3duIWZ50ycvtmLw4yNuMjLxEjL3QjMt8mekJXYihSI", + value: "!(bardzo-247.11.3.7.0.kos-9eb.wyd-1b5.bar-4c8)!", + result: { + word: "bardzo", + correct: 11, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "04.09.2025", + }, + }, + { + date: "04.09.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOjRTLyFmYuIGMzETLkFmbuAjL24iMukjL3QjMt8mekJXYihSI", + value: "!(bardzo-247.9.2.6.0.nad-130b.bar-4c8)!", + result: { + word: "bardzo", + correct: 9, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "04.09.2025", + }, + }, + { + date: "04.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOjRTLyFmYuQDOh1CdvRmLkJDNtIHcz5CMuATMuYjLwEjL3QjMt8mekJXYihSI", + value: "!(bardzo-247.10.6.10.0.spr-42d.dot-a84.bar-4c8)!", + result: { + word: "bardzo", + correct: 10, + position: 6, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "04.09.2025", + }, + }, + { + date: "04.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4MGNtIXYi5COj1ichZmLwMTZx0ichBnLiJTMtU2dr5CMuQTMuIjL0EjL3QjMt8mekJXYihSI", + value: "!(bardzo-247.14.2.14.0.kwe-12b.par-1e30.far-c8.bar-4c8)!", + result: { + word: "bardzo", + correct: 14, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "04.09.2025", + }, + }, + { + date: "04.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOjRTLyFmYuEWMyUTL69GcuAjL34iMucjL3QjMt8mekJXYihSI", + value: "!(bardzo-247.7.2.7.0.poz-521a.bar-4c8)!", + result: { + word: "bardzo", + correct: 7, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "04.09.2025", + }, + }, + { + date: "04.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4MGNtIXYi5SOz0CbvdmL0ImNtE2dr5CMuMTMuIjLyEjL3QjMt8mekJXYihSI", + value: "!(bardzo-247.12.2.13.0.kwa-6b4.gol-39.bar-4c8)!", + result: { + word: "bardzo", + correct: 12, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "04.09.2025", + }, + }, + { + date: "04.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4MGNtIXYi5CNmFTLkl3duAjL14SMukjL3QjMt8mekJXYihSI", + value: "!(bardzo-247.9.1.5.0.wyd-1f4.bar-4c8)!", + result: { + word: "bardzo", + correct: 9, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "04.09.2025", + }, + }, + { + date: "04.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOjRTLyFmYuYTYi1SZp1mLw4SMx4SMugjL3QjMt8mekJXYihSI", + value: "!(bardzo-247.8.1.11.0.mie-ba6.bar-4c8)!", + result: { + word: "bardzo", + correct: 8, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "04.09.2025", + }, + }, + { + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOjRTLyFmYukTM00CbhdnL0MTLjVHcuU2N04CO5QjLmRDNtIXYi5iZkVWLyFWbuUGN00ichZmLjZTYtEmcn5CMuYTMuEjL1IjL3QjMt8mekJXYihSI", + value: + "!(bardzo-247.25.1.16.0.gra-a6c.far-44e.mar-edf.bar-44f.498.47e.puc-34.wal-419.bar-4c8)!", + result: { + word: "bardzo", + correct: 25, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 42, + }, + }, + { + date: "04.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4MGNtIXYi5SYyYTLyJ2buMTO4EWMtoncw5CMuITMuIjLyEjL3QjMt8mekJXYihSI", + value: "!(bardzo-247.12.2.12.0.prz-1a893.obr-62a.bar-4c8)!", + result: { + word: "bardzo", + correct: 12, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "04.09.2025", + }, + }, + { + date: "04.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgzY00ichJmLmVmMtIXYo5yMiJTLhJ3ZukDNy0CZv1mLw4SOuQjL0EjL3QjMt8mekJXYihSI", + value: "!(bardzo-247.14.4.9.0.mod-249.gra-2b3.har-2ef.bar-4c8)!", + result: { + word: "bardzo", + correct: 14, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "04.09.2025", + }, + }, + { + date: "04.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgzY00ichJmLkBzYtEmez5iZiJTL1h2YuAjL54CNukjL3QjMt8mekJXYihSI", + value: "!(bardzo-247.9.4.9.0.chu-2bf.sza-c0d.bar-4c8)!", + result: { + word: "bardzo", + correct: 9, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "04.09.2025", + }, + }, + { + date: "04.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgzY00ichJmLyETYtEGaj5yMhNTLyFmauU2NzETLhp3cucjMtsWdl5CMuMTMuEjLwIjL3QjMt8mekJXYihSI", + value: "!(bardzo-247.20.1.13.0.euk-27.sza-137e.jar-3a3.cha-a12.bar-4c8)!", + result: { + word: "bardzo", + correct: 20, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "04.09.2025", + }, + }, + { + date: "04.09.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4MGNuEWN30ichJmL0IDZx0ichtmLw4iNuAjLzEjL3QjMt8mekJXYihSI", + value: "!(bardzo-247.13.0.6.0.kar-1d24.bar-75a.4c8)!", + result: { + word: "bardzo", + correct: 13, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "04.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nikt-jeszcze-nie-rozwiazal-21-05-2025-flag-pl-diffle-difflepl-grywebowe-19-liter" +] = [ + { + date: "21.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2Y50Cdl1mL0EWNtonc0VWau5CMuITMuAjL34SM0ETLyRXZthSI", + value: "!(metr-141.7.0.12.0.nietrz-5a4.met-9ca)!", + result: { + word: "metr", + correct: 7, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "21.05.2025", + }, + }, + { + date: "21.05.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYjlTL0VWbuIzNz0CajNjL0ATMtIWZy5SYkJjMts2bw5CMuMTMuEjL54SM0ETLyRXZthSI", + value: "!(metr-141.9.1.13.0.pok-22da.reb-104.3ch-372.met-9ca)!", + result: { + word: "metr", + correct: 9, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "21.05.2025", + }, + }, + { + date: "21.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhNWOtQXZt5CZ5QTLlJHdukzMx0Se0NnLmJmMtUHaj5CMuQTMuEjL34SM0ETLyRXZthSI", + value: "!(metr-141.7.1.14.0.chu-2bf.sty-139.tre-49d.met-9ca)!", + result: { + word: "metr", + correct: 7, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "21.05.2025", + }, + }, + { + date: "21.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2Y50Cdl1mLj1CdldmL3EmNtUGbr5CZyQTLyB3cuAjL1EjLx4CMx4SM0ETLyRXZthSI", + value: "!(metr-141.10.1.15.0.spr-42d.kle-6a7.get-c.met-9ca)!", + result: { + word: "metr", + correct: 10, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "21.05.2025", + }, + }, + { + date: "21.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2Y50Cdl1mLyIjMt0WYs5CZhRWMt42br5CMuYTMuAjL44SM0ETLyRXZthSI", + value: "!(metr-141.8.0.16.0.kon-1dad.lam-222.met-9ca)!", + result: { + word: "metr", + correct: 8, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "21.05.2025", + }, + }, + { + date: "21.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2Y50Cdl1mL1EmMtUnez5CMm1ybyVmLjZTYtEmcn5CMuATMuIjL44SM0ETLyRXZthSI", + value: "!(metr-141.8.2.10.0.gra-a6c.ero-f0.szu-2a5.met-9ca)!", + result: { + word: "metr", + correct: 8, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "21.05.2025", + }, + }, + { + date: "21.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2Y50Cdl1mLxEDOy0yc5dnLw4COuEjL24SM0ETLyRXZthSI", + value: "!(metr-141.6.1.8.0.wys-2811.met-9ca)!", + result: { + word: "metr", + correct: 6, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "21.05.2025", + }, + }, + { + date: "21.05.2025", + nick: "Tomekku", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhNWOtQXZuQmMy0Cdp1mLwIWLlxGcucjMtsWdl5CNucTMuEjL54SM0ETLyRXZthSI", + value: "!(metr-141.9.1.17.4.euk-27.ple-b0.mit-22d.et-9ca)!", + result: { + word: "metr", + correct: 9, + position: 1, + incorrect: 17, + knownIncorrect: 4, + totalWords: 4, + totalLetters: 27, + date: "21.05.2025", + }, + }, + { + date: "21.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYjlTL0VWbuUTMtUGdl5yYx0CdlZmLzkDOhFTL6JHcuAjLzEjLy4SMx4SM0ETLyRXZthSI", + value: "!(metr-141.11.2.13.0.prz-1a893.fet-1c.ete-15.met-9ca)!", + result: { + word: "metr", + correct: 11, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "21.05.2025", + }, + }, + { + date: "21.05.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYjlTL0VmL2EmYtUWat5CMuETMuAjL34SM0ETLyRXZthSI", + value: "!(metr-141.7.0.11.0.mie-ba6.et-9ca)!", + result: { + word: "metr", + correct: 7, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "21.05.2025", + }, + }, + { + date: "21.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2Y54SOmlTL0VWbuQjZx0CZ5dnLw4COuEjL54SM0ETLyRXZthSI", + value: "!(metr-141.9.1.8.0.wyd-1f4.met-9f9.9ca)!", + result: { + word: "metr", + correct: 9, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "21.05.2025", + }, + }, + { + date: "21.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2Y50Cdl1mLhFjM10ievBnLw4SOuAjL14SM0ETLyRXZthSI", + value: "!(metr-141.5.0.9.0.poz-521a.met-9ca)!", + result: { + word: "metr", + correct: 5, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "21.05.2025", + }, + }, + { + date: "21.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhNWOtQXZt5SNx0SZ0VmLhFzNz0ieyBnLw4SOuEjL54SM0ETLyRXZthSI", + value: "!(metr-141.9.1.9.0.prz-371a.ete-15.met-9ca)!", + result: { + word: "metr", + correct: 9, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "21.05.2025", + }, + }, + { + date: "21.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2Y50Cdl1mLkJTLld3cucjMtsWdl5CMuATMuEjL54SM0ETLyRXZthSI", + value: "!(metr-141.9.1.10.0.euk-27.swe-2d.met-9ca)!", + result: { + word: "metr", + correct: 9, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "21.05.2025", + }, + }, + { + date: "21.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhNWOtQXZukDNy0CZv1mLw4SOuAjL34SM0ETLyRXZthSI", + value: "!(metr-141.7.0.9.0.mod-249.et-9ca)!", + result: { + word: "metr", + correct: 7, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "21.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/no-nie-jest-trudne-ale-trzeba-wpierw-szukac-literek-10-08-2025-flag-pl-diffle-di" +] = [ + { + date: "10.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUGOz0CdpxmL0ETMtQXai5iMlNTLvlWbuQmYz0Sa3NnLzUTOtonc05CMucTMuMjLwIjLyIjMtcDOlQzQlE2dvRXashSI", + value: "!(litować-222.20.3.17.0.trz-953.swi-3bd.mio-3e2.bit-114.lit-38e)!", + result: { + word: "litować", + correct: 20, + position: 3, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "10.08.2025", + }, + }, + { + date: "10.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlhzMtQXas5iZyYjL5kTMuU2NuEmZ00CajNjLiN2MtIXZ65yM0MTMtwWe35CMuAjMuEjL1EjLyIjMtcDOlQzQlE2dvRXashSI", + value: + "!(litować-222.15.1.20.0.wyl-1343.zer-3cb.3ch-4fa.7e.199.62f.lit-38e)!", + result: { + word: "litować", + correct: 15, + position: 1, + incorrect: 20, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 36, + date: "10.08.2025", + }, + }, + { + date: "10.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlhzMtQXas5yM0ETL0lmbuQmMz0yapBnLyMzMx0yc5dnLw4yNuEjLxIjLyIjMtcDOlQzQlE2dvRXashSI", + value: "!(litować-222.21.1.7.0.wys-1332.pik-32d.nit-143.lit-38e)!", + result: { + word: "litować", + correct: 21, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "10.08.2025", + }, + }, + { + date: "10.08.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUGOz0CdpxmLw0Cbk9mLkhTMtA3ch5CMuATMuIjLyEjLyIjMtcDOlQzQlE2dvRXashSI", + value: "!(litować-222.12.2.10.0.asp-18d.odl-0.lit-38e)!", + result: { + word: "litować", + correct: 12, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "10.08.2025", + }, + }, + { + date: "10.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUGOz0CdpxmLy0CdvhmL2QTZtA3c35CMuMTMuQjLxEjLyIjMtcDOlQzQlE2dvRXashSI", + value: "!(litować-222.11.4.13.0.wsp-e46.hot-2.lit-38e)!", + result: { + word: "litować", + correct: 11, + position: 4, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "10.08.2025", + }, + }, + { + date: "10.08.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUGOz4SN5MTL0lGbuETZy0Sa3NnL3MmNx0SZp1mL1EWNtonc0VWau5CMuYTMuEjL3IjLyIjMtcDOlQzQlE2dvRXashSI", + value: "!(litować-222.27.1.16.0.nietrz-5a5.mie-16c7.swi-2e1.lit-395.38e)!", + result: { + word: "litować", + correct: 27, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 44, + date: "10.08.2025", + }, + }, + { + date: "10.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZ4MTL0lGbugDM30Cbp1mLw4yMuAjLwEjLyIjMtcDOlQzQlE2dvRXashSI", + value: "!(litować-222.10.0.3.0.mil-708.lit-38e)!", + result: { + word: "litować", + correct: 10, + position: 0, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "10.08.2025", + }, + }, + { + date: "10.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlhzMtQnL1MTMtMXas5iZh1SYtVmL2YTLslGZucTYx0ydvBnLmJmMtUHaj5CMuITMuQjL4IjLyIjMtcDOlQzQlE2dvRXashSI", + value: + "!(litować-222.28.4.12.0.chu-2bf.pow-1a7.dil-66.ema-af.lis-135.t-38e)!", + result: { + word: "litować", + correct: 28, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 44, + date: "10.08.2025", + }, + }, + { + date: "10.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlhzMtQXauMjZx0Cd1xmL5QTL092ZucDOyITLzl3dugTOt8me65CMuYTMuAjL0IjLyIjMtcDOlQzQlE2dvRXashSI", + value: "!(litować-222.24.0.16.0.zzo-98.wys-2287.got-49.lut-1f3.it-38e)!", + result: { + word: "litować", + correct: 24, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "10.08.2025", + }, + }, + { + date: "10.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlhzMtQXas5SN1ITLq92duMTO4EWMtoncw5CMuYTMuEjLzEjLyIjMtcDOlQzQlE2dvRXashSI", + value: "!(litować-222.13.1.16.0.prz-1a893.woj-255.lit-38e)!", + result: { + word: "litować", + correct: 13, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "10.08.2025", + }, + }, + { + date: "10.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlhzMtQXas5iMhFTLpxmZukjMk1Sa3NnL5U2MtI3b05CZ4ETLtFGauITLkR2buMTL5N3dugTOt8me65CMuEjMuAjL2MjLyIjMtcDOlQzQlE2dvRXashSI", + value: + "!(litować-222.36.0.21.0.zzo-98.wsy-3.odd-2.ham-18d.tor-3e9.swi-d29.fli-1a2.lit-38e)!", + result: { + word: "litować", + correct: 36, + position: 0, + incorrect: 21, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 57, + date: "10.08.2025", + }, + }, + { + date: "10.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUGOz0CdpxmL0AjNt8Gdz5iZ2UTLoN2MuYTO20CbvpnLw4iNuEjL2EjLyIjMtcDOlQzQlE2dvRXashSI", + value: "!(litować-222.16.1.6.0.zol-696.3ch-56f.sto-604.lit-38e)!", + result: { + word: "litować", + correct: 16, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "10.08.2025", + }, + }, + { + date: "10.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZ4MTL0lGbukTNtk2Zh5yM0ETL0lmbuUDNx0CdptmL5QzMtkmYv5yYhJGNtQ2bw5CMuQTMuEjLwMjLyIjMtcDOlQzQlE2dvRXashSI", + value: + "!(litować-222.30.1.14.0.pod-4bac.obi-349.kit-145.nit-143.agi-59.lit-38e)!", + result: { + word: "litować", + correct: 30, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 45, + date: "10.08.2025", + }, + }, + { + date: "10.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZ4MTL0lGbuUDNx0CdptmLkFzNz0ieyBnLw4COuEjL3EjLyIjMtcDOlQzQlE2dvRXashSI", + value: "!(litować-222.17.1.8.0.prz-371d.kit-145.lit-38e)!", + result: { + word: "litować", + correct: 17, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "10.08.2025", + }, + }, + { + date: "10.08.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUGOz0CdpxmLk1CdpdnLwkTLnFmauATN3QTMtoncw5CMuETMuIjLzEjLyIjMtcDOlQzQlE2dvRXashSI", + value: "!(litować-222.13.2.11.0.prz-14750.jag-90.wit-d.lit-38e)!", + result: { + word: "litować", + correct: 13, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "10.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/no-siema-12-06-2025-flag-pl-diffle-difflepl-44-litery-w-4-slowach-large-green-ci" +] = [ + { + date: "12.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUWLlJ2bllmbuYTOtU2YvVWau5iNy0Cb51WZp5mL0EWNtonc0VWau5CMuYTMuIjL2IjLzYTMtknbjVmYvVWauhSI", + value: + "!(nieobecny-163.26.2.16.0.nietrz-5a4.niemyl-26.nieoce-96.nieobe-e)!", + result: { + word: "nieobecny", + correct: 26, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 44, + date: "12.06.2025", + }, + }, + { + date: "12.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUWLlJ2bllmbuATL552YllmbuUmZx0SaoNmLw4iNuEjL5EjLzYTMtknbjVmYvVWauhSI", + value: "!(nieobecny-163.19.1.6.0.chi-1fe.niecny-0.nieobe-e)!", + result: { + word: "nieobecny", + correct: 19, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "12.06.2025", + }, + }, + { + date: "12.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKl1SZi9WZp5mL1UjMtMmYvVWau5SYy0Sei9WZp5mLx0CajJTZp5mLkJDNtIHcz5CMuATMuIjL5IjLzYTMtknbjVmYvVWauhSI", + value: + "!(nieobecny-163.29.2.10.0.spr-42d.nie2ch-1.nieoby-2a.nieobc-255.nieobe-e)!", + result: { + word: "nieobecny", + correct: 29, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "12.06.2025", + }, + }, + { + date: "12.06.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKl1SZi9WZp5mLw0SeuNWZp5mLkNjZtIHcz5CMtM2btVWau5yY50yYv5mLmJmMtUHaj5CMuITMuMjL3IjLzYTMtknbjVmYvVWauhSI", + value: + "!(nieobecny-163.27.3.12.0.chu-2bf.noc-9c.niemoc-0.spr-f3d.niecny-0.nieobe-e)!", + result: { + word: "nieobecny", + correct: 27, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 42, + date: "12.06.2025", + }, + }, + { + date: "12.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUWLlJ2bllmbuATL0lnYllmbuMmNh1SYydmLw4CNuAjL3EjLzYTMtknbjVmYvVWauhSI", + value: "!(nieobecny-163.17.0.4.0.gra-a6c.niebyt-0.nieobe-e)!", + result: { + word: "nieobecny", + correct: 17, + position: 0, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "12.06.2025", + }, + }, + { + date: "12.06.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKl1SZi9WZp5mLxQTLj9WbllmbuEGOh1yYk9mL0UGZ20ievJnLw4SOuQjLyIjLzYTMtknbjVmYvVWauhSI", + value: "!(nieobecny-163.22.4.9.0.roz-6de4.odc-a8a.niemoc-41.nieobe-e)!", + result: { + word: "nieobecny", + correct: 22, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "12.06.2025", + }, + }, + { + date: "12.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZtUmYvVWau5CMtknbjVWau5yM5gTYx0ieyBnLw4COuIjL4EjLzYTMtknbjVmYvVWauhSI", + value: "!(nieobecny-163.18.2.8.0.prz-1a893.niecny-0.nieobe-e)!", + result: { + word: "nieobecny", + correct: 18, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "12.06.2025", + }, + }, + { + date: "12.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKl1SZi9WZp5mLw0SeuNWZp5mLxETLoNmMllmbuQjZx0CZ5dnLw4iNuIjLxIjLzYTMtknbjVmYvVWauhSI", + value: "!(nieobecny-163.21.2.6.0.wyd-1f4.nie2ch-11.niecny-0.nieobe-e)!", + result: { + word: "nieobecny", + correct: 21, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "12.06.2025", + }, + }, + { + date: "12.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKl1SZi9WZp5mL1UjMtMmYvVWau5SM3ETLs92dllmbuIGMx0CZv1WZp5mLhFjM10ievBnLw4SOuIjLxMjLzYTMtknbjVmYvVWauhSI", + value: + "!(nieobecny-163.31.2.9.0.poz-521a.niemod-10b.niewol-171.nieobc-255.nieobe-e)!", + result: { + word: "nieobecny", + correct: 31, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "12.06.2025", + }, + }, + { + date: "12.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKl1SZi9WZp5mLw0SeuNWZp5mLjVTO40ieyBnLw4yNuEjL5EjLzYTMtknbjVmYvVWauhSI", + value: "!(nieobecny-163.19.1.7.0.prz-895c.niecny-0.nieobe-e)!", + result: { + word: "nieobecny", + correct: 19, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "12.06.2025", + }, + }, + { + date: "12.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKl1SZi9WZp5mLygTNtUWat5SYxczMtoncw5CMuETMuEjL1EjLzYTMtknbjVmYvVWauhSI", + value: "!(nieobecny-163.15.1.11.0.prz-371a.mie-582.nieobe-e)!", + result: { + word: "nieobecny", + correct: 15, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "12.06.2025", + }, + }, + { + date: "12.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUWLlJ2bllmbucTLoNmMllmbukDNy0CZv1mLw4yNuMjL2EjLzYTMtknbjVmYvVWauhSI", + value: "!(nieobecny-163.16.3.7.0.mod-249.nie2ch-7.nieobe-e)!", + result: { + word: "nieobecny", + correct: 16, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "12.06.2025", + }, + }, + { + date: "12.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZtUmYvVWau5SNldTNtQ2bw5SZyQTLll2ducjMtsWdl5CMuATMuMjL0IjLzYTMtknbjVmYvVWauhSI", + value: "!(nieobecny-163.24.3.10.0.euk-27.wie-42e.pod-57e5.nieobe-e)!", + result: { + word: "nieobecny", + correct: 24, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "12.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/no-tak-znowu-pomylka-o-1-lierke-10-06-2025-diffle-difflepl-grywebowe-33-litery-w" +] = [ + { + date: "10.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTL6VnLmNTOtoXYuATL5pnL2MjMtIWZ65yM0MTMtwWe35CMuATMuEjLyIjLxYTMtUWajl3QCVSNDVSd6hSI", + value: "!(zużycie-161.22.1.10.0.wyl-1343.zeb-236.zy-0.az-93f.uz-4)!", + result: { + word: "zużycie", + correct: 22, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "10.06.2025", + }, + }, + { + date: "10.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK00ie15SM5ITLpJmLhVTMtUWa65CZxczMtoncw5CMuQTMuMjL1EjLxYTMtUWajl3QCVSNDVSd6hSI", + value: "!(zużycie-161.15.3.14.0.prz-371d.zie-15a.bi-291.uz-4)!", + result: { + word: "zużycie", + correct: 15, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "10.06.2025", + }, + }, + { + date: "10.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK00ie15CMtkneuMDMx0Sas5CMzETLh1meuIGM20CajNjL2QTZtA3c35CMuEjMuIjL3EjLxYTMtUWajl3QCVSNDVSd6hSI", + value: "!(zużycie-161.17.2.21.0.wsp-e46.3ch-60b.zma-130.li-103.zy-0.uz-4)!", + result: { + word: "zużycie", + correct: 17, + position: 2, + incorrect: 21, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "10.06.2025", + }, + }, + { + date: "10.06.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTL6VneuMWN10CajNjLhdTL1pncuATLpBXduUTY50yY6NnLmJmMtUHaj5CMucTMuQjL5EjLxYTMtUWajl3QCVSNDVSd6hSI", + value: + "!(zużycie-161.19.4.17.0.chu-2bf.szc-9a5.upi-0.rzu-7a.3ch-55c.zuz-4)!", + result: { + word: "zużycie", + correct: 19, + position: 4, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "10.06.2025", + }, + }, + { + date: "10.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK04SOwETL65CMtMWd65SZ4ITL69WbuEDOtk2cr5SZ1ETL6V2duUGM4ITMtoncw5CMuMjMuAjLwIjLxYTMtUWajl3QCVSNDVSd6hSI", + value: + "!(zużycie-161.20.0.23.0.prz-1280e.wez-15e.ksi-81.moz-28e.zuc-0.z-109.4)!", + result: { + word: "zużycie", + correct: 20, + position: 0, + incorrect: 23, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 43, + date: "10.06.2025", + }, + }, + { + date: "10.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNtoXduQTL5pneuUTNtc3bt5SNl1ieyJmLkhTMtA3ch5CMuYTMuIjL5EjLxYTMtUWajl3QCVSNDVSd6hSI", + value: "!(zużycie-161.19.2.16.0.asp-18d.brz-e5.mow-55.zzy-4.uz-4)!", + result: { + word: "zużycie", + correct: 19, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "10.06.2025", + }, + }, + { + date: "10.06.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNtoXd65CM3gTL6NXduEzN4UTMtoncw5CMuMTMuEjL2EjLxYTMtUWajl3QCVSNDVSd6hSI", + value: "!(zużycie-161.16.1.13.0.prz-15871.usz-870.zuz-4)!", + result: { + word: "zużycie", + correct: 16, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "10.06.2025", + }, + }, + { + date: "10.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNtoXd65SN1ITLq92duMTO4EWMtoncw5CMucTMuMjLwEjLxYTMtUWajl3QCVSNDVSd6hSI", + value: "!(zużycie-161.10.3.17.0.prz-1a893.woj-255.zuz-4)!", + result: { + word: "zużycie", + correct: 10, + position: 3, + incorrect: 17, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "10.06.2025", + }, + }, + { + date: "10.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNuATL6VneuQjNtkmej5iYtoXdk5iY20Cb55SYjZWMtIWY65iMzMTMtMXe35CMuQTMuEjL1IjLxYTMtUWajl3QCVSNDVSd6hSI", + value: + "!(zużycie-161.25.1.14.0.wys-1332.zab-1fca.yl-6b.duz-b.czi-64.zuz-0.4)!", + result: { + word: "zużycie", + correct: 25, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "10.06.2025", + }, + }, + { + date: "10.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTL6VnLhRTLlpneuADO20yYhBnL5ImNtw2b65CMuITMuIjL3EjLxYTMtUWajl3QCVSNDVSd6hSI", + value: "!(zużycie-161.17.2.12.0.zol-6b9.pac-680.zze-4a.uz-4)!", + result: { + word: "zużycie", + correct: 17, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "10.06.2025", + }, + }, + { + date: "10.06.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTL6VnL00Se65SYz0yY55CNx0iakpnLmJWYy0CbvBnL2EmYtUWat5CMucTMuIjL3IjLxYTMtUWajl3QCVSNDVSd6hSI", + value: "!(zużycie-161.27.2.17.0.mie-ba6.pol-2abf.zdj-14.yc-3a.zy-4.uz-4)!", + result: { + word: "zużycie", + correct: 27, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 46, + date: "10.06.2025", + }, + }, + { + date: "10.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjLk5SMz0ie15CN50Se65SMjNWLlJnLmlDNt8Gb65CMuETMuAjLzIjLxYTMtUWajl3QCVSNDVSd6hSI", + value: "!(zużycie-161.23.0.11.0.zlo-49f.re-cc1.zy-94.uz-31.d.4)!", + result: { + word: "zużycie", + correct: 23, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "10.06.2025", + }, + }, + { + date: "10.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK00ie15yMygjMtAXYugTOt8me65CMuETMuAjLzEjLxYTMtUWajl3QCVSNDVSd6hSI", + value: "!(zużycie-161.13.0.11.0.zzo-98.ap-2823.uz-4)!", + result: { + word: "zużycie", + correct: 13, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "10.06.2025", + }, + }, + { + date: "10.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjLxMjLwETL6VnLkhzNtwWYugTOt8me65CMuITMuEjLyIjLxYTMtUWajl3QCVSNDVSd6hSI", + value: "!(zużycie-161.22.1.12.0.zzo-98.al-78d.uz-10.31.4)!", + result: { + word: "zużycie", + correct: 22, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "10.06.2025", + }, + }, + { + date: "10.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTL6VneuMWZy0SauNnLjFmY00CZvBnLw4SOuMjLyEjLxYTMtUWajl3QCVSNDVSd6hSI", + value: "!(zużycie-161.12.3.9.0.pod-4bac.sni-2ec.zuz-4)!", + result: { + word: "zużycie", + correct: 12, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "10.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/o-jaka-piekna-katastrofa-04-08-2025-flag-pl-diffle-difflepl-grywebowe-73-litery-" +] = [ + { + date: "04.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmMy0yby1mLxY2Nt8mcn5iZkJTLyd2buQjZy0CajNjLycTMt4mcv5iNwETLy9GauADO00icv5mLwUGNuMGZ04iZ0YTLoN2MuQmMto2by5yY2ITL1x2ZuIGZwETLyR3cucjM40Sa6RmL04iMz4yNuQzMuYTMy0SeuFkQlUzQl8mcthSI", + value: + "!(mroźny-216.34.7.32.4.dzi-827.str-10db.glu-26c.roj-2d.3ch-64f.4dc.4e0.nor-480.hor-106.orn-172.3ch-2f4.ogr-2df.gro-7f1.mro-22a)!", + result: { + word: "mroźny", + correct: 34, + position: 7, + incorrect: 32, + knownIncorrect: 4, + totalWords: 14, + totalLetters: 73, + date: "04.08.2025", + }, + }, + { + date: "04.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmMy0yby1mLxY2Nt8mcn5yMjRWLlR3cuUDNx0iev5mLzQzMx0Cb5dnLw4SNx4yMucTMuYTMy0SeuFkQlUzQl8mcthSI", + value: "!(mroźny-216.17.3.15.0.wyl-1343.noz-145.ste-dc3.gro-7f1.mro-22a)!", + result: { + word: "mroźny", + correct: 17, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "04.08.2025", + }, + }, + { + date: "04.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYyITLvJXbugjY30ybydmLwMzNwETL69mcuYDNl1CczdnLw4SNx4SMuUTMuYTMy0SeuFkQlUzQl8mcthSI", + value: "!(mroźny-216.15.1.15.0.wsp-e46.roz-10730.gro-7b8.mro-22a)!", + result: { + word: "mroźny", + correct: 15, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "04.08.2025", + }, + }, + { + date: "04.08.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJjMt8mct5iN2MTLoN2MucjYt42b05CMyATMtc3bw5CO50yb6pnLw4SNx4CMuITMuYTMy0SeuFkQlUzQl8mcthSI", + value: "!(mroźny-216.12.0.15.0.zzo-98.pow-1020.ton-b7.3ch-366.mro-22a)!", + result: { + word: "mroźny", + correct: 12, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "04.08.2025", + }, + }, + { + date: "04.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYyITLvJXbuEzYx0iYlJmLwEWLslHcuI2M30ic0NnLmNGZtUmc65iYyUTLvx2ZuYmYy0SdoNmLw4SNy4iMuYTMuYTMy0SeuFkQlUzQl8mcthSI", + value: + "!(mroźny-216.16.2.25.0.chu-2bf.glo-52b.zre-dcf.str-73b.pyl-a0.beb-1c1.mro-22a)!", + result: { + word: "mroźny", + correct: 16, + position: 2, + incorrect: 25, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 43, + date: "04.08.2025", + }, + }, + { + date: "04.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYyITLvJXbuE2M10CajNjL3Q2MtMWZuQDOt8mbuUTM30CZv1mLyMzMx0yc5dnLw4iNx4SMugTMuYTMy0SeuFkQlUzQl8mcthSI", + value: + "!(mroźny-216.18.1.16.0.wys-1332.mod-715.no-84.ec-3d7.3ch-53a.mro-22a)!", + result: { + word: "mroźny", + correct: 18, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "04.08.2025", + }, + }, + { + date: "04.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYyITLvJXbuIGZto3b35yN5UWNto3bw5iNz0ybsRmL2kTLu9meuMWNx0Sar9mLw4iMx4CMucTMuYTMy0SeuFkQlUzQl8mcthSI", + value: + "!(mroźny-216.17.0.12.0.oki-15c.zon-96.dlo-36.poz-5e97.woz-db.mro-22a)!", + result: { + word: "mroźny", + correct: 17, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 29, + date: "04.08.2025", + }, + }, + { + date: "04.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYyIjLjhjMt8mcukDNy0CZv1mLw4CMx4SMuQTMuYTMy0SeuFkQlUzQl8mcthSI", + value: "!(mroźny-216.14.1.10.0.mod-249.ro-28c.22a)!", + result: { + word: "mroźny", + correct: 14, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "04.08.2025", + }, + }, + { + date: "04.08.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJjMt8mct5SZ0UTLvJHcukjZzcTL69mcuAjL54CMuATMuYTMy0SeuFkQlUzQl8mcthSI", + value: "!(mroźny-216.10.0.9.0.roz-73f9.pro-54e.mro-22a)!", + result: { + word: "mroźny", + correct: 10, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "04.08.2025", + }, + }, + { + date: "04.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmMy0yby1mL5YzNt8mck5yNx0iYldmL1UjMto2b35yM5gTYx0ieyBnLw4SNy4SMuMTMuYTMy0SeuFkQlUzQl8mcthSI", + value: "!(mroźny-216.13.1.25.0.prz-1a893.woj-255.geb-17.dro-769.mro-22a)!", + result: { + word: "mroźny", + correct: 13, + position: 1, + incorrect: 25, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "04.08.2025", + }, + }, + { + date: "04.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmMy0yby1mLxMmNtg2Yv5yY3ETLs9meuUjMx0SdyNnLkFzNz0ieyBnLw4SMy4CMuUTMuYTMy0SeuFkQlUzQl8mcthSI", + value: "!(mroźny-216.15.0.21.0.prz-371d.sru-125.zol-17c.och-6c1.mro-22a)!", + result: { + word: "mroźny", + correct: 15, + position: 0, + incorrect: 21, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "04.08.2025", + }, + }, + { + date: "04.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJjMt8mcuY2Ny0iev1mLhJWLvJ2buY2Ny0ycv5mLhFjM10ievBnLw4SNx4SMugTMuYTMy0SeuFkQlUzQl8mcthSI", + value: "!(mroźny-216.18.1.15.0.poz-521a.nos-27f.obo-ba.moz-27f.ro-22a)!", + result: { + word: "mroźny", + correct: 18, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "04.08.2025", + }, + }, + { + date: "04.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmMy0yby1mLxY2Nt8mcn5iYk1ievdnL1Y2Nx0ibvBnLyQTMtkmbz5CO50yb6pnLw4yNx4CMuEjMuYTMy0SeuFkQlUzQl8mcthSI", + value: + "!(mroźny-216.21.0.17.0.zzo-98.sni-142.pon-17f5.woz-db.gro-7f1.mro-22a)!", + result: { + word: "mroźny", + correct: 21, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "04.08.2025", + }, + }, + { + date: "04.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJjMt8mct5SMmdTLvJ3ZuIGZto3b35SMxETL6VHbuI2M00CZlBnLihTOtk2Yz5CO50yb6pnLw4SOx4CMuMjMuYTMy0SeuFkQlUzQl8mcthSI", + value: + "!(mroźny-216.23.0.19.0.zzo-98.sci-98b.ped-43b.luz-111.woz-db.gro-7f1.mro-22a)!", + result: { + word: "mroźny", + correct: 23, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "04.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/o-kurde-pieknie-mnie-wyrolowalo-slightly-smiling-face-29-06-2025-diffle-difflepl" +] = [ + { + date: "29.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYjMy4iM3ETL1t2buEDZ3ITLr9GcuIWZ50ycvtmLw4yNuEjL0IjLwgTMtEGdzlHdsV3avhSI", + value: "!(okultysta-180.24.1.7.0.kos-9eb.pok-27d1.oku-172.226)!", + result: { + word: "okultysta", + correct: 24, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "29.06.2025", + }, + }, + { + date: "29.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNyITL1t2bugTMy0ybsJmLxITLzV3ZuYTZx0yY1tmL1AzMtMXdt5CMuITMuIjL0IjLwgTMtEGdzlHdsV3avhSI", + value: "!(okultysta-180.24.2.12.0.mus-305.kuc-1e6.gus-21.blo-218.oku-226)!", + result: { + word: "okultysta", + correct: 24, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "29.06.2025", + }, + }, + { + date: "29.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYjMy0Sdr9mLhBTMtwWdr5yM5gTYx0ieyBnLw4SOuMjL2EjLwgTMtEGdzlHdsV3avhSI", + value: "!(okultysta-180.16.3.9.0.prz-1a893.kul-10a.oku-226)!", + result: { + word: "okultysta", + correct: 16, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "29.06.2025", + }, + }, + { + date: "29.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNyITL1tmLw0ybz9mLkJDNtIHcz5CMuETMuEjL0EjLwgTMtEGdzlHdsV3avhSI", + value: "!(okultysta-180.14.1.11.0.spr-42d.oso-0.ku-226)!", + result: { + word: "okultysta", + correct: 14, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "29.06.2025", + }, + }, + { + date: "29.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYjMy0Sdr9mLzUTNtwWdr5yM4QTLoN2MuU2My0ybsZmLw0CZ5dnLx0SeoNmL2MTMtMXas5iN2QTLhR3cuE2Y30ych1mLjZTYtEmcn5SMuUTMuQjLxMjLwgTMtEGdzlHdsV3avhSI", + value: + "!(okultysta-180.31.4.15.1.gra-a6c.mas-7ca.sta-466.lis-136.chy-1.wyd-0.flo-23e.3ch-483.kul-553.oku-226)!", + result: { + word: "okultysta", + correct: 31, + position: 4, + incorrect: 15, + knownIncorrect: 1, + totalWords: 10, + totalLetters: 50, + date: "29.06.2025", + }, + }, + { + date: "29.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNyITL1t2buUTN20Cb1tmLxMzNtQnez5iMxUWL0VXYucjMtsWdl5yMuQTMucjL2IjLwgTMtEGdzlHdsV3avhSI", + value: "!(okultysta-180.26.7.14.3.euk-27.aut-e12.szt-731.kul-655.oku-226)!", + result: { + word: "okultysta", + correct: 26, + position: 7, + incorrect: 14, + knownIncorrect: 3, + totalWords: 5, + totalLetters: 47, + date: "29.06.2025", + }, + }, + { + date: "29.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYjMy0Sdr9mLlZDOtA3br5iZx0ia51mL0YWMtQWe35CMuATMuIjL3EjLwgTMtEGdzlHdsV3avhSI", + value: "!(okultysta-180.17.2.10.0.wyd-1f4.myj-1f.kop-86e.oku-226)!", + result: { + word: "okultysta", + correct: 17, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "29.06.2025", + }, + }, + { + date: "29.06.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNyITL1t2buYTYi1SZp1mLw4COuMjLyEjLwgTMtEGdzlHdsV3avhSI", + value: "!(okultysta-180.12.3.8.0.mie-ba6.oku-226)!", + result: { + word: "okultysta", + correct: 12, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "29.06.2025", + }, + }, + { + date: "29.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2IjMtU3av5SNy0yc5NmL5UGMx0yak9mLhFjM10ievBnLw4SOuEjLxIjLwgTMtEGdzlHdsV3avhSI", + value: "!(okultysta-180.21.1.9.0.poz-521a.odk-10e9.cys-25.oku-226)!", + result: { + word: "okultysta", + correct: 21, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "29.06.2025", + }, + }, + { + date: "29.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNyITL1t2bukDMx0ycvhmLlJGNt8Gdz5SYxczMtoncw5CMuATMuEjL5EjLwgTMtEGdzlHdsV3avhSI", + value: "!(okultysta-180.19.1.10.0.prz-371a.sto-4be.hos-109.oku-226)!", + result: { + word: "okultysta", + correct: 19, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "29.06.2025", + }, + }, + { + date: "29.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNyITL1t2bukTMy0iY5NmL0EWNtonc0VWau5CMuMTMuMjL0EjLwgTMtEGdzlHdsV3avhSI", + value: "!(okultysta-180.14.3.13.0.nietrz-5a4.cyb-219.oku-226)!", + result: { + word: "okultysta", + correct: 14, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "29.06.2025", + }, + }, + { + date: "29.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNyITL1t2buQjY20SY3tmLw4COuQjLyEjLwgTMtEGdzlHdsV3avhSI", + value: "!(okultysta-180.12.4.8.0.kwa-6b4.oku-226)!", + result: { + word: "okultysta", + correct: 12, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 24, + date: "29.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/o-zesz-jasny-panie-ale-bylo-gmeranie-21-06-2025-flag-pl-diffle-difflepl-grywebow" +] = [ + { + date: "21.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNwYTL1dHZuEmNuYzMx0CajNjLldTL6l2duADNy0ydlRmLyETNtk2dr5SYkNTMt0We35yNx0ybslmL4cjMtAnez5CMuYTMuMjL4MjLycTMtk3dvJmepV3dkhSI", + value: + "!(dwuizbowy-172.38.3.16.0.szp-278.ilo-17.wym-13da.kwi-512.dew-240.wiz-7e.3ch-136.6a.dwu-604)!", + result: { + word: "dwuizbowy", + correct: 38, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 57, + date: "21.06.2025", + }, + }, + { + date: "21.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0AjNtU3duIzM00iev5iNilTMtkmek5yNhFTLvp3YuIWZ50ycvtmLw4SOuQjL4EjLycTMtk3dvJmepV3dkhSI", + value: "!(dwuizbowy-172.18.4.9.0.kos-9eb.czo-1a7.dzi-19b6.oz-432.wu-604)!", + result: { + word: "dwuizbowy", + correct: 18, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "21.06.2025", + }, + }, + { + date: "21.06.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQDM20Sd3RmLhFWYx0ydvBnL2EmYtUWat5CMuMTMuMjL3EjLycTMtk3dvJmepV3dkhSI", + value: "!(dwuizbowy-172.17.3.13.0.mie-ba6.pow-1aaa.dwu-604)!", + result: { + word: "dwuizbowy", + correct: 17, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 33, + date: "21.06.2025", + }, + }, + { + date: "21.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNwYTL1dHZuQWOz0yYpxmL0EWNtonc0VWau5CMuETMuIjL5EjLycTMtk3dvJmepV3dkhSI", + value: "!(dwuizbowy-172.19.2.11.0.nietrz-5a4.lic-39d.dwu-604)!", + result: { + word: "dwuizbowy", + correct: 19, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 32, + date: "21.06.2025", + }, + }, + { + date: "21.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNwYTL1dnL1UjMtIWdukjN5ETLppHZuQmM00icwNnLw4COuUjLwIjLycTMtk3dvJmepV3dkhSI", + value: "!(dwuizbowy-172.20.5.8.0.spr-42d.dzi-1969.ub-255.wu-604)!", + result: { + word: "dwuizbowy", + correct: 20, + position: 5, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "21.06.2025", + }, + }, + { + date: "21.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNwYTL1dnL4kDNx0Sa6RmL1gTMt8Wat5iNxETL3lGcuUzMx0ycpxmLjZTYtEmcn5SMuITMuMjLzIjLycTMtk3dvJmepV3dkhSI", + value: + "!(dwuizbowy-172.23.3.12.1.gra-a6c.lis-135.piw-116.mio-185.dzi-1498.wu-604)!", + result: { + word: "dwuizbowy", + correct: 23, + position: 3, + incorrect: 12, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 38, + date: "21.06.2025", + }, + }, + { + date: "21.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0AjNtU3dk5SZwETL6l2duIWZtoXdn5SM0MTL1p3cuMTO4EWMtoncw5CMuMTMuUjL1IjLycTMtk3dvJmepV3dkhSI", + value: + "!(dwuizbowy-172.25.5.13.0.prz-1a893.szu-341.guz-eb.wiz-10e.dwu-604)!", + result: { + word: "dwuizbowy", + correct: 25, + position: 5, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 43, + date: "21.06.2025", + }, + }, + { + date: "21.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0AjNtU3dk5SZwETL6l2duYTNhFTLppHZuQjZx0CZ5dnLw4CNuQjLxIjLycTMtk3dvJmepV3dkhSI", + value: "!(dwuizbowy-172.21.4.4.0.wyd-1f4.dzi-1a56.wiz-10e.dwu-604)!", + result: { + word: "dwuizbowy", + correct: 21, + position: 4, + incorrect: 4, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "21.06.2025", + }, + }, + { + date: "21.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQDM20Sd3RmLhFTLilmYucjMtsWdl5iMuATMuAjL3EjLycTMtk3dvJmepV3dkhSI", + value: "!(dwuizbowy-172.17.0.10.2.euk-27.bib-1a.dwu-604)!", + result: { + word: "dwuizbowy", + correct: 17, + position: 0, + incorrect: 10, + knownIncorrect: 2, + totalWords: 3, + totalLetters: 27, + date: "21.06.2025", + }, + }, + { + date: "21.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNwYTL1dHZuQjY20SY3tmLw4SOuMjLyEjLycTMtk3dvJmepV3dkhSI", + value: "!(dwuizbowy-172.12.3.9.0.kwa-6b4.dwu-604)!", + result: { + word: "dwuizbowy", + correct: 12, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 24, + date: "21.06.2025", + }, + }, + { + date: "21.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNwYTL1dHZuUGMx0iepdnL3YmNx0ybrNnL5QjMtQ2bt5CMuETMuEjLxIjLycTMtk3dvJmepV3dkhSI", + value: "!(dwuizbowy-172.21.1.11.0.mod-249.sko-16f7.wiz-10e.dwu-604)!", + result: { + word: "dwuizbowy", + correct: 21, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "21.06.2025", + }, + }, + { + date: "21.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0AjNtU3dk5iN5ETL6lmLyYTMtQWdi5SZwETL6l2duQ2M50Sd35CM30yY15iY3kTMtkmek5SYxczMtoncw5CMuQTMuUjL5MjLycTMtk3dvJmepV3dkhSI", + value: + "!(dwuizbowy-172.39.5.14.0.prz-371a.dzi-197b.uc-70.wu-93d.wiz-10e.bud-162.iz-196.dwu-604)!", + result: { + word: "dwuizbowy", + correct: 39, + position: 5, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 58, + date: "21.06.2025", + }, + }, + { + date: "21.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNwYTL1dHZuQGN00SaipnLhFjM10ievBnLw4yNuMjL1EjLycTMtk3dvJmepV3dkhSI", + value: "!(dwuizbowy-172.15.3.7.0.poz-521a.zbi-44d.dwu-604)!", + result: { + word: "dwuizbowy", + correct: 15, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "21.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/o-zesz-jasny-panie-czemu-tak-sie-z-tym-mordowalem-24-05-2025-flag-pl-diffle-diff" +] = [ + { + date: "24.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYy0SdpRmLmJTMtg2Yz4CO2ETLqFmZukzY00CZpdnL4MTMtwWaz5SMtkWbn5yNi1CdpJmL2MzMy0ieyBnLw4CMy4iMuEjMuQDNx0SYuVXakhSI", + value: + "!(diuna-144.21.2.20.0.prz-2336.bit-b7.gmi-1.sil-138.wid-4c9.faj-168.3ch-12f.diu-2c)!", + result: { + word: "diuna", + correct: 21, + position: 2, + incorrect: 20, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 43, + date: "24.05.2025", + }, + }, + { + date: "24.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYy0SdpRmLlNDNtQWa35SYwITLslGcuIWZ50ycvtmLw4CMx4iMuITMuQDNx0SYuVXakhSI", + value: "!(diuna-144.12.2.10.0.kos-9eb.pil-20a.wid-43e.diu-2c)!", + result: { + word: "diuna", + correct: 12, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "24.05.2025", + }, + }, + { + date: "24.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmMtUXauQTOx0ibvRmLhFzNz0ieyBnLw4CMx4SMuETMuQDNx0SYuVXakhSI", + value: "!(diuna-144.11.1.10.0.prz-371a.don-194.iu-2c)!", + result: { + word: "diuna", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "24.05.2025", + }, + }, + { + date: "24.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmMtUXak5iYz0SanVnLzIWLpxmYuQTY10ieyRXZp5mLw4iNx4yMuMTMuQDNx0SYuVXakhSI", + value: "!(diuna-144.13.3.16.0.nietrz-5a4.bli-b3.ugi-3b.diu-2c)!", + result: { + word: "diuna", + correct: 13, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "24.05.2025", + }, + }, + { + date: "24.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYy0SdpRmLkJDNtIHcz5CMugjLy4yNuQDNx0SYuVXakhSI", + value: "!(diuna-144.7.2.8.0.spr-42d.diu-2c)!", + result: { + word: "diuna", + correct: 7, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "24.05.2025", + }, + }, + { + date: "24.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmMtUXak5SO5ETLoN2MuATLu5WauYTMy0ybpdnLhBjMtwWaw5iZxITL0lWbuATLul2auMmNh1SYydmLw4yNx4iMuIjMuQDNx0SYuVXakhSI", + value: + "!(diuna-144.22.2.17.0.gra-a6c.kin-0.mit-21f.pil-20a.wio-216.inn-0.3ch-199.diu-2c)!", + result: { + word: "diuna", + correct: 22, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 41, + date: "24.05.2025", + }, + }, + { + date: "24.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmMtUXak5iNlFTMtUmcw5CMugjLx4COuQDNx0SYuVXakhSI", + value: "!(diuna-144.8.1.8.0.pre-11e6.diu-2c)!", + result: { + word: "diuna", + correct: 8, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "24.05.2025", + }, + }, + { + date: "24.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYy0SdpRmLmJmMtUHaj5CMuYjLx4COuQDNx0SYuVXakhSI", + value: "!(diuna-144.8.1.6.0.chu-2bf.diu-2c)!", + result: { + word: "diuna", + correct: 8, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "24.05.2025", + }, + }, + { + date: "24.05.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJTL1lmLmFTLhJHZuYTYi1SZp1mLw4CNx4SMuETMuQDNx0SYuVXakhSI", + value: "!(diuna-144.11.1.14.0.mie-ba6.dra-1f.iu-2c)!", + result: { + word: "diuna", + correct: 11, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "24.05.2025", + }, + }, + { + date: "24.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYy0SdpRmL0YWMtQWe35CMuUjLy4yNuQDNx0SYuVXakhSI", + value: "!(diuna-144.7.2.5.0.wyd-1f4.diu-2c)!", + result: { + word: "diuna", + correct: 7, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "24.05.2025", + }, + }, + { + date: "24.05.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYy0SdpRmLhRWMtMWdr5CNyQTLkl2duEzNx0ibpxmLlJzNi1ievJnLw4CNx4CNuQTMuQDNx0SYuVXakhSI", + value: "!(diuna-144.14.4.14.0.roz-b72e.lin-171.wid-424.kuc-1da.diu-2c)!", + result: { + word: "diuna", + correct: 14, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "24.05.2025", + }, + }, + { + date: "24.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYy0SdpRmLw0SauVnL3ITLrVXZuAjL24yMuATMuQDNx0SYuVXakhSI", + value: "!(diuna-144.10.3.6.0.euk-27.uni-0.diu-2c)!", + result: { + word: "diuna", + correct: 10, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "24.05.2025", + }, + }, + { + date: "24.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmMtUXak5SZmFTLylWbuATLp5WduEWMyUTL69GcuAjL54yMuMTMuQDNx0SYuVXakhSI", + value: "!(diuna-144.13.3.9.0.poz-521a.uni-0.mir-1fe.diu-2c)!", + result: { + word: "diuna", + correct: 13, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "24.05.2025", + }, + }, + { + date: "24.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJTL1lGZuETL5RWaukDNy0CZv1mLw4SMx4iMuATMuQDNx0SYuVXakhSI", + value: "!(diuna-144.10.2.11.0.mod-249.idy-1.diu-2c)!", + result: { + word: "diuna", + correct: 10, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "24.05.2025", + }, + }, + { + date: "24.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYy0SdpRmLyEDNtcWYu5yM5gTYx0ieyBnLw4SMx4iMuATMuQDNx0SYuVXakhSI", + value: "!(diuna-144.10.2.11.0.prz-1a893.nag-412.diu-2c)!", + result: { + word: "diuna", + correct: 10, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "24.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/oj-trudne-27-09-25-diffle-difflepl-grywebowe-21-liter-w-2-slowach-large-green-ci" +] = [ + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpETMz0icv1mL3UDNt8Gc15CMuETMuAjLwEjLwcjMtEmblJ3bthSI", + value: "!(morena-270.10.0.11.0.upo-457.mor-311)!", + result: { + word: "morena", + correct: 10, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + }, + }, + { + date: "27.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpETMz0icv1mL1kTOx0CZ5dnLw4CMx4SMukjLwcjMtEmblJ3bthSI", + value: "!(morena-270.9.1.10.0.wyd-1995.mor-311)!", + result: { + word: "morena", + correct: 9, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "27.09.2025", + }, + }, + { + date: "27.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxEzMtI3bt5iYmFTLuVmcuQmM00icwNnLw4yNuUjLyEjLwcjMtEmblJ3bthSI", + value: "!(morena-270.12.5.7.0.spr-42d.ren-1fb.mor-311)!", + result: { + word: "morena", + correct: 12, + position: 5, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "27.09.2025", + }, + }, + { + date: "27.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpETMz0icuETLr5CMkNTLk9WbuYWMx0ybw9mLmJmMtUHaj5CMuQTMuAjLwIjLwcjMtEmblJ3bthSI", + value: "!(morena-270.20.0.14.0.chu-2bf.opo-11f.mod-3d0.k-1.r-311)!", + result: { + word: "morena", + correct: 20, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "27.09.2025", + }, + }, + { + date: "27.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxEzMtI3bt5yN40SZyFmL3ITLyl3cuAjNx0ieyRmL3YTLyVmbuMmNh1SYydmLw4SOuQjLyIjLwcjMtEmblJ3bthSI", + value: + "!(morena-270.22.4.9.0.gra-a6c.ner-67.drz-160.syr-27.are-87.mor-311)!", + result: { + word: "morena", + correct: 22, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "27.09.2025", + }, + }, + { + date: "27.09.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxEzMtI3bt5CM50SYy9mL2M2Yx0ichtmLw4SNuQjLxEjLwcjMtEmblJ3bthSI", + value: "!(morena-270.11.4.5.0.kar-1cc6.ora-90.mor-311)!", + result: { + word: "morena", + correct: 11, + position: 4, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "27.09.2025", + }, + }, + { + date: "27.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpETMz0icv1mL3cTLtFmcuQjZx0CZ5dnLw4SNuMjLyEjLwcjMtEmblJ3bthSI", + value: "!(morena-270.12.3.5.0.wyd-1f4.ram-77.mor-311)!", + result: { + word: "morena", + correct: 12, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "27.09.2025", + }, + }, + { + date: "27.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpETMz0icv1mLiZWMt4WZy5yM5gTYx0ieyBnLw4SOuIjL0EjLwcjMtEmblJ3bthSI", + value: "!(morena-270.14.2.9.0.prz-1a893.ren-1fb.mor-311)!", + result: { + word: "morena", + correct: 14, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "27.09.2025", + }, + }, + { + date: "27.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpETMz0icv1mLiZWMt4WZy5yNy0ya1VmLw4SNuUjLyEjLwcjMtEmblJ3bthSI", + value: "!(morena-270.12.5.5.0.euk-27.ren-1fb.mor-311)!", + result: { + word: "morena", + correct: 12, + position: 5, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "27.09.2025", + }, + }, + { + date: "27.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxEzMtI3bt5CNiZTLhd3auAjL54yMukjLwcjMtEmblJ3bthSI", + value: "!(morena-270.9.3.9.0.kwa-6b4.mor-311)!", + result: { + word: "morena", + correct: 9, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "27.09.2025", + }, + }, + { + date: "27.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxEzMtInL4YWMt42bt5iZh1ydv5mLhFjM10ievBnLw4SOuQjL1EjLwcjMtEmblJ3bthSI", + value: "!(morena-270.15.4.9.0.poz-521a.now-af.mon-1f8.r-311)!", + result: { + word: "morena", + correct: 15, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "27.09.2025", + }, + }, + { + date: "27.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMxMTLy5SNyITLk9mL2EmYtUWat5CMuATMuMjL0EjLwcjMtEmblJ3bthSI", + value: "!(morena-270.14.3.10.0.mie-ba6.od-225.r-311)!", + result: { + word: "morena", + correct: 14, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "27.09.2025", + }, + }, + { + date: "27.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxEzMtI3bt5SZ3ETLy9mbuIWZ50ycvtmLw4yNuYjLyEjLwcjMtEmblJ3bthSI", + value: "!(morena-270.12.6.7.0.kos-9eb.nor-17e.mor-311)!", + result: { + word: "morena", + correct: 12, + position: 6, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "27.09.2025", + }, + }, + { + date: "27.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpETMz0icukDNy0CZv1mLw4iNuEjLxEjLwcjMtEmblJ3bthSI", + value: "!(morena-270.11.1.6.0.mod-249.r-311)!", + result: { + word: "morena", + correct: 11, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "27.09.2025", + }, + }, + { + date: "27.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMxMTLy9WbuYjYtUmcr5CMtoWZy5CMtUmc15SYxczMtoncw5CMuMTMuAjL4EjLwcjMtEmblJ3bthSI", + value: "!(morena-270.18.0.13.0.prz-371a.ure-0.rej-0.kre-b6.mor-311)!", + result: { + word: "morena", + correct: 18, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "27.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/oj-wymeczylo-26-06-2025-diffle-difflepl-grywebowe-31-liter-w-5-slowach-large-gre" +] = [ + { + date: "26.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM0QWNtQ2bw5SN10CajJjL2ITLs9mLjFTL0VmZuIWZ50ycvtmLw4COuMjLwIjL3cTMtIXZjlmZvR2bwhSI", + value: "!(podoficer-177.20.3.8.0.kos-9eb.fet-1c.ol-26.2ch-55.pod-5d42)!", + result: { + word: "podoficer", + correct: 20, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "26.06.2025", + }, + }, + { + date: "26.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIDNkVTLk5yNxQTLs9mL2kjMt8mcw5SMl1yYlRmLkZmMtonci5CMuITMuYjLzIjL3cTMtIXZjlmZvR2bwhSI", + value: "!(podoficer-177.23.6.12.0.brz-2fd.dec-e1.pro-296.ol-417.d-5d42)!", + result: { + word: "podoficer", + correct: 23, + position: 6, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "26.06.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyQDZ10CZvBnL3UDNt8Gc15CMuATMuAjL0EjL3cTMtIXZjlmZvR2bwhSI", + value: "!(podoficer-177.14.0.10.0.upo-457.pod-5d42)!", + result: { + word: "podoficer", + correct: 14, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 24, + }, + }, + { + date: "26.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIDNkVTLk9GcuQmM00icwNnLw4iNuEjL0EjL3cTMtIXZjlmZvR2bwhSI", + value: "!(podoficer-177.14.1.6.0.spr-42d.pod-5d42)!", + result: { + word: "podoficer", + correct: 14, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "26.06.2025", + }, + }, + { + date: "26.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIDNkVTLk9mLjFTNtIXZw5iNhhTLw9GZuQTY10ieyRXZp5mLw4SOugjLwIjL3cTMtIXZjlmZvR2bwhSI", + value: "!(podoficer-177.20.8.9.0.nietrz-5a4.dop-8a6.per-51c.od-5d42)!", + result: { + word: "podoficer", + correct: 20, + position: 8, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "26.06.2025", + }, + }, + { + date: "26.06.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM0QWNtQ2bw5iZm1Sam9mLzkTMtg2Yz4SO4QTLs5SO2ITMtcmL2gTOtImL4I2Mx0yYvBnLmJmMtUHaj5CMuUTMuYjLxMjL3cTMtIXZjlmZvR2bwhSI", + value: + "!(podoficer-177.31.6.15.0.chu-2bf.poc-13b8.b-986.g-1269.l-489.3ch-193.ofi-ff.pod-5d42)!", + result: { + word: "podoficer", + correct: 31, + position: 6, + incorrect: 15, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 52, + date: "26.06.2025", + }, + }, + { + date: "26.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyQDZ10CZvBnLwEWMtUHaj5SYlNWLt5SYkFTMtw2buYDZy0ybpBnLh1CcpJmLjZTYtEmcn5CMuETMuUjL3IjL3cTMtIXZjlmZvR2bwhSI", + value: + "!(podoficer-177.27.5.11.0.gra-a6c.bip-a.pio-2d6.ol-11da.m-cea.chu-1a0.pod-5d42)!", + result: { + word: "podoficer", + correct: 27, + position: 5, + incorrect: 11, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 43, + date: "26.06.2025", + }, + }, + { + date: "26.06.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM0QWNtQ2bw5SY1ITLjl2ducTNy0Cc1RmL2EmYtUWat5SMuQTMuMjL2EjL3cTMtIXZjlmZvR2bwhSI", + value: "!(podoficer-177.16.3.14.1.mie-ba6.dup-257.wic-25a.pod-5d42)!", + result: { + word: "podoficer", + correct: 16, + position: 3, + incorrect: 14, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 33, + date: "26.06.2025", + }, + }, + { + date: "26.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM0QWNtQ2bw5iZm1Sam9mL0ImNtE2dr5CMuATMuEjL5EjL3cTMtIXZjlmZvR2bwhSI", + value: "!(podoficer-177.19.1.10.0.kwa-6b4.ofi-ff.pod-5d42)!", + result: { + word: "podoficer", + correct: 19, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "26.06.2025", + }, + }, + { + date: "26.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyQDZ10CZv5yM5gTYx0ieyBnLw4COuIjLyEjL3cTMtIXZjlmZvR2bwhSI", + value: "!(podoficer-177.12.2.8.0.prz-1a893.od-5d42)!", + result: { + word: "podoficer", + correct: 12, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "26.06.2025", + }, + }, + { + date: "26.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM0QWNtQ2bw5SO20CajJjLiFWLoN2MuMzNk1SZpNmLlJWNtUGdz5CM10CZvtmLwETLkJ3buQGM00CblRmL0YWMtQWe35CMuMTMuUjLyMjL3cTMtIXZjlmZvR2bwhSI", + value: + "!(podoficer-177.32.5.13.0.wyd-1f4.del-40d.ord-10.kod-50.ste-5be.cie-d73.3ch-ab.2ch-69.pod-5d42)!", + result: { + word: "podoficer", + correct: 32, + position: 5, + incorrect: 13, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 50, + date: "26.06.2025", + }, + }, + { + date: "26.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIDNkVTLk9GcuEmNx0iek9mLkdTMt8Wai5yNy0ya1VmLx4SOuQjLwIjL3cTMtIXZjlmZvR2bwhSI", + value: "!(podoficer-177.20.4.9.1.euk-27.bio-17d.odz-16a.pod-5d42)!", + result: { + word: "podoficer", + correct: 20, + position: 4, + incorrect: 9, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 33, + date: "26.06.2025", + }, + }, + { + date: "26.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIDNkVTLk9mL4YTLkVnLmFTNtQ2buMzNh1SZp5SYxczMtoncw5CMuMTMuQjL1IjL3cTMtIXZjlmZvR2bwhSI", + value: "!(podoficer-177.25.4.13.0.prz-371a.ie-a73.od-51f.ud-68.od-5d42)!", + result: { + word: "podoficer", + correct: 25, + position: 4, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "26.06.2025", + }, + }, + { + date: "26.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyQDZ10CZvBnL4YDNtg2Yz4iMhdTL3R2bukDNy0CZv1mLw4COuIjLxIjL3cTMtIXZjlmZvR2bwhSI", + value: "!(podoficer-177.21.2.8.0.mod-249.odw-7a2.3ch-468.pod-5d42)!", + result: { + word: "podoficer", + correct: 21, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "26.06.2025", + }, + }, + { + date: "26.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyQDZ10CZvBnL3cTMt8Wai5yYiBTMtwmLhFjM10ievBnLw4SOuEjLyIjL3cTMtIXZjlmZvR2bwhSI", + value: "!(podoficer-177.22.1.9.0.poz-521a.l-10bc.bio-177.pod-5d42)!", + result: { + word: "podoficer", + correct: 22, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "26.06.2025", + }, + }, + { + date: "26.06.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIDNkVTLk9mLzYmMtQWZuAjMtU2cw5yM10CZuATLilmZuMDZ40ybyBnLmFzNtUWat5yY2kTLvJnL3UWYt4WYw5yMuQTMuUjLyQjL3cTMtIXZjlmZvR2bwhSI", + value: + "!(podoficer-177.42.5.14.3.pan-ae7.ro-96c.mie-71f.pro-8d3.fib-0.d-53.pse-20.ed-2f3.od-5d42)!", + result: { + word: "podoficer", + correct: 42, + position: 5, + incorrect: 14, + knownIncorrect: 3, + totalWords: 9, + totalLetters: 61, + date: "26.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/oszustwo-30-09-2025-diffle-difflepl-grywebowe-31-liter-w-6-slowach-large-green-c" +] = [ + { + date: "30.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNy0iYvxmLmdTLpJ2duMTOuEWMy0CajNjLkJTMt8Gbw5iYllTLz92auAjL1EjLw4iNx4yM3ITLn5WaiJ2bshSI", + value: "!(lobbing-273.16.0.15.0.kos-9eb.plo-12d.3ch-21a.93.wbi-7f.lob-25)!", + result: { + word: "lobbing", + correct: 16, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "30.09.2025", + }, + }, + { + date: "30.09.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ITLi9GbuMTOt8Gbi5SMyMTLsFGduU2MyETLk9GcuAjLyEjLx4yNx4yM3ITLn5WaiJ2bshSI", + value: "!(lobbing-273.17.1.12.0.pod-123e.tal-321.blo-93.lob-25)!", + result: { + word: "lobbing", + correct: 17, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "30.09.2025", + }, + }, + { + date: "30.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ITLi9GbuMWNtI2bn5yMycTLt92auEWM3MTL6JHcuAjLzEjLy4SNx4yM3ITLn5WaiJ2bshSI", + value: "!(lobbing-273.15.2.13.0.prz-371a.kom-723.gob-5c.lob-25)!", + result: { + word: "lobbing", + correct: 15, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "30.09.2025", + }, + }, + { + date: "30.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMtI2bs5yY10iYvdmLzIzNt02br5CZyQTLyB3cuAjLyEjLz4iNx4yM3ITLn5WaiJ2bshSI", + value: "!(lobbing-273.16.3.12.0.spr-42d.kom-723.gob-5c.lob-25)!", + result: { + word: "lobbing", + correct: 16, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "30.09.2025", + }, + }, + { + date: "30.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMtImLjVWLn9GbuImYx0CblRmLkF2Mt8Gdz5iZiJTL1h2YuAjL0EjLz4SOx4yM3ITLn5WaiJ2bshSI", + value: "!(lobbing-273.19.3.14.0.chu-2bf.sto-3ad.del-1bb.log-ec.b-25)!", + result: { + word: "lobbing", + correct: 19, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "30.09.2025", + }, + }, + { + date: "30.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ITLi9GbuI2Mx0ybsJmLjRTMt4Waw5CNxMTL0p3cuAjLxEjLy4CNx4yM3ITLn5WaiJ2bshSI", + value: "!(lobbing-273.14.2.11.0.szt-314.pin-14c.blo-13b.lob-25)!", + result: { + word: "lobbing", + correct: 14, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "30.09.2025", + }, + }, + { + date: "30.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ITLi9GbuMTOt8Gbi5yMhZTLt9GZuI2N00ibpdnL3ITLrVXZuAjLxEjLz4SOx4yM3ITLn5WaiJ2bshSI", + value: "!(lobbing-273.19.3.11.0.euk-27.win-47b.dom-6a3.blo-93.lob-25)!", + result: { + word: "lobbing", + correct: 19, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "30.09.2025", + }, + }, + { + date: "30.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMtI2bs5SZyETLn9mYuMzMt8Waw5CNiZTLhd3auAjL0EjL04CNx4yM3ITLn5WaiJ2bshSI", + value: "!(lobbing-273.14.4.14.0.kwa-6b4.pio-33.bog-12e.lob-25)!", + result: { + word: "lobbing", + correct: 14, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "30.09.2025", + }, + }, + { + date: "30.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ITLi5iMl1yZvxmL4AjNtw2bk5iNhJWLllWbuAjLyEjL04iNx4yM3ITLn5WaiJ2bshSI", + value: "!(lobbing-273.16.4.12.0.mie-ba6.dol-608.log-e2.b-25)!", + result: { + word: "lobbing", + correct: 16, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "30.09.2025", + }, + }, + { + date: "30.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNy0iYvxmLjRTMt4Waw5yY00yZvpmLzIzNt02br5CNmFTLkl3duAjLyEjLy4yNx4yM3ITLn5WaiJ2bshSI", + value: "!(lobbing-273.17.2.12.0.wyd-1f4.kom-723.jog-4c.pin-14c.lob-25)!", + result: { + word: "lobbing", + correct: 17, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "30.09.2025", + }, + }, + { + date: "30.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ITLi9GbuQzYt4Wai5CZtk2dz5yY0ETLulGcuIDZx0ibptmLjZTYtEmcn5CMucjLy4SMy4yM3ITLn5WaiJ2bshSI", + value: + "!(lobbing-273.21.2.7.0.gra-a6c.kin-1d2.pin-14c.swi-d.bin-c4.lob-25)!", + result: { + word: "lobbing", + correct: 21, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "30.09.2025", + }, + }, + { + date: "30.09.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNy0iYuMWZtcmL5MTL09GbuQWNmJTLu92auAjLwEjLy4yNx4yM3ITLn5WaiJ2bshSI", + value: "!(lobbing-273.17.2.10.0.kon-2f5d.lot-39.g-ec.b-25)!", + result: { + word: "lobbing", + correct: 17, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "30.09.2025", + }, + }, + { + date: "30.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMtImLyUWLn9GbuQGM00SastmLzkDOhFTL6JHcuAjLyEjLz4iNx4yM3ITLn5WaiJ2bshSI", + value: "!(lobbing-273.16.3.12.0.prz-1a893.kli-40d.log-e2.b-25)!", + result: { + word: "lobbing", + correct: 16, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "30.09.2025", + }, + }, + { + date: "30.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNy0iYvxmLmlTMtw2bi5SO3ETLvR3cuMzMt8Waw5SO0ITLk9WbuAjLzEjL04SNx4yM3ITLn5WaiJ2bshSI", + value: "!(lobbing-273.15.4.13.0.mod-249.pio-33.sto-179.bol-19f.lob-25)!", + result: { + word: "lobbing", + correct: 15, + position: 4, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "30.09.2025", + }, + }, + { + date: "30.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNy0iYvxmLwMmMtwWai5SYxITNto3bw5CMucjLz4iMx4yM3ITLn5WaiJ2bshSI", + value: "!(lobbing-273.12.3.7.0.poz-521a.bil-2c0.lob-25)!", + result: { + word: "lobbing", + correct: 12, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "30.09.2025", + }, + }, + { + date: "30.09.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMtImLyUWLn9GbuEGMx0ybstmLyUWYt4WYw5CMuYjLz4SNx4yM3ITLn5WaiJ2bshSI", + value: "!(lobbing-273.15.3.6.0.pan-ae2.klo-10a.log-e2.b-25)!", + result: { + word: "lobbing", + correct: 15, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "30.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/piekne-otwarcie-13-07-2025-diffle-difflepl-grywebowe-15-liter-w-2-slowach-large-" +] = [ + { + date: "13.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxIjMtM3bt5iYllTLz92auAjL14SMukjL0kTMto3Y6N3bthSI", + value: "!(moszcz-194.9.1.5.0.kos-9eb.mos-221)!", + result: { + word: "moszcz", + correct: 9, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "13.07.2025", + }, + }, + { + date: "13.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMyITLz9WbuQjY20SY3tmLw4CMx4iMukjL0kTMto3Y6N3bthSI", + value: "!(moszcz-194.9.2.10.0.kwa-6b4.mos-221)!", + result: { + word: "moszcz", + correct: 9, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "13.07.2025", + }, + }, + { + date: "13.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxIjMtM3bt5SNhRTL6N3buUTZ30ycvtmLkJDNtIHcz5CMuETMuEjL2EjL0kTMto3Y6N3bthSI", + value: "!(moszcz-194.16.1.11.0.spr-42d.kos-7e5.osz-4a5.mos-221)!", + result: { + word: "moszcz", + correct: 16, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "13.07.2025", + }, + }, + { + date: "13.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMyITLz9WbuQTY10ieyRXZp5mLw4iMx4iMucjL0kTMto3Y6N3bthSI", + value: "!(moszcz-194.7.2.12.0.nietrz-5a4.mos-221)!", + result: { + word: "moszcz", + correct: 7, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "13.07.2025", + }, + }, + { + date: "13.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEjMy0ycv1mLxMjMt8Gbr5yY2EWLhJ3ZuAjL44CMukjL0kTMto3Y6N3bthSI", + value: "!(moszcz-194.9.0.8.0.gra-a6c.klo-231.mos-221)!", + result: { + word: "moszcz", + correct: 9, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "13.07.2025", + }, + }, + { + date: "13.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMyITLz9WbuE2M20ybyJmLhFjM10ievBnLw4SOuEjLxEjL0kTMto3Y6N3bthSI", + value: "!(moszcz-194.11.1.9.0.poz-521a.bro-63a.mos-221)!", + result: { + word: "moszcz", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "13.07.2025", + }, + }, + { + date: "13.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxIjMtM3bt5yN0ITLq92duMTO4EWMtoncw5CMuUTMuEjLwEjL0kTMto3Y6N3bthSI", + value: "!(moszcz-194.10.1.15.0.prz-1a893.woj-247.mos-221)!", + result: { + word: "moszcz", + correct: 10, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "13.07.2025", + }, + }, + { + date: "13.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEjMy0ycv1mLmlTNt8Gdz5yY0ETLvJ3auI2M00iej9mLmJmMtUHaj5CMuMTMuIjL1EjL0kTMto3Y6N3bthSI", + value: "!(moszcz-194.15.2.13.0.chu-2bf.ocz-43b.kro-14c.sto-59f.mos-221)!", + result: { + word: "moszcz", + correct: 15, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "13.07.2025", + }, + }, + { + date: "13.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEjMy0ycukDNy0CZv1mLw4COuAjLwEjL0kTMto3Y6N3bthSI", + value: "!(moszcz-194.10.0.8.0.mod-249.s-221)!", + result: { + word: "moszcz", + correct: 10, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "13.07.2025", + }, + }, + { + date: "13.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEjMy0ycv1mL4Q2MtI2bk5yNyETLvp3cucjMtsWdl5CMuMTMuEjLyEjL0kTMto3Y6N3bthSI", + value: "!(moszcz-194.12.1.13.0.euk-27.szo-127.dob-3d8.mos-221)!", + result: { + word: "moszcz", + correct: 12, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "13.07.2025", + }, + }, + { + date: "13.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEjMy0ycv1mL2MTLrlHZugDMx0SdsJmLxIGNt8mcw5CMuYTMuAjLyEjL0kTMto3Y6N3bthSI", + value: "!(moszcz-194.12.0.16.0.pro-4b1.blu-108.dyk-36.mos-221)!", + result: { + word: "moszcz", + correct: 12, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "13.07.2025", + }, + }, + { + date: "13.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMyITLz9WbuczY10ya6NnLhFzNz0ieyBnLw4yMx4iMukjL0kTMto3Y6N3bthSI", + value: "!(moszcz-194.9.2.13.0.prz-371a.szk-5c7.mos-221)!", + result: { + word: "moszcz", + correct: 9, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "13.07.2025", + }, + }, + { + date: "13.07.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEjMy0ycuQTZy0yYuUTOx0icv1mL3UWYt4WYw5CMuITMuIjLzEjL0kTMto3Y6N3bthSI", + value: "!(moszcz-194.13.2.12.0.pan-ae7.mor-195.c-2e4.s-221)!", + result: { + word: "moszcz", + correct: 13, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "13.07.2025", + }, + }, + { + date: "13.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMyITLz9WbuUDNtU3cv5SNldTLz92auQDZ10Cd6NnL0YWMtQWe35SMuMTMuEjL1EjL0kTMto3Y6N3bthSI", + value: "!(moszcz-194.15.1.13.1.wyd-1f4.szt-5d4.kos-7e5.osu-45.mos-221)!", + result: { + word: "moszcz", + correct: 15, + position: 1, + incorrect: 13, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 29, + date: "13.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/pieknie-mnie-zaoralo-a-mialem-nie-strzelac-slightly-smiling-face-29-05-2025-diff" +] = [ + { + date: "29.05.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNwUjLwQDNuUjYyEjLxImMucjM40SYwNnLlhDNtg2Yz4yYiJTLuF2cuIWZ50ycvtmLw4CMx4CMuUDNukDNx0SZp5WYsFGczhSI", + value: + "!(spalanie-149.45.0.10.0.kos-9eb.san-2bc.3ch-48e.spa-827.2b1.12b5.440.504)!", + result: { + word: "spalanie", + correct: 45, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 55, + date: "29.05.2025", + }, + }, + { + date: "29.05.2025", + nick: "Arche", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQDM14SNzgTLhB3cucTLz9GauAjL24SMucTMukDNx0SZp5WYsFGczhSI", + value: "!(spalanie-149.17.1.6.0.hos-7.spa-835.504)!", + result: { + word: "spalanie", + correct: 17, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "29.05.2025", + }, + }, + { + date: "29.05.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNwUjLwQDNtEGcz5CNhVTL6JHdllmbuAjL54yMukTMukDNx0SZp5WYsFGczhSI", + value: "!(spalanie-149.19.3.9.0.nietrz-5a4.spa-440.504)!", + result: { + word: "spalanie", + correct: 19, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "29.05.2025", + }, + }, + { + date: "29.05.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNwUjL3IDOtEGcz5SNhRWLwFmbuEGZyITLr9GcuAjL34SNugTMukDNx0SZp5WYsFGczhSI", + value: "!(spalanie-149.18.5.7.0.pok-22da.nap-da5.spa-827.504)!", + result: { + word: "spalanie", + correct: 18, + position: 5, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "29.05.2025", + }, + }, + { + date: "29.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNwUTLh5CZyQTLyB3cuAjL14CMuUTMukDNx0SZp5WYsFGczhSI", + value: "!(spalanie-149.15.0.5.0.spr-42d.a-504)!", + result: { + word: "spalanie", + correct: 15, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "29.05.2025", + }, + }, + { + date: "29.05.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNwUjL3IDOtEGcz5SOhdTLuF2auYmYy0SdoNmLw4CMx4yMukTMukDNx0SZp5WYsFGczhSI", + value: "!(spalanie-149.19.3.10.0.chu-2bf.kan-7a9.spa-827.504)!", + result: { + word: "spalanie", + correct: 19, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "29.05.2025", + }, + }, + { + date: "29.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0ATNuEjYy4yNygTLhB3cuQ2YkJTLwFmeuAjL14yMuQjMukDNx0SZp5WYsFGczhSI", + value: "!(spalanie-149.24.3.5.0.zap-2dcd.spa-827.2b1.504)!", + result: { + word: "spalanie", + correct: 24, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "29.05.2025", + }, + }, + { + date: "29.05.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQDM14CM0QTLhBnLxITLwF2cuEWM3MTL6JHcuAjL24CNuQjMukDNx0SZp5WYsFGczhSI", + value: "!(spalanie-149.24.4.6.0.prz-371a.sap-21.pa-440.504)!", + result: { + word: "spalanie", + correct: 24, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "29.05.2025", + }, + }, + { + date: "29.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQDM10SYw5SMy0CchNnL0YTL0N3dukDNy0CZv1mLw4CMx4CNuIjMukDNx0SZp5WYsFGczhSI", + value: "!(spalanie-149.22.4.10.0.mod-249.wst-64.sap-21.pa-504)!", + result: { + word: "spalanie", + correct: 22, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "29.05.2025", + }, + }, + { + date: "29.05.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNwUTLhB3cuIzMtEGb15yMz0SYs9mL1QTMtEGb65yY40CboNmL4QjMt4WYs5yY2EWLhJ3ZuAjL34CMuczMukDNx0SZp5WYsFGczhSI", + value: + "!(spalanie-149.37.0.7.0.gra-a6c.lan-248.chl-8c.zla-145.ola-33.ula-32.spa-504)!", + result: { + word: "spalanie", + correct: 37, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 44, + date: "29.05.2025", + }, + }, + { + date: "29.05.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQDM10SYwNnLwYDNtEGbw5iZwETLs92auAjL14SMuYTMukDNx0SZp5WYsFGczhSI", + value: "!(spalanie-149.16.1.5.0.kol-10f.pla-460.spa-504)!", + result: { + word: "spalanie", + correct: 16, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "29.05.2025", + }, + }, + { + date: "29.05.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0ATNtEGcuEjMtAnLjJmMt4WYz5CNmFTLkl3duAjL14iMuIjMukDNx0SZp5WYsFGczhSI", + value: "!(spalanie-149.22.2.5.0.wyd-1f4.san-2bc.p-21.pa-504)!", + result: { + word: "spalanie", + correct: 22, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "29.05.2025", + }, + }, + { + date: "29.05.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0ATNuQjY04yNygTLhBnLzEWLhJnLjRTLhNnLjJmMt4WYz5iN20CdzVXZp5mLzgjMx0yY5dnLw4iNx4SMuADNukDNx0SZp5WYsFGczhSI", + value: + "!(spalanie-149.40.1.16.0.wyc-1283.nieust-66.san-2bc.sa-4c.ra-a3.pa-827.4b4.504)!", + result: { + word: "spalanie", + correct: 40, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 57, + date: "29.05.2025", + }, + }, + { + date: "29.05.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNwUjLyQTNtEGcz5iNhJWLllWbuAjL54SMuAjMukDNx0SZp5WYsFGczhSI", + value: "!(spalanie-149.20.1.9.0.mie-ba6.spa-542.504)!", + result: { + word: "spalanie", + correct: 20, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "29.05.2025", + }, + }, + { + date: "29.05.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNwUTLhB3cukTYy0SYw9mLzkDOhFTL6JHcuAjL44iMukTMukDNx0SZp5WYsFGczhSI", + value: "!(spalanie-149.19.2.8.0.prz-1a893.opa-2a9.spa-504)!", + result: { + word: "spalanie", + correct: 19, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "29.05.2025", + }, + }, + { + date: "29.05.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0ATNuUjYyETLhB3cuUWN10ibhBnL3ITLrVXZuAjL34iMuIjMukDNx0SZp5WYsFGczhSI", + value: "!(spalanie-149.22.2.7.0.euk-27.pan-55e.spa-12b5.504)!", + result: { + word: "spalanie", + correct: 22, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "29.05.2025", + }, + }, + { + date: "29.05.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQDM10SYwNnLxEWLzFGcuIGMzETLkFmbuAjL24CNuYTMukDNx0SZp5WYsFGczhSI", + value: "!(spalanie-149.16.4.6.0.nad-130b.pas-a1.spa-504)!", + result: { + word: "spalanie", + correct: 16, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "29.05.2025", + }, + }, + { + date: "29.05.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQDM14SNiJTMuEjYy4yNygTLhB3cuEWMyUTL69GcuAjL24SMuMzMukDNx0SZp5WYsFGczhSI", + value: "!(spalanie-149.33.1.6.0.poz-521a.spa-827.2b1.12b5.504)!", + result: { + word: "spalanie", + correct: 33, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "29.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/proste-acz-potencjalnie-frustrujace-24-08-2025-flag-pl-diffle-difflepl-grywebowe" +] = [ + { + date: "24.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWM20yYvRmLzMWMx0yYvBnLykTMtM2cv5CMuYjLw4CMy4iNzITL3gTJ0MUJhJXZpN2bkhSI", + value: "!(docierać-236.20.0.6.0.osc-192.poc-11c3.doc-61f)!", + result: { + word: "docierać", + correct: 20, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "24.08.2025", + }, + }, + { + date: "24.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmFjNtM2bk5CM50yc1BnL1UTLj92auMDNzETLsl3duAjLzEjLx4SNx4iNzITL3gTJ0MUJhJXZpN2bkhSI", + value: "!(docierać-236.15.1.13.0.wyl-1343.koc-55.pus-90.doc-61f)!", + result: { + word: "docierać", + correct: 15, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "24.08.2025", + }, + }, + { + date: "24.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZxYTLj9GZucTZm1CZvBnL4IDNtkmYv5iMzMTMtMXe35CMukjLx4CMy4iNzITL3gTJ0MUJhJXZpN2bkhSI", + value: "!(docierać-236.20.1.9.0.wys-1332.obi-428.pod-fe7.doc-61f)!", + result: { + word: "docierać", + correct: 20, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "24.08.2025", + }, + }, + { + date: "24.08.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmFjNtM2bk5iY3MTLpN2buUWMtsWZ35CZ4ETLwNXYuAjLwEjLz4SMy4iNzITL3gTJ0MUJhJXZpN2bkhSI", + value: "!(docierać-236.21.3.10.0.asp-18d.wek-1e.oci-37b.doc-61f)!", + result: { + word: "docierać", + correct: 21, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "24.08.2025", + }, + }, + { + date: "24.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZxYjL4gzNtM2bk5SZ3ITLjJ2buIDMx0SYp5iZiJTL1h2YuAjLyEjLy4SNy4iNzITL3gTJ0MUJhJXZpN2bkhSI", + value: "!(docierać-236.25.2.12.0.chu-2bf.ia-102.obc-27e.doc-788.61f)!", + result: { + word: "docierać", + correct: 25, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "24.08.2025", + }, + }, + { + date: "24.08.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmFjNtMmLmJjMtI2bk5SNhVTL6JHdllmbuAjLwEjLy4SOx4iNzITL3gTJ0MUJhJXZpN2bkhSI", + value: "!(docierać-236.19.2.10.0.nietrz-5a5.dob-22f.c-61f)!", + result: { + word: "docierać", + correct: 19, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "24.08.2025", + }, + }, + { + date: "24.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWM20yYvRmLxETNtIGZv5CZxczMtoncw5CMucjLz4COx4iNzITL3gTJ0MUJhJXZpN2bkhSI", + value: "!(docierać-236.18.3.7.0.prz-371d.odb-511.doc-61f)!", + result: { + word: "docierać", + correct: 18, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "24.08.2025", + }, + }, + { + date: "24.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmFjNtM2bk5iY3MTLpN2buMTO4EWMtoncw5CMugjLz4yNx4iNzITL3gTJ0MUJhJXZpN2bkhSI", + value: "!(docierać-236.17.3.8.0.prz-1a893.oci-37b.doc-61f)!", + result: { + word: "docierać", + correct: 17, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "24.08.2025", + }, + }, + { + date: "24.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmFjNtMmL4QTMto2bk5yYhJGNtQ2bw5CMucjLy4iNx4iNzITL3gTJ0MUJhJXZpN2bkhSI", + value: "!(docierać-236.16.2.7.0.pod-4bac.doj-148.c-61f)!", + result: { + word: "docierać", + correct: 16, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "24.08.2025", + }, + }, + { + date: "24.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWM20yYvRmLlZWMt8mct5SN10yYvtmL4IWMt8Gcv5SNxQTLs9meuAjL1EjLx4COx4iNzITL3gTJ0MUJhJXZpN2bkhSI", + value: "!(docierać-236.18.1.15.0.zol-415.opo-1b8.koc-55.mro-1fe.doc-61f)!", + result: { + word: "docierać", + correct: 18, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "24.08.2025", + }, + }, + { + date: "24.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZxYTLj9GZuUWOy0Saw9mLxIjMx0Cd5dnL4kTLvpneuAjLzEjLy4COx4iNzITL3gTJ0MUJhJXZpN2bkhSI", + value: "!(docierać-236.18.2.13.0.zzo-98.wyt-1221.opi-29e.doc-61f)!", + result: { + word: "docierać", + correct: 18, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "24.08.2025", + }, + }, + { + date: "24.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWM20yYugDM00iYvRmLiJTLhJ3buM2M20ichhmLxczMx0icwNnLwgTLv12bukTN2ETLsFmeuAjL1EjLy4COy4iNzITL3gTJ0MUJhJXZpN2bkhSI", + value: + "!(docierać-236.28.2.15.0.zal-1659.omo-80.spr-1371.har-63c.ora-2b.dob-408.c-61f)!", + result: { + word: "docierać", + correct: 28, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "24.08.2025", + }, + }, + { + date: "24.08.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZxYTLj9GZuI2Nz0Saj9mL2EmYtUWat5CMukjLy4COx4iNzITL3gTJ0MUJhJXZpN2bkhSI", + value: "!(docierać-236.18.2.9.0.mie-ba6.oci-37b.doc-61f)!", + result: { + word: "docierać", + correct: 18, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "24.08.2025", + }, + }, + { + date: "24.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWM20yYugDM00iYvRmLiJTLhJ3buIjYy0SYydmLxEDZx0yc5dnL4kTLvpneuAjLzEjLw4yMy4iNzITL3gTJ0MUJhJXZpN2bkhSI", + value: + "!(docierać-236.23.0.13.0.zzo-98.wys-1d11.gra-2b2.ora-2b.dob-408.c-61f)!", + result: { + word: "docierać", + correct: 23, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "24.08.2025", + }, + }, + { + date: "24.08.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWM20yYvRmLkFWOtMGZv5CMjJTLll2YuE2MtMWe65iMzQTLhx2duAjLxEjLx4CMy4iNzITL3gTJ0MUJhJXZpN2bkhSI", + value: "!(docierać-236.20.1.11.0.wla-432.zyc-3a.cie-2c0.odc-9ad.doc-61f)!", + result: { + word: "docierać", + correct: 20, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "24.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/proste-ale-nie-to-mialem-na-mysli-27-06-2025-flag-pl-diffle-difflepl-grywebowe-2" +] = [ + { + date: "27.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiNGNuUmNz0ieydmLlFzY00ieyBnLw4COuEjLwIjL4cTMtsWaup3clpncnhSI", + value: "!(grzesznik-178.20.1.8.0.prz-4c1e.grz-36e.4cb)!", + result: { + word: "grzesznik", + correct: 20, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "27.06.2025", + }, + }, + { + date: "27.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiNGNtonLhhjMtUmcn5SZm5CZmVTLoN2MuQzMtkGbi5CZ50ib6NnLiVWOtM3br5CMuMTMucjLyIjL4cTMtsWaup3clpncnhSI", + value: + "!(grzesznik-178.22.7.13.0.kos-9eb.szn-9d.bli-34.3ch-5fd.fe.gre-28a.z-4cb)!", + result: { + word: "grzesznik", + correct: 22, + position: 7, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "27.06.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYjRTL6J3ZuIWM40SZ6NnL3UDNt8Gc15CMuQTMuEjL5EjL4cTMtsWaup3clpncnhSI", + value: "!(grzesznik-178.19.1.14.0.upo-457.sze-81b.grz-4cb)!", + result: { + word: "grzesznik", + correct: 19, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 34, + }, + }, + { + date: "27.06.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiNGNtoncn5SO10SZ6JnLhRmMy0yavBnLw4yNuIjL5EjL4cTMtsWaup3clpncnhSI", + value: "!(grzesznik-178.19.2.7.0.pok-22da.rze-59.grz-4cb)!", + result: { + word: "grzesznik", + correct: 19, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "27.06.2025", + }, + }, + { + date: "27.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpI2Y04SM2QTL6J3ZuQTY10ieyRXZp5mLw4SOuMjLwIjL4cTMtsWaup3clpncnhSI", + value: "!(grzesznik-178.20.3.9.0.nietrz-5a4.grz-461.4cb)!", + result: { + word: "grzesznik", + correct: 20, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 32, + date: "27.06.2025", + }, + }, + { + date: "27.06.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiNGNtoncn5iZ3QTLlpncukTM5ITL6JHcuUmM10ieyRnLmJmMtUHaj5SMuMTMuEjLyIjL4cTMtsWaup3clpncnhSI", + value: + "!(grzesznik-178.22.1.13.1.chu-2bf.trz-52e.prz-2919.rze-47f.grz-4cb)!", + result: { + word: "grzesznik", + correct: 22, + position: 1, + incorrect: 13, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 36, + date: "27.06.2025", + }, + }, + { + date: "27.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYjRTL6J3ZuQmM00icwNnLw4iNuIjLzEjL4cTMtsWaup3clpncnhSI", + value: "!(grzesznik-178.13.2.6.0.spr-42d.grz-4cb)!", + result: { + word: "grzesznik", + correct: 13, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "27.06.2025", + }, + }, + { + date: "27.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYjRTL6J3ZuQjY20SY3tmLw4COuQjLyEjL4cTMtsWaup3clpncnhSI", + value: "!(grzesznik-178.12.4.8.0.kwa-6b4.grz-4cb)!", + result: { + word: "grzesznik", + correct: 12, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 24, + date: "27.06.2025", + }, + }, + { + date: "27.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpI2Y00ieydmLhFzNz0ieyBnLw4iNuAjL0EjL4cTMtsWaup3clpncnhSI", + value: "!(grzesznik-178.14.0.6.0.prz-371a.grz-4cb)!", + result: { + word: "grzesznik", + correct: 14, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "27.06.2025", + }, + }, + { + date: "27.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYjRjLxYDNtoncn5SN2UTLlpncuMTO4EWMtoncw5CMuETMuAjL2IjL4cTMtsWaup3clpncnhSI", + value: "!(grzesznik-178.26.0.11.0.prz-1a893.rze-565.grz-461.4cb)!", + result: { + word: "grzesznik", + correct: 26, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "27.06.2025", + }, + }, + { + date: "27.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiNGNuEjN00ieuMmNh1SYydmLw4iMuEjLwIjL4cTMtsWaup3clpncnhSI", + value: "!(grzesznik-178.20.1.2.0.gra-a6c.z-461.4cb)!", + result: { + word: "grzesznik", + correct: 20, + position: 1, + incorrect: 2, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "27.06.2025", + }, + }, + { + date: "27.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpI2Y04SM2QTL6J3ZuQjZx0CZ5dnLw4SNuAjLxIjL4cTMtsWaup3clpncnhSI", + value: "!(grzesznik-178.21.0.5.0.wyd-1f4.grz-461.4cb)!", + result: { + word: "grzesznik", + correct: 21, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "27.06.2025", + }, + }, + { + date: "27.06.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYjRTL6J3ZuUWO00SaupnLw4iNuEjL0EjL4cTMtsWaup3clpncnhSI", + value: "!(grzesznik-178.14.1.6.0.zni-49e.grz-4cb)!", + result: { + word: "grzesznik", + correct: 14, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "27.06.2025", + }, + }, + { + date: "27.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYjRTL6J3ZuUjMy0ieyJmLzUTNtUmey5SYz0iblpnL5QjMtQ2bt5CMuATMuMjL0IjL4cTMtsWaup3clpncnhSI", + value: "!(grzesznik-178.24.3.10.0.mod-249.zen-3a.rze-553.brz-225.grz-4cb)!", + result: { + word: "grzesznik", + correct: 24, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "27.06.2025", + }, + }, + { + date: "27.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiNGNtoncn5SMxITLjl2dukTNx0iblJnLjZTLyVmbucjMtsWdl5SMuQTMuYjL1IjL4cTMtsWaup3clpncnhSI", + value: "!(grzesznik-178.25.6.14.1.euk-27.ner-6c.ren-159.wic-211.grz-4cb)!", + result: { + word: "grzesznik", + correct: 25, + position: 6, + incorrect: 14, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 45, + date: "27.06.2025", + }, + }, + { + date: "27.06.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYjRTL6J3ZugDN10SZpBnLw4SNuIjLzEjL4cTMtsWaup3clpncnhSI", + value: "!(grzesznik-178.13.2.5.0.pie-548.grz-4cb)!", + result: { + word: "grzesznik", + correct: 13, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "27.06.2025", + }, + }, + { + date: "27.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYjRTL6J3ZugTNy0iejVnLhFjM10ievBnLw4yNuIjL5EjL4cTMtsWaup3clpncnhSI", + value: "!(grzesznik-178.19.2.7.0.poz-521a.ucz-258.grz-4cb)!", + result: { + word: "grzesznik", + correct: 19, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "27.06.2025", + }, + }, + { + date: "27.06.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpI2Y00ieydmL5UTLlpncucTZh1ibhBnLw4yNuIjL4EjL4cTMtsWaup3clpncnhSI", + value: "!(grzesznik-178.18.2.7.0.pan-ae7.rze-59.grz-4cb)!", + result: { + word: "grzesznik", + correct: 18, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "27.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/proste-dosc-12-08-2025-flag-pl-diffle-difflepl-grywebowe-25-liter-w-3-slowach-la" +] = [ + { + date: "12.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQDZ50SbvtmLwYWMt8Gcv5CNkJTL0NXYuAjL34SMucTMuQjMy0yap5mcv12brhSI", + value: "!(komornik-224.17.1.7.0.ast-2d4.opo-1f0.kom-9d4)!", + result: { + word: "komornik", + correct: 17, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "12.08.2025", + }, + }, + { + date: "12.08.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNklTLt92auIGMzETLkFmbuAjL14iMuITMuQjMy0yap5mcv12brhSI", + value: "!(komornik-224.12.2.5.0.nad-130b.kom-9d4)!", + result: { + word: "komornik", + correct: 12, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "12.08.2025", + }, + }, + { + date: "12.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNklTLt5iYllTLz92auAjL04CMuMTMuQjMy0yap5mcv12brhSI", + value: "!(komornik-224.13.0.4.0.kos-9eb.m-9d4)!", + result: { + word: "komornik", + correct: 13, + position: 0, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "12.08.2025", + }, + }, + { + date: "12.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNklTLt5SMmhTLy92auQTY10ieyRXZp5mLw4CMx4iMucTMuQjMy0yap5mcv12brhSI", + value: "!(komornik-224.17.2.10.0.nietrz-5a4.kor-8f1.m-9d4)!", + result: { + word: "komornik", + correct: 17, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "12.08.2025", + }, + }, + { + date: "12.08.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNklTLt5yN2IWLy92auEGZyITLr9GcuAjL24CNuYTMuQjMy0yap5mcv12brhSI", + value: "!(komornik-224.16.4.6.0.pok-22da.kor-b67.m-9d4)!", + result: { + word: "komornik", + correct: 16, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "12.08.2025", + }, + }, + { + date: "12.08.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNklTLt92auEGN0ETLt9GcuYTYi1SZp1mLw4CMx4iMuYTMuQjMy0yap5mcv12brhSI", + value: "!(komornik-224.16.2.10.0.mie-ba6.pom-144a.kom-9d4)!", + result: { + word: "komornik", + correct: 16, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "12.08.2025", + }, + }, + { + date: "12.08.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQDZ50SbvtmLldzMtI3bu5CZyQTLyB3cuAjL54SMuYTMuQjMy0yap5mcv12brhSI", + value: "!(komornik-224.16.1.9.0.spr-42d.nor-37e.kom-9d4)!", + result: { + word: "komornik", + correct: 16, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "12.08.2025", + }, + }, + { + date: "12.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNklTLt5SMmhTLy92augTNwETLyR3cuYmYy0SdoNmLw4CMx4iMukTMuQjMy0yap5mcv12brhSI", + value: "!(komornik-224.19.2.10.0.chu-2bf.str-1058.kor-8f1.m-9d4)!", + result: { + word: "komornik", + correct: 19, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "12.08.2025", + }, + }, + { + date: "12.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQDZ50SbvtmLhNTOtI3az5yM5gTYx0ieyBnLw4SMx4SMuYTMuQjMy0yap5mcv12brhSI", + value: "!(komornik-224.16.1.11.0.prz-1a893.skr-93a.kom-9d4)!", + result: { + word: "komornik", + correct: 16, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "12.08.2025", + }, + }, + { + date: "12.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNklTLt5SMmhTLy5CO3YWLu92auEWMyUTL69GcuAjL24SMuIjMuQjMy0yap5mcv12brhSI", + value: "!(komornik-224.22.1.6.0.poz-521a.kon-f78.r-8f1.m-9d4)!", + result: { + word: "komornik", + correct: 22, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "12.08.2025", + }, + }, + { + date: "12.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQDZ50Sbv5CNiZTLhd3auAjL54SMuMTMuQjMy0yap5mcv12brhSI", + value: "!(komornik-224.13.1.9.0.kwa-6b4.om-9d4)!", + result: { + word: "komornik", + correct: 13, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "12.08.2025", + }, + }, + { + date: "12.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNklTLt92aucTZ2ETLr9GcuQWL3pHZuMGZtMWdt5SNkZWLyR3cuMmNh1SYydmLw4yMx4iMuIjMuQjMy0yap5mcv12brhSI", + value: + "!(komornik-224.22.2.13.0.gra-a6c.str-fd5.muc-dc.dzw-d.pok-16e7.kom-9d4)!", + result: { + word: "komornik", + correct: 22, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "12.08.2025", + }, + }, + { + date: "12.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNklTLt5SMmhTLy9mLhNDNtIXdr5CNmFTLkl3duAjL34CMuIjMuQjMy0yap5mcv12brhSI", + value: "!(komornik-224.22.0.7.0.wyd-1f4.kur-43a.or-8f1.m-9d4)!", + result: { + word: "komornik", + correct: 22, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "12.08.2025", + }, + }, + { + date: "12.08.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNklTLt5SMmhTLy92aucTYtQ2b35yNlFWLuFGcuAjL44iMuAjMuQjMy0yap5mcv12brhSI", + value: "!(komornik-224.20.2.8.0.pan-ae7.wod-a7.kor-8f1.m-9d4)!", + result: { + word: "komornik", + correct: 20, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "12.08.2025", + }, + }, + { + date: "12.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQDZ50SbvtmL3UmNx0yavBnL3ITLrVXZuAjL24yMuYTMuQjMy0yap5mcv12brhSI", + value: "!(komornik-224.16.3.6.0.euk-27.pok-16e7.kom-9d4)!", + result: { + word: "komornik", + correct: 16, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "12.08.2025", + }, + }, + { + date: "12.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQDZ50SbvtmLkN2Mtg2Yz4iMycTLy9WbuATL1VmZuAjL44CMuMTMuQjMy0yap5mcv12brhSI", + value: "!(komornik-224.13.0.8.0.feu-0.mor-722.3ch-3cd.kom-9d4)!", + result: { + word: "komornik", + correct: 13, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "12.08.2025", + }, + }, + { + date: "12.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNklTLt5SMmhTLy92auMTOx0CbvJnLhFzNz0ieyBnLw4CMx4SMuAjMuQjMy0yap5mcv12brhSI", + value: "!(komornik-224.20.1.10.0.prz-371a.rol-193.kor-8f1.m-9d4)!", + result: { + word: "komornik", + correct: 20, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "12.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/przypadek-ano-przypadek-16-08-2025-flag-pl-diffle-difflepl-grywebowe-23-litery-w" +] = [ + { + date: "16.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxADOx4yMhZWLyFGcuUDNy0CZuFmLw4SOuIjLyEjL4IjMtsWZzJXYwhSI", + value: "!(parsek-228.12.2.9.0.and-245.par-fa3.1801)!", + result: { + word: "parsek", + correct: 12, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "16.08.2025", + }, + }, + { + date: "16.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMwgTMtIXYw5iYllTLz92auAjL04iMukjL4IjMtsWZzJXYwhSI", + value: "!(parsek-228.9.2.4.0.kos-9eb.par-1801)!", + result: { + word: "parsek", + correct: 9, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "16.08.2025", + }, + }, + { + date: "16.08.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxADOx0icuMmYx0ychBnL2EmYtUWat5CMuATMuIjLzEjL4IjMtsWZzJXYwhSI", + value: "!(parsek-228.13.2.10.0.mie-ba6.pas-1bc.r-1801)!", + result: { + word: "parsek", + correct: 13, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "16.08.2025", + }, + }, + { + date: "16.08.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxADOx0ichBnLjBjNtIXY35iYwMTMtQWYu5CMuETMuIjLxEjL4IjMtsWZzJXYwhSI", + value: "!(parsek-228.11.2.11.0.nad-130b.war-60c.par-1801)!", + result: { + word: "parsek", + correct: 11, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "16.08.2025", + }, + }, + { + date: "16.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMwgTMuMGM4ETLy5CZkFWLsFGcuEWN20yclJnLjZTYtEmcn5CMuATMuMjL3EjL4IjMtsWZzJXYwhSI", + value: "!(parsek-228.17.3.10.0.gra-a6c.res-65a.pal-add.r-180c.1801)!", + result: { + word: "parsek", + correct: 17, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "16.08.2025", + }, + }, + { + date: "16.08.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMwgTMtIXYw5yYhRTLhBXduQmM00icwNnLw4SOuIjLzEjL4IjMtsWZzJXYwhSI", + value: "!(parsek-228.13.2.9.0.spr-42d.upa-4ac.par-1801)!", + result: { + word: "parsek", + correct: 13, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "16.08.2025", + }, + }, + { + date: "16.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDM4ETLy5CZkFTLzFGcuQTY10ieyRXZp5mLw4SOuQjLzEjL4IjMtsWZzJXYwhSI", + value: "!(parsek-228.13.4.9.0.nietrz-5a4.pas-1dd.r-1801)!", + result: { + word: "parsek", + correct: 13, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "16.08.2025", + }, + }, + { + date: "16.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxADOx0ich5iZxITLsVnLhFzNz0ieyBnLw4SOuMjLyEjL4IjMtsWZzJXYwhSI", + value: "!(parsek-228.12.3.9.0.prz-371a.ul-21f.ar-1801)!", + result: { + word: "parsek", + correct: 12, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "16.08.2025", + }, + }, + { + date: "16.08.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxADOx0icucTZh1ibhBnLw4iNuAjLwEjL4IjMtsWZzJXYwhSI", + value: "!(parsek-228.10.0.6.0.pan-ae7.r-1801)!", + result: { + word: "parsek", + correct: 10, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "16.08.2025", + }, + }, + { + date: "16.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxADOx0ichBnL0ETL1VmZuAjL34SMucjL4IjMtsWZzJXYwhSI", + value: "!(parsek-228.7.1.7.0.feu-14.par-1801)!", + result: { + word: "parsek", + correct: 7, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "16.08.2025", + }, + }, + { + date: "16.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMwgTMtIXYw5yMx0SYyFmL0ImNtE2dr5CMuMTMuMjLzEjL4IjMtsWZzJXYwhSI", + value: "!(parsek-228.13.3.13.0.kwa-6b4.ara-13.par-1801)!", + result: { + word: "parsek", + correct: 13, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "16.08.2025", + }, + }, + { + date: "16.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxADOx0ichBnLzQGNtIXYi5yNy0ya1VmLw4yNuIjLyEjL4IjMtsWZzJXYwhSI", + value: "!(parsek-228.12.2.7.0.euk-27.bar-4d3.par-1801)!", + result: { + word: "parsek", + correct: 12, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "16.08.2025", + }, + }, + { + date: "16.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDM4EjL2czMx0ichBnLhN2NtIXYt5iYl1iYhtmL0YWMtQWe35SMuMTMuIjLwIjL4IjMtsWZzJXYwhSI", + value: "!(parsek-228.20.2.13.1.wyd-1f4.kab-eb.mar-7ca.par-1376.1801)!", + result: { + word: "parsek", + correct: 20, + position: 2, + incorrect: 13, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 35, + date: "16.08.2025", + }, + }, + { + date: "16.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDM4ETLy5yYiFTLzFmLhFjM10ievBnLw4SNuIjL0EjL4IjMtsWZzJXYwhSI", + value: "!(parsek-228.14.2.5.0.poz-521a.as-1bc.r-1801)!", + result: { + word: "parsek", + correct: 14, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "16.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/raczej-nietrudne-20-07-2025-diffle-difflepl-grywebowe-22-litery-w-3-slowach-larg" +] = [ + { + date: "20.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmN40SY35yMiJTLwFmLkVWOtM3br5CMucjLx4CNx4SMwITLhJXZ0F2drhSI", + value: "!(kwatera-201.14.1.7.0.kos-9ed.ap-2b3.wa-86a)!", + result: { + word: "kwatera", + correct: 14, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "20.07.2025", + }, + }, + { + date: "20.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY2gjLmVTNtE2dr5CZyQTLyB3cuAjLwEjLz4SNx4SMwITLhJXZ0F2drhSI", + value: "!(kwatera-201.15.3.10.0.spr-42d.kwa-55f.86a)!", + result: { + word: "kwatera", + correct: 15, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "20.07.2025", + }, + }, + { + date: "20.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY2gTLhd3auETYtc3az5yN4QmMtAXe35iZiJTL1h2YuAjLzEjLx4yNx4SMwITLhJXZ0F2drhSI", + value: "!(kwatera-201.17.1.13.0.chu-2bf.wyp-2d87.skw-a1.kwa-86a)!", + result: { + word: "kwatera", + correct: 17, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "20.07.2025", + }, + }, + { + date: "20.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZDOtE2duITZ20CdhtmLiVWMtQXYw5SMtg2bi5iZiVTLlR3cugTN10CajNjLjZTYtEmcn5CMugjLx4iMz4SMwITLhJXZ0F2drhSI", + value: + "!(kwatera-201.32.1.8.0.gra-a6c.3ch-558.ste-5bf.boh-1.pat-1eb.kat-6e2.wa-86a)!", + result: { + word: "kwatera", + correct: 32, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "20.07.2025", + }, + }, + { + date: "20.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZDOtE2duITZ20CdhtmLiVWMtQXYw5SOiFWL0VWbuAjLwEjLy4SMy4SMwITLhJXZ0F2drhSI", + value: "!(kwatera-201.21.2.10.0.met-ab9.pat-1eb.kat-6e2.wa-86a)!", + result: { + word: "kwatera", + correct: 21, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "20.07.2025", + }, + }, + { + date: "20.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZDOtE2duYzNtcXYr5CNhVTL6JHdllmbuAjLxEjL04iNx4SMwITLhJXZ0F2drhSI", + value: "!(kwatera-201.16.4.11.0.nietrz-5a4.kaw-76.wa-86a)!", + result: { + word: "kwatera", + correct: 16, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "20.07.2025", + }, + }, + { + date: "20.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY2gjL0ImNtE2dr5CMukjLx4iMx4SMwITLhJXZ0F2drhSI", + value: "!(kwatera-201.12.1.9.0.kwa-6b4.86a)!", + result: { + word: "kwatera", + correct: 12, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "20.07.2025", + }, + }, + { + date: "20.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZDOtE2dr5CO50ydrNnL0YWMtQWe35CMuYjLx4CNx4SMwITLhJXZ0F2drhSI", + value: "!(kwatera-201.14.1.6.0.wyd-1f4.skw-98.kwa-86a)!", + result: { + word: "kwatera", + correct: 14, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "20.07.2025", + }, + }, + { + date: "20.07.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZDOtE2duIWNtcXdr5iNhJWLllWbuAjLwEjLz4CNx4SMwITLhJXZ0F2drhSI", + value: "!(kwatera-201.14.3.10.0.mie-ba6.kuw-5b.wa-86a)!", + result: { + word: "kwatera", + correct: 14, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "20.07.2025", + }, + }, + { + date: "20.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY2gTLhd3auUTLrFWbucjMtsWdl5CMugjLy4CNx4SMwITLhJXZ0F2drhSI", + value: "!(kwatera-201.14.2.8.0.euk-27.mak-5.kwa-86a)!", + result: { + word: "kwatera", + correct: 14, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "20.07.2025", + }, + }, + { + date: "20.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmN40SY35CZjhTL0F2auATLyRXYuQzY40ichRnLhdTLiFmZuAjLwEjL14iMy4SMwITLhJXZ0F2drhSI", + value: "!(kwatera-201.22.5.10.0.fab-7a.tar-8c4.atr-0.kat-8cd.wa-86a)!", + result: { + word: "kwatera", + correct: 22, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "20.07.2025", + }, + }, + { + date: "20.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmN40SY35iNlFTLhx2auEWMyUTL69GcuAjLwEjLw4SNx4SMwITLhJXZ0F2drhSI", + value: "!(kwatera-201.15.0.10.0.poz-521a.kla-1e6.wa-86a)!", + result: { + word: "kwatera", + correct: 15, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "20.07.2025", + }, + }, + { + date: "20.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmN40SY3tmLyImMtoWYi5CM20ybkdnLhlTOtUGdz5SN00SYlRnLzkDOhFTL6JHcuEjL5EjLz4CMy4SMwITLhJXZ0F2drhSI", + value: + "!(kwatera-201.20.3.19.1.prz-1a893.tea-45.ste-99a.wdo-60.baj-2b2.kwa-86a)!", + result: { + word: "kwatera", + correct: 20, + position: 3, + incorrect: 19, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 42, + date: "20.07.2025", + }, + }, + { + date: "20.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZDOtE2dr5SMtcXY05SYxczMtoncw5CMuYjL24yMx4SMwITLhJXZ0F2drhSI", + value: "!(kwatera-201.13.6.6.0.prz-371a.taw-1.kwa-86a)!", + result: { + word: "kwatera", + correct: 13, + position: 6, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "20.07.2025", + }, + }, + { + date: "20.07.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmN40SY3tmLiJzYtUWa35CMucjLy4CMx4SMwITLhJXZ0F2drhSI", + value: "!(kwatera-201.10.2.7.0.wie-c2b.kwa-86a)!", + result: { + word: "kwatera", + correct: 10, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "20.07.2025", + }, + }, + { + date: "20.07.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY2gTLhdnLlNTYtEmcuQmZz0ychtmL3UWYt4WYw5CMukjLx4SOx4SMwITLhJXZ0F2drhSI", + value: "!(kwatera-201.19.1.9.0.pan-ae7.kas-3fd.ra-a3e.wa-86a)!", + result: { + word: "kwatera", + correct: 19, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "20.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/rozpraszaja-10-09-25-flag-pl-diffle-difflepl-grywebowe-34-litery-w-6-slowach-lar" +] = [ + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYk1yav1mLxUjMt8mcr5iM4EWLvh2YucjY00CajNjLmBDNtUnez5CZj1CdvBnLw4yNx4SMuYTMuMTNy0ybyt2bthSI", + value: + "!(mokro-253.16.1.17.0.pot-cd.szu-40f.3ch-4b7.cho-a82.kro-251.mok-db)!", + result: { + word: "mokro", + correct: 16, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + }, + }, + { + date: "10.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYk1yav1mLiVWOtM3br5CMuUjLy4yNuMTNy0ybyt2bthSI", + value: "!(mokro-253.7.2.5.0.kos-9eb.mok-db)!", + result: { + word: "mokro", + correct: 7, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "10.09.2025", + }, + }, + { + date: "10.09.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIGZts2bt5SM1ITLvJ3auQTY10ieyRXZp5mLw4yMx4SMuATMuMTNy0ybyt2bthSI", + value: "!(mokro-253.10.1.13.0.nietrz-5a4.kro-251.mok-db)!", + result: { + word: "mokro", + correct: 10, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "10.09.2025", + }, + }, + { + date: "10.09.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIGZts2bt5SYkJjMts2bw5CMucjLw4SOuMTNy0ybyt2bthSI", + value: "!(mokro-253.9.0.7.0.pok-22da.mok-db)!", + result: { + word: "mokro", + correct: 9, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "10.09.2025", + }, + }, + { + date: "10.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIGZts2buMmZt8mct5SZi1yY1JnLhFzNz0ieyBnLw4CNx4iMuETMuMTNy0ybyt2bthSI", + value: "!(mokro-253.11.2.14.0.prz-371a.ruc-be.mro-fc.ok-db)!", + result: { + word: "mokro", + correct: 11, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "10.09.2025", + }, + }, + { + date: "10.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIGZts2bt5SM1ITLvJ3auMDMlFTLvJHcuYmYy0SdoNmLw4SNx4SMuETMuMTNy0ybyt2bthSI", + value: "!(mokro-253.11.1.15.0.chu-2bf.pro-1e03.kro-251.mok-db)!", + result: { + word: "mokro", + correct: 11, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "10.09.2025", + }, + }, + { + date: "10.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiRWLr9WbuQDMm1CbvtmL0IjNy0icvBnLxQTYx0yck9mLw4SNx4yMuETMuMTNy0ybyt2bthSI", + value: "!(mokro-253.11.3.15.0.ods-1a41.por-2624.kol-f04.mok-db)!", + result: { + word: "mokro", + correct: 11, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "10.09.2025", + }, + }, + { + date: "10.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYk1yav1mLygTYt8Gaj5CNzMTLvJXduQmM00icwNnLw4yNx4SMuITMuMTNy0ybyt2bthSI", + value: "!(mokro-253.12.1.17.0.spr-42d.uro-334.cho-a82.mok-db)!", + result: { + word: "mokro", + correct: 12, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "10.09.2025", + }, + }, + { + date: "10.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiRWLr9WbuIzM50SbvtmLzkDOhFTL6JHcuAjL0EjLy4SOuMTNy0ybyt2bthSI", + value: "!(mokro-253.9.2.14.0.prz-1a893.kom-932.mok-db)!", + result: { + word: "mokro", + correct: 9, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "10.09.2025", + }, + }, + { + date: "10.09.2025", + nick: "Szuuz_Ekleer", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIGZts2bt5iNjVWMts2bw5SZkZWNto3by5iZ00Cd1tmLw4SMx4CMuYTMuMTNy0ybyt2bthSI", + value: "!(mokro-253.16.0.11.0.kut-4f.roz-5fde.pok-1ec6.mok-db)!", + result: { + word: "mokro", + correct: 16, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "10.09.2025", + }, + }, + { + date: "10.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYk1yauITMy0CduIWY20icukDNy0CZv1mLw4SMx4SMuQTMuMTNy0ybyt2bthSI", + value: "!(mokro-253.14.1.11.0.mod-249.r-6ab.t-212.k-db)!", + result: { + word: "mokro", + correct: 14, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "10.09.2025", + }, + }, + { + date: "10.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYk1yav5yYm1yby1mLiljZtIHdz5yY2EWLhJ3ZuAjL44iMuETMuMTNy0ybyt2bthSI", + value: "!(mokro-253.11.2.8.0.gra-a6c.str-f9b.mro-fc.ok-db)!", + result: { + word: "mokro", + correct: 11, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "10.09.2025", + }, + }, + { + date: "10.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiRWLr9WbuYjZx0CZ1BnLkBjNtI3buYTYi1SZp1mLw4SNx4CMuMTMuMTNy0ybyt2bthSI", + value: "!(mokro-253.13.0.15.0.mie-ba6.or-60d.pud-1f6.mok-db)!", + result: { + word: "mokro", + correct: 13, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "10.09.2025", + }, + }, + { + date: "10.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiRWLr9mLjZWLvJXbugjYt8mcz5CNmFTLkl3duAjL54iMuETMuMTNy0ybyt2bthSI", + value: "!(mokro-253.11.2.9.0.wyd-1f4.sro-b8.mro-fc.ok-db)!", + result: { + word: "mokro", + correct: 11, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "10.09.2025", + }, + }, + { + date: "10.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIGZts2bt5CNiZTLhd3auAjLxEjLy4yNuMTNy0ybyt2bthSI", + value: "!(mokro-253.7.2.11.0.kwa-6b4.mok-db)!", + result: { + word: "mokro", + correct: 7, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "10.09.2025", + }, + }, + { + date: "10.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIGZts2bt5COzIWLyJ2buEWMyUTL69GcuAjL54SMuATMuMTNy0ybyt2bthSI", + value: "!(mokro-253.10.1.9.0.poz-521a.obr-b38.mok-db)!", + result: { + word: "mokro", + correct: 10, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "10.09.2025", + }, + }, + { + date: "10.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIGZts2bt5SZiZTLyt2buQTZ50icrNnLxUjMt8mcr5yNy0ya1VmLy4CNx4CMugTMuMTNy0ybyt2bthSI", + value: "!(mokro-253.18.0.14.2.euk-27.kro-251.skr-9e4.okr-6be.mok-db)!", + result: { + word: "mokro", + correct: 18, + position: 0, + incorrect: 14, + knownIncorrect: 2, + totalWords: 5, + totalLetters: 32, + date: "10.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/rozwiazanie-jak-sledz-skryte-w-lawicy-sledzi-06-06-2025-flag-pl-diffle-difflepl-" +] = [ + { + date: "06.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzYx0SY0NnLw0yYhRnLhJWL0FWbuYzYtQWdj5CZzEWYtoncw5CMugTMuEjL3EjL3UTMtEmajFGdzhSI", + value: "!(stacja-157.17.1.18.0.prz-aa3d.cud-c6.mat-ba.tac-0.sta-1c1)!", + result: { + word: "stacja", + correct: 17, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "06.06.2025", + }, + }, + { + date: "06.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxMWMugTNx0SY0NnL0EWNtonc0VWau5CMuITMuEjL0EjL3UTMtEmajFGdzhSI", + value: "!(stacja-157.14.1.12.0.nietrz-5a4.sta-158.1c1)!", + result: { + word: "stacja", + correct: 14, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "06.06.2025", + }, + }, + { + date: "06.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxMWMtEGdz5CO20CbhdnL2UTLiV3ZuMmZz0Se0NnLiVWOtM3br5CMuUTMuAjLzEjL3UTMtEmajFGdzhSI", + value: "!(stacja-157.13.0.15.0.kos-9eb.sty-3fc.gub-56.wal-68.sta-1c1)!", + result: { + word: "stacja", + correct: 13, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "06.06.2025", + }, + }, + { + date: "06.06.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzYx4CO1EjLmFmMtEGdz5CMtIWd05CMtQXZt5SYkJjMts2bw5CMuYTMuAjLwIjL3UTMtEmajFGdzhSI", + value: "!(stacja-157.20.0.16.0.pok-22da.met-0.tub-0.sta-2af.158.1c1)!", + result: { + word: "stacja", + correct: 20, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "06.06.2025", + }, + }, + { + date: "06.06.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxMWMtEGdz5SZjFTLjFmcuYmYy0SdoNmLw4COuAjLzEjL3UTMtEmajFGdzhSI", + value: "!(stacja-157.13.0.8.0.chu-2bf.rac-1ce.sta-1c1)!", + result: { + word: "stacja", + correct: 13, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "06.06.2025", + }, + }, + { + date: "06.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMjFTLhRnLw0Sbh5CZhFTLhtmLkJDNtIHcz5CMuITMuAjL1EjL3UTMtEmajFGdzhSI", + value: "!(stacja-157.15.0.12.0.spr-42d.ka-1ad.am-0.ta-1c1)!", + result: { + word: "stacja", + correct: 15, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "06.06.2025", + }, + }, + { + date: "06.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxMWMtEGdz5iN5ETLjFGduMTO4EWMtoncw5CMuMTMuAjLyEjL3UTMtEmajFGdzhSI", + value: "!(stacja-157.12.0.13.0.prz-1a893.tac-196.sta-1c1)!", + result: { + word: "stacja", + correct: 12, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "06.06.2025", + }, + }, + { + date: "06.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzYx4iZhJTLhR3cuEGNtMXdw5SY1UTLz92auE2Y30ych1mLjZTYtEmcn5CMuMTMuEjL5EjL3UTMtEmajFGdzhSI", + value: + "!(stacja-157.19.1.13.0.gra-a6c.mas-7ca.kos-55a.pus-4a.sta-2af.1c1)!", + result: { + word: "stacja", + correct: 19, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "06.06.2025", + }, + }, + { + date: "06.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMjFTLhR3cuATLqFmZuE2Nz0SYsBnL0YWMtQWe35CMuMTMuAjLyEjL3UTMtEmajFGdzhSI", + value: "!(stacja-157.12.0.13.0.wyd-1f4.pla-37a.faj-0.sta-1c1)!", + result: { + word: "stacja", + correct: 12, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "06.06.2025", + }, + }, + { + date: "06.06.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxMWMuImMk1SY0NnL2EmYtUWat5CMuITMuEjLzEjL3UTMtEmajFGdzhSI", + value: "!(stacja-157.13.1.12.0.mie-ba6.sta-d2b.1c1)!", + result: { + word: "stacja", + correct: 13, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "06.06.2025", + }, + }, + { + date: "06.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzYx4yN5MTLhR3cuIDNtQ3c15SYxczMtoncw5CMuITMuAjLwIjL3UTMtEmajFGdzhSI", + value: "!(stacja-157.20.0.12.0.prz-371a.ust-42.sta-397.1c1)!", + result: { + word: "stacja", + correct: 20, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "06.06.2025", + }, + }, + { + date: "06.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzYx4iMmNTLhRnLiNTLh1mLz0SY35CMtwWYukTYtQXdz5SYxITNto3bw5CMuUTMuAjL1IjL3UTMtEmajFGdzhSI", + value: + "!(stacja-157.25.0.15.0.poz-521a.sut-a9.al-0.wa-3.ma-3b.ta-3f2.1c1)!", + result: { + word: "stacja", + correct: 25, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "06.06.2025", + }, + }, + { + date: "06.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSMjFTLhR3cukDNy0CZv1mLw4COuAjLwEjL3UTMtEmajFGdzhSI", + value: "!(stacja-157.10.0.8.0.mod-249.sta-1c1)!", + result: { + word: "stacja", + correct: 10, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "06.06.2025", + }, + }, + { + date: "06.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzYx0SY05SOxITL0p3cucjMtsWdl5CMuATMuEjLxEjL3UTMtEmajFGdzhSI", + value: "!(stacja-157.11.1.10.0.euk-27.szt-219.ta-1c1)!", + result: { + word: "stacja", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "06.06.2025", + }, + }, + { + date: "06.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzYx0SY05CNl1SYw5iMtMWdz5yMzE2MtMXe35CMuMTMuAjL3EjL3UTMtEmajFGdzhSI", + value: "!(stacja-157.17.0.13.0.wys-3a33.suc-2.pa-e4.ta-1c1)!", + result: { + word: "stacja", + correct: 17, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "06.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/szybko-poszlo-smile-13-08-2025-diffle-difflepl-grywebowe-13-liter-w-2-slowach-la" +] = [ + { + date: "13.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0ieuIWZ50ycvtmLw4SNuAjL44SNyITLhp3brhSI", + value: "!(koza-225.8.0.5.0.kos-9eb.z-0)!", + result: { + word: "koza", + correct: 8, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "13.08.2025", + }, + }, + { + date: "13.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0ievtmL0MGMx0yYk9mLzUTYt8mcw5CMuUTMuAjL44SNyITLhp3brhSI", + value: "!(koza-225.8.0.15.0.pro-a53.odc-10c4.koz-0)!", + result: { + word: "koza", + correct: 8, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "13.08.2025", + }, + }, + { + date: "13.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0ievtmL1ETMtM2bi5SYxczMtoncw5CMuITMuAjL54SNyITLhp3brhSI", + value: "!(koza-225.9.0.12.0.prz-371a.boc-115.koz-0)!", + result: { + word: "koza", + correct: 9, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "13.08.2025", + }, + }, + { + date: "13.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0ievtmL0EWNtonc0VWau5CMuETMuEjL34SNyITLhp3brhSI", + value: "!(koza-225.7.1.11.0.nietrz-5a4.koz-0)!", + result: { + word: "koza", + correct: 7, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "13.08.2025", + }, + }, + { + date: "13.08.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATL692auQmM00icwNnLw4SOuAjL34SNyITLhp3brhSI", + value: "!(koza-225.7.0.9.0.spr-42d.koz-0)!", + result: { + word: "koza", + correct: 7, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "13.08.2025", + }, + }, + { + date: "13.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0ievtmLw0ievBnLmJmMtUHaj5CMugjLw4CMx4SNyITLhp3brhSI", + value: "!(koza-225.10.0.8.0.chu-2bf.poz-0.koz-0)!", + result: { + word: "koza", + correct: 10, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "13.08.2025", + }, + }, + { + date: "13.08.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0ievtmL0EWNtonc0VWau5CMuETMuEjL34SNyITLhp3brhSI", + value: "!(koza-225.7.1.11.0.nietrz-5a4.koz-0)!", + result: { + word: "koza", + correct: 7, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "13.08.2025", + }, + }, + { + date: "13.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0ievtmLhRTMtUHbi5iN00CchpnLhN2NtMXYt5yY2EWLhJ3ZuAjL1EjLx4CMx4SNyITLhp3brhSI", + value: "!(koza-225.10.1.15.0.gra-a6c.mas-7ca.zap-46.blu-14a.koz-0)!", + result: { + word: "koza", + correct: 10, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "13.08.2025", + }, + }, + { + date: "13.08.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0ieuUTMz0iYvtmLmVDNtsmez5yNlFWLuFGcuAjLwEjLz4iMx4SNyITLhp3brhSI", + value: "!(koza-225.12.3.10.0.pan-ae7.szk-45f.kob-315.z-0)!", + result: { + word: "koza", + correct: 12, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "13.08.2025", + }, + }, + { + date: "13.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATL69mL0ImNtE2dr5CMuETMuEjL34SNyITLhp3brhSI", + value: "!(koza-225.7.1.11.0.kwa-6b4.oz-0)!", + result: { + word: "koza", + correct: 7, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "13.08.2025", + }, + }, + { + date: "13.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0ievtmLhRTLzFmeuMTO4EWMtoncw5CMuUTMuEjL44SNyITLhp3brhSI", + value: "!(koza-225.8.1.15.0.prz-1a893.zas-4a.koz-0)!", + result: { + word: "koza", + correct: 8, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "13.08.2025", + }, + }, + { + date: "13.08.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw4iY40ievtmL4QTNtUWaw5CMukjLx4CMx4SNyITLhp3brhSI", + value: "!(koza-225.10.1.9.0.pie-548.koz-8b.0)!", + result: { + word: "koza", + correct: 10, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "13.08.2025", + }, + }, + { + date: "13.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMto3br5SZxMTLhp3YuY2M40SY6NnL0YWMtQWe35CMuITMuIjL54SNyITLhp3brhSI", + value: "!(koza-225.9.2.12.0.wyd-1f4.sza-83f.cza-31e.koz-0)!", + result: { + word: "koza", + correct: 9, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "13.08.2025", + }, + }, + { + date: "13.08.2025", + nick: "djsclub", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATL69mL2M2Yx0ichtmLw4SNuEjL24SNyITLhp3brhSI", + value: "!(koza-225.6.1.5.0.kar-1cc6.oz-0)!", + result: { + word: "koza", + correct: 6, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 12, + date: "13.08.2025", + }, + }, + { + date: "13.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATL65SNxMTLi5CMt0mLzUTLj92augTNh1yavBnL3ITLrVXZuAjL1EjLy4COx4SNyITLhp3brhSI", + value: "!(koza-225.18.2.15.0.euk-27.pok-a58.koc-53.m-0.b-315.z-0)!", + result: { + word: "koza", + correct: 18, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "13.08.2025", + }, + }, + { + date: "13.08.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0ievtmL2EmYtUWat5CMuATMuIjL24SNyITLhp3brhSI", + value: "!(koza-225.6.2.10.0.mie-ba6.koz-0)!", + result: { + word: "koza", + correct: 6, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "13.08.2025", + }, + }, + { + date: "13.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATL692aukDNy0CZv1mLw4SOuAjL34SNyITLhp3brhSI", + value: "!(koza-225.7.0.9.0.mod-249.koz-0)!", + result: { + word: "koza", + correct: 7, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "13.08.2025", + }, + }, + { + date: "13.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0ievtmLhFjM10ievBnLw4iNuEjL34SNyITLhp3brhSI", + value: "!(koza-225.7.1.6.0.poz-521a.koz-0)!", + result: { + word: "koza", + correct: 7, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "13.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/tak-jakos-wyszlo-13-06-2025-flag-pl-diffle-difflepl-grywebowe-20-liter-w-2-slowa" +] = [ + { + date: "13.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjMz0SYyZmLldzMtMnYh5CMugjLx4SMx4CN2ETL6V3YuFmcmhSI", + value: "!(francuz-164.11.1.8.0.abs-37e.fra-322)!", + result: { + word: "francuz", + correct: 11, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "13.06.2025", + }, + }, + { + date: "13.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMyMTLhJnZuQzMx0Sd6NmL40SdsBnL5kDNtg2Yz4iYllTLz92auAjLwEjL04SNx4CN2ETL6V3YuFmcmhSI", + value: "!(francuz-164.15.4.10.0.kos-9eb.3ch-499.plu-8.czu-134.fra-322)!", + result: { + word: "francuz", + correct: 15, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "13.06.2025", + }, + }, + { + date: "13.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMyMTLhJnZuYTMtEmcv5yNkNTLhJneuEWM3MTL6JHcuAjLxEjLx4iNx4CN2ETL6V3YuFmcmhSI", + value: "!(francuz-164.16.1.11.0.prz-371a.zra-3d7.ora-16.fra-322)!", + result: { + word: "francuz", + correct: 16, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "13.06.2025", + }, + }, + { + date: "13.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjMz0SYyZmLzUjNtEmc05CZyQTLyB3cuAjLzEjLy4yMx4CN2ETL6V3YuFmcmhSI", + value: "!(francuz-164.13.2.13.0.spr-42d.tra-653.fra-322)!", + result: { + word: "francuz", + correct: 13, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "13.06.2025", + }, + }, + { + date: "13.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyIzMtEmcm5iYiJTLjFmcuIDZ20SYydmLiN2MtEmc15CNhVTL6JHdllmbuAjL1EjLz4COx4CN2ETL6V3YuFmcmhSI", + value: + "!(francuz-164.18.3.15.0.nietrz-5a4.ura-3cb.gra-6d2.rac-2bb.fra-322)!", + result: { + word: "francuz", + correct: 18, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "13.06.2025", + }, + }, + { + date: "13.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjMz0SYyZmLkRTLuFmcucDNy0iavdnLzkDOhFTL6JHcuAjL0EjL04SNx4CN2ETL6V3YuFmcmhSI", + value: "!(francuz-164.15.4.14.0.prz-1a893.woj-247.ran-4d.fra-322)!", + result: { + word: "francuz", + correct: 15, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "13.06.2025", + }, + }, + { + date: "13.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyIzMtEmcm5SM0ITLsp3cuITYk1SYoNmL2IzMtEmc15SZtIXY35yNwgTLhJHcuUzM10SYytmLlFmMt4WYy5yY2EWLhJ3ZuAjL2EjLy4COy4CN2ETL6V3YuFmcmhSI", + value: + "!(francuz-164.28.2.16.0.gra-a6c.ran-2ae.kra-535.pra-807.war-e.ura-326.cha-da2.szl-241.fra-322)!", + result: { + word: "francuz", + correct: 28, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 46, + date: "13.06.2025", + }, + }, + { + date: "13.06.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyIzMuIWYy4SMhFTLhJnZuADM00SYydmLw0yYhJnLiZ2NtMXYw5iZiJTL1h2YuAjL2EjLz4SNy4CN2ETL6V3YuFmcmhSI", + value: + "!(francuz-164.25.3.16.0.chu-2bf.pas-7fb.rac-0.gra-400.fra-1a1.2ab.322)!", + result: { + word: "francuz", + correct: 25, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 44, + date: "13.06.2025", + }, + }, + { + date: "13.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMyMTLhJnZuQjMt4WYy5yNyYWMtMXYu5CN10yb6FmL0YWMtQWe35CMugjLz4COx4CN2ETL6V3YuFmcmhSI", + value: "!(francuz-164.18.3.8.0.wyd-1f4.azo-54.nas-1f27.ran-24.fra-322)!", + result: { + word: "francuz", + correct: 18, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "13.06.2025", + }, + }, + { + date: "13.06.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMyMTLhJnZuIWNz0ich5mL3MzMtoXY65iNhJWLllWbuAjL0EjLz4yNx4CN2ETL6V3YuFmcmhSI", + value: "!(francuz-164.17.3.14.0.mie-ba6.zaz-337.nar-35b.fra-322)!", + result: { + word: "francuz", + correct: 17, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "13.06.2025", + }, + }, + { + date: "13.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyIzMtEmcm5SO5ETLuFmcuYjNy0SYyVnL3ITLrVXZuMjLwEjLz4yNx4CN2ETL6V3YuFmcmhSI", + value: "!(francuz-164.17.3.10.3.euk-27.ura-266.ran-199.fra-322)!", + result: { + word: "francuz", + correct: 17, + position: 3, + incorrect: 10, + knownIncorrect: 3, + totalWords: 4, + totalLetters: 30, + date: "13.06.2025", + }, + }, + { + date: "13.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMyMTLhJnZuUGO10ichdmLkJTLi9mcuAjLxEjLx4SNx4CN2ETL6V3YuFmcmhSI", + value: "!(francuz-164.15.1.11.0.rob-2d.gar-58e.fra-322)!", + result: { + word: "francuz", + correct: 15, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "13.06.2025", + }, + }, + { + date: "13.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyIzMtEmcm5CNy0ibhJnL5QjMtQ2bt5CMucjLy4SNx4CN2ETL6V3YuFmcmhSI", + value: "!(francuz-164.15.2.7.0.mod-249.ran-24.fra-322)!", + result: { + word: "francuz", + correct: 15, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "13.06.2025", + }, + }, + { + date: "13.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyIzMtEmcm5SNhFTLhdHduUGO10ichdmL3EWLuFGbuEWMyUTL69GcuAjLzEjLz4SOx4CN2ETL6V3YuFmcmhSI", + value: "!(francuz-164.19.3.13.0.poz-521a.lan-a7.gar-58e.twa-1a5.fra-322)!", + result: { + word: "francuz", + correct: 19, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "13.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/tak-lubie-go-uzywac-i-tak-nie-chcialo-przyjsc-na-mysl-czuje-sie-zdradzony-28-09-" +] = [ + { + date: "28.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYy0iZ1VmL4EWL6VXbuATLlZWZuQTLqV2ZuIzM10yalRmLlBTZj1ieyBnLw4yNx4yMuAjMuEzNy0Sb6lWblZWdlhSI", + value: + "!(eufemizm-271.20.3.17.0.prz-ce0e.dek-532.gej-4.efe-0.muz-a8.euf-2c)!", + result: { + word: "eufemizm", + correct: 20, + position: 3, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "28.09.2025", + }, + }, + { + date: "28.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYy0iZ1VmL3YWL1JHZuYTYi1SZp1mLw4yMx4SMuMTMuEzNy0Sb6lWblZWdlhSI", + value: "!(eufemizm-271.13.1.13.0.mie-ba6.dru-f7.euf-2c)!", + result: { + word: "eufemizm", + correct: 13, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "28.09.2025", + }, + }, + { + date: "28.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYy0iZ1VmLkJTLjVGcucTNx0iYlRmLzUTLpVGduQWZ50ycvtmLw4SNx4SMukTMuEzNy0Sb6lWblZWdlhSI", + value: "!(eufemizm-271.19.1.15.0.kos-9ed.tei-53.deb-157.pec-2d.euf-2c)!", + result: { + word: "eufemizm", + correct: 19, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "28.09.2025", + }, + }, + { + date: "28.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJTLmVXZuATOx0CajNjLwQTLlp3YuIjZtkWZk5iNkFTLwVGbuMmNh1SYydmLw4CNx4SMuAjMuEzNy0Sb6lWblZWdlhSI", + value: + "!(eufemizm-271.20.1.14.0.gra-a6c.lep-1d6.dei-f2.cze-40.3ch-190.euf-2c)!", + result: { + word: "eufemizm", + correct: 20, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "28.09.2025", + }, + }, + { + date: "28.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJTLmVXZuQWO10SatVnLmFWLllWbuQmM00icwNnLw4iMx4yMuYTMuEzNy0Sb6lWblZWdlhSI", + value: "!(eufemizm-271.16.3.12.0.spr-42d.mie-af.umi-59d.euf-2c)!", + result: { + word: "eufemizm", + correct: 16, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "28.09.2025", + }, + }, + { + date: "28.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmMtYWdl5CMj1SZp1mLhFzNz0ieyBnLw4iMx4iMuMTMuEzNy0Sb6lWblZWdlhSI", + value: "!(eufemizm-271.13.2.12.0.prz-371a.mie-c0.euf-2c)!", + result: { + word: "eufemizm", + correct: 13, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "28.09.2025", + }, + }, + { + date: "28.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmMtYWdl5CZlJTLoN2MucTNy0Cc1RmL0ATMtIWdr5SZ0ITL1JHduYmYy0SdoNmLw4iNx4CMuEjMuEzNy0Sb6lWblZWdlhSI", + value: + "!(eufemizm-271.21.0.16.0.chu-2bf.tru-24e.kub-104.dup-257.3ch-2ed.euf-2c)!", + result: { + word: "eufemizm", + correct: 21, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "28.09.2025", + }, + }, + { + date: "28.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYy0iZ1VmLwYWMt0WZ05SO0ITLk9WbuAjL54iMuMTMuEzNy0Sb6lWblZWdlhSI", + value: "!(eufemizm-271.13.2.9.0.mod-249.tem-1f0.euf-2c)!", + result: { + word: "eufemizm", + correct: 13, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "28.09.2025", + }, + }, + { + date: "28.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJTLmVXZuQjY20SY3tmLw4CMx4iMuETMuEzNy0Sb6lWblZWdlhSI", + value: "!(eufemizm-271.11.2.10.0.kwa-6b4.euf-2c)!", + result: { + word: "eufemizm", + correct: 11, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "28.09.2025", + }, + }, + { + date: "28.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJTLmVXZuMDZto2bi5CZ20yc11mLmRmMtk2d15yM5gTYx0ieyBnLw4SOx4CNugTMuEzNy0Sb6lWblZWdlhSI", + value: "!(eufemizm-271.18.4.19.0.prz-1a893.uwi-2df.mus-6d.boj-d3.euf-2c)!", + result: { + word: "eufemizm", + correct: 18, + position: 4, + incorrect: 19, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "28.09.2025", + }, + }, + { + date: "28.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmMtYmL3ITLrVXZuAjL34CMuETMuEzNy0Sb6lWblZWdlhSI", + value: "!(eufemizm-271.11.0.7.0.euk-27.f-2c)!", + result: { + word: "eufemizm", + correct: 11, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "28.09.2025", + }, + }, + { + date: "28.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJTLmVXZuUWNtoXa35CZ00yYpJmL2EjM10ievBnLw4iMx4iMuMTMuEzNy0Sb6lWblZWdlhSI", + value: "!(eufemizm-271.13.2.12.0.poz-5216.bic-4d.wiz-5e.euf-2c)!", + result: { + word: "eufemizm", + correct: 13, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "28.09.2025", + }, + }, + { + date: "28.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYy0iZ1VmLyEjNtg2Yz4COy0SblxmLwMWLllWbuQjZx0CZ5dnLx4yMx4CNugTMuEzNy0Sb6lWblZWdlhSI", + value: "!(eufemizm-271.18.4.13.1.wyd-1f4.mie-c0.lem-28.3ch-612.euf-2c)!", + result: { + word: "eufemizm", + correct: 18, + position: 4, + incorrect: 13, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 35, + date: "28.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/tak-proste-ze-az-trudne-22-07-2025-diffle-difflepl-grywebowe-26-liter-w-5-slowac" +] = [ + { + date: "22.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0SauVnLzkTLoN2MuMTMy0ib5RmLwI2YtAXYu5iYllTLz92auAjLzEjLy4SMx4yMwITLhlmb1hSI", + value: "!(unia-203.11.2.13.0.kos-9eb.nap-cb0.dyn-213.3ch-93.uni-0)!", + result: { + word: "unia", + correct: 11, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "22.07.2025", + }, + }, + { + date: "22.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLp5WduAjMt4Wdn5yMxITLulHZukTOx0CajNjLzEWMtsWdz5yYlFTLulWbuMzMzYWL6JHcuAjL4EjLw4iMy4yMwITLhlmb1hSI", + value: + "!(unia-203.22.0.18.0.prz-f333.min-1ec.suk-1a3.3ch-199.dyn-213.gun-20.uni-0)!", + result: { + word: "unia", + correct: 22, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "22.07.2025", + }, + }, + { + date: "22.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0SauVnL1ETMtUXau5CM5QWLs92auEWM3MTL6JHcuAjL1EjLw4yMx4yMwITLhlmb1hSI", + value: "!(unia-203.13.0.15.0.prz-371a.kol-d90.niu-115.uni-0)!", + result: { + word: "unia", + correct: 13, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "22.07.2025", + }, + }, + { + date: "22.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0SauVnL0EWNtonc0VWau5CMuITMuAjL34yMwITLhlmb1hSI", + value: "!(unia-203.7.0.12.0.nietrz-5a4.uni-0)!", + result: { + word: "unia", + correct: 7, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "22.07.2025", + }, + }, + { + date: "22.07.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtkmb15yNz0ib1NnLmJTLtlmbuEGZyITLr9GcuAjLxEjLx4yMx4yMwITLhlmb1hSI", + value: "!(unia-203.13.1.11.0.pok-22da.nim-2f.sun-37.uni-0)!", + result: { + word: "unia", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "22.07.2025", + }, + }, + { + date: "22.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0SauVnL3MTLuV3cucTMl1ibvtmLjZTYtEmcn5CMuYjLx4yMx4yMwITLhlmb1hSI", + value: "!(unia-203.13.1.6.0.gra-a6c.kon-e17.sun-37.uni-0)!", + result: { + word: "unia", + correct: 13, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "22.07.2025", + }, + }, + { + date: "22.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLp5WduYmYy0SdoNmLw4iNuEjL34yMwITLhlmb1hSI", + value: "!(unia-203.7.1.6.0.chu-2bf.uni-0)!", + result: { + word: "unia", + correct: 7, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "22.07.2025", + }, + }, + { + date: "22.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLp5WduUTMx0Sdp5mLihTLmVHbuMTOtg2Yz4SO0ITLk9WbuAjL2EjLw4yMx4yMwITLhlmb1hSI", + value: "!(unia-203.13.0.16.0.mod-249.3ch-93.luf-8b.niu-115.uni-0)!", + result: { + word: "unia", + correct: 13, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "22.07.2025", + }, + }, + { + date: "22.07.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLp5WduAzN20SZpBnLw4iNuAjL34yMwITLhlmb1hSI", + value: "!(unia-203.7.0.6.0.pie-670.uni-0)!", + result: { + word: "unia", + correct: 7, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "22.07.2025", + }, + }, + { + date: "22.07.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtkmbuYTO00iejVnLlRmMtwWam5CM4YTL3l3duI2My0SYp1mL1EWLhJ3ZuAjL5EjLx4CNx4yMwITLhlmb1hSI", + value: "!(unia-203.14.1.19.0.gra-a5.mia-23b.wyw-680.fil-2de.ucz-496.ni-0)!", + result: { + word: "unia", + correct: 14, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "22.07.2025", + }, + }, + { + date: "22.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLp5WduUTYy0SdoNmLzcjNt8Gdz5CNmFTLkl3duAjLzEjLx4yMx4yMwITLhlmb1hSI", + value: "!(unia-203.13.1.13.0.wyd-1f4.sto-673.chu-2a5.uni-0)!", + result: { + word: "unia", + correct: 13, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "22.07.2025", + }, + }, + { + date: "22.07.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLp5WdugjM10ibhJmLzEjMt4Wek5iNhJWLllWbuAjL1EjLx4iMx4yMwITLhlmb1hSI", + value: "!(unia-203.12.1.15.0.mie-ba6.dyn-213.ban-528.uni-0)!", + result: { + word: "unia", + correct: 12, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "22.07.2025", + }, + }, + { + date: "22.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLp5WduEzNx0ibpxmLhFjM10ievBnLw4SOuEjL54yMwITLhlmb1hSI", + value: "!(unia-203.9.1.9.0.poz-521a.lin-171.uni-0)!", + result: { + word: "unia", + correct: 9, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "22.07.2025", + }, + }, + { + date: "22.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0SauVnL5ATNx0SbvtmLzkDOhFTL6JHcuAjLyEjLw4iMx4yMwITLhlmb1hSI", + value: "!(unia-203.12.0.12.0.prz-1a893.kom-1509.uni-0)!", + result: { + word: "unia", + correct: 12, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "22.07.2025", + }, + }, + { + date: "22.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0SauVnL0ImNtE2dr5CMuETMuIjL24yMwITLhlmb1hSI", + value: "!(unia-203.6.2.11.0.kwa-6b4.uni-0)!", + result: { + word: "unia", + correct: 6, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "22.07.2025", + }, + }, + { + date: "22.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtkmb15yNy0ya1VmLw4iNuIjL24yMwITLhlmb1hSI", + value: "!(unia-203.6.2.6.0.euk-27.uni-0)!", + result: { + word: "unia", + correct: 6, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "22.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/takie-malo-ciekawe-19-07-2025-flag-pl-diffle-difflepl-grywebowe-29-liter-w-5-slo" +] = [ + { + date: "19.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3MGNtwWY35CZt4We05CO24SNlNTLsF2duYTZ00ybytmLw4yMx4iMuQTMuADMy0SeuxWY3hSI", + value: "!(walny-200.14.2.13.0.kro-4e6.wal-3e5.68.tyn-d.wal-4c7)!", + result: { + word: "walny", + correct: 14, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "19.07.2025", + }, + }, + { + date: "19.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3MGNtwWY35SNj1SY39mLhFzNz0ieyBnLw4CMx4CMuITMuADMy0SeuxWY3hSI", + value: "!(walny-200.12.0.10.0.prz-371a.owa-c5.wal-4c7)!", + result: { + word: "walny", + correct: 12, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "19.07.2025", + }, + }, + { + date: "19.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNjRTLsF2duYGMy0CajNjLiNWOtwWYw5SY4MTLuFmYuIWZ50ycvtmLw4SNx4CMuQTMuADMy0SeuxWY3hSI", + value: "!(walny-200.14.0.15.0.kos-9eb.ban-38a.pal-9cb.3ch-20f.wal-4c7)!", + result: { + word: "walny", + correct: 14, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "19.07.2025", + }, + }, + { + date: "19.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3MGNtwmLhZTMt4WY35SN5ITL1h2YuQTY10ieyRXZp5mLw4iNx4iMuITMuADMy0SeuxWY3hSI", + value: "!(walny-200.12.2.16.0.nietrz-5a4.chu-295.wan-16a.l-4c7)!", + result: { + word: "walny", + correct: 12, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "19.07.2025", + }, + }, + { + date: "19.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3MGNtwWY35CZiFTL3FmbuQjY20SY3tmLw4yMx4SMuMTMuADMy0SeuxWY3hSI", + value: "!(walny-200.13.1.13.0.kwa-6b4.naw-1bd.wal-4c7)!", + result: { + word: "walny", + correct: 13, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "19.07.2025", + }, + }, + { + date: "19.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpczY00CbhdnLkJDNtIHcz5CMukjLw4COuADMy0SeuxWY3hSI", + value: "!(walny-200.8.0.9.0.spr-42d.wal-4c7)!", + result: { + word: "walny", + correct: 8, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "19.07.2025", + }, + }, + { + date: "19.07.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNjRTLsF2duUTZx0SeipnLhFjMtwWYo5CZlNTLsFWbuUjMi1ibhBnLw4SMx4SMuAjMuADMy0SeuxWY3hSI", + value: "!(walny-200.20.1.11.0.pan-b25.mal-3ed.hal-21a.zby-1e5.wal-4c7)!", + result: { + word: "walny", + correct: 20, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "19.07.2025", + }, + }, + { + date: "19.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3MGNtwWY35SNjFTLhJHcuYmYy0SdoNmLw4SMx4iMuATMuADMy0SeuxWY3hSI", + value: "!(walny-200.10.2.11.0.chu-2bf.pra-1c5.wal-4c7)!", + result: { + word: "walny", + correct: 10, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "19.07.2025", + }, + }, + { + date: "19.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNjRTLsF2duMTO4EWMtoncw5CMukjLy4yNuADMy0SeuxWY3hSI", + value: "!(walny-200.7.2.9.0.prz-1a893.wal-4c7)!", + result: { + word: "walny", + correct: 7, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "19.07.2025", + }, + }, + { + date: "19.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpczY00CbhdnLjJGNtwWYt5yY2EWLhJ3ZuAjL34SMuETMuADMy0SeuxWY3hSI", + value: "!(walny-200.11.1.7.0.gra-a6c.mal-4bc.wal-4c7)!", + result: { + word: "walny", + correct: 11, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "19.07.2025", + }, + }, + { + date: "19.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNjRTLsFmL0YWMtQWe35CMuUjLx4COuADMy0SeuxWY3hSI", + value: "!(walny-200.8.1.5.0.wyd-1f4.al-4c7)!", + result: { + word: "walny", + correct: 8, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "19.07.2025", + }, + }, + { + date: "19.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3MGNtwWY35SYxITLsFGauQzN40CZhJnLhFjM10ievBnLw4CMx4SMuQTMuADMy0SeuxWY3hSI", + value: "!(walny-200.14.1.10.0.poz-521a.rad-874.hal-21a.wal-4c7)!", + result: { + word: "walny", + correct: 14, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "19.07.2025", + }, + }, + { + date: "19.07.2025", + nick: "ArmandoNumber5", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNjRTLsFmLjNzYtUWa35CMucjLw4SOuADMy0SeuxWY3hSI", + value: "!(walny-200.9.0.7.0.wie-c3c.al-4c7)!", + result: { + word: "walny", + correct: 9, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "19.07.2025", + }, + }, + { + date: "19.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3MGNtwWY35SYxITLsFGauUzNtMWYw5yNy0ya1VmLw4SMx4CMuUTMuADMy0SeuxWY3hSI", + value: "!(walny-200.15.0.11.0.euk-27.pac-75.hal-21a.wal-4c7)!", + result: { + word: "walny", + correct: 15, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "19.07.2025", + }, + }, + { + date: "19.07.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3MGNtwWY35iNhJWLllWbuAjLwEjLx4COuADMy0SeuxWY3hSI", + value: "!(walny-200.8.1.10.0.mie-ba6.wal-4c7)!", + result: { + word: "walny", + correct: 8, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "19.07.2025", + }, + }, + { + date: "19.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNjRTLsF2duUWNtE2a15CMugjLw4SOuADMy0SeuxWY3hSI", + value: "!(walny-200.9.0.8.0.uka-5e.wal-4c7)!", + result: { + word: "walny", + correct: 9, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "19.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/takie-se-16-06-2025-flag-pl-diffle-difflepl-grywebowe-25-liter-w-3-slowach-large" +] = [ + { + date: "16.06.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNkNTLzFGcuQWYx0SYrNnL2EmYtUWat5CMuATMuEjL0EjL3YTMtwWYrNXYwhSI", + value: "!(paskal-167.14.1.10.0.mie-ba6.ska-1ad.pas-3d7)!", + result: { + word: "paskal", + correct: 14, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "16.06.2025", + }, + }, + { + date: "16.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3Q2MtMXYw5iYxUTLht2cuIWZ50ycvtmLw4yNuIjLyEjL3YTMtwWYrNXYwhSI", + value: "!(paskal-167.12.2.7.0.kos-9eb.ska-51b.pas-3d7)!", + result: { + word: "paskal", + correct: 12, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "16.06.2025", + }, + }, + { + date: "16.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3Q2MuUDZz0ychBnL0EWNtonc0VWau5CMuATMuEjL1EjL3YTMtwWYrNXYwhSI", + value: "!(paskal-167.15.1.10.0.nietrz-5a4.pas-3d5.3d7)!", + result: { + word: "paskal", + correct: 15, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "16.06.2025", + }, + }, + { + date: "16.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcDZz4yNkZTLzFGcuQmM00icwNnLw4SOuEjLzEjL3YTMtwWYrNXYwhSI", + value: "!(paskal-167.13.1.9.0.spr-42d.pas-6d7.3d7)!", + result: { + word: "paskal", + correct: 13, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "16.06.2025", + }, + }, + { + date: "16.06.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNkNTLzFGcuATLsFmZukjM40SYyRnLjJWMuUWNh1ychBnLmJmMtUHaj5CMuUTMuEjL3EjL3YTMtwWYrNXYwhSI", + value: "!(paskal-167.17.1.15.0.chu-2bf.pas-a5e.1bc.tra-829.fal-0.pas-3d7)!", + result: { + word: "paskal", + correct: 17, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "16.06.2025", + }, + }, + { + date: "16.06.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNkNTLz5yNlFWLuFGcuAjL24SMukjL3YTMtwWYrNXYwhSI", + value: "!(paskal-167.9.1.6.0.pan-ae7.s-3d7)!", + result: { + word: "paskal", + correct: 9, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "16.06.2025", + }, + }, + { + date: "16.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcDZz0ychBnLxIDOtEGcv5SYjdTLzFWbuMmNh1SYydmLw4SOuAjL0EjL3YTMtwWYrNXYwhSI", + value: "!(paskal-167.14.0.9.0.gra-a6c.mas-7ca.opa-821.pas-3d7)!", + result: { + word: "paskal", + correct: 14, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "16.06.2025", + }, + }, + { + date: "16.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3Q2MtMXYw5iNxETLzFGbuATLzFGduQjZx0CZ5dnLw4SOuIjL0EjL3YTMtwWYrNXYwhSI", + value: "!(paskal-167.14.2.9.0.wyd-1f4.tas-0.las-116.pas-3d7)!", + result: { + word: "paskal", + correct: 14, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "16.06.2025", + }, + }, + { + date: "16.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3Q2MtMXYuQmNts2buMTO4EWMtoncw5CMuETMuEjLyEjL3YTMtwWYrNXYwhSI", + value: "!(paskal-167.12.1.11.0.prz-1a893.ok-6d.as-3d7)!", + result: { + word: "paskal", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "16.06.2025", + }, + }, + { + date: "16.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3Q2MtMXYw5yMhdTLhp3cuQmMt0Wbp5CMuETMuIjLzEjL3YTMtwWYrNXYwhSI", + value: "!(paskal-167.13.2.11.0.imm-2d.sza-7a3.pas-3d7)!", + result: { + word: "paskal", + correct: 13, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "16.06.2025", + }, + }, + { + date: "16.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNkNTLzFGcuIjNtsmez5yNy0ya1VmLw4SOuIjLxEjL3YTMtwWYrNXYwhSI", + value: "!(paskal-167.11.2.9.0.euk-27.szk-62.pas-3d7)!", + result: { + word: "paskal", + correct: 11, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "16.06.2025", + }, + }, + { + date: "16.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNkNTLzFmL1EjMtEGbw5iYk1yal5mLw4SOuIjLyEjL3YTMtwWYrNXYwhSI", + value: "!(paskal-167.12.2.9.0.nek-db.pla-215.as-3d7)!", + result: { + word: "paskal", + correct: 12, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "16.06.2025", + }, + }, + { + date: "16.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3Q2MuEmNx0ych5SYxczMtoncw5CMuETMuEjL0EjL3YTMtwWYrNXYwhSI", + value: "!(paskal-167.14.1.11.0.prz-371a.as-16a.3d7)!", + result: { + word: "paskal", + correct: 14, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "16.06.2025", + }, + }, + { + date: "16.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNkNTLzFGcuADN00SYrNnLwQzMtoncn5CMuITMuAjLyEjL3YTMtwWYrNXYwhSI", + value: "!(paskal-167.12.0.12.0.grz-340.ska-440.pas-3d7)!", + result: { + word: "paskal", + correct: 12, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "16.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/to-byl-moment-05-09-2025-diffle-difflepl-grywebowe-14-liter-w-2-slowach-large-gr" +] = [ + { + date: "05.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkzYy0ibhRnLiVWOtM3br5CMuYjLx4yNugDNy0ybp5WY0hSI", + value: "!(tanio-248.7.1.6.0.kos-9eb.tan-2c9)!", + result: { + word: "tanio", + correct: 7, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "05.09.2025", + }, + }, + { + date: "05.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkzYy0ibhRnL3YWMt4WYm5SO4ETLnFmYuETZx0SZuFmLzMWL1FGbuYTOl1yY6NnLw4COx4SMuUTMugDNy0ybp5WY0hSI", + value: + "!(tanio-248.15.1.18.0.szc-e96.lau-c3.ane-1e1.bag-189.fan-1f7.tan-2c9)!", + result: { + word: "tanio", + correct: 15, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "05.09.2025", + }, + }, + { + date: "05.09.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MmMt4WY05SM1cTLuFWbuEGZyITLr9GcuAjL44iMuETMugDNy0ybp5WY0hSI", + value: "!(tanio-248.11.2.8.0.pok-22da.man-751.tan-2c9)!", + result: { + word: "tanio", + correct: 11, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "05.09.2025", + }, + }, + { + date: "05.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MmMt4WY05iM1cTLuFWbuQmM00icwNnLw4CMx4SMuITMugDNy0ybp5WY0hSI", + value: "!(tanio-248.12.1.10.0.spr-42d.man-752.tan-2c9)!", + result: { + word: "tanio", + correct: 12, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "05.09.2025", + }, + }, + { + date: "05.09.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MmMt4WY05CNhVTL6JHdllmbuAjLwEjLy4COugDNy0ybp5WY0hSI", + value: "!(tanio-248.8.2.10.0.nietrz-5a4.tan-2c9)!", + result: { + word: "tanio", + correct: 8, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "05.09.2025", + }, + }, + { + date: "05.09.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MmMt4WY05iYwMTMtQWYu5CMucjLy4yNugDNy0ybp5WY0hSI", + value: "!(tanio-248.7.2.7.0.nad-130b.tan-2c9)!", + result: { + word: "tanio", + correct: 7, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "05.09.2025", + }, + }, + { + date: "05.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MmMt4WY05SYxczMtoncw5CMugjLw4COugDNy0ybp5WY0hSI", + value: "!(tanio-248.8.0.8.0.prz-371a.tan-2c9)!", + result: { + word: "tanio", + correct: 8, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "05.09.2025", + }, + }, + { + date: "05.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkzYy0ibhRnL0I2Mtg2Yz4iZ4ITLzFGcuQWYx0SYp1mLz0iYvZmLw4iMx4CNuETMugDNy0ybp5WY0hSI", + value: "!(tanio-248.11.4.12.0.fob-3.mia-1ad.pas-28f.3ch-3b4.tan-2c9)!", + result: { + word: "tanio", + correct: 11, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "05.09.2025", + }, + }, + { + date: "05.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkzYy0ibhRnL3QWMtQXYi5yM5gTYx0ieyBnLw4SMx4yMuETMugDNy0ybp5WY0hSI", + value: "!(tanio-248.11.3.11.0.prz-1a893.bat-1d7.tan-2c9)!", + result: { + word: "tanio", + correct: 11, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "05.09.2025", + }, + }, + { + date: "05.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MmMt4WY05CNiZTLhd3auAjLwEjLy4COugDNy0ybp5WY0hSI", + value: "!(tanio-248.8.2.10.0.kwa-6b4.tan-2c9)!", + result: { + word: "tanio", + correct: 8, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "05.09.2025", + }, + }, + { + date: "05.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkzYy0ibhRnLiJmNt4WYr5CNmFTLkl3duAjL44CMuETMugDNy0ybp5WY0hSI", + value: "!(tanio-248.11.0.8.0.wyd-1f4.kan-6bb.tan-2c9)!", + result: { + word: "tanio", + correct: 11, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "05.09.2025", + }, + }, + { + date: "05.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkzYy0ibhRnLmJmMtUHaj5CMuYjLz4iNugDNy0ybp5WY0hSI", + value: "!(tanio-248.6.3.6.0.chu-2bf.tan-2c9)!", + result: { + word: "tanio", + correct: 6, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "05.09.2025", + }, + }, + { + date: "05.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOjJjL4UjMt4WY05yY2EWLhJ3ZuAjLz4CMuITMugDNy0ybp5WY0hSI", + value: "!(tanio-248.12.0.3.0.gra-a6c.tan-258.2c9)!", + result: { + word: "tanio", + correct: 12, + position: 0, + incorrect: 3, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 15, + date: "05.09.2025", + }, + }, + { + date: "05.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkzYy0ibhRnL2EmYtUWat5CMukjLx4SOugDNy0ybp5WY0hSI", + value: "!(tanio-248.9.1.9.0.mie-ba6.tan-2c9)!", + result: { + word: "tanio", + correct: 9, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "05.09.2025", + }, + }, + { + date: "05.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MmMt4WY05SZ0gTLuFWbuEWMyUTL69GcuAjL44iMuITMugDNy0ybp5WY0hSI", + value: "!(tanio-248.12.2.8.0.poz-521a.man-84e.tan-2c9)!", + result: { + word: "tanio", + correct: 12, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "05.09.2025", + }, + }, + { + date: "05.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MmMuI2Yy0ibhRnL3ITLrVXZuAjL44iMuMTMugDNy0ybp5WY0hSI", + value: "!(tanio-248.13.2.8.0.euk-27.tan-2cb.2c9)!", + result: { + word: "tanio", + correct: 13, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "05.09.2025", + }, + }, + { + date: "05.09.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MmMuU2My0ibhRnL2IDOtEGdz5yN4ETL0FmcuAjL24SMuQTMugDNy0ybp5WY0hSI", + value: "!(tanio-248.14.1.6.0.rat-187.sta-826.tan-23e.2c9)!", + result: { + word: "tanio", + correct: 14, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "05.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/tradycyjnie-pomylka-o-1-literke-05-08-2025-diffle-difflepl-grywebowe-23-litery-w" +] = [ + { + date: "05.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUWM10ybs5iMwkTLsB3cuMDNzETLsl3duAjL44SMuQTMucTMy0SYr52bygTJ1MUJzhSI", + value: "!(słonka-217.14.1.8.0.wyl-1343.spl-902.lo-51e)!", + result: { + word: "słonka", + correct: 14, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "05.08.2025", + }, + }, + { + date: "05.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlFTNt8GbuIDM50CbwNnL4kTLvpneuAjL24SMuQTMucTMy0SYr52bygTJ1MUJzhSI", + value: "!(słonka-217.14.1.6.0.zzo-98.spl-902.lo-51e)!", + result: { + word: "słonka", + correct: 14, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "05.08.2025", + }, + }, + { + date: "05.08.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZxUTLvx2cuUmMxMTLu92auUTY10ieyRXZp5mLw4iMx4CNuETMucTMy0SYr52bygTJ1MUJzhSI", + value: "!(słonka-217.11.4.12.0.nietrz-5a5.kon-312e.slo-51e)!", + result: { + word: "słonka", + correct: 11, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "05.08.2025", + }, + }, + { + date: "05.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUWM10ybsNnLiFTLr9GbucDOx0SdsdmL3U2MuUGO04CM1UTLvx2cuYDNl1CczdnLw4COx4SMucjMucTMy0SYr52bygTJ1MUJzhSI", + value: + "!(słonka-217.27.1.18.0.wsp-e46.slo-550.48e.3e7.glu-187.lok-1b.slo-51e)!", + result: { + word: "słonka", + correct: 27, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 46, + date: "05.08.2025", + }, + }, + { + date: "05.08.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZxUTLvx2cuQWNj1CboNmL4kTLvpneuAjL44iMuITMucTMy0SYr52bygTJ1MUJzhSI", + value: "!(słonka-217.12.2.8.0.zzo-98.chl-c5d.slo-51e)!", + result: { + word: "słonka", + correct: 12, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "05.08.2025", + }, + }, + { + date: "05.08.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUWM14SOhRjL3U2Mt8Gbz5CZ4ETLwNXYuAjL54iMukTMucTMy0SYr52bygTJ1MUJzhSI", + value: "!(słonka-217.19.2.9.0.asp-18d.slo-3e7.4a9.51e)!", + result: { + word: "słonka", + correct: 19, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "05.08.2025", + }, + }, + { + date: "05.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlFTNt8GbuIDM50CbwNnLwQTMt42b65iZiJTL1h2YuAjL54CMukTMucTMy0SYr52bygTJ1MUJzhSI", + value: "!(słonka-217.19.0.9.0.chu-2bf.zon-140.spl-902.lo-51e)!", + result: { + word: "słonka", + correct: 19, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "05.08.2025", + }, + }, + { + date: "05.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZxUjL3U2MuATM04CN1UTLvx2cuIzMzETLzl3duAjL34CMuEjMucTMy0SYr52bygTJ1MUJzhSI", + value: "!(słonka-217.21.0.7.0.wys-1332.slo-554.410.3e7.51e)!", + result: { + word: "słonka", + correct: 21, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "05.08.2025", + }, + }, + { + date: "05.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUWM10ybsNnL4MWYtIHZv5CM40CdvdnLyATOtwGcz5CZwETLiFmaugzNx0CbvpnLkJzMtg2Yz4SZm1ibnpnLw4iMy4SMuYjMucTMy0SYr52bygTJ1MUJzhSI", + value: + "!(słonka-217.26.1.22.0.zgn-fe.3ch-32d.zol-178.jab-10d.spl-902.wot-80.odr-ac8.slo-51e)!", + result: { + word: "słonka", + correct: 26, + position: 1, + incorrect: 22, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 49, + date: "05.08.2025", + }, + }, + { + date: "05.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlFTNuETOz0ybsNnLkFzNz0ieyBnLw4SMx4CMuMTMucTMy0SYr52bygTJ1MUJzhSI", + value: "!(słonka-217.13.0.11.0.prz-371d.slo-391.51e)!", + result: { + word: "słonka", + correct: 13, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "05.08.2025", + }, + }, + { + date: "05.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZxUTLvx2cuIGMh1Cbk9mL1UjMto2b35yM5gTYx0ieyBnLw4SMy4iMuETMucTMy0SYr52bygTJ1MUJzhSI", + value: "!(słonka-217.11.2.21.0.prz-1a893.woj-255.odl-a0b.slo-51e)!", + result: { + word: "słonka", + correct: 11, + position: 2, + incorrect: 21, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "05.08.2025", + }, + }, + { + date: "05.08.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUWM14SOhRjL3U2MuQzMz4CZ4UTLvx2cuEWM40ybsdmLzQjY00CZvBnLw4iMx4SMukjMucTMy0SYr52bygTJ1MUJzhSI", + value: "!(słonka-217.29.1.12.0.pod-4b43.glo-81a.slo-58d.334.3e7.4a9.51e)!", + result: { + word: "słonka", + correct: 29, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "05.08.2025", + }, + }, + { + date: "05.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUWM10ybsNnLyMDNx0ycvBnL4kTLvpneuAjL34iMuMTMucTMy0SYr52bygTJ1MUJzhSI", + value: "!(słonka-217.13.2.7.0.zzo-98.pos-1432.slo-51e)!", + result: { + word: "słonka", + correct: 13, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "05.08.2025", + }, + }, + { + date: "05.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlFTNukTY04SZwcjLkhTNuQzMz0ybsNnLjFmY00CZvBnLw4iMx4SMuUjMucTMy0SYr52bygTJ1MUJzhSI", + value: "!(słonka-217.25.1.12.0.pod-4bac.slo-334.58d.70e.4a9.51e)!", + result: { + word: "słonka", + correct: 25, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "05.08.2025", + }, + }, + { + date: "05.08.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUWM10ybsNnLwEzMtw2cv5SZjVWLz9GcuYTYi1SZp1mLw4CNx4CNugTMucTMy0SYr52bygTJ1MUJzhSI", + value: "!(słonka-217.18.4.14.0.mie-ba6.pos-ece.osl-310.slo-51e)!", + result: { + word: "słonka", + correct: 18, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "05.08.2025", + }, + }, + { + date: "05.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUWM14SOhRjL3U2Mt8Gbz5iMlVWLsh2YuADZzITLs9GcuQjZi1Sbk9mLw4iNx4SMuMjMucTMy0SYr52bygTJ1MUJzhSI", + value: "!(słonka-217.23.1.16.0.odm-bf4.pol-23d0.chl-ee2.slo-3e7.4a9.51e)!", + result: { + word: "słonka", + correct: 23, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "05.08.2025", + }, + }, + { + date: "05.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZxUTLvx2cuYTNtg2Yz4iNjVjL1ImLxkzMt8Gbz5SO5cTMtIXY65yM2YTLvxGcuYWO00ybspnLw4SNx4SMuAzMucTMy0SYr52bygTJ1MUJzhSI", + value: + "!(słonka-217.30.1.15.0.zlo-49f.plo-663.zar-1799.slo-391.b5.5c6.3ch-56.slo-51e)!", + result: { + word: "słonka", + correct: 30, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 46, + date: "05.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/troche-szczescie-dopisalo-15-06-2025-diffle-difflepl-grywebowe-26-liter-w-3-slow" +] = [ + { + date: "15.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjNjMx0SbhNnLxADNtMXYq5yM0MTMtwWe35CMucjLx4COx4iN2ETL3gTJ0MUJClTJ1MUJv5Gdv1WYzhSI", + value: "!(samotność-166.18.1.7.0.wyl-1343.jas-401.sam-123c)!", + result: { + word: "samotność", + correct: 18, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "15.06.2025", + }, + }, + { + date: "15.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2MyETLtFmL0IGNtwmez5iMzMTMtMXe35CMukjLx4SNx4iN2ETL3gTJ0MUJClTJ1MUJv5Gdv1WYzhSI", + value: "!(samotność-166.15.1.9.0.wys-1332.szl-4b4.am-123c)!", + result: { + word: "samotność", + correct: 15, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "15.06.2025", + }, + }, + { + date: "15.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjNjMx0SbhNnLxADNtMXYq5yMlZzMtMXY65CMugjLy4yNx4iN2ETL3gTJ0MUJClTJ1MUJv5Gdv1WYzhSI", + value: "!(samotność-166.17.2.8.0.zas-36e3.jas-401.sam-123c)!", + result: { + word: "samotność", + correct: 17, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "15.06.2025", + }, + }, + { + date: "15.06.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2MyEjLkNjMx0SbhNnL2EmYtUWat5CMukjLy4SOx4iN2ETL3gTJ0MUJClTJ1MUJv5Gdv1WYzhSI", + value: "!(samotność-166.19.2.9.0.mie-ba6.sam-123d.123c)!", + result: { + word: "samotność", + correct: 19, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "15.06.2025", + }, + }, + { + date: "15.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjNjMx0SbhNnLkhTMtA3ch5CMuUjLx4SNx4iN2ETL3gTJ0MUJClTJ1MUJv5Gdv1WYzhSI", + value: "!(samotność-166.15.1.5.0.asp-18d.sam-123c)!", + result: { + word: "samotność", + correct: 15, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "15.06.2025", + }, + }, + { + date: "15.06.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2MyEjL0QWMt0WYz5CMt0WYm5SZkJTLoN2MuQjYy0CdhJmLxczYtM3bk5SO5ETLzVGduAjN50ych1mLlRzYtwWYw5iNlZTMtIXY65iZiJTL1h2YuAjLyIjL24yMz4iN2ETL3gTJ0MUJClTJ1MUJv5Gdv1WYzhSI", + value: + "!(samotność-166.33.6.22.0.chu-2bf.zar-16e6.pal-c4e.mas-960.tes-199.dos-c71.bat-2b4.3ch-2de.fam-0.sam-1d4.123c)!", + result: { + word: "samotność", + correct: 33, + position: 6, + incorrect: 22, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 61, + date: "15.06.2025", + }, + }, + { + date: "15.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2MyETLtF2cuUTNy0iavdnLzkDOhFTL6JHcuAjL1EjLx4iNx4iN2ETL3gTJ0MUJClTJ1MUJv5Gdv1WYzhSI", + value: "!(samotność-166.16.1.15.0.prz-1a893.woj-255.sam-123c)!", + result: { + word: "samotność", + correct: 16, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 32, + date: "15.06.2025", + }, + }, + { + date: "15.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYzITMuEjZxETLtF2cuITZx0ic5dnL4kTLvpneuAjLyEjLx4SMy4iN2ETL3gTJ0MUJClTJ1MUJv5Gdv1WYzhSI", + value: "!(samotność-166.21.1.12.0.zzo-98.wyr-1e2.sam-11f1.123c)!", + result: { + word: "samotność", + correct: 21, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "15.06.2025", + }, + }, + { + date: "15.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjNjMx0SbuczMtUXYz5SYjRTMtEmc05SN0cTLnFmbucjMx0yYhBnL4kTLvpneuIjL5EjLx4CNy4iN2ETL3gTJ0MUJClTJ1MUJv5Gdv1WYzhSI", + value: + "!(samotność-166.24.1.19.2.zzo-98.pac-127.nag-745.tra-14ca.sau-37.m-123c)!", + result: { + word: "samotność", + correct: 24, + position: 1, + incorrect: 19, + knownIncorrect: 2, + totalWords: 6, + totalLetters: 44, + date: "15.06.2025", + }, + }, + { + date: "15.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjNjMx0Sbh5iZ2ETL5B3cuQjM10CajNjL0QmMtw2b65SYxYTLuFWbuAjLyEjL04COx4iN2ETL3gTJ0MUJClTJ1MUJv5Gdv1WYzhSI", + value: + "!(samotność-166.18.4.12.0.man-61a.zol-2d4.3ch-524.spy-16f.am-123c)!", + result: { + word: "samotność", + correct: 18, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "15.06.2025", + }, + }, + { + date: "15.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2MyETLtFmLxImZtEGdz5CZ1ETLpd3buMWYiRTLk9GcuAjLxEjLy4yNx4iN2ETL3gTJ0MUJClTJ1MUJv5Gdv1WYzhSI", + value: "!(samotność-166.17.2.11.0.pod-4bac.owi-15d.sta-fb1.am-123c)!", + result: { + word: "samotność", + correct: 17, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "15.06.2025", + }, + }, + { + date: "15.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYzITMt0WYz5SO0cTLyF2dukDOk1ycvtmLmlDNt8Gb65CMuUjLw4CMy4iN2ETL3gTJ0MUJClTJ1MUJv5Gdv1WYzhSI", + value: "!(samotność-166.20.0.5.0.zlo-49f.kos-d89.war-749.sam-123c)!", + result: { + word: "samotność", + correct: 20, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "15.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/trzeba-bylo-strzelac-01-07-2025-flag-pl-diffle-difflepl-grywebowe-27-liter-w-4-s" +] = [ + { + date: "01.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZ14SM3UjLmZWMtknez5iYyczMtMXe35CMuETMuEjL1EjLygTMtk2ailnezhSI", + value: "!(szybki-182.15.1.11.0.wys-372b.szy-1ff.571.5e)!", + result: { + word: "szybki", + correct: 15, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "01.07.2025", + }, + }, + { + date: "01.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlVTL55iNjFTLr5iZ4YTLwp3cuIWZ50ycvtmLw4COuIjL1EjLygTMtk2ailnezhSI", + value: "!(szybki-182.15.2.8.0.kos-9eb.szp-68f.k-1c6.y-5e)!", + result: { + word: "szybki", + correct: 15, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "01.07.2025", + }, + }, + { + date: "01.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlVTL5p3cuQTY10ieyRXZp5mLw4CMx4iMukjLygTMtk2ailnezhSI", + value: "!(szybki-182.9.2.10.0.nietrz-5a4.szy-5e)!", + result: { + word: "szybki", + correct: 9, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "01.07.2025", + }, + }, + { + date: "01.07.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlVTL5p3cuEGZyITLr9GcuAjL34SMukjLygTMtk2ailnezhSI", + value: "!(szybki-182.9.1.7.0.pok-22da.szy-5e)!", + result: { + word: "szybki", + correct: 9, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "01.07.2025", + }, + }, + { + date: "01.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlVTL55CMzcTL0pnLkJDNtIHcz5CMuETMuAjLzEjLygTMtk2ailnezhSI", + value: "!(szybki-182.13.0.11.0.spr-42d.zt-730.y-5e)!", + result: { + word: "szybki", + correct: 13, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "01.07.2025", + }, + }, + { + date: "01.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZ10Se65iYjVTMtI3az5iZ00SZppnLmJmMtUHaj5CMuMTMuIjLzEjLygTMtk2ailnezhSI", + value: "!(szybki-182.13.2.13.0.chu-2bf.zie-4f.skr-15cb.zy-5e)!", + result: { + word: "szybki", + correct: 13, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "01.07.2025", + }, + }, + { + date: "01.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlVTL5p3cuQjY20SY3tmLw4CMx4iMukjLygTMtk2ailnezhSI", + value: "!(szybki-182.9.2.10.0.kwa-6b4.szy-5e)!", + result: { + word: "szybki", + correct: 9, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "01.07.2025", + }, + }, + { + date: "01.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlVjLwMWNtkneuYmNtQXaz5SN2ETLzlGcuMmNh1SYydmLw4COuIjL2EjLygTMtk2ailnezhSI", + value: "!(szybki-182.16.2.8.0.gra-a6c.pis-165.sit-6f.zy-5c0.5e)!", + result: { + word: "szybki", + correct: 16, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "01.07.2025", + }, + }, + { + date: "01.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZ14CMjVTL5p3cuQjZx0CZ5dnLw4iNuEjLzEjLygTMtk2ailnezhSI", + value: "!(szybki-182.13.1.6.0.wyd-1f4.szy-5c0.5e)!", + result: { + word: "szybki", + correct: 13, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "01.07.2025", + }, + }, + { + date: "01.07.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlVjLwMWNuYjN50SeuYGO20Cc6NnL2EmYtUWat5CMuMTMuEjLzIjLygTMtk2ailnezhSI", + value: "!(szybki-182.23.1.13.0.mie-ba6.szp-68f.y-966.5c0.5e)!", + result: { + word: "szybki", + correct: 23, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "01.07.2025", + }, + }, + { + date: "01.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUWNtknez5yNtMXe65CNx0SdlZmLw4yNuIjLwEjLygTMtk2ailnezhSI", + value: "!(szybki-182.10.2.7.0.feu-14.zys-7.szy-5e)!", + result: { + word: "szybki", + correct: 10, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "01.07.2025", + }, + }, + { + date: "01.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlVjLwMWNtknez5yNy0ya1VmLw4yNuEjLzEjLygTMtk2ailnezhSI", + value: "!(szybki-182.13.1.7.0.euk-27.szy-5c0.5e)!", + result: { + word: "szybki", + correct: 13, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "01.07.2025", + }, + }, + { + date: "01.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUWNuYjN54CMjVjL5YGNtknez5SYxczMtoncw5CMuITMuEjLzIjLygTMtk2ailnezhSI", + value: "!(szybki-182.23.1.12.0.prz-371a.szy-4f9.5c0.966.5e)!", + result: { + word: "szybki", + correct: 23, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "01.07.2025", + }, + }, + { + date: "01.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUWNuAzY14SOmRTL5p3cuYWO20iezdnLhFjM10ievBnLw4SOuEjL1IjLygTMtk2ailnezhSI", + value: "!(szybki-182.25.1.9.0.poz-521a.wsz-69f.szy-4f9.5c0.5e)!", + result: { + word: "szybki", + correct: 25, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "01.07.2025", + }, + }, + { + date: "01.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUWNtknez5yM5gTYx0ieyBnLw4CMx4CMukjLygTMtk2ailnezhSI", + value: "!(szybki-182.9.0.10.0.prz-1a893.szy-5e)!", + result: { + word: "szybki", + correct: 9, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "01.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ujdzie-aczkolwiek-nie-znalem-tego-slowa-22-09-2025-flag-pl-diffle-difflepl-grywe" +] = [ + { + date: "22.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzkjMtEmLz0iapdnLlRTMx0Sa6RmLw4SOuEjL1EjL1YjMtsWe0FWa3hSI", + value: "!(wiatyk-265.15.1.9.0.dzi-114e.wij-3.a-293)!", + result: { + word: "wiatyk", + correct: 15, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "22.09.2025", + }, + }, + { + date: "22.09.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTOy0SYpdnL4kzNtQXYw5SMyMTLhlWbuUTZtQmcv5CMuITMuIjL1EjL1YjMtsWe0FWa3hSI", + value: "!(wiatyk-265.15.2.12.0.ord-e5.mia-321.pat-798.wia-293)!", + result: { + word: "wiatyk", + correct: 15, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "22.09.2025", + }, + }, + { + date: "22.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM5IjLwIWMtEWa35SN10Sa3tmL2EmYtUWat5CMuETMuMjL4EjL1YjMtsWe0FWa3hSI", + value: "!(wiatyk-265.18.3.11.0.mie-ba6.kwi-55.wia-1b0.293)!", + result: { + word: "wiatyk", + correct: 18, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "22.09.2025", + }, + }, + { + date: "22.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTOy0SYpdnL4QWNuYGMz0CajNjLiVTLqlmYuEWOy0yahBnLiVWOtM3br5CMuQTMuIjL3EjL1YjMtsWe0FWa3hSI", + value: + "!(wiatyk-265.17.2.14.0.kos-9eb.pak-29a.bij-5b.3ch-30f.5d8.wia-293)!", + result: { + word: "wiatyk", + correct: 17, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "22.09.2025", + }, + }, + { + date: "22.09.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzkjMtEWa35yYl1Sa3tmLhRmMy0yavBnLw4iNuMjL0EjL1YjMtsWe0FWa3hSI", + value: "!(wiatyk-265.14.3.6.0.pok-22da.kwi-ec.wia-293)!", + result: { + word: "wiatyk", + correct: 14, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "22.09.2025", + }, + }, + { + date: "22.09.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM5ITLhl2duQTY10ieyRXZp5mLw4SOuIjLwEjL1YjMtsWe0FWa3hSI", + value: "!(wiatyk-265.10.2.9.0.nietrz-5a4.wia-293)!", + result: { + word: "wiatyk", + correct: 10, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "22.09.2025", + }, + }, + { + date: "22.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTOy4CMiFTLhl2duYmYy0SdoNmLw4SOuAjL0EjL1YjMtsWe0FWa3hSI", + value: "!(wiatyk-265.14.0.9.0.chu-2bf.wia-1b0.293)!", + result: { + word: "wiatyk", + correct: 14, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "22.09.2025", + }, + }, + { + date: "22.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTOy4iM5ITLhlmL3YTYtIWeuQ2Nx0yYhdnLkJDNtIHcz5CMuITMuMjLwIjL1YjMtsWe0FWa3hSI", + value: "!(wiatyk-265.20.3.12.0.spr-42d.wac-17d.yb-a67.ia-292.293)!", + result: { + word: "wiatyk", + correct: 20, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "22.09.2025", + }, + }, + { + date: "22.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTOy0SYpdnLjlzNtQXYw5yNy0ya1VmLw4iNuMjLzEjL1YjMtsWe0FWa3hSI", + value: "!(wiatyk-265.13.3.6.0.euk-27.pat-79c.wia-293)!", + result: { + word: "wiatyk", + correct: 13, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "22.09.2025", + }, + }, + { + date: "22.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM5IjLykjMtEWa35CNtkGcv5yNjFTLhlWbuMmNh1SYydmLw4SOuEjL4EjL1YjMtsWe0FWa3hSI", + value: "!(wiatyk-265.18.1.9.0.gra-a6c.mia-1c7.opi-4.wia-292.293)!", + result: { + word: "wiatyk", + correct: 18, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "22.09.2025", + }, + }, + { + date: "22.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM5ITLhl2duMWZtk2dr5yM5gTYx0ieyBnLw4SOuMjLzEjL1YjMtsWe0FWa3hSI", + value: "!(wiatyk-265.13.3.9.0.prz-1a893.kwi-ec.wia-293)!", + result: { + word: "wiatyk", + correct: 13, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "22.09.2025", + }, + }, + { + date: "22.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzkjMtEWa35iNm1SY3NnL4UTZtEGaj5SY5ITLrFGcuEGOtQ2bt5CMuMTMuEjL3EjL1YjMtsWe0FWa3hSI", + value: "!(wiatyk-265.17.1.13.0.mod-8a.pak-29a.cha-e58.swa-f6.wia-293)!", + result: { + word: "wiatyk", + correct: 17, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "22.09.2025", + }, + }, + { + date: "22.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzkjMtEWa35SN10Sa3tmLhFzNz0ieyBnLw4yNuIjLzEjL1YjMtsWe0FWa3hSI", + value: "!(wiatyk-265.13.2.7.0.prz-371a.kwi-55.wia-293)!", + result: { + word: "wiatyk", + correct: 13, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "22.09.2025", + }, + }, + { + date: "22.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM5IjLykjMtEWauIDNtQWYuQjZx0CZ5dnLx4COuMjL2EjL1YjMtsWe0FWa3hSI", + value: "!(wiatyk-265.16.3.8.1.wyd-1f4.ad-42.ia-292.293)!", + result: { + word: "wiatyk", + correct: 16, + position: 3, + incorrect: 8, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 27, + date: "22.09.2025", + }, + }, + { + date: "22.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzkjMuEGOx0SYpdnL0ImNtE2dr5CMuATMuMjL0EjL1YjMtsWe0FWa3hSI", + value: "!(wiatyk-265.14.3.10.0.kwa-6b4.wia-18a.293)!", + result: { + word: "wiatyk", + correct: 14, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "22.09.2025", + }, + }, + { + date: "22.09.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTOy0SYpdnLiVTLqlmYuYTOtMWYy5iMwUWMt42bw5CMuATMuMjL4EjL1YjMtsWe0FWa3hSI", + value: "!(wiatyk-265.18.3.10.0.pon-1e02.rac-96.bij-5b.wia-293)!", + result: { + word: "wiatyk", + correct: 18, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "22.09.2025", + }, + }, + { + date: "22.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzkjMtEWauEWOx0ic5dnLyEjM10ievBnLw4yNuIjLxEjL1YjMtsWe0FWa3hSI", + value: "!(wiatyk-265.11.2.7.0.poz-5212.wyr-19a.ia-293)!", + result: { + word: "wiatyk", + correct: 11, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "22.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ujdzie-choc-fajne-12-07-2025-flag-pl-diffle-difflepl-grywebowe-25-liter-w-3-slow" +] = [ + { + date: "12.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMwQjL1IjMtE2az5SZxETLztWZuAjL34iMuYTMuMTOx0yahlmbsF2azhSI", + value: "!(skalniak-193.16.2.7.0.eks-11e.ska-225.402)!", + result: { + word: "skalniak", + correct: 16, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "12.07.2025", + }, + }, + { + date: "12.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMwQTLht2cuQjY20SY3tmLw4CMx4SMuITMuMTOx0yahlmbsF2azhSI", + value: "!(skalniak-193.12.1.10.0.kwa-6b4.ska-402)!", + result: { + word: "skalniak", + correct: 12, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "12.07.2025", + }, + }, + { + date: "12.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMwQjLjRGOtE2az5iYllTLz92auAjL34SMuYTMuMTOx0yahlmbsF2azhSI", + value: "!(skalniak-193.16.1.7.0.kos-9eb.ska-8dc.402)!", + result: { + word: "skalniak", + correct: 16, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "12.07.2025", + }, + }, + { + date: "12.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyADNtE2az5SN0UTLuFmYuQTY10ieyRXZp5mLw4iMx4yMucTMuMTOx0yahlmbsF2azhSI", + value: "!(skalniak-193.17.3.12.0.nietrz-5a4.ban-545.ska-402)!", + result: { + word: "skalniak", + correct: 17, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 32, + date: "12.07.2025", + }, + }, + { + date: "12.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMwQTLhtmLzcTLh1mLhVDNtEGduQmM00icwNnLw4iMx4SMuIjMuMTOx0yahlmbsF2azhSI", + value: "!(skalniak-193.22.1.12.0.spr-42d.ta-45a.ma-73.ka-402)!", + result: { + word: "skalniak", + correct: 22, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "12.07.2025", + }, + }, + { + date: "12.07.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIDM00SYrNnL2E2MtwWYt5yNlFWLuFGcuAjL24CNuUTMuMTOx0yahlmbsF2azhSI", + value: "!(skalniak-193.15.4.6.0.pan-ae7.mal-3a6.ska-402)!", + result: { + word: "skalniak", + correct: 15, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "12.07.2025", + }, + }, + { + date: "12.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMwQTLht2cuEWM3MTL6JHcuAjL34CMuITMuMTOx0yahlmbsF2azhSI", + value: "!(skalniak-193.12.0.7.0.prz-371a.ska-402)!", + result: { + word: "skalniak", + correct: 12, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "12.07.2025", + }, + }, + { + date: "12.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIDM00SYrNnLykTOtwWYw5yY2EWLhJ3ZuAjL04CMuUTMuMTOx0yahlmbsF2azhSI", + value: "!(skalniak-193.15.0.4.0.gra-a6c.pal-992.ska-402)!", + result: { + word: "skalniak", + correct: 15, + position: 0, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "12.07.2025", + }, + }, + { + date: "12.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIDM00SYrNnLwkDZtw2br5yM5gTYx0ieyBnLw4SMx4CMucTMuMTOx0yahlmbsF2azhSI", + value: "!(skalniak-193.17.0.11.0.prz-1a893.kol-d90.ska-402)!", + result: { + word: "skalniak", + correct: 17, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "12.07.2025", + }, + }, + { + date: "12.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIDM00SYrNnLiJmNt4WYr5CNmFTLkl3duAjL24CMuYTMuMTOx0yahlmbsF2azhSI", + value: "!(skalniak-193.16.0.6.0.wyd-1f4.kan-6bb.ska-402)!", + result: { + word: "skalniak", + correct: 16, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "12.07.2025", + }, + }, + { + date: "12.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIDM00SYrNnLklzMtkGbr5iZiJTL1h2YuAjL44iMuUTMuMTOx0yahlmbsF2azhSI", + value: "!(skalniak-193.15.2.8.0.chu-2bf.kli-39d.ska-402)!", + result: { + word: "skalniak", + correct: 15, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "12.07.2025", + }, + }, + { + date: "12.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMwQTLht2cuImY20ibhtmL3ITLrVXZuAjL24SMuYTMuMTOx0yahlmbsF2azhSI", + value: "!(skalniak-193.16.1.6.0.euk-27.kan-6bb.ska-402)!", + result: { + word: "skalniak", + correct: 16, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "12.07.2025", + }, + }, + { + date: "12.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMwQTLht2cuEWMyUTL69GcuAjL14CMuMTMuMTOx0yahlmbsF2azhSI", + value: "!(skalniak-193.13.0.5.0.poz-521a.ska-402)!", + result: { + word: "skalniak", + correct: 13, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "12.07.2025", + }, + }, + { + date: "12.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMwQTLht2cuImY20ibhtmLlVTLhtWduAjL34SMucTMuMTOx0yahlmbsF2azhSI", + value: "!(skalniak-193.17.1.7.0.uka-5e.kan-6bb.ska-402)!", + result: { + word: "skalniak", + correct: 17, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "12.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/uuuuch-tak-zle-na-poczatku-nie-bylo-02-08-2025-flag-pl-diffle-difflepl-grywebowe" +] = [ + { + date: "02.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUGOz0yb3pnLwcjMtQWZ35CN5ITL1h2YuEzY04iY2MTLoN2MuETMx0SesBnLi1SY0NXZp5mLw4yNy4SMugjL0EjMto2MCVyMDVyd6hSI", + value: + "!(zwój-214.8.1.27.0.niesta-b.ply-111.3ch-36b.4c1.chu-294.wed-270.zwo-38e)!", + result: { + word: "zwój", + correct: 8, + position: 1, + incorrect: 27, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 36, + date: "02.08.2025", + }, + }, + { + date: "02.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZ4MjLwM2Mt8mLwkzMtU2d65yM0MTMtwWe35CMuMTMuEjLwEjL0EjMto2MCVyMDVyd6hSI", + value: "!(zwój-214.10.1.13.0.wyl-1343.zwe-390.o-3c0.38e)!", + result: { + word: "zwój", + correct: 10, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "02.08.2025", + }, + }, + { + date: "02.08.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlhzMucDOz0ybuYGMx0ic3pnL2EmYtUWat5CMuUTMuAjLyEjL0EjMto2MCVyMDVyd6hSI", + value: "!(zwój-214.12.0.15.0.mie-ba6.zwr-10f.o-387.38e)!", + result: { + word: "zwój", + correct: 12, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "02.08.2025", + }, + }, + { + date: "02.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlhzMt82d65yM5ITL69WbuYDNl1CczdnLw4SNx4iMucjL0EjMto2MCVyMDVyd6hSI", + value: "!(zwój-214.7.2.15.0.wsp-e46.moz-293.zwo-38e)!", + result: { + word: "zwój", + correct: 7, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "02.08.2025", + }, + }, + { + date: "02.08.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZ4MjL3gzMt82d65yMjJTLhl2duEWMh1ieytmLkhTMtA3ch5CMugTMuEjLwEjL0EjMto2MCVyMDVyd6hSI", + value: "!(zwój-214.10.1.18.0.asp-18d.krz-a1a.wia-2c3.zwo-387.38e)!", + result: { + word: "zwój", + correct: 10, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "02.08.2025", + }, + }, + { + date: "02.08.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZ4MjL3gzMt8mLzczNtE2d65iMzMTMtwWe35CMuATMuEjLwEjL0EjMto2MCVyMDVyd6hSI", + value: "!(zwój-214.10.1.10.0.wyl-1332.zwa-773.o-387.38e)!", + result: { + word: "zwój", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "02.08.2025", + }, + }, + { + date: "02.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUGOz0yb3pnL1UjMto2b35yM5gTYx0ieyBnLw4CMy4CMucjL0EjMto2MCVyMDVyd6hSI", + value: "!(zwój-214.7.0.20.0.prz-1a893.woj-255.zwo-38e)!", + result: { + word: "zwój", + correct: 7, + position: 0, + incorrect: 20, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "02.08.2025", + }, + }, + { + date: "02.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlhzMuQjYz0yb3pnL1UWLnp3duM2Nx0iYlpnLxQTNtUHbz5yYhJGNtQ2bw5CMuEjMuEjLyEjL0EjMto2MCVyMDVyd6hSI", + value: "!(zwój-214.12.1.21.0.pod-4bac.slu-541.zeb-17c.wzg-e5.zwo-3b4.38e)!", + result: { + word: "zwój", + correct: 12, + position: 1, + incorrect: 21, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "02.08.2025", + }, + }, + { + date: "02.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUGOz0yb35COmNTLvJmLxAjMt8mb65CO1ITLoN2MukzYx0CZhpmL4AzNtwWat5CMuQTMuAjLyEjL0EjMto2MCVyMDVyd6hSI", + value: + "!(zwój-214.12.0.14.0.mil-708.jad-1c9.3ch-258.zno-201.bo-3f8.wo-38e)!", + result: { + word: "zwój", + correct: 12, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 26, + date: "02.08.2025", + }, + }, + { + date: "02.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUGOz0yb35CNwITLlpmeuYmYy0SdoNmLw4CMx4iMucjL0EjMto2MCVyMDVyd6hSI", + value: "!(zwój-214.7.2.10.0.chu-2bf.zje-204.wo-38e)!", + result: { + word: "zwój", + correct: 7, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "02.08.2025", + }, + }, + { + date: "02.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlhzMt82d65COh1yYhNnL4ATMtw2b65SY5QTL1x2cuMmNh1SYydmLw4COx4CMuUjL0EjMto2MCVyMDVyd6hSI", + value: "!(zwój-214.5.0.18.0.gra-a6c.slu-49a.zol-108.sac-a8.zwo-38e)!", + result: { + word: "zwój", + correct: 5, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 23, + date: "02.08.2025", + }, + }, + { + date: "02.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZ4MTLvdneuQ2Y00CblhmL4EWLvd3cuEWO20CZvdnLkVmMtcXe65CMuYTMuAjLwEjL0EjMto2MCVyMDVyd6hSI", + value: "!(zwój-214.10.0.16.0.zyw-2ed.wod-69a.swo-a8.hel-4cd.zwo-38e)!", + result: { + word: "zwój", + correct: 10, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "02.08.2025", + }, + }, + { + date: "02.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUGOz0yb35iY2UTLv1mLhJWYtMWYugTOt8me65CMuMTMuEjLwEjL0EjMto2MCVyMDVyd6hSI", + value: "!(zwój-214.10.1.13.0.zzo-98.ac-aba.mo-56b.wo-38e)!", + result: { + word: "zwój", + correct: 10, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "02.08.2025", + }, + }, + { + date: "02.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlhzMt82duUjZ5ETL3FmL4kTLvpneuAjL44CMukjL0EjMto2MCVyMDVyd6hSI", + value: "!(zwój-214.9.0.8.0.zzo-98.aw-19f5.wo-38e)!", + result: { + word: "zwój", + correct: 9, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "02.08.2025", + }, + }, + { + date: "02.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZ4MTLvdneuQGOx0yb6NmLkFzNz0ieyBnLw4SNx4CMugjL0EjMto2MCVyMDVyd6hSI", + value: "!(zwój-214.8.0.15.0.prz-371d.czo-18d.zwo-38e)!", + result: { + word: "zwój", + correct: 8, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "02.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/w-czwartym-tradycyjnie-pomylilem-sie-o-jedna-litere-23-07-2025-diffle-difflepl-g" +] = [ + { + date: "23.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3YTOx0CduYGNlFTLt9GcuIGMx0Sew9mLlNGOtI2bk5yM0MTMtwWe35CMuITMuIjLxIjL0AjMtcDOlQzQlE2a5R3bwhSI", + value: "!(potykać-204.21.2.12.0.wyl-1343.dob-8ce.opy-10b.pom-1e4f.t-1967)!", + result: { + word: "potykać", + correct: 21, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "23.07.2025", + }, + }, + { + date: "23.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN2kTMtQ3buMTL0lnLkFzNz0ieyBnLw4COuEjL1EjL0AjMtcDOlQzQlE2a5R3bwhSI", + value: "!(potykać-204.15.1.8.0.prz-371d.yt-3.ot-1967)!", + result: { + word: "potykać", + correct: 15, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "23.07.2025", + }, + }, + { + date: "23.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN2kTMtQnLmRTZx0SbuETYj1yavBnL2QTZtA3c35CMuQTMuAjLxIjL0AjMtcDOlQzQlE2a5R3bwhSI", + value: "!(potykać-204.21.0.14.0.wsp-e46.pok-ca1.m-1e4f.t-1967)!", + result: { + word: "potykać", + correct: 21, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "23.07.2025", + }, + }, + { + date: "23.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3YTOx4SNidTL05SOlRTMtcnLiRDMx0iYucjMtwmLy0CZvBnLkhTMtA3ch5CMuQTMuEjLzMjL0AjMtcDOlQzQlE2a5R3bwhSI", + value: + "!(potykać-204.33.1.14.0.asp-18d.pod-2.l-27.b-104b.w-14e9.t-7b5.1967)!", + result: { + word: "potykać", + correct: 33, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 48, + date: "23.07.2025", + }, + }, + { + date: "23.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjN5ETL05CZ5kTYtQmL0QGNy0ycvBnLmJmMtUHaj5CMuATMuAjLxIjL0AjMtcDOlQzQlE2a5R3bwhSI", + value: "!(potykać-204.21.0.10.0.chu-2bf.pos-24d4.d-a99d.t-1967)!", + result: { + word: "potykać", + correct: 21, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "23.07.2025", + }, + }, + { + date: "23.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN2kTMtQ3bw5CO00Sew9mL5kjMtAXe35CO50yb6pnLw4SOuMjL4EjL0AjMtcDOlQzQlE2a5R3bwhSI", + value: "!(potykać-204.18.3.9.0.zzo-98.wyp-299.opy-48.pot-1967)!", + result: { + word: "potykać", + correct: 18, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "23.07.2025", + }, + }, + { + date: "23.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3YTOx0Cdv5yM5gTYx0ieyBnLw4SOuEjLwEjL0AjMtcDOlQzQlE2a5R3bwhSI", + value: "!(potykać-204.10.1.9.0.prz-1a893.ot-1967)!", + result: { + word: "potykać", + correct: 10, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "23.07.2025", + }, + }, + { + date: "23.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjN5EjL1QGNx0CduEDZ1QTLw9GcuU2MtknYv5iMzMTMtMXe35CMuETMuEjLzIjL0AjMtcDOlQzQlE2a5R3bwhSI", + value: "!(potykać-204.23.1.11.0.wys-1332.oby-3e.pop-45d1.t-14d5.1967)!", + result: { + word: "potykać", + correct: 23, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "23.07.2025", + }, + }, + { + date: "23.07.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN2kTMuUjY34CZkVTMtQnL0QGNy0ycuUjMzQTLk5iNiRWMtw2buQjYt0WYw5CMuATMuAjL0MjL0AjMtcDOlQzQlE2a5R3bwhSI", + value: + "!(potykać-204.34.0.10.0.pam-b4.ol-1db6.d-4325.s-24d4.t-15dd.7b5.1967)!", + result: { + word: "potykać", + correct: 34, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 44, + date: "23.07.2025", + }, + }, + { + date: "23.07.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN2kTMtQ3bw5CZj1CdvtmL2EmYtUWat5CMuETMuIjLzEjL0AjMtcDOlQzQlE2a5R3bwhSI", + value: "!(potykać-204.13.2.11.0.mie-ba6.kot-cd.pot-1967)!", + result: { + word: "potykać", + correct: 13, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "23.07.2025", + }, + }, + { + date: "23.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN2kTMtQnLjhzMx0iYuUDMkVTL65yYhJGNtQ2bw5CMuATMuAjLyIjL0AjMtcDOlQzQlE2a5R3bwhSI", + value: "!(potykać-204.22.0.10.0.pod-4bac.z-5d05.b-138c.t-1967)!", + result: { + word: "potykać", + correct: 22, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "23.07.2025", + }, + }, + { + date: "23.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjN5ETL09GcuYWOj1CdvRmLkNTMtkHdz5SZyITMtMWe35CMuATMuEjLwIjL0AjMtcDOlQzQlE2a5R3bwhSI", + value: "!(potykać-204.20.1.10.0.wyc-122e.sty-13d.dot-c9f.pot-1967)!", + result: { + word: "potykać", + correct: 20, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "23.07.2025", + }, + }, + { + date: "23.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjN5ETL05CNkRjMtM3bw5SO5ETLvJHdugDM30Cbp1mLw4iNuEjL2EjL0AjMtcDOlQzQlE2a5R3bwhSI", + value: "!(potykać-204.16.1.6.0.mil-708.tro-199.pos-24d4.t-1967)!", + result: { + word: "potykać", + correct: 16, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "23.07.2025", + }, + }, + { + date: "23.07.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjN5ETL09GcugDNzETLvB3cuMmMtE2a05yNl1yb6pnLw4SOuEjL5EjL0AjMtcDOlQzQlE2a5R3bwhSI", + value: "!(potykać-204.19.1.9.0.zzo-e7.tka-2c.spo-1348.pot-1967)!", + result: { + word: "potykać", + correct: 19, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "23.07.2025", + }, + }, + { + date: "23.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN2kTMuUjY30CduQDZ0ITLz9mLlRWZtEmcuMTYk1ychBnLmZGOtoXY65CMuATMuEjL1IjL0AjMtcDOlQzQlE2a5R3bwhSI", + value: + "!(potykać-204.25.1.10.0.zaz-8ff.pas-da3.ra-ede.os-24d4.t-7b5.1967)!", + result: { + word: "potykać", + correct: 25, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "23.07.2025", + }, + }, + { + date: "23.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN2kTMtQ3bw5yYy0SYrRnL1EjNtE2dr5CO50yb6pnLw4SOuAjL2EjL0AjMtcDOlQzQlE2a5R3bwhSI", + value: "!(potykać-204.16.0.9.0.zzo-98.kwa-615.tka-2c.pot-1967)!", + result: { + word: "potykać", + correct: 16, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "23.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/wcale-nie-slightly-smiling-face-22-06-2025-diffle-difflepl-grywebowe-31-liter-w-" +] = [ + { + date: "22.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyYWLvJXdukDNx0ybyRnL1cTLvJnYuUWNy0CZvJnLiVWOtM3br5CMuETMuEjL5EjLzcTMt8mej9mc1hSI", + value: "!(uroczo-173.19.1.11.0.kos-9eb.rod-25e.bro-75.tro-149.uro-f2)!", + result: { + word: "uroczo", + correct: 19, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "22.06.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyYWLvJnL3UDNt8Gc15CMuETMuAjLwEjLzcTMt8mej9mc1hSI", + value: "!(uroczo-173.10.0.11.0.upo-457.ro-f2)!", + result: { + word: "uroczo", + correct: 10, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + }, + }, + { + date: "22.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjZt8mc15CN3YTL1t2cuMTO4EWMtoncw5CMuETMuIjLyEjLzcTMt8mej9mc1hSI", + value: "!(uroczo-173.12.2.11.0.prz-1a893.sku-674.uro-f2)!", + result: { + word: "uroczo", + correct: 12, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "22.06.2025", + }, + }, + { + date: "22.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyYWLvJXduQTOx0ybytmLkJDNtIHcz5CMuETMuAjLzEjLzcTMt8mej9mc1hSI", + value: "!(uroczo-173.13.0.11.0.spr-42d.kro-194.uro-f2)!", + result: { + word: "uroczo", + correct: 13, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "22.06.2025", + }, + }, + { + date: "22.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMm1ybyVnLycjNtIXdi5yYhNTLzVncuMmNh1SYydmLw4COuEjLyEjLzcTMt8mej9mc1hSI", + value: "!(uroczo-173.12.1.8.0.gra-a6c.rus-3ac.bur-672.uro-f2)!", + result: { + word: "uroczo", + correct: 12, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "22.06.2025", + }, + }, + { + date: "22.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyYWLvJXduYmY40SdydmL0EWNtonc0VWau5CMuQTMuEjLyEjLzcTMt8mej9mc1hSI", + value: "!(uroczo-173.12.1.14.0.nietrz-5a4.gru-8bf.uro-f2)!", + result: { + word: "uroczo", + correct: 12, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "22.06.2025", + }, + }, + { + date: "22.06.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjZt8mc15SNwcTZto3by5iYwMTMtQWYu5CMuATMuEjLyEjLzcTMt8mej9mc1hSI", + value: "!(uroczo-173.12.1.10.0.nad-130b.roz-e705.uro-f2)!", + result: { + word: "uroczo", + correct: 12, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "22.06.2025", + }, + }, + { + date: "22.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjZt8mc15SYzQTL6N2buADZukjZ10CajNjLh1yY1JnLmNTMtMXdz5iZz0Cb1JnLw0Cc1dmLjJTL5JnZuYTMt0WYj5CMuEjMuUjLxIjLzcTMt8mej9mc1hSI", + value: + "!(uroczo-173.21.5.21.0.cam-16.fry-2c.gup-0.rul-3f.sus-13f.ruc-a.3ch-5f9.d0.ocz-43a.uro-f2)!", + result: { + word: "uroczo", + correct: 21, + position: 5, + incorrect: 21, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 47, + date: "22.06.2025", + }, + }, + { + date: "22.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjZt8mcuEWMx0SZiVnLw4COuAjLwEjLzcTMt8mej9mc1hSI", + value: "!(uroczo-173.10.0.8.0.ube-11a.ro-f2)!", + result: { + word: "uroczo", + correct: 10, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "22.06.2025", + }, + }, + { + date: "22.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyYWLv5CMtwmc15yNy0ya1VmLw4SOuAjLyEjLzcTMt8mej9mc1hSI", + value: "!(uroczo-173.12.0.9.0.euk-27.url-0.o-f2)!", + result: { + word: "uroczo", + correct: 12, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "22.06.2025", + }, + }, + { + date: "22.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyYWLvJXduUDM3UWL69mcuQjZx0CZ5dnLw4SOuAjLyEjLzcTMt8mej9mc1hSI", + value: "!(uroczo-173.12.0.9.0.wyd-1f4.roz-e705.uro-f2)!", + result: { + word: "uroczo", + correct: 12, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "22.06.2025", + }, + }, + { + date: "22.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMm1ybyVnL2ETMtUncr5SYxczMtoncw5CMuETMuEjLxEjLzcTMt8mej9mc1hSI", + value: "!(uroczo-173.11.1.11.0.prz-371a.kru-116.uro-f2)!", + result: { + word: "uroczo", + correct: 11, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "22.06.2025", + }, + }, + { + date: "22.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMm5COj1ybyVnL0ImNtE2dr5CMuATMuIjL0EjLzcTMt8mej9mc1hSI", + value: "!(uroczo-173.14.2.10.0.kwa-6b4.uro-c8.f2)!", + result: { + word: "uroczo", + correct: 14, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "22.06.2025", + }, + }, + { + date: "22.06.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMm1ybyVnL0ITNtg2Yv5iNi1yY6NmL2EmYtUWat5SMuYTMuEjL1EjLzcTMt8mej9mc1hSI", + value: "!(uroczo-173.15.1.16.1.mie-ba6.czc-b6.och-524.uro-f2)!", + result: { + word: "uroczo", + correct: 15, + position: 1, + incorrect: 16, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 32, + date: "22.06.2025", + }, + }, + { + date: "22.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyYWLvJXduMmZy0ybyRmLhFjM10ievBnLw4SOuAjLyEjLzcTMt8mej9mc1hSI", + value: "!(uroczo-173.12.0.9.0.poz-521a.dro-2fc.uro-f2)!", + result: { + word: "uroczo", + correct: 12, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "22.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/wkurzajaco-nieoczywiste-08-08-2025-flag-pl-diffle-difflepl-grywebowe-32-litery-w" +] = [ + { + date: "08.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZlFTLt9GauETOz4iY4MjL5gzMtg2Yz4iM20ybtNnLiJDNtw2bw5yMjJTL5JnZuAjL4EjLw4CNx4CMyITLv12bohSI", + value: + "!(homo-220.14.0.18.0.fry-2c3.pol-42b.smo-62.3ch-389.38b.391.hom-1ee)!", + result: { + word: "homo", + correct: 14, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 32, + date: "08.08.2025", + }, + }, + { + date: "08.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZlFTLt9GauQTOy0SdoNmLi1Cbt9mL5YWOtM3br5CMuMTMuAjL54CMyITLv12bohSI", + value: "!(homo-220.9.0.13.0.kos-9f9.oml-b.chu-294.hom-1ee)!", + result: { + word: "homo", + correct: 9, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "08.08.2025", + }, + }, + { + date: "08.08.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlVWMt02bo5CNxETLtV3ZuQGOz0CajNjL0EWNtonc0VWau5CMucTMuAjL54CMyITLv12bohSI", + value: "!(homo-220.9.0.17.0.nietrz-5a4.3ch-38d.gum-114.hom-1ee)!", + result: { + word: "homo", + correct: 9, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "08.08.2025", + }, + }, + { + date: "08.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlVWMt02bo5iMy0yY11mL0EWNtonc0VWau5CMuYTMuEjL34CMyITLv12bohSI", + value: "!(homo-220.7.1.16.0.nietrz-5a4.muc-22.hom-1ee)!", + result: { + word: "homo", + correct: 7, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "08.08.2025", + }, + }, + { + date: "08.08.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUWZx0SbvhmLzgDNtw2bz5SYkJjMts2bw5CMuETMuAjL44CMyITLv12bohSI", + value: "!(homo-220.8.0.11.0.pok-22da.sol-483.hom-1ee)!", + result: { + word: "homo", + correct: 8, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "08.08.2025", + }, + }, + { + date: "08.08.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlVWMt02bo5CNwITLs9WbuEzN00CdvtmLkJDNtIHcz5CMuUTMuEjL44CMyITLv12bohSI", + value: "!(homo-220.8.1.15.0.spr-42d.kot-471.mol-204.hom-1ee)!", + result: { + word: "homo", + correct: 8, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "08.08.2025", + }, + }, + { + date: "08.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZlFTLt9GauYmYy0SdoNmLw4COuAjL24CMyITLv12bohSI", + value: "!(homo-220.6.0.8.0.chu-2bf.hom-1ee)!", + result: { + word: "homo", + correct: 6, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "08.08.2025", + }, + }, + { + date: "08.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZlFTLt9GauAzNtg2bi5CZtM2bm5SYxczMtoncw5CMuQTMuIjL34CMyITLv12bohSI", + value: "!(homo-220.7.2.14.0.prz-371a.foc-d.boh-70.hom-1ee)!", + result: { + word: "homo", + correct: 7, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "08.08.2025", + }, + }, + { + date: "08.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUWZx0SbvhmLk1yYvZmLklDNz0ycvBnLjZTYtEmcn5CMuITMuEjL24CMyITLv12bohSI", + value: "!(homo-220.6.1.12.0.gra-a6c.pos-349d.foc-d.hom-1ee)!", + result: { + word: "homo", + correct: 6, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 19, + date: "08.08.2025", + }, + }, + { + date: "08.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlVWMt02bo5yN0ITLq92duMTO4EWMtoncw5CMuYTMuEjL34CMyITLv12bohSI", + value: "!(homo-220.7.1.16.0.prz-1a893.woj-247.hom-1ee)!", + result: { + word: "homo", + correct: 7, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "08.08.2025", + }, + }, + { + date: "08.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlVWMt02bo5CNwITLs9WbuQTM10CajNjL0YWMtQWe35CMuITMuEjL34CMyITLv12bohSI", + value: "!(homo-220.7.1.12.0.wyd-1f4.3ch-514.mol-204.hom-1ee)!", + result: { + word: "homo", + correct: 7, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "08.08.2025", + }, + }, + { + date: "08.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlVWMt02bo5SZyUTLv1meuATLv12ZuYGOz0CajNjL3ITLrVXZuAjL0EjLx4SMx4CMyITLv12bohSI", + value: "!(homo-220.11.1.14.0.euk-27.3ch-38f.gmo-0.zmo-52e.hom-1ee)!", + result: { + word: "homo", + correct: 11, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "08.08.2025", + }, + }, + { + date: "08.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlVWMt02bo5SN30ybtNnL5QjMtQ2bt5CMuITMuAjL44CMyITLv12bohSI", + value: "!(homo-220.8.0.12.0.mod-249.smo-75.hom-1ee)!", + result: { + word: "homo", + correct: 8, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "08.08.2025", + }, + }, + { + date: "08.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUWZx0SbvhmL0ImNtE2dr5CMuMTMuAjL24CMyITLv12bohSI", + value: "!(homo-220.6.0.13.0.kwa-6b4.hom-1ee)!", + result: { + word: "homo", + correct: 6, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "08.08.2025", + }, + }, + { + date: "08.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZlFTLt9GauQDMy0Cbv1mLyEjM10ievBnLw4SOuEjL34CMyITLv12bohSI", + value: "!(homo-220.7.1.9.0.poz-5212.mol-204.hom-1ee)!", + result: { + word: "homo", + correct: 7, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "08.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/wlasciwie-latwe-ale-ma-nietypowa-ceche-co-moze-utrudnic-14-07-2025-diffle-diffle" +] = [ + { + date: "14.07.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKj1CZydmLwEWMtUHaj5CO3MTLrFGdukjMx0SeyJmLiVWOtM3br5CMuQTMuEjL3EjL1kTMtE2a5RmcnhSI", + value: "!(grdyka-195.17.1.14.0.kos-9eb.bry-129.tak-378.chu-1a0.grd-c)!", + result: { + word: "grdyka", + correct: 17, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "14.07.2025", + }, + }, + { + date: "14.07.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKj1CZukzN00SdydmLkJDNtIHcz5CMuATMuAjL0EjL1kTMtE2a5RmcnhSI", + value: "!(grdyka-195.14.0.10.0.spr-42d.gru-479.d-c)!", + result: { + word: "grdyka", + correct: 14, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "14.07.2025", + }, + }, + { + date: "14.07.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKj1CZydmL0EWNtonc0VWau5CMuATMuEjLwEjL1kTMtE2a5RmcnhSI", + value: "!(grdyka-195.10.1.10.0.nietrz-5a4.grd-c)!", + result: { + word: "grdyka", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "14.07.2025", + }, + }, + { + date: "14.07.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWLkJ3ZuAzM00CajNjLjNTLmVHbuEjY40CajNnLjBTMtknL4cDOtonLjZTYtEmcn5CMuUTMuEjLwIjL1kTMtE2a5RmcnhSI", + value: + "!(grdyka-195.20.1.15.0.gra-a6c.z-878.y-10c.sch-8b1.luf-3c.3ch-430.grd-c)!", + result: { + word: "grdyka", + correct: 20, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 36, + date: "14.07.2025", + }, + }, + { + date: "14.07.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKj1CZydmLyIWNx0ic0NnLidTMtIWey5SYkJjMts2bw5CMuITMuEjL3EjL1kTMtE2a5RmcnhSI", + value: "!(grdyka-195.17.1.12.0.pok-22da.ryb-17b.str-15b2.grd-c)!", + result: { + word: "grdyka", + correct: 17, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "14.07.2025", + }, + }, + { + date: "14.07.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWLkJ3ZuI2Nx0iY5JnLw0yayFmLmJmMtUHaj5CMuETMuAjL0EjL1kTMtE2a5RmcnhSI", + value: "!(grdyka-195.14.0.11.0.chu-2bf.ark-0.ryb-17b.grd-c)!", + result: { + word: "grdyka", + correct: 14, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "14.07.2025", + }, + }, + { + date: "14.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKj1CZuUTZtkncn5yNyETLkF2cuATMy0SYyRnL5QmMx0ich1mLmZjZtUWaw5SMucTMuEjL0IjL1kTMtE2a5RmcnhSI", + value: + "!(grdyka-195.24.1.17.1.pie-f6f.mar-12d9.tra-210.sad-127.gry-e5.d-c)!", + result: { + word: "grdyka", + correct: 24, + position: 1, + incorrect: 17, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 42, + date: "14.07.2025", + }, + }, + { + date: "14.07.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKj1CZukzN00SdydmLhFzNz0ieyBnLw4SOuAjL0EjL1kTMtE2a5RmcnhSI", + value: "!(grdyka-195.14.0.9.0.prz-371a.gru-479.d-c)!", + result: { + word: "grdyka", + correct: 14, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "14.07.2025", + }, + }, + { + date: "14.07.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKj1CZydmL5kTMtUmcr5CNyMTMtIHdz5iNyEmMt8mcw5CMuMTMuAjL2EjL1kTMtE2a5RmcnhSI", + value: "!(grdyka-195.16.0.13.0.pro-2a26.str-1324.kre-199.grd-c)!", + result: { + word: "grdyka", + correct: 16, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "14.07.2025", + }, + }, + { + date: "14.07.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYtQmcn5CMxITLhJHduATLylHZuQjZx0CZ5dnLw4SOuMjL1EjL1kTMtE2a5RmcnhSI", + value: "!(grdyka-195.15.3.9.0.wyd-1f4.dyr-0.tra-210.grd-c)!", + result: { + word: "grdyka", + correct: 15, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "14.07.2025", + }, + }, + { + date: "14.07.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYtQmL1UWL5J3ZuITZ10ichJmL2EmYtUWat5CMuQTMuAjL2EjL1kTMtE2a5RmcnhSI", + value: "!(grdyka-195.16.0.14.0.mie-ba6.bar-5e2.gry-e5.d-c)!", + result: { + word: "grdyka", + correct: 16, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "14.07.2025", + }, + }, + { + date: "14.07.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWLkJ3ZugDN10SZpBnLw4iNuAjLxEjL1kTMtE2a5RmcnhSI", + value: "!(grdyka-195.11.0.6.0.pie-548.grd-c)!", + result: { + word: "grdyka", + correct: 11, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "14.07.2025", + }, + }, + { + date: "14.07.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWLk5yNiNTL5J3ZuMTO4EWMtoncw5CMuITMuAjLzEjL1kTMtE2a5RmcnhSI", + value: "!(grdyka-195.13.0.12.0.prz-1a893.gry-3b7.d-c)!", + result: { + word: "grdyka", + correct: 13, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "14.07.2025", + }, + }, + { + date: "14.07.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYtQmcn5iZ00SeyZmLw0CZ1JnL5QjMtQ2bt5CMuETMuIjL0EjL1kTMtE2a5RmcnhSI", + value: "!(grdyka-195.14.2.11.0.mod-249.rud-0.fry-4f.grd-c)!", + result: { + word: "grdyka", + correct: 14, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "14.07.2025", + }, + }, + { + date: "14.07.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWLkJ3ZukjMx0SeyJmL0ImNtE2dr5CMuITMuIjLyEjL1kTMtE2a5RmcnhSI", + value: "!(grdyka-195.12.2.12.0.kwa-6b4.bry-129.grd-c)!", + result: { + word: "grdyka", + correct: 12, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "14.07.2025", + }, + }, + { + date: "14.07.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKj1CZydmLklzNtonci5SZ10yc5JnL3YWLylHcucjMtsWdl5CMuITMuQjL5EjL1kTMtE2a5RmcnhSI", + value: "!(grdyka-195.19.4.12.0.euk-27.pyr-f7.rys-5e.brz-79d.grd-c)!", + result: { + word: "grdyka", + correct: 19, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "14.07.2025", + }, + }, + { + date: "14.07.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKj1CZydmLmNWOtknc05SYxITNto3bw5CMuETMuAjLzEjL1kTMtE2a5RmcnhSI", + value: "!(grdyka-195.13.0.11.0.poz-521a.try-9cf.grd-c)!", + result: { + word: "grdyka", + correct: 13, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "14.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/wlasciwie-to-latwe-i-mialem-wiekszosc-liter-ale-slowo-nie-chcialo-sie-zlozyc-moz" +] = [ + { + date: "02.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATL6VWbuE2Mx0CbpNnLw0SZs5SN2EWLllWbukjZ50ycvtmLw4iNugjLyIjLzUTMtMnbhlGbhpXZthSI", + value: "!(mezalians-153.22.8.6.0.kos-9f9.mie-a65.le-0.sil-13a.mez-0)!", + result: { + word: "mezalians", + correct: 22, + position: 8, + incorrect: 6, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "02.06.2025", + }, + }, + { + date: "02.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0iel5CZ4EWLllWbuMmNh1SYydmLw4yMuQjL2EjLzUTMtMnbhlGbhpXZthSI", + value: "!(mezalians-153.16.4.3.0.gra-a6c.mie-a8d.ez-0)!", + result: { + word: "mezalians", + correct: 16, + position: 4, + incorrect: 3, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "02.06.2025", + }, + }, + { + date: "02.06.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATL6VmLw0SZs1mLw0Sat5CN50SaipnLzETNtkmek5SYkJjMts2bw5CMuETMuUjL1IjLzUTMtMnbhlGbhpXZthSI", + value: + "!(mezalians-153.25.5.11.0.pok-22da.dzi-513.zbi-94.mi-0.mle-0.ez-0)!", + result: { + word: "mezalians", + correct: 25, + position: 5, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 41, + date: "02.06.2025", + }, + }, + { + date: "02.06.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0iel5CMt4Wat5SN5ITLoN2MucTZ1ATMtoncw5CMtoXZz5CMtoXZi5yNwETLp1WZuYTZj1SbhpnLmJmMtUHaj5CMuUTMukjLwMjLzUTMtMnbhlGbhpXZthSI", + value: + "!(mezalians-153.30.9.15.0.chu-2bf.zam-ce6.emi-107.bez-0.sez-0.prz-105e7.3ch-295.min-0.ez-0)!", + result: { + word: "mezalians", + correct: 30, + position: 9, + incorrect: 15, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 54, + date: "02.06.2025", + }, + }, + { + date: "02.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtoXZt5CO5QTLzFmeuQmM00icwNnLw4SNuYjL3EjLzUTMtMnbhlGbhpXZthSI", + value: "!(mezalians-153.17.6.5.0.spr-42d.zas-498.mez-0)!", + result: { + word: "mezalians", + correct: 17, + position: 6, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "02.06.2025", + }, + }, + { + date: "02.06.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtoXZuYTYi1SZp1mLw4iNuIjL1EjLzUTMtMnbhlGbhpXZthSI", + value: "!(mezalians-153.15.2.6.0.mie-ba6.ez-0)!", + result: { + word: "mezalians", + correct: 15, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "02.06.2025", + }, + }, + { + date: "02.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATL6VWbuUGZx0CbhpnLykTZtEmez5SOwU2Ytoncw5CMuATMuYjLwIjLzUTMtMnbhlGbhpXZthSI", + value: "!(mezalians-153.20.6.10.0.prz-ce09.sza-e92.zal-1de.mez-0)!", + result: { + word: "mezalians", + correct: 20, + position: 6, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "02.06.2025", + }, + }, + { + date: "02.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtoXZt5CNj1Sas5yMwETLllmeuQjZx0CZ5dnLw4SOuYjLwIjLzUTMtMnbhlGbhpXZthSI", + value: "!(mezalians-153.20.6.9.0.wyd-1f4.zie-103.li-c4.mez-0)!", + result: { + word: "mezalians", + correct: 20, + position: 6, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "02.06.2025", + }, + }, + { + date: "02.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtoXZt5yN0ITLq92duMTO4EWMtoncw5CMuITMuMjL0EjLzUTMtMnbhlGbhpXZthSI", + value: "!(mezalians-153.14.3.12.0.prz-1a893.woj-247.mez-0)!", + result: { + word: "mezalians", + correct: 14, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "02.06.2025", + }, + }, + { + date: "02.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtoXZt5CNx0SdlZmLw4yMuIjLzEjLzUTMtMnbhlGbhpXZthSI", + value: "!(mezalians-153.13.2.3.0.feu-14.mez-0)!", + result: { + word: "mezalians", + correct: 13, + position: 2, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "02.06.2025", + }, + }, + { + date: "02.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtoXZt5iZx0ya1VmLw4SNuAjLzEjLzUTMtMnbhlGbhpXZthSI", + value: "!(mezalians-153.13.0.5.0.euk-1f.mez-0)!", + result: { + word: "mezalians", + correct: 13, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "02.06.2025", + }, + }, + { + date: "02.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0iel1mLhFjM10ievBnLw4CNuMjLyEjLzUTMtMnbhlGbhpXZthSI", + value: "!(mezalians-153.12.3.4.0.poz-521a.mez-0)!", + result: { + word: "mezalians", + correct: 12, + position: 3, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "02.06.2025", + }, + }, + { + date: "02.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATL6VWbuATY00ychpnLhFzNz0ieyBnLw4iNuQjL4EjLzUTMtMnbhlGbhpXZthSI", + value: "!(mezalians-153.18.4.6.0.prz-371a.zas-4a0.mez-0)!", + result: { + word: "mezalians", + correct: 18, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "02.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/za-duzo-slow-z-taka-sama-koncowka-02-10-2025-diffle-difflepl-grywebowe-28-liter-" +] = [ + { + date: "02.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxgjNtEWai5SY1ITL1xGcuQzMi1Cbh1mLkVTL6lHbuMDNzETLsl3duAjL1EjLy4SMx4SN3ITL5JDOlUzQlEWaihSI", + value: "!(biały-275.11.2.15.0.wyl-1343.lyz-5d.mal-b34.plu-25a.bia-681)!", + result: { + word: "biały", + correct: 11, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "02.10.2025", + }, + }, + { + date: "02.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDO20SYucDZy0Cbp5iMxETLz9mYuIjN1kTL6JHcuAjLzEjLy4SMx4SN3ITL5JDOlUzQlEWaihSI", + value: "!(biały-275.11.2.13.0.prz-9562.bos-112.il-2d7.a-681)!", + result: { + word: "biały", + correct: 11, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "02.10.2025", + }, + }, + { + date: "02.10.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM4YTLhlmL4M2MtEmci5SOhNTLhx2cuMWYx0ybs1mL4kTLvpneuAjLyEjLy4CNx4SN3ITL5JDOlUzQlEWaihSI", + value: "!(biały-275.14.2.12.0.zzo-98.mlo-1ac.sla-3a9.bra-3c8.ia-681)!", + result: { + word: "biały", + correct: 14, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "02.10.2025", + }, + }, + { + date: "02.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDO20SYpJmLzQ2Mx0Cd5dnL0MjYtwWYt5CZ4ETLwNXYuAjL2EjLw4yMx4SN3ITL5JDOlUzQlEWaihSI", + value: "!(biały-275.13.0.16.0.asp-18d.mal-b34.wyt-13d3.bia-681)!", + result: { + word: "biały", + correct: 13, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "02.10.2025", + }, + }, + { + date: "02.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDO20SYpJmLjFmZtEGbw5SZtsWaz5iZiJTL1h2YuAjL1EjLw4SMx4SN3ITL5JDOlUzQlEWaihSI", + value: "!(biały-275.11.0.15.0.chu-2bf.sik-e.pla-fac.bia-681)!", + result: { + word: "biały", + correct: 11, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "02.10.2025", + }, + }, + { + date: "02.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM4YTLhlmYuQGOz0iYh5mL2ITNtw2b65CMukjLy4CMx4SN3ITL5JDOlUzQlEWaihSI", + value: "!(biały-275.10.2.9.0.zol-526.nab-38d.bia-681)!", + result: { + word: "biały", + correct: 10, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "02.10.2025", + }, + }, + { + date: "02.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxgjNtEWai5iZ20SYydnL0MjYtwWYt5yY30CcvxmL4kTLvpneuAjL1EjLx4CNx4SN3ITL5JDOlUzQlEWaihSI", + value: "!(biały-275.14.1.15.0.zzo-98.lop-7c.mal-b34.wra-6f.bia-681)!", + result: { + word: "biały", + correct: 14, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "02.10.2025", + }, + }, + { + date: "02.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDO20SYpJmLkVWLhlGZuUTNy0iavdnLzkDOhFTL6JHcuAjLxIjLy4SMx4SN3ITL5JDOlUzQlEWaihSI", + value: "!(biały-275.11.2.21.0.prz-1a893.woj-255.dia-ed.bia-681)!", + result: { + word: "biały", + correct: 11, + position: 2, + incorrect: 21, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "02.10.2025", + }, + }, + { + date: "02.10.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDO20SYpJmL4ITLhlGcuQDZz0Sa6RmL3kzNtwWat5iMzMTMtMXe35CMukjLy4yNx4SN3ITL5JDOlUzQlEWaihSI", + value: "!(biały-275.17.2.9.0.wys-1332.mil-797.dzi-3d4.pia-28.bia-681)!", + result: { + word: "biały", + correct: 17, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "02.10.2025", + }, + }, + { + date: "02.10.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDO20SYucDZy0CbpJmLkljMtUHaj5iN0UWLwN3duAjL4EjLy4CMx4SN3ITL5JDOlUzQlEWaihSI", + value: "!(biały-275.10.2.18.0.wsp-e46.chu-29d.bil-2d7.a-681)!", + result: { + word: "biały", + correct: 10, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "02.10.2025", + }, + }, + { + date: "02.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM4YjL2ITMtEWai5SO50ibpZmL4Y2NtwGcz5iZ5QTLvxmeuAjLxEjLy4CNx4SN3ITL5JDOlUzQlEWaihSI", + value: "!(biały-275.14.2.11.0.zlo-49f.spl-7f8.fin-99.bia-126.681)!", + result: { + word: "biały", + correct: 14, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "02.10.2025", + }, + }, + { + date: "02.10.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM4YTLhlmYucTO30Cbp1mL0MzMx0Cb5dnLw4yNuIjL54SN3ITL5JDOlUzQlEWaihSI", + value: "!(biały-275.9.2.7.0.wyl-1334.mil-797.bia-681)!", + result: { + word: "biały", + correct: 9, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "02.10.2025", + }, + }, + { + date: "02.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDO20SYpJmLwQ2NtEGdz5CNzIWLsFWbuMWYiRTLk9GcuAjLwEjLw4yMx4SN3ITL5JDOlUzQlEWaihSI", + value: "!(biały-275.13.0.10.0.pod-4bac.mal-b34.sta-7d0.bia-681)!", + result: { + word: "biały", + correct: 13, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "02.10.2025", + }, + }, + { + date: "02.10.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDO20SYpJmLhVTLvx2dugTOt8me65CMuMTMuIjL44SN3ITL5JDOlUzQlEWaihSI", + value: "!(biały-275.8.2.13.0.zzo-98.wlo-5a.bia-681)!", + result: { + word: "biały", + correct: 8, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "02.10.2025", + }, + }, + { + date: "02.10.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDO20SYpJmLi1SYp1mLjRDNtwWaw5iZ0QWLz92auAjLxEjLx4iMx4SN3ITL5JDOlUzQlEWaihSI", + value: "!(biały-275.12.1.11.0.kos-d4f.pil-44c.mia-b.bia-681)!", + result: { + word: "biały", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "02.10.2025", + }, + }, + { + date: "02.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEDO20SYpJmLjRTMtkGbz5iN1czMtoncw5CMuMTMuEjL44SN3ITL5JDOlUzQlEWaihSI", + value: "!(biały-275.8.1.13.0.prz-3756.sli-14c.bia-681)!", + result: { + word: "biały", + correct: 8, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "02.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/za-proste-29-08-2025-flag-pl-diffle-difflepl-grywebowe-28-liter-w-4-slowach-larg" +] = [ + { + date: "29.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWN00SY0NnL1QWMtQWZq5CZy0ibp5mLmJmMtUHaj5CMukjLy4yNx4SM0ITLhlmbqFGdzhSI", + value: "!(stajnia-241.17.2.9.0.chu-2bf.nin-2d.jed-1d5.sta-45a)!", + result: { + word: "stajnia", + correct: 17, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "29.08.2025", + }, + }, + { + date: "29.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY1QjLyQzMuYjM40SY0NnLiVWOtM3br5CMugjLw4COx4SM0ITLhlmbqFGdzhSI", + value: "!(stajnia-241.18.0.8.0.kos-9eb.sta-826.342.45a)!", + result: { + word: "stajnia", + correct: 18, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "29.08.2025", + }, + }, + { + date: "29.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY1QjLzMzMtEGduYTMtQXYz5CNiZTLhd3auAjL1EjLx4yMy4SM0ITLhlmbqFGdzhSI", + value: "!(stajnia-241.23.1.15.0.kwa-6b4.sat-16.ta-333.45a)!", + result: { + word: "stajnia", + correct: 23, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 39, + date: "29.08.2025", + }, + }, + { + date: "29.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhVDNtEGduQzN5ETLhp3cucDOtMWdi5CM2MWLtl3duAjLzEjLy4SOx4SM0ITLhlmbqFGdzhSI", + value: "!(stajnia-241.19.2.13.0.wym-c60.buc-87.sza-1974.ta-45a)!", + result: { + word: "stajnia", + correct: 19, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "29.08.2025", + }, + }, + { + date: "29.08.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY1QTLh5SYhJTL1RnLkJDNtIHcz5CMukjLx4yNx4SM0ITLhlmbqFGdzhSI", + value: "!(stajnia-241.17.1.9.0.spr-42d.tu-2aa.a-45a)!", + result: { + word: "stajnia", + correct: 17, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "29.08.2025", + }, + }, + { + date: "29.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhVDNtEGdz5SYxczMtoncw5CMuYjLw4iMx4SM0ITLhlmbqFGdzhSI", + value: "!(stajnia-241.12.0.6.0.prz-371a.sta-45a)!", + result: { + word: "stajnia", + correct: 12, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "29.08.2025", + }, + }, + { + date: "29.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY1QjL3UTOtEGdz5CNhVTL6JHdllmbuAjLwEjLz4iNx4SM0ITLhlmbqFGdzhSI", + value: "!(stajnia-241.16.3.10.0.nietrz-5a4.sta-957.45a)!", + result: { + word: "stajnia", + correct: 16, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "29.08.2025", + }, + }, + { + date: "29.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY1QjL2kjMuYjM44iN0MjL1UTOx4iN2QTLhR3cuYDZ20ychBnLzEWLtF2ZuAjLyEjLy4yNy4SM0ITLhlmbqFGdzhSI", + value: + "!(stajnia-241.27.2.12.0.gam-a3.pas-6d6.sta-466.1955.346.826.296.45a)!", + result: { + word: "stajnia", + correct: 27, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 41, + date: "29.08.2025", + }, + }, + { + date: "29.08.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY1QTLhR3cukTNy0ibhRnL0EWNtonc0VWau5CMukjLz4SNx4SM0ITLhlmbqFGdzhSI", + value: "!(stajnia-241.15.3.9.0.nietrz-5a4.tan-259.sta-45a)!", + result: { + word: "stajnia", + correct: 15, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "29.08.2025", + }, + }, + { + date: "29.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY1QTLhR3cuEjM20ibhBnL0YWMtQWe35CMugjLw4CNx4SM0ITLhlmbqFGdzhSI", + value: "!(stajnia-241.14.0.8.0.wyd-1f4.pan-621.sta-45a)!", + result: { + word: "stajnia", + correct: 14, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "29.08.2025", + }, + }, + { + date: "29.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhVDNtEGdz5SO1ITLuFGduMTO4EWMtoncw5CMukjLw4iNx4SM0ITLhlmbqFGdzhSI", + value: "!(stajnia-241.16.0.9.0.prz-1a893.tan-259.sta-45a)!", + result: { + word: "stajnia", + correct: 16, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "29.08.2025", + }, + }, + { + date: "29.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhVDNtEGdz5iM10iahJmL5QjMtQ2bt5CMukjLy4SNx4SM0ITLhlmbqFGdzhSI", + value: "!(stajnia-241.15.2.9.0.mod-249.baj-52.sta-45a)!", + result: { + word: "stajnia", + correct: 15, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "29.08.2025", + }, + }, + { + date: "29.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhVDNtEGdz5CO1ITLuFGducjMtsWdl5CMuYjLy4yMx4SM0ITLhlmbqFGdzhSI", + value: "!(stajnia-241.13.2.6.0.euk-27.tan-258.sta-45a)!", + result: { + word: "stajnia", + correct: 13, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "29.08.2025", + }, + }, + { + date: "29.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhVDNtEGdz5SYxITNto3bw5CMuYjLw4SMx4SM0ITLhlmbqFGdzhSI", + value: "!(stajnia-241.11.0.6.0.poz-521a.sta-45a)!", + result: { + word: "stajnia", + correct: 11, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "29.08.2025", + }, + }, + { + date: "29.08.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWN00SY0NnL2EmYtUWat5CMukjLx4SMx4SM0ITLhlmbqFGdzhSI", + value: "!(stajnia-241.11.1.9.0.mie-ba6.sta-45a)!", + result: { + word: "stajnia", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "29.08.2025", + }, + }, + { + date: "29.08.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY1QTLhR3cuQTMx0iahRnLkRTNtQ3bw5CMugjLx4iNx4SM0ITLhlmbqFGdzhSI", + value: "!(stajnia-241.16.1.8.0.pot-54d.taj-114.sta-45a)!", + result: { + word: "stajnia", + correct: 16, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "29.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zaczynam-od-tylu-i-szukam-przodow-zly-pomysl-28-06-2025-flag-pl-diffle-difflepl-" +] = [ + { + date: "28.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwYTMucDZtknej5iY50iZ11mL1EWOtc3bk5yMhZTMtc2bw5iMl1Se6NnLlJTYtoXY65CMuAjMuEjL0IjL5cTMtcDOlQzQlIUOlUzQl8mbulnejhSI", + value: + "!(czynność-179.24.1.20.0.zaz-a2e.szy-e2.pog-16a3.dow-9a5.muf-9b.czy-d7.160)!", + result: { + word: "czynność", + correct: 24, + position: 1, + incorrect: 20, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "28.06.2025", + }, + }, + { + date: "28.06.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM2ETL5p3YucDZ20iejVnLzQzMx0Cb5dnLw4CNuEjLyIjL5cTMtcDOlQzQlIUOlUzQl8mbulnejhSI", + value: "!(czynność-179.22.1.4.0.wyl-1343.ucz-6d7.czy-160)!", + result: { + word: "czynność", + correct: 22, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "28.06.2025", + }, + }, + { + date: "28.06.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjNx0Se6NmL2EmYtUWat5CMuATMuEjLxEjL5cTMtcDOlQzQlIUOlUzQl8mbulnejhSI", + value: "!(czynność-179.11.1.10.0.mie-ba6.czy-160)!", + result: { + word: "czynność", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "28.06.2025", + }, + }, + { + date: "28.06.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwYTMtknLwkTMtUnej5SM50CdlJmL2QTZtA3c35CMucTMuAjL5EjL5cTMtcDOlQzQlIUOlUzQl8mbulnejhSI", + value: "!(czynność-179.19.0.17.0.wsp-e46.bet-91.czu-190.y-160)!", + result: { + word: "czynność", + correct: 19, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "28.06.2025", + }, + }, + { + date: "28.06.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM2ETL5p3YuQGOx0CczFmLw4iNuAjL0EjL5cTMtcDOlQzQlIUOlUzQl8mbulnejhSI", + value: "!(czynność-179.14.0.6.0.asp-18d.czy-160)!", + result: { + word: "czynność", + correct: 14, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "28.06.2025", + }, + }, + { + date: "28.06.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwYTMtknL5EzMt8meuYmYy0SdoNmLw4COuEjL1EjL5cTMtcDOlQzQlIUOlUzQl8mbulnejhSI", + value: "!(czynność-179.15.1.8.0.chu-2bf.zo-319.y-160)!", + result: { + word: "czynność", + correct: 15, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "28.06.2025", + }, + }, + { + date: "28.06.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwYTMtknej5yM5gTYx0ieyBnLw4SOuEjLxEjL5cTMtcDOlQzQlIUOlUzQl8mbulnejhSI", + value: "!(czynność-179.11.1.9.0.prz-1a893.czy-160)!", + result: { + word: "czynność", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "28.06.2025", + }, + }, + { + date: "28.06.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM2ETL5p3YuETNtcnek5CO50yb6pnLw4COuEjL0EjL5cTMtcDOlQzQlIUOlUzQl8mbulnejhSI", + value: "!(czynność-179.14.1.8.0.zzo-98.dzw-51.czy-160)!", + result: { + word: "czynność", + correct: 14, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "28.06.2025", + }, + }, + { + date: "28.06.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwYTMuEjYy0SeugzYx0Cb6NmLw4yNuAjL3EjL5cTMtcDOlQzQlIUOlUzQl8mbulnejhSI", + value: "!(czynność-179.17.0.7.0.czl-1c8.y-2b1.160)!", + result: { + word: "czynność", + correct: 17, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "28.06.2025", + }, + }, + { + date: "28.06.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjNx0SeukTMz0yb6NmL5QjMtQ2bt5CMuATMuMjLzEjL5cTMtcDOlQzQlIUOlUzQl8mbulnejhSI", + value: "!(czynność-179.13.3.10.0.mod-249.czo-319.y-160)!", + result: { + word: "czynność", + correct: 13, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "28.06.2025", + }, + }, + { + date: "28.06.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwYTMtknej5iYy0Cd5NnL5gDZtM3br5iY2kTLkFmcugDM30Cbp1mLw4SOuAjLxIjL5cTMtcDOlQzQlIUOlUzQl8mbulnejhSI", + value: "!(czynność-179.21.0.9.0.mil-708.rad-96b.kos-d89.syt-2b.czy-160)!", + result: { + word: "czynność", + correct: 21, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "28.06.2025", + }, + }, + { + date: "28.06.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwYTMtknej5iZkdTMtw2bw5CO5ETLyVHaugDOt0WYk5iMzMTMtMXe35CMuUTMuIjLyEjL5cTMtcDOlQzQlIUOlUzQl8mbulnejhSI", + value: + "!(czynność-179.12.2.15.0.wys-1332.dam-88.hur-198.pol-17df.czy-160)!", + result: { + word: "czynność", + correct: 12, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "28.06.2025", + }, + }, + { + date: "28.06.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwYTMuEjYy0Se6NmLjFmY00CZvBnLw4iNuEjL4EjL5cTMtcDOlQzQlIUOlUzQl8mbulnejhSI", + value: "!(czynność-179.18.1.6.0.pod-4bac.czy-2b1.160)!", + result: { + word: "czynność", + correct: 18, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "28.06.2025", + }, + }, + { + date: "28.06.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjNx0Se6NmLklTZtEmez5CO50yb6pnLw4SOuAjL1EjL5cTMtcDOlQzQlIUOlUzQl8mbulnejhSI", + value: "!(czynność-179.15.0.9.0.zzo-98.sza-e9d.czy-160)!", + result: { + word: "czynność", + correct: 15, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "28.06.2025", + }, + }, + { + date: "28.06.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjNx0SeuATOx0Sd6NmLmlDNt8Gb65CZxczMtoncw5CMuMTMuAjLwIjL5cTMtcDOlQzQlIUOlUzQl8mbulnejhSI", + value: "!(czynność-179.20.0.13.0.prz-371d.zlo-49f.czu-190.y-160)!", + result: { + word: "czynność", + correct: 20, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "28.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zafiksowalem-sie-na-zlej-koncowce-i-nic-mi-sie-nie-chcialo-ulozyc-26-08-2025-dif" +] = [ + { + date: "26.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO0QTLsF2auUTYy0CboNmL2cTL0lHcuAjZx0SaiVnLiVWOtM3br5CMuMTMuQjL1EjL4MjMtonchRmblxWYrhSI", + value: "!(kalendarz-238.15.4.13.0.kos-9eb.ubi-1f0.pyt-76.chl-2a5.kal-448)!", + result: { + word: "kalendarz", + correct: 15, + position: 4, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "26.08.2025", + }, + }, + { + date: "26.08.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO0QTLsF2auATNz0ibhNnL3QjMx0yah5mLhRmMy0yavBnLw4COuQjLxIjL4MjMtonchRmblxWYrhSI", + value: "!(kalendarz-238.21.4.8.0.pok-22da.nak-1247.san-350.kal-448)!", + result: { + word: "kalendarz", + correct: 21, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "26.08.2025", + }, + }, + { + date: "26.08.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDN00CbhtmL5QTLklXbuQmM00icwNnLw4yNuUjL2EjL4MjMtonchRmblxWYrhSI", + value: "!(kalendarz-238.16.5.7.0.spr-42d.myd-49.kal-448)!", + result: { + word: "kalendarz", + correct: 16, + position: 5, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "26.08.2025", + }, + }, + { + date: "26.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4QDNtwmL1gDNt4WYr5CMj1ibhxmLzQWMtIXYr5SMhFTL1JHduATMy0ibuUWOx0iYhtmL5MTMt4Waw5SNwMTLtp3cuMjL3EjLyEjL1MjL4MjMtonchRmblxWYrhSI", + value: + "!(kalendarz-238.35.12.17.3.szm-305.pin-139.kab-19e.n-210.tru-1a1.kar-1d3.lan-c0.kan-485.l-448)!", + result: { + word: "kalendarz", + correct: 35, + position: 12, + incorrect: 17, + knownIncorrect: 3, + totalWords: 9, + totalLetters: 64, + date: "26.08.2025", + }, + }, + { + date: "26.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4QDNtwWYr5yMyMTLrVGZuAjYj1SZkpnL0EWNtonc0VWau5CMukjLwEjL5EjL4MjMtonchRmblxWYrhSI", + value: "!(kalendarz-238.19.10.9.0.nietrz-5a4.zde-cb0.dek-323.kal-448)!", + result: { + word: "kalendarz", + correct: 19, + position: 10, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 38, + date: "26.08.2025", + }, + }, + { + date: "26.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDN00CbuUDNy0iYuQmZx0SbugjNxITLy5iZ2gTLz5SOhFTLuF2auIDNz0yah5mLmJmMtUHaj5CMuUTMucjL1MjL4MjMtonchRmblxWYrhSI", + value: + "!(kalendarz-238.35.7.15.0.chu-2bf.nak-342.kan-1a9.s-86f.r-2168.m-1fd.b-245.l-448)!", + result: { + word: "kalendarz", + correct: 35, + position: 7, + incorrect: 15, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 57, + date: "26.08.2025", + }, + }, + { + date: "26.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO0QTLsF2auQjZx0CZ5dnLw4yMuIjLzEjL4MjMtonchRmblxWYrhSI", + value: "!(kalendarz-238.13.2.3.0.wyd-1f4.kal-448)!", + result: { + word: "kalendarz", + correct: 13, + position: 2, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "26.08.2025", + }, + }, + { + date: "26.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO0QTLsFmLhFTLsVmL2YTLu92auUzNtcXZw5SOzgTLuFmYuMmNh1SYydmLw4SOuQjL0IjL4MjMtonchRmblxWYrhSI", + value: + "!(kalendarz-238.24.4.9.0.gra-a6c.ban-839.pew-75.kon-66.el-1a.al-448)!", + result: { + word: "kalendarz", + correct: 24, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "26.08.2025", + }, + }, + { + date: "26.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4QDNtwWYr5CNyMTLrVGZuM2Ml1ich5mL1YTMtIXY65SYxczMtoncw5CMuYjL0EjLyIjL4MjMtonchRmblxWYrhSI", + value: + "!(kalendarz-238.22.14.6.0.prz-371a.zar-165.nar-e3c.dek-324.kal-448)!", + result: { + word: "kalendarz", + correct: 22, + position: 14, + incorrect: 6, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "26.08.2025", + }, + }, + { + date: "26.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO0QTLsFmL0U2Ntw2br5yM5gTYx0ieyBnLw4COuMjL5EjL4MjMtonchRmblxWYrhSI", + value: "!(kalendarz-238.19.3.8.0.prz-1a893.kol-7e4.al-448)!", + result: { + word: "kalendarz", + correct: 19, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "26.08.2025", + }, + }, + { + date: "26.08.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO0QTLsF2aucTZh1ibhBnLw4SNuMjLxEjL4MjMtonchRmblxWYrhSI", + value: "!(kalendarz-238.11.3.5.0.pan-ae7.kal-448)!", + result: { + word: "kalendarz", + correct: 11, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "26.08.2025", + }, + }, + { + date: "26.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4QDNtwWYuQjY20SY3tmLw4SOuIjLzEjL4MjMtonchRmblxWYrhSI", + value: "!(kalendarz-238.13.2.9.0.kwa-6b4.al-448)!", + result: { + word: "kalendarz", + correct: 13, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 24, + date: "26.08.2025", + }, + }, + { + date: "26.08.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO0QTLsF2auYTYi1SZp1mLw4COuIjLzEjL4MjMtonchRmblxWYrhSI", + value: "!(kalendarz-238.13.2.8.0.mie-ba6.kal-448)!", + result: { + word: "kalendarz", + correct: 13, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "26.08.2025", + }, + }, + { + date: "26.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO0QTLsF2aukDNy0CZv1mLw4SNuQjLyEjL4MjMtonchRmblxWYrhSI", + value: "!(kalendarz-238.12.4.5.0.mod-249.kal-448)!", + result: { + word: "kalendarz", + correct: 12, + position: 4, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "26.08.2025", + }, + }, + { + date: "26.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4QDNtwWYukjM10SbvtmLwcTMtsWZu5yNy0ya1VmLz4SOuQjLxIjL4MjMtonchRmblxWYrhSI", + value: "!(kalendarz-238.21.4.9.3.euk-27.nek-170.kom-529.al-448)!", + result: { + word: "kalendarz", + correct: 21, + position: 4, + incorrect: 9, + knownIncorrect: 3, + totalWords: 4, + totalLetters: 34, + date: "26.08.2025", + }, + }, + { + date: "26.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4QDNtwWYr5yMy0yalxmLhFjM10ievBnLw4SNuMjL3EjL4MjMtonchRmblxWYrhSI", + value: "!(kalendarz-238.17.3.5.0.poz-521a.lek-23.kal-448)!", + result: { + word: "kalendarz", + correct: 17, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "26.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ze-co-11-08-2025-diffle-difflepl-grywebowe-25-liter-w-3-slowach-large-green-circ" +] = [ + { + date: "11.08.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYi1ibhpmLmRmNtEGbw5iYllTLz92auAjL34iMuYTMuMjMy0yYll2dv5WYqhSI", + value: "!(janowiec-223.16.2.7.0.kos-9eb.pla-6df.jan-ba)!", + result: { + word: "janowiec", + correct: 16, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "11.08.2025", + }, + }, + { + date: "11.08.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmYt4WYq5CMxETLuFmYuIWZt4WYk5yYhlTLuFWbuUmZz0ybh5mLhRmMy0yavBnLw4yMx4yMuYzMuMjMy0yYll2dv5WYqhSI", + value: + "!(janowiec-223.36.3.13.0.pok-22da.nao-3fe.man-9ac.dan-eb.ban-110.jan-ba)!", + result: { + word: "janowiec", + correct: 36, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 52, + date: "11.08.2025", + }, + }, + { + date: "11.08.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYi1ibhpmLjFWOt4WYt5iNzETLuF2duQTY10ieyRXZp5mLw4yMx4CNuMjMuMjMy0yYll2dv5WYqhSI", + value: "!(janowiec-223.23.4.13.0.nietrz-5a4.wan-136.man-9ac.jan-ba)!", + result: { + word: "janowiec", + correct: 23, + position: 4, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 40, + date: "11.08.2025", + }, + }, + { + date: "11.08.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmYt4WYq5iZiJTL1h2YuAjLz4yMuITMuMjMy0yYll2dv5WYqhSI", + value: "!(janowiec-223.12.3.3.0.chu-2bf.jan-ba)!", + result: { + word: "janowiec", + correct: 12, + position: 3, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "11.08.2025", + }, + }, + { + date: "11.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYi1ibuATLtFmauMmZtcWam5SYk1Sd0NnLhBzMtEGbr5iMkNWLvh2YuYTY10ieyBnLx4iMy4yMuEzMuMjMy0yYll2dv5WYqhSI", + value: + "!(janowiec-223.31.3.22.1.prz-5a6.cho-cd2.kla-30a.stu-da.fig-fc.jam-0.n-ba)!", + result: { + word: "janowiec", + correct: 31, + position: 3, + incorrect: 22, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 56, + date: "11.08.2025", + }, + }, + { + date: "11.08.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmYt4WYq5yYhlTLuFWbuATMx0ibhJmLhJTLpd3buQmM00icwNnLx4SMx4CNukjMuMjMy0yYll2dv5WYqhSI", + value: "!(janowiec-223.29.4.11.1.spr-42d.owi-2a.ban-110.man-9ac.jan-ba)!", + result: { + word: "janowiec", + correct: 29, + position: 4, + incorrect: 11, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 44, + date: "11.08.2025", + }, + }, + { + date: "11.08.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmYt4WYq5SO0kTLuFGcuQTY10ieyRXZp5mLx4CMx4yMucTMuMjMy0yYll2dv5WYqhSI", + value: "!(janowiec-223.17.3.10.1.nietrz-5a4.pan-949.jan-ba)!", + result: { + word: "janowiec", + correct: 17, + position: 3, + incorrect: 10, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 30, + date: "11.08.2025", + }, + }, + { + date: "11.08.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmYt4WYq5SM00CajNjLzMWLpd3buATLs92auQTMtMWdk5SYtUWaw5CZ3gTLzFWbuMmNh1SYydmLw4CNx4iMuQjMuMjMy0yYll2dv5WYqhSI", + value: + "!(janowiec-223.24.2.14.0.gra-a6c.mas-87d.pie-a.duc-14.kol-0.owi-c3.3ch-41.jan-ba)!", + result: { + word: "janowiec", + correct: 24, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 40, + date: "11.08.2025", + }, + }, + { + date: "11.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYi1ibhpmLjVTMt4WY35yY00SYzNnLyYDNt4WYi5CN00yauFmL1kzNtEmcw5CNx0SdlZmLw4iNx4iMugjMuMjMy0yYll2dv5WYqhSI", + value: + "!(janowiec-223.28.2.16.0.feu-14.pra-795.ank-44.ban-462.ssa-4c.wan-15c.jan-ba)!", + result: { + word: "janowiec", + correct: 28, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 46, + date: "11.08.2025", + }, + }, + { + date: "11.08.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmYt4WYq5CNhlTLuFWbuITMyUTL69GcuAjL24iMuYTMuMjMy0yYll2dv5WYqhSI", + value: "!(janowiec-223.16.2.6.0.poz-5212.man-9a4.jan-ba)!", + result: { + word: "janowiec", + correct: 16, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "11.08.2025", + }, + }, + { + date: "11.08.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJWLuFmauMWY50ibh1mLlhDOtMWYu5yM5gTYx0ieyBnLw4CMx4CNuEjMuMjMy0yYll2dv5WYqhSI", + value: "!(janowiec-223.21.4.10.0.prz-1a893.nac-88e.man-9ac.jan-ba)!", + result: { + word: "janowiec", + correct: 21, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "11.08.2025", + }, + }, + { + date: "11.08.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYi1ibhpmLjFWOt4WYt5SO5ETLvtWYuUTNx0SYsZmLhFzNz0ieyBnLw4iMx4SMuAzMuMjMy0yYll2dv5WYqhSI", + value: "!(janowiec-223.30.1.12.0.prz-371a.fla-155.ako-199.man-9ac.jan-ba)!", + result: { + word: "janowiec", + correct: 30, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 43, + date: "11.08.2025", + }, + }, + { + date: "11.08.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmYt4WYq5CMxETLuFmYuMWY50ibh1mLiVzYt4WYr5CNmFTLkl3duAjL54iMuAzMuMjMy0yYll2dv5WYqhSI", + value: "!(janowiec-223.30.2.9.0.wyd-1f4.kan-c5b.man-9ac.ban-110.jan-ba)!", + result: { + word: "janowiec", + correct: 30, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "11.08.2025", + }, + }, + { + date: "11.08.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJWLuFmauATMx0ibhJmL0QmNtcWYt5yNy0ya1VmLw4SMx4yMuIjMuMjMy0yYll2dv5WYqhSI", + value: "!(janowiec-223.22.3.11.0.euk-27.mag-6d4.ban-110.jan-ba)!", + result: { + word: "janowiec", + correct: 22, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "11.08.2025", + }, + }, + { + date: "11.08.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJWLuFmauY2NtEWat5yNhJTLhJneucTZh1ibhBnLw4SMx4yMuIjMuMjMy0yYll2dv5WYqhSI", + value: "!(janowiec-223.22.3.11.0.pan-ae7.zra-2a7.mia-7f.jan-ba)!", + result: { + word: "janowiec", + correct: 22, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "11.08.2025", + }, + }, + { + date: "11.08.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmYt4WYq5CMxETLuFmYuQjY20SY3tmLw4SMx4yMukTMuMjMy0yYll2dv5WYqhSI", + value: "!(janowiec-223.19.3.11.0.kwa-6b4.ban-110.jan-ba)!", + result: { + word: "janowiec", + correct: 19, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 33, + date: "11.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zlosliwe-nieuzywane-slowo-w-odmianie-niesportowe-20-09-2025-flag-pl-diffle-diffl" +] = [ + { + date: "20.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDMyEjLzgjMuAzYx0CbuAzMx0SYuUzMtI3br5iZyEWLll2duEjL0EjLy4CNy4yM2ITLhJWb1x2brhSI", + value: "!(kolumba-263.24.2.14.1.wie-a2f.kor-35.a-130.l-1c0.283.1203)!", + result: { + word: "kolumba", + correct: 24, + position: 2, + incorrect: 14, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 40, + date: "20.09.2025", + }, + }, + { + date: "20.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMwITMtw2br5iYhNWMtAXe35iYykTLt5iYllTLz92auAjLyEjLw4yNx4yM2ITLhJWb1x2brhSI", + value: "!(kolumba-263.17.0.12.0.kos-9eb.m-92b.wyp-1cab.kol-1203)!", + result: { + word: "kolumba", + correct: 17, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "20.09.2025", + }, + }, + { + date: "20.09.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMwITMtwmLjlzMt02br5CNhVTL6JHdllmbuAjL0EjLx4SNx4yM2ITLhJWb1x2brhSI", + value: "!(kolumba-263.15.1.14.0.nietrz-5a4.kom-39c.l-1203)!", + result: { + word: "kolumba", + correct: 15, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "20.09.2025", + }, + }, + { + date: "20.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzAjMx4CM0ITMtwmLw0SbvtmLiVDNtQ3bt5CZyQTLyB3cuEjLzEjLy4SMy4yM2ITLhJWb1x2brhSI", + value: "!(kolumba-263.21.2.13.1.spr-42d.mot-45b.kom-0.l-1240.1203)!", + result: { + word: "kolumba", + correct: 21, + position: 2, + incorrect: 13, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 36, + date: "20.09.2025", + }, + }, + { + date: "20.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMwITMtw2br5CMt8Gbn5iYykTLt92auIDZx0ychxmLkVzMtA3br5iZiJTL1h2YuAjL2EjL04SOx4yM2ITLhJWb1x2brhSI", + value: + "!(kolumba-263.19.4.16.0.chu-2bf.kop-35d.las-1d2.kom-92b.glo-0.kol-1203)!", + result: { + word: "kolumba", + correct: 19, + position: 4, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "20.09.2025", + }, + }, + { + date: "20.09.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMwITMuADNyETLs9mLwkTL1x2auEWM3MTL6JHcuAjLzEjLw4COx4yM2ITLhJWb1x2brhSI", + value: "!(kolumba-263.18.0.13.0.prz-371a.klu-90.ol-1240.1203)!", + result: { + word: "kolumba", + correct: 18, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "20.09.2025", + }, + }, + { + date: "20.09.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDMyEjLzgjMtwmLk1iYvtmLmFDNtE2av5CMzcTMtIXYw5CMugjLz4SOx4yM2ITLhJWb1x2brhSI", + value: "!(kolumba-263.19.3.8.0.par-1730.oka-41f.kob-d.l-283.1203)!", + result: { + word: "kolumba", + correct: 19, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "20.09.2025", + }, + }, + { + date: "20.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMwITMtw2br5iMy0yY11mL1ETL51WduAzNz0SbhxmLhN2NtMXYt5yY2EWLhJ3ZuAjLzEjLz4yNx4yM2ITLhJWb1x2brhSI", + value: + "!(kolumba-263.17.3.13.0.gra-a6c.mas-7ca.lam-370.umy-15.muc-22.kol-1203)!", + result: { + word: "kolumba", + correct: 17, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "20.09.2025", + }, + }, + { + date: "20.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMwITMtwmLw0Sbv5CNiZTLhd3auAjLwEjLy4CNx4yM2ITLhJWb1x2brhSI", + value: "!(kolumba-263.14.2.10.0.kwa-6b4.om-0.l-1203)!", + result: { + word: "kolumba", + correct: 14, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "20.09.2025", + }, + }, + { + date: "20.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDMyETLs9mLzUWLvx2auQzN10CbhJmL0YWMtQWe35CMukjLz4CNx4yM2ITLhJWb1x2brhSI", + value: "!(kolumba-263.14.3.9.0.wyd-1f4.bal-574.klo-e3.ol-1203)!", + result: { + word: "kolumba", + correct: 14, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "20.09.2025", + }, + }, + { + date: "20.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMwITMuMDOy0CbuATLi5CMtomLw0yZukzNz0CduATLy92auEWMyUTL69GcuAjLyEjLx4CMz4yM2ITLhJWb1x2brhSI", + value: + "!(kolumba-263.30.1.12.0.poz-521a.kor-0.t-379.g-0.j-0.b-0.l-283.1203)!", + result: { + word: "kolumba", + correct: 30, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 43, + date: "20.09.2025", + }, + }, + { + date: "20.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDMyETLs5yMwMTL692auEDZ3ITLr9GcucjMtsWdl5CMukjLz4yNx4yM2ITLhJWb1x2brhSI", + value: "!(kolumba-263.17.3.9.0.euk-27.pok-27d1.koz-303.l-1203)!", + result: { + word: "kolumba", + correct: 17, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "20.09.2025", + }, + }, + { + date: "20.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzAjMx0CbvtmL0QmMtQWdy5iNhJWLllWbuAjLyEjLz4CMx4yM2ITLhJWb1x2brhSI", + value: "!(kolumba-263.10.3.12.0.mie-ba6.rud-2d4.kol-1203)!", + result: { + word: "kolumba", + correct: 10, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "20.09.2025", + }, + }, + { + date: "20.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzAjMx0CbvtmLkFmMtg2Yz4yMi1Sb1dmLlJGNt8Gdz5SO0ITLk9WbuAjLzEjLy4yNx4yM2ITLhJWb1x2brhSI", + value: "!(kolumba-263.17.2.13.0.mod-249.sto-4be.gum-b3.3ch-2ad.kol-1203)!", + result: { + word: "kolumba", + correct: 17, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "20.09.2025", + }, + }, + { + date: "20.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDMyETLs92aucDNy0iavdnLw0ya1xmLzkDOhFTL6JHcuAjL0EjLy4SNx4yM2ITLhJWb1x2brhSI", + value: "!(kolumba-263.15.2.14.0.prz-1a893.luk-0.woj-247.kol-1203)!", + result: { + word: "kolumba", + correct: 15, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "20.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zmylila-mnie-koncowka-i-poszedlem-w-zla-strone-12-09-2025-diffle-difflepl-gryweb" +] = [ + { + date: "12.09.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkVmMtonLlFjMtAnLxQTMtQWYs5yNyMTLoN2MuMDNzETLsl3duAjLyEjLw4SOx4SN1ITLhlmbBJUJ1MUJhJDOlUzQlgSI", + value: "!(łaźnia-255.19.0.12.0.wyl-1343.3ch-327.lad-141.p-21e.z-2ed)!", + result: { + word: "łaźnia", + correct: 19, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "12.09.2025", + }, + }, + { + date: "12.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkVmMtoXYs5yN1ITLlJ3cuUDZ2ETLllWbuAjLwEjLw4SMx4SN1ITLhlmbBJUJ1MUJhJDOlUzQlgSI", + value: "!(łaźnia-255.11.0.10.0.mie-16d5.sre-257.laz-2ed)!", + result: { + word: "łaźnia", + correct: 11, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "12.09.2025", + }, + }, + { + date: "12.09.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWZy0ieuImN10SbuYTOz0ibhxmLkNGMy0CbvBnL4kTLvpneuAjLyEjLx4iMy4SN1ITLhlmbBJUJ1MUJhJDOlUzQlgSI", + value: "!(łaźnia-255.22.1.12.0.zzo-98.pol-20cd.lan-396.m-56b.z-2ed)!", + result: { + word: "łaźnia", + correct: 22, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "12.09.2025", + }, + }, + { + date: "12.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkVmMtonL0UWMtQWYs5CZ4ETLwNXYuAjLxEjLx4SMx4SN1ITLhlmbBJUJ1MUJhJDOlUzQlgSI", + value: "!(łaźnia-255.11.1.11.0.asp-18d.lad-1e4.z-2ed)!", + result: { + word: "łaźnia", + correct: 11, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "12.09.2025", + }, + }, + { + date: "12.09.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkVmMtonL2kzMt4mL5Q2MtQnL3cjMtMmLzIjMtoWYs5iN0UWLwN3duAjL3EjLx4yMy4SN1ITLhlmbBJUJ1MUJhJDOlUzQlgSI", + value: "!(łaźnia-255.23.1.17.0.wsp-e46.laj-223.c-277.t-3d9.n-396.z-2ed)!", + result: { + word: "łaźnia", + correct: 23, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 41, + date: "12.09.2025", + }, + }, + { + date: "12.09.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZlJTL65iN5MTLuFGbuM2Mz0CblBnLlVGOt8Gbn5CMuYjLx4COx4SN1ITLhlmbBJUJ1MUJhJDOlUzQlgSI", + value: "!(łaźnia-255.18.1.6.0.glo-8ee.pel-33c.lan-396.z-2ed)!", + result: { + word: "łaźnia", + correct: 18, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "12.09.2025", + }, + }, + { + date: "12.09.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkVmMtonL3YTMtQWYs5iMzMTMtMXe35CMugjLw4iMx4SN1ITLhlmbBJUJ1MUJhJDOlUzQlgSI", + value: "!(łaźnia-255.12.0.8.0.wys-1332.lad-167.z-2ed)!", + result: { + word: "łaźnia", + correct: 12, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "12.09.2025", + }, + }, + { + date: "12.09.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkVmMtonLilTMtcXYs5CZ5ATMtEGbw5iN5YTLs9meuAjLxEjLw4iMx4SN1ITLhlmbBJUJ1MUJhJDOlUzQlgSI", + value: "!(łaźnia-255.12.0.11.0.zol-696.pla-109d.law-19b.z-2ed)!", + result: { + word: "łaźnia", + correct: 12, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "12.09.2025", + }, + }, + { + date: "12.09.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWZy0ieuYTOz0ibuYjN10SbuUjMy0iauQTZx0CZhxmL4kTLvpneuAjLyEjLx4iMy4SN1ITLhlmbBJUJ1MUJhJDOlUzQlgSI", + value: "!(łaźnia-255.22.1.12.0.zzo-98.lad-1e4.j-225.m-566.n-396.z-2ed)!", + result: { + word: "łaźnia", + correct: 22, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "12.09.2025", + }, + }, + { + date: "12.09.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWZy0ieuYTOz0ibh5CN2ETLuVHbukTN10ybsNnL4kTLvpneuAjLyEjLw4yNx4SN1ITLhlmbBJUJ1MUJhJDOlUzQlgSI", + value: "!(łaźnia-255.17.0.12.0.zzo-98.slo-559.lun-164.an-396.z-2ed)!", + result: { + word: "łaźnia", + correct: 17, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "12.09.2025", + }, + }, + { + date: "12.09.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWZy0ieuYTOz0ibhxmLkFTMtc2bt5CMmJTLlxmYuUTNy0iavdnLzkDOhFTL6JHcuAjL2IjLw4COx4SN1ITLhlmbBJUJ1MUJhJDOlUzQlgSI", + value: + "!(łaźnia-255.18.0.26.0.prz-1a893.woj-255.ble-2f0.mog-11d.lan-396.z-2ed)!", + result: { + word: "łaźnia", + correct: 18, + position: 0, + incorrect: 26, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 44, + date: "12.09.2025", + }, + }, + { + date: "12.09.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZlJTL6FGbuQmNz0ychJmL1kjYx0CZhpnL0MjMt4WYn5iNhJWLllWbuAjL3EjLw4COx4SN1ITLhlmbBJUJ1MUJhJDOlUzQlgSI", + value: "!(łaźnia-255.18.0.17.0.mie-ba6.gan-234.zad-1b95.bas-36d.laz-2ed)!", + result: { + word: "łaźnia", + correct: 18, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "12.09.2025", + }, + }, + { + date: "12.09.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkVmMtonL4MWMtAnLzcTMtcXYuIWNx0ielxmL4AzNtwWat5CMukjLx4SNx4SN1ITLhlmbBJUJ1MUJhJDOlUzQlgSI", + value: "!(łaźnia-255.15.1.9.0.mil-708.lez-15b.aw-173.p-1c8.z-2ed)!", + result: { + word: "łaźnia", + correct: 15, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "12.09.2025", + }, + }, + { + date: "12.09.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkVmMtonL2kzMt4mL0YTNt0WYs5SOyUTLnFmbuMDNiRTLk9GcuAjLwEjLy4SOx4SN1ITLhlmbBJUJ1MUJhJDOlUzQlgSI", + value: "!(łaźnia-255.19.2.10.0.pod-4b43.nag-529.lam-564.n-396.z-2ed)!", + result: { + word: "łaźnia", + correct: 19, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "12.09.2025", + }, + }, + { + date: "12.09.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZlJTL65iN5MTLuFGbukjMt8Gbk5CNzMTMtwWe35CMukjLw4yNx4SN1ITLhlmbBJUJ1MUJhJDOlUzQlgSI", + value: "!(łaźnia-255.17.0.9.0.wyl-1334.dlo-29.lan-396.z-2ed)!", + result: { + word: "łaźnia", + correct: 17, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "12.09.2025", + }, + }, +]; diff --git a/scripts/hejto/parts-2025/part-4.ts b/scripts/hejto/parts-2025/part-4.ts new file mode 100644 index 000000000..e4f5f7b00 --- /dev/null +++ b/scripts/hejto/parts-2025/part-4.ts @@ -0,0 +1,23399 @@ +import { ParsedHejtoResult } from "../hejto-types"; + +export const results: { + resultsBySource: { + [url: string]: ParsedHejtoResult[]; + }; +} = { + resultsBySource: {}, +}; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/04-10-2025-diffle-difflepl-grywebowe-24-litery-w-2-slowach-12-4-8-0" +] = [ + { + date: "04.10.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM2EWLyFWbuQjY20SY3tmLw4COuQjLyEjL3cjMtEGdzl2crJXYthSI", + value: "!(marksista-277.12.4.8.0.kwa-6b4.mar-a62)!", + result: { + word: "marksista", + correct: 12, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 24, + date: "04.10.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjNh1ich1mL30ychJnL3UDNt8Gc15CMuITMuEjL4EjL3cjMtEGdzl2crJXYthSI", + value: "!(marksista-277.18.1.12.0.upo-457.ras-7.mar-a62)!", + result: { + word: "marksista", + correct: 18, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + }, + }, + { + date: "04.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjNh5yNxYWLyFWbuQWZ50ycvtmLw4SNuMjL3EjL3cjMtEGdzl2crJXYthSI", + value: "!(marksista-277.17.3.5.0.kos-9ed.mar-f17.a62)!", + result: { + word: "marksista", + correct: 17, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "04.10.2025", + }, + }, + { + date: "04.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM2EWLyFWbucTLzFmcuQmM00icwNnLw4yNuQjL3EjL3cjMtEGdzl2crJXYthSI", + value: "!(marksista-277.17.4.7.0.spr-42d.ras-7.mar-a62)!", + result: { + word: "marksista", + correct: 17, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "04.10.2025", + }, + }, + { + date: "04.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyYTYtInLyEjMtsWYuITNt0mLw0ycp1mLw0CcpxmLw0iYpJmLmJmMtUHaj5CMuUTMuEjL3IjL3cjMtEGdzl2crJXYthSI", + value: + "!(marksista-277.27.1.15.0.chu-2bf.bib-0.lip-0.mis-0.m-52.ak-212.r-a62)!", + result: { + word: "marksista", + correct: 27, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 43, + date: "04.10.2025", + }, + }, + { + date: "04.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM2EWLyFWbuIWY2ETLyF2aukTY10ichJmLhFzNz0ieyBnLw4yNuMjL1IjL3cjMtEGdzl2crJXYthSI", + value: "!(marksista-277.25.3.7.0.prz-371a.bar-5a9.kar-16ab.mar-a62)!", + result: { + word: "marksista", + correct: 25, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "04.10.2025", + }, + }, + { + date: "04.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjNh1ich1mL3QjMto2b35iNyEWLhJ3auMTO4EWMtoncw5CMuMTMucjL2EjL3cjMtEGdzl2crJXYthSI", + value: "!(marksista-277.16.7.13.0.prz-1a893.kra-a26.woj-247.mar-a62)!", + result: { + word: "marksista", + correct: 16, + position: 7, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "04.10.2025", + }, + }, + { + date: "04.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyYTYugzYz4SZ5YTLyFmL5QjMtQ2bt5CMuITMuEjL0IjL3cjMtEGdzl2crJXYthSI", + value: "!(marksista-277.24.1.12.0.mod-249.ar-69e.3c8.a62)!", + result: { + word: "marksista", + correct: 24, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "04.10.2025", + }, + }, + { + date: "04.10.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjNh1ich1mLkVjZy0ibvtmLw4SNuEjLzEjL3cjMtEGdzl2crJXYthSI", + value: "!(marksista-277.13.1.5.0.kon-2f5d.mar-a62)!", + result: { + word: "marksista", + correct: 13, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "04.10.2025", + }, + }, + { + date: "04.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyYTYuMDZ0ETLyFmLzUTZtsmL2EmYtUWat5CMuATMuUjL0IjL3cjMtEGdzl2crJXYthSI", + value: "!(marksista-277.24.5.10.0.mie-ba6.k-e53.ar-14d3.a62)!", + result: { + word: "marksista", + correct: 24, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 39, + date: "04.10.2025", + }, + }, + { + date: "04.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjNh1icuAzMtwWYt5yYhJTLwFGcugzYx0iYhtmLiVjMtQ3ch5CMuITMuUjL1IjL3cjMtEGdzl2crJXYthSI", + value: "!(marksista-277.25.5.12.0.ast-25b.kab-1c8.pap-2ac.mal-30.r-a62)!", + result: { + word: "marksista", + correct: 25, + position: 5, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "04.10.2025", + }, + }, + { + date: "04.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjNh5CNykTLyFWbuAjN0ETLyF2auQjZx0CZ5dnLx4COuIjLwIjL3cjMtEGdzl2crJXYthSI", + value: "!(marksista-277.20.2.8.1.wyd-1f4.kar-1460.mar-924.a62)!", + result: { + word: "marksista", + correct: 20, + position: 2, + incorrect: 8, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 30, + date: "04.10.2025", + }, + }, + { + date: "04.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjNh1ich1mLzEmZtIXYw5yNy0ya1VmLx4yNuEjL4EjL3cjMtEGdzl2crJXYthSI", + value: "!(marksista-277.18.1.7.1.euk-27.par-fa3.mar-a62)!", + result: { + word: "marksista", + correct: 18, + position: 1, + incorrect: 7, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 26, + date: "04.10.2025", + }, + }, + { + date: "04.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM2EWLyFWbuQTZtMXYi5SMkFTLzF2auQjMx0CduMTNz0SYpNnLhFjM10ievBnLw4SOuUjLxMjL3cjMtEGdzl2crJXYthSI", + value: + "!(marksista-277.31.5.9.0.poz-521a.sia-353.t-124.kas-1d1.bas-e4.mar-a62)!", + result: { + word: "marksista", + correct: 31, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 45, + date: "04.10.2025", + }, + }, + { + date: "04.10.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM2EWLyFWbuYWMxETLyF2aucTLzFmcuUTYy0SY65CNwUWLyt2cuATNz0ic1tmLjZTYtEmcn5CMuATMuYjLwMjL3cjMtEGdzl2crJXYthSI", + value: + "!(marksista-277.30.6.10.0.gra-a6c.kur-350.skr-e04.za-2a5.ras-7.kar-111f.mar-a62)!", + result: { + word: "marksista", + correct: 30, + position: 6, + incorrect: 10, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 46, + date: "04.10.2025", + }, + }, + { + date: "04.10.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyYTYtIXYt5SOhVTLyFmYucDOy0ichdnL5YmZx0ichtmLyUWYt4WYw5CMuATMuIjL1IjL3cjMtEGdzl2crJXYthSI", + value: + "!(marksista-277.25.2.10.0.pan-ae2.kar-1ff9.war-287.bar-5a9.mar-a62)!", + result: { + word: "marksista", + correct: 25, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "04.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/10-10-2025-flag-pl-diffle-difflepl-grywebowe-30-liter-w-3-slowach-large-green-ci" +] = [ + { + date: "10.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMWM50ieyBnL4UWNt4WY65iNhJWLllWbuAjL54yMugTMuMDOy0yN4UCNDVSYrlmblpncwhSI", + value: "!(przenikać-283.18.3.9.0.mie-ba6.zan-5e8.prz-91c2)!", + result: { + word: "przenikać", + correct: 18, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "10.10.2025", + }, + }, + { + date: "10.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzYxkTL6JHcuATLhlmLzIWLpdmeuMDNzETLsl3duAjL44SMuAjMuMDOy0yN4UCNDVSYrlmblpncwhSI", + value: "!(przenikać-283.20.1.8.0.wyl-1343.zgi-b3.ia-0.prz-91c2)!", + result: { + word: "przenikać", + correct: 20, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "10.10.2025", + }, + }, + { + date: "10.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMWM54iYlVDNuAzNmVTL6JHcuUDOx0ieydnL00ictVnL3IjNtUmey5yMjlTLvxmeuImY00ybyNnLw4iNx4iMukzMuMDOy0yN4UCNDVSYrlmblpncwhSI", + value: + "!(przenikać-283.39.2.16.0.sro-4bb.zlo-9c3.rze-627.umr-4.wrz-185.prz-5f70.45eb.91c2)!", + result: { + word: "przenikać", + correct: 39, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 57, + date: "10.10.2025", + }, + }, + { + date: "10.10.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMWM54CNjFTOuMmZxkjL5AjM50ieukDZ00SZyBnLw4yMx4iMugzMuMDOy0yN4UCNDVSYrlmblpncwhSI", + value: "!(przenikać-283.38.2.13.0.pre-4d9.z-9209.91fc.91c4.91c2)!", + result: { + word: "przenikać", + correct: 38, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 53, + date: "10.10.2025", + }, + }, + { + date: "10.10.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMWM50iey5yYzUWMtIXYw5CZ5ITL1h2YuYDNl1CczdnLw4CNx4iMuAjMuMDOy0yN4UCNDVSYrlmblpncwhSI", + value: "!(przenikać-283.20.2.14.0.wsp-e46.chu-29d.par-1e3c.rz-91c2)!", + result: { + word: "przenikać", + correct: 20, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "10.10.2025", + }, + }, + { + date: "10.10.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzYxkTL6JHcuI2Ml1ich5mL4kTLvpneuAjL14iMugTMuMDOy0yN4UCNDVSYrlmblpncwhSI", + value: "!(przenikać-283.18.2.5.0.zzo-98.nar-e3b.prz-91c2)!", + result: { + word: "przenikać", + correct: 18, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "10.10.2025", + }, + }, + { + date: "10.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMWM50ieyBnL4UWNt4WY65iZiJTL1h2YuAjL34SMugTMuMDOy0yN4UCNDVSYrlmblpncwhSI", + value: "!(przenikać-283.18.1.7.0.chu-2bf.zan-5e8.prz-91c2)!", + result: { + word: "przenikać", + correct: 18, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "10.10.2025", + }, + }, + { + date: "10.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMWM50ieyBnL2kTMtUGc15CZ4ETLwNXYuAjL44iMukTMuMDOy0yN4UCNDVSYrlmblpncwhSI", + value: "!(przenikać-283.19.2.8.0.asp-18d.upe-196.prz-91c2)!", + result: { + word: "przenikać", + correct: 19, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "10.10.2025", + }, + }, + { + date: "10.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzYxkTL6JHcuMGM20SaupnL0AjNy0ych5mL4kTLvpneuAjL34iMuIjMuMDOy0yN4UCNDVSYrlmblpncwhSI", + value: "!(przenikać-283.22.2.7.0.zzo-98.nas-2604.zni-60c.prz-91c2)!", + result: { + word: "przenikać", + correct: 22, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "10.10.2025", + }, + }, + { + date: "10.10.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzYxkTL6JHcuI2Ml1ich5mL4kTLvpneuAjL14iMugTMuMDOy0yN4UCNDVSYrlmblpncwhSI", + value: "!(przenikać-283.18.2.5.0.zzo-98.nar-e3b.prz-91c2)!", + result: { + word: "przenikać", + correct: 18, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "10.10.2025", + }, + }, + { + date: "10.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMjFTOtoncuQzYjFTLyFGcuMmN10yY6NnLyYWMtkWbuU2Y20CbvpnLw4SNx4iMuMjMuMDOy0yN4UCNDVSYrlmblpncwhSI", + value: + "!(przenikać-283.23.2.15.0.zol-6ce.mi-1f2.szc-56c.par-1cc4.rz-91c2)!", + result: { + word: "przenikać", + correct: 23, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "10.10.2025", + }, + }, + { + date: "10.10.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzYxkjL2EWOx4SNyYjLhJDMj5yNhBTYtoncuMWN10SZpBnLw4SNx4yMuIDNuMDOy0yN4UCNDVSYrlmblpncwhSI", + value: "!(przenikać-283.42.3.15.0.pie-55c.rz-a0a7.c02a.625.19a6.91c2)!", + result: { + word: "przenikać", + correct: 42, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 60, + date: "10.10.2025", + }, + }, + { + date: "10.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMjFTOtoncukzNx0ibl5SYtMXaw5COwcTLslWbuAjL14CMuEjMuMDOy0yN4UCNDVSYrlmblpncwhSI", + value: "!(przenikać-283.21.0.5.0.mil-708.pis-a.en-179.rz-91c2)!", + result: { + word: "przenikać", + correct: 21, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "10.10.2025", + }, + }, + { + date: "10.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzYxkjLzkDOhFTL6JHcuAjL24CMuYTMuMDOy0yN4UCNDVSYrlmblpncwhSI", + value: "!(przenikać-283.16.0.6.0.prz-1a893.91c2)!", + result: { + word: "przenikać", + correct: 16, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "10.10.2025", + }, + }, + { + date: "10.10.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzYxkTL6JnLz0yapBnLkZTMx0CchpnL2MDNtUGbr5SMiFTLllWbuMWN00SYpNmLyMzMx0yc5dnLw4SMx4SNugjMuMDOy0yN4UCNDVSYrlmblpncwhSI", + value: + "!(przenikać-283.28.5.11.0.wys-1332.cia-45c.mie-1b1.kle-436.zap-116d.pik-3.rz-91c2)!", + result: { + word: "przenikać", + correct: 28, + position: 5, + incorrect: 11, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 44, + date: "10.10.2025", + }, + }, + { + date: "10.10.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMjFTOtoncw5COlVTLuFmeuQzMzETLsl3duAjL24CMukTMuMDOy0yN4UCNDVSYrlmblpncwhSI", + value: "!(przenikać-283.19.0.6.0.wyl-1334.zan-5e8.prz-91c2)!", + result: { + word: "przenikać", + correct: 19, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "10.10.2025", + }, + }, + { + date: "10.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMjFTOuYWOlVjLiZTN34SNyYjL2UzNz0ieyBnLw4CMx4iMuYzMuMDOy0yN4UCNDVSYrlmblpncwhSI", + value: "!(przenikać-283.36.2.10.0.prz-3756.625.756b.5e9f.91c2)!", + result: { + word: "przenikać", + correct: 36, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 48, + date: "10.10.2025", + }, + }, + { + date: "10.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMjFTOuAzYzEmLhJDMj5iZhhDOucjMiRjLwATYwETL6JnLzQjY00CZvBnLw4CNx4SMuYDNuMDOy0yN4UCNDVSYrlmblpncwhSI", + value: + "!(przenikać-283.46.1.14.0.pod-4b43.rz-10a00.4b27.88af.c02a.a3c0.91c2)!", + result: { + word: "przenikać", + correct: 46, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 61, + date: "10.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/11-11-2025-flag-pl-diffle-difflepl-grywebowe-34-litery-w-6-slowach-herb-21-dumpl" +] = [ + { + date: "11.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNyMTL0l3YuMWMm1SYrNnLyEWLoN2MuATLulnLw0ibl5iZiJTL1h2YuAjLzEjLw4SMy4SNxMTLh5WeyRXejhSI", + value: "!(cytryna-315.21.0.13.0.chu-2bf.en-0.yn-0.3ch-a2.ska-f1c.cyt-324)!", + result: { + word: "cytryna", + correct: 21, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "11.11.2025", + }, + }, + { + date: "11.11.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjMz0Cd5NmLxczMtQnbh5iNhJWLllWbuAjLyEjL14iMx4SNxMTLh5WeyRXejhSI", + value: "!(cytryna-315.12.5.12.0.mie-ba6.ant-371.cyt-324)!", + result: { + word: "cytryna", + correct: 12, + position: 5, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "11.11.2025", + }, + }, + { + date: "11.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjMz0Cd5NmL2QTL0VnbuMGZ50SYyRnLkVWOtM3br5CMukjLz4SNx4SNxMTLh5WeyRXejhSI", + value: "!(cytryna-315.15.3.9.0.kos-9ed.tra-9dc.nut-46.cyt-324)!", + result: { + word: "cytryna", + correct: 15, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "11.11.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0IzMtQXej5yN1QTLvBXduAjLwEjLx4SMx4SNxMTLh5WeyRXejhSI", + value: "!(cytryna-315.11.1.10.0.upo-457.cyt-324)!", + result: { + word: "cytryna", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + }, + }, + { + date: "11.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjMz0Cd5NmLmZjMtQXYs5iYm1Cd1ZmLxU2YtIXZ05CMukjLw4iMy4SNxMTLh5WeyRXejhSI", + value: "!(cytryna-315.22.0.9.0.ter-ce1.fut-fb.lat-26f.cyt-324)!", + result: { + word: "cytryna", + correct: 22, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "11.11.2025", + }, + }, + { + date: "11.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjMz0Cd5NmL4MTMy0ichtmLjhTLulncuYDNx0ybydnLw0ibyVnLjZTYtEmcn5CMukjLx4yMy4SNxMTLh5WeyRXejhSI", + value: + "!(cytryna-315.23.1.9.0.gra-a6c.urn-0.wro-146.ryn-8c.kar-2138.cyt-324)!", + result: { + word: "cytryna", + correct: 23, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "11.11.2025", + }, + }, + { + date: "11.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNyMTL0l3YuMTO4EWMtoncw5CMucjLy4SMx4SNxMTLh5WeyRXejhSI", + value: "!(cytryna-315.11.2.7.0.prz-1a893.cyt-324)!", + result: { + word: "cytryna", + correct: 11, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "11.11.2025", + }, + }, + { + date: "11.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNyMTL0l3YuImZtQXdm5iZ2ITL0FGbuQ2NtUmcr5SZldTLvR3cuEzNtIXe05CNmFTLkl3duIjL1EjL04SOy4SNxMTLh5WeyRXejhSI", + value: + "!(cytryna-315.29.4.15.2.wyd-1f4.tyr-71.sto-7ee.kre-7d.lat-26f.fut-fb.cyt-324)!", + result: { + word: "cytryna", + correct: 29, + position: 4, + incorrect: 15, + knownIncorrect: 2, + totalWords: 7, + totalLetters: 48, + date: "11.11.2025", + }, + }, + { + date: "11.11.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjMz0Cd5NmLhJ2My0ybyBnLw4SNuIjL54SNxMTLh5WeyRXejhSI", + value: "!(cytryna-315.9.2.5.0.pro-23ba.cyt-324)!", + result: { + word: "cytryna", + correct: 9, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "11.11.2025", + }, + }, + { + date: "11.11.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNyMTL0lnL1gTMt0Gaj5CNhVTL6JHdllmbuAjLzEjLx4SNx4SNxMTLh5WeyRXejhSI", + value: "!(cytryna-315.15.1.13.0.nietrz-5a4.chm-185.yt-324)!", + result: { + word: "cytryna", + correct: 15, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "11.11.2025", + }, + }, + { + date: "11.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjMz0Cd5NmL0ImNtE2dr5CMukjLz4CMx4SNxMTLh5WeyRXejhSI", + value: "!(cytryna-315.10.3.9.0.kwa-6b4.cyt-324)!", + result: { + word: "cytryna", + correct: 10, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "11.11.2025", + }, + }, + { + date: "11.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjMz0Cd5NmLmRDOtknc05yNwITL0FmcucjMtsWdl5CMugjL14COx4SNxMTLh5WeyRXejhSI", + value: "!(cytryna-315.18.5.8.0.euk-27.rat-207.try-84f.cyt-324)!", + result: { + word: "cytryna", + correct: 18, + position: 5, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "11.11.2025", + }, + }, + { + date: "11.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0IzMtQXej5SZiJTL1JHduEWM3MTL6JHcuAjLwEjLx4yMx4SNxMTLh5WeyRXejhSI", + value: "!(cytryna-315.13.1.10.0.prz-371a.tru-2be.cyt-324)!", + result: { + word: "cytryna", + correct: 13, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "11.11.2025", + }, + }, + { + date: "11.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjMz0CduEmMtYWej5SYtMWdy5SO0ITLk9WbuAjLxEjLy4SNx4SNxMTLh5WeyRXejhSI", + value: "!(cytryna-315.15.2.11.0.mod-249.ruc-a.cyf-2a.t-324)!", + result: { + word: "cytryna", + correct: 15, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "11.11.2025", + }, + }, + { + date: "11.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNyMTL05CMt4Wej5iMzYWLiFmbuEWMyUTL69GcuAjLwEjLz4SNx4SNxMTLh5WeyRXejhSI", + value: "!(cytryna-315.15.3.10.0.poz-521a.nab-f32.cyn-0.t-324)!", + result: { + word: "cytryna", + correct: 15, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "11.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/12-11-2025-flag-pl-diffle-difflepl-grywebowe-36-liter-w-5-slowach-large-green-ci" +] = [ + { + date: "12.11.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjY0ITLs9GcucTMx0ibvxmL0I2Nt8Gbn5iY2MTLvxmYuYTYi1SZp1mLw4CNx4iMuAjMuYTMz0SYuNkQlUzQl8mM4USNDVybwhSI", + value: "!(położna-316.20.2.14.0.mie-ba6.blo-36b.glo-7b4.lon-117.pol-24b2)!", + result: { + word: "położna", + correct: 20, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "12.11.2025", + }, + }, + { + date: "12.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyIGNy0CbvBnLjRWLvxGcllmbuAjL24SMuETMuYTMz0SYuNkQlUzQl8mM4USNDVybwhSI", + value: "!(położna-316.11.1.6.0.nieplo-dc.pol-24b2)!", + result: { + word: "położna", + correct: 11, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "12.11.2025", + }, + }, + { + date: "12.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMiRjMtw2bw5CO3ETLs9meuMDNzETLsl3duAjL34iMuMTMuYTMz0SYuNkQlUzQl8mM4USNDVybwhSI", + value: "!(położna-316.13.2.7.0.wyl-1343.zol-178.pol-24b2)!", + result: { + word: "położna", + correct: 13, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "12.11.2025", + }, + }, + { + date: "12.11.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMiRjMtw2bw5iZ0QWLz92auAjL44CMuATMuYTMz0SYuNkQlUzQl8mM4USNDVybwhSI", + value: "!(położna-316.10.0.8.0.kos-d4f.pol-24b2)!", + result: { + word: "położna", + correct: 10, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "12.11.2025", + }, + }, + { + date: "12.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMiRjMuE2N1ITLs9GcuQGOx0CczFmLw4CMx4yMuYTMuYTMz0SYuNkQlUzQl8mM4USNDVybwhSI", + value: "!(położna-316.16.3.10.0.asp-18d.pol-257a.24b2)!", + result: { + word: "położna", + correct: 16, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "12.11.2025", + }, + }, + { + date: "12.11.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjY0ITLs9GcugTN00ybsJmL3U2Mt8Gbz5CZzETLvxWduMDM40CbhdmL0MzMx0Cb5dnLw4SNx4SMuMjMuYTMz0SYuNkQlUzQl8mM4USNDVybwhSI", + value: + "!(położna-316.23.1.15.0.wyl-1334.gal-803.ulo-13d.slo-3e7.blo-458.pol-24b2)!", + result: { + word: "położna", + correct: 23, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "12.11.2025", + }, + }, + { + date: "12.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjY0ITLs9mLkRTNt8GbuImYwMTLs9mLkFzNz0ieyBnLw4yMx4CMucTMuYTMz0SYuNkQlUzQl8mM4USNDVybwhSI", + value: "!(położna-316.17.0.13.0.prz-371d.ol-30bb.lo-54d.ol-24b2)!", + result: { + word: "położna", + correct: 17, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "12.11.2025", + }, + }, + { + date: "12.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyIGNy0CbvBnL4IWNtUHbk5CO50yb6pnLw4CMx4SMuITMuYTMz0SYuNkQlUzQl8mM4USNDVybwhSI", + value: "!(położna-316.12.1.10.0.zzo-98.dlu-5b8.pol-24b2)!", + result: { + word: "położna", + correct: 12, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "12.11.2025", + }, + }, + { + date: "12.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjY0ITLs9mLkRTNt8Gbw5CNidTLvx2ZuYmYy0SdoNmLw4CMx4CMukTMuYTMz0SYuNkQlUzQl8mM4USNDVybwhSI", + value: "!(położna-316.19.0.10.0.chu-2bf.glo-7b4.plo-54d.ol-24b2)!", + result: { + word: "położna", + correct: 19, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "12.11.2025", + }, + }, + { + date: "12.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjY0ITLs9GcugTOt8me65CMuUjLx4SOuYTMz0SYuNkQlUzQl8mM4USNDVybwhSI", + value: "!(położna-316.9.1.5.0.zzo-98.pol-24b2)!", + result: { + word: "położna", + correct: 9, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "12.11.2025", + }, + }, + { + date: "12.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyIGNy0CbuQmYm1iYuMTNj1yZvBnL1UjMto2b35yM5gTYx0ieyBnLw4SMy4CMuMjMuYTMz0SYuNkQlUzQl8mM4USNDVybwhSI", + value: "!(położna-316.23.0.21.0.prz-1a893.woj-255.pog-c53.b-fbd.l-24b2)!", + result: { + word: "położna", + correct: 23, + position: 0, + incorrect: 21, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 44, + date: "12.11.2025", + }, + }, + { + date: "12.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMiRjMtw2bw5iZilTLvxmeugzNto3bs5iN5YTLs9meuAjL24SMuYTMuYTMz0SYuNkQlUzQl8mM4USNDVybwhSI", + value: "!(położna-316.16.1.6.0.zol-696.loz-78.zlo-9bf.pol-24b2)!", + result: { + word: "położna", + correct: 16, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "12.11.2025", + }, + }, + { + date: "12.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMiRjMtw2bw5SO1YTMtwWY65CMuIjLy4SOuYTMz0SYuNkQlUzQl8mM4USNDVybwhSI", + value: "!(położna-316.9.2.2.0.zal-1659.pol-24b2)!", + result: { + word: "położna", + correct: 9, + position: 2, + incorrect: 2, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "12.11.2025", + }, + }, + { + date: "12.11.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyIGNy0Cbv5SN2UTLvxGcuYDNl1CczdnLw4SMx4SMuQTMuYTMz0SYuNkQlUzQl8mM4USNDVybwhSI", + value: "!(położna-316.14.1.11.0.wsp-e46.plo-565.ol-24b2)!", + result: { + word: "położna", + correct: 14, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "12.11.2025", + }, + }, + { + date: "12.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjY0ITLs9GcuUTOz0CajNjL0E2Nt8GbuQWNtoWYuITO40icl5iNzYTLvxGcuIWYj1CboNmL5YjMtw2a15iNz0ybsRmLyMzMx0yc5dnLw4SMy4SMugjMuYTMz0SYuNkQlUzQl8mM4USNDVybwhSI", + value: + "!(położna-316.28.1.21.0.wys-1332.dlo-36.ukl-269.chl-cab.plo-636.er-892.aj-5d.lo-7a4.3ch-395.pol-24b2)!", + result: { + word: "położna", + correct: 28, + position: 1, + incorrect: 21, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 50, + date: "12.11.2025", + }, + }, + { + date: "12.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyIGNy4CN1MjMuQDNkFjLwITNy0CbuMDNiRTLk9GcuAjL54CMuQjMuYTMz0SYuNkQlUzQl8mM4USNDVybwhSI", + value: "!(położna-316.24.0.9.0.pod-4b43.l-2520.1d44.2354.24b2)!", + result: { + word: "położna", + correct: 24, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "12.11.2025", + }, + }, + { + date: "12.11.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMiRjMtw2bugjMz0ybsBnLiZzMt8Gbi5SO1UTLzFGbukDZy0Sa3NmLw4SNx4SMukTMuYTMz0SYuNkQlUzQl8mM4USNDVybwhSI", + value: "!(położna-316.19.1.15.0.cwi-2d9.las-559.blo-36b.plo-328.ol-24b2)!", + result: { + word: "położna", + correct: 19, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "12.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/14-11-2025-diffle-difflepl-grywebowe-18-liter-w-3-slowach-large-green-circle-8-l" +] = [ + { + date: "14.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYtUWauIjYx0SZsBnLiVWOtM3br5CMuATMuAjL44COxMTLjVWawhSI", + value: "!(piec-318.8.0.10.0.kos-9eb.ple-1b2.ie-a)!", + result: { + word: "piec", + correct: 8, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "14.11.2025", + }, + }, + { + date: "14.11.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKh1SZpBnL3UDNt8Gc15CMuETMuEjL34COxMTLjVWawhSI", + value: "!(piec-318.7.1.11.0.upo-457.pie-a)!", + result: { + word: "piec", + correct: 7, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "14.11.2025", + }, + }, + { + date: "14.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKh5iY4ITLllmL4ADNtUHbw5CMukjLx4CMx4COxMTLjVWawhSI", + value: "!(piec-318.10.1.9.0.plu-408.ie-28b.a)!", + result: { + word: "piec", + correct: 10, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "14.11.2025", + }, + }, + { + date: "14.11.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKh1SZpBnL2EmYtUWat5CMuETMuAjL34COxMTLjVWawhSI", + value: "!(piec-318.7.0.11.0.mie-ba6.pie-a)!", + result: { + word: "piec", + correct: 7, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "14.11.2025", + }, + }, + { + date: "14.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWLllGcuQmM00icwNnLw4SOuAjL34COxMTLjVWawhSI", + value: "!(piec-318.7.0.9.0.spr-42d.pie-a)!", + result: { + word: "piec", + correct: 7, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "14.11.2025", + }, + }, + { + date: "14.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKh1SZpBnL0ImNtE2dr5CMuITMuEjL24COxMTLjVWawhSI", + value: "!(piec-318.6.1.12.0.kwa-6b4.pie-a)!", + result: { + word: "piec", + correct: 6, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "14.11.2025", + }, + }, + { + date: "14.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWLllGcuYmYy0SdoNmLw4COuEjL14COxMTLjVWawhSI", + value: "!(piec-318.5.1.8.0.chu-2bf.pie-a)!", + result: { + word: "piec", + correct: 5, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "14.11.2025", + }, + }, + { + date: "14.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYuUWYy0SZpBnL3MzYx0SZpdnL3ITLrVXZuAjLyEjLx4CMx4COxMTLjVWawhSI", + value: "!(piec-318.10.1.12.0.euk-27.wie-1c37.pie-2ae.a)!", + result: { + word: "piec", + correct: 10, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "14.11.2025", + }, + }, + { + date: "14.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYtUWaw5yYzETLll2YuQjZx0CZ5dnLw4COuIjL34COxMTLjVWawhSI", + value: "!(piec-318.7.2.8.0.wyd-1f4.cie-13c.pie-a)!", + result: { + word: "piec", + correct: 7, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "14.11.2025", + }, + }, + { + date: "14.11.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYugDN10SZpBnLw4COuAjL34COxMTLjVWawhSI", + value: "!(piec-318.7.0.8.0.pie-548.a)!", + result: { + word: "piec", + correct: 7, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "14.11.2025", + }, + }, + { + date: "14.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYuUTMyETLllGcuMmNh1SYydmLw4SNuAjL54COxMTLjVWawhSI", + value: "!(piec-318.9.0.5.0.gra-a6c.pie-1215.a)!", + result: { + word: "piec", + correct: 9, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 14, + date: "14.11.2025", + }, + }, + { + date: "14.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWLllmL5EzNz0ieyBnLw4yNuEjL24COxMTLjVWawhSI", + value: "!(piec-318.6.1.7.0.prz-3719.ie-a)!", + result: { + word: "piec", + correct: 6, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "14.11.2025", + }, + }, + { + date: "14.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKh1SZpBnLk1SZpJmL5QjMtQ2bt5CMuATMuEjL54COxMTLjVWawhSI", + value: "!(piec-318.9.1.10.0.mod-249.bie-d.pie-a)!", + result: { + word: "piec", + correct: 9, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "14.11.2025", + }, + }, + { + date: "14.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmLlJWLllmLzkDOhFTL6JHcuAjLxEjLx4SMx4COxMTLjVWawhSI", + value: "!(piec-318.11.1.11.0.prz-1a893.ie-be.a)!", + result: { + word: "piec", + correct: 11, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "14.11.2025", + }, + }, + { + date: "14.11.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYuQzY0EjLlVTOuUTMyETLl5COy0yZp5iMlFWLuFGcuAjL0EjLw4SOx4COxMTLjVWawhSI", + value: "!(piec-318.19.0.14.0.pan-ae2.ig-28.e-1215.95e.14c4.a)!", + result: { + word: "piec", + correct: 19, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "14.11.2025", + }, + }, + { + date: "14.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWLllmLhFjM10ievBnLw4yNuAjL34COxMTLjVWawhSI", + value: "!(piec-318.7.0.7.0.poz-521a.ie-a)!", + result: { + word: "piec", + correct: 7, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "14.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/14-12-2025-flag-pl-diffle-difflepl-grywebowe-27-liter-w-3-slowach-large-green-ci" +] = [ + { + date: "14.12.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMxETLk9GbuEWOy0SdoNmL0EWNtonc0VWau5CMuYTMuEjLwEjL4QzMtU2dvR2bshSI", + value: "!(lodowe-348.10.1.16.0.nietrz-5a4.chu-29a.lod-110)!", + result: { + word: "lodowe", + correct: 10, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "14.12.2025", + }, + }, + { + date: "14.12.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwETMtQ2bs5SOzETLoN2MuITN00CblhmL5YWNtg2Yz4yN00CbvJmLwYWOtM3br5CMuYTMuEjL2EjL4QzMtU2dvR2bshSI", + value: + "!(lodowe-348.16.1.16.0.kos-9f0.bol-47.3ch-5f9.hel-452.3ch-139.lod-110)!", + result: { + word: "lodowe", + correct: 16, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "14.12.2025", + }, + }, + { + date: "14.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwETMtQ2bs5iMl1ybsJmLwcjMtw2bt5iZl1Cbv5SZlBDNtMXe35CMuATMuQjL5EjL4QzMtU2dvR2bshSI", + value: "!(lodowe-348.19.4.10.0.wys-40ee.ol-ef.mol-270.blo-e2.lod-110)!", + result: { + word: "lodowe", + correct: 19, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "14.12.2025", + }, + }, + { + date: "14.12.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwETMtQ2bs5yNm1CZvtmLyIDNtQ2bt5CZ20CZvdmLkJDNtIHcz5CMuETMuEjL0IjL4QzMtU2dvR2bshSI", + value: "!(lodowe-348.24.1.11.0.spr-42d.god-6d.mod-422.kod-f7.lod-110)!", + result: { + word: "lodowe", + correct: 24, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "14.12.2025", + }, + }, + { + date: "14.12.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwETMuADMx0CZvxmL0EWNtonc0VWau5CMuITMuEjL1EjL4QzMtU2dvR2bshSI", + value: "!(lodowe-348.15.1.12.0.nietrz-5a4.lod-100.110)!", + result: { + word: "lodowe", + correct: 15, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "14.12.2025", + }, + }, + { + date: "14.12.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwETMtQ2bs5yY00yb39mLyATMtIWdukDZx0CclxmLjZTYtEmcn5CMuITMuEjL0EjL4QzMtU2dvR2bshSI", + value: "!(lodowe-348.14.1.12.0.gra-a6c.lep-1d9.ub-102.owo-4c.lod-110)!", + result: { + word: "lodowe", + correct: 14, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "14.12.2025", + }, + }, + { + date: "14.12.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMxETLk9GbuEjM40ydvRmLwATYx0ydvBnLm1ydvJnL3YmNx0ybrNnLmJmMtUHaj5CMukTMuIjLxIjL4QzMtU2dvR2bshSI", + value: + "!(lodowe-348.21.2.19.0.chu-2bf.sko-16f7.row-f.pow-1a00.dow-821.lod-110)!", + result: { + word: "lodowe", + correct: 21, + position: 2, + incorrect: 19, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 42, + date: "14.12.2025", + }, + }, + { + date: "14.12.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwETMtQ2bs5iMj1CZv1mL2IDNtIGZv5iMxITNto3bw5CMuMTMuEjL0EjL4QzMtU2dvR2bshSI", + value: "!(lodowe-348.14.1.13.0.poz-5212.odb-426.mod-c2.lod-110)!", + result: { + word: "lodowe", + correct: 14, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "14.12.2025", + }, + }, + { + date: "14.12.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMxETLk9GbuImM00CbvBnL3ITLrVXZuAjL54iMukjL4QzMtU2dvR2bshSI", + value: "!(lodowe-348.9.2.9.0.euk-27.pol-42b.lod-110)!", + result: { + word: "lodowe", + correct: 9, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "14.12.2025", + }, + }, + { + date: "14.12.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATMx0CZvxmLkZTLk92ZuQjZx0CZ5dnLw4yNuEjLzEjL4QzMtU2dvR2bshSI", + value: "!(lodowe-348.13.1.7.0.wyd-1f4.god-6d.lod-110)!", + result: { + word: "lodowe", + correct: 13, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "14.12.2025", + }, + }, + { + date: "14.12.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwETMtQ2bs5yMx0yYs9mLwgTYt02bk5SYxczMtoncw5CMuETMuMjL2EjL4QzMtU2dvR2bshSI", + value: "!(lodowe-348.16.3.11.0.prz-371a.dom-a80.olc-13.lod-110)!", + result: { + word: "lodowe", + correct: 16, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "14.12.2025", + }, + }, + { + date: "14.12.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMxETLk9GbuE2Nz0Cbk9mL2EmYtUWat5CMuATMuQjLxEjL4QzMtU2dvR2bshSI", + value: "!(lodowe-348.11.4.10.0.mie-ba6.odl-37a.lod-110)!", + result: { + word: "lodowe", + correct: 11, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "14.12.2025", + }, + }, + { + date: "14.12.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATMx0CZuEDNtM3bs5CN50iYl1mLxMTLvx2aukTNtwWam5CMuQTMuAjLwIjL4QzMtU2dvR2bshSI", + value: "!(lodowe-348.20.0.14.0.fil-59.klo-31.meb-94.los-41.d-110)!", + result: { + word: "lodowe", + correct: 20, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "14.12.2025", + }, + }, + { + date: "14.12.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwETMtQ2bs5iYxETLs92ZuMzMtM3bi5COkFTLq92duMTO4EWMtoncw5CMugTMuIjLzEjL4QzMtU2dvR2bshSI", + value: "!(lodowe-348.13.2.18.0.prz-1a893.woj-1d8.bos-33.gol-11b.lod-110)!", + result: { + word: "lodowe", + correct: 13, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "14.12.2025", + }, + }, + { + date: "14.12.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMxETLk9GbuQTNhFTLs9GcuYWZtw2b35yNh1iavJmL0ImNtE2dr5CMuUTMuQjL2EjL4QzMtU2dvR2bshSI", + value: "!(lodowe-348.16.4.15.0.kwa-6b4.boj-a7.wol-ef.pol-1a54.lod-110)!", + result: { + word: "lodowe", + correct: 16, + position: 4, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "14.12.2025", + }, + }, + { + date: "14.12.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATMx0CZvxmLxADN00CZvBnL5QjMtQ2bt5CMuATMuEjLyEjL4QzMtU2dvR2bshSI", + value: "!(lodowe-348.12.1.10.0.mod-249.pod-4401.lod-110)!", + result: { + word: "lodowe", + correct: 12, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "14.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/15-10-2025-flag-pl-diffle-difflepl-grywebowe-31-liter-w-3-slowach-large-green-ci" +] = [ + { + date: "15.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3kjZtk2d65iYiZTL3J2buYTYi1SZp1mLw4CMx4CNucTMugDOy0SYp52dvJXa3NkQlUzQlgSI", + value: "!(żwirownia-288.17.4.10.0.mie-ba6.obw-6bb.zwi-f97)!", + result: { + word: "żwirownia", + correct: 17, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "15.10.2025", + }, + }, + { + date: "15.10.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTOm5COzYWLpdneukjZtEWa35CZ5ITL1h2YuYDNl1CczdnLw4iNx4yMuMjMugDOy0SYp52dvJXa3NkQlUzQlgSI", + value: "!(żwirownia-288.23.3.16.0.wsp-e46.chu-29d.wia-f9.zwi-f38.f97)!", + result: { + word: "żwirownia", + correct: 23, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "15.10.2025", + }, + }, + { + date: "15.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3kjZtk2d65CMl1yc1BnLjFzMtIWZ65CNmJGMx0ievJnLzQzMx0Cb5dnLw4iNx4yMuIjMugDOy0SYp52dvJXa3NkQlUzQlgSI", + value: + "!(żwirownia-288.22.3.16.0.wyl-1343.roz-10bf4.zeb-31c.pus-e0.zwi-f97)!", + result: { + word: "żwirownia", + correct: 22, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "15.10.2025", + }, + }, + { + date: "15.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3kjZtk2duMWY3EjLhVDOx0ich5CMy0Cd5pnLyEWOtUWai5iY2MTLoN2MuYzMt8Gbk5CNz0ybnFmLzEDOtkGcv5SYi1SaztmLy4SMy4yMugzMugDOy0SYp52dvJXa3NkQlUzQlgSI", + value: + "!(żwirownia-288.38.3.21.2.ksi-ba.opi-813.ago-34.dlo-36.3ch-36b.bie-9a2.zyt-20.ar-185a.17ac.wi-f97)!", + result: { + word: "żwirownia", + correct: 38, + position: 3, + incorrect: 21, + knownIncorrect: 2, + totalWords: 10, + totalLetters: 62, + date: "15.10.2025", + }, + }, + { + date: "15.10.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN5YWLpdnL2kTLu9mL4kTLvpneuAjL24CMuUTMugDOy0SYp52dvJXa3NkQlUzQlgSI", + value: "!(żwirownia-288.15.0.6.0.zzo-98.on-96.wi-f97)!", + result: { + word: "żwirownia", + correct: 15, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "15.10.2025", + }, + }, + { + date: "15.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTOm1Sa3pnL5EmMtwWaz5iZiJTL1h2YuAjL34SMukTMugDOy0SYp52dvJXa3NkQlUzQlgSI", + value: "!(żwirownia-288.19.1.7.0.chu-2bf.sil-2a9.zwi-f97)!", + result: { + word: "żwirownia", + correct: 19, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "15.10.2025", + }, + }, + { + date: "15.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN5YWLpdneuQGMy0ydvJnLkFzNz0ieyBnLw4CMx4CMugTMugDOy0SYp52dvJXa3NkQlUzQlgSI", + value: "!(żwirownia-288.18.0.10.0.prz-371d.row-20d.zwi-f97)!", + result: { + word: "żwirownia", + correct: 18, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "15.10.2025", + }, + }, + { + date: "15.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTOm1Sa35SOjFTL3lnL2kTLu9meuQGOx0CczFmLw4CMx4SMuEjMugDOy0SYp52dvJXa3NkQlUzQlgSI", + value: "!(żwirownia-288.21.1.10.0.asp-18d.zon-96.yw-1c9.wi-f97)!", + result: { + word: "żwirownia", + correct: 21, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "15.10.2025", + }, + }, + { + date: "15.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3kjZtk2duYTOt42buUGOiFTLkFmL4kTLvpneuAjL44SMucTMugDOy0SYp52dvJXa3NkQlUzQlgSI", + value: "!(żwirownia-288.17.1.8.0.zzo-98.ad-1b8e.on-96.wi-f97)!", + result: { + word: "żwirownia", + correct: 17, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "15.10.2025", + }, + }, + { + date: "15.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTOm5SNxYWLpdnL4IjZx0iYh5SZjZTLs9meuAjL54SMukTMugDOy0SYp52dvJXa3NkQlUzQlgSI", + value: "!(żwirownia-288.19.1.9.0.zol-6ce.ab-1f28.wi-f15.f97)!", + result: { + word: "żwirownia", + correct: 19, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "15.10.2025", + }, + }, + { + date: "15.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTOm1Sa3pnL0UWMtc3by5yM5gTYx0ieyBnLw4CMx4CMugTMugDOy0SYp52dvJXa3NkQlUzQlgSI", + value: "!(żwirownia-288.18.0.10.0.prz-1a893.row-1e4.zwi-f97)!", + result: { + word: "żwirownia", + correct: 18, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "15.10.2025", + }, + }, + { + date: "15.10.2025", + nick: "Sorokawojcie.ch", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3kjZtk2duYmZ4ETLyFmeuEGMhVTL69GcuAjL34iMucTMugDOy0SYp52dvJXa3NkQlUzQlgSI", + value: "!(żwirownia-288.17.2.7.0.poz-5a0a.zar-18ff.wi-f97)!", + result: { + word: "żwirownia", + correct: 17, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "15.10.2025", + }, + }, + { + date: "15.10.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcTOm1Sa3pnL3QmZtk2dz5SMmRTLyF2duUDMy0yby1mLlFWOy0ydvBnLyMzMx0yc5dnLw4yMx4SMuAzMugDOy0SYp52dvJXa3NkQlUzQlgSI", + value: + "!(żwirownia-288.30.1.13.0.wys-1332.pow-29ae.mro-205.war-4f1.swi-fd7.zwi-f97)!", + result: { + word: "żwirownia", + correct: 30, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 44, + date: "15.10.2025", + }, + }, + { + date: "15.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3kjZtk2duMGNx0yd55iNklTLp5meuATOtcWYq5COwcTLslWbuAjL54CNuMjMugDOy0SYp52dvJXa3NkQlUzQlgSI", + value: "!(żwirownia-288.23.4.9.0.mil-708.jag-90.zni-9d6.yw-14c.wi-f97)!", + result: { + word: "żwirownia", + correct: 23, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "15.10.2025", + }, + }, + { + date: "15.10.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3kjZtk2d65CZ2IjMtI3bw5CZ20ydyRnL0MzMx0Cb5dnLw4iMx4yMuAjMugDOy0SYp52dvJXa3NkQlUzQlgSI", + value: "!(żwirownia-288.20.3.12.0.wyl-1334.trw-6d.por-226d.zwi-f97)!", + result: { + word: "żwirownia", + correct: 20, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "15.10.2025", + }, + }, + { + date: "15.10.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3kjZtk2d65yY1UTLllGcuAjL44CMuQTMugDOy0SYp52dvJXa3NkQlUzQlgSI", + value: "!(żwirownia-288.14.0.8.0.pie-55c.zwi-f97)!", + result: { + word: "żwirownia", + correct: 14, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "15.10.2025", + }, + }, + { + date: "15.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN5YWLpdneuMDZ50icvtmLiN2Nx0ichpnLjFmY00CZvBnLw4CMx4iMucTMugDOy0SYp52dvJXa3NkQlUzQlgSI", + value: "!(żwirownia-288.17.2.10.0.pod-4bac.zar-17cb.kor-9d3.zwi-f97)!", + result: { + word: "żwirownia", + correct: 17, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "15.10.2025", + }, + }, + { + date: "15.10.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN5YWLpdnL2QWOtkmbukTYiFTLkFmL4kTLvpneuAjL54iMugTMugDOy0SYp52dvJXa3NkQlUzQlgSI", + value: "!(żwirownia-288.18.2.9.0.zzo-98.ad-1ba9.ni-9d6.wi-f97)!", + result: { + word: "żwirownia", + correct: 18, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "15.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/16-10-2025-flag-pl-diffle-difflepl-grywebowe-28-liter-w-4-slowach-large-green-ci" +] = [ + { + date: "16.10.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLtlGbuATLslWbuUTOy0SdoNmL0EWNtonc0VWau5CMucTMuIjL54SO4ITLh1WashSI", + value: "!(lima-289.9.2.17.0.nietrz-5a4.chu-295.mil-0.lim-0)!", + result: { + word: "lima", + correct: 9, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "16.10.2025", + }, + }, + { + date: "16.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0SbpxmLidTMtkGbr5yYhFTMt0We35COjVTLmVGZuAjL1EjLx4SMx4SO4ITLh1WashSI", + value: "!(lima-289.11.1.15.0.def-5c8.wym-11ac.kli-17b.lim-0)!", + result: { + word: "lima", + correct: 11, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "16.10.2025", + }, + }, + { + date: "16.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLtlGbuQTYtoWdi5SOwMTLsFWbuYmNy0ydoNmLiVWOtM3br5CMuUTMuMjL54SO4ITLh1WashSI", + value: "!(lima-289.9.3.15.0.kos-9eb.chw-26f.mal-309.buj-a4.lim-0)!", + result: { + word: "lima", + correct: 9, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "16.10.2025", + }, + }, + { + date: "16.10.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0SbpxmLyEmMtUGaj5SYkJjMts2bw5CMuITMuEjL44SO4ITLh1WashSI", + value: "!(lima-289.8.1.12.0.pok-22da.che-2a2.lim-0)!", + result: { + word: "lima", + correct: 8, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "16.10.2025", + }, + }, + { + date: "16.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0SbuATLn5CMtInLmFTLs5iNzETLz5CMtAXas5iZiJTL1h2YuAjL1EjLw4SMy4SO4ITLh1WashSI", + value: "!(lima-289.21.0.15.0.chu-2bf.lip-0.s-136.l-1f.r-0.g-0.m-0)!", + result: { + word: "lima", + correct: 21, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 36, + date: "16.10.2025", + }, + }, + { + date: "16.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLtlGbuUmYx0SastmLkJDNtIHcz5CMuITMuEjL54SO4ITLh1WashSI", + value: "!(lima-289.9.1.12.0.spr-42d.kli-1be.lim-0)!", + result: { + word: "lima", + correct: 9, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "16.10.2025", + }, + }, + { + date: "16.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0SbpxmLygTMtUXaj5SM5ETLylWbuEWMyUTL69GcuAjLyEjLy4CMx4SO4ITLh1WashSI", + value: "!(lima-289.10.2.12.0.poz-521a.mir-191.ciu-182.lim-0)!", + result: { + word: "lima", + correct: 10, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "16.10.2025", + }, + }, + { + date: "16.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLtlGbuATLtl2cuATLtlmYuATLtlmeuI2Mx0yZh1mL3ITLrVXZuAjLzEjLy4iNx4SO4ITLh1WashSI", + value: "!(lima-289.16.2.13.0.euk-27.mag-13b.zim-0.bim-0.sim-0.lim-0)!", + result: { + word: "lima", + correct: 16, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "16.10.2025", + }, + }, + { + date: "16.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjLjZTLtlGbucDNy0iavdnLzkDOhFTL6JHcuAjL3EjLw4iMx4SO4ITLh1WashSI", + value: "!(lima-289.12.0.17.0.prz-1a893.woj-247.lim-6c.0)!", + result: { + word: "lima", + correct: 12, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "16.10.2025", + }, + }, + { + date: "16.10.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjLjZjLjZmLxImMt0Was5CO0UTLllGcuAjLxEjLx4SOx4SO4ITLh1WashSI", + value: "!(lima-289.19.1.11.0.pie-548.lim-2b1.fc.6c.0)!", + result: { + word: "lima", + correct: 19, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "16.10.2025", + }, + }, + { + date: "16.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMt0mL0IWLjlGbucDO50CbvtmLw0iYpJmLw0yZpZmLkZzMtEWaw5CNmFTLkl3duAjL5EjLx4yNx4SO4ITLh1WashSI", + value: + "!(lima-289.17.1.19.0.wyd-1f4.pia-36d.fig-0.bib-0.kol-987.lic-b4.m-0)!", + result: { + word: "lima", + correct: 17, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 37, + date: "16.10.2025", + }, + }, + { + date: "16.10.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw4yYm5yY20Sbp5CM3MTLtFGbuEDZtwWdt5CNtQHbh5yMzYTLs92auEjL2EjLx4SMy4SO4ITLh1WashSI", + value: "!(lima-289.21.1.16.1.kol-633.alt-4.mul-d1.lam-370.im-6c.fc.0)!", + result: { + word: "lima", + correct: 21, + position: 1, + incorrect: 16, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 38, + date: "16.10.2025", + }, + }, + { + date: "16.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0SbpxmLidTMtkGbr5SO0ITLk9WbuAjLwEjLx4CMx4SO4ITLh1WashSI", + value: "!(lima-289.10.1.10.0.mod-249.kli-17b.lim-0)!", + result: { + word: "lima", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "16.10.2025", + }, + }, + { + date: "16.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjLjZTLt5SOwITLulGbuEWM3MTL6JHcuAjL0EjLw4yMx4SO4ITLh1WashSI", + value: "!(lima-289.13.0.14.0.prz-371a.lin-209.m-6c.0)!", + result: { + word: "lima", + correct: 13, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "16.10.2025", + }, + }, + { + date: "16.10.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLtlGbuATLtlmeuczYx0SYp1mLjZTYtEmcn5CMugjLy4CMx4SO4ITLh1WashSI", + value: "!(lima-289.10.2.8.0.gra-a6c.mia-1c7.zim-0.lim-0)!", + result: { + word: "lima", + correct: 10, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "16.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/16-11-2025-diffle-difflepl-grywebowe-29-liter-w-4-slowach-large-green-circle-17-" +] = [ + { + date: "16.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0MjMx0ieyBnLwEWMtUHaj5yMiNTLlpncuQWZ50ycvtmLw4SOuMjL3EjLwIzMtEGclp3Y5pncwhSI", + value: "!(przyczepa-320.17.3.9.0.kos-9ed.rze-3b3.chu-1a0.prz-1234c)!", + result: { + word: "przyczepa", + correct: 17, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "16.11.2025", + }, + }, + { + date: "16.11.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjRzMyETL6JHcuQ2M10SZ6NmL2EmYtUWat5CMuETMuMjL2EjLwIzMtEGclp3Y5pncwhSI", + value: "!(przyczepa-320.16.3.11.0.mie-ba6.cze-53d.prz-1234c)!", + result: { + word: "przyczepa", + correct: 16, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "16.11.2025", + }, + }, + { + date: "16.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjRzMyETL6JHcuQjY20SY3tmLw4SOuEjL0EjLwIzMtEGclp3Y5pncwhSI", + value: "!(przyczepa-320.14.1.9.0.kwa-6b4.prz-1234c)!", + result: { + word: "przyczepa", + correct: 14, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 24, + date: "16.11.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjRzMyETL6JnLzcDNtAXYuUjMl1iclBnLw4COuQjL5EjLwIzMtEGclp3Y5pncwhSI", + value: "!(przyczepa-320.19.4.8.0.per-e25.ap-473.rz-1234c)!", + result: { + word: "przyczepa", + correct: 19, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + }, + }, + { + date: "16.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMGNzITMuU2NzUTMtoncw5iY2ITLlpncuMmNh1SYydmLw4SNuEjLyIjLwIzMtEGclp3Y5pncwhSI", + value: "!(przyczepa-320.22.1.5.0.gra-a6c.rze-26b.prz-1537e.1234c)!", + result: { + word: "przyczepa", + correct: 22, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "16.11.2025", + }, + }, + { + date: "16.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0MjMx4SZ4UjMx0ieuUmNtkncuQ2Mi1CbvBnLw4SOuEjL1IjLwIzMtEGclp3Y5pncwhSI", + value: "!(przyczepa-320.25.1.9.0.pol-b3d.ry-6e.z-1258e.1234c)!", + result: { + word: "przyczepa", + correct: 25, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "16.11.2025", + }, + }, + { + date: "16.11.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0MjMx4SZ3MTNx0ieyBnL0EWNtonc0VWau5CMuATMuEjLxIjLwIzMtEGclp3Y5pncwhSI", + value: "!(przyczepa-320.21.1.10.0.nietrz-5a4.prz-1537e.1234c)!", + result: { + word: "przyczepa", + correct: 21, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 32, + date: "16.11.2025", + }, + }, + { + date: "16.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjRzMyEjLwYGM4EjLmJ2Mm1ieyBnLkJDNtIHcz5CMuETMuQjL2IjLwIzMtEGclp3Y5pncwhSI", + value: "!(przyczepa-320.26.4.11.0.spr-42d.prz-f3bf.180f0.1234c)!", + result: { + word: "przyczepa", + correct: 26, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 41, + date: "16.11.2025", + }, + }, + { + date: "16.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjRzMyETL65SZ20Sey5SYmRTLjFGcuYmYy0SdoNmLw4SOuAjLyIjLwIzMtEGclp3Y5pncwhSI", + value: "!(przyczepa-320.22.0.9.0.chu-2bf.pac-4fa.ry-6e.z-1234c)!", + result: { + word: "przyczepa", + correct: 22, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "16.11.2025", + }, + }, + { + date: "16.11.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0MjMx4CMmBDOx4CMkFTL65SMxETMtUmcuATLnVmLyUWYt4WYw5CMuQTMuMjLxMjLwIzMtEGclp3Y5pncwhSI", + value: "!(przyczepa-320.31.3.14.0.pan-ae2.eg-0.re-1111.z-1d0.180f0.1234c)!", + result: { + word: "przyczepa", + correct: 31, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 48, + date: "16.11.2025", + }, + }, + { + date: "16.11.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjRzMyETL6JHcuQTY10ieyRXZp5mLw4SOuEjL0EjLwIzMtEGclp3Y5pncwhSI", + value: "!(przyczepa-320.14.1.9.0.nietrz-5a4.prz-1234c)!", + result: { + word: "przyczepa", + correct: 14, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 24, + date: "16.11.2025", + }, + }, + { + date: "16.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjRzMyEjLlZWOwETL6JnLhFjM10ievBnLw4iNuMjL4EjLwIzMtEGclp3Y5pncwhSI", + value: "!(przyczepa-320.18.3.6.0.poz-521a.rz-109fe.1234c)!", + result: { + word: "przyczepa", + correct: 18, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "16.11.2025", + }, + }, + { + date: "16.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0MjMx4SZkJTNx4CMyIDNx4SYxczMtoncw5CMuETMuAjL2IjLwIzMtEGclp3Y5pncwhSI", + value: "!(przyczepa-320.26.0.11.0.prz-371a.14220.152de.1234c)!", + result: { + word: "przyczepa", + correct: 26, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "16.11.2025", + }, + }, + { + date: "16.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0MjMx4SZ3MTNx0ieyBnLjljMtknez5yNy0ya1VmLw4SOuMjLyIjLwIzMtEGclp3Y5pncwhSI", + value: "!(przyczepa-320.22.3.9.0.euk-27.szy-29c.prz-1537e.1234c)!", + result: { + word: "przyczepa", + correct: 22, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "16.11.2025", + }, + }, + { + date: "16.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0MjMx0iey5CMtIXYw5SOz0yY5JmLiZGOx0ic0NnLl1iehJnL0YWMtQWe35CMuATMuMjL3IjLwIzMtEGclp3Y5pncwhSI", + value: + "!(przyczepa-320.27.3.10.0.wyd-1f4.raz-e.str-18fb.byc-39.par-0.rz-1234c)!", + result: { + word: "przyczepa", + correct: 27, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "16.11.2025", + }, + }, + { + date: "16.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0MjMx0ieyBnL1IDNtonc35SNy0SZ6JnL5QjMtQ2bt5CMuATMuIjLyIjLwIzMtEGclp3Y5pncwhSI", + value: "!(przyczepa-320.22.2.10.0.mod-249.rze-25.wrz-425.prz-1234c)!", + result: { + word: "przyczepa", + correct: 22, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "16.11.2025", + }, + }, + { + date: "16.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0MjMx4yM5gTYx0ieyBnLw4iNuEjL1EjLwIzMtEGclp3Y5pncwhSI", + value: "!(przyczepa-320.15.1.6.0.prz-1a893.1234c)!", + result: { + word: "przyczepa", + correct: 15, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "16.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/17-10-2025-diffle-difflepl-grywebowe-31-liter-w-5-slowach-large-green-circle-14-" +] = [ + { + date: "17.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0cDOto3by5yN5MTL69GZuczMx0iY1pnL0cTOtUGbr5yM0MTMtwWe35CMuYTMuEjL0EjLwkjMtI3MCVyMDVSaip3byhSI", + value: "!(rozbiór-290.14.1.16.0.wyl-1343.kle-974.zub-137.doz-397.roz-874)!", + result: { + word: "rozbiór", + correct: 14, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "17.10.2025", + }, + }, + { + date: "17.10.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0cDOto3by5iZ0QTLpJmeuYDNl1CczdnLw4SOuIjL0EjLwkjMtI3MCVyMDVSaip3byhSI", + value: "!(rozbiór-290.14.2.9.0.wsp-e46.zbi-44f.roz-874)!", + result: { + word: "rozbiór", + correct: 14, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "17.10.2025", + }, + }, + { + date: "17.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzN40ievJnLlFDOtInYv5CZxczMtoncw5CMuITMuIjLzEjLwkjMtI3MCVyMDVSaip3byhSI", + value: "!(rozbiór-290.13.2.12.0.prz-371d.obr-81e.roz-874)!", + result: { + word: "rozbiór", + correct: 13, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "17.10.2025", + }, + }, + { + date: "17.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0cDOukjY0MTL69mcuYmNiJTLy9GcuATNz0ybspnLmJmMtUHaj5CMuYTMuMjL3EjLwkjMtI3MCVyMDVSaip3byhSI", + value: "!(rozbiór-290.17.3.16.0.chu-2bf.zlo-350.por-2b6f.roz-34b9.874)!", + result: { + word: "rozbiór", + correct: 17, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "17.10.2025", + }, + }, + { + date: "17.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzN40ievJnLmJ2Mx0ici9mLkhTMtA3ch5CMuITMuEjLyEjLwkjMtI3MCVyMDVSaip3byhSI", + value: "!(rozbiór-290.12.1.12.0.asp-18d.obr-13bf.roz-874)!", + result: { + word: "rozbiór", + correct: 12, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "17.10.2025", + }, + }, + { + date: "17.10.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzN40ievJnLmRDNtkmY65COiRTMtkmek5CO50yb6pnLw4yNuEjL3EjLwkjMtI3MCVyMDVSaip3byhSI", + value: "!(rozbiór-290.17.1.7.0.zzo-98.dzi-14b8.zbi-44f.roz-874)!", + result: { + word: "rozbiór", + correct: 17, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "17.10.2025", + }, + }, + { + date: "17.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN3gTL69mcugDOx0yb69mLzQjY00CZvBnLw4yNuAjLzEjLwkjMtI3MCVyMDVSaip3byhSI", + value: "!(rozbiór-290.13.0.7.0.pod-4b43.ozo-188.roz-874)!", + result: { + word: "rozbiór", + correct: 13, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "17.10.2025", + }, + }, + { + date: "17.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzN40ieugjYx0iYvJnLmZmNtonci5CZwgTLvJ3ZuATY10iezdnLjVGMxETL6JHcugTOt8me65SOukjMuQjLzIjLwkjMtI3MCVyMDVSaip3byhSI", + value: + "!(rozbiór-290.23.4.29.9.zzo-98.prz-110ec.wsz-5a0.gro-80d.brz-6ff.rob-1b8.z-874)!", + result: { + word: "rozbiór", + correct: 23, + position: 4, + incorrect: 29, + knownIncorrect: 9, + totalWords: 7, + totalLetters: 56, + date: "17.10.2025", + }, + }, + { + date: "17.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzN40ievJnLwgjLkNWNtg2Yz4iYtk2Zv5CM50yZhpmL4AzNtwWat5SMuYTMuEjLzEjLwkjMtI3MCVyMDVSaip3byhSI", + value: "!(rozbiór-290.13.1.16.1.mil-708.jag-90.ogi-b.3ch-5cd.80.roz-874)!", + result: { + word: "rozbiór", + correct: 13, + position: 1, + incorrect: 16, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 30, + date: "17.10.2025", + }, + }, + { + date: "17.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN3gjLkZWNuYWO2YWL69mcuMTO4EWMtoncw5CMuUTMuAjL5EjLwkjMtI3MCVyMDVSaip3byhSI", + value: "!(rozbiór-290.19.0.15.0.prz-1a893.roz-f69f.5fd.874)!", + result: { + word: "rozbiór", + correct: 19, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "17.10.2025", + }, + }, + { + date: "17.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0cDOuETZh1ievJnLxETL692duUTZ30ycvtmLw0ievBnLlNmNtw2b65CMuUTMuEjLyIjLwkjMtI3MCVyMDVSaip3byhSI", + value: "!(rozbiór-290.22.1.15.0.zol-6ce.poz-0.kos-7e5.woz-11.roz-ae1.874)!", + result: { + word: "rozbiór", + correct: 22, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "17.10.2025", + }, + }, + { + date: "17.10.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0cDOto3by5iN5YTLiR2buYGNk1ycvtmLw4SOuAjL1EjLwkjMtI3MCVyMDVSaip3byhSI", + value: "!(rozbiór-290.15.0.9.0.kos-d4f.odb-696.roz-874)!", + result: { + word: "rozbiór", + correct: 15, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "17.10.2025", + }, + }, + { + date: "17.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzN44SNxUzNto3by5iYh1CZvdmL2EmYtUWat5CMugTMuEjL2EjLwkjMtI3MCVyMDVSaip3byhSI", + value: "!(rozbiór-290.16.1.18.0.mie-ba6.god-ab.roz-7515.874)!", + result: { + word: "rozbiór", + correct: 16, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "17.10.2025", + }, + }, + { + date: "17.10.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQzN40ievJnLkFWNtkWb65CNzMTMtwWe35CMuETMuAjLxEjLwkjMtI3MCVyMDVSaip3byhSI", + value: "!(rozbiór-290.11.0.11.0.wyl-1334.zmi-5ad.roz-874)!", + result: { + word: "rozbiór", + correct: 11, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "17.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/20-11-2025-diffle-difflepl-grywebowe-31-liter-w-4-slowach-large-green-circle-20-" +] = [ + { + date: "20.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2NtIGbv5SZxgTLsh2YucDMhJTL69mcuIWZ50ycvtmLw4COuMjLwIjL0IzMtE2atlneyJGbvhSI", + value: "!(olbrzymka-324.20.3.8.0.kos-9eb.roz-2a07.chl-81e.olb-7c)!", + result: { + word: "olbrzymka", + correct: 20, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "20.11.2025", + }, + }, + { + date: "20.11.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2NtIGbukTY1ETLyJ2buMWLkJ3ZuATLrJnL5IWNtQ3cv5SYiBjMtc3bw5iMuUTMuAjL5IjL0IzMtE2atlneyJGbvhSI", + value: + "!(olbrzymka-324.29.0.15.2.pow-20ba.ost-5b9.rk-0.grd-c.obr-15a9.lb-7c)!", + result: { + word: "olbrzymka", + correct: 29, + position: 0, + incorrect: 15, + knownIncorrect: 2, + totalWords: 6, + totalLetters: 44, + date: "20.11.2025", + }, + }, + { + date: "20.11.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2NtIGbv5yMm1SbhRmL2EmYtUWat5CMuETMuQjL1EjL0IzMtE2atlneyJGbvhSI", + value: "!(olbrzymka-324.15.4.11.0.mie-ba6.dam-f3.olb-7c)!", + result: { + word: "olbrzymka", + correct: 15, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "20.11.2025", + }, + }, + { + date: "20.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjdTLix2buQjY20SY3tmLw4COuMjLzEjL0IzMtE2atlneyJGbvhSI", + value: "!(olbrzymka-324.13.3.8.0.kwa-6b4.olb-7c)!", + result: { + word: "olbrzymka", + correct: 13, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 24, + date: "20.11.2025", + }, + }, + { + date: "20.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2NtIGbv5yMwQTLoN2MuATLt92auM2N40icv1mLw0iY5JnL0AzMtg2Yz4iZt0WYt5SN00CajNjLzImMtEmcn5yMldTMtw2bw5CNwQzMto3by5iZ20ycvxmLw0ievtmLmJmMtUHaj5CMuYTMukjL2QjL0IzMtE2atlneyJGbvhSI", + value: + "!(olbrzymka-324.46.9.16.0.chu-2bf.koz-0.los-6f.roz-3404.pol-17e3.gra-2b3.3ch-45.mam-f.3ch-304.ryb-0.mor-87c.kom-0.3ch-403.olb-7c)!", + result: { + word: "olbrzymka", + correct: 46, + position: 9, + incorrect: 16, + knownIncorrect: 0, + totalWords: 14, + totalLetters: 71, + date: "20.11.2025", + }, + }, + { + date: "20.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY30iYs9mL3ATYy0ievJnL3UzMx0ich1mLjRGNtg2Yz4SMwEWLyl3ducjNz0SeyZmL2UmMtkncn5SOyQTLvJ3auYmY0ETLvJHcuUmYtI2by5CMt02bs5iZ0QTLsV3auEmMy0SZsFmL1YTLjFmYuEjL3EjL4EjL4QjL0IzMtE2atlneyJGbvhSI", + value: + "!(olbrzymka-324.48.18.17.1.bac-65.ale-22a.kul-44f.lom-0.rob-be.pro-14bf.kro-429.gry-2e6.fry-367.wyr-a01.3ch-4dc.mar-1357.roz-2a07.olb-7c)!", + result: { + word: "olbrzymka", + correct: 48, + position: 18, + incorrect: 17, + knownIncorrect: 1, + totalWords: 14, + totalLetters: 83, + date: "20.11.2025", + }, + }, + { + date: "20.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2NuUWMtIGbv5yY5ETLy9meuQmM00icwNnLw4SOuEjLzIjL0IzMtE2atlneyJGbvhSI", + value: "!(olbrzymka-324.23.1.9.0.spr-42d.zor-19c.olb-1e.7c)!", + result: { + word: "olbrzymka", + correct: 23, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "20.11.2025", + }, + }, + { + date: "20.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpM2NtIGbv5yY40iYvJnLhFjM10ievBnLw4COuEjLwIjL0IzMtE2atlneyJGbvhSI", + value: "!(olbrzymka-324.20.1.8.0.poz-521a.rob-8c.olb-7c)!", + result: { + word: "olbrzymka", + correct: 20, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "20.11.2025", + }, + }, + { + date: "20.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjdTLixmLlFGMx0ici9mLyQTNtI3bi5yNy0ya1VmLw4iNuQjLyIjL0IzMtE2atlneyJGbvhSI", + value: "!(olbrzymka-324.22.4.6.0.euk-27.bor-542.obr-10ae.lb-7c)!", + result: { + word: "olbrzymka", + correct: 22, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "20.11.2025", + }, + }, + { + date: "20.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY34iZx0iYs9mL3IGOtonci5CM2YTL6J3ZuQjZx0CZ5dnLx4COuMjL3IjL0IzMtE2atlneyJGbvhSI", + value: "!(olbrzymka-324.27.3.8.1.wyd-1f4.grz-660.brz-8b7.olb-1f.7c)!", + result: { + word: "olbrzymka", + correct: 27, + position: 3, + incorrect: 8, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 38, + date: "20.11.2025", + }, + }, + { + date: "20.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY34iZx0iYs9mL0kzNtonci5yM5gTYx0ieyBnLw4SOuIjL2IjL0IzMtE2atlneyJGbvhSI", + value: "!(olbrzymka-324.26.2.9.0.prz-1a893.brz-794.olb-1f.7c)!", + result: { + word: "olbrzymka", + correct: 26, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "20.11.2025", + }, + }, + { + date: "20.11.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjdTLix2bugDN10SZpBnLw4CNuAjL2EjL0IzMtE2atlneyJGbvhSI", + value: "!(olbrzymka-324.16.0.4.0.pie-548.olb-7c)!", + result: { + word: "olbrzymka", + correct: 16, + position: 0, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "20.11.2025", + }, + }, + { + date: "20.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjdTLix2buATMy0Cbv1mL0IWO0ETL6JHcuMzNtoncr5iM0EWL6JHducjMy0yc1JnLjZTYtEmcn5CMuUTMuIjL4IjL0IzMtE2atlneyJGbvhSI", + value: + "!(olbrzymka-324.28.2.15.0.gra-a6c.rus-227.trz-a42.krz-73.prz-149b4.mol-210.olb-7c)!", + result: { + word: "olbrzymka", + correct: 28, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "20.11.2025", + }, + }, + { + date: "20.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjdTLix2buYGOwITLr9GcuIzM10Cd6NnL5QjMtQ2bt5CMuETMuMjLwIjL0IzMtE2atlneyJGbvhSI", + value: "!(olbrzymka-324.20.3.11.0.mod-249.szt-532.pok-208f.olb-7c)!", + result: { + word: "olbrzymka", + correct: 20, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "20.11.2025", + }, + }, + { + date: "20.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjdTLix2buQWNy0ic11mLhFzNz0ieyBnLw4SOuEjL1EjL0IzMtE2atlneyJGbvhSI", + value: "!(olbrzymka-324.15.1.9.0.prz-371a.mur-25d.olb-7c)!", + result: { + word: "olbrzymka", + correct: 15, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "20.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/22-10-2025-flag-pl-diffle-difflepl-31-liter-w-4-slowach-large-green-circle-14-la" +] = [ + { + date: "22.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzMh1ybspnL1QTNx0CbvtmLycTMt8mcz5iNhJWLllWbuAjL1EjLy4CNx4SN5ITLrVmYvJDOlUzQlMkQlUzQlgSI", + value: "!(żłobek-295.14.2.15.0.mie-ba6.sro-172.kol-1545.zlo-a32)!", + result: { + word: "żłobek", + correct: 14, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "22.10.2025", + }, + }, + { + date: "22.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMTYt8Gb65SYhJTLvx2cuUjZt8Gb05CM1MTLvx2auMDNzETLsl3duAjLzEjLx4iNx4SN5ITLrVmYvJDOlUzQlMkQlUzQlgSI", + value: "!(żłobek-295.16.1.13.0.wyl-1343.klo-350.tlo-f5.slo-2aa.zlo-a32)!", + result: { + word: "żłobek", + correct: 16, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "22.10.2025", + }, + }, + { + date: "22.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzMh1ybs5SMyEjL0IDNtw2bucjYtwWe65SZjJTL1h2YuAjL0EjLy4iNx4SN5ITLrVmYvJDOlUzQlMkQlUzQlgSI", + value: "!(żłobek-295.16.2.14.0.chu-2ce.zyl-b7.ol-424.121.lo-a32)!", + result: { + word: "żłobek", + correct: 16, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "22.10.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMzEWLvxmeuYmMz0CbvRWZp5mLw4COuIjL44SN5ITLrVmYvJDOlUzQlMkQlUzQlgSI", + value: "!(żłobek-295.8.2.8.0.niedol-32f.zlo-a32)!", + result: { + word: "żłobek", + correct: 8, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + }, + }, + { + date: "23.10.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiNTMt4me35SNjVDNto3bw5CO50yb6pnLw4COuIjLzEjL2kjMtcDOlQzQlk2cv5me3hSI", + value: "!(wznosić-296.13.2.8.0.zzo-98.poz-45c5.wzn-13b)!", + result: { + word: "wznosić", + correct: 13, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "23.10.2025", + }, + }, + { + date: "22.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMTYt8Gb65SO10ievJmLycTMt8mcz5SOiNTLjVWbuAjLxEjLz4yMx4SN5ITLrVmYvJDOlUzQlMkQlUzQlgSI", + value: "!(żłobek-295.13.3.11.0.mec-3b9.sro-172.boz-59.zlo-a32)!", + result: { + word: "żłobek", + correct: 13, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "22.10.2025", + }, + }, + { + date: "22.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMTYt8Gb65yM5QTLvx2ZuMmZt8Gb05CZ4ETLwNXYuAjL0EjLy4SNx4SN5ITLrVmYvJDOlUzQlMkQlUzQlgSI", + value: "!(żłobek-295.15.2.14.0.asp-18d.tlo-fc.glo-493.zlo-a32)!", + result: { + word: "żłobek", + correct: 15, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "22.10.2025", + }, + }, + { + date: "22.10.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMTYt8Gb65SY00iYvRnL5YmZtwmYv5yM0MTLoN2MuQzMzETLsl3duEjLxEjLy4yNx4SN5ITLrVmYvJDOlUzQlMkQlUzQlgSI", + value: "!(żłobek-295.17.2.11.1.wyl-1334.3ch-343.obl-ff9.tob-4a.zlo-a32)!", + result: { + word: "żłobek", + correct: 17, + position: 2, + incorrect: 11, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 30, + date: "22.10.2025", + }, + }, + { + date: "22.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzMh1ybs5SO5cTMtIXYugTOt8me65CMucjLw4yMx4SN5ITLrVmYvJDOlUzQlMkQlUzQlgSI", + value: "!(żłobek-295.13.0.7.0.zzo-98.ar-1799.lo-a32)!", + result: { + word: "żłobek", + correct: 13, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "22.10.2025", + }, + }, + { + date: "22.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMTYt8Gb65SN1ITLq92duMTO4EWMtoncw5CMuAjMuAjL54SN5ITLrVmYvJDOlUzQlMkQlUzQlgSI", + value: "!(żłobek-295.9.0.20.0.prz-1a893.woj-255.zlo-a32)!", + result: { + word: "żłobek", + correct: 9, + position: 0, + incorrect: 20, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "22.10.2025", + }, + }, + { + date: "22.10.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMzEWLvxmeuMmNto3bs5SNm1ybsRnLkljMtUHaj5iN0UWLwN3duAjLwIjLx4CNx4SN5ITLrVmYvJDOlUzQlMkQlUzQlgSI", + value: "!(żłobek-295.14.1.20.0.wsp-e46.chu-29d.tlo-f5.loz-6c.zlo-a32)!", + result: { + word: "żłobek", + correct: 14, + position: 1, + incorrect: 20, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "22.10.2025", + }, + }, + { + date: "22.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzMh5yYyIWLvxmeuYGZx0iYvxmL4AzNtwWat5CMucjLw4SNx4SN5ITLrVmYvJDOlUzQlMkQlUzQlgSI", + value: "!(żłobek-295.15.0.7.0.mil-708.lob-1df.zlo-b2c.a32)!", + result: { + word: "żłobek", + correct: 15, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "22.10.2025", + }, + }, + { + date: "22.10.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMzEWLvxmeuADOtg2Yz4iY40iavxmLiNGNtg2Yz4yM4QWLsh2YuUjZt8Gb05CM1MTLvx2auIzMzETLzl3duAjL4EjLx4iMy4SN5ITLrVmYvJDOlUzQlMkQlUzQlgSI", + value: + "!(żłobek-295.22.1.18.0.wys-1332.klo-350.tlo-f5.chl-d83.3ch-4cb.loj-8b.3ch-80.zlo-a32)!", + result: { + word: "żłobek", + correct: 22, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 41, + date: "22.10.2025", + }, + }, + { + date: "22.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMTYt8GbuUTYuEWM00CbvpnLlVTLhtWduAjLzEjLz4CNx4SN5ITLrVmYvJDOlUzQlMkQlUzQlgSI", + value: "!(żłobek-295.14.3.13.0.uka-5e.zol-41a.a5.lo-a32)!", + result: { + word: "żłobek", + correct: 14, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "22.10.2025", + }, + }, + { + date: "22.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMTYugTNh1ybspnLxYTLiFmauMWYiRTLk9GcuAjLwEjLz4CNx4SN5ITLrVmYvJDOlUzQlMkQlUzQlgSI", + value: "!(żłobek-295.14.3.10.0.pod-4bac.jab-61.zlo-a58.a32)!", + result: { + word: "żłobek", + correct: 14, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "22.10.2025", + }, + }, + { + date: "22.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMzEWLvxmeugTOtUmev5CNxQTLlx2auYTN3MTL6JHcuAjL0EjLy4SMx4SN5ITLrVmYvJDOlUzQlMkQlUzQlgSI", + value: "!(żłobek-295.11.2.14.0.prz-3756.kle-414.oze-98.zlo-a32)!", + result: { + word: "żłobek", + correct: 11, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "22.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/23-10-2025-flag-pl-diffle-difflepl-grywebowe-17-liter-w-2-slowach-large-green-ci" +] = [ + { + date: "23.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYzETLup3duYmYy0SdoNmLw4SNuIjLwEjL2kjMtcDOlQzQlk2cv5me3hSI", + value: "!(wznosić-296.10.2.5.0.chu-2bf.wzn-13b)!", + result: { + word: "wznosić", + correct: 10, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "23.10.2025", + }, + }, + { + date: "23.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYzETLup3duETMy0yd5pnL2EmYtUWat5CMuETMuMjL0EjL2kjMtcDOlQzQlk2cv5me3hSI", + value: "!(wznosić-296.14.3.11.0.mie-ba6.zyw-211.wzn-13b)!", + result: { + word: "wznosić", + correct: 14, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "23.10.2025", + }, + }, + { + date: "23.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpI2Mx4CO5ETLupnLzQzMx0Cb5dnLw4iNuAjL4EjL2kjMtcDOlQzQlk2cv5me3hSI", + value: "!(wznosić-296.18.0.6.0.wyl-1343.zn-198.13b)!", + result: { + word: "wznosić", + correct: 18, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "23.10.2025", + }, + }, + { + date: "23.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpI2Mx0ib6dnL0ITMtc3cv5CZzMTLvdneuETZzETL3R2bukDOx0yd0NnL1QjMtUGbn5SMuYTMuUjLzIjL2kjMtcDOlQzQlk2cv5me3hSI", + value: + "!(wznosić-296.23.5.16.1.gle-245.stw-189.odw-13e1.zwo-33d.osw-124.wzn-13b)!", + result: { + word: "wznosić", + correct: 23, + position: 5, + incorrect: 16, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 44, + date: "23.10.2025", + }, + }, + { + date: "23.10.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiNTMt4me35iZxQDNto3bw5CO50yb6pnLw4yNuEjLzEjL2kjMtcDOlQzQlk2cv5me3hSI", + value: "!(wznosić-296.13.1.7.0.zzo-98.poz-441f.wzn-13b)!", + result: { + word: "wznosić", + correct: 13, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "23.10.2025", + }, + }, + { + date: "23.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiNTMt4me35SM2ETLv5meuQGOx0CczFmLw4yNuEjL3EjL2kjMtcDOlQzQlk2cv5me3hSI", + value: "!(wznosić-296.17.1.7.0.asp-18d.zno-161.wzn-13b)!", + result: { + word: "wznosić", + correct: 17, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "23.10.2025", + }, + }, + { + date: "23.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpI2Mx0ib6dnLklTZtEmez5CO50yb6pnLw4yNuIjL0EjL2kjMtcDOlQzQlk2cv5me3hSI", + value: "!(wznosić-296.14.2.7.0.zzo-98.sza-e9d.wzn-13b)!", + result: { + word: "wznosić", + correct: 14, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "23.10.2025", + }, + }, + { + date: "23.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpI2Mx4CO5ETLup3duMTO4EWMtoncw5CMuETMuAjL2EjL2kjMtcDOlQzQlk2cv5me3hSI", + value: "!(wznosić-296.16.0.11.0.prz-1a893.wzn-198.13b)!", + result: { + word: "wznosić", + correct: 16, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "23.10.2025", + }, + }, + { + date: "23.10.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiNTMt4me35SNjVDNto3bw5CO50yb6pnLw4COuIjLzEjL2kjMtcDOlQzQlk2cv5me3hSI", + value: "!(wznosić-296.13.2.8.0.zzo-98.poz-45c5.wzn-13b)!", + result: { + word: "wznosić", + correct: 13, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "23.10.2025", + }, + }, + { + date: "23.10.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiNTMt4meuYDNl1CczdnLw4yNuEjLyEjL2kjMtcDOlQzQlk2cv5me3hSI", + value: "!(wznosić-296.12.1.7.0.wsp-e46.zn-13b)!", + result: { + word: "wznosić", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "23.10.2025", + }, + }, + { + date: "23.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpI2Mx0ib6dnLxYTMt8mb65iMmNTL5p3cuUjMy0CbnpnLw4COuEjL5EjL2kjMtcDOlQzQlk2cv5me3hSI", + value: "!(wznosić-296.19.1.8.0.zgl-225.szy-3f2.zno-161.wzn-13b)!", + result: { + word: "wznosić", + correct: 19, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "23.10.2025", + }, + }, + { + date: "23.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiNTMugTOx0ib6dnLw0yZv5mL0UWLvlmL2ITNtw2b65CMuETMuMjLwIjL2kjMtcDOlQzQlk2cv5me3hSI", + value: "!(wznosić-296.20.3.11.0.zol-526.io-e4.nog-0.wzn-198.13b)!", + result: { + word: "wznosić", + correct: 20, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "23.10.2025", + }, + }, + { + date: "23.10.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiNTMt4meuMWLv5mLyMzMx0yc5dnLw4yMuEjL3EjL2kjMtcDOlQzQlk2cv5me3hSI", + value: "!(wznosić-296.17.1.3.0.wys-1332.no-c.zn-13b)!", + result: { + word: "wznosić", + correct: 17, + position: 1, + incorrect: 3, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "23.10.2025", + }, + }, + { + date: "23.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYzETLup3duADNz0CbnpnL2UzNz0ieyBnLw4COuEjL2EjL2kjMtcDOlQzQlk2cv5me3hSI", + value: "!(wznosić-296.16.1.8.0.prz-3756.zgl-340.wzn-13b)!", + result: { + word: "wznosić", + correct: 16, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "23.10.2025", + }, + }, + { + date: "23.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiNTMt4me35SM2ETLv5meuUDO10ya6NnL0gDOtIXY65yYhJGNtQ2bw5CMuETMuIjLzIjL2kjMtcDOlQzQlk2cv5me3hSI", + value: "!(wznosić-296.23.2.11.0.pod-4bac.zar-884.szk-585.zno-161.wzn-13b)!", + result: { + word: "wznosić", + correct: 23, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "23.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/24-10-2025-flag-pl-diffle-difflepl-41-liter-w-4-slowach-large-green-circle-25-la" +] = [ + { + date: "24.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZzNtIXY35yMlFTLyVHauMGNx0Cdv5mL2EmYtUWat5CMuITMuQjL1IjL3kjMtEWaud3b0JXY3hSI", + value: "!(wartownia-297.25.4.12.0.mie-ba6.not-14c.hur-1e3.war-76f)!", + result: { + word: "wartownia", + correct: 25, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 41, + date: "24.10.2025", + }, + }, + { + date: "24.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZzNtIXY35iNlFTLy92cuMTZx0ic1hmLkZWOx0ichBnLyUmNtIXY05iYzETLy9mZuEWN30ichJmL4gjMt0WYr5SMucTMuQjLzQjL3kjMtEWaud3b0JXY3hSI", + value: + "!(wartownia-297.43.4.17.1.kam-288.bar-75a.for-13b.tar-6e2.par-19fd.hur-1e3.sor-1e6.war-76f)!", + result: { + word: "wartownia", + correct: 43, + position: 4, + incorrect: 17, + knownIncorrect: 1, + totalWords: 8, + totalLetters: 64, + date: "24.10.2025", + }, + }, + { + date: "24.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ2cTLyF2duEmY00ichZmL2UmMtIXYk5iMjNTLjJXYuEWN30ichJmLiVWOtM3br5CMuETMuIjL5IjL3kjMtEWaud3b0JXY3hSI", + value: + "!(wartownia-297.29.2.11.0.kos-9eb.bar-75a.arc-3c2.dar-2e6.far-4ba.war-76f)!", + result: { + word: "wartownia", + correct: 29, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 42, + date: "24.10.2025", + }, + }, + { + date: "24.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmN34SMmRTLyF2duQmM00icwNnLw4SNuMjLxIjL3kjMtEWaud3b0JXY3hSI", + value: "!(wartownia-297.21.3.5.0.spr-42d.war-4f1.76f)!", + result: { + word: "wartownia", + correct: 21, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "24.10.2025", + }, + }, + { + date: "24.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZzNtInLhJWNtwWY35CMm1ibvZmLhFjM10ievBnLw4COuIjLzIjL3kjMtEWaud3b0JXY3hSI", + value: "!(wartownia-297.23.2.8.0.poz-521a.fon-f0.wal-5ba.r-76f)!", + result: { + word: "wartownia", + correct: 23, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "24.10.2025", + }, + }, + { + date: "24.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ2cTLyF2duMzNtEGch5SOjRWLyFWbucjMtsWdl5CMuATMuQjL3IjL3kjMtEWaud3b0JXY3hSI", + value: "!(wartownia-297.27.4.10.0.euk-27.mar-dc9.apa-73.war-76f)!", + result: { + word: "wartownia", + correct: 27, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 41, + date: "24.10.2025", + }, + }, + { + date: "24.10.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZzNtIXY35yY2cTLyFGauY2M10ichRnL0EWNtonc0VWau5CMuATMuUjL4IjL3kjMtEWaud3b0JXY3hSI", + value: "!(wartownia-297.28.5.10.0.nietrz-5a4.tar-53f.har-76c.war-76f)!", + result: { + word: "wartownia", + correct: 28, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 43, + date: "24.10.2025", + }, + }, + { + date: "24.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ2cjLhhzNtIXYuQjZx0CZ5dnLw4SNuAjLyIjL3kjMtEWaud3b0JXY3hSI", + value: "!(wartownia-297.22.0.5.0.wyd-1f4.ar-78a.76f)!", + result: { + word: "wartownia", + correct: 22, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "24.10.2025", + }, + }, + { + date: "24.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZzNtIXY35yM5gTYx0ieyBnLw4COuAjL0EjL3kjMtEWaud3b0JXY3hSI", + value: "!(wartownia-297.14.0.8.0.prz-1a893.war-76f)!", + result: { + word: "wartownia", + correct: 14, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "24.10.2025", + }, + }, + { + date: "24.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ2cTLyF2duQzN1ITLvJHcuQzMx0CZvxmLmJmMtUHaj5CMuMTMuIjLwIjL3kjMtEWaud3b0JXY3hSI", + value: "!(wartownia-297.20.2.13.0.chu-2bf.lod-134.pro-2574.war-76f)!", + result: { + word: "wartownia", + correct: 20, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "24.10.2025", + }, + }, + { + date: "24.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmN30ichdnLjZzNtIXYo5iN10CdvxmLyQWZtIXYw5iZm1ybyFmL5QjMtQ2bt5CMuATMuMjLzMjL3kjMtEWaud3b0JXY3hSI", + value: + "!(wartownia-297.33.3.10.0.mod-249.aro-ff.par-ed2.lot-56.har-76c.war-76f)!", + result: { + word: "wartownia", + correct: 33, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 46, + date: "24.10.2025", + }, + }, + { + date: "24.10.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ2cTLyF2duQjY20SY3tmLw4COuEjL1EjL3kjMtEWaud3b0JXY3hSI", + value: "!(wartownia-297.15.1.8.0.kwa-6b4.war-76f)!", + result: { + word: "wartownia", + correct: 15, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 24, + date: "24.10.2025", + }, + }, + { + date: "24.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZzNtIXY35yY2cTLyFGauEWMx0Cd5JnLhFzNz0ieyBnLw4yNuIjL5IjL3kjMtEWaud3b0JXY3hSI", + value: "!(wartownia-297.29.2.7.0.prz-371a.ryt-11a.har-76c.war-76f)!", + result: { + word: "wartownia", + correct: 29, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 38, + date: "24.10.2025", + }, + }, + { + date: "24.10.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZzNtIXY35iZm1ybyFmLwUGMx0yZvBnLw4SNuIjL4EjL3kjMtEWaud3b0JXY3hSI", + value: "!(wartownia-297.18.2.5.0.pog-10e0.aro-ff.war-76f)!", + result: { + word: "wartownia", + correct: 18, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "24.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/24-12-24-diffle-diffleen-grywebowe-43-letters-in-6-words-25-1-17-0" +] = [ + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkDOugTOt0mLxUTLi5iMiFTLuFmL5QWLpx2YuMjMtQ3bt5CMucTMuEjL1IjL5UzMtEmcl1WYjhSI", + value: "!(camera-359.25.1.17.0.mot-23.cli-d9.an-1b2.b-51.m-98.89)!", + result: { + word: "camera", + correct: 25, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + }, + }, + { + date: "24.12.2024", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5gTLtF2YucDMx0CajNjL5MTLwFmL00yZp5SMwETLlh2YuQTNtMWZz5CMuQTMuIjL3EjL5UzMtEmcl1WYjhSI", + value: "!(camera-359.17.2.14.0.sec-54.che-101.ig-4.ap-39.3ch-107.cam-89)!", + result: { + word: "camera", + correct: 17, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "24.12.2024", + }, + }, + { + date: "24.12.2024", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5gjLhVTLtF2YuQWOtIXY35iN00ic5BnLiFWLyVWbuIjYt0Wdo5iNh1ybvJmLyETMt4Wat5SMuAjMuEjL4IjL5UzMtEmcl1WYjhSI", + value: + "!(camera-359.28.1.20.1.min-112.boo-a6.hum-b2.mer-ab.pyr-46.war-9d.cam-5a.89)!", + result: { + word: "camera", + correct: 28, + position: 1, + incorrect: 20, + knownIncorrect: 1, + totalWords: 8, + totalLetters: 49, + date: "24.12.2024", + }, + }, + { + date: "24.12.2024", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSO40SbuATYx0Cdh5yN5QTLhh2YukTMtMWdm5CMuATMuAjL1EjL5UzMtEmcl1WYjhSI", + value: "!(camera-359.15.0.10.0.fuc-19.cha-497.at-1a0.m-89)!", + result: { + word: "camera", + correct: 15, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "24.12.2024", + }, + }, + { + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5gTLtF2YuQzNtUWbh5iM20SbhdmLw4iMuEjL1EjL5UzMtEmcl1WYjhSI", + value: "!(camera-359.15.1.2.0.gam-62.ame-74.cam-89)!", + result: { + word: "camera", + correct: 15, + position: 1, + incorrect: 2, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + }, + }, + { + date: "24.12.2024", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSO44iYyETLt5yMiFTLu5iMzITLsFmL2YDNtEGaj5CMuATMuAjLzIjL5UzMtEmcl1WYjhSI", + value: "!(camera-359.23.0.10.0.cha-466.al-232.n-1b3.m-12b.89)!", + result: { + word: "camera", + correct: 23, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "24.12.2024", + }, + }, + { + date: "24.12.2024", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5gTLtFmL00icl5SMx0SZy5iN40SZoNmL0EGNtMXZy5CMuITMuYjL4EjL5UzMtEmcl1WYjhSI", + value: "!(camera-359.18.6.12.0.res-4a4.che-86.re-11.er-4.am-89)!", + result: { + word: "camera", + correct: 18, + position: 6, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "24.12.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/27-10-2025-flag-pl-diffle-difflepl-31-liter-w-3-slowach-large-green-circle-19-la" +] = [ + { + date: "27.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjYx0ielJmLl1yYvRmL2EmYtUWat5CMuATMuIjL5EjLwAzMtk3dvxWZjpXZihSI", + value: "!(bezcelowy-300.19.2.10.0.mie-ba6.doc-e.bez-1b4)!", + result: { + word: "bezcelowy", + correct: 19, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "27.10.2025", + }, + }, + { + date: "27.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0IWMtoXZi5SZ54iZ4QTLoN2MuYGZ3ETLppHZuATLjVneuIDMx0SZ6NmLiVWOtM3br5CMuITMuMjLyIjLwAzMtk3dvxWZjpXZihSI", + value: + "!(bezcelowy-300.22.3.12.0.kos-9eb.cze-102.zuc-0.dzi-17df.3ch-48f.9e.bez-1b4)!", + result: { + word: "bezcelowy", + correct: 22, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 37, + date: "27.10.2025", + }, + }, + { + date: "27.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjYx0ielJmLlFWLoN2MuATOy0SZspnL0kjMt0WZk5CMwETLlp3cuEDMx0SZ6JnLxEmYx0yYvBnLmJmMtUHaj5CMuUTMuYjLxMjLwAzMtk3dvxWZjpXZihSI", + value: + "!(bezcelowy-300.31.6.15.0.chu-2bf.poc-1ba1.rze-101.sze-100.dem-294.zle-290.3ch-ae.bez-1b4)!", + result: { + word: "bezcelowy", + correct: 31, + position: 6, + incorrect: 15, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 52, + date: "27.10.2025", + }, + }, + { + date: "27.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNiFTL6VmYuIGOx0SdstmLkJDNtIHcz5CMuATMuUjL0EjLwAzMtk3dvxWZjpXZihSI", + value: "!(bezcelowy-300.14.5.10.0.spr-42d.klu-18b.bez-1b4)!", + result: { + word: "bezcelowy", + correct: 14, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "27.10.2025", + }, + }, + { + date: "27.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjYx0ielJmL4MTZtMmez5yNhNTLsl3duMWMtkWbl5SMuETMuQjL4EjLwAzMtk3dvxWZjpXZihSI", + value: "!(bezcelowy-300.18.4.11.1.emi-1c.wyl-3a7.szc-e38.bez-1b4)!", + result: { + word: "bezcelowy", + correct: 18, + position: 4, + incorrect: 11, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 33, + date: "27.10.2025", + }, + }, + { + date: "27.10.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjYx0ielJmLkdTL6V2YuQjY20SY3tmLw4SOuUjL2EjLwAzMtk3dvxWZjpXZihSI", + value: "!(bezcelowy-300.16.5.9.0.kwa-6b4.cez-7d.bez-1b4)!", + result: { + word: "bezcelowy", + correct: 16, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "27.10.2025", + }, + }, + { + date: "27.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNiFTL6VmYuITMz0yYl1mL3UTLjVGcucjMtsWdl5CMuATMuEjLyIjLwAzMtk3dvxWZjpXZihSI", + value: "!(bezcelowy-300.22.1.10.0.euk-27.pec-57.mec-312.bez-1b4)!", + result: { + word: "bezcelowy", + correct: 22, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "27.10.2025", + }, + }, + { + date: "27.10.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjYx0ielJmLjZTM10ievBnL4AzMtUmej5SY0ETLv9mLhJTMt8Gb65SOjZTMtIXYr5CMuMTMuMjLzIjLwAzMtk3dvxWZjpXZihSI", + value: + "!(bezcelowy-300.23.3.13.0.kar-16c9.zlo-12a.oo-14a.cze-308.poz-516c.bez-1b4)!", + result: { + word: "bezcelowy", + correct: 23, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "27.10.2025", + }, + }, + { + date: "27.10.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjYx0ielJmLyEzMtMWZt5yMlFTLwVGbuMmNh1SYydmLw4COuIjL4EjLwAzMtk3dvxWZjpXZihSI", + value: "!(bezcelowy-300.18.2.8.0.gra-a6c.lep-1e3.mec-312.bez-1b4)!", + result: { + word: "bezcelowy", + correct: 18, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "27.10.2025", + }, + }, + { + date: "27.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjYx0ielJmL5QzMtwWZj5CMmJTL3VGbuQjZx0CZ5dnLw4SNuMjLwIjLwAzMtk3dvxWZjpXZihSI", + value: "!(bezcelowy-300.20.3.5.0.wyd-1f4.lew-2f0.cel-349.bez-1b4)!", + result: { + word: "bezcelowy", + correct: 20, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "27.10.2025", + }, + }, + { + date: "27.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjYx0ieuUmYy0Cbl5CZzETLlxmYuM2Ml1yZ55yN0ITLq92duMTO4EWMtoncw5CMucTMuYjLyIjLwAzMtk3dvxWZjpXZihSI", + value: + "!(bezcelowy-300.22.6.17.0.prz-1a893.woj-247.yg-e3c.ble-13d.el-2be.z-1b4)!", + result: { + word: "bezcelowy", + correct: 22, + position: 6, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 45, + date: "27.10.2025", + }, + }, + { + date: "27.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0IWMtoXZi5iMxMTLjVWbuUWNz0ybydnLhFjM10ievBnLw4SOuYjL4EjLwAzMtk3dvxWZjpXZihSI", + value: "!(bezcelowy-300.18.6.9.0.poz-521a.wro-35e.mec-312.bez-1b4)!", + result: { + word: "bezcelowy", + correct: 18, + position: 6, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "27.10.2025", + }, + }, + { + date: "27.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNiFTL6VmYuQTYtM2buMTZx0CclxmL5QjMtQ2bt5CMuETMuMjL4EjLwAzMtk3dvxWZjpXZihSI", + value: "!(bezcelowy-300.18.3.11.0.mod-249.lep-1e3.oc-a4.bez-1b4)!", + result: { + word: "bezcelowy", + correct: 18, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "27.10.2025", + }, + }, + { + date: "27.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjYx0ielJmL5QzMtwWZugzYy0SZ65iMx0SZ35CMjFTL1p3YuATOy0SZspnLhFzNz0ieyBnLw4SOucjL5IjLwAzMtk3dvxWZjpXZihSI", + value: + "!(bezcelowy-300.29.7.9.0.prz-371a.zle-290.czu-1c0.we-12.ze-2c8.el-349.bez-1b4)!", + result: { + word: "bezcelowy", + correct: 29, + position: 7, + incorrect: 9, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "27.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/a-daj-pan-spokoj-kto-to-widzial-19-12-2025-diffle-difflepl-grywebowe-35-liter-w-" +] = [ + { + date: "19.12.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN4QTLyFGduYGN00ichJmL1kTLyFGbuQTOy0SdoNmL0MTYx0ichBnLwYWOtM3br5CMugTMuEjL2EjLzUzMtQXZnJXY0hSI", + value: + "!(target-353.16.1.18.0.kos-9f0.par-1a34.chu-294.lar-95.bar-44f.tar-487)!", + result: { + word: "target", + correct: 16, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "19.12.2025", + }, + }, + { + date: "19.12.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3gDNtIXY05iNxITLydWYuUWLnFGbuMmNh1SYydmLw4CNuQjL1EjLzUzMtQXZnJXY0hSI", + value: "!(target-353.15.4.4.0.gra-a6c.lag-e.agr-216.tar-487)!", + result: { + word: "target", + correct: 15, + position: 4, + incorrect: 4, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "19.12.2025", + }, + }, + { + date: "19.12.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3gDNtIXY05CM30yZlJnLhdDNtEmcn5SYxczMtoncw5CMuATMuUjL0EjLzUzMtQXZnJXY0hSI", + value: "!(target-353.14.5.10.0.prz-371a.gra-47a.reg-70.tar-487)!", + result: { + word: "target", + correct: 14, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "19.12.2025", + }, + }, + { + date: "19.12.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcDO00ichRnLjVTNtE2duIWZtIWYr5yN30SbhJnL0EWNtonc0VWau5SNugTMuQjL4EjLzUzMtQXZnJXY0hSI", + value: "!(target-353.18.4.18.5.nietrz-5a4.ram-77.kab-eb.wa-55c.tar-487)!", + result: { + word: "target", + correct: 18, + position: 4, + incorrect: 18, + knownIncorrect: 5, + totalWords: 5, + totalLetters: 40, + date: "19.12.2025", + }, + }, + { + date: "19.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcDO00ichRnLlRDNtIXYm5iNtg2Yy4iN5EWLyFmbuI2Nz0ichhmLlFTL6FmcuUTMz0SZyJmL3MTOtMXek5CMuAjMuIjLzIjLzUzMtQXZnJXY0hSI", + value: + "!(target-353.23.2.20.0.dys-937.bre-315.raz-1e.har-37b.nar-a96.2ch-6.far-44e.tar-487)!", + result: { + word: "target", + correct: 23, + position: 2, + incorrect: 20, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 45, + date: "19.12.2025", + }, + }, + { + date: "19.12.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN4QTLyFGduQjY40ichJmLidzMtIXYo5SYkJjMts2bw5CMuMTMuIjLzEjLzUzMtQXZnJXY0hSI", + value: "!(target-353.13.2.13.0.pok-22da.har-37b.bar-8b4.tar-487)!", + result: { + word: "target", + correct: 13, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "19.12.2025", + }, + }, + { + date: "19.12.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN4QTLyFGduMDZ00ichJmLkJDNtIHcz5CMuETMuEjLxEjLzUzMtQXZnJXY0hSI", + value: "!(target-353.11.1.11.0.spr-42d.bar-4d3.tar-487)!", + result: { + word: "target", + correct: 11, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "19.12.2025", + }, + }, + { + date: "19.12.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcDO00ichRnLhNWLldWYuUjMi1ibhBnLx4iNuEjLyEjLzUzMtQXZnJXY0hSI", + value: "!(target-353.12.1.6.1.pan-b25.age-ca.tar-487)!", + result: { + word: "target", + correct: 12, + position: 1, + incorrect: 6, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 19, + date: "19.12.2025", + }, + }, + { + date: "19.12.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcDO04yMzkTLy5iMxITLsFGducDZ20ychBnLmJmMtUHaj5CMuUTMuAjL1EjLzUzMtQXZnJXY0hSI", + value: "!(target-353.15.0.15.0.chu-2bf.pas-6d7.tal-212.r-933.487)!", + result: { + word: "target", + correct: 15, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "19.12.2025", + }, + }, + { + date: "19.12.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3gDNtIXY05iNxITLydWYugDN10SZpBnLw4COuQjLxEjLzUzMtQXZnJXY0hSI", + value: "!(target-353.11.4.8.0.pie-548.agr-216.tar-487)!", + result: { + word: "target", + correct: 11, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "19.12.2025", + }, + }, + { + date: "19.12.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN4QTLyFGduIWZtIWYuEWY00SYstmL0YWMtQWe35iMuITMuAjL3EjLzUzMtQXZnJXY0hSI", + value: "!(target-353.17.0.12.2.wyd-1f4.kla-4aa.ab-eb.tar-487)!", + result: { + word: "target", + correct: 17, + position: 0, + incorrect: 12, + knownIncorrect: 2, + totalWords: 4, + totalLetters: 29, + date: "19.12.2025", + }, + }, + { + date: "19.12.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3gDNtIXY05SMtUGZn5yYiZWLyF2auMTO4EWMtoncw5CMuMTMuQjL0EjLzUzMtQXZnJXY0hSI", + value: "!(target-353.14.4.13.0.prz-1a893.kar-fbc.gde-1.tar-487)!", + result: { + word: "target", + correct: 14, + position: 4, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "19.12.2025", + }, + }, + { + date: "19.12.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3gDNtIXY05SMtcXYm5SYxITNto3bw5CMuITMuAjLwEjLzUzMtQXZnJXY0hSI", + value: "!(target-353.10.0.12.0.poz-521a.faw-1.tar-487)!", + result: { + word: "target", + correct: 10, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "19.12.2025", + }, + }, + { + date: "19.12.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcDO00ichRnL1IGOtIXYw5CMiJTLyFmYucjMtsWdl5CMuETMuEjL3EjLzUzMtQXZnJXY0hSI", + value: "!(target-353.17.1.11.0.euk-27.bar-2b0.par-8b5.tar-487)!", + result: { + word: "target", + correct: 17, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "19.12.2025", + }, + }, + { + date: "19.12.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN4QTLyFGduUjY40ichBnLiZWLyVmYuMWMz0SZsFmL0ImNtE2dr5CMucTMuIjL5EjLzUzMtQXZnJXY0hSI", + value: "!(target-353.19.2.17.0.kwa-6b4.ale-31c.ber-fb.par-8b5.tar-487)!", + result: { + word: "target", + correct: 19, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "19.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/a-to-nie-jest-gwarowe-13-12-2025-diffle-difflepl-grywebowe-31-liter-w-5-slowach-" +] = [ + { + date: "13.12.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjNtUXYs5CMhFTL1h2YuUWLnFGbuMWMz0SZsFmLwYWOtM3br5CMuMTMuIjL2EjL3QzMtIXZmVXYshSI", + value: "!(laufer-347.16.2.13.0.kos-9f0.ale-31c.lag-e.chu-1a0.lau-60)!", + result: { + word: "laufer", + correct: 16, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "13.12.2025", + }, + }, + { + date: "13.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjNuMzYtUXYs5SMtIXdo5iMxETMtIXYt5CMuATMuIjL0EjL3QzMtIXZmVXYshSI", + value: "!(laufer-347.14.2.10.0.mar-1112.hur-1.lau-c3.60)!", + result: { + word: "laufer", + correct: 14, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "13.12.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM24COl1SdhxmL3UDNt8Gc15CMuMTMuIjLyEjL3QzMtIXZmVXYshSI", + value: "!(laufer-347.12.2.13.0.upo-457.lau-e8.60)!", + result: { + word: "laufer", + correct: 12, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + }, + }, + { + date: "13.12.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjNtUnLl1yZhxmL3MTLhh2YuIDNz0ich1mLkJDNtIHcz5CMuUTMuIjL3EjL3QzMtIXZmVXYshSI", + value: "!(laufer-347.17.2.15.0.spr-42d.mar-342.cha-37.lag-e.u-60)!", + result: { + word: "laufer", + correct: 17, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "13.12.2025", + }, + }, + { + date: "13.12.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjNtUnLw0iYhxmLw0Cc1RmLyMGOtU3az5SZz0SdtFmLmJmMtUHaj5CMugTMuIjL2EjL3QzMtIXZmVXYshSI", + value: "!(laufer-347.16.2.18.0.chu-2bf.amu-3e.sku-8c2.dup-0.lab-0.u-60)!", + result: { + word: "laufer", + correct: 16, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "13.12.2025", + }, + }, + { + date: "13.12.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjNtUXYs5SMj1SZmFmLhJWMtMWYt5COl1SYyZmL0EWNtonc0VWau5CMucTMuIjL4EjL3QzMtIXZmVXYshSI", + value: "!(laufer-347.18.2.17.0.nietrz-5a4.fra-e8.mac-1ba.afe-c1.lau-60)!", + result: { + word: "laufer", + correct: 18, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "13.12.2025", + }, + }, + { + date: "13.12.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjNtUXYs5CMhFTL1h2YuYjNtcXYr5CM2QTLzFWbuIzNy0ichJmLjZTYtEmcn5CMuYTMuIjL4EjL3QzMtIXZmVXYshSI", + value: + "!(laufer-347.18.2.16.0.gra-a6c.bar-272.mas-460.kaw-66.chu-1a0.lau-60)!", + result: { + word: "laufer", + correct: 18, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "13.12.2025", + }, + }, + { + date: "13.12.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM20SduUWLn5SO20ychxmLwYmMtsWYt5SOkFTLqFmYuIWZx0CdhBnL0YWMtQWe35CMuUTMuIjL1IjL3QzMtIXZmVXYshSI", + value: + "!(laufer-347.25.2.15.0.wyd-1f4.pat-1eb.baj-1d9.mak-2f0.las-69.g-e.u-60)!", + result: { + word: "laufer", + correct: 25, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "13.12.2025", + }, + }, + { + date: "13.12.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM20SdhxmLmdzMtIXZm5yNy0ya1VmLw4iNuUjLxEjL3QzMtIXZmVXYshSI", + value: "!(laufer-347.11.5.6.0.euk-27.fer-37f.lau-60)!", + result: { + word: "laufer", + correct: 11, + position: 5, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "13.12.2025", + }, + }, + { + date: "13.12.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjNtUnLl1yZhxmL2EmYtUWat5CMuITMuIjLxEjL3QzMtIXZmVXYshSI", + value: "!(laufer-347.11.2.12.0.mie-ba6.lag-e.u-60)!", + result: { + word: "laufer", + correct: 11, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "13.12.2025", + }, + }, + { + date: "13.12.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM20SdhxmLw0iZhdnLyMjMtwWYt5SYxITNto3bw5CMuETMuIjLzEjL3QzMtIXZmVXYshSI", + value: "!(laufer-347.13.2.11.0.poz-521a.mal-232.waf-0.lau-60)!", + result: { + word: "laufer", + correct: 13, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "13.12.2025", + }, + }, + { + date: "13.12.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM20SdhxmLx0yYs9mL0QTLqF2ZuQGN00ibhJmLhN2NtIXYt5SYxczMtoncw5CMugTMuIjL4EjL3QzMtIXZmVXYshSI", + value: + "!(laufer-347.18.2.18.0.prz-371a.mar-7ca.ban-44d.gaj-44.olc-1.lau-60)!", + result: { + word: "laufer", + correct: 18, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "13.12.2025", + }, + }, + { + date: "13.12.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjNuQGZtUXYs5yM5gTYx0ieyBnLw4SOuQjLyEjL3QzMtIXZmVXYshSI", + value: "!(laufer-347.12.4.9.0.prz-1a893.lau-dd.60)!", + result: { + word: "laufer", + correct: 12, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "13.12.2025", + }, + }, + { + date: "13.12.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjNuMzYtUXYs5SNh1SYkVnL0ImNtE2dr5CMuITMuMjL0EjL3QzMtIXZmVXYshSI", + value: "!(laufer-347.14.3.12.0.kwa-6b4.uda-a5.lau-c3.60)!", + result: { + word: "laufer", + correct: 14, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "13.12.2025", + }, + }, + { + date: "13.12.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjNtUXYs5COh1SZmNnL0ITMtInZh5CMhNTLyFGaukTNtwWam5SMuETMuMjL3EjL3QzMtIXZmVXYshSI", + value: "!(laufer-347.17.3.11.1.fil-59.har-3a0.afr-124.sfe-a8.lau-60)!", + result: { + word: "laufer", + correct: 17, + position: 3, + incorrect: 11, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 31, + date: "13.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-seria-19-10-2025-diffle-difflepl-grywebowe-18-liter-w-2-slowach-large-green-" +] = [ + { + date: "19.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjZjN10ievBnLzQzMx0Cb5dnLw4iNuIjLwEjLykjMtknbhRWN4UCNDVyQCVSNDVybwhSI", + value: "!(pożądany-292.10.2.6.0.wyl-1343.poz-566c)!", + result: { + word: "pożądany", + correct: 10, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "19.10.2025", + }, + }, + { + date: "19.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY2YTNtonL5ETY00CZvBnLyEjMx0CcvRmL2EmYtUWat5CMuUTMuMjLwIjLykjMtknbhRWN4UCNDVyQCVSNDVybwhSI", + value: "!(pożądany-292.20.3.15.0.mie-ba6.dop-1212.pod-4a19.z-566c)!", + result: { + word: "pożądany", + correct: 20, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 38, + date: "19.10.2025", + }, + }, + { + date: "19.10.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmN2UTL65CO50CZv5SM3ETLkFGcuQWOy0SdoNmL2QTZtA3c35CMuYTMuQjLwIjLykjMtknbhRWN4UCNDVyQCVSNDVybwhSI", + value: "!(pożądany-292.20.4.16.0.wsp-e46.chu-29d.pad-171.od-98.z-566c)!", + result: { + word: "pożądany", + correct: 20, + position: 4, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "19.10.2025", + }, + }, + { + date: "19.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmN2UjLyYTN14yM5kTNtonLjRWNts2buQWM00CdlBnL1gjMtUGaj5CMuUTMuEjLzIjLykjMtknbhRWN4UCNDVyQCVSNDVybwhSI", + value: "!(pożądany-292.23.1.15.0.che-285.pet-41d.ok-5dc.z-5993.5562.566c)!", + result: { + word: "pożądany", + correct: 23, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "19.10.2025", + }, + }, + { + date: "19.10.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjZjN10ieuIWN20yauMDO00icvBnL3UDNt8Gc15CMuQTMuIjLzIjLykjMtknbhRWN4UCNDVyQCVSNDVybwhSI", + value: "!(pożądany-292.23.2.14.0.upo-457.por-483.k-65b.z-566c)!", + result: { + word: "pożądany", + correct: 23, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 39, + date: "19.10.2025", + }, + }, + { + date: "19.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjZjN10ieuQDZ5UTLk9GcuQGOx0CczFmLw4SOuMjL1EjLykjMtknbhRWN4UCNDVyQCVSNDVybwhSI", + value: "!(pożądany-292.15.3.9.0.asp-18d.pod-59d4.z-566c)!", + result: { + word: "pożądany", + correct: 15, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "19.10.2025", + }, + }, + { + date: "19.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjZjN14yY1YTNto3bw5SN1ITLq92duMTO4EWMtoncw5CMukTMuIjL4EjLykjMtknbhRWN4UCNDVyQCVSNDVybwhSI", + value: "!(pożądany-292.18.2.19.0.prz-1a893.woj-255.poz-565c.566c)!", + result: { + word: "pożądany", + correct: 18, + position: 2, + incorrect: 19, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 39, + date: "19.10.2025", + }, + }, + { + date: "19.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjZjN14yN2YTNucjZ0UjLzkTO10ievBnLmFmYt8Gb65CO2UTMtEmez5CMuMTMuEjL1IjLykjMtknbhRWN4UCNDVyQCVSNDVybwhSI", + value: + "!(pożądany-292.25.1.13.0.sza-1568.zlo-baf.poz-5993.54f7.5667.566c)!", + result: { + word: "pożądany", + correct: 25, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "19.10.2025", + }, + }, + { + date: "19.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY2YTNto3bw5SMmJTLsVmeugDM30Cbp1mLw4COuEjLxEjLykjMtknbhRWN4UCNDVyQCVSNDVybwhSI", + value: "!(pożądany-292.11.1.8.0.mil-708.zel-2f1.poz-566c)!", + result: { + word: "pożądany", + correct: 11, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "19.10.2025", + }, + }, + { + date: "19.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjZjN10ieuUmMwETLi5SYjJmMtM3bw5iZ3ITL69WbuIjMto3bs5SOk1SYy9mLmJmMtUHaj5CMuUTMuIjL4IjLykjMtknbhRWN4UCNDVyQCVSNDVybwhSI", + value: + "!(pożądany-292.28.2.15.0.chu-2bf.ora-d9.loz-22.moz-27f.pos-2bca.b-102e.z-566c)!", + result: { + word: "pożądany", + correct: 28, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "19.10.2025", + }, + }, + { + date: "19.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjZjN14yYyYTNtonLzQjY00CZvBnLw4CNuEjL4EjLykjMtknbhRWN4UCNDVyQCVSNDVybwhSI", + value: "!(pożądany-292.18.1.4.0.pod-4b43.z-562c.566c)!", + result: { + word: "pożądany", + correct: 18, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "19.10.2025", + }, + }, + { + date: "19.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY2YTNto3bw5CO50yb6pnLw4SNuEjLwEjLykjMtknbhRWN4UCNDVyQCVSNDVybwhSI", + value: "!(pożądany-292.10.1.5.0.zzo-98.poz-566c)!", + result: { + word: "pożądany", + correct: 10, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "19.10.2025", + }, + }, + { + date: "19.10.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjZjN10ievBnLjZmYx0CZhpnL0MzMx0Cb5dnLw4iNuEjL2EjLykjMtknbhRWN4UCNDVyQCVSNDVybwhSI", + value: "!(pożądany-292.16.1.6.0.wyl-1334.zad-1bfc.poz-566c)!", + result: { + word: "pożądany", + correct: 16, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "19.10.2025", + }, + }, + { + date: "19.10.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjZjN14yN2YTNto3bw5CO50yb6pnLw4yNuEjL3EjLykjMtknbhRWN4UCNDVyQCVSNDVybwhSI", + value: "!(pożądany-292.17.1.7.0.zzo-98.poz-5667.566c)!", + result: { + word: "pożądany", + correct: 17, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "19.10.2025", + }, + }, + { + date: "19.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmN2UTL65iMjNGNtM3buYjMx0CZ15CZxczMtoncw5CMuMTMuEjL4EjLykjMtknbhRWN4UCNDVyQCVSNDVybwhSI", + value: "!(pożądany-292.18.1.13.0.prz-371d.ud-126.os-4cc2.z-566c)!", + result: { + word: "pożądany", + correct: 18, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "19.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/alez-sie-nakombinowalem-a-mialem-wszystko-podane-jak-na-tacy-25-12-2024-diffle-d" +] = [ + { + date: "25.12.2024", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYmNtMnbl5SZj1ibl1mLwQTLhh2cucDO24iMhZTLoN2MuIWMtUGbj5CN10Cb1JmL2ETLwV2cuAjL0EjL14SNy4CM2MTLlZXYsNnblhSI", + value: + "!(enslave-360.25.5.14.0.sep-16.bul-54.cle-1b.3ch-6a2.687.sha-40.men-ce.ens-6f)!", + result: { + word: "enslave", + correct: 25, + position: 5, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 44, + date: "25.12.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/banalne-13-11-2025-flag-pl-diffle-difflepl-grywebowe-22-litery-w-3-slowach-large" +] = [ + { + date: "13.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwIWLrFWbuEWN30ichJmLklDZtIXZw5CMugjLw4CNx4yNxMTLu9mchtWYthSI", + value: "!(makaron-317.14.0.8.0.per-d9d.bar-75a.mak-b0)!", + result: { + word: "makaron", + correct: 14, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "13.11.2025", + }, + }, + { + date: "13.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjYtsWYt5SYh1yavRmLiVWOtM3br5CMuYjL14SNx4yNxMTLu9mchtWYthSI", + value: "!(makaron-317.15.5.6.0.kos-9eb.dok-aa.mak-b0)!", + result: { + word: "makaron", + correct: 15, + position: 5, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "13.11.2025", + }, + }, + { + date: "13.11.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjYtsWYt5iZxQTLyFGcuIjMtgWZi5CMukjLz4CNx4yNxMTLu9mchtWYthSI", + value: "!(makaron-317.14.3.9.0.beh-22.par-41f.mak-b0)!", + result: { + word: "makaron", + correct: 14, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "13.11.2025", + }, + }, + { + date: "13.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwIWLrFWbuIWN30ichJmLkJDNtIHcz5CMugjLz4CNx4yNxMTLu9mchtWYthSI", + value: "!(makaron-317.14.3.8.0.spr-42d.bar-75b.mak-b0)!", + result: { + word: "makaron", + correct: 14, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "13.11.2025", + }, + }, + { + date: "13.11.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwIWLrFWbuQmMjFTLrFmeukTMx0yZhdnLyUWYt4WYw5CMugjLx4iNx4yNxMTLu9mchtWYthSI", + value: "!(makaron-317.16.1.8.0.pan-ae2.wag-119.zak-1c2d.mak-b0)!", + result: { + word: "makaron", + correct: 16, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "13.11.2025", + }, + }, + { + date: "13.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwIWLrFmLiRWLr9WbuQmY10SZ0NnL2kTLnJXYuAjM50CZhJnLmNGNtwWYi5iZiJTL1h2YuAjL3EjLy4yMy4yNxMTLu9mchtWYthSI", + value: + "!(makaron-317.23.2.17.0.chu-2bf.bal-4cf.rad-920.arg-96.ste-5bd.mok-db.ak-b0)!", + result: { + word: "makaron", + correct: 23, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "13.11.2025", + }, + }, + { + date: "13.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjYtsWYt5iMwQWLht2cucjMtsWdl5CMucjLx4yNx4yNxMTLu9mchtWYthSI", + value: "!(makaron-317.17.1.7.0.euk-27.ska-d02.mak-b0)!", + result: { + word: "makaron", + correct: 17, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "13.11.2025", + }, + }, + { + date: "13.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMi1yah1mL0ImNtE2dr5CMukjLy4SMx4yNxMTLu9mchtWYthSI", + value: "!(makaron-317.11.2.9.0.kwa-6b4.mak-b0)!", + result: { + word: "makaron", + correct: 11, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "13.11.2025", + }, + }, + { + date: "13.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjYtsWYt5SNzETLyFmYuEWM3MTL6JHcuAjLwEjLy4iMx4yNxMTLu9mchtWYthSI", + value: "!(makaron-317.12.2.10.0.prz-371a.bar-135.mak-b0)!", + result: { + word: "makaron", + correct: 12, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "13.11.2025", + }, + }, + { + date: "13.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMi1yah1mLyEWLyFGduMDMz0ichNnL0YWMtQWe35CMugjLy4iNx4yNxMTLu9mchtWYthSI", + value: "!(makaron-317.16.2.8.0.wyd-1f4.sar-303.tar-a2.mak-b0)!", + result: { + word: "makaron", + correct: 16, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "13.11.2025", + }, + }, + { + date: "13.11.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMi1yaugDO30ich1mL4QTNtUWaw5CMucjLy4CNx4yNxMTLu9mchtWYthSI", + value: "!(makaron-317.14.2.7.0.pie-548.mar-788.k-b0)!", + result: { + word: "makaron", + correct: 14, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "13.11.2025", + }, + }, + { + date: "13.11.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMi1yah1mLiVzNtIXYi5CNhVTL6JHdllmbuAjLwEjL04CNx4yNxMTLu9mchtWYthSI", + value: "!(makaron-317.14.4.10.0.nietrz-5a4.bar-75b.mak-b0)!", + result: { + word: "makaron", + correct: 14, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "13.11.2025", + }, + }, + { + date: "13.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwIWLrFWbuczMk1SYrNnLxQzNx0ichtmLjZTYtEmcn5CMucjLy4COx4yNxMTLu9mchtWYthSI", + value: "!(makaron-317.18.2.7.0.gra-a6c.kar-1741.ska-d37.mak-b0)!", + result: { + word: "makaron", + correct: 18, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "13.11.2025", + }, + }, + { + date: "13.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwIWLrFWbucDNy0iavdnLzkDOhFTL6JHcuAjL0EjLy4SMx4yNxMTLu9mchtWYthSI", + value: "!(makaron-317.11.2.14.0.prz-1a893.woj-247.mak-b0)!", + result: { + word: "makaron", + correct: 11, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "13.11.2025", + }, + }, + { + date: "13.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMi1yah1mLkJzMtcXYr5SYxITNto3bw5CMucjLx4CNx4yNxMTLu9mchtWYthSI", + value: "!(makaron-317.14.1.7.0.poz-521a.kaw-32d.mak-b0)!", + result: { + word: "makaron", + correct: 14, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "13.11.2025", + }, + }, + { + date: "13.11.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwIWLrFmL2EmYtUWat5CMukjLx4SMx4yNxMTLu9mchtWYthSI", + value: "!(makaron-317.11.1.9.0.mie-ba6.ak-b0)!", + result: { + word: "makaron", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "13.11.2025", + }, + }, + { + date: "13.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjYtsmLlRWLyFmL5QjMtQ2bt5CMucjL04SNx4yNxMTLu9mchtWYthSI", + value: "!(makaron-317.15.4.7.0.mod-249.ar-de.k-b0)!", + result: { + word: "makaron", + correct: 15, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "13.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/bardziej-ambitne-niz-sie-spodziewalem-19-12-2024-diffle-diffleen-grywebowe-64-le" +] = [ + { + date: "19.12.2024", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiZTLyJXauUzNx0yZlJnLhNDNtg2Yz4CMtsWdu5iYzQjLwMDNtg2Yz4iYtcmLhNTMtEWZy5CMtwWYn5CNk1SbhxmLwMTLsVmZuM2YtEWZs5SNtUGbi5SMugTMuUjLxQjL0UzMtIXYsV3ZlJncphSI", + value: + "!(irregular-354.41.5.18.1.ble-5.lea-cc.fel-30.lam-d4.gal-0.rea-13a.g-b.3ch-430.43b.nuk-0.3ch-43a.reg-175.irr-6b)!", + result: { + word: "irregular", + correct: 41, + position: 5, + incorrect: 18, + knownIncorrect: 1, + totalWords: 13, + totalLetters: 64, + date: "19.12.2024", + }, + }, + { + date: "19.12.2024", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiY20icylmL3cTMtcWZy5SNk1SYsdmLw0ic1JnL0ETLlZ3buYTLhdnL4ETLoNXYuIWMtQHb15SZz0Cb1BnLhhTL1FXZukTMtMWdm5CMuIjMugjL4MjL0UzMtIXYsV3ZlJncphSI", + value: + "!(irregular-354.38.8.22.0.fuc-19.equ-8a.pul-3e.ult-1b.ash-18.wa-6.ove-14.rur-0.gla-d5.reg-177.irr-6b)!", + result: { + word: "irregular", + correct: 38, + position: 8, + incorrect: 22, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 68, + date: "19.12.2024", + }, + }, + { + date: "19.12.2024", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiZTLyJXauMjMx0ichJmL5Q2Mtg2Yz4iZmFTLhlGZuATLwl2duUGNt42bt5CMuMTMuMjLwIjL0UzMtIXYsV3ZlJncphSI", + value: + "!(irregular-354.20.3.13.0.mon-4e.wip-0.dia-1ff.3ch-3d9.bar-123.irr-6b)!", + result: { + word: "irregular", + correct: 20, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "19.12.2024", + }, + }, + { + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiZTLyJXaucjNtw2bm5iZy0yZhpmLwgTLpV3ZuMTLuVnYuIjNt0WYn5CMuITMuIjLyIjL0UzMtIXYsV3ZlJncphSI", + value: + "!(irregular-354.22.2.12.0.gam-62.bun-3.gui-80.jag-2f.fol-67.irr-6b)!", + result: { + word: "irregular", + correct: 22, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + }, + }, + { + date: "19.12.2024", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiY20icylmLjVTLsVmcuMWOx0ic0NnLw4yNuMjL2EjL0UzMtIXYsV3ZlJncphSI", + value: "!(irregular-354.16.3.7.0.str-19c.rel-5c.irr-6b)!", + result: { + word: "irregular", + correct: 16, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "19.12.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/bardzo-na-czasie-28-12-2024-diffle-diffleen-grywebowe-33-letters-in-4-words-24-1" +] = [ + { + date: "28.12.2024", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0EWMuUGOx0SYyJmL0YTLpFmcuYWNy0yclRmLw4COuEjL0IjLzYzMtg2chdnbpFmcihSI", + value: "!(brainwash-363.24.1.8.0.des-25f.rai-64.bra-18e.1a4)!", + result: { + word: "brainwash", + correct: 24, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "28.12.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/blisko-24-11-2025-flag-pl-diffle-difflepl-grywebowe-27-liter-w-3-slowach-large-g" +] = [ + { + date: "24.11.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzM24SYzETLlxWZuYTYi1SZp1mLw4CMx4SMuYTMugjMz0ya5JHdrVGblhSI", + value: "!(elektryk-328.16.1.10.0.mie-ba6.ele-13a.632)!", + result: { + word: "elektryk", + correct: 16, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "24.11.2025", + }, + }, + { + date: "24.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMjNtUGbl5iMkZTL5J3aukjMtwWe05SZzITLlxmZuMzNy0CboNmLhNTLrlGbuIWZ50ycvtmLw4CNx4SNuUjMugjMz0ya5JHdrVGblhSI", + value: + "!(elektryk-328.25.5.14.0.kos-9eb.lik-3a.chl-273.fle-23e.tyl-29.kry-6d2.ele-632)!", + result: { + word: "elektryk", + correct: 25, + position: 5, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 44, + date: "24.11.2025", + }, + }, + { + date: "24.11.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMzYTLlxWZuMDNx0CblBnL2UTLuVHduAjL44SMuUTMugjMz0ya5JHdrVGblhSI", + value: "!(elektryk-328.15.1.8.0.tun-56.pel-143.ele-632)!", + result: { + word: "elektryk", + correct: 15, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "24.11.2025", + }, + }, + { + date: "24.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMjNtUGbl5CZmFWL0VWbuI2Y5ETLyR3cuIjYz0SeyRnLyEmMtkncm5yYz0ic1BnLw4SMx4SMuYjMugjMz0ya5JHdrVGblhSI", + value: + "!(elektryk-328.26.1.11.0.pur-3c.fry-2a2.try-3b2.str-19cb.met-afd.ele-632)!", + result: { + word: "elektryk", + correct: 26, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "24.11.2025", + }, + }, + { + date: "24.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzM20SZsVmL3ETL0V2ZuQmM00icwNnLw4SMx4SMuMTMugjMz0ya5JHdrVGblhSI", + value: "!(elektryk-328.13.1.11.0.spr-42d.get-17.ele-632)!", + result: { + word: "elektryk", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "24.11.2025", + }, + }, + { + date: "24.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzM20SZsVmL1kDOtknc05COiVWLyt2cuYmYy0SdoNmLw4CNx4iMuUTMugjMz0ya5JHdrVGblhSI", + value: "!(elektryk-328.15.2.14.0.chu-2bf.skr-eb8.try-895.ele-632)!", + result: { + word: "elektryk", + correct: 15, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "24.11.2025", + }, + }, + { + date: "24.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMzYTLlxWZuQjY20SY3tmLw4CMx4iMuETMugjMz0ya5JHdrVGblhSI", + value: "!(elektryk-328.11.2.10.0.kwa-6b4.ele-632)!", + result: { + word: "elektryk", + correct: 11, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "24.11.2025", + }, + }, + { + date: "24.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMjNtUGbucjNucjMy0Cdz5yNy0ya1VmLz4SMx4SMuAjMugjMz0ya5JHdrVGblhSI", + value: "!(elektryk-328.20.1.11.3.euk-27.st-227.67.le-632)!", + result: { + word: "elektryk", + correct: 20, + position: 1, + incorrect: 11, + knownIncorrect: 3, + totalWords: 4, + totalLetters: 32, + date: "24.11.2025", + }, + }, + { + date: "24.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMzYTLlxWZuU2Y50SeyRnLhFjM10ievBnLw4CMx4iMuQTMugjMz0ya5JHdrVGblhSI", + value: "!(elektryk-328.14.2.10.0.poz-521a.try-9ce.ele-632)!", + result: { + word: "elektryk", + correct: 14, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "24.11.2025", + }, + }, + { + date: "24.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMjNtUGbuAjZt8mcl5yY2EWLhJ3ZuAjL14iMuMTMugjMz0ya5JHdrVGblhSI", + value: "!(elektryk-328.13.2.5.0.gra-a6c.ero-f0.le-632)!", + result: { + word: "elektryk", + correct: 13, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "24.11.2025", + }, + }, + { + date: "24.11.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMzYTLlxWZuQTY10ieyRXZp5mLw4CMx4CMuMTMugjMz0ya5JHdrVGblhSI", + value: "!(elektryk-328.13.0.10.0.nietrz-5a4.ele-632)!", + result: { + word: "elektryk", + correct: 13, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "24.11.2025", + }, + }, + { + date: "24.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMzYTLlxWZuM2N00CbrNnL2UDOtUmcr5CNmFTLkl3duEjL54SNucTMugjMz0ya5JHdrVGblhSI", + value: "!(elektryk-328.17.5.9.1.wyd-1f4.kre-856.skl-47c.ele-632)!", + result: { + word: "elektryk", + correct: 17, + position: 5, + incorrect: 9, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 31, + date: "24.11.2025", + }, + }, + { + date: "24.11.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzM20SZsVmL3YTNt8Gaj5CO0UTLllGcuAjL54CMugTMugjMz0ya5JHdrVGblhSI", + value: "!(elektryk-328.18.0.9.0.pie-548.cho-567.ele-632)!", + result: { + word: "elektryk", + correct: 18, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "24.11.2025", + }, + }, + { + date: "24.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyMjNtUGbl5CN2ETLlN2buE2Y50Cdl1mLhFzNz0ieyBnLw4iMx4SMucTMugjMz0ya5JHdrVGblhSI", + value: "!(elektryk-328.17.1.12.0.prz-371a.met-9ca.oce-164.ele-632)!", + result: { + word: "elektryk", + correct: 17, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "24.11.2025", + }, + }, + { + date: "24.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzM20SZsVmL3QjMto2b35yM5gTYx0ieyBnLw4CNx4yMuETMugjMz0ya5JHdrVGblhSI", + value: "!(elektryk-328.11.3.14.0.prz-1a893.woj-247.ele-632)!", + result: { + word: "elektryk", + correct: 11, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "24.11.2025", + }, + }, + { + date: "24.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMzYTLlxWZuQTOi1CblRnL3gTLk9WbuAjL54iMuQTMugjMz0ya5JHdrVGblhSI", + value: "!(elektryk-328.14.2.9.0.mod-87.tel-b94.ele-632)!", + result: { + word: "elektryk", + correct: 14, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "24.11.2025", + }, + }, + { + date: "24.11.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMzYTLlxWZuUGOz0yalxmL4ITMtwWai5SNyIWLuFGcuAjL34SMukTMugjMz0ya5JHdrVGblhSI", + value: "!(elektryk-328.19.1.7.0.pan-b25.bil-128.lek-38e.ele-632)!", + result: { + word: "elektryk", + correct: 19, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "24.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/bulls-eye-04-12-2025-diffle-difflepl-grywebowe-14-liter-w-2-slowach-large-green-" +] = [ + { + date: "04.12.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZx0ic15mLiVWOtM3br5CMuUjLy4yNugzMz0yalJXduhSI", + value: "!(nurek-338.7.2.5.0.kos-9eb.nur-1f)!", + result: { + word: "nurek", + correct: 7, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "04.12.2025", + }, + }, + { + date: "04.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZx0ic15mLlZDOt8mcr5CMukjLy4iNugzMz0yalJXduhSI", + value: "!(nurek-338.6.2.9.0.kro-86e.nur-1f)!", + result: { + word: "nurek", + correct: 6, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "04.12.2025", + }, + }, + { + date: "04.12.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZx0icuEzNt0WduQTY10ieyRXZp5mLw4yMx4SMuMTMugzMz0yalJXduhSI", + value: "!(nurek-338.13.1.13.0.nietrz-5a4.um-71.r-1f)!", + result: { + word: "nurek", + correct: 13, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "04.12.2025", + }, + }, + { + date: "04.12.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWMtIXdu5SYkJjMts2bw5CMugjLy4iNugzMz0yalJXduhSI", + value: "!(nurek-338.6.2.8.0.pok-22da.nur-1f)!", + result: { + word: "nurek", + correct: 6, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "04.12.2025", + }, + }, + { + date: "04.12.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZx0ic15SY50icv5mLmRWOtUmcr5yY2EWLhJ3ZuAjL24yMuMTMugzMz0yalJXduhSI", + value: "!(nurek-338.13.3.6.0.gra-a6c.kre-9df.nor-9a.ur-1f)!", + result: { + word: "nurek", + correct: 13, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "04.12.2025", + }, + }, + { + date: "04.12.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZx0icuEzNt0mLzMTLkVnbuYmYy0SdoNmLw4iMx4SMuMTMugzMz0yalJXduhSI", + value: "!(nurek-338.13.1.12.0.chu-2bf.nud-33.m-71.r-1f)!", + result: { + word: "nurek", + correct: 13, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "04.12.2025", + }, + }, + { + date: "04.12.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZx0ic15mLkJDNtIHcz5CMukjLx4yNugzMz0yalJXduhSI", + value: "!(nurek-338.7.1.9.0.spr-42d.nur-1f)!", + result: { + word: "nurek", + correct: 7, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "04.12.2025", + }, + }, + { + date: "04.12.2025", + nick: "Szuuz_Ekleer", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmFTLyVnbuYGNtQXdr5CMuQjLz4yNugzMz0yalJXduhSI", + value: "!(nurek-338.7.3.4.0.kut-4f.nur-1f)!", + result: { + word: "nurek", + correct: 7, + position: 3, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "04.12.2025", + }, + }, + { + date: "04.12.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmFTLyVnbucjMtsWdl5CMuUjLz4yNugzMz0yalJXduhSI", + value: "!(nurek-338.7.3.5.0.euk-27.nur-1f)!", + result: { + word: "nurek", + correct: 7, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "04.12.2025", + }, + }, + { + date: "04.12.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWMtIXdu5CNiZTLhd3auAjLwEjLz4yNugzMz0yalJXduhSI", + value: "!(nurek-338.7.3.10.0.kwa-6b4.nur-1f)!", + result: { + word: "nurek", + correct: 7, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "04.12.2025", + }, + }, + { + date: "04.12.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZx0ic15mLkJWMtIXdi5CO0UTLllGcuAjL54SMuETMugzMz0yalJXduhSI", + value: "!(nurek-338.11.1.9.0.pie-548.bur-1bd.nur-1f)!", + result: { + word: "nurek", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "04.12.2025", + }, + }, + { + date: "04.12.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWMtIXduEWOtI3bu5CNmFTLkl3duAjL34SMuETMugzMz0yalJXduhSI", + value: "!(nurek-338.11.1.7.0.wyd-1f4.nor-9a.ur-1f)!", + result: { + word: "nurek", + correct: 11, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "04.12.2025", + }, + }, + { + date: "04.12.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmFTLyVnbuU2YtIXZi5iY3ETLlJ3ZuU2Nz0SZytmLhFzNz0ieyBnLw4yMx4SMuUTMugzMz0yalJXduhSI", + value: "!(nurek-338.15.1.13.0.prz-371a.kre-37e.gre-17b.ber-ce.nur-1f)!", + result: { + word: "nurek", + correct: 15, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "04.12.2025", + }, + }, + { + date: "04.12.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZx0ic15mLlFTLulncuYTYi1SZp1mLw4iMx4iMuATMugzMz0yalJXduhSI", + value: "!(nurek-338.10.2.12.0.mie-ba6.ryn-1e.nur-1f)!", + result: { + word: "nurek", + correct: 10, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "04.12.2025", + }, + }, + { + date: "04.12.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmFTLyVnbucDNy0iavdnLzkDOhFTL6JHcuAjL1EjLy4COugzMz0yalJXduhSI", + value: "!(nurek-338.8.2.15.0.prz-1a893.woj-247.nur-1f)!", + result: { + word: "nurek", + correct: 8, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "04.12.2025", + }, + }, + { + date: "04.12.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWMtIXdu5SYxITNto3bw5CMucjLx4yNugzMz0yalJXduhSI", + value: "!(nurek-338.7.1.7.0.poz-521a.nur-1f)!", + result: { + word: "nurek", + correct: 7, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "04.12.2025", + }, + }, + { + date: "04.12.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZx0ic15mLiZWLrVmcuYzYjFTLyF2auAjL24iMuATMugzMz0yalJXduhSI", + value: "!(nurek-338.10.2.6.0.kar-1cc6.rek-fb.nur-1f)!", + result: { + word: "nurek", + correct: 10, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "04.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/chwilowe-zacmienie-powinno-byc-w-trzech-12-10-2025-diffle-difflepl-grywebowe-32-" +] = [ + { + date: "12.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM10SdlJnL0MTLjVHcukDMx0CblJnLiVWOtM3br5CMuATMuMjL5EjL1gjMt0me5RXYtVXZyhSI", + value: "!(reumatyzm-285.19.3.10.0.kos-9eb.rel-109.puc-34.reu-50)!", + result: { + word: "reumatyzm", + correct: 19, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "12.10.2025", + }, + }, + { + date: "12.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATNtUXZy5CZ50ia1JmLwITMtEWbuQjMy0ienVmL2EmYtUWat5SMuYTMuMjL0IjL1gjMt0me5RXYtVXZyhSI", + value: "!(reumatyzm-285.24.3.16.1.mie-ba6.egz-224.ma-120.buj-9d.reu-50)!", + result: { + word: "reumatyzm", + correct: 24, + position: 3, + incorrect: 16, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 43, + date: "12.10.2025", + }, + }, + { + date: "12.10.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwUTL1VmcuYmYy0Cdh5WZp5mLw4iNuIjLzEjL1gjMt0me5RXYtVXZyhSI", + value: "!(reumatyzm-285.13.2.6.0.nienat-2bf.reu-50)!", + result: { + word: "reumatyzm", + correct: 13, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "12.10.2025", + }, + }, + { + date: "12.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATNtUnLwcTLn5iYjFTLhVmcuEjYtoWYw5CMuMTMuAjLxIjL1gjMt0me5RXYtVXZyhSI", + value: "!(reumatyzm-285.21.0.13.0.paj-b1.rea-1cb.g-70.u-50)!", + result: { + word: "reumatyzm", + correct: 21, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "12.10.2025", + }, + }, + { + date: "12.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwUTL1VmL0ETLsVncuEmMx0ieydmLkJDNtIHcz5CMuQTMuMjL5EjL1gjMt0me5RXYtVXZyhSI", + value: "!(reumatyzm-285.19.3.14.0.spr-42d.grz-12a.rul-14.eu-50)!", + result: { + word: "reumatyzm", + correct: 19, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "12.10.2025", + }, + }, + { + date: "12.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATNtUXZy5COwQTL5J3ZuATL5JHdukDZyETLyFWbuMzMy0CchtmLmJmMtUHaj5CMuQTMuYjLzIjL1gjMt0me5RXYtVXZyhSI", + value: + "!(reumatyzm-285.23.6.14.0.chu-2bf.kap-233.mar-12d9.try-0.gry-408.reu-50)!", + result: { + word: "reumatyzm", + correct: 23, + position: 6, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "12.10.2025", + }, + }, + { + date: "12.10.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATNtUXZy5iMjVTLi9GZucjM30Cdh1mL0gTLt5COi1yYuATLq5iM20CblJnLjZTYtEmcn5CMuMTMuIjLxMjL1gjMt0me5RXYtVXZyhSI", + value: + "!(reumatyzm-285.31.2.13.0.gra-a6c.rel-62.j-0.c-b8.m-84.mat-727.dob-5c2.reu-50)!", + result: { + word: "reumatyzm", + correct: 31, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 46, + date: "12.10.2025", + }, + }, + { + date: "12.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATNtUXZy5yNy0ya1VmLw4CNuEjL0EjL1gjMt0me5RXYtVXZyhSI", + value: "!(reumatyzm-285.14.1.4.0.euk-27.reu-50)!", + result: { + word: "reumatyzm", + correct: 14, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "12.10.2025", + }, + }, + { + date: "12.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM10SduIDMx0SYlJnL0YWMtQWe35SMuATMuMjL2EjL1gjMt0me5RXYtVXZyhSI", + value: "!(reumatyzm-285.16.3.10.1.wyd-1f4.rea-102.u-50)!", + result: { + word: "reumatyzm", + correct: 16, + position: 3, + incorrect: 10, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 29, + date: "12.10.2025", + }, + }, + { + date: "12.10.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwUTL1VmcugjY2ETLhJHduAjN10SdyJmLhhTOy0ibvtmLw4COuMjLzIjL1gjMt0me5RXYtVXZyhSI", + value: "!(reumatyzm-285.23.3.8.0.kon-298a.bru-560.tra-16b8.reu-50)!", + result: { + word: "reumatyzm", + correct: 23, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "12.10.2025", + }, + }, + { + date: "12.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATNuYDNtUXZy5CZl1SblhmLw0Cdl1mL2YWYtw2bw5CMuATMuIjL2IjL1gjMt0me5RXYtVXZyhSI", + value: "!(reumatyzm-285.26.2.10.0.pol-af6.met-0.hem-ed.reu-46.50)!", + result: { + word: "reumatyzm", + correct: 26, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "12.10.2025", + }, + }, + { + date: "12.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwUTL1VmcuUDNtkHZn5yN0ITLq92duMTO4EWMtoncw5CMuUTMuUjL1EjL1gjMt0me5RXYtVXZyhSI", + value: "!(reumatyzm-285.15.5.15.0.prz-1a893.woj-247.gdy-45.reu-50)!", + result: { + word: "reumatyzm", + correct: 15, + position: 5, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "12.10.2025", + }, + }, + { + date: "12.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwUTL1VmcuMjZz0CZl1mLlN2MtwWe35SYxITNto3bw5CMuMTMucjL0EjL1gjMt0me5RXYtVXZyhSI", + value: "!(reumatyzm-285.14.7.13.0.poz-521a.wyl-3ce.med-3f3.reu-50)!", + result: { + word: "reumatyzm", + correct: 14, + position: 7, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "12.10.2025", + }, + }, + { + date: "12.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwUTL15yNhRTL05CMt0WZuczNt0WYy5iMx0CdlxmLkZ2Mz0ievJnL4EmZtIXYr5iZ2ETLyVGduEWM3MTL6JHcuEjLzEjLwEjL0MjL1gjMt0me5RXYtVXZyhSI", + value: + "!(reumatyzm-285.34.10.13.1.prz-371a.ter-16f.kar-fa8.roz-33fd.let-12.ram-77.em-0.t-4a7.u-50)!", + result: { + word: "reumatyzm", + correct: 34, + position: 10, + incorrect: 13, + knownIncorrect: 1, + totalWords: 9, + totalLetters: 57, + date: "12.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ciekawe-18-10-2025-diffle-difflepl-grywebowe-25-liter-w-3-slowach-9-3-13-0" +] = [ + { + date: "18.10.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ20CchxmL3QTYtMXYw5CNhVTL6JHdllmbuAjLzEjLz4SOuETOy0ycpBXYshSI", + value: "!(lapis-291.9.3.13.0.nietrz-5a4.pas-a47.lap-6d)!", + result: { + word: "lapis", + correct: 9, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "18.10.2025", + }, + }, + { + date: "18.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkZTLwFGbuQ2Y30Cc5dnLiVWOtM3br5CMukjLy4COuETOy0ycpBXYshSI", + value: "!(lapis-291.8.2.9.0.kos-9eb.wyp-7cd.lap-6d)!", + result: { + word: "lapis", + correct: 8, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "18.10.2025", + }, + }, + { + date: "18.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ20CchxmLmJTLpxWYuYTYi1SZp1mLw4SMx4yMuATMuETOy0ycpBXYshSI", + value: "!(lapis-291.10.3.11.0.mie-ba6.ali-2f.lap-6d)!", + result: { + word: "lapis", + correct: 10, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "18.10.2025", + }, + }, + { + date: "18.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmNtAXYs5SNhRWLwFmbuQjY00ychpmLhFzNz0ieyBnLw4CMx4iMuUTMuETOy0ycpBXYshSI", + value: "!(lapis-291.15.2.10.0.prz-371a.jas-4b4.nap-da5.lap-6d)!", + result: { + word: "lapis", + correct: 15, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "18.10.2025", + }, + }, + { + date: "18.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ20CchxmLkJDNtIHcz5CMugjLy4yNuETOy0ycpBXYshSI", + value: "!(lapis-291.7.2.8.0.spr-42d.lap-6d)!", + result: { + word: "lapis", + correct: 7, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "18.10.2025", + }, + }, + { + date: "18.10.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmNtAXYs5CNiZTLhd3auAjLyEjLx4yNuETOy0ycpBXYshSI", + value: "!(lapis-291.7.1.12.0.kwa-6b4.lap-6d)!", + result: { + word: "lapis", + correct: 7, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "18.10.2025", + }, + }, + { + date: "18.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmNtAnLkFDNt0WYs5yYlVTLsFGcuYmYy0SdoNmLw4CMx4yMuITMuETOy0ycpBXYshSI", + value: "!(lapis-291.12.3.10.0.chu-2bf.pal-5ec.lam-41d.p-6d)!", + result: { + word: "lapis", + correct: 12, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "18.10.2025", + }, + }, + { + date: "18.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ20CchxmLjVWNtwWYw5SO0ITLk9WbuAjLxEjLz4COuETOy0ycpBXYshSI", + value: "!(lapis-291.8.3.11.0.mod-249.pal-5ec.lap-6d)!", + result: { + word: "lapis", + correct: 8, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "18.10.2025", + }, + }, + { + date: "18.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ20CchxmLw0ychdmLiVTMtMWYi5COyETLtF2cuQjZx0CZ5dnLw4iMx4iMuMTMuETOy0ycpBXYshSI", + value: "!(lapis-291.13.2.12.0.wyd-1f4.sam-128.bac-15b.gas-0.lap-6d)!", + result: { + word: "lapis", + correct: 13, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "18.10.2025", + }, + }, + { + date: "18.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmNtAXYs5SM0QTLk92dugjMtAHbh5yM5gTYx0ieyBnLw4COx4SNuETMuETOy0ycpBXYshSI", + value: "!(lapis-291.11.5.18.0.prz-1a893.alp-28.wod-441.lap-6d)!", + result: { + word: "lapis", + correct: 11, + position: 5, + incorrect: 18, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "18.10.2025", + }, + }, + { + date: "18.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ20CchxmL3gjNtEGbr5yM2UTL6dWZuAjLyEjLy4SOuETOy0ycpBXYshSI", + value: "!(lapis-291.9.2.12.0.egz-563.kla-687.lap-6d)!", + result: { + word: "lapis", + correct: 9, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "18.10.2025", + }, + }, + { + date: "18.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQmNtAXYs5yYzETLiF2cuImZtwWYk5yNy0ya1VmLw4SMx4yMuETMuETOy0ycpBXYshSI", + value: "!(lapis-291.11.3.11.0.euk-27.dal-fb.sab-13c.lap-6d)!", + result: { + word: "lapis", + correct: 11, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "18.10.2025", + }, + }, + { + date: "18.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZ20CchxmLjZzMtEWauEWMyUTL69GcuAjL34yMuATMuETOy0ycpBXYshSI", + value: "!(lapis-291.10.3.7.0.poz-521a.ia-36c.lap-6d)!", + result: { + word: "lapis", + correct: 10, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "18.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ciekawe-choc-dla-mnie-nielatwe-z-pewnoscia-bede-mial-dzis-jeden-ze-slabszych-wyn" +] = [ + { + date: "28.12.2024", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTYx0SYyJmLkRTLhd3cuEGMx0ichdnL1Y2Mtkmc05yYt4Way5CMyETLpB3cukTMtMWdm5CMuYTMuYjL1IjLzYzMtg2chdnbpFmcihSI", + value: + "!(brainwash-363.25.6.16.0.fuc-19.spi-120.rin-c.tri-3f5.war-10a.swa-4d.bra-1a4)!", + result: { + word: "brainwash", + correct: 25, + position: 6, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 47, + date: "28.12.2024", + }, + }, + { + date: "28.12.2024", + nick: "razALgul", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNhFjL2kTMuQ2Nx0SYy5CZ10icvJmL10yZ1JnLw4iNuEjLzIjLzYzMtg2chdnbpFmcihSI", + value: "!(brainwash-363.23.1.6.0.rug-5.bor-5d.ra-17d.196.1a4)!", + result: { + word: "brainwash", + correct: 23, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "28.12.2024", + }, + }, + { + date: "28.12.2024", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTYx0SYyJmLh1ychdnLwgTNtEmc05iZ00ibhZnLjFTLzVHcuQTMtMWZt5CMuITMuUjL2IjLzYzMtg2chdnbpFmcihSI", + value: + "!(brainwash-363.26.5.12.0.mec-14.pus-1c.van-4f.tra-580.was-a.bra-1a4)!", + result: { + word: "brainwash", + correct: 26, + position: 5, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "28.12.2024", + }, + }, + { + date: "28.12.2024", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0EWMtEmci5SZyYTLoN2MugTOt4Waw5yNh1ichdnL2QWMtU3bj5CMuATMuIjL4EjLzYzMtg2chdnbpFmcihSI", + value: "!(brainwash-363.18.2.10.0.cou-1d6.war-a7.pin-98.3ch-62e.bra-1a4)!", + result: { + word: "brainwash", + correct: 18, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "28.12.2024", + }, + }, + { + date: "28.12.2024", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0EWMtEmci5SNi1SY3NnLiRTLsVnYuI2NtIHdz5CZh1SYyNmL0MTLuFmcuIjNt0WYn5CMuMTMuIjL0IjLzYzMtg2chdnbpFmcihSI", + value: + "!(brainwash-363.24.2.13.0.gam-62.ran-34.cra-ad.str-7b.bul-4b.swa-b5.bra-1a4)!", + result: { + word: "brainwash", + correct: 24, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "28.12.2024", + }, + }, + { + date: "28.12.2024", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNhFTLhJnYuEmNtkWYy5SYjFTLhJHdukzMtkWYw5iY50SYoNmLw4COuEjL5IjLzYzMtg2chdnbpFmcihSI", + value: "!(brainwash-363.29.1.8.0.cha-9b.pai-39.tra-1ca.rai-6a.bra-1a4)!", + result: { + word: "brainwash", + correct: 29, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "28.12.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/cos-nie-chcialo-zatrybic-02-11-2025-flag-pl-diffle-difflepl-49-liter-w-8-slowach" +] = [ + { + date: "02.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWMz4iN4ITLjVGduIGM10iah5CN30Cc1pnLzcTMtIWYn5yNkVTLrp3cuMmYi1Sa6RmL1IWNtEGbz5CMuIjMuIjL1IjL2AzMtE2a3NjQlMzQlo3Y5kTJ0MUJ0hSI", + value: + "!(tęczówka-306.25.2.22.0.sla-5b5.dzi-bbc.szk-5d7.gab-173.zup-74.aj-50b.tec-286.31a)!", + result: { + word: "tęczówka", + correct: 25, + position: 2, + incorrect: 22, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 49, + date: "02.11.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhFzMtMWZ05CMy0Sa3NmLw4SNuEjLzEjL2AzMtE2a3NjQlMzQlo3Y5kTJ0MUJ0hSI", + value: "!(tęczówka-306.13.1.5.0.cwi-20.tec-31a)!", + result: { + word: "tęczówka", + correct: 13, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + }, + }, + { + date: "02.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWMz0yYlRnLxEWLjlneuIWNy0yd6NmLkhTMtA3ch5CMuMTMuIjLwIjL2AzMtE2a3NjQlMzQlo3Y5kTJ0MUJ0hSI", + value: "!(tęczówka-306.20.2.13.0.asp-18d.czw-25b.zyc-a1.tec-31a)!", + result: { + word: "tęczówka", + correct: 20, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "02.11.2025", + }, + }, + { + date: "02.11.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhFzMtMWZ05CZ3ETLjF2auQWOy0SdoNmL2QTZtA3c35CMuUTMuYjL1EjL2AzMtE2a3NjQlMzQlo3Y5kTJ0MUJ0hSI", + value: "!(tęczówka-306.15.6.15.0.wsp-e46.chu-29d.kac-17d.tec-31a)!", + result: { + word: "tęczówka", + correct: 15, + position: 6, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "02.11.2025", + }, + }, + { + date: "02.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhFzMtMWZ05SOklTLhp3cuQmM0EWL6JHcugTOt8me65CMuQTMuAjLwIjL2AzMtE2a3NjQlMzQlo3Y5kTJ0MUJ0hSI", + value: "!(tęczówka-306.20.0.14.0.zzo-98.prz-a42d.sza-9d9.tec-31a)!", + result: { + word: "tęczówka", + correct: 20, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "02.11.2025", + }, + }, + { + date: "02.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWMz0yYlRnL0MGOtMXZk5CZz0ya6NmL4ImMx0Cb5dnLmJmMtUHaj5CMuYTMuIjL1IjL2AzMtE2a3NjQlMzQlo3Y5kTJ0MUJ0hSI", + value: "!(tęczówka-306.25.2.16.0.chu-2bf.wyl-12b8.czk-3d.des-8c4.tec-31a)!", + result: { + word: "tęczówka", + correct: 25, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 43, + date: "02.11.2025", + }, + }, + { + date: "02.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYxMjL2gjMtMWZ05CMjNTL0VGcugDM30Cbp1mLw4COuEjL1EjL2AzMtE2a3NjQlMzQlo3Y5kTJ0MUJ0hSI", + value: "!(tęczówka-306.15.1.8.0.mil-708.pet-3c0.tec-286.31a)!", + result: { + word: "tęczówka", + correct: 15, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "02.11.2025", + }, + }, + { + date: "02.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhFzMtMWZ05yYlNWLhp3YuMTO4EWMtoncw5CMuITMuMjL0EjL2AzMtE2a3NjQlMzQlo3Y5kTJ0MUJ0hSI", + value: "!(tęczówka-306.14.3.12.0.prz-1a893.cza-cec.tec-31a)!", + result: { + word: "tęczówka", + correct: 14, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "02.11.2025", + }, + }, + { + date: "02.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWMz0yYlRnL2UzMto3Y15yM0IGNtQ2bw5CMuMTMuAjL1EjL2AzMtE2a3NjQlMzQlo3Y5kTJ0MUJ0hSI", + value: "!(tęczówka-306.15.0.13.0.pod-4b43.ucz-356.tec-31a)!", + result: { + word: "tęczówka", + correct: 15, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "02.11.2025", + }, + }, + { + date: "02.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhFzMtMWZ05COhJWMtM2bw5iY1ITL3p3YuAjM1ETLppHZugTOt8me65CMuITMuIjL1IjL2AzMtE2a3NjQlMzQlo3Y5kTJ0MUJ0hSI", + value: + "!(tęczówka-306.25.2.12.0.zzo-98.dzi-1520.czw-25b.poc-1ba8.tec-31a)!", + result: { + word: "tęczówka", + correct: 25, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "02.11.2025", + }, + }, + { + date: "02.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYxMTLjVGducjNx0ydvNnLzUTYt8mc05CNx0SdlZmL2kjNtw2b65CMuUTMuIjL4EjL2AzMtE2a3NjQlMzQlo3Y5kTJ0MUJ0hSI", + value: "!(tęczówka-306.18.2.15.0.zol-696.feu-14.tro-a53.sow-167.tec-31a)!", + result: { + word: "tęczówka", + correct: 18, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "02.11.2025", + }, + }, + { + date: "02.11.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYxMTLjVGdugTYiFTLj9GcuIWNy0yd6NmL0MzMx0Cb5dnLw4COuMjLyIjL2AzMtE2a3NjQlMzQlo3Y5kTJ0MUJ0hSI", + value: "!(tęczówka-306.22.3.8.0.wyl-1334.czw-25b.poc-1ba8.tec-31a)!", + result: { + word: "tęczówka", + correct: 22, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "02.11.2025", + }, + }, + { + date: "02.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhFzMuQ2Yy0yYlRnLkFzNz0ieyBnLw4SOuEjL3EjL2AzMtE2a3NjQlMzQlo3Y5kTJ0MUJ0hSI", + value: "!(tęczówka-306.17.1.9.0.prz-371d.tec-2cd.31a)!", + result: { + word: "tęczówka", + correct: 17, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "02.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/cudowane-haslo-07-12-2025-diffle-difflepl-grywebowe-27-liter-w-3-slowach-16-3" +] = [ + { + date: "07.12.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJTLwNnL2EjMtwWZuMDNzETLsl3duAjL44yMuYTMuEDNz0SeygTJ1MUJhlmbhB3c3hSI", + value: "!(wspaniały-341.16.3.8.0.wyl-1343.el-216.sp-2b)!", + result: { + word: "wspaniały", + correct: 16, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "07.12.2025", + }, + }, + { + date: "07.12.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJTLwNnLkJTLzl2duMTYx0Cb6NmLw4SMx4iMucTMuEDNz0SeygTJ1MUJhlmbhB3c3hSI", + value: "!(wspaniały-341.17.2.11.0.czl-1a3.wis-2d.sp-2b)!", + result: { + word: "wspaniały", + correct: 17, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "07.12.2025", + }, + }, + { + date: "07.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpImMtA3cuMzMkFTLzl3ducTOxETLyB3cuAjL44SMukTMuEDNz0SeygTJ1MUJhlmbhB3c3hSI", + value: "!(wspaniały-341.19.1.8.0.spr-1197.wys-1d33.sp-2b)!", + result: { + word: "wspaniały", + correct: 19, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "07.12.2025", + }, + }, + { + date: "07.12.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpImMtA3c35CZ4ETLwNXYuAjL34iMuITMuEDNz0SeygTJ1MUJhlmbhB3c3hSI", + value: "!(wspaniały-341.12.2.7.0.asp-18d.wsp-2b)!", + result: { + word: "wspaniały", + correct: 12, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "07.12.2025", + }, + }, + { + date: "07.12.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpImMtA3cuI2MtMXauIzMzETLzl3duAjL04iMugTMuEDNz0SeygTJ1MUJhlmbhB3c3hSI", + value: "!(wspaniały-341.18.2.4.0.wys-1332.is-3b.sp-2b)!", + result: { + word: "wspaniały", + correct: 18, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "07.12.2025", + }, + }, + { + date: "07.12.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpImMtA3c35CM1ITMtEGcz5iZ2MTL5JHcuYmYy0SdoNmLw4SMx4CNuAjMuEDNz0SeygTJ1MUJhlmbhB3c3hSI", + value: "!(wspaniały-341.20.4.11.0.chu-2bf.pry-36f.spa-1250.wsp-2b)!", + result: { + word: "wspaniały", + correct: 20, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "07.12.2025", + }, + }, + { + date: "07.12.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpImMtA3cuUWMm1yZuQzMzETLsl3duAjL34iMucTMuEDNz0SeygTJ1MUJhlmbhB3c3hSI", + value: "!(wspaniały-341.17.2.7.0.wyl-1334.g-f1e.sp-2b)!", + result: { + word: "wspaniały", + correct: 17, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "07.12.2025", + }, + }, + { + date: "07.12.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJTLwN3duETYtAXYu5iNwQWLsFGcukTN2ETLsFmeuAjL34iMugTMuEDNz0SeygTJ1MUJhlmbhB3c3hSI", + value: "!(wspaniały-341.18.2.7.0.zal-1659.pal-d06.nap-a1.wsp-2b)!", + result: { + word: "wspaniały", + correct: 18, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "07.12.2025", + }, + }, + { + date: "07.12.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJTLwNnL1UjMto2b35yM5gTYx0ieyBnLw4iNx4SMuUTMuEDNz0SeygTJ1MUJhlmbhB3c3hSI", + value: "!(wspaniały-341.15.1.16.0.prz-1a893.woj-255.sp-2b)!", + result: { + word: "wspaniały", + correct: 15, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 32, + date: "07.12.2025", + }, + }, + { + date: "07.12.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYy0CczdnLwY2NtAXYu5CO50yb6pnLw4CMx4yMuQTMuEDNz0SeygTJ1MUJhlmbhB3c3hSI", + value: "!(wspaniały-341.14.3.10.0.zzo-98.nap-7f0.wsp-2b)!", + result: { + word: "wspaniały", + correct: 14, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "07.12.2025", + }, + }, + { + date: "07.12.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYy0CczdnLhRWLuF2cuMzYt4WYi5CO00ibuFmLyYmNtcWYu5CO50yb6pnLw4CMx4SMuAzMuEDNz0SeygTJ1MUJhlmbhB3c3hSI", + value: + "!(wspaniały-341.30.1.10.0.zzo-98.nag-6f2.ann-48.ban-c3.san-da.wsp-2b)!", + result: { + word: "wspaniały", + correct: 30, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 41, + date: "07.12.2025", + }, + }, + { + date: "07.12.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiYy4iN0UWLwN3duAjL44SMuMTMuEDNz0SeygTJ1MUJhlmbhB3c3hSI", + value: "!(wspaniały-341.13.1.8.0.wsp-e46.2b)!", + result: { + word: "wspaniały", + correct: 13, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "07.12.2025", + }, + }, + { + date: "07.12.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJTLwNnLhNTLiFmL2YWLhlmL4QjNtwWY35SY3ETL3FGbuYTO20CbvpnLw4iMx4CNuIjMuEDNz0SeygTJ1MUJhlmbhB3c3hSI", + value: + "!(wspaniały-341.22.4.12.0.zol-696.law-17a.wal-648.ia-f6.ab-3a.sp-2b)!", + result: { + word: "wspaniały", + correct: 22, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "07.12.2025", + }, + }, + { + date: "07.12.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpImMugTNtA3c35CNxYTLhB3cuMDNiRTLk9GcuAjL34SMuEjMuEDNz0SeygTJ1MUJhlmbhB3c3hSI", + value: "!(wspaniały-341.21.1.7.0.pod-4b43.spa-614.wsp-58.2b)!", + result: { + word: "wspaniały", + correct: 21, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "07.12.2025", + }, + }, + { + date: "07.12.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKiJTLwN3duQWM3MTL6JHcuAjL24iMuMTMuEDNz0SeygTJ1MUJhlmbhB3c3hSI", + value: "!(wspaniały-341.13.2.6.0.prz-371d.wsp-2b)!", + result: { + word: "wspaniały", + correct: 13, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "07.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/drugie-slowo-zrobilo-robote-bo-tak-obiektywnie-to-dosc-trudne-ale-tym-razem-mial" +] = [ + { + date: "23.12.2024", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkJTLnxmLlRWLn5mLkVTLzJWYuAjL14iMuUTMugTNz0ibhlmcldGbhhSI", + value: "!(algerian-358.15.2.5.0.abs-5d.ng-de.lg-2d)!", + result: { + word: "algerian", + correct: 15, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "23.12.2024", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkJTLn5iM50CbuUTNtkGbh5CZ2ETLyVmdukTMtEmcl5yMy0Cdv1mLw4yMx4SNucjMugTNz0ibhlmcldGbhhSI", + value: "!(algerian-358.27.5.13.0.mot-23.era-19.ver-16d.ali-55.l-92.g-2d)!", + result: { + word: "algerian", + correct: 27, + position: 5, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 45, + }, + }, + { + date: "23.12.2024", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkJTLnxWYucjNtwWZi5SOy0SbpdmL20SZsNmLhdTLpV3ZuYWNx0CZulmLw4yMx4yMuQjMugTNz0ibhlmcldGbhhSI", + value: + "!(algerian-358.24.3.13.0.ind-15f.gui-7a.cle-6.gim-29.bel-67.alg-2d)!", + result: { + word: "algerian", + correct: 24, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "23.12.2024", + }, + }, + { + date: "23.12.2024", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZy0yZuEjYtwGbh5iYx0Sah5CM50ibpxmL0ETLnlmbuEGNtIXZn5SNx0ydvBnLkNTLn5WZuQWMt42Zp5SOx0yY1ZmLw4iNx4COuEzMugTNz0ibhlmcldGbhhSI", + value: + "!(algerian-358.31.8.16.0.fuc-19.ign-1d.eng-3d.pow-15.ger-4a.nig-14.lin-90.ai-1b.all-b1.g-2d)!", + result: { + word: "algerian", + correct: 31, + position: 8, + incorrect: 16, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 55, + date: "23.12.2024", + }, + }, + { + date: "23.12.2024", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQmMtcmLzUTLpxWYuIGZz0CajNjLlJTLylmduETYtUGa35CZ00iclJmLlhTLsxWYucTYt8Gbm5SNl1SasNnL5YTLjVnYuEGNtcmbh5iM20SbhdmLx4CMy4yNuczMugTNz0ibhlmcldGbhhSI", + value: + "!(algerian-358.37.7.20.1.gam-62.ang-4a.buc-69.sli-e5.flo-a7.all-8e.ber-4d.whe-a1.vir-2e.3ch-3db.ali-53.g-2d)!", + result: { + word: "algerian", + correct: 37, + position: 7, + incorrect: 20, + knownIncorrect: 1, + totalWords: 12, + totalLetters: 64, + date: "23.12.2024", + }, + }, + { + date: "23.12.2024", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZy0yZsFmL5ITLsFmduQTOtIWas5iYz0CblBnL1QWLuFmcuUjMz0ibh1mLw4CMx4CNukjMugTNz0ibhlmcldGbhhSI", + value: + "!(algerian-358.29.4.10.0.man-325.ran-d5.pel-3b.lib-94.val-29.alg-2d)!", + result: { + word: "algerian", + correct: 29, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "23.12.2024", + }, + }, + { + date: "23.12.2024", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZy0yZsFmL5ITLsFmduETLpJXZuEmZ10iclBnL3QTLy9mZuAjL54SMukjMugTNz0ibhlmcldGbhhSI", + value: "!(algerian-358.29.1.9.0.for-47.per-5fa.eri-1.val-29.alg-2d)!", + result: { + word: "algerian", + correct: 29, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "23.12.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/duzo-slow-z-taka-koncowka-09-10-2025-diffle-difflepl-grywebowe-31-liter-w-5-slow" +] = [ + { + date: "09.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1IjMtkmLxMWL1x2ZuY2NtkmY35iY1MTLyFmbuIWZ50ycvtmLw4iMx4iMucTMuIDOy0ieyFWaulGbnhSI", + value: "!(gliniarz-282.17.2.12.0.kos-9eb.nar-35b.wbi-7f.glu-c1.i-225)!", + result: { + word: "gliniarz", + correct: 17, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "09.10.2025", + }, + }, + { + date: "09.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMy0SasdmLwIjMt4Wa35SZ3ETLyFGallmbuAjL54SMugTMuIDOy0ieyFWaulGbnhSI", + value: "!(gliniarz-282.18.1.9.0.niehar-17e.win-220.gli-225)!", + result: { + word: "gliniarz", + correct: 18, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "09.10.2025", + }, + }, + { + date: "09.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNyITLpx2ZuETOt4Wey5SZjRTLllmeuYmYy0SdoNmLw4iMx4iMuAjMuIDOy0ieyFWaulGbnhSI", + value: "!(gliniarz-282.20.2.12.0.chu-2bf.zie-4ce.ryn-91.gli-225)!", + result: { + word: "gliniarz", + correct: 20, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "09.10.2025", + }, + }, + { + date: "09.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMy0SasdmLjdjMtEmc65CZyQTLyB3cuAjL34iNuITMuIDOy0ieyFWaulGbnhSI", + value: "!(gliniarz-282.12.6.7.0.spr-42d.zra-27c.gli-225)!", + result: { + word: "gliniarz", + correct: 12, + position: 6, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "09.10.2025", + }, + }, + { + date: "09.10.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNyITLpx2ZuQTY10ieyRXZp5mLw4CMx4SMuITMuIDOy0ieyFWaulGbnhSI", + value: "!(gliniarz-282.12.1.10.0.nietrz-5a4.gli-225)!", + result: { + word: "gliniarz", + correct: 12, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "09.10.2025", + }, + }, + { + date: "09.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1IjMtkGbn5SYzETL0VHbuEWMyUTL69GcuAjL44iMuYTMuIDOy0ieyFWaulGbnhSI", + value: "!(gliniarz-282.16.2.8.0.poz-521a.lut-13a.gli-225)!", + result: { + word: "gliniarz", + correct: 16, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "09.10.2025", + }, + }, + { + date: "09.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMy4CMxITLpx2ZuQjMy0ibp1mLxAjMt4Wa35CMt4Wak5yNy0ya1VmLz4SNx4iMuEzMuIDOy0ieyFWaulGbnhSI", + value: + "!(gliniarz-282.31.2.15.3.euk-27.din-0.win-201.min-224.gli-210.225)!", + result: { + word: "gliniarz", + correct: 31, + position: 2, + incorrect: 15, + knownIncorrect: 3, + totalWords: 6, + totalLetters: 48, + date: "09.10.2025", + }, + }, + { + date: "09.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMy0SasdmLzkDOhFTL6JHcuAjL34iMuITMuIDOy0ieyFWaulGbnhSI", + value: "!(gliniarz-282.12.2.7.0.prz-1a893.gli-225)!", + result: { + word: "gliniarz", + correct: 12, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "09.10.2025", + }, + }, + { + date: "09.10.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNyIjLmBjMuE2Yx0Sas5yY2EWLhJ3ZuAjLx4iMuMjMuIDOy0ieyFWaulGbnhSI", + value: "!(gliniarz-282.23.2.1.0.gra-a6c.li-1ca.20f.225)!", + result: { + word: "gliniarz", + correct: 23, + position: 2, + incorrect: 1, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "09.10.2025", + }, + }, + { + date: "09.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNyITLpx2ZuEzNtsWai5iY1ETLvB3buQjZx0CZ5dnLw4CMx4iMuIjMuIDOy0ieyFWaulGbnhSI", + value: "!(gliniarz-282.22.2.10.0.wyd-1f4.opo-15b.bik-71.gli-225)!", + result: { + word: "gliniarz", + correct: 22, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "09.10.2025", + }, + }, + { + date: "09.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMy0SasdmLjRjNtEmcw5SNx0SblxmLhRWMx0CbvtmLw4CMx4iMucTMuIDOy0ieyFWaulGbnhSI", + value: "!(gliniarz-282.17.2.10.0.kol-11da.lem-15.pra-64c.gli-225)!", + result: { + word: "gliniarz", + correct: 17, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "09.10.2025", + }, + }, + { + date: "09.10.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1IjMtkGbn5SYzETL0VHbuYGMzETLkFmbuAjL54CMukTMuIDOy0ieyFWaulGbnhSI", + value: "!(gliniarz-282.19.0.9.0.nad-130f.lut-13a.gli-225)!", + result: { + word: "gliniarz", + correct: 19, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "09.10.2025", + }, + }, + { + date: "09.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNyITLpx2ZuUDO2ETLppHZuATL6FGbuYTYi1SZp1mLw4iMx4iNucTMuIDOy0ieyFWaulGbnhSI", + value: "!(gliniarz-282.17.6.12.0.mie-ba6.laz-0.dzi-1685.gli-225)!", + result: { + word: "gliniarz", + correct: 17, + position: 6, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "09.10.2025", + }, + }, + { + date: "09.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjMy0SasdmL5MWLulmYuQWO30SYtpnLhFzNz0ieyBnLw4iMx4iNuUTMuIDOy0ieyFWaulGbnhSI", + value: "!(gliniarz-282.15.6.12.0.prz-371a.zma-79d.bin-c9.gli-225)!", + result: { + word: "gliniarz", + correct: 15, + position: 6, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "09.10.2025", + }, + }, + { + date: "09.10.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNyITLpx2ZuQjY20SY3tmLw4CMx4iMuETMuIDOy0ieyFWaulGbnhSI", + value: "!(gliniarz-282.11.2.10.0.kwa-6b4.gli-225)!", + result: { + word: "gliniarz", + correct: 11, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "09.10.2025", + }, + }, + { + date: "09.10.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNyITLpx2ZuAjMy0ibpdnLhBTMtM2by5SNxETLhRHcuAjL44CNukTMuIDOy0ieyFWaulGbnhSI", + value: "!(gliniarz-282.19.4.8.0.pta-115.roc-10a.win-220.gli-225)!", + result: { + word: "gliniarz", + correct: 19, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "09.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dzisiaj-gladko-poszlo-17-12-2025-diffle-difflepl-grywebowe-21-liter-w-3-slowach-" +] = [ + { + date: "17.12.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN40SbhxmLxQWLsVXbuAjZ50ycvtmLw4SOuEjLxEjLxUzMtEGZi1WYshSI", + value: "!(lambda-351.11.1.9.0.kos-9f0.mul-d1.lam-86)!", + result: { + word: "lambda", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "17.12.2025", + }, + }, + { + date: "17.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYDOuIzNt0WYs5iZt0WYt5iNlFTL0FmYuYTOtUnez5CMuQTMuAjLwIjLxUzMtEGZi1WYshSI", + value: "!(lambda-351.20.0.14.0.szu-96.bat-1e6.mam-f.lam-72.86)!", + result: { + word: "lambda", + correct: 20, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "17.12.2025", + }, + }, + { + date: "17.12.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYDOt0WYuATLkVHbuQmZ00SYoNmL0EWNtonc0VWau5CMuUTMuAjL1EjLxUzMtEGZi1WYshSI", + value: "!(lambda-351.15.0.15.0.nietrz-5a4.cha-4fd.lud-0.am-86)!", + result: { + word: "lambda", + correct: 15, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "17.12.2025", + }, + }, + { + date: "17.12.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2gTLtFGbuIjM00CbhJmL0EWNtonc0VWau5CMuQTMuEjLzEjLxUzMtEGZi1WYshSI", + value: "!(lambda-351.13.1.14.0.nietrz-5a4.bal-422.lam-86)!", + result: { + word: "lambda", + correct: 13, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "17.12.2025", + }, + }, + { + date: "17.12.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYDOt0WYs5CMtYWbh5CMt0Wdz5CMtQXZt5SYkJjMts2bw5CMuUTMuAjL0EjLxUzMtEGZi1WYshSI", + value: "!(lambda-351.14.0.15.0.pok-22da.met-0.sum-0.amf-0.lam-86)!", + result: { + word: "lambda", + correct: 14, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "17.12.2025", + }, + }, + { + date: "17.12.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2gjLhVmLwczMt0WYs5CMt0WYm5CMx0ych1mLmJmMtUHaj5CMucTMuEjLwIjLxUzMtEGZi1WYshSI", + value: "!(lambda-351.20.1.17.0.chu-2bf.mas-10.fam-0.lam-370.ea.86)!", + result: { + word: "lambda", + correct: 20, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "17.12.2025", + }, + }, + { + date: "17.12.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYDOuATLtFGbuMjM00CbhNnL4QTNtUWaw5CMuUTMuAjL2EjLxUzMtEGZi1WYshSI", + value: "!(lambda-351.16.0.15.0.pie-548.sal-423.lam-0.86)!", + result: { + word: "lambda", + correct: 16, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "17.12.2025", + }, + }, + { + date: "17.12.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN44CMt0WYs5yN0ITLq92duMTO4EWMtoncw5CMucTMuAjLzEjLxUzMtEGZi1WYshSI", + value: "!(lambda-351.13.0.17.0.prz-1a893.woj-247.lam-0.86)!", + result: { + word: "lambda", + correct: 13, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "17.12.2025", + }, + }, + { + date: "17.12.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYDOt0WYs5CN50CZh1mLhFzNz0ieyBnLw4SOuIjLxEjLxUzMtEGZi1WYshSI", + value: "!(lambda-351.11.2.9.0.prz-371a.mad-94.lam-86)!", + result: { + word: "lambda", + correct: 11, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "17.12.2025", + }, + }, + { + date: "17.12.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN44CM3MTLtFGbuATLrVXYuE2Y30ych1mLjZTYtEmcn5CMuMTMuAjL1EjLxUzMtEGZi1WYshSI", + value: "!(lambda-351.15.0.13.0.gra-a6c.mas-7ca.auk-0.lam-370.86)!", + result: { + word: "lambda", + correct: 15, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "17.12.2025", + }, + }, + { + date: "17.12.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN44CM3MjLw0SbhxmL2EmYtUWat5CMuITMuEjL2EjLxUzMtEGZi1WYshSI", + value: "!(lambda-351.16.1.12.0.mie-ba6.lam-0.370.86)!", + result: { + word: "lambda", + correct: 16, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "17.12.2025", + }, + }, + { + date: "17.12.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYDOt0WYs5yMl1SbvBnLw0CZv1mL0YWMtQWe35SMuATMuEjL0EjLxUzMtEGZi1WYshSI", + value: "!(lambda-351.14.1.10.1.wyd-1f4.mod-0.pom-e3.lam-86)!", + result: { + word: "lambda", + correct: 14, + position: 1, + incorrect: 10, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 25, + date: "17.12.2025", + }, + }, + { + date: "17.12.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN44CMt0WYs5CMtIXYt5CMtQXY35SYxITNto3bw5CMuITMuEjL1EjLxUzMtEGZi1WYshSI", + value: "!(lambda-351.15.1.12.0.poz-521a.wat-0.mar-0.lam-0.86)!", + result: { + word: "lambda", + correct: 15, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "17.12.2025", + }, + }, + { + date: "17.12.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN44CMuAzNz0SbhxmL0ImNtE2dr5CMuQTMuAjL2EjLxUzMtEGZi1WYshSI", + value: "!(lambda-351.16.0.14.0.kwa-6b4.lam-370.0.86)!", + result: { + word: "lambda", + correct: 16, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "17.12.2025", + }, + }, + { + date: "17.12.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2gjLw4CM3MTLtFGbucjMtsWdl5CMuATMuAjL1EjLxUzMtEGZi1WYshSI", + value: "!(lambda-351.15.0.10.0.euk-27.lam-370.0.86)!", + result: { + word: "lambda", + correct: 15, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "17.12.2025", + }, + }, + { + date: "17.12.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN40SbuATLiFGbuUjMtUnej5CNwImMtI3bw5CMuMTMuEjLzEjLxUzMtEGZi1WYshSI", + value: "!(lambda-351.13.1.13.0.por-2b04.czu-25.lab-0.m-86)!", + result: { + word: "lambda", + correct: 13, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "17.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ech-moglo-byc-w-drugim-11-10-2025-diffle-difflepl-grywebowe-26-liter-w-3-slowach" +] = [ + { + date: "11.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY3ITMuY2YlFTLjl3duQWZ50ycvtmLw4iNuMjL3EjL0gjMtE2a6NWZpNWe3hSI", + value: "!(wycieczka-284.17.3.6.0.kos-9ed.wyc-1ecf.127b)!", + result: { + word: "wycieczka", + correct: 17, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "11.10.2025", + }, + }, + { + nick: "wielkaberta", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKidjMx4SMlVTMtMWeukjMz0SZpdnLw0yapNnLw0ibpxmLw0Cc1RmLw4COuAjL5IjL0gjMtE2a6NWZpNWe3hSI", + value: "!(wycieczka-284.29.0.8.0.dup-0.lin-0.sik-0.wie-329.yc-15e1.127b)!", + result: { + word: "wycieczka", + correct: 29, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY3ITMtMmLygDOtIWe35CZ3Y2MtA3bw5CMuETMuMjL3EjL0gjMtE2a6NWZpNWe3hSI", + value: "!(wycieczka-284.17.3.11.0.pop-3f7d.wyb-882.c-127b)!", + result: { + word: "wycieczka", + correct: 17, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + }, + }, + { + date: "11.10.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKidjMx0yY55iZ0ETLll2duQWOy0SdoNmL0EWNtonc0VWau5CMuITMuMjL0IjL0gjMtE2a6NWZpNWe3hSI", + value: "!(wycieczka-284.24.3.12.0.nietrz-5a4.chu-29d.wie-14f.yc-127b)!", + result: { + word: "wycieczka", + correct: 24, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 39, + date: "11.10.2025", + }, + }, + { + date: "11.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY3ITMtMWe35SZ2MTLpdneuQmM00icwNnLw4COuMjL3EjL0gjMtE2a6NWZpNWe3hSI", + value: "!(wycieczka-284.17.3.8.0.spr-42d.zwi-36e.wyc-127b)!", + result: { + word: "wycieczka", + correct: 17, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "11.10.2025", + }, + }, + { + date: "11.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiY3ITMugTY4ETLjl3duYmYy0SdoNmLw4yNuEjL5EjL0gjMtE2a6NWZpNWe3hSI", + value: "!(wycieczka-284.19.1.7.0.chu-2bf.wyc-18a8.127b)!", + result: { + word: "wycieczka", + correct: 19, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "11.10.2025", + }, + }, + { + date: "11.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKidjMx0yYucDMh1yduYTNy0ieuQjZx0CZ5dnLx4iNuQjL0IjL0gjMtE2a6NWZpNWe3hSI", + value: "!(wycieczka-284.24.4.6.1.wyd-1f4.z-256.w-a07.c-127b)!", + result: { + word: "wycieczka", + correct: 24, + position: 4, + incorrect: 6, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 34, + date: "11.10.2025", + }, + }, + { + date: "11.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKidjMx0yY55yN0ITLq92duMTO4EWMtoncw5CMuITMuMjL0EjL0gjMtE2a6NWZpNWe3hSI", + value: "!(wycieczka-284.14.3.12.0.prz-1a893.woj-247.yc-127b)!", + result: { + word: "wycieczka", + correct: 14, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "11.10.2025", + }, + }, + { + date: "11.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKidjMx0yYuYTNy0ie5dnLhFzNz0ieyBnLw4yNuMjL3EjL0gjMtE2a6NWZpNWe3hSI", + value: "!(wycieczka-284.17.3.7.0.prz-371a.wyz-256.c-127b)!", + result: { + word: "wycieczka", + correct: 17, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "11.10.2025", + }, + }, + { + date: "11.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpI2NyETLjl3duYzYtUWaj5CMtUGZp5yNzMTLs5SNyQWMtQXe35SYyETLzlHcuE2NtMWdt5CMuUTMuMjLzMjL0gjMtE2a6NWZpNWe3hSI", + value: + "!(wycieczka-284.33.3.15.0.muc-7a.pys-12a.wyt-1d25.l-337.ide-0.cie-c6.wyc-127b)!", + result: { + word: "wycieczka", + correct: 33, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 51, + date: "11.10.2025", + }, + }, + { + date: "11.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpI2NyETLjl3duYTYi1SZp1mLw4yNuIjL0EjL0gjMtE2a6NWZpNWe3hSI", + value: "!(wycieczka-284.14.2.7.0.mie-ba6.wyc-127b)!", + result: { + word: "wycieczka", + correct: 14, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "11.10.2025", + }, + }, + { + date: "11.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpI2NyETLj5CZhBTMtAXe35yNy0ya1VmLw4yNuIjL4EjL0gjMtE2a6NWZpNWe3hSI", + value: "!(wycieczka-284.18.2.7.0.euk-27.wyp-10ad.c-127b)!", + result: { + word: "wycieczka", + correct: 18, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "11.10.2025", + }, + }, + { + date: "11.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKidjMx0yY5dnLhFjM10ievBnLw4CNuMjLyEjL0gjMtE2a6NWZpNWe3hSI", + value: "!(wycieczka-284.12.3.4.0.poz-521a.wyc-127b)!", + result: { + word: "wycieczka", + correct: 12, + position: 3, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "11.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ej-niby-proste-14-10-2025-flag-pl-diffle-difflepl-grywebowe-44-litery-w-6-slowac" +] = [ + { + date: "14.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIDOh1CdhtmL3QjYx0SYyRnL0MWYtInYv5SO4QWLz5CMjVTMtw2buczN20ybytmLw4SNx4CNuUjMucDOy0ieyVWat9Gd1gTJ0MUJrhSI", + value: + "!(kątomierz-287.25.4.15.0.kro-677.ol-15c0.s-d89.obr-ac4.tra-1b47.kat-a82)!", + result: { + word: "kątomierz", + correct: 25, + position: 4, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 44, + date: "14.10.2025", + }, + }, + { + date: "14.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKygTYtQXYr5yYm1ycvBnLjNDZ00ievJnLzQzMx0Cb5dnLw4SNx4iMucTMucDOy0ieyVWat9Gd1gTJ0MUJrhSI", + value: "!(kątomierz-287.17.2.15.0.wyl-1343.roz-4d3c.pos-fc.kat-a82)!", + result: { + word: "kątomierz", + correct: 17, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "14.10.2025", + }, + }, + { + date: "14.10.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKygTYtQXYr5CNxkTLjp3cuAjL54iMuMTMucDOy0ieyVWat9Gd1gTJ0MUJrhSI", + value: "!(kątomierz-287.13.2.9.0.szc-914.kat-a82)!", + result: { + word: "kątomierz", + correct: 13, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 24, + date: "14.10.2025", + }, + }, + { + date: "14.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKygTYtQXYr5iNhJWLllWbuAjL34yMuMTMucDOy0ieyVWat9Gd1gTJ0MUJrhSI", + value: "!(kątomierz-287.13.3.7.0.mie-ba6.kat-a82)!", + result: { + word: "kątomierz", + correct: 13, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "14.10.2025", + }, + }, + { + date: "14.10.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKygTYtQXYuQWO40SbvtmLjFDZtUmc65CZ5ITL1h2YuYDNl1CczdnLw4SOx4CNuAjMucDOy0ieyVWat9Gd1gTJ0MUJrhSI", + value: "!(kątomierz-287.20.4.19.0.wsp-e46.chu-29d.zre-d1c.kom-89d.at-a82)!", + result: { + word: "kątomierz", + correct: 20, + position: 4, + incorrect: 19, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 43, + date: "14.10.2025", + }, + }, + { + date: "14.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKygTYtQXYr5yMhFTL69WbuYmYy0SdoNmLw4CMx4SMucTMucDOy0ieyVWat9Gd1gTJ0MUJrhSI", + value: "!(kątomierz-287.17.1.10.0.chu-2bf.moz-1a3.kat-a82)!", + result: { + word: "kątomierz", + correct: 17, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "14.10.2025", + }, + }, + { + date: "14.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIDOh1CduIDM00CZhtmL2gDNtE2a15CO50yb6pnLw4CMx4iMugTMucDOy0ieyVWat9Gd1gTJ0MUJrhSI", + value: "!(kątomierz-287.18.2.10.0.zzo-98.uka-486.kad-402.t-a82)!", + result: { + word: "kątomierz", + correct: 18, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "14.10.2025", + }, + }, + { + date: "14.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM4EWL0F2auMTYx0iev1mL3gzNto3by5iMjZTL3R2buQGOx0CczFmLy4SOx4SMuYjMucDOy0ieyVWat9Gd1gTJ0MUJrhSI", + value: + "!(kątomierz-287.26.1.19.2.asp-18d.odw-6c2.roz-787.moz-1a3.kat-a82)!", + result: { + word: "kątomierz", + correct: 26, + position: 1, + incorrect: 19, + knownIncorrect: 2, + totalWords: 5, + totalLetters: 46, + date: "14.10.2025", + }, + }, + { + date: "14.10.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIDOh1CdhtmLlZGNt02bk5yY1UTLllGcuAjL44yMukTMucDOy0ieyVWat9Gd1gTJ0MUJrhSI", + value: "!(kątomierz-287.19.3.8.0.pie-55c.dom-4fe.kat-a82)!", + result: { + word: "kątomierz", + correct: 19, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "14.10.2025", + }, + }, + { + date: "14.10.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIDOh1CdhtmL4UTL6VGduUTOy0SdoNmLygDNt8WauQDMy0yby1mLzUzNx0CbvBnLyMzMx0yc5dnLw4COx4yMuAjMucDOy0ieyVWat9Gd1gTJ0MUJrhSI", + value: + "!(kątomierz-287.20.3.18.0.wys-1332.pol-1753.mro-204.io-482.chu-295.tez-58.kat-a82)!", + result: { + word: "kątomierz", + correct: 20, + position: 3, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "14.10.2025", + }, + }, + { + date: "14.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKygTYtQXYr5iY3ITLlpncuUjM20icvRmLwEGNtg2Yz4SNxYWLpdneuYDZz0yby1mLwkTLnFmauYWO00ybspnLw4CNx4SNuIjMucDOy0ieyVWat9Gd1gTJ0MUJrhSI", + value: + "!(kątomierz-287.22.5.14.0.zlo-49f.jag-90.mro-3d6.zwi-f15.3ch-4a0.dor-625.rze-27b.kat-a82)!", + result: { + word: "kątomierz", + correct: 22, + position: 5, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 41, + date: "14.10.2025", + }, + }, + { + date: "14.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM4EWL0F2auUjM00CbvpnL1UjMto2b35yM5gTYx0ieyBnLw4SOx4CNuYTMucDOy0ieyVWat9Gd1gTJ0MUJrhSI", + value: "!(kątomierz-287.16.4.19.0.prz-1a893.woj-255.zol-425.kat-a82)!", + result: { + word: "kątomierz", + correct: 16, + position: 4, + incorrect: 19, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 39, + date: "14.10.2025", + }, + }, + { + date: "14.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM4EWL0FmLyYTL0V2auYmN10CajNjLzkTMtw2by5SYh1Cdp5CZyMWLpd3cuYjM10CbvpnLw4CNx4iNuIjMucDOy0ieyVWat9Gd1gTJ0MUJrhSI", + value: + "!(kątomierz-287.22.6.14.0.zol-526.swi-c2d.it-aa.rol-193.3ch-56f.ket-62.at-a82)!", + result: { + word: "kątomierz", + correct: 22, + position: 6, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "14.10.2025", + }, + }, + { + date: "14.10.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIDOh1CduEWOl1CcuIDM00CZhtmL4kTLvpneuAjL54iMuAjMucDOy0ieyVWat9Gd1gTJ0MUJrhSI", + value: "!(kątomierz-287.20.2.9.0.zzo-98.kad-402.p-e9a.t-a82)!", + result: { + word: "kątomierz", + correct: 20, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "14.10.2025", + }, + }, + { + date: "14.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM4EWL0F2auUDOt42b05SO5QTLp1meuMWO50ieyRnLkFzNz0ieyBnLw4CNx4iNuMjMucDOy0ieyVWat9Gd1gTJ0MUJrhSI", + value: + "!(kątomierz-287.23.6.14.0.prz-371d.trz-99c.zmi-499.ton-85.kat-a82)!", + result: { + word: "kątomierz", + correct: 23, + position: 6, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 43, + date: "14.10.2025", + }, + }, + { + date: "14.10.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKygTYtQnLiVTZtAXYuATLpN3auQzMzETLsl3duAjL54yMugTMucDOy0ieyVWat9Gd1gTJ0MUJrhSI", + value: "!(kątomierz-287.18.3.9.0.wyl-1334.ksi-0.ap-e5b.t-a82)!", + result: { + word: "kątomierz", + correct: 18, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "14.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/face-with-rolling-eyes-28-10-2025-flag-pl-diffle-difflepl-33-litery-w-4-slowach-" +] = [ + { + date: "28.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2Nz0SYsBnL5YWMtEGbr5yMm1SbhRmL2EmYtUWat5CMuMTMuIjL4EjLxAzMtE2atFGbwhSI", + value: "!(plamka-301.18.2.13.0.mie-ba6.dam-f3.kla-1f9.pla-37a)!", + result: { + word: "plamka", + correct: 18, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "28.10.2025", + }, + }, + { + date: "28.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhdzMtEGbw5iN2MTLpB3duMjYt0Wdn5yMz0yY51mLiVWOtM3br5CMuMTMuEjL1EjLxAzMtE2atFGbwhSI", + value: "!(plamka-301.15.1.13.0.kos-9eb.myc-33.gum-b3.wpi-366.pla-37a)!", + result: { + word: "plamka", + correct: 15, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "28.10.2025", + }, + }, + { + date: "28.10.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhdzMtEGbuEWOy0Cbh5CMl1yc15SYkJjMts2bw5CMuITMuEjL3EjLxAzMtE2atFGbwhSI", + value: "!(plamka-301.17.1.12.0.pok-22da.us-e0.al-29a.la-37a)!", + result: { + word: "plamka", + correct: 17, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "28.10.2025", + }, + }, + { + date: "28.10.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2Nz4SN10SYsBnL4EWNtonc0VWau5CMuQTMuAjLyEjLxAzMtE2atFGbwhSI", + value: "!(plamka-301.12.0.14.0.nietrz-5a8.pla-55.37a)!", + result: { + word: "plamka", + correct: 12, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "28.10.2025", + }, + }, + { + date: "28.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2Nz0SYuMmMx0SdsBnLlFDOtkmek5CMuETMuAjLyEjLxAzMtE2atFGbwhSI", + value: "!(plamka-301.12.0.11.0.dzi-81e.plu-12c.a-37a)!", + result: { + word: "plamka", + correct: 12, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "28.10.2025", + }, + }, + { + date: "28.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSY3MjLwUmMtEGbucDZ20ychBnLmJmMtUHaj5CMuETMuAjL1EjLxAzMtE2atFGbwhSI", + value: "!(plamka-301.15.0.11.0.chu-2bf.pas-6d7.la-2e0.37a)!", + result: { + word: "plamka", + correct: 15, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "28.10.2025", + }, + }, + { + date: "28.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhdzMtEGbuImYy0CdhBnLkJDNtIHcz5CMuATMuAjLzEjLxAzMtE2atFGbwhSI", + value: "!(plamka-301.13.0.10.0.spr-42d.pat-2bb.la-37a)!", + result: { + word: "plamka", + correct: 13, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "28.10.2025", + }, + }, + { + date: "28.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhdzMtEGbuMjZ30Cbh5yM4EWMtw2buMTO4EWMtoncw5CMuITMuEjL3EjLxAzMtE2atFGbwhSI", + value: "!(plamka-301.17.1.12.0.prz-1a893.ol-1a83.al-7f3.la-37a)!", + result: { + word: "plamka", + correct: 17, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "28.10.2025", + }, + }, + { + date: "28.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2Nz0SYs5CMtsWYw5SO2UTLzF2aucjMtsWdl5CMuATMuEjL0EjLxAzMtE2atFGbwhSI", + value: "!(plamka-301.14.1.10.0.euk-27.kas-569.pak-0.la-37a)!", + result: { + word: "plamka", + correct: 14, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "28.10.2025", + }, + }, + { + date: "28.10.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhdzMtEGbugDN10SZpBnLw4iNuAjLxEjLxAzMtE2atFGbwhSI", + value: "!(plamka-301.11.0.6.0.pie-548.la-37a)!", + result: { + word: "plamka", + correct: 11, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "28.10.2025", + }, + }, + { + date: "28.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2Nz0SYs5SMyMTLjFmL50SY0BnL0YWMtQWe35CMuATMuAjL0EjLxAzMtE2atFGbwhSI", + value: "!(plamka-301.14.0.10.0.wyd-1f4.pta-9.ac-321.la-37a)!", + result: { + word: "plamka", + correct: 14, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "28.10.2025", + }, + }, + { + date: "28.10.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhdzMuATZy0SYs5CMtwWdw5COyETLvp3cuMmNh1SYydmLw4SOuAjL3EjLxAzMtE2atFGbwhSI", + value: "!(plamka-301.17.0.9.0.gra-a6c.szo-128.pul-0.la-2e0.37a)!", + result: { + word: "plamka", + correct: 17, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "28.10.2025", + }, + }, + { + date: "28.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhdzMtEGbuEWM3MTL6JHcuAjL44CMukjLxAzMtE2atFGbwhSI", + value: "!(plamka-301.9.0.8.0.prz-371a.la-37a)!", + result: { + word: "plamka", + correct: 9, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "28.10.2025", + }, + }, + { + date: "28.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2Nz0SYs5yMkVWLyFmLhFjM10ievBnLw4COuAjLzEjLxAzMtE2atFGbwhSI", + value: "!(plamka-301.13.0.8.0.poz-521a.ar-ed3.la-37a)!", + result: { + word: "plamka", + correct: 13, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "28.10.2025", + }, + }, + { + date: "28.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhdzMtEGbw5SOmFTLhx2auATLtFmL5QjMtQ2bt5CMuETMuEjL2EjLxAzMtE2atFGbwhSI", + value: "!(plamka-301.16.1.11.0.mod-249.am-0.kla-1f9.pla-37a)!", + result: { + word: "plamka", + correct: 16, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "28.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/fajen-bardzo-22-12-2024-diffle-diffleen-37-letters-in-6-words-large-green-circle" +] = [ + { + date: "22.12.2024", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyATMtEWZuETYtEGcuE2MtEGbuMjMtYXYz5SM00CdhhmL5ETLjVnZuAjL1EjLx4SMy4yN1MTLkVWZ3FWZzhSI", + value: "!(seaweed-357.21.1.15.0.fuc-19.hat-41.sav-23.la-3a.pa-a1.ea-102)!", + result: { + word: "seaweed", + correct: 21, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "22.12.2024", + }, + }, + { + date: "22.12.2024", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIDMx4CMy4SN30SYlNnL5QTLlJ3YuAjLzEjLw4COx4yN1MTLkVWZ3FWZzhSI", + value: "!(seaweed-357.18.0.13.0.cre-49.sea-75.20.102)!", + result: { + word: "seaweed", + correct: 18, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "22.12.2024", + }, + }, + { + date: "22.12.2024", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyATMtEWZuQTMtcXYugTMy0SYw5SMy0SY35CZj1yYh5SN2ETLs92cuAjLwEjLy4yNy4yN1MTLkVWZ3FWZzhSI", + value: "!(seaweed-357.27.2.10.0.sol-165.ac-cd.wa-21.pa-218.aw-14.ea-102)!", + result: { + word: "seaweed", + correct: 27, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "22.12.2024", + }, + }, + { + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMwETLhVmL0kjMtEGauMDNtE2duMjMtYXYz5iMxETLsFGcuIjNt0WYn5CMugjLx4CNy4yN1MTLkVWZ3FWZzhSI", + value: "!(seaweed-357.24.1.8.0.gam-62.pal-112.sav-23.wa-43.ha-294.ea-102)!", + result: { + word: "seaweed", + correct: 24, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + }, + }, + { + date: "22.12.2024", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyATMtEWZuQTMtcXYuUjMtE2ducDNx0SYoNnL3ETLuVnZuAjL2EjLy4iMy4yN1MTLkVWZ3FWZzhSI", + value: "!(seaweed-357.22.2.16.0.fun-17.sha-147.wa-25.aw-14.ea-102)!", + result: { + word: "seaweed", + correct: 22, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "22.12.2024", + }, + }, + { + date: "22.12.2024", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMwEjL24SMm5SN44iMj1SYlNnLmljNtg2Yz4yM00SYlNnLmFWL19WbuAjL0EjLw4SMz4yN1MTLkVWZ3FWZzhSI", + value: "!(seaweed-357.31.0.14.0.mou-af.sea-43.3ch-69f.sea-c2.85.f1.6.102)!", + result: { + word: "seaweed", + correct: 31, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 45, + date: "22.12.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/fajne-07-10-2025-diffle-difflepl-grywebowe-31-liter-w-4-slowach-large-green-circ" +] = [ + { + date: "07.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWZx0SZyRmLilTL3RWYuMmMtUGb15iYllTLz92auAjL54yMukTMuADOy0ieyFWazVmckhSI", + value: "!(dresiarz-280.19.3.9.0.kos-9eb.ule-2c.adw-9b.dre-1ea)!", + result: { + word: "dresiarz", + correct: 19, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "07.10.2025", + }, + }, + { + date: "07.10.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhVWMtUmck5SMkJTLtVmcuEGZyITLr9GcuAjL44iMuUTMuADOy0ieyFWazVmckhSI", + value: "!(dresiarz-280.15.2.8.0.pok-22da.rem-2d1.dre-1ea)!", + result: { + word: "dresiarz", + correct: 15, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "07.10.2025", + }, + }, + { + date: "07.10.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhVWMtUmcuQWLzVHZuQTY10ieyRXZp5mLw4iMx4SNuUTMuADOy0ieyFWazVmckhSI", + value: "!(dresiarz-280.15.5.12.0.nietrz-5a4.dus-d.re-1ea)!", + result: { + word: "dresiarz", + correct: 15, + position: 5, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 32, + date: "07.10.2025", + }, + }, + { + date: "07.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhVWMtUmck5iZyITLhl2cuQDZ4ETLwFmeuYmYy0SdoNmLw4yMx4yMuYTMuADOy0ieyFWazVmckhSI", + value: "!(dresiarz-280.16.3.13.0.chu-2bf.zap-18d4.sia-22f.dre-1ea)!", + result: { + word: "dresiarz", + correct: 16, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "07.10.2025", + }, + }, + { + date: "07.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYlFjL2QWMtUmck5SMwYWLyVGcuMTM30ibp1mLx4SNx4yMuIjMuADOy0ieyFWazVmckhSI", + value: "!(dresiarz-280.22.3.15.1.min-713.per-f01.dre-1d6.1ea)!", + result: { + word: "dresiarz", + correct: 22, + position: 3, + incorrect: 15, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 40, + date: "07.10.2025", + }, + }, + { + date: "07.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYlFTLlJHZuUWZy0SZyJmL3ITLrVXZuAjL44SMucTMuADOy0ieyFWazVmckhSI", + value: "!(dresiarz-280.17.1.8.0.euk-27.bre-2ee.dre-1ea)!", + result: { + word: "dresiarz", + correct: 17, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "07.10.2025", + }, + }, + { + date: "07.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYlFTLlJnL3kTMtwWYk5CZyQTLyB3cuAjL34iNuUTMuADOy0ieyFWazVmckhSI", + value: "!(dresiarz-280.15.6.7.0.spr-42d.dal-197.re-1ea)!", + result: { + word: "dresiarz", + correct: 15, + position: 6, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "07.10.2025", + }, + }, + { + date: "07.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYlFTLlJHZuEWM3MTL6JHcuAjL04iMuMTMuADOy0ieyFWazVmckhSI", + value: "!(dresiarz-280.13.2.4.0.prz-371a.dre-1ea)!", + result: { + word: "dresiarz", + correct: 13, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "07.10.2025", + }, + }, + { + date: "07.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhVWMtUmck5CNmFTLkl3duAjLz4iMuITMuADOy0ieyFWazVmckhSI", + value: "!(dresiarz-280.12.2.3.0.wyd-1f4.dre-1ea)!", + result: { + word: "dresiarz", + correct: 12, + position: 2, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "07.10.2025", + }, + }, + { + date: "07.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhVWMtUmck5yNyETLkFmcuMjYy0SYydmL3QjMto2b35yM5gTYx0ieyBnLw4iNx4yMugTMuADOy0ieyFWazVmckhSI", + value: + "!(dresiarz-280.18.3.16.0.prz-1a893.woj-247.gra-2b3.rad-127.dre-1ea)!", + result: { + word: "dresiarz", + correct: 18, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "07.10.2025", + }, + }, + { + date: "07.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhVWMtUmcuUzMtwWYukzYtUWak5SO0ITLk9WbuAjL54CNugTMuADOy0ieyFWazVmckhSI", + value: "!(dresiarz-280.18.4.9.0.mod-249.die-c9.al-35.re-1ea)!", + result: { + word: "dresiarz", + correct: 18, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "07.10.2025", + }, + }, + { + date: "07.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYlFTLlJHZuYTNjFTLll2duEWMyUTL69GcuAjL34SNuMTMuADOy0ieyFWazVmckhSI", + value: "!(dresiarz-280.13.5.7.0.poz-521a.wie-1c56.dre-1ea)!", + result: { + word: "dresiarz", + correct: 13, + position: 5, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "07.10.2025", + }, + }, + { + date: "07.10.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYlFTLlJHZuYGMzETLkFmbuAjL14iMuMTMuADOy0ieyFWazVmckhSI", + value: "!(dresiarz-280.13.2.5.0.nad-130f.dre-1ea)!", + result: { + word: "dresiarz", + correct: 13, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "07.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/fajne-27-11-2025-flag-pl-diffle-difflepl-grywebowe-27-liter-w-3-slowach-large-gr" +] = [ + { + date: "27.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN5UTLyFmYuEmMh1CbhtmLlRjMtIHaj5CMuMTMuIjLyEjLxMzMt42bpJXYihSI", + value: "!(barion-331.12.2.13.0.chr-24e.kal-a2a.bar-594)!", + result: { + word: "barion", + correct: 12, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "27.11.2025", + }, + }, + { + date: "27.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN5UTLyFmYuQmMz0CboNmLmJzYuEWN30ichJmLkVWOtM3br5CMuITMuEjLwIjLxMzMt42bpJXYihSI", + value: "!(barion-331.20.1.12.0.kos-9ed.bar-75a.c2f.chl-32d.bar-594)!", + result: { + word: "barion", + correct: 20, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "27.11.2025", + }, + }, + { + date: "27.11.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTO10ichJmLjJWLpJXYuE2Mx0SbhJnL0EWNtonc0VWau5CMuETMuQjL3EjLxMzMt42bpJXYihSI", + value: "!(barion-331.17.4.11.0.nietrz-5a4.ram-13a.ari-bc.bar-594)!", + result: { + word: "barion", + correct: 17, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "27.11.2025", + }, + }, + { + date: "27.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0kTNtIXYi5CZkJTLhR3cuY2N30ibhtmLmJmMtUHaj5CMuETMuIjL2EjLxMzMt42bpJXYihSI", + value: "!(barion-331.16.2.11.0.chu-2bf.kan-77f.sta-2dd.bar-594)!", + result: { + word: "barion", + correct: 16, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "27.11.2025", + }, + }, + { + date: "27.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN5UTLyFmYuMmYtkmch5yNxUTMtIXYr5SYxczMtoncw5CMuETMuIjL2EjLxMzMt42bpJXYihSI", + value: "!(barion-331.16.2.11.0.prz-371a.kar-1517.ari-bc.bar-594)!", + result: { + word: "barion", + correct: 16, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "27.11.2025", + }, + }, + { + date: "27.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0kTNtIXYi5yYi1SayFmL3YGNx0ichtmLkJDNtIHcz5CMuATMuIjL5EjLxMzMt42bpJXYihSI", + value: "!(barion-331.19.2.10.0.spr-42d.kar-14f7.ari-bc.bar-594)!", + result: { + word: "barion", + correct: 19, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "27.11.2025", + }, + }, + { + date: "27.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN5UTLyFmYuMmYtkmch5yNy0ya1VmLw4SNuAjL2EjLxMzMt42bpJXYihSI", + value: "!(barion-331.16.0.5.0.euk-27.ari-bc.bar-594)!", + result: { + word: "barion", + correct: 16, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "27.11.2025", + }, + }, + { + date: "27.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTO10ichJmLyMWMtIXYn5yN0ITLq92duMTO4EWMtoncw5CMucTMuMjL0EjLxMzMt42bpJXYihSI", + value: "!(barion-331.14.3.17.0.prz-1a893.woj-247.gar-1c2.bar-594)!", + result: { + word: "barion", + correct: 14, + position: 3, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "27.11.2025", + }, + }, + { + date: "27.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN5UTLyFmYuYmZt8mch5iYx0ybylmL0ImNtE2dr5CMuITMuUjL2EjLxMzMt42bpJXYihSI", + value: "!(barion-331.16.5.12.0.kwa-6b4.iro-1b.aro-ff.bar-594)!", + result: { + word: "barion", + correct: 16, + position: 5, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "27.11.2025", + }, + }, + { + date: "27.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0kTNtIXYi5yYi1SayFmLiFTLvJXauMmNh1SYydmLw4yMuQjL2EjLxMzMt42bpJXYihSI", + value: "!(barion-331.16.4.3.0.gra-a6c.iro-1b.ari-bc.bar-594)!", + result: { + word: "barion", + correct: 16, + position: 4, + incorrect: 3, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "27.11.2025", + }, + }, + { + date: "27.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0kTNtIXYi5yYi1SayFmLhNWNtIXYt5iYiFTLyF2cuQjZx0CZ5dnLw4COuEjLyIjLxMzMt42bpJXYihSI", + value: "!(barion-331.22.1.8.0.wyd-1f4.sar-1bb.mar-5ca.ari-bc.bar-594)!", + result: { + word: "barion", + correct: 22, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "27.11.2025", + }, + }, + { + date: "27.11.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCN5UTLyFmYuYmZt8mch5COjFWNtoncw5SMuITMuIjLzEjLxMzMt42bpJXYihSI", + value: "!(barion-331.13.2.12.1.prz-5ac8.aro-ff.bar-594)!", + result: { + word: "barion", + correct: 13, + position: 2, + incorrect: 12, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 27, + date: "27.11.2025", + }, + }, + { + date: "27.11.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0kTNtIXYi5yYi1SayFmLjZWLyd2buYjZx0CZ1BnL2EmYtUWat5CMuUTMuQjL3EjLxMzMt42bpJXYihSI", + value: "!(barion-331.17.4.15.0.mie-ba6.pud-1f6.ogr-fc.ari-bc.bar-594)!", + result: { + word: "barion", + correct: 17, + position: 4, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "27.11.2025", + }, + }, + { + date: "27.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0kTNtIXYi5SO0ITLk9WbuAjL34yMugjLxMzMt42bpJXYihSI", + value: "!(barion-331.8.3.7.0.mod-249.bar-594)!", + result: { + word: "barion", + correct: 8, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "27.11.2025", + }, + }, + { + date: "27.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTO10ichJmL4kTLjFGduMDNz0SauFmL0IWMtw2bt5SYxITNto3bw5CMuITMuQjL4EjLxMzMt42bpJXYihSI", + value: "!(barion-331.18.4.12.0.poz-521a.mol-1b4.ani-343.tac-98.bar-594)!", + result: { + word: "barion", + correct: 18, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "27.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/fajne-slowo-lamie-tyle-zasad-jezyka-angielskiego-ze-hej-lubie-takie-jest-zarabis" +] = [ + { + date: "01.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNy0ibhtmLwEWLv5WYuATLvJ3ZuU2MtI3b35SMtsWdq5CNh1SYydmLiVWLhJHcugTZy0SYoNmLwMTLv1WYuAjL3EjLxEjL3IjLx0ybvJXYn5WYrhSI", + value: + "!(kangaroo-1.27.11.17.0.amo-30.cha-2e8.pra-eb.gra-a4.juk-1.wor-3e.gro-0.ano-a0.kan-24)!", + result: { + word: "kangaroo", + correct: 27, + position: 11, + incorrect: 17, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 55, + date: "01.01.2025", + }, + }, + { + date: "01.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQjMt4WYr5CO50yY1NnLkNWLyF2ZugTNy0ybyBnLw4SOuEjL1EjLx0ybvJXYn5WYrhSI", + value: "!(kangaroo-1.15.1.9.0.pro-258.gar-cd.suc-98.kan-24)!", + result: { + word: "kangaroo", + correct: 15, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "01.01.2025", + }, + }, + { + date: "01.01.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0ITLuF2auEWNx0yboNmL10yZvJmLw0yZpZmLmFTLnV3cuIjNt0WYn5CMuITMuMjLxIjLx0ybvJXYn5WYrhSI", + value: "!(kangaroo-1.21.3.12.0.gam-62.sug-1f.fig-0.bog-5.cho-15a.kan-24)!", + result: { + word: "kangaroo", + correct: 21, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "01.01.2025", + }, + }, + { + date: "01.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNy0ibhtmLyUTMtEmcn5iMz0ybuVmLkRWLulGcuAjZtg2Yz4CNz0ybvJnL30ybv5mLlJTLu92duUjMt8Gbj5CMuMTMugjLzIjLx0ybvJXYn5WYrhSI", + value: + "!(kangaroo-1.23.8.13.0.clo-25.won-2e.noo-7.roo-34.3ch-f0.pin-dd.eno-32.gra-152.kan-24)!", + result: { + word: "kangaroo", + correct: 23, + position: 8, + incorrect: 13, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 44, + date: "01.01.2025", + }, + }, + { + date: "01.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNy0ibhtmLw0iZhdmLkV2Ntg2Yz4SNlFTLhJnYuEmMy0SYoNmLhZTMtEGbw5yY1ITLuFWbuIzMtMXdh5CMucTMuIjLyIjLx0ybvJXYn5WYrhSI", + value: + "!(kangaroo-1.22.2.17.0.aus-32.man-25c.pla-16a.cha-22a.bra-1e5.3ch-7ed.gaf-0.kan-24)!", + result: { + word: "kangaroo", + correct: 22, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 41, + date: "01.01.2025", + }, + }, + { + date: "01.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0ITLuF2auQ2MtcWYy5yYzQTLhh2YuUWMx0icvRnLw4COuUjL3EjLx0ybvJXYn5WYrhSI", + value: "!(kangaroo-1.17.5.8.0.tor-11e.cha-43c.rag-3d.kan-24)!", + result: { + word: "kangaroo", + correct: 17, + position: 5, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "01.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/fajnie-mi-sie-zgralo-przedostatnie-z-ostatnim-wink-26-11-2025-diffle-difflepl-gr" +] = [ + { + date: "26.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhJTMtwWZj5SYlNTLql3duEzMtUWai5iYllTLz92auAjLxEjL14yMx4CMzMTL0FmYpxWZjhSI", + value: "!(celibat-330.13.5.11.0.kos-9eb.bie-31.wyj-3ea.cel-12a)!", + result: { + word: "celibat", + correct: 13, + position: 5, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "26.11.2025", + }, + }, + { + date: "26.11.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYyEjLyITLsVmLyUWMtwGaj5yN1QTLvBXduAjLyEjLz4SOx4CMzMTL0FmYpxWZjhSI", + value: "!(celibat-330.19.3.12.0.upo-457.chl-1e2.el-22.12a)!", + result: { + word: "celibat", + correct: 19, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "26.11.2025", + }, + }, + { + date: "26.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmMx0CbuQjNtIXZj5iZx0yYhZmL0UWMtUXbz5CMukjLz4iNx4CMzMTL0FmYpxWZjhSI", + value: "!(celibat-330.16.3.9.0.smu-1e4.fac-1f.cer-64.l-12a)!", + result: { + word: "celibat", + correct: 16, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "26.11.2025", + }, + }, + { + date: "26.11.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYyETLsVmL3kjMtUHaj5CNhVTL6JHdllmbuAjL1EjLz4SMx4CMzMTL0FmYpxWZjhSI", + value: "!(celibat-330.11.3.15.0.nietrz-5a4.chu-297.el-12a)!", + result: { + word: "celibat", + correct: 11, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "26.11.2025", + }, + }, + { + date: "26.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmMx0Cbl5iZx0Ccp5iZiJTL1h2YuAjLxEjLw4yMx4CMzMTL0FmYpxWZjhSI", + value: "!(celibat-330.13.0.11.0.chu-2bf.ip-1f.el-12a)!", + result: { + word: "celibat", + correct: 13, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "26.11.2025", + }, + }, + { + date: "26.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmMx0Cbl5yMmFTLsh2YugTNtkmY15CZyQTLyB3cuAjLzEjL24CNx4CMzMTL0FmYpxWZjhSI", + value: "!(celibat-330.14.6.13.0.spr-42d.ubi-58.chl-1f3.el-12a)!", + result: { + word: "celibat", + correct: 14, + position: 6, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "26.11.2025", + }, + }, + { + date: "26.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYyETLsV2YuUGNx0SasVmLjZTYtEmcn5CMuMjLz4iMx4CMzMTL0FmYpxWZjhSI", + value: "!(celibat-330.12.3.3.0.gra-a6c.eli-14e.cel-12a)!", + result: { + word: "celibat", + correct: 12, + position: 3, + incorrect: 3, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "26.11.2025", + }, + }, + { + date: "26.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYyETLsV2YuY2M30Sa6RmL3ITLrVXZuAjLwEjLy4CNx4CMzMTL0FmYpxWZjhSI", + value: "!(celibat-330.14.2.10.0.euk-27.dzi-73f.cel-12a)!", + result: { + word: "celibat", + correct: 14, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "26.11.2025", + }, + }, + { + date: "26.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYyETLsV2YuczNtwGdh5CNiZTLhd3auAjLwEjL34SMx4CMzMTL0FmYpxWZjhSI", + value: "!(celibat-330.11.7.10.0.kwa-6b4.atl-77.cel-12a)!", + result: { + word: "celibat", + correct: 11, + position: 7, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "26.11.2025", + }, + }, + { + date: "26.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmMx0CblNmL20yYpxmLzkDOhFTL6JHcuAjLxEjL04SNx4CMzMTL0FmYpxWZjhSI", + value: "!(celibat-330.15.4.11.0.prz-1a893.lic-6.cel-12a)!", + result: { + word: "celibat", + correct: 15, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "26.11.2025", + }, + }, + { + date: "26.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYyEjLhFTMtwWZj5SYk1SZsVmLygjMtUGbw5CNmFTLkl3duEjL1EjLy4SMy4CMzMTL0FmYpxWZjhSI", + value: "!(celibat-330.21.2.15.1.wyd-1f4.ple-282.ele-da.cel-11a.12a)!", + result: { + word: "celibat", + correct: 21, + position: 2, + incorrect: 15, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 38, + date: "26.11.2025", + }, + }, + { + date: "26.11.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmMx0CblNmL3gTMtIWY05SYyETLslmYuQTY10ieyRXZp5mLw4yMx4SMx4yMx4CMzMTL0FmYpxWZjhSI", + value: "!(celibat-330.13.11.13.0.nietrz-5a4.bil-12a.tab-187.cel-12a)!", + result: { + word: "celibat", + correct: 13, + position: 11, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "26.11.2025", + }, + }, + { + date: "26.11.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmMx0CblNmL2EmYtUWat5CMugjLy4SMx4CMzMTL0FmYpxWZjhSI", + value: "!(celibat-330.11.2.8.0.mie-ba6.cel-12a)!", + result: { + word: "celibat", + correct: 11, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "26.11.2025", + }, + }, + { + date: "26.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYyETLsV2YuEzMtUWai5SYxITNto3bw5CMugjL04CMx4CMzMTL0FmYpxWZjhSI", + value: "!(celibat-330.10.4.8.0.poz-521a.bie-31.cel-12a)!", + result: { + word: "celibat", + correct: 10, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "26.11.2025", + }, + }, + { + date: "26.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmMx0CblNmLlRTMtkGbl5SYxczMtoncw5CMucjLy4CNx4CMzMTL0FmYpxWZjhSI", + value: "!(celibat-330.14.2.7.0.prz-371a.eli-14e.cel-12a)!", + result: { + word: "celibat", + correct: 14, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "26.11.2025", + }, + }, + { + date: "26.11.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmMx0CblNmLiFGNtIXaw5CMucjLy4CMx4CMzMTL0FmYpxWZjhSI", + value: "!(celibat-330.10.2.7.0.pir-4ab.cel-12a)!", + result: { + word: "celibat", + correct: 10, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "26.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ha-ha-trzy-ostatnie-slowa-to-jest-zoto-kazde-pasuje-do-tego-co-ta-gra-mi-zrobila" +] = [ + { + date: "18.12.2024", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5EDNukTOh5CZkFTLu92YucTOtMWak5SZl1ybwNnL0cjMtEWZy5CMuMTMuIjLyMjLzUzMt42bpNXdm52bjhSI", + value: "!(confusion-353.32.2.13.0.rea-274.spo-ee.dic-97.con-1dd.a99.419)!", + result: { + word: "confusion", + correct: 32, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 47, + date: "18.12.2024", + }, + }, + { + date: "18.12.2024", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOxQTLu5CZtY2bj5SOx0yY1ZmLw4SNuEjL2EjLzUzMt42bpNXdm52bjhSI", + value: "!(confusion-353.16.1.5.0.fuc-19.cof-d.n-419)!", + result: { + word: "confusion", + correct: 16, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "18.12.2024", + }, + }, + { + date: "18.12.2024", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTM04CMzETLu92YuMTLp5mLlZTLpJ3buUjYx0SblRmLw4COuAjL4IjLzUzMt42bpNXdm52bjhSI", + value: "!(confusion-353.28.0.8.0.dem-1b5.ori-6e.ni-3.con-130.419)!", + result: { + word: "confusion", + correct: 28, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "18.12.2024", + }, + }, + { + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5EDNt4mLzAzMtU3bukDOtUHaj5iM20SbhdmLw4yNuAjL4EjLzUzMt42bpNXdm52bjhSI", + value: "!(confusion-353.18.0.7.0.gam-62.chu-89.ou-303.n-419)!", + result: { + word: "confusion", + correct: 18, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + }, + }, + { + date: "18.12.2024", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5EDNt42bj5CO3ITLm5WaugzMtMXdm5SMtk2c15iMz0yc1FmLw4COuAjL5IjLzUzMt42bpNXdm52bjhSI", + value: "!(confusion-353.29.0.8.0.aus-32.usi-1.fus-38.inf-278.con-419)!", + result: { + word: "confusion", + correct: 29, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "18.12.2024", + }, + }, + { + date: "18.12.2024", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTM00ibvNmLx0ib1hmL4MTLzVnZuMTY10ycp1mLyMWMtMXZk5CMuITMuEjL1IjLzUzMt42bpNXdm52bjhSI", + value: "!(confusion-353.25.1.12.0.des-1c2.mis-5a3.fus-38.hun-1.con-419)!", + result: { + word: "confusion", + correct: 25, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "18.12.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/hmm-fuks-03-11-2025-flag-pl-diffle-difflepl-22-litery-w-3-slowach-large-green-ci" +] = [ + { + date: "03.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSN2UWMtIWY65iZjJTLjFmYuEjN1QTMtoncw5CMukjLz4CMx4yNwMTLrVmY1gTJ0MUJ6hSI", + value: "!(ząbek-307.10.3.9.0.prz-14561.bac-2cf.zab-1e65)!", + result: { + word: "ząbek", + correct: 10, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "03.11.2025", + }, + }, + { + date: "03.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1YTZx0iYhpnL1QWNtUWaz5yM0MTMtwWe35CMuETMuIjL44yNwMTLrVmY1gTJ0MUJ6hSI", + value: "!(ząbek-307.8.2.11.0.wyl-1343.sie-5d5.zab-1e65)!", + result: { + word: "ząbek", + correct: 8, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "03.11.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1YTZx0iYhpnL5EWY30ieyBnLw4yNuEjL34yNwMTLrVmY1gTJ0MUJ6hSI", + value: "!(ząbek-307.7.1.7.0.prz-7aa9.zab-1e65)!", + result: { + word: "ząbek", + correct: 7, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + }, + }, + { + date: "03.11.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1YTZx4SO2UWMtIWYugTOt8me65CMuYjLx4SMx4yNwMTLrVmY1gTJ0MUJ6hSI", + value: "!(ząbek-307.11.1.6.0.zzo-98.ab-1e69.1e65)!", + result: { + word: "ząbek", + correct: 11, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "03.11.2025", + }, + }, + { + date: "03.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjNlFTLiFmeuQWYtEmey5SN50CbrNnL0QTMtkHbw5iZiJTL1h2YuAjL5EjLx4iMx4yNwMTLrVmY1gTJ0MUJ6hSI", + value: "!(ząbek-307.12.1.19.0.chu-2bf.ply-144.skl-95.rza-ad.zab-1e65)!", + result: { + word: "ząbek", + correct: 12, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "03.11.2025", + }, + }, + { + date: "03.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSN2UWMtIWYuIDNx0iekpnLihDOtonc05CZ4ETLwNXYuAjLwIjLx4CMx4yNwMTLrVmY1gTJ0MUJ6hSI", + value: "!(ząbek-307.10.1.20.0.asp-18d.trz-88b.zdz-142.ab-1e65)!", + result: { + word: "ząbek", + correct: 10, + position: 1, + incorrect: 20, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "03.11.2025", + }, + }, + { + date: "03.11.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjNlFTLiFmeuQWOy0SdoNmL2QTZtA3c35CMukTMuAjL34yNwMTLrVmY1gTJ0MUJ6hSI", + value: "!(ząbek-307.7.0.19.0.wsp-e46.chu-29d.zab-1e65)!", + result: { + word: "ząbek", + correct: 7, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "03.11.2025", + }, + }, + { + date: "03.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1YTZx0iYh5CO50yb6pnLw4SNuEjL34yNwMTLrVmY1gTJ0MUJ6hSI", + value: "!(ząbek-307.7.1.5.0.zzo-98.ab-1e65)!", + result: { + word: "ząbek", + correct: 7, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "03.11.2025", + }, + }, + { + date: "03.11.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1YTZx0iYhpnL0MzMx0Cb5dnLw4iNuEjL34yNwMTLrVmY1gTJ0MUJ6hSI", + value: "!(ząbek-307.7.1.6.0.wyl-1334.zab-1e65)!", + result: { + word: "ząbek", + correct: 7, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "03.11.2025", + }, + }, + { + date: "03.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjNlFTLiFmL1gTLvpneuUTNy0iavdnLzkDOhFTL6JHcuAjL0IjLx4CMx4yNwMTLrVmY1gTJ0MUJ6hSI", + value: "!(ząbek-307.10.1.24.0.prz-1a893.woj-255.zzo-85.ab-1e65)!", + result: { + word: "ząbek", + correct: 10, + position: 1, + incorrect: 24, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "03.11.2025", + }, + }, + { + date: "03.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjNlFTLiFmeuQTM10SZstmLwUDNtsWYi5iMiZWMtIWY65COxgTLvJ3ZuIzMzETLzl3duAjL5EjLy4SMx4yNwMTLrVmY1gTJ0MUJ6hSI", + value: + "!(ząbek-307.11.2.19.0.wys-1332.gro-818.zab-1fb2.bak-450.kle-514.zab-1e65)!", + result: { + word: "ząbek", + correct: 11, + position: 2, + incorrect: 19, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "03.11.2025", + }, + }, + { + date: "03.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjNlFTLiFmeuMTOtMWZq5SO1YTMtwWY65CMuITMuAjL34yNwMTLrVmY1gTJ0MUJ6hSI", + value: "!(ząbek-307.7.0.12.0.zal-1659.jec-93.zab-1e65)!", + result: { + word: "ząbek", + correct: 7, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "03.11.2025", + }, + }, + { + date: "03.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjNlFTLiFmL2MjMtIWZ65CNx0SdlZmL2kjNtw2b65CMuYTMuEjL44yNwMTLrVmY1gTJ0MUJ6hSI", + value: "!(ząbek-307.8.1.16.0.zol-696.feu-14.zeb-236.ab-1e65)!", + result: { + word: "ząbek", + correct: 8, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "03.11.2025", + }, + }, + { + date: "03.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1YTZx0iYh5CO50yb6pnLw4SNuEjL34yNwMTLrVmY1gTJ0MUJ6hSI", + value: "!(ząbek-307.7.1.5.0.zzo-98.ab-1e65)!", + result: { + word: "ząbek", + correct: 7, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "03.11.2025", + }, + }, + { + date: "03.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSN2UWMtIWYuIjN00SYy5SMkFTLhlmeuMWYiRTLk9GcuAjLxEjLx4yMx4yNwMTLrVmY1gTJ0MUJ6hSI", + value: "!(ząbek-307.13.1.11.0.pod-4bac.zia-1d1.ra-462.ab-1e65)!", + result: { + word: "ząbek", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "03.11.2025", + }, + }, + { + date: "03.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUjNlFTLiFmeuYmNz0iel1mL1cTLsp3YuQWM3MTL6JHcuAjL3EjLw4CMx4yNwMTLrVmY1gTJ0MUJ6hSI", + value: "!(ząbek-307.10.0.17.0.prz-371d.czl-75.mez-36f.zab-1e65)!", + result: { + word: "ząbek", + correct: 10, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "03.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/i-kolejne-slowo-ktore-sie-dobrze-kojarzy-21-12-2024-diffle-diffleen-grywebowe-26" +] = [ + { + date: "21.12.2024", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpAzNtInb15SYzETLhVmcuUWMtEWZu5iZy0CblNnLw4COuIjL2EjL2UzMtwWYlJnb1hSI", + value: "!(unreal-356.16.2.8.0.sel-2f.nea-1e.rea-13a.unr-70)!", + result: { + word: "unreal", + correct: 16, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "21.12.2024", + }, + }, + { + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3QTL65SO4EWLhJ3ZuAjLw4CMuQTMucDMz0yYllmbhpncnhSI", + value: "!(grzaniec-307.14.0.0.0.gra-a89.z-47)!", + result: { + word: "grzaniec", + correct: 14, + position: 0, + incorrect: 0, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + }, + }, + { + date: "21.12.2024", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM30icuVnL20SdyBnLw4CNuIjLwEjL2UzMtwWYlJnb1hSI", + value: "!(unreal-356.10.2.4.0.pru-6.unr-70)!", + result: { + word: "unreal", + correct: 10, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "21.12.2024", + }, + }, + { + date: "21.12.2024", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM30icuYzN20CZuVnLw0ic1FmLzMzMtEmcn5CMuATMuEjL2EjL2UzMtwWYlJnb1hSI", + value: "!(unreal-356.16.1.10.0.gra-333.aur-0.und-676.r-70)!", + result: { + word: "unreal", + correct: 16, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "21.12.2024", + }, + }, + { + date: "21.12.2024", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwcTLy5WduYjMtUncw5yN30Sdv1mLjhTLuV3cukTMtMWdm5CMuITMuIjL2EjL2UzMtwWYlJnb1hSI", + value: "!(unreal-356.16.2.12.0.fuc-19.sun-8c.mou-77.pru-26.unr-70)!", + result: { + word: "unreal", + correct: 16, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "21.12.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ja-pierdziele-ale-mnie-przeoralo-29-11-2025-flag-pl-diffle-difflepl-grywebowe-56" +] = [ + { + date: "29.11.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlFTLjxGcuMjNts2bj5CM40yYl1mLhVzMtknLxIWNtUnLlZWNx0SYuYWO30ybsBnL2QTZtA3c35CMuAjMuIjL0MjLzMzMtk3dvl2YygTJ1MUJwhSI", + value: + "!(płciowy-333.34.2.20.0.wsp-e46.plo-79f.a-15fe.u-5b1.y-35a.mec-80.cok-63.plc-1e)!", + result: { + word: "płciowy", + correct: 34, + position: 2, + incorrect: 20, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 56, + date: "29.11.2025", + }, + }, + { + date: "29.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlFTLj5SY1MTL5xGcuImNz0CbwVnLzQzMx0Cb5dnLw4COuMjL4EjLzMzMtk3dvl2YygTJ1MUJwhSI", + value: "!(płciowy-333.18.3.8.0.wyl-1343.upl-36b.ply-35a.c-1e)!", + result: { + word: "płciowy", + correct: 18, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "29.11.2025", + }, + }, + { + date: "29.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlFTLj5CMlRTL1xGcuQGOx0CczFmLw4SOuAjL1EjLzMzMtk3dvl2YygTJ1MUJwhSI", + value: "!(płciowy-333.15.0.9.0.asp-18d.plu-4e0.c-1e)!", + result: { + word: "płciowy", + correct: 15, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "29.11.2025", + }, + }, + { + date: "29.11.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlFTLjxGcuYGNk1ycvtmLw4iNuEjLxEjLzMzMtk3dvl2YygTJ1MUJwhSI", + value: "!(płciowy-333.11.1.6.0.kos-d4f.plc-1e)!", + result: { + word: "płciowy", + correct: 11, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "29.11.2025", + }, + }, + { + date: "29.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZx0yYs5iZ3MTMtM2buQWNi1SZpBnLw4SOuIjL0EjLzMzMtk3dvl2YygTJ1MUJwhSI", + value: "!(płciowy-333.14.2.9.0.pie-b5d.oc-137f.lc-1e)!", + result: { + word: "płciowy", + correct: 14, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "29.11.2025", + }, + }, + { + date: "29.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZx0yYs5yMwITLuFGcuITNx0CbnlmLyMzMx0yc5dnLw4yNuMjL1EjLzMzMtk3dvl2YygTJ1MUJwhSI", + value: "!(płciowy-333.15.3.7.0.wys-1332.igl-152.pan-203.lc-1e)!", + result: { + word: "płciowy", + correct: 15, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "29.11.2025", + }, + }, + { + date: "29.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlFTLjxmLwcTMtwWew5CM2ETL6lHbuIjN00CajNjLxETMtknL2UDOt8mLzcTNtUnL0QDMx0SYuQjMz0ybs5COxQTLzlGcuQzYtkWbzVWau5SMuQjMuEjL3MjLzMzMtk3dvl2YygTJ1MUJwhSI", + value: + "!(płciowy-333.37.1.24.1.niesmi-c4.pis-418.lo-324.a-1044.u-573.o-856.y-111.3ch-462.lyz-160.pyl-170.lc-1e)!", + result: { + word: "płciowy", + correct: 37, + position: 1, + incorrect: 24, + knownIncorrect: 1, + totalWords: 11, + totalLetters: 62, + date: "29.11.2025", + }, + }, + { + date: "29.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUWMtMmLzMmMt8mLzYjNx0SYsBnLjZWL1xGZugTOt8me65CMuUTMuIjL5EjLzMzMtk3dvl2YygTJ1MUJwhSI", + value: "!(płciowy-333.19.2.15.0.zzo-98.dlu-fc.pla-1663.o-2c3.c-1e)!", + result: { + word: "płciowy", + correct: 19, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "29.11.2025", + }, + }, + { + date: "29.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUWMtMmLxIWNtUnLjZWMtkHbuYWY1cTMtoncw5SO1YTMtwWY65CMuITMuIjLxIjLzMzMtk3dvl2YygTJ1MUJwhSI", + value: "!(płciowy-333.21.2.12.0.zal-1659.prz-175af.ly-1fc.u-5b1.c-1e)!", + result: { + word: "płciowy", + correct: 21, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "29.11.2025", + }, + }, + { + date: "29.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlFTLjxGcucjNtMWZ35SNm1ybp5iN1czMtoncw5CMuQTMuEjL2EjLzMzMtk3dvl2YygTJ1MUJwhSI", + value: "!(płciowy-333.16.1.14.0.prz-3756.io-f5.wec-67.plc-1e)!", + result: { + word: "płciowy", + correct: 16, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "29.11.2025", + }, + }, + { + date: "29.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlFTLj5yN10SeuATZ00SdsBnL5cTL1JHduUTNx0SZsVnL2ETLw9GbugTOt8me65CNuEjMuIjL1IjLzMzMtk3dvl2YygTJ1MUJwhSI", + value: + "!(płciowy-333.25.2.21.4.zzo-98.lop-16.ule-155.tru-79.plu-4e0.y-57.c-1e)!", + result: { + word: "płciowy", + correct: 25, + position: 2, + incorrect: 21, + knownIncorrect: 4, + totalWords: 7, + totalLetters: 48, + date: "29.11.2025", + }, + }, + { + date: "29.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZx0yYsBnL0UzNtw2b65SN1ITLq92duMTO4EWMtoncw5CMuAjMuMjL0EjLzMzMtk3dvl2YygTJ1MUJwhSI", + value: "!(płciowy-333.14.3.20.0.prz-1a893.woj-255.zol-754.plc-1e)!", + result: { + word: "płciowy", + correct: 14, + position: 3, + incorrect: 20, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "29.11.2025", + }, + }, + { + date: "29.11.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZx0yYuMzYy0ybsBnL2EmYtUWat5SMuITMuMjL1EjLzMzMtk3dvl2YygTJ1MUJwhSI", + value: "!(płciowy-333.15.3.12.1.mie-ba6.plo-2c3.c-1e)!", + result: { + word: "płciowy", + correct: 15, + position: 3, + incorrect: 12, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 30, + date: "29.11.2025", + }, + }, + { + date: "29.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlFTLj5yMjJTLvxmLzQjY00CZvBnLw4yNuIjL2EjLzMzMtk3dvl2YygTJ1MUJwhSI", + value: "!(płciowy-333.16.2.7.0.pod-4b43.lo-2c3.c-1e)!", + result: { + word: "płciowy", + correct: 16, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "29.11.2025", + }, + }, + { + date: "29.11.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZx0yYugzMy0SesBnL0MzMx0Cb5dnLw4iNuQjL0EjLzMzMtk3dvl2YygTJ1MUJwhSI", + value: "!(płciowy-333.14.4.6.0.wyl-1334.ply-238.c-1e)!", + result: { + word: "płciowy", + correct: 14, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "29.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ja-to-lubie-komplikowac-29-12-2024-diffle-diffleen-grywebowe-39-letters-in-6-wor" +] = [ + { + date: "29.12.2024", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNy0SYr5COz0iZ15iYiFTLhBnLzczMtEGduAjMtQXYugzNtcWaz5CMuQTMuAjL1IjL0YzMtIXZ0F2azhSI", + value: "!(skater-364.25.0.14.0.sig-78.at-20.ta-373.pa-1bb.uf-38.ka-26)!", + result: { + word: "skater", + correct: 25, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "29.12.2024", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNy0SYrNnLzITL09WbuAjL44SMukjL0YzMtIXZ0F2azhSI", + value: "!(skater-364.9.1.8.0.mot-23.ska-26)!", + result: { + word: "skater", + correct: 9, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + }, + }, + { + date: "29.12.2024", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2ITLht2cukTMtsWY05iMz0SZvBnLw4SNuQjLwEjL0YzMtIXZ0F2azhSI", + value: "!(skater-364.10.4.5.0.poe-32.tak-19.ska-26)!", + result: { + word: "skater", + correct: 10, + position: 4, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "29.12.2024", + }, + }, + { + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2ITLht2cuYTL0F2buU2MtQXY35SOtQXYl5SNz0CdhJnLmNTL0FGaukDNy0ibhBnL3IWLsFmYuIjNt0WYn5CMuETMuAjL2MjL0YzMtIXZ0F2azhSI", + value: + "!(skater-364.36.0.11.0.gam-62.bal-b7.pan-249.hat-3f.rat-35.eat-9.wat-3e.oat-6.ska-26)!", + result: { + word: "skater", + correct: 36, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 47, + }, + }, + { + date: "29.12.2024", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNy0SYrNnLxETLlhGduYzMtQXYs5SZz0CdhdnL4ETNt8mcw5CMuETMuIjL5EjL0YzMtIXZ0F2azhSI", + value: "!(skater-364.19.2.11.0.pro-518.wat-3e.lat-36.the-11.ska-26)!", + result: { + word: "skater", + correct: 19, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "29.12.2024", + }, + }, + { + date: "29.12.2024", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNy4COy4yMy0SYr5yNi1SYsNnLkRWLzFGcuUTOtEWZ05iZl1yb4VmLw4SOuQjL2IjL0YzMtIXZ0F2azhSI", + value: "!(skater-364.26.4.9.0.exo-ef.tea-95.pas-dd.sla-b7.ka-23.28.26)!", + result: { + word: "skater", + correct: 26, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "29.12.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/jak-tak-mozna-to-az-nieludzkie-31-12-2024-diffle-diffleen-grywebowe-62-letters-i" +] = [ + { + date: "31.12.2024", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQmNtgmbp5CNlFTLo5WduETLtVHaukTO04yNjdTLoN2MuETLhVnaugDOy0CajNjL3QWMtkWdx5SOz0yZpJmLzMTNtMXak5SO5ETLlhGduAjLzIjLy4yNz4iN2MTLuFWb1hmbphSI", + value: + "!(inhuman-366.37.2.23.0.the-199.dis-533.big-39.qui-1d7.3ch-288.jua-1.3ch-7c7.499.hum-1.unh-1e4.inh-6d)!", + result: { + word: "inhuman", + correct: 37, + position: 2, + incorrect: 23, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 62, + date: "31.12.2024", + }, + }, + { + date: "31.12.2024", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkZTLo5WaugTL1hGduIzNy0yboNmL0UTLsVnYuYTL25WauAjL0EjLw4CNx4iN2MTLuFWb1hmbphSI", + value: "!(inhuman-366.14.0.14.0.inv-6.bul-54.cho-272.thu-8.inh-6d)!", + result: { + word: "inhuman", + correct: 14, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "31.12.2024", + }, + }, + { + date: "31.12.2024", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZ20CaulmLiJTLulmbuUTNt4WduImMtU3bo5iM3ITLlh2YuAjLxEjLz4iNx4iN2MTLuFWb1hmbphSI", + value: "!(inhuman-366.16.3.11.0.che-272.hou-2b.un-55.nin-2b.inh-6d)!", + result: { + word: "inhuman", + correct: 16, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "31.12.2024", + }, + }, + { + date: "31.12.2024", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkZTLo5WauETOtMXdt5SY00ybulmL5ETLjVnZuAjLzEjLz4yMx4iN2MTLuFWb1hmbphSI", + value: "!(inhuman-366.13.3.13.0.fuc-19.ino-4a.mus-91.inh-6d)!", + result: { + word: "inhuman", + correct: 13, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "31.12.2024", + }, + }, + { + date: "31.12.2024", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkZTLo5WauUjMz0ibh1mL4QjMtkWdx5CMugjLy4SMx4iN2MTLuFWb1hmbphSI", + value: "!(inhuman-366.11.2.8.0.qui-248.man-325.inh-6d)!", + result: { + word: "inhuman", + correct: 11, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "31.12.2024", + }, + }, + { + date: "31.12.2024", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQmNtgmbp5SO20CdpBnL10CbvZmL5EDNtIWdz5SMt0Wdo5CO20yYh1mLyYTLtF2ZuAjL0EjLy4SMy4iN2MTLuFWb1hmbphSI", + value: + "!(inhuman-366.21.2.14.0.gam-62.mac-68.hum-1.sub-419.fol-5.pit-69.inh-6d)!", + result: { + word: "inhuman", + correct: 21, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 37, + date: "31.12.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/jakies-takie-26-12-2024-diffle-diffleen-grywebowe-24-letters-in-4-words-large-gr" +] = [ + { + date: "26.12.2024", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgTLjlmcuEDZtYXak5CO10yYh1mL0gTLjV2cuAjLwEjLz4SMx4SM2MTLlNWayhSI", + value: "!(rice-361.11.3.10.0.sec-84.mac-58.div-d1.ric-8)!", + result: { + word: "rice", + correct: 11, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "26.12.2024", + }, + }, + { + date: "26.12.2024", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOtMWay5iYtMWar5SO00ibpBnLwQTLsF2YuAjL0EjLy4SMx4SM2MTLlNWayhSI", + value: "!(rice-361.11.2.14.0.cal-40.pin-49.kic-b.ric-8)!", + result: { + word: "rice", + correct: 11, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "26.12.2024", + }, + }, + { + date: "26.12.2024", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgTLj5SMz0iYpJnLhRTLvJHZuQ2Ym1SZyBnLyYTLtF2ZuAjLwEjLx4iMx4SM2MTLlNWayhSI", + value: "!(rice-361.12.1.10.0.gam-62.pre-fcd.dro-4a.rib-31.c-8)!", + result: { + word: "rice", + correct: 12, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 23, + date: "26.12.2024", + }, + }, + { + date: "26.12.2024", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOtMWay5SN1MTLoN2MuEWMtMWau5SYtUXZm5CMukjLx4SMx4SM2MTLlNWayhSI", + value: "!(rice-361.11.1.9.0.feu-a.nic-1a.3ch-355.ric-8)!", + result: { + word: "rice", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "26.12.2024", + }, + }, + { + date: "26.12.2024", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK40yYuIWMtYWay5SO30SaydmL3I2MtIXZw5CMukjLw4yMx4SM2MTLlNWayhSI", + value: "!(rice-361.13.0.9.0.per-3b7.gri-79.rif-1b.c-8)!", + result: { + word: "rice", + correct: 13, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "26.12.2024", + }, + }, + { + date: "26.12.2024", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOukTMtMWay5CZm1yYpBnL5ETLjVnZuAjLyEjLy4CMx4SM2MTLlNWyhSI", + value: "!(rXÙKL͌KŒL\u000bŒ‹ŒL‹Œ\u000b™XËLNKœ\u001aXËY™\u000bœšXËLNKŽ\nH", + result: { + word: "rXÙKL͌KŒL\u000bŒ‹ŒL‹Œ\u000b™XËLNKœ\u001aXËY™\u000bœšXËLNKŽ\nH", + correct: null, + position: null, + incorrect: null, + knownIncorrect: null, + totalWords: 0, + totalLetters: null, + date: "26.12.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/kolejny-wkurzajaco-slownik-ewidentnie-ktos-trolluje-02-12-2025-flag-pl-diffle-di" +] = [ + { + date: "02.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLi5iYh1yduMGNtMnLwIWLj9mbugDZ00CduFmLw4COx4CMuUTMuYzMz0CblJ2buhSI", + value: "!(nobel-336.15.0.18.0.ant-4d8.noc-b0.s-4c.w-ab.b-0)!", + result: { + word: "nobel", + correct: 15, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "02.12.2025", + }, + }, + { + date: "02.12.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0iYv5mLkVWOtM3br5CMucjLx4yNuYzMz0CblJ2buhSI", + value: "!(nobel-336.7.1.7.0.kos-9ed.nob-0)!", + result: { + word: "nobel", + correct: 7, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "02.12.2025", + }, + }, + { + date: "02.12.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtI2bu5SY4UWLw9GcuAjLwEjLx4yNuYzMz0CblJ2buhSI", + value: "!(nobel-336.7.1.10.0.pop-e8a.nob-0)!", + result: { + word: "nobel", + correct: 7, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "02.12.2025", + }, + }, + { + date: "02.12.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0iYv5mLkJDNtIHcz5CMukjLx4yNuYzMz0CblJ2buhSI", + value: "!(nobel-336.7.1.9.0.spr-42d.nob-0)!", + result: { + word: "nobel", + correct: 7, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "02.12.2025", + }, + }, + { + date: "02.12.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0iYuIWYtc3buMGZ00ybl5mL3ITLrVXZuAjL54yMuETMuYzMz0CblJ2buhSI", + value: "!(nobel-336.11.3.9.0.euk-27.neo-4dc.ow-ab.b-0)!", + result: { + word: "nobel", + correct: 11, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "02.12.2025", + }, + }, + { + date: "02.12.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLi9mbuY2Mtw2bm5SNyMTLlJHduMTN5UTLk9GcuYmYy0SdoNmLw4SOx4SMuITMuYzMz0CblJ2buhSI", + value: "!(nobel-336.12.1.19.0.chu-2bf.pod-5953.tre-325.fol-3f.nob-0)!", + result: { + word: "nobel", + correct: 12, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "02.12.2025", + }, + }, + { + date: "02.12.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtImL0IWL35CZ00ycuYTLj9mL1gTL0VmbuMmNh1SYydmLw4iMx4SMukTMuYzMz0CblJ2buhSI", + value: "!(nobel-336.19.1.12.0.gra-a6c.net-85.oc-6.s-4d.w-b4.b-0)!", + result: { + word: "nobel", + correct: 19, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "02.12.2025", + }, + }, + { + date: "02.12.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtI2bu5CNiZTLhd3auAjLyEjLx4yNuYzMz0CblJ2buhSI", + value: "!(nobel-336.7.1.12.0.kwa-6b4.nob-0)!", + result: { + word: "nobel", + correct: 7, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "02.12.2025", + }, + }, + { + date: "02.12.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtI2bu5iZjFTLoN2MuQjYt0Wdm5CNtM2buQTY10ieyRXZp5mLw4yNx4SMuMTMuYzMz0CblJ2buhSI", + value: "!(nobel-336.13.1.17.0.nietrz-5a4.oc-4.fum-b4.3ch-1cf.nob-0)!", + result: { + word: "nobel", + correct: 13, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "02.12.2025", + }, + }, + { + date: "02.12.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtI2bu5iNhJWLllWbuAjLwEjLy4yNuYzMz0CblJ2buhSI", + value: "!(nobel-336.7.2.10.0.mie-ba6.nob-0)!", + result: { + word: "nobel", + correct: 7, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "02.12.2025", + }, + }, + { + date: "02.12.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtImLjRTLz5CNtM2bu5yNyETLvB3buQjZx0CZ5dnLw4CNx4iMuQTMuYzMz0CblJ2buhSI", + value: "!(nobel-336.14.2.14.0.wyd-1f4.opo-127.noc-4.s-4c.b-0)!", + result: { + word: "nobel", + correct: 14, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "02.12.2025", + }, + }, + { + date: "02.12.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLi9mbucDNy0iavdnLzkDOhFTL6JHcuAjL2EjLy4yNuYzMz0CblJ2buhSI", + value: "!(nobel-336.7.2.16.0.prz-1a893.woj-247.nob-0)!", + result: { + word: "nobel", + correct: 7, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "02.12.2025", + }, + }, + { + date: "02.12.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLi9mbuUTMtUWbv5SYxITNto3bw5CMugjLy4SOuYzMz0CblJ2buhSI", + value: "!(nobel-336.9.2.8.0.poz-521a.ome-15.nob-0)!", + result: { + word: "nobel", + correct: 9, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "02.12.2025", + }, + }, + { + date: "02.12.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0iYv5mLkFjMtwWZ05CO0UTLllGcuAjLyEjLy4SOuYzMz0CblJ2buhSI", + value: "!(nobel-336.9.2.12.0.pie-548.tel-21d.nob-0)!", + result: { + word: "nobel", + correct: 9, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "02.12.2025", + }, + }, + { + date: "02.12.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLi5iYxETLj5yY00ycv5mLhRzMx0Cc5dnLw4CNx4SMuMTMuYzMz0CblJ2buhSI", + value: "!(nobel-336.13.1.14.0.wyp-134a.nos-4c.c-11b.b-0)!", + result: { + word: "nobel", + correct: 13, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "02.12.2025", + }, + }, + { + date: "02.12.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0iYv5mL5QjMtQ2bt5CMukjLx4yNuYzMz0CblJ2buhSI", + value: "!(nobel-336.7.1.9.0.mod-249.nob-0)!", + result: { + word: "nobel", + correct: 7, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "02.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/latwe-25-11-2025-flag-pl-diffle-difflepl-grywebowe-23-litery-w-2-slowach-large-g" +] = [ + { + date: "25.11.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN2UTLvh2YuQTY10ieyRXZp5mLw4CMx4SMuITMukjMz0ya5JXZs9GajhSI", + value: "!(choleryk-329.12.1.10.0.nietrz-5a4.cho-567)!", + result: { + word: "choleryk", + correct: 12, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "25.11.2025", + }, + }, + { + date: "25.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN2UTLvh2YuIzYz0Sai9mL4MjMts2bk5iYllTLz92auAjL54yMucTMukjMz0ya5JXZs9GajhSI", + value: "!(choleryk-329.17.3.9.0.kos-9eb.dok-238.obi-3c2.cho-567)!", + result: { + word: "choleryk", + correct: 17, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "25.11.2025", + }, + }, + { + date: "25.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjN14SZ4IWLv5iZiJTL1h2YuAjL34CMuYTMukjMz0ya5JXZs9GajhSI", + value: "!(choleryk-329.16.0.7.0.chu-2bf.o-b8e.567)!", + result: { + word: "choleryk", + correct: 16, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "25.11.2025", + }, + }, + { + date: "25.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjN14SO4QTLvh2YuEWM3MTL6JHcuAjL54iMuQTMukjMz0ya5JXZs9GajhSI", + value: "!(choleryk-329.14.2.9.0.prz-371a.cho-489.567)!", + result: { + word: "choleryk", + correct: 14, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "25.11.2025", + }, + }, + { + date: "25.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3YTNt8Gaj5iNxETLlZ2buQmM00icwNnLw4SMx4SMuQTMukjMz0ya5JXZs9GajhSI", + value: "!(choleryk-329.14.1.11.0.spr-42d.ofe-116.cho-567)!", + result: { + word: "choleryk", + correct: 14, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "25.11.2025", + }, + }, + { + date: "25.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3YTNt8Gaj5CN2EWLlR3cuAjL24yMuETMukjMz0ya5JXZs9GajhSI", + value: "!(choleryk-329.11.3.6.0.ste-a64.cho-567)!", + result: { + word: "choleryk", + correct: 11, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "25.11.2025", + }, + }, + { + date: "25.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN2UTLvh2YuYzY50CbvtmL3ITLrVXZuEjL34yMuUTMukjMz0ya5JXZs9GajhSI", + value: "!(choleryk-329.15.3.7.1.euk-27.kol-9c6.cho-567)!", + result: { + word: "choleryk", + correct: 15, + position: 3, + incorrect: 7, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 25, + date: "25.11.2025", + }, + }, + { + date: "25.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjN10yboNmLzkDOhFTL6JHcuAjL34CNuATMukjMz0ya5JXZs9GajhSI", + value: "!(choleryk-329.10.4.7.0.prz-1a893.cho-567)!", + result: { + word: "choleryk", + correct: 10, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "25.11.2025", + }, + }, + { + date: "25.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjN10yboNmL1IjNtUGbr5yY2EWLhJ3ZuAjL04iMuITMukjMz0ya5JXZs9GajhSI", + value: "!(choleryk-329.12.2.4.0.gra-a6c.kle-625.cho-567)!", + result: { + word: "choleryk", + correct: 12, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "25.11.2025", + }, + }, + { + date: "25.11.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjN10yboNmLyMjNtUGbl5CO0UTLllGcuAjL54SMucTMukjMz0ya5JXZs9GajhSI", + value: "!(choleryk-329.17.1.9.0.pie-548.ele-632.cho-567)!", + result: { + word: "choleryk", + correct: 17, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "25.11.2025", + }, + }, + { + date: "25.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3YTNt8Gaj5yNhZTLlx2auYTYtUWbl5SMyETLiVmcuQjZx0CZ5dnLw4yMx4yMukTMukjMz0ya5JXZs9GajhSI", + value: "!(choleryk-329.19.3.13.0.wyd-1f4.reb-121.eme-a6.kle-6a7.cho-567)!", + result: { + word: "choleryk", + correct: 19, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "25.11.2025", + }, + }, + { + date: "25.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN2UTLvh2YuMDZy0SZj9mL3UTLr9mYukDNy0CZv1mLw4SMx4yMuYTMukjMz0ya5JXZs9GajhSI", + value: "!(choleryk-329.16.3.11.0.mod-249.bok-57.oce-2d3.cho-567)!", + result: { + word: "choleryk", + correct: 16, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "25.11.2025", + }, + }, + { + date: "25.11.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjN10ybuEmZx0CboNmL0MTLjVHcuYTYi1SZp1mLw4yMx4yMucTMukjMz0ya5JXZs9GajhSI", + value: "!(choleryk-329.17.3.13.0.mie-ba6.puc-34.chl-1fa.o-567)!", + result: { + word: "choleryk", + correct: 17, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "25.11.2025", + }, + }, + { + date: "25.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN2UTLvh2YuEmZ20Caj9mL2kjNtA3br5yYzgTLytmL3IzMtI3Zv5SZ0YTLi9GZuQjY20SY3tmLw4CNx4iNucjMukjMz0ya5JXZs9GajhSI", + value: + "!(choleryk-329.27.6.14.0.kwa-6b4.dob-64e.ogr-327.kr-83c.kop-696.och-6fa.cho-567)!", + result: { + word: "choleryk", + correct: 27, + position: 6, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 47, + date: "25.11.2025", + }, + }, + { + date: "25.11.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN2UTLvh2YuI2Mt8mcn5iMlFWLuFGcuAjL34iMuMTMukjMz0ya5JXZs9GajhSI", + value: "!(choleryk-329.13.2.7.0.pan-ae2.gro-3b.cho-567)!", + result: { + word: "choleryk", + correct: 13, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "25.11.2025", + }, + }, + { + date: "25.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpcjN10yboNmLmNWLvdWZuEWMyUTL69GcuAjL44iMuQTMukjMz0ya5JXZs9GajhSI", + value: "!(choleryk-329.14.2.8.0.poz-521a.ego-cf.cho-567)!", + result: { + word: "choleryk", + correct: 14, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "25.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/latwe-ale-poszedlem-zlym-tropem-16-12-2025-diffle-difflepl-grywebowe-31-liter-w-" +] = [ + { + date: "16.12.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ATZuQTNk1SYuEDNy0Cb6NnLwYWOtM3br5CMugjLy4SMy4CM1MTLu9GctFmezhSI", + value: "!(szampon-350.21.2.8.0.kos-9f0.szl-241.a-d54.e05)!", + result: { + word: "szampon", + correct: 21, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "16.12.2025", + }, + }, + { + date: "16.12.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNwUWLhp3cuUGNy0iehdmLwQjMtk3d65CMukjLy4yMx4CM1MTLu9GctFmezhSI", + value: "!(szampon-350.13.2.9.0.zwy-240.gaz-24e.sza-e05)!", + result: { + word: "szampon", + correct: 13, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "16.12.2025", + }, + }, + { + date: "16.12.2025", + nick: "nigdywzyciu", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ATZtEmez5yNwAjMt8mcw5CMuYjLy4CMx4CM1MTLu9GctFmezhSI", + value: "!(szampon-350.10.2.6.0.pro-2007.sza-e05)!", + result: { + word: "szampon", + correct: 10, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "16.12.2025", + }, + }, + { + date: "16.12.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDMl1SYuUTO40CcugjMx0yb6NnL0EWNtonc0VWau5CMukjL14COx4CM1MTLu9GctFmezhSI", + value: "!(szampon-350.18.5.9.0.nietrz-5a4.szo-128.p-895.a-e05)!", + result: { + word: "szampon", + correct: 18, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "16.12.2025", + }, + }, + { + date: "16.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNwUmL4UWZtEmez5yMkBTMtIXYt5CMugjLy4SNx4CM1MTLu9GctFmezhSI", + value: "!(szampon-350.15.2.8.0.mar-10d3.sza-ee8.e05)!", + result: { + word: "szampon", + correct: 15, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "16.12.2025", + }, + }, + { + date: "16.12.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDMl1SY6NnL0EWNtonc0VWau5CMukjLz4CMx4CM1MTLu9GctFmezhSI", + value: "!(szampon-350.10.3.9.0.nietrz-5a4.sza-e05)!", + result: { + word: "szampon", + correct: 10, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "16.12.2025", + }, + }, + { + date: "16.12.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ATZtEmez5SYkJjMts2bw5CMuYjLy4CMx4CM1MTLu9GctFmezhSI", + value: "!(szampon-350.10.2.6.0.pok-22da.sza-e05)!", + result: { + word: "szampon", + correct: 10, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "16.12.2025", + }, + }, + { + date: "16.12.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDMl1SY6NnLkJzYx0yahpnLmJmMtUHaj5CMucjLy4yMx4CM1MTLu9GctFmezhSI", + value: "!(szampon-350.13.2.7.0.chu-2bf.zak-1c2d.sza-e05)!", + result: { + word: "szampon", + correct: 13, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "16.12.2025", + }, + }, + { + date: "16.12.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNwUWLhpnLkJDNtIHcz5CMuYjLy4SMx4CM1MTLu9GctFmezhSI", + value: "!(szampon-350.11.2.6.0.spr-42d.za-e05)!", + result: { + word: "szampon", + correct: 11, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "16.12.2025", + }, + }, + { + date: "16.12.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNwUWLhpnL0QTLqF2cuY2Y00CbhJmL3ITLrVXZuAjLxEjLw4yNx4CM1MTLu9GctFmezhSI", + value: "!(szampon-350.17.0.11.0.euk-27.bal-4cf.saj-44.za-e05)!", + result: { + word: "szampon", + correct: 17, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "16.12.2025", + }, + }, + { + date: "16.12.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ATZtEmLzUjMtQnez5CO0UTLllGcuAjLwEjLy4SNx4CM1MTLu9GctFmezhSI", + value: "!(szampon-350.15.2.10.0.pie-548.szt-253.a-e05)!", + result: { + word: "szampon", + correct: 15, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "16.12.2025", + }, + }, + { + date: "16.12.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDMl1SY6NnL2EmYtUWat5CMugjLy4SMx4CM1MTLu9GctFmezhSI", + value: "!(szampon-350.11.2.8.0.mie-ba6.sza-e05)!", + result: { + word: "szampon", + correct: 11, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "16.12.2025", + }, + }, + { + date: "16.12.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ATZtEmez5yNjFTLtFGduMjY00yYhBnL0gDOtEGbr5yY2EWLhJ3ZuAjLwEjLx4COx4CM1MTLu9GctFmezhSI", + value: "!(szampon-350.18.1.10.0.gra-a6c.kla-884.pac-4b3.tam-1c7.sza-e05)!", + result: { + word: "szampon", + correct: 18, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "16.12.2025", + }, + }, + { + date: "16.12.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ATZuMTYx0SY6NnLkJzYx0yahpnL0YWMtQWe35CMukjLx4COx4CM1MTLu9GctFmezhSI", + value: "!(szampon-350.18.1.9.0.wyd-1f4.zak-1c2d.sza-1a3.e05)!", + result: { + word: "szampon", + correct: 18, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "16.12.2025", + }, + }, + { + date: "16.12.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ATZtEmez5COjNWLzFGcucDNy0iavdnLzkDOhFTL6JHcuAjLzEjL24CNx4CM1MTLu9GctFmezhSI", + value: "!(szampon-350.14.6.13.0.prz-1a893.woj-247.pas-cc8.sza-e05)!", + result: { + word: "szampon", + correct: 14, + position: 6, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "16.12.2025", + }, + }, + { + date: "16.12.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDMl1SY6NnL0ImNtE2dr5CMukjLz4CMx4CM1MTLu9GctFmezhSI", + value: "!(szampon-350.10.3.9.0.kwa-6b4.sza-e05)!", + result: { + word: "szampon", + correct: 10, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "16.12.2025", + }, + }, + { + date: "16.12.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNwUWLhp3cuATLwVneuEjMwQTMtoncw5CMugjLy4SMx4CM1MTLu9GctFmezhSI", + value: "!(szampon-350.11.2.8.0.prz-14021.zup-0.sza-e05)!", + result: { + word: "szampon", + correct: 11, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "16.12.2025", + }, + }, + { + date: "16.12.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ATZtEmLiRWMtAnez5SYxczMtoncw5CMucjLz4yMx4CM1MTLu9GctFmezhSI", + value: "!(szampon-350.13.3.7.0.prz-371a.szp-1db.a-e05)!", + result: { + word: "szampon", + correct: 13, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "16.12.2025", + }, + }, + { + date: "16.12.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1ATZtEmez5SYxITNto3bw5CMuQjLz4CMx4CM1MTLu9GctFmezhSI", + value: "!(szampon-350.10.3.4.0.poz-521a.sza-e05)!", + result: { + word: "szampon", + correct: 10, + position: 3, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "16.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/mialem-wszystkie-litery-i-moglem-je-ulozyc-na-dwa-sposoby-ten-dobry-i-ten-moj-sl" +] = [ + { + date: "17.12.2024", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETLrFmcuITLytWYuE2Nx0ich1mLkNWMtIXYi5SN2ETLs92cuAjLwEjLz4SMx4iM1MTLltWYyhSI", + value: "!(rake-352.11.3.10.0.sol-165.bar-1cd.mar-17a.akr-2.rak-1)!", + result: { + word: "rake", + correct: 11, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "17.12.2024", + }, + }, + { + date: "17.12.2024", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKx0yahJnLw0yahZmLw0Sbl5yYtAnLx0icuATL65yNtMWYucTLsVncukTL292cuIjLwIjLw4iNy4iM1MTLltWYyhSI", + value: + "!(rake-352.26.0.20.2.sov-9.rul-7.ac-7.z-0.r-1.p-c.em-0.fak-0.rak-1)!", + result: { + word: "rake", + correct: 26, + position: 0, + incorrect: 20, + knownIncorrect: 2, + totalWords: 9, + totalLetters: 46, + date: "17.12.2024", + }, + }, + { + date: "17.12.2024", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEjLz0yahJnL2QWLhh2cukTMtMWdm5CMukjLx4iMx4iM1MTLltWYyhSI", + value: "!(rake-352.12.1.9.0.fuc-19.sha-d6.rak-3.1)!", + result: { + word: "rake", + correct: 12, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "17.12.2024", + }, + }, + { + date: "17.12.2024", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMtsWYy5SNz0SZoNmLmFWNukjM20CajNjLyMTLzVXYuAjLyEjLy4CMx4iM1MTLltWYyhSI", + value: "!(rake-352.10.2.12.0.aus-32.3ch-629.5af.che-35.rak-1)!", + result: { + word: "rake", + correct: 10, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "17.12.2024", + }, + }, + { + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMtsmL3ITL05iMtYmLiNTLj5yYtAnL30idhJnL2UWLyFmYuIjNt0WYn5CMukjLy4yMy4iM1MTLltWYyhSI", + value: "!(rake-352.23.2.9.0.gam-62.bar-e6.rav-7.p-c.c-3b.f-2.t-27.k-1)!", + result: { + word: "rake", + correct: 23, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 34, + }, + }, + { + date: "17.12.2024", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKx0yaucTLjFmcuQGNtEmcn5yNi1SZodnLmNWLlxmZuAjL3EjLx4yMx4iM1MTLltWYyhSI", + value: "!(rake-352.13.1.17.0.fle-cf.whe-b7.gra-4d.rac-7.k-1)!", + result: { + word: "rake", + correct: 13, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "17.12.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/mile-latwe-przyjemne-satysfakcjonujace-30-12-2024-diffle-diffleen-grywebowe-29-l" +] = [ + { + date: "30.12.2024", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY3MTLpJHduITMtkGd15SMyITLzVGZuIjL0EjLw4SNx4SN2MTL5d2bslmc0hSI", + value: "!(trilogy-365.15.0.14.2.des-221.uti-12.tri-37a)!", + result: { + word: "trilogy", + correct: 15, + position: 0, + incorrect: 14, + knownIncorrect: 2, + totalWords: 3, + totalLetters: 29, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY3MTLp5SZ3EjL3gTLvJHduYGMy0yb0NnLzITL09WbuAjLzEjLy4iMy4SN2MTL5d2bslmc0hSI", + value: "!(trilogy-365.22.2.13.0.mot-23.sto-20f.tro-87.17e.i-37a)!", + result: { + word: "trilogy", + correct: 22, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpE2Nz0SayRnLiNTLpJHZucjNt4Wat5CMucjLx4iMx4SN2MTL5d2bslmc0hSI", + value: "!(trilogy-365.12.1.7.0.min-67.dri-3b.tri-37a)!", + result: { + word: "trilogy", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpE2Nz0SayRnLiRTMtwWZy5SY10SaydmLx0CbnlmL5ETLjVnZuAjLyEjLy4COx4SN2MTL5d2bslmc0hSI", + value: "!(trilogy-365.18.2.12.0.fuc-19.igl-1.gri-5a.rel-14b.tri-37a)!", + result: { + word: "trilogy", + correct: 18, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY3MTLpJHducTYh1ybyBnL0IWLlh2duAjLxEjLy4SMx4SN2MTL5d2bslmc0hSI", + value: "!(trilogy-365.11.2.11.0.whe-b4.pro-aa7.tri-37a)!", + result: { + word: "trilogy", + correct: 11, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhdzMtkmc05iZx0SasJmL3ETL19mcuIjNt0WYn5CMugjLy4iMx4SN2MTL5d2bslmc0hSI", + value: "!(trilogy-365.12.2.8.0.gam-62.rou-17.bli-1f.tri-37a)!", + result: { + word: "trilogy", + correct: 12, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "30.12.2024", + }, + }, + { + date: "30.12.2024", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY3MTLpJHduIzN04yMjJTLoN2MuYmM00SayRnL0QzNtg2Yz4CM3ETLph2duMGOtQXYt5CO0ITLpVXcuAjLzEjLz4SMy4SN2MTL5d2bslmc0hSI", + value: + "!(trilogy-365.21.3.13.0.qui-248.mat-8c.whi-170.3ch-744.tri-42f.3ch-2c3.472.tri-37a)!", + result: { + word: "trilogy", + correct: 21, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 37, + date: "30.12.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/myslalem-o-diffle-wrapped-large-green-circle-ale-lokalne-statystyki-wyswietlaja-" +] = []; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/najszybsze-diffle-w-moim-zyciu-slightly-smiling-face-15-11-2025-diffle-difflepl-" +] = [ + { + date: "15.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM1ITLh12cuIWZ50ycvtmLw4SNuAjL44SOxMTLyFWbzhSI", + value: "!(smar-319.8.0.5.0.kos-9eb.sma-252)!", + result: { + word: "smar", + correct: 8, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "15.11.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM1ITLh1mLyUmMtIXYz5CMyUTLoN2MuQTOtMmez5yNyYTLz9GZuAjL3EjLy4yMx4SOxMTLyFWbzhSI", + value: "!(smar-319.13.2.17.0.dos-627.szc-94.3ch-520.sar-2e2.ma-252)!", + result: { + word: "smar", + correct: 13, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + }, + }, + { + date: "15.11.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITNy0SYtNnL2EmYtUWat5CMuETMuEjL24SOxMTLyFWbzhSI", + value: "!(smar-319.6.1.11.0.mie-ba6.sma-252)!", + result: { + word: "smar", + correct: 6, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "15.11.2025", + }, + }, + { + date: "15.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITNy4iNhJTLh1mLhdTNx0SY05CZyQTLyB3cuAjLyEjLx4yMx4SOxMTLyFWbzhSI", + value: "!(smar-319.13.1.12.0.spr-42d.ta-157a.ma-2a6.252)!", + result: { + word: "smar", + correct: 13, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "15.11.2025", + }, + }, + { + date: "15.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITNy0SYtNnL0ImNtE2dr5CMuETMuIjL24SOxMTLyFWbzhSI", + value: "!(smar-319.6.2.11.0.kwa-6b4.sma-252)!", + result: { + word: "smar", + correct: 6, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "15.11.2025", + }, + }, + { + date: "15.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM1ITLh1mL2IGZtE2az5SOxczMtoncw5CMuATMuEjL54SOxMTLyFWbzhSI", + value: "!(smar-319.9.1.10.0.prz-3719.ska-db6.ma-252)!", + result: { + word: "smar", + correct: 9, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "15.11.2025", + }, + }, + { + date: "15.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITNy0SYt5SZ50SYy5iZzgTLhp3cuEjM20ibhBnLmNmMtUHaj5CMuQTMuIjL54SOxMTLyFWbzhSI", + value: "!(smar-319.9.2.14.0.chu-2cf.pan-621.sza-83f.ra-9e.ma-252)!", + result: { + word: "smar", + correct: 9, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "15.11.2025", + }, + }, + { + date: "15.11.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITNy0SYtNnLw0yc1hmL0EWNtonc0VWau5CMuQTMuEjL54SOxMTLyFWbzhSI", + value: "!(smar-319.9.1.14.0.nietrz-5a4.hus-0.sma-252)!", + result: { + word: "smar", + correct: 9, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "15.11.2025", + }, + }, + { + date: "15.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM1ITLh12cuYDOyETLyFWbuQDN30ichJmL1EWMtE2d05iM1QWMtIXYw5yY2EWLhJ3ZuAjLzEjLy4CNx4SOxMTLyFWbzhSI", + value: + "!(smar-319.14.2.13.0.gra-a6c.par-1d52.twa-1a5.bar-744.mar-1286.sma-252)!", + result: { + word: "smar", + correct: 14, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 29, + date: "15.11.2025", + }, + }, + { + date: "15.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyUjMtEWbukDNx0Cc6NnLzMmMtkncm5CMuMTMuEjL44SOxMTLyFWbzhSI", + value: "!(smar-319.8.1.13.0.fry-2c3.szp-149.ma-252)!", + result: { + word: "smar", + correct: 8, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "15.11.2025", + }, + }, + { + date: "15.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM1ITLh12cuQWYx0CajNjL3IWNtIXY05CNmFTLkl3duAjLxEjLw4CMx4SOxMTLyFWbzhSI", + value: "!(smar-319.10.0.11.0.wyd-1f4.tar-5b7.3ch-1ad.sma-252)!", + result: { + word: "smar", + correct: 10, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "15.11.2025", + }, + }, + { + date: "15.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyUjMtEWbz5yN0ITLq92duMTO4EWMtoncw5CMuYTMuEjL34SOxMTLyFWbzhSI", + value: "!(smar-319.7.1.16.0.prz-1a893.woj-247.sma-252)!", + result: { + word: "smar", + correct: 7, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "15.11.2025", + }, + }, + { + date: "15.11.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyUjMtEWbz5CZ4EWLkl3duEGOx0yZh1mLyUWYt4WYw5CMuMTMuAjL54SOxMTLyFWbzhSI", + value: "!(smar-319.9.0.13.0.pan-ae2.mag-18a.wyd-a8d.sma-252)!", + result: { + word: "smar", + correct: 9, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "15.11.2025", + }, + }, + { + date: "15.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyUjMtEWbz5SZz0SdtFmL5QjMtQ2bt5CMuATMuIjL44SOxMTLyFWbzhSI", + value: "!(smar-319.8.2.10.0.mod-249.amu-3e.sma-252)!", + result: { + word: "smar", + correct: 8, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "15.11.2025", + }, + }, + { + date: "15.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM1ITLh1mLyUWLyFmLiRTLhd3cuQDN00ichZmL3ITLrVXZuAjL0EjLx4CNx4SOxMTLyFWbzhSI", + value: "!(smar-319.14.1.14.0.euk-27.far-444.swa-4b.ar-e2.ma-252)!", + result: { + word: "smar", + correct: 14, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "15.11.2025", + }, + }, + { + date: "15.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM1ITLh1mLhhDNtIHdz5SYxITNto3bw5CMuETMuEjL44SOxMTLyFWbzhSI", + value: "!(smar-319.8.1.11.0.poz-521a.str-48a.ma-252)!", + result: { + word: "smar", + correct: 8, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "15.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/niby-proste-ale-cos-nie-wyszlo-27-12-2024-diffle-diffleen-grywebowe-27-letters-i" +] = [ + { + date: "27.12.2024", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3MTLp1mL3ITLpRWZucTLlh2duUmMtwWZm5SOzITLyV2cuAjL0EjLw4yMx4iM2MTL0lWblhSI", + value: "!(emit-362.13.0.14.0.ser-239.fel-2e.whe-7.edi-27.mi-37)!", + result: { + word: "emit", + correct: 13, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "27.12.2024", + }, + }, + { + date: "27.12.2024", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3MTLp1WZuMjY04iYk1CajNjL2gTLnVGbuMWLxlGcuYWLoVGZuAjL1EjLz4CNx4iM2MTL0lWblhSI", + value: "!(emit-362.14.3.15.0.deh-f.piq-c.leg-86.3ch-db.4b3.emi-37)!", + result: { + word: "emit", + correct: 14, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "27.12.2024", + }, + }, + { + date: "27.12.2024", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpczMtkWbl5SMx0yYp1mLlVTLhV2duEmNt8Gbi5CMuYTMuEjL34iM2MTL0lWblhSI", + value: "!(emit-362.7.1.16.0.blo-6a.wea-5e.mic-11.emi-37)!", + result: { + word: "emit", + correct: 7, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "27.12.2024", + }, + }, + { + date: "27.12.2024", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3MTLp1WZuMjMx0SblJnL2MTLzl2dukTMtMWdm5CMuITMuEjL54iM2MTL0lWblhSI", + value: "!(emit-362.9.1.12.0.fuc-19.wis-36.rem-123.emi-37)!", + result: { + word: "emit", + correct: 9, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "27.12.2024", + }, + }, + { + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3MTLp1WZuITMtU2bw5iM20SbhdmLw4SNuEjL34iM2MTL0lWblhSI", + value: "!(emit-362.7.1.5.0.gam-62.poe-12.emi-37)!", + result: { + word: "emit", + correct: 7, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 13, + }, + }, + { + date: "27.12.2024", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3MTLp1WZuIWL0l2YuUjMtQWYt5iMtY3bz5CMuATMuIjL54iM2MTL0lWblhSI", + value: "!(emit-362.9.2.10.0.sov-2.mad-25.cit-b.emi-37)!", + result: { + word: "emit", + correct: 9, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "27.12.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-chcialo-mi-sie-zgadywac-20-12-2024-diffle-diffleen-grywebowe-32-letters-in-6" +] = [ + { + date: "20.12.2024", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiM00SYwFmL3gTL0FGcuQjMtoXYo5iMy0CZhxmL4IWMt4WYj5yYtk3b25CMuQTMuEjL3EjL1UzMtkHa0FGchhSI", + value: "!(apathy-355.17.1.14.0.voy-c.can-1b8.lad-22.haz-24.pat-87.apa-42)!", + result: { + word: "apathy", + correct: 17, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "20.12.2024", + }, + }, + { + date: "20.12.2024", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyQTLhBXYuATZtIXdw5CMz0CbwNnL5gjMtEGaj5CMuETMuEjLyEjL1UzMtkHa0FGchhSI", + value: "!(apathy-355.12.1.11.0.cha-289.spl-30.pur-e0.apa-42)!", + result: { + word: "apathy", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "20.12.2024", + }, + }, + { + date: "20.12.2024", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyQTLh5SMy0Cdw5iMz0yc1FmLw4yNuAjLzEjL1UzMtkHa0FGchhSI", + value: "!(apathy-355.13.0.7.0.aus-32.pt-21.a-42)!", + result: { + word: "apathy", + correct: 13, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "20.12.2024", + }, + }, + { + date: "20.12.2024", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyQTLhBXYukTNx0ychBnLwUzMt42bj5CMuQTMuAjLzEjL1UzMtkHa0FGchhSI", + value: "!(apathy-355.13.0.14.0.con-350.pas-159.apa-42)!", + result: { + word: "apathy", + correct: 13, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "20.12.2024", + }, + }, + { + date: "20.12.2024", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIDNtEGch5SZtcXYo5yYtoXdm5SZ50Cd0FmLmFTLk9mYugTZy0CduFmLlRTLzFGbuIjNt0WYn5CMukTMuEjL3EjL1UzMtkHa0FGchhSI", + value: + "!(apathy-355.17.1.19.0.gam-62.las-4e.ant-2e8.bod-1f.att-9e.fuz-c.haw-e.apa-42)!", + result: { + word: "apathy", + correct: 17, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 37, + date: "20.12.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-spodziewalem-sie-takiej-odmiany-10-11-2025-flag-pl-diffle-difflepl-grywebowe" +] = [ + { + date: "10.11.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMlFTL15iN3MTLj5SOjFTLrp3cuUmZ10SastmL0EWNtonc0VWau5CMuMTMuYjL3IjL0EzMtUWajpWYrVnezhSI", + value: "!(szukajcie-314.27.6.13.0.nietrz-5a4.kli-5fe.szk-1c9.c-376.u-1e2)!", + result: { + word: "szukajcie", + correct: 27, + position: 6, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 46, + date: "10.11.2025", + }, + }, + { + date: "10.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITZx0Sd6NnLwYTNto3c15CMhFTL1h2YuIWZ50ycvtmLw4yNuMjL4EjL0EzMtUWajpWYrVnezhSI", + value: "!(szukajcie-314.18.3.7.0.kos-9eb.chu-1a0.usz-560.szu-1e2)!", + result: { + word: "szukajcie", + correct: 18, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "10.11.2025", + }, + }, + { + date: "10.11.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMlFjL4MWMtUnez5yNm1SdyJmL2EmYtUWat5CMuETMuIjLzIjL0EzMtUWajpWYrVnezhSI", + value: "!(szukajcie-314.23.2.11.0.mie-ba6.bru-f7.szu-1c8.1e2)!", + result: { + word: "szukajcie", + correct: 23, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "10.11.2025", + }, + }, + { + date: "10.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyUWMtUnLhNGOtEmez5CO50ydhBnL4ITMtQmbh5CMuETMuAjLxIjL0EzMtUWajpWYrVnezhSI", + value: "!(szukajcie-314.21.0.11.0.and-128.paw-98.sza-8ca.u-1e2)!", + result: { + word: "szukajcie", + correct: 21, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "10.11.2025", + }, + }, + { + date: "10.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyUWMtUnLhNGOtEmeuQmM00icwNnLw4SOuAjLxIjL0EzMtUWajpWYrVnezhSI", + value: "!(szukajcie-314.21.0.9.0.spr-42d.za-8ca.u-1e2)!", + result: { + word: "szukajcie", + correct: 21, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "10.11.2025", + }, + }, + { + date: "10.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITZx0SducjNtsmLzYWLlp3cuY2MtUma65iN00yY1pmLmJmMtUHaj5CMuATMugjL4IjL0EzMtUWajpWYrVnezhSI", + value: + "!(szukajcie-314.28.8.10.0.chu-2bf.juc-46.zje-3f.sze-f3.k-67.u-1e2)!", + result: { + word: "szukajcie", + correct: 28, + position: 8, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 46, + date: "10.11.2025", + }, + }, + { + date: "10.11.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMlFTL1p3cuUTN0ETLyF2aucTZh1ibhBnLw4COuIjL1EjL0EzMtUWajpWYrVnezhSI", + value: "!(szukajcie-314.15.2.8.0.pan-ae7.kar-1455.szu-1e2)!", + result: { + word: "szukajcie", + correct: 15, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "10.11.2025", + }, + }, + { + date: "11.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQjMz0Cd5NmL0ImNtE2dr5CMukjLz4CMx4SNxMTLh5WeyRXejhSI", + value: "!(cytryna-315.10.3.9.0.kwa-6b4.cyt-324)!", + result: { + word: "cytryna", + correct: 10, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "11.11.2025", + }, + }, + { + date: "10.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITZx0Sd6NnLzgTYx0CbvBnLx0ia1JmL5IjMtEma15CMtMWdh5SZ2ETLjFGduMmNh1SYydmLw4SOuMjLzMjL0EzMtUWajpWYrVnezhSI", + value: + "!(szukajcie-314.33.3.9.0.gra-a6c.tac-16e.auc-0.uja-229.buj-1.pol-1a83.szu-1e2)!", + result: { + word: "szukajcie", + correct: 33, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "10.11.2025", + }, + }, + { + date: "10.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyUWMugzYx0SducjNtsmLmFTOtEmez5SNhhTLtFmeuQjZx0CZ5dnLw4SOuMjLyMjL0EzMtUWajpWYrVnezhSI", + value: "!(szukajcie-314.32.3.9.0.wyd-1f4.zam-8a5.sza-91f.k-67.u-1c8.1e2)!", + result: { + word: "szukajcie", + correct: 32, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 44, + date: "10.11.2025", + }, + }, + { + date: "10.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMlFjL4MWMtUnez5yNy0ya1VmLw4SNuEjLxIjL0EzMtUWajpWYrVnezhSI", + value: "!(szukajcie-314.21.1.5.0.euk-27.szu-1c8.1e2)!", + result: { + word: "szukajcie", + correct: 21, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "10.11.2025", + }, + }, + { + date: "10.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITZx0Sd6NnLhFjM10ievBnLw4CNuEjL0EjL0EzMtUWajpWYrVnezhSI", + value: "!(szukajcie-314.14.1.4.0.poz-521a.szu-1e2)!", + result: { + word: "szukajcie", + correct: 14, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "10.11.2025", + }, + }, + { + date: "10.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMlFTL15iN30SbucDNtwmLykTZtEmez5SYxczMtoncw5CMuETMuMjL5IjL0EzMtUWajpWYrVnezhSI", + value: "!(szukajcie-314.29.3.11.0.prz-371a.sza-e92.l-47.m-76.u-1e2)!", + result: { + word: "szukajcie", + correct: 29, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 43, + date: "10.11.2025", + }, + }, + { + date: "10.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyUWMtUnez5yN0ITLq92duMTO4EWMtoncw5CMuETMuMjL1EjL0EzMtUWajpWYrVnezhSI", + value: "!(szukajcie-314.15.3.11.0.prz-1a893.woj-247.szu-1e2)!", + result: { + word: "szukajcie", + correct: 15, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "10.11.2025", + }, + }, + { + date: "10.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITZx0SduEDOtAnez5yMxQTLhJmeukDNy0CZv1mLw4SOuMjLxIjL0EzMtUWajpWYrVnezhSI", + value: "!(szukajcie-314.21.3.9.0.mod-249.zba-413.szp-81.u-1e2)!", + result: { + word: "szukajcie", + correct: 21, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "10.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-znalem-25-10-2025-flag-pl-diffle-difflepl-25-liter-w-3-slowach-large-green-c" +] = [ + { + date: "25.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZmNTLsF2ZuQWYx0ic1JmL2EmYtUWat5CMuQTMuEjLwEjL4kjMt42bpxWYnhSI", + value: "!(galion-298.10.1.14.0.mie-ba6.bur-1ad.gal-3ff)!", + result: { + word: "galion", + correct: 10, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "25.10.2025", + }, + }, + { + date: "25.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZmNTLsF2ZuQzMtMWdw5yYwUTLsF2ZugTNy0ibhRnLw0ibvJmLkVWOtM3br5CMuMTMuMjL3EjL4kjMt42bpxWYnhSI", + value: + "!(galion-298.17.3.13.0.kos-9ed.bon-0.tan-258.gal-50c.puc-34.gal-3ff)!", + result: { + word: "galion", + correct: 17, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "25.10.2025", + }, + }, + { + date: "25.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZ2MtwmLiVTLi5iZy0yZhdmLhhTMtcWYt5SYxczMtoncw5CMuMTMuEjL4EjL4kjMt42bpxWYnhSI", + value: "!(galion-298.18.1.13.0.prz-371a.mag-18a.gag-2f.b-5b.l-3ff)!", + result: { + word: "galion", + correct: 18, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "25.10.2025", + }, + }, + { + date: "25.10.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmZz0CbhdmLzQzMtkmbh5CNjJTLm5WaucTOy0SdoNmL0EWNtonc0VWau5CMugTMuMjL2EjL4kjMt42bpxWYnhSI", + value: + "!(galion-298.16.3.18.0.nietrz-5a4.chu-297.inf-2c4.ani-343.gal-3ff)!", + result: { + word: "galion", + correct: 16, + position: 3, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "25.10.2025", + }, + }, + { + date: "25.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmZz0CbhdmLyITL0FmYuY2N30ibhtmLkJDNtIHcz5SMuMTMuEjL4EjL4kjMt42bpxWYnhSI", + value: "!(galion-298.18.1.13.1.spr-42d.kan-77f.bat-22.gal-3ff)!", + result: { + word: "galion", + correct: 18, + position: 1, + incorrect: 13, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 32, + date: "25.10.2025", + }, + }, + { + date: "25.10.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmZz0CbuIWNtIWYn5SNxETLn9GcukDMx0ib5JnLw4SOuIjL2EjL4kjMt42bpxWYnhSI", + value: "!(galion-298.16.2.9.0.ryn-109.pog-115.gab-5b.l-3ff)!", + result: { + word: "galion", + correct: 16, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "25.10.2025", + }, + }, + { + date: "25.10.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZ2MtwWYn5CMzEWLz92auUTNtkGbuMmNh1SYydmLw4COuEjL0EjL4kjMt42bpxWYnhSI", + value: "!(galion-298.14.1.8.0.gra-a6c.li-55.kos-a30.gal-3ff)!", + result: { + word: "galion", + correct: 14, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "25.10.2025", + }, + }, + { + date: "25.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZmNjLllDNtwWYn5CN2MTLsF2cuY2Y00CbhJmLzcDNt0WYs5yM0MTLp5WYuUWN30CdhtmLmJmMtUHaj5CMuUTMuMjLzMjL4kjMt42bpxWYnhSI", + value: + "!(galion-298.33.3.15.0.chu-2bf.kat-75e.ani-343.lam-473.bal-4cf.sal-364.gal-49e.3ff)!", + result: { + word: "galion", + correct: 33, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 51, + date: "25.10.2025", + }, + }, + { + date: "25.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZ2MtwWYn5CN3UTLoN2MuQWZz0Cbh1mLw0yd1pmLw4COuEjL1EjL4kjMt42bpxWYnhSI", + value: "!(galion-298.15.1.8.0.juw-0.mal-3ed.3ch-574.gal-3ff)!", + result: { + word: "galion", + correct: 15, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "25.10.2025", + }, + }, + { + date: "25.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZmNTLsF2ZuUWN30CdhtmL5QjMtQ2bt5CMuATMuIjLyEjL4kjMt42bpxWYnhSI", + value: "!(galion-298.12.2.10.0.mod-249.kat-75e.gal-3ff)!", + result: { + word: "galion", + correct: 12, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "25.10.2025", + }, + }, + { + date: "25.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmZz0CbhdmLlFWMtwWY05iN0MTLsFWbuQjZx0CZ5dnLw4SOuEjL3EjL4kjMt42bpxWYnhSI", + value: "!(galion-298.17.1.9.0.wyd-1f4.mal-346.tal-1ae.gal-3ff)!", + result: { + word: "galion", + correct: 17, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "25.10.2025", + }, + }, + { + date: "25.10.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZmNTLsF2ZuMDNz0SauFmL0ImNtE2dr5CMuITMuEjLzEjL4kjMt42bpxWYnhSI", + value: "!(galion-298.13.1.12.0.kwa-6b4.ani-343.gal-3ff)!", + result: { + word: "galion", + correct: 13, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "25.10.2025", + }, + }, + { + date: "25.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZ2MtwWYn5CZiRTLhJmeucjMtsWdl5CMuATMuAjL0EjL4kjMt42bpxWYnhSI", + value: "!(galion-298.14.0.10.0.euk-27.zba-4bd.gal-3ff)!", + result: { + word: "galion", + correct: 14, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "25.10.2025", + }, + }, + { + date: "25.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmZ2MtwmLkZWLuF2ZuYmM10CbvRmLhFjM10ievBnLw4SOuQjL3EjL4kjMt42bpxWYnhSI", + value: "!(galion-298.17.4.9.0.poz-521a.dol-52f.gan-fd.l-3ff)!", + result: { + word: "galion", + correct: 17, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "25.10.2025", + }, + }, + { + date: "25.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYmZz0CbhdmLlJTNtw2bk5yN0ITLq92duMTO4EWMtoncw5CMuYTMuMjLyEjL4kjMt42bpxWYnhSI", + value: "!(galion-298.12.3.16.0.prz-1a893.woj-247.dol-52e.gal-3ff)!", + result: { + word: "galion", + correct: 12, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "25.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-znam-blush-23-11-2025-diffle-difflepl-grywebowe-34-litery-w-5-slowach-large-" +] = [ + { + date: "23.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhN2NwEjLmhDOwETL69mLykTLupncuEjMtMWZu5yM0MTMtwWe35CMuATMuMjLxIjL3IzMtMWZp5WYDJUJ1MUJzIUJzMUJyhSI", + value: "!(różaniec-327.21.3.10.0.wyl-1343.nec-21.rzn-92.oz-1088f.107ca)!", + result: { + word: "różaniec", + correct: 21, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "23.11.2025", + }, + }, + { + date: "23.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhN2NwETL69mcuUjNm1CboNmL5gjMt4WY05SNlFTLp52cuETNtUXYr5SZlVWMtMWY65yNwUTMtUWat5CMuEjMuIjLyIjL3IzMtMWZp5WYDJUJ1MUJzIUJzMUJyhSI", + value: + "!(różaniec-327.22.2.21.0.mie-1507.zac-1eee.kau-51.sni-1e5.tan-289.chl-f65.roz-107ca)!", + result: { + word: "różaniec", + correct: 22, + position: 2, + incorrect: 21, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "23.11.2025", + }, + }, + { + date: "23.11.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhN2NwETL65yMkFTL39mcuUTNz0ybpBnL1UjMtUGbn5CMuITMuIjL2EjL3IzMtMWZp5WYDJUJ1MUJzIUJzMUJyhSI", + value: "!(różaniec-327.16.2.12.0.gle-255.pio-355.row-1d3.z-107ca)!", + result: { + word: "różaniec", + correct: 16, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "23.11.2025", + }, + }, + { + date: "23.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYjdDMx0iev5yYi1iehJnL2UzNz0ieyBnLw4COuIjL2EjL3IzMtMWZp5WYDJUJ1MUJzIUJzMUJyhSI", + value: "!(różaniec-327.16.2.8.0.prz-3756.raz-bc.oz-107ca)!", + result: { + word: "różaniec", + correct: 16, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "23.11.2025", + }, + }, + { + date: "23.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYjdDMx0ievJnL1YTNx0SYrNnLjJjZx0iYhpnL4UmZx0SZpdnL5UjNx0CbhpnLw4SOuIjLxIjL3IzMtMWZp5WYDJUJ1MUJzIUJzMUJyhSI", + value: + "!(różaniec-327.21.2.9.0.zal-1659.wie-1fe8.zab-1f2c.ska-1565.roz-107ca)!", + result: { + word: "różaniec", + correct: 21, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "23.11.2025", + }, + }, + { + date: "23.11.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhN2NwEjLmhDOwETL69mcuQWOy0SdoNmL2QTZtA3c35CMuUTMuMjL4EjL3IzMtMWZp5WYDJUJ1MUJzIUJzMUJyhSI", + value: "!(różaniec-327.18.3.15.0.wsp-e46.chu-29d.roz-1088f.107ca)!", + result: { + word: "różaniec", + correct: 18, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "23.11.2025", + }, + }, + { + date: "23.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2Y3ATMto3by5SZzUTLoN2MuUGN00ichZmL5UzMtonck5yNidTMtIXY65SYzMTLhxGcuUWZtcWYi5yYkNTLzFGbuQjY30yYh5mLmJmMtUHaj5CMuYjMugjLwMjL3IzMtMWZp5WYDJUJ1MUJzIUJzMUJyhSI", + value: + "!(różaniec-327.30.8.26.0.chu-2bf.nac-7b4.las-3dc.bag-ee.pla-33a.zar-17b7.drz-359.far-44e.3ch-53e.roz-107ca)!", + result: { + word: "różaniec", + correct: 30, + position: 8, + incorrect: 26, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 64, + date: "23.11.2025", + }, + }, + { + date: "23.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2Y3ATMto3by5CN0UTLhJ3auMzMx0CdhxmLkhTMtA3ch5CMuMTMuEjLxIjL3IzMtMWZp5WYDJUJ1MUJzIUJzMUJyhSI", + value: "!(różaniec-327.21.1.13.0.asp-18d.lat-133.kra-544.roz-107ca)!", + result: { + word: "różaniec", + correct: 21, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "23.11.2025", + }, + }, + { + date: "23.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2Y3ATMto3by5CZ5QWLlJneuMTO4EWMtoncw5CMuATMuQjL2EjL3IzMtMWZp5WYDJUJ1MUJzIUJzMUJyhSI", + value: "!(różaniec-327.16.4.10.0.prz-1a893.zre-d9d.roz-107ca)!", + result: { + word: "różaniec", + correct: 16, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "23.11.2025", + }, + }, + { + date: "23.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYjdDMx0ievJnLxMGNtg2Yz4yY5ETLllGcuQzYtkWbz5iMzMTMtMXe35CMuQTMuAjL3EjL3IzMtMWZp5WYDJUJ1MUJzIUJzMUJyhSI", + value: + "!(różaniec-327.17.0.14.0.wys-1332.smi-c4.pie-19c.3ch-4c1.roz-107ca)!", + result: { + word: "różaniec", + correct: 17, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "23.11.2025", + }, + }, + { + date: "23.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2Y3ATMuU2M5ATMto3by5CO50yb6pnLw4SNuEjL2EjL3IzMtMWZp5WYDJUJ1MUJzIUJzMUJyhSI", + value: "!(różaniec-327.16.1.5.0.zzo-98.roz-1093e.107ca)!", + result: { + word: "różaniec", + correct: 16, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "23.11.2025", + }, + }, + { + date: "23.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2Y3ATMto3by5yMwEzMt8mcw5CO50yb6pnLw4iNuIjL0EjL3IzMtMWZp5WYDJUJ1MUJzIUJzMUJyhSI", + value: "!(różaniec-327.14.2.6.0.zzo-98.pro-3103.roz-107ca)!", + result: { + word: "różaniec", + correct: 14, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "23.11.2025", + }, + }, + { + date: "23.11.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhN2NwETL69mcuYTYi1SZp1mLw4SOuEjLyEjL3IzMtMWZp5WYDJUJ1MUJzIUJzMUJyhSI", + value: "!(różaniec-327.12.1.9.0.mie-ba6.roz-107ca)!", + result: { + word: "różaniec", + correct: 12, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "23.11.2025", + }, + }, + { + date: "23.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpE2Y3ATMto3by5iNxEWLhJ3ZukDNy0CZv1mLw4yNuMjL3EjL3IzMtMWZp5WYDJUJ1MUJzIUJzMUJyhSI", + value: "!(różaniec-327.17.3.7.0.mod-249.gra-a16.roz-107ca)!", + result: { + word: "różaniec", + correct: 17, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "23.11.2025", + }, + }, + { + date: "23.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYjdDMx0ievJnLw0CajJTZp5mL2EGOx0ichpnLiNjNx0SZpdnL3QDOtk2Yz5yYhJGNtQ2bw5CMuYTMuQjL5EjL3IzMtMWZp5WYDJUJ1MUJzIUJzMUJyhSI", + value: + "!(różaniec-327.19.4.16.0.pod-4bac.sci-847.wie-163b.zar-18a6.nie2ch-0.roz-107ca)!", + result: { + word: "różaniec", + correct: 19, + position: 4, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "23.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-znam-tego-slowa-05-10-2025-flag-pl-diffle-difflepl-grywebowe-28-liter-w-3-sl" +] = [ + { + date: "05.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZzETLv5WYuUWZt02bu5iNlRWLu9WbuAjL34iMukTMugzNy0SeuxWYt9mbhhSI", + value: "!(anomalny-278.19.2.7.0.mon-de6.nom-ee.ano-13d)!", + result: { + word: "anomalny", + correct: 19, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "05.10.2025", + }, + }, + { + date: "05.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQ2Mx0ybuFmLiNDNtg2Yz4yYh1SYt9mL5cjLzMWMtg2Yz4CMhFTL1h2YuQWZ50ycvtmLw4iNx4CMuAjMugzNy0SeuxWYt9mbhhSI", + value: + "!(anomalny-278.20.0.16.0.kos-9ed.chu-1a0.3ch-1c3.79.oma-ac.3ch-43b.ano-13d)!", + result: { + word: "anomalny", + correct: 20, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 36, + date: "05.10.2025", + }, + }, + { + date: "05.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQ2Mx0ybu5CMidTL0VXYuQmM00icwNnLx4CNx4CMugTMugzNy0SeuxWYt9mbhhSI", + value: "!(anomalny-278.18.0.14.1.spr-42d.aut-7b0.no-13d)!", + result: { + word: "anomalny", + correct: 18, + position: 0, + incorrect: 14, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 32, + date: "05.10.2025", + }, + }, + { + date: "05.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQ2Mx0ybuFmL0AjMtw2bt5SZlFTLvx2auMDMz0ibvJmLjNGZtEmcn5iN24SOmFTLv5WYuYmYy0SdoNmLw4yNx4CNuYjMugzNy0SeuxWYt9mbhhSI", + value: + "!(anomalny-278.26.4.17.0.chu-2bf.ano-1f9.66.gra-dcc.bon-303.klo-1ee.mol-204.ano-13d)!", + result: { + word: "anomalny", + correct: 26, + position: 4, + incorrect: 17, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 47, + date: "05.10.2025", + }, + }, + { + date: "05.10.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkNTMt8mbh5CZhJTL1h2YuQTY10ieyRXZp5mLw4CNx4iMuMTMugzNy0SeuxWYt9mbhhSI", + value: "!(anomalny-278.13.2.14.0.nietrz-5a4.chu-2ad.ano-13d)!", + result: { + word: "anomalny", + correct: 13, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "05.10.2025", + }, + }, + { + date: "05.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkNTMt8mbuMDNy0yasFmLwUGOtc3bu5yMlFTL5NXYuATLtF2ZukDNy0CZv1mLw4iNx4CNuEjMugzNy0SeuxWYt9mbhhSI", + value: + "!(anomalny-278.21.4.16.0.mod-249.gam-0.asy-1e3.now-8e0.alk-243.no-13d)!", + result: { + word: "anomalny", + correct: 21, + position: 4, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 41, + date: "05.10.2025", + }, + }, + { + date: "05.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkNTMt8mbh5CNx0SbhhmLhFzNz0ieyBnLw4SMx4CMuMTMugzNy0SeuxWYt9mbhhSI", + value: "!(anomalny-278.13.0.11.0.prz-371a.ham-14.ano-13d)!", + result: { + word: "anomalny", + correct: 13, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "05.10.2025", + }, + }, + { + date: "05.10.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkNTMt8mL4ADNtEmbh5SYy0SYsdnL2EjZtEmez5CMxcTLuFGcuMmNh1SYydmLw4CMx4SMuMjMugzNy0SeuxWYt9mbhhSI", + value: + "!(anomalny-278.23.1.10.0.gra-a6c.pan-710.sza-f16.wla-2a.ana-408.o-13d)!", + result: { + word: "anomalny", + correct: 23, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "05.10.2025", + }, + }, + { + date: "05.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQ2Mx0ybugDM00SYuFmLykzYt4WYw5CNmFTLkl3duAjL34SMukTMugzNy0SeuxWYt9mbhhSI", + value: "!(anomalny-278.19.1.7.0.wyd-1f4.pan-c92.ana-408.o-13d)!", + result: { + word: "anomalny", + correct: 19, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "05.10.2025", + }, + }, + { + date: "05.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZzETLv5WYugTZl1SY6NnL3ITLrVXZuAjL54CMucTMugzNy0SeuxWYt9mbhhSI", + value: "!(anomalny-278.17.0.9.0.euk-27.sza-ee8.ano-13d)!", + result: { + word: "anomalny", + correct: 17, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "05.10.2025", + }, + }, + { + date: "05.10.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZzETLv5WYuYGMzETLkFmbuAjL34SMuITMugzNy0SeuxWYt9mbhhSI", + value: "!(anomalny-278.12.1.7.0.nad-130f.ano-13d)!", + result: { + word: "anomalny", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "05.10.2025", + }, + }, + { + date: "05.10.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQ2Mx0ybu5CN0ETLv1WYuQjY20SY3tmLw4CMx4yMuUTMugzNy0SeuxWYt9mbhhSI", + value: "!(anomalny-278.15.3.10.0.kwa-6b4.amo-144.no-13d)!", + result: { + word: "anomalny", + correct: 15, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "05.10.2025", + }, + }, + { + date: "05.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkNTMt8mbh5SOiFTLy9mbuYTYi1SZp1mLw4CMx4SMukTMugzNy0SeuxWYt9mbhhSI", + value: "!(anomalny-278.19.1.10.0.mie-ba6.nor-1b9.ano-13d)!", + result: { + word: "anomalny", + correct: 19, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "05.10.2025", + }, + }, + { + date: "05.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQ2Mx0ybuFmLyITLs9WbuEWMyUTL69GcuAjL34yMuUTMugzNy0SeuxWYt9mbhhSI", + value: "!(anomalny-278.15.3.7.0.poz-521a.mol-22.ano-13d)!", + result: { + word: "anomalny", + correct: 15, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "05.10.2025", + }, + }, + { + date: "05.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkNTMt8mbh5SMzITLqFmZuQGOt8Gbn5SNz0CZv1mL1MWLhd3buMjNz0CbhNnLwEzMtEGbr5yM5gTYx0ieyBnLw4COx4SNuUzMugzNy0SeuxWYt9mbhhSI", + value: + "!(anomalny-278.35.5.18.0.prz-1a893.kla-310.sal-363.owa-c5.mod-35.glo-8d.faj-231.ano-13d)!", + result: { + word: "anomalny", + correct: 35, + position: 5, + incorrect: 18, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 58, + date: "05.10.2025", + }, + }, + { + date: "05.10.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkNTMuUjMx0ybuFmL5YWYtEmcn5iMlFWLuFGcuAjL44SMuIjMugzNy0SeuxWYt9mbhhSI", + value: "!(anomalny-278.22.1.8.0.pan-ae2.gra-af9.ano-125.13d)!", + result: { + word: "anomalny", + correct: 22, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "05.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/niefajne-21-11-2025-diffle-difflepl-grywebowe-29-liter-w-4-slowach-large-green-c" +] = [ + { + date: "21.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTYz0yclJnLjNWMtUmck5CM10iclNnLiVWOtM3br5CMukjLz4yNx4SNyMTL0JXY0NXZyhSI", + value: "!(restart-325.17.3.9.0.kos-9eb.ser-50.dre-1cc.res-3a4)!", + result: { + word: "restart", + correct: 17, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "21.11.2025", + }, + }, + { + date: "21.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0E2MtMXZy5iM1QTMtEGdz5CN0YWLyF2auQjYtMWas5yYi5SY1YTLz5SO0MTLkVmcuQjNzITLvJHcuAjL2EjLy4iMz4SNyMTL0JXY0NXZyhSI", + value: + "!(restart-325.32.2.16.0.pro-2364.red-349.s-65a.bc.lic-b4.kar-f44.sta-1452.res-3a4)!", + result: { + word: "restart", + correct: 32, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 50, + date: "21.11.2025", + }, + }, + { + date: "21.11.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNhNTLzVmcuImMtUnci5iZ4cTLhJ3ZuEGZyITLr9GcuAjL0EjLx4yMx4SNyMTL0JXY0NXZyhSI", + value: "!(restart-325.13.1.14.0.pok-22da.gra-78f.bru-2b.res-3a4)!", + result: { + word: "restart", + correct: 13, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "21.11.2025", + }, + }, + { + date: "21.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNhNTLzVmcuQzYtEmck5SOiRWLhR3cuAjN00ych1mLhdjMtEGbw5iZiJTL1h2YuAjL3EjLz4SOx4SNyMTL0JXY0NXZyhSI", + value: + "!(restart-325.19.3.17.0.chu-2bf.pla-27a.mas-460.sta-db9.dra-c4.res-3a4)!", + result: { + word: "restart", + correct: 19, + position: 3, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "21.11.2025", + }, + }, + { + date: "21.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCNhNTLzVmcuEWO50SZ0NnLkNWNtEGbr5CZyQTLyB3cuAjLwEjL24SNx4SNyMTL0JXY0NXZyhSI", + value: "!(restart-325.15.6.10.0.spr-42d.kla-5cd.ste-99a.res-3a4)!", + result: { + word: "restart", + correct: 15, + position: 6, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "21.11.2025", + }, + }, + { + date: "21.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTYz0yclJnLlNDNtIXZ35SYxITNto3bw5CMukjLy4iMx4SNyMTL0JXY0NXZyhSI", + value: "!(restart-325.12.2.9.0.poz-521a.wer-43e.res-3a4)!", + result: { + word: "restart", + correct: 12, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "21.11.2025", + }, + }, + { + date: "21.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0E2MtMXZy5iZ30ichdmLkFTNtIXZz5COmFTLk9WbugTYm1ichtmLzkDOhFTL6JHcuAjLwIjL04yMy4SNyMTL0JXY0NXZyhSI", + value: + "!(restart-325.23.4.20.0.prz-1a893.kar-fa8.mod-1f8.ser-51d.gar-7f.res-3a4)!", + result: { + word: "restart", + correct: 23, + position: 4, + incorrect: 20, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 47, + date: "21.11.2025", + }, + }, + { + date: "21.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0E2MtMXZy5SNklTLlJHcucjMtsWdl5CMukjLw4iNx4SNyMTL0JXY0NXZyhSI", + value: "!(restart-325.16.0.9.0.euk-27.pre-9d5.res-3a4)!", + result: { + word: "restart", + correct: 16, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "21.11.2025", + }, + }, + { + date: "21.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0E2MtMXZy5SYxczMtoncw5CMuYjLw4iMx4SNyMTL0JXY0NXZyhSI", + value: "!(restart-325.12.0.6.0.prz-371a.res-3a4)!", + result: { + word: "restart", + correct: 12, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "21.11.2025", + }, + }, + { + date: "21.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTYz0yclJnLlRDNtIXYm5CZm1yclpmLk1yclNmLjJjMtE2az5CNmFTLkl3duIjL0EjLx4iMy4SNyMTL0JXY0NXZyhSI", + value: + "!(restart-325.22.1.14.2.wyd-1f4.ska-22c.ces-d.jes-fd.far-44e.res-3a4)!", + result: { + word: "restart", + correct: 22, + position: 1, + incorrect: 14, + knownIncorrect: 2, + totalWords: 6, + totalLetters: 37, + date: "21.11.2025", + }, + }, + { + date: "21.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTYz0yclJnL0MDZt8Gcz5CMtkHaj5iZ2ITL65CN40SblJnLjVTMtUmcr5yY2EWLhJ3ZuAjL1EjLx4CNy4SNyMTL0JXY0NXZyhSI", + value: + "!(restart-325.24.1.15.0.gra-a6c.kre-15c.rem-84.z-26f.chy-0.spo-d34.res-3a4)!", + result: { + word: "restart", + correct: 24, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "21.11.2025", + }, + }, + { + date: "21.11.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTYz0yclJnLlRTMtUGdh5CNhVTL6JHdllmbuAjLwEjL04yMx4SNyMTL0JXY0NXZyhSI", + value: "!(restart-325.13.4.10.0.nietrz-5a4.ate-14e.res-3a4)!", + result: { + word: "restart", + correct: 13, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "21.11.2025", + }, + }, + { + date: "21.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0E2MtMXZy5iN2QTMtEGdz5CNiZTLhd3auAjLwEjL04SNx4SNyMTL0JXY0NXZyhSI", + value: "!(restart-325.15.4.10.0.kwa-6b4.sta-1466.res-3a4)!", + result: { + word: "restart", + correct: 15, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "21.11.2025", + }, + }, + { + date: "21.11.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0E2MtMXZy5iNhJWLllWbuAjLwEjLw4SMx4SNyMTL0JXY0NXZyhSI", + value: "!(restart-325.11.0.10.0.mie-ba6.res-3a4)!", + result: { + word: "restart", + correct: 11, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "21.11.2025", + }, + }, + { + date: "21.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTYz0yclJnLxMTL0NXZuATLzVHauQmMtAXYz5iMz0CajNjL0YzMtI3az5SO0ITLk9WbuAjL3EjL24iMy4SNyMTL0JXY0NXZyhSI", + value: + "!(restart-325.22.6.17.0.mod-249.skr-364.3ch-32.sap-2d.hus-0.est-31.res-3a4)!", + result: { + word: "restart", + correct: 22, + position: 6, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "21.11.2025", + }, + }, + { + date: "21.11.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQTYz0yclJnLy0icyVmLyUWYt4WYw5CMuYjLz4iMx4SNyMTL0JXY0NXZyhSI", + value: "!(restart-325.12.3.6.0.pan-ae2.err-2.res-3a4)!", + result: { + word: "restart", + correct: 12, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "21.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nietrudne-ale-jest-kilka-podobnych-26-10-2025-flag-pl-diffle-difflepl-32-litery-" +] = [ + { + date: "26.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOmFWLhJ3ZuQzY10SYytmLhdDOtQWYy5yYwgTLlB3cuAjLyEjLw4CMy4SO5ITLhx2buFmcnhSI", + value: "!(granola-299.20.0.12.0.spe-80c.rad-87a.kra-5c4.gra-af9)!", + result: { + word: "granola", + correct: 20, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "26.10.2025", + }, + }, + { + date: "26.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5YWYtEmcn5iZ0MDNtQ2bw5iNhJWLllWbuAjLzEjLy4yMx4SO5ITLhx2buFmcnhSI", + value: "!(granola-299.13.2.13.0.mie-ba6.pod-434f.gra-af9)!", + result: { + word: "granola", + correct: 13, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "26.10.2025", + }, + }, + { + date: "26.10.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkjZh1SYydmL3IjNtIHcz5CMugjLx4SMx4SO5ITLhx2buFmcnhSI", + value: "!(granola-299.11.1.8.0.spr-627.gra-af9)!", + result: { + word: "granola", + correct: 11, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "26.10.2025", + }, + }, + { + date: "26.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOmFWLhJ3ZuUGMi1yZh5mLmJmMtUHaj5CMugjLz4yMx4SO5ITLhx2buFmcnhSI", + value: "!(granola-299.13.3.8.0.chu-2bf.nag-b0e.gra-af9)!", + result: { + word: "granola", + correct: 13, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "26.10.2025", + }, + }, + { + date: "26.10.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkjZh5CZ4gjLyEjYucjN54SZmJmLjZTYtEmcn5CMuUjLw4COy4SO5ITLhx2buFmcnhSI", + value: "!(granola-299.28.0.5.0.gra-a6c.bfe.967.b12.88d.af9)!", + result: { + word: "granola", + correct: 28, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "26.10.2025", + }, + }, + { + date: "26.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkjZh1SYydmLkJDNtIHcz5CMucjLx4SMx4SO5ITLhx2buFmcnhSI", + value: "!(granola-299.11.1.7.0.spr-42d.gra-af9)!", + result: { + word: "granola", + correct: 11, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "26.10.2025", + }, + }, + { + date: "26.10.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOmFWLhJ3ZuUWMtUmcv5SMxATMtIXYw5CMucjLz4CNx4SO5ITLhx2buFmcnhSI", + value: "!(granola-299.14.3.7.0.par-1011.ore-1e.gra-af9)!", + result: { + word: "granola", + correct: 14, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "26.10.2025", + }, + }, + { + date: "26.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOmFWLhJ3ZuUTOtIXYm5SO0ITLk9WbuAjLwEjLz4CNx4SO5ITLhx2buFmcnhSI", + value: "!(granola-299.14.3.10.0.mod-249.far-95.gra-af9)!", + result: { + word: "granola", + correct: 14, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "26.10.2025", + }, + }, + { + date: "26.10.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkjZh1SYydmLlFmMt4WYy5CNiZTLhd3auAjLxEjLy4yMx4SO5ITLhx2buFmcnhSI", + value: "!(granola-299.13.2.11.0.kwa-6b4.ran-2ae.gra-af9)!", + result: { + word: "granola", + correct: 13, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "26.10.2025", + }, + }, + { + date: "26.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOmFWLhJ3ZuIzM40ich5yYkJTLy9GcuYWN20SYyJmLjFmMtEmcm5CMt4WYy5CNmFTLkl3duEjL1EjLy4CMz4SO5ITLhx2buFmcnhSI", + value: + "!(granola-299.30.2.15.1.wyd-1f4.ran-0.fra-2ac.bra-65f.por-2dc.ar-832.gra-af9)!", + result: { + word: "granola", + correct: 30, + position: 2, + incorrect: 15, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 47, + date: "26.10.2025", + }, + }, + { + date: "26.10.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOmFWLhJ3ZukTZx0iahJnLxYTMt0Gaj5CNhVTL6JHdllmbuAjL1EjLy4yNx4SO5ITLhx2buFmcnhSI", + value: "!(granola-299.17.2.15.0.nietrz-5a4.chm-161.raj-1e9.gra-af9)!", + result: { + word: "granola", + correct: 17, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "26.10.2025", + }, + }, + { + date: "26.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkjZh1SYydmLyMDOtIXYw5SZhJTLuFmcucjMtsWdl5CMukjLy4COx4SO5ITLhx2buFmcnhSI", + value: "!(granola-299.18.2.9.0.euk-27.ran-2ae.par-832.gra-af9)!", + result: { + word: "granola", + correct: 18, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "26.10.2025", + }, + }, + { + date: "26.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5YWYtEmcn5iM2ETLy9mZucDNy0iavdnLzkDOhFTL6JHcuAjL2EjLz4CNx4SO5ITLhx2buFmcnhSI", + value: "!(granola-299.14.3.16.0.prz-1a893.woj-247.for-162.gra-af9)!", + result: { + word: "granola", + correct: 14, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "26.10.2025", + }, + }, + { + date: "26.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOmFWLhJ3ZuYTN00yZuFmLjRTYt4WYt5SYxITNto3bw5CMukjLy4iNx4SO5ITLhx2buFmcnhSI", + value: "!(granola-299.16.2.9.0.poz-521a.man-a4c.ang-456.gra-af9)!", + result: { + word: "granola", + correct: 16, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "26.10.2025", + }, + }, + { + date: "26.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5YWYtEmcn5yYtMWe05iN2ITLhJXduUWNx0CbvJnL0ATNtI3bm5iYllTLz92auAjLxEjL14SOx4SO5ITLhx2buFmcnhSI", + value: + "!(granola-299.19.5.11.0.kos-9eb.for-504.rol-15e.ura-266.tyc-c.gra-af9)!", + result: { + word: "granola", + correct: 19, + position: 5, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "26.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nietrudne-serio-slowo-05-12-2025-flag-pl-diffle-difflepl-grywebowe-50-liter-w-8-" +] = [ + { + date: "05.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZmLyMmL2kTLp5CMtMmYuATLhNmL2QTLh1mLyYzMto3Yv5SY5kTMtIXYw5CMuETMuUjL0MjL5MzMtk2auF2YllmYvhSI", + value: + "!(obiecanki-339.34.5.11.0.par-199a.ocz-362.ma-46.ca-0.bc-0.i-96.c2.fa)!", + result: { + word: "obiecanki", + correct: 34, + position: 5, + incorrect: 11, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 50, + date: "05.12.2025", + }, + }, + { + date: "05.12.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYm1Sai5CMtU2Yv5CN0MTL3h2YuMzMtEGbukDNx0Saw9mLiVWOtM3br5CMuETMuUjL1IjL5MzMtk2auF2YllmYvhSI", + value: + "!(obiecanki-339.25.5.11.0.kos-9eb.opi-149.la-33.chw-344.oce-0.bi-fa)!", + result: { + word: "obiecanki", + correct: 25, + position: 5, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 41, + date: "05.12.2025", + }, + }, + { + date: "05.12.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmZtkmYv5SYtM2br5CMyETLjVWbuUGZtcWZs5SYxczMtoncw5CMuUTMuEjL3IjL5MzMtk2auF2YllmYvhSI", + value: "!(obiecanki-339.27.1.15.0.prz-371a.leg-de.mec-120.koc-a.obi-fa)!", + result: { + word: "obiecanki", + correct: 27, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 43, + date: "05.12.2025", + }, + }, + { + date: "05.12.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZWLp5yY1QTLjJ2bugDZz0ibv1mLhRmMy0yavBnLx4SOuUjLzIjL5MzMtk2auF2YllmYvhSI", + value: "!(obiecanki-339.23.5.9.1.pok-22da.mon-3d8.obc-45c.i-fa)!", + result: { + word: "obiecanki", + correct: 23, + position: 5, + incorrect: 9, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 37, + date: "05.12.2025", + }, + }, + { + date: "05.12.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmZtkmYv5CMzYTLuFmYuQmNy0yavRmL4ITMt8Waw5SOjJTMtEmc05CZ20yYvJmLmJmMtUHaj5CMuMTMuUjL4IjL5MzMtk2auF2YllmYvhSI", + value: + "!(obiecanki-339.28.5.13.0.chu-2bf.boc-6d.tra-12c9.pio-128.dok-26d.ban-630.obi-fa)!", + result: { + word: "obiecanki", + correct: 28, + position: 5, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 46, + date: "05.12.2025", + }, + }, + { + date: "05.12.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmZtkmYv5iNk1yYvtmLkJDNtIHcz5CMuATMuIjL5EjL5MzMtk2auF2YllmYvhSI", + value: "!(obiecanki-339.19.2.10.0.spr-42d.koc-d6.obi-fa)!", + result: { + word: "obiecanki", + correct: 19, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "05.12.2025", + }, + }, + { + date: "05.12.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYm1Sai9mLxIGNtI3bw5yN2ITLsFGaucjMtsWdl5iMuATMuUjLzIjL5MzMtk2auF2YllmYvhSI", + value: "!(obiecanki-339.23.5.10.2.euk-27.hal-267.por-4b1.obi-fa)!", + result: { + word: "obiecanki", + correct: 23, + position: 5, + incorrect: 10, + knownIncorrect: 2, + totalWords: 4, + totalLetters: 38, + date: "05.12.2025", + }, + }, + { + date: "05.12.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYm5iNyMTLpJ2buEWM20SZp1mL0EWNtonc0VWau5CMuMTMuUjLyIjL5MzMtk2auF2YllmYvhSI", + value: "!(obiecanki-339.22.5.13.0.nietrz-5a4.mie-61a.obi-326.fa)!", + result: { + word: "obiecanki", + correct: 22, + position: 5, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 40, + date: "05.12.2025", + }, + }, + { + date: "05.12.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYm1Sai9mLklTMtwWai5SYtUWaw5iNyETLjVWbuITZx0ibhNnLjZTYtEmcn5CMuATMuQjL4IjL5MzMtk2auF2YllmYvhSI", + value: + "!(obiecanki-339.28.4.10.0.gra-a6c.san-1e2.mec-126.pie-a.bil-19d.obi-fa)!", + result: { + word: "obiecanki", + correct: 28, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 42, + date: "05.12.2025", + }, + }, + { + date: "05.12.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZWLpJ2buQjY20SY3tmLw4COuQjLyEjL5MzMtk2auF2YllmYvhSI", + value: "!(obiecanki-339.12.4.8.0.kwa-6b4.obi-fa)!", + result: { + word: "obiecanki", + correct: 12, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 24, + date: "05.12.2025", + }, + }, + { + date: "05.12.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZWLpJ2buIGMx0ibhdnL4QTNtUWaw5CMuATMuIjL2EjL5MzMtk2auF2YllmYvhSI", + value: "!(obiecanki-339.16.2.10.0.pie-548.wan-10b.obi-fa)!", + result: { + word: "obiecanki", + correct: 16, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "05.12.2025", + }, + }, + { + date: "05.12.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYm1SaucTLlJ2buMjYtw2bi5CNx0yYvNnL5QjMtQ2bt5CMuATMuMjL0IjL5MzMtk2auF2YllmYvhSI", + value: "!(obiecanki-339.24.3.10.0.mod-249.soc-14.bol-b3.obe-7.i-fa)!", + result: { + word: "obiecanki", + correct: 24, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "05.12.2025", + }, + }, + { + date: "05.12.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmZtkmYv5CNx0iaptmLiJTLwVGbuIzYz0ibhNnL0YWMtQWe35CMuATMuIjL2IjL5MzMtk2auF2YllmYvhSI", + value: "!(obiecanki-339.26.2.10.0.wyd-1f4.san-3c2.lep-2b.kij-14.obi-fa)!", + result: { + word: "obiecanki", + correct: 26, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "05.12.2025", + }, + }, + { + date: "05.12.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZWLpJ2buYTYi1SZp1mLw4iNuMjL0EjL5MzMtk2auF2YllmYvhSI", + value: "!(obiecanki-339.14.3.6.0.mie-ba6.obi-fa)!", + result: { + word: "obiecanki", + correct: 14, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "05.12.2025", + }, + }, + { + date: "05.12.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmZtkmYv5yM5gTYx0ieyBnLw4COuIjLyEjL5MzMtk2auF2YllmYvhSI", + value: "!(obiecanki-339.12.2.8.0.prz-1a893.obi-fa)!", + result: { + word: "obiecanki", + correct: 12, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "05.12.2025", + }, + }, + { + date: "05.12.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYm1Sai9mLhFjM10ievBnLw4CNuIjLzEjL5MzMtk2auF2YllmYvhSI", + value: "!(obiecanki-339.13.2.4.0.poz-521a.obi-fa)!", + result: { + word: "obiecanki", + correct: 13, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "05.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/no-calkiem-zgrabnie-poszlo-12-12-2025-diffle-difflepl-grywebowe-20-liter-w-3-slo" +] = [ + { + date: "12.12.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwEWLzV2duUjZ00CajNjLwYWOtM3br5CMucjLx4iMx4iN0MTL55GblNXZ3hSI", + value: "!(weselny-346.12.1.7.0.kos-9f0.3ch-4f5.wes-a0)!", + result: { + word: "weselny", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "12.12.2025", + }, + }, + { + date: "12.12.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMh1ycuQjNx0ibldnLmJmMtUHaj5CMukjLx4yMx4iN0MTL55GblNXZ3hSI", + value: "!(weselny-346.13.1.9.0.chu-2bf.wen-164.s-a0)!", + result: { + word: "weselny", + correct: 13, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "12.12.2025", + }, + }, + { + date: "12.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwEWLz5COwITLuVmLhhzNtIXY35CMugjLx4iMx4iN0MTL55GblNXZ3hSI", + value: "!(weselny-346.12.1.8.0.war-78a.en-208.s-a0)!", + result: { + word: "weselny", + correct: 12, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "12.12.2025", + }, + }, + { + date: "12.12.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATYtMnL0YTMt4WZ35SYkJjMts2bw5CMukjLy4yMx4iN0MTL55GblNXZ3hSI", + value: "!(weselny-346.13.2.9.0.pok-22da.wen-164.s-a0)!", + result: { + word: "weselny", + correct: 13, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "12.12.2025", + }, + }, + { + date: "12.12.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwEWLzV2duQmM00icwNnLw4COuIjL54iN0MTL55GblNXZ3hSI", + value: "!(weselny-346.9.2.8.0.spr-42d.wes-a0)!", + result: { + word: "weselny", + correct: 9, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "12.12.2025", + }, + }, + { + date: "12.12.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwEWLzV2ducTMy0CblNmL1EWYtkmek5iMlFWLuFGcuAjLxEjLz4SNx4iN0MTL55GblNXZ3hSI", + value: "!(weselny-346.15.3.11.0.pan-ae2.dzi-aa5.cel-217.wes-a0)!", + result: { + word: "weselny", + correct: 15, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "12.12.2025", + }, + }, + { + date: "12.12.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATYtMnL2EjMt4WZ35CNhVTL6JHdllmbuAjLwEjLz4yMx4iN0MTL55GblNXZ3hSI", + value: "!(weselny-346.13.3.10.0.nietrz-5a4.wen-216.s-a0)!", + result: { + word: "weselny", + correct: 13, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "12.12.2025", + }, + }, + { + date: "12.12.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATYtMXZ35CZ00yclxmL4QTNtUWaw5CMukjLx4yMx4iN0MTL55GblNXZ3hSI", + value: "!(weselny-346.13.1.9.0.pie-548.les-4d.wes-a0)!", + result: { + word: "weselny", + correct: 13, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "12.12.2025", + }, + }, + { + date: "12.12.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMh1ycl5SO1cTLsl3duImNx0ibl1mL3ITLrVXZuAjLxEjLx4yNx4iN0MTL55GblNXZ3hSI", + value: "!(weselny-346.17.1.11.0.euk-27.men-16b.wyl-759.es-a0)!", + result: { + word: "weselny", + correct: 17, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "12.12.2025", + }, + }, + { + date: "12.12.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMh1ycldnLw0SdstmLhVTL05yMi1CZlNnLwEmMt4WZw5yY2EWLhJ3ZuAjLxEjLy4COx4iN0MTL55GblNXZ3hSI", + value: "!(weselny-346.18.2.11.0.gra-a6c.pen-2a0.sed-b3.t-5a.klu-0.wes-a0)!", + result: { + word: "weselny", + correct: 18, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "12.12.2025", + }, + }, + { + date: "12.12.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATYtMXZ35yM5gTYx0ieyBnLw4SOuIjL54iN0MTL55GblNXZ3hSI", + value: "!(weselny-346.9.2.9.0.prz-1a893.wes-a0)!", + result: { + word: "weselny", + correct: 9, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "12.12.2025", + }, + }, + { + date: "12.12.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMh1ycldnL2EmYtUWat5CMukjLx4SMx4iN0MTL55GblNXZ3hSI", + value: "!(weselny-346.11.1.9.0.mie-ba6.wes-a0)!", + result: { + word: "weselny", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "12.12.2025", + }, + }, + { + date: "12.12.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwEWLz5iNxITLuVmL0YWMtQWe35CMuUjLx4CNx4iN0MTL55GblNXZ3hSI", + value: "!(weselny-346.14.1.5.0.wyd-1f4.en-216.s-a0)!", + result: { + word: "weselny", + correct: 14, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "12.12.2025", + }, + }, + { + date: "12.12.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwEWLzV2duEWNtQXZz5SYxITNto3bw5CMucjLy4yMx4iN0MTL55GblNXZ3hSI", + value: "!(weselny-346.13.2.7.0.poz-521a.set-5a.wes-a0)!", + result: { + word: "weselny", + correct: 13, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "12.12.2025", + }, + }, + { + date: "12.12.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATYtMnLxETMtwWZ35iYkJTL3VGbuEWM3MTL6JHcuAjLwEjLz4iNx4iN0MTL55GblNXZ3hSI", + value: "!(weselny-346.16.3.10.0.prz-371a.lew-2db.wel-111.s-a0)!", + result: { + word: "weselny", + correct: 16, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "12.12.2025", + }, + }, + { + date: "12.12.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwEWLzV2duUzNtcXZw5CNiZTLhd3auAjLxEjLz4yMx4iN0MTL55GblNXZ3hSI", + value: "!(weselny-346.13.3.11.0.kwa-6b4.pew-75.wes-a0)!", + result: { + word: "weselny", + correct: 13, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "12.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/o-zaskakujaco-fajne-slowo-03-10-2025-flag-pl-diffle-difflepl-grywebowe-41-liter-" +] = [ + { + date: "03.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ITLz5SMx0iYlxmL2UTMtIWZk5SNm1icldnLmVjNtoXZiVWau5iMuUTMuMjLzIjL2cjMtk2azpWaiNXZshSI", + value: "!(lesbijski-276.23.3.15.2.niebez-65f.wer-f5.deb-156.leb-11.s-28)!", + result: { + word: "lesbijski", + correct: 23, + position: 3, + incorrect: 15, + knownIncorrect: 2, + totalWords: 5, + totalLetters: 41, + date: "03.10.2025", + }, + }, + { + date: "03.10.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ITLzVGbuIGNtkGbl5SNxQTLllWbuQzMtsWdq5SYkJjMts2bw5CMuETMuIjL1IjL2cjMtk2azpWaiNXZshSI", + value: "!(lesbijski-276.25.2.11.0.pok-22da.juk-34.mie-415.eli-4b.les-28)!", + result: { + word: "lesbijski", + correct: 25, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "03.10.2025", + }, + }, + { + date: "03.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOy0yclxmL1EDNtUWat5yN40ialBnLmJmMtUHaj5CMuETMuEjL5EjL2cjMtk2azpWaiNXZshSI", + value: "!(lesbijski-276.19.1.11.0.chu-2bf.pej-87.mie-415.les-28)!", + result: { + word: "lesbijski", + correct: 19, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "03.10.2025", + }, + }, + { + date: "03.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ITLzVGbuYTO00CblhmLkJDNtIHcz5CMuATMuIjL1EjL2cjMtk2azpWaiNXZshSI", + value: "!(lesbijski-276.15.2.10.0.spr-42d.hel-496.les-28)!", + result: { + word: "lesbijski", + correct: 15, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "03.10.2025", + }, + }, + { + date: "03.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOy4yNm1yclxmLzATMtUmez5yNy0ya1VmLw4COuIjLwIjL2cjMtk2azpWaiNXZshSI", + value: "!(lesbijski-276.20.2.8.0.euk-27.sze-103.les-f7.28)!", + result: { + word: "lesbijski", + correct: 20, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "03.10.2025", + }, + }, + { + date: "03.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4IjLwITLzVGbuImMtoWar5CZ2UTLllmYukDNy0CZv1mLw4SOuUjL1IjL2cjMtk2azpWaiNXZshSI", + value: "!(lesbijski-276.25.5.9.0.mod-249.bie-56d.kij-2b.les-20.28)!", + result: { + word: "lesbijski", + correct: 25, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "03.10.2025", + }, + }, + { + date: "03.10.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjMtMXZuEmMx0iY15yMi1ycpxmL0EWNtonc0VWau5CMuQTMuMjLyIjL2cjMtk2azpWaiNXZshSI", + value: "!(lesbijski-276.22.3.14.0.nietrz-5a4.lis-b3.ub-12a.es-28)!", + result: { + word: "lesbijski", + correct: 22, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 39, + date: "03.10.2025", + }, + }, + { + date: "03.10.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjMuAjMtMXZs5SM30Cdp5COx0Sa6JmLyUWMtwGaj5iZ1ETLiVHbuMzNx0ybsJmL1cTL3VGcuMTYt0WYn5CMuQTMuEjL1MjL2cjMtk2azpWaiNXZshSI", + value: + "!(lesbijski-276.35.1.14.0.gam-a3.pew-75.blo-173.lub-15f.chl-1e2.bzi-18.it-71.les-20.28)!", + result: { + word: "lesbijski", + correct: 35, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 50, + date: "03.10.2025", + }, + }, + { + date: "03.10.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOy4yM0ETLzVGbuIGM10CajNjLwMWLq5yYi5CMj1yalxmL5kDNtUWa35iZx0Cb5JnLyUWYt4WYw5CMuMTMuIjLzMjL2cjMtk2azpWaiNXZshSI", + value: + "!(lesbijski-276.33.2.13.0.pan-ae2.ryl-1f.wie-499.lek-c0.bc.j-c0.3ch-50b.les-143.28)!", + result: { + word: "lesbijski", + correct: 33, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 48, + date: "03.10.2025", + }, + }, + { + date: "03.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjMtMXZs5yM2ETLsVmYuQDO5ETLt9GcuYTO00CblhmL5UTMts2cl5SOz0CdlNnL0YWMtQWe35CMuQTMuQjLzMjL2cjMtk2azpWaiNXZshSI", + value: + "!(lesbijski-276.33.4.14.0.wyd-1f4.set-39.esk-159.hel-496.pom-1984.bel-163.les-28)!", + result: { + word: "lesbijski", + correct: 33, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 51, + date: "03.10.2025", + }, + }, + { + date: "03.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjMuAjMtMXZs5CMk1iavJmLzYTLzV2YugzNtMXZq5SYxczMtoncw5CMuQTMuEjLxMjL2cjMtk2azpWaiNXZshSI", + value: + "!(lesbijski-276.31.1.14.0.prz-371a.jes-78.ces-63.boj-d0.les-20.28)!", + result: { + word: "lesbijski", + correct: 31, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 46, + date: "03.10.2025", + }, + }, + { + date: "03.10.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOy0yclxmLjNjMx0SZpBnL0ImNtE2dr5CMuITMuMjL1EjL2cjMtk2azpWaiNXZshSI", + value: "!(lesbijski-276.15.3.12.0.kwa-6b4.pie-123c.les-28)!", + result: { + word: "lesbijski", + correct: 15, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "03.10.2025", + }, + }, + { + date: "03.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjMtMXZs5CNlhTLllmYuYTYi1SZp1mLw4COuMjL4EjL2cjMtk2azpWaiNXZshSI", + value: "!(lesbijski-276.18.3.8.0.mie-ba6.bie-8e4.les-28)!", + result: { + word: "lesbijski", + correct: 18, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "03.10.2025", + }, + }, + { + date: "03.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4ITLzVGbucDZy0SZpJmLwMWLq5yNyITLrVGbuMTO4EWMtoncw5CMuMTMuEjL0IjL2cjMtk2azpWaiNXZshSI", + value: "!(lesbijski-276.24.1.13.0.prz-1a893.lek-227.j-c0.bie-2d7.les-28)!", + result: { + word: "lesbijski", + correct: 24, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "03.10.2025", + }, + }, + { + date: "03.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjMtMXZs5iM5YTLllmYuYTYy0SZyZmLhFjM10ievBnLw4COuMjLxIjL2cjMtk2azpWaiNXZshSI", + value: "!(lesbijski-276.21.3.8.0.poz-521a.fre-2a6.bie-692.les-28)!", + result: { + word: "lesbijski", + correct: 21, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "03.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/oj-w-bolach-sie-rodzilo-08-11-2025-diffle-difflepl-grywebowe-40-liter-w-6-slowac" +] = [ + { + date: "08.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN3cTLsFmLhhjMtkmYuYmYy0icuEWOt4WZ65iZjNTLoN2MuMDNzETLsl3duAjLxEjLy4yNy4iMxMTLllmbDJUJ1MUJlxWY6hSI", + value: + "!(zależnie-312.27.2.11.0.wyl-1343.3ch-3cf.zen-9a.r-2bf.bi-28a.al-777)!", + result: { + word: "zależnie", + correct: 27, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "08.11.2025", + }, + }, + { + date: "08.11.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3czNtwmLxQWNtoXYuMmM50SaupnLkljMtUHaj5iN0UWLwN3duAjL5EjLy4yMy4iMxMTLllmbDJUJ1MUJlxWY6hSI", + value: "!(zależnie-312.23.2.19.0.wsp-e46.chu-29d.zni-92c.az-5d1.l-777)!", + result: { + word: "zależnie", + correct: 23, + position: 2, + incorrect: 19, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 44, + date: "08.11.2025", + }, + }, + { + date: "08.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN3cTLsFmeugjMtQXas5yNzMTL6VWbuADOj1ieh5mL3UWL1h2YuEGMxMTLvJHcuI2YmFTLiFmeuIzMzETLzl3duAjLxIjLy4iNy4iMxMTLllmbDJUJ1MUJlxWY6hSI", + value: + "!(zależnie-312.26.2.21.0.wys-1332.zab-1fcb.pro-310a.chu-e7.naz-c80.mez-337.lit-28.zal-777)!", + result: { + word: "zależnie", + correct: 26, + position: 2, + incorrect: 21, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 49, + date: "08.11.2025", + }, + }, + { + date: "08.11.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpczN30CbuEDZ10iehpnL2EmYtUWat5CMukjLy4CMy4iMxMTLllmbDJUJ1MUJlxWY6hSI", + value: "!(zależnie-312.20.2.9.0.mie-ba6.zaz-5d1.l-777)!", + result: { + word: "zależnie", + correct: 20, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "08.11.2025", + }, + }, + { + date: "08.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3czNuIzN34CM3cjL5gzNtwWY65CZ4ETLwNXYuAjLwEjLx4CMz4iMxMTLllmbDJUJ1MUJlxWY6hSI", + value: "!(zależnie-312.30.1.10.0.asp-18d.zal-789.770.772.777)!", + result: { + word: "zależnie", + correct: 30, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "08.11.2025", + }, + }, + { + date: "08.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN3cTLsFmeuMWZx0SasZmLjNDNtg2Yz4SOzITMtIHdz5SO5kTLi5yM3UWLn5iN4QWLt5iM1M2MtMnL4UWNt4WY65iZiJTL1h2YuEjLwMjLz4iNz4iMxMTLllmbDJUJ1MUJlxWY6hSI", + value: + "!(zależnie-312.36.3.30.1.chu-2bf.zan-5e8.s-3c52.m-d86.g-e73.b-999.str-1239.3ch-43c.fli-1ec.zal-777)!", + result: { + word: "zależnie", + correct: 36, + position: 3, + incorrect: 30, + knownIncorrect: 1, + totalWords: 10, + totalLetters: 69, + date: "08.11.2025", + }, + }, + { + date: "08.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpczN34iN3cTLsFmeuMTO4EWMtoncw5CMucjLx4CMy4iMxMTLllmbDJUJ1MUJlxWY6hSI", + value: "!(zależnie-312.20.1.7.0.prz-1a893.zal-776.777)!", + result: { + word: "zależnie", + correct: 20, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "08.11.2025", + }, + }, + { + date: "08.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN3cjL2czNtwWY65CZ0ETLsVWbuY2Yx0iehpmLwITLhp3YuATLnVnZucDM50SYsJmL5MjMx0ic0NnL2QWOtkmb65iZjNTLoN2MuQWNkFTLllGcuAjL2IjL24COy4iMxMTLllmbDJUJ1MUJlxWY6hSI", + value: + "!(zależnie-312.28.6.26.0.pie-1d5d.3ch-3cf.zni-9d6.str-1239.bla-907.fug-0.cza-20.jaz-1cf.mel-14d.zal-776.777)!", + result: { + word: "zależnie", + correct: 28, + position: 6, + incorrect: 26, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 60, + date: "08.11.2025", + }, + }, + { + date: "08.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpczN30CbhpnL5MTLhpXYuQTMtUXZm5iN5YTLs9meuAjLxEjLz4iNx4iMxMTLllmbDJUJ1MUJlxWY6hSI", + value: "!(zależnie-312.16.3.11.0.zol-696.feu-14.aza-39.zal-777)!", + result: { + word: "zależnie", + correct: 16, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "08.11.2025", + }, + }, + { + date: "08.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3czNtwmL1cTMx0ycuUzM2ETLy5iNjNTLhFmL2kTL5pneuAjL0EjLy4COy4iMxMTLllmbDJUJ1MUJlxWY6hSI", + value: "!(zależnie-312.28.2.14.0.zzy-96.aa-3c6.r-1635.s-1175.l-777)!", + result: { + word: "zależnie", + correct: 28, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 44, + date: "08.11.2025", + }, + }, + { + date: "08.11.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyN3cTLs5iM1gzMtMnLmVWMtoXY65COiZTLlpncuQzMzETLsl3duEjL1EjLy4COy4iMxMTLllmbDJUJ1MUJlxWY6hSI", + value: "!(zależnie-312.28.2.15.1.wyl-1334.rze-6b8.zaz-1ef.s-3852.l-777)!", + result: { + word: "zależnie", + correct: 28, + position: 2, + incorrect: 15, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 45, + date: "08.11.2025", + }, + }, + { + date: "08.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3czNtwmLxQWNtoXYugTOt8me65CMuYjLx4COx4iMxMTLllmbDJUJ1MUJlxWY6hSI", + value: "!(zależnie-312.18.1.6.0.zzo-98.az-5d1.l-777)!", + result: { + word: "zależnie", + correct: 18, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "08.11.2025", + }, + }, + { + date: "08.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3czNtwmLhBTYtsmL1MjNx0icuImNiNTLz5iN4QWLt5iMxIWL3FmeuMDNiRTLk9GcuAjL2EjLx4SNz4iMxMTLllmbDJUJ1MUJlxWY6hSI", + value: + "!(zależnie-312.35.1.16.0.pod-4b43.zaw-b12.m-d86.s-3b6b.r-1635.k-a0a.l-777)!", + result: { + word: "zależnie", + correct: 35, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 52, + date: "08.11.2025", + }, + }, + { + date: "08.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpczN30CbuEWMxETLk5COiFWL6FmL4kTLvpneuAjLwEjLx4yMy4iMxMTLllmbDJUJ1MUJlxWY6hSI", + value: "!(zależnie-312.23.1.10.0.zzo-98.az-ab8.d-111a.l-777)!", + result: { + word: "zależnie", + correct: 23, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "08.11.2025", + }, + }, + { + date: "08.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3czNtwmLxQWNtoXYuYWYz0SYu5yY3ETLiVmeuYTN3MTL6JHcuAjLyEjL04iNy4iMxMTLllmbDJUJ1MUJlxWY6hSI", + value: "!(zależnie-312.26.4.12.0.prz-3756.zeb-17c.na-3af.az-5d1.l-777)!", + result: { + word: "zależnie", + correct: 26, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "08.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/padam-20-12-2025-flag-pl-diffle-difflepl-grywebowe-32-litery-w-5-slowach-large-g" +] = [ + { + date: "20.12.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKy0ibvtmLwMTOt82az5yMzIWMtEmc05iMiRjMtw2bw5iZiJTL1h2YuAjL2EjLw4iNx4CN1MTL3gTJ0MUJh52brhSI", + value: "!(konać-354.16.0.16.0.chu-2bf.pol-24b2.tra-1b33.sko-930.kon-2)!", + result: { + word: "konać", + correct: 16, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "20.12.2025", + }, + }, + { + date: "20.12.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKy0ibvtmLxcTNts2bk5CMzkTLvt2cuUmYtUHbw5yMyUTLvJnYuMDNzETLsl3duAjL4EjLx4CMy4CN1MTL3gTJ0MUJh52brhSI", + value: + "!(konać-354.20.1.18.0.wyl-1343.bro-523.plu-be.sko-930.dok-571.kon-2)!", + result: { + word: "konać", + correct: 20, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "20.12.2025", + }, + }, + { + date: "20.12.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKy0ibvtmLzQ2Mts2bk5iNhJWLllWbuAjL0EjLz4CMx4CN1MTL3gTJ0MUJh52brhSI", + value: "!(konać-354.10.3.14.0.mie-ba6.dok-3d3.kon-2)!", + result: { + word: "konać", + correct: 10, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "20.12.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMt42br5SZ40ibvRnLmV2YtUmc65CMugjLx4CMx4CN1MTL3gTJ0MUJh52brhSI", + value: "!(konać-354.10.1.8.0.zre-cef.ton-8e.kon-2)!", + result: { + word: "konać", + correct: 10, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + }, + }, + { + date: "20.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMt42br5CMzkTLvt2cuUDZ1ETLllGcuAjLxEjLx4yMx4CN1MTL3gTJ0MUJh52brhSI", + value: "!(konać-354.13.1.11.0.pie-15d5.sko-930.kon-2)!", + result: { + word: "konać", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "20.12.2025", + }, + }, + { + date: "20.12.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITLu92auQGOx0CczFmLw4COuEjL44CN1MTL3gTJ0MUJh52brhSI", + value: "!(konać-354.8.1.8.0.asp-18d.kon-2)!", + result: { + word: "konać", + correct: 8, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "20.12.2025", + }, + }, + { + date: "20.12.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITLu5SN10yYuIjMtA3br5iMzMTMtMXe35CMukjLw4SNx4CN1MTL3gTJ0MUJh52brhSI", + value: "!(konać-354.15.0.9.0.wys-1332.kop-22.c-55.n-2)!", + result: { + word: "konać", + correct: 15, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "20.12.2025", + }, + }, + { + date: "20.12.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKy0ibvtmL1EWNtonc0VWau5CMuETMuIjL34CN1MTL3gTJ0MUJh52brhSI", + value: "!(konać-354.7.2.11.0.nietrz-5a5.kon-2)!", + result: { + word: "konać", + correct: 7, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "20.12.2025", + }, + }, + { + date: "20.12.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKy0ibvtmLwMWNts2bw5CNzMTMtwWe35CMuATMuMjL44CN1MTL3gTJ0MUJh52brhSI", + value: "!(konać-354.8.3.10.0.wyl-1334.pok-5c0.kon-2)!", + result: { + word: "konać", + correct: 8, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "20.12.2025", + }, + }, + { + date: "20.12.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKy0ibvtmL3UTLu9GduEWMtc2bi5iN0UWLwN3duAjL4EjLx4yMx4CN1MTL3gTJ0MUJh52brhSI", + value: "!(konać-354.13.1.18.0.wsp-e46.bog-1a.ton-57.kon-2)!", + result: { + word: "konać", + correct: 13, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "20.12.2025", + }, + }, + { + date: "20.12.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMt42br5CZxczMtoncw5CMuATMuAjL34CN1MTL3gTJ0MUJh52brhSI", + value: "!(konać-354.7.0.10.0.prz-371d.kon-2)!", + result: { + word: "konać", + correct: 7, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "20.12.2025", + }, + }, + { + date: "20.12.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMt42br5CZjVTL5p3cucjMtw2bw5SO1YTMtwWY65CMukjLx4CNx4CN1MTL3gTJ0MUJh52brhSI", + value: "!(konać-354.14.1.9.0.zal-1659.pol-27.szy-5cd.kon-2)!", + result: { + word: "konać", + correct: 14, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "20.12.2025", + }, + }, + { + date: "20.12.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMt42br5CM3YTLhB3bugTOt8me65CMukjLy4SMx4CN1MTL3gTJ0MUJh52brhSI", + value: "!(konać-354.11.2.9.0.zzo-98.opa-670.kon-2)!", + result: { + word: "konać", + correct: 11, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "20.12.2025", + }, + }, + { + date: "20.12.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITLu92auUTNy0iavdnLzkDOhFTL6JHcuAjL4EjLw4CMx4CN1MTL3gTJ0MUJh52brhSI", + value: "!(konać-354.10.0.18.0.prz-1a893.woj-255.kon-2)!", + result: { + word: "konać", + correct: 10, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "20.12.2025", + }, + }, + { + date: "20.12.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMt42br5SMtEGbv5SO00CdvdmLmZWLvl2cuMDNiRTLk9GcuAjL1EjLw4yNx4CN1MTL3gTJ0MUJh52brhSI", + value: "!(konać-354.17.0.15.0.pod-4b43.sio-ff.got-49.ola-1.kon-2)!", + result: { + word: "konać", + correct: 17, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "20.12.2025", + }, + }, + { + date: "20.12.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpITLu92auUzN2ETLrl3duAzM50ybrNnLkRDNx0yavBnL4kTLvpneuAjLwEjLw4yMy4CN1MTL3gTJ0MUJh52brhSI", + value: "!(konać-354.23.0.10.0.zzo-98.pok-144d.sko-930.wyk-1675.kon-2)!", + result: { + word: "konać", + correct: 23, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "20.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/pierwsze-slowo-weszlo-pieknie-wink-31-10-2025-diffle-difflepl-grywebowe-28-liter" +] = [ + { + date: "31.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjFjMtAXYw5SMlRWMtcWYugDNk1SZypnLzQzMx0Cb5dnLw4iNx4iMuATMuQDMz0yQCVSNDVSZpBXYwhSI", + value: "!(papież-304.10.2.16.0.wyl-1343.zre-d48.ag-1de1.pap-21c)!", + result: { + word: "papież", + correct: 10, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "31.10.2025", + }, + }, + { + date: "31.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWMy0CchBnLw0CZ1RnLkRTOtUWai5CM20iehdXZp5mLw4SMx4SMuUTMuQDMz0yQCVSNDVSZpBXYwhSI", + value: "!(papież-304.15.1.11.0.niewaz-60.bie-94d.tud-0.pap-21c)!", + result: { + word: "papież", + correct: 15, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "31.10.2025", + }, + }, + { + date: "31.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWMy0CchBnLkhTMtA3ch5CMukjLw4SOuQDMz0yQCVSNDVSZpBXYwhSI", + value: "!(papież-304.9.0.9.0.asp-18d.pap-21c)!", + result: { + word: "papież", + correct: 9, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "31.10.2025", + }, + }, + { + date: "31.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWMy0CcuADZt0WYw5iZ3YTLhJ3auYmYy0SdoNmLw4yNx4SMuITMuQDMz0yQCVSNDVSZpBXYwhSI", + value: "!(papież-304.12.1.17.0.chu-2bf.kra-67f.pam-d0.p-21c)!", + result: { + word: "papież", + correct: 12, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "31.10.2025", + }, + }, + { + date: "31.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjFjMtAXYukTYkFTLs9mLkFzNz0ieyBnLw4SMx4SMuMTMuQDMz0yQCVSNDVSZpBXYwhSI", + value: "!(papież-304.13.1.11.0.prz-371d.ol-1da9.ap-21c)!", + result: { + word: "papież", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "31.10.2025", + }, + }, + { + date: "31.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYxITLwFGcuETZkFTLnFmL4kTLvpneuAjL54SMuATMuQDMz0yQCVSNDVSZpBXYwhSI", + value: "!(papież-304.10.1.9.0.zzo-98.ag-1de1.pap-21c)!", + result: { + word: "papież", + correct: 10, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "31.10.2025", + }, + }, + { + date: "31.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYxITLwFGcucTMtIWZn5CNy0SYpBnL1UjMto2b35yM5gTYx0ieyBnLw4SNy4yMuETMuQDMz0yQCVSNDVSZpBXYwhSI", + value: "!(papież-304.11.3.25.0.prz-1a893.woj-255.pia-24.geb-17.pap-21c)!", + result: { + word: "papież", + correct: 11, + position: 3, + incorrect: 25, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "31.10.2025", + }, + }, + { + date: "31.10.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWMy0Cch5SZ0UTLvJnL3ITZx0SZpBnL0MzMx0Cb5dnLw4yMx4CMuITMuQDMz0yQCVSNDVSZpBXYwhSI", + value: "!(papież-304.12.0.13.0.wyl-1334.pie-1e27.ro-54e.ap-21c)!", + result: { + word: "papież", + correct: 12, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "31.10.2025", + }, + }, + { + date: "31.10.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWMy0Cch5CM1ATMtEGbuMWN10SZpBnLw4SMx4SMuMTMuQDMz0yQCVSNDVSZpBXYwhSI", + value: "!(papież-304.13.1.11.0.pie-55c.la-1050.ap-21c)!", + result: { + word: "papież", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "31.10.2025", + }, + }, + { + date: "31.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWMy0CchBnL2QWLhJ3ZuYTYi1SZp1mLw4CNx4SMuITMuQDMz0yQCVSNDVSZpBXYwhSI", + value: "!(papież-304.12.1.14.0.mie-ba6.gra-d6.pap-21c)!", + result: { + word: "papież", + correct: 12, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "31.10.2025", + }, + }, + { + date: "31.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWMy0CchBnLjJjZx0iYhpnLwkTLnFmaugDM30Cbp1mLw4CMx4SMuITMuQDMz0yQCVSNDVSZpBXYwhSI", + value: "!(papież-304.12.1.10.0.mil-708.jag-90.zab-1f2c.pap-21c)!", + result: { + word: "papież", + correct: 12, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "31.10.2025", + }, + }, + { + date: "31.10.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYxITLwFmLmVDNtUWaw5CNhdTLllWbuUTZx0SauNnLyMzMx0yc5dnLw4iNx4CMuQTMuQDMz0yQCVSNDVSZpBXYwhSI", + value: "!(papież-304.14.0.16.0.wys-1332.sni-1e5.mie-7a4.pie-45f.ap-21c)!", + result: { + word: "papież", + correct: 14, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "31.10.2025", + }, + }, + { + date: "31.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjFjMtAXYw5SZz0SZ6FmL0ETL1VmZuYTO20CbvpnLw4CNx4iMuETMuQDMz0yQCVSNDVSZpBXYwhSI", + value: "!(papież-304.11.2.14.0.zol-696.feu-14.aze-3e.pap-21c)!", + result: { + word: "papież", + correct: 11, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "31.10.2025", + }, + }, + { + date: "31.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYxITLw5CMhJTLz5SMmFTL0FmLzQjY00CZvBnLw4iMx4CMuUTMuQDMz0yQCVSNDVSZpBXYwhSI", + value: "!(papież-304.15.0.12.0.pod-4b43.at-1f1.s-2a0.p-21c)!", + result: { + word: "papież", + correct: 15, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "31.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/pokonany-22-11-2025-diffle-difflepl-grywebowe-29-liter-w-6-slowach-large-green-c" +] = [ + { + date: "22.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYGOtE2cv5SZkVTLoN2MuATLz9mZuMWOtg2Yz4SZxgTLsh2YuIWZ50ycvtmLw4COx4CMuETMuYjMz0SYkF2cvhSI", + value: + "!(osada-326.11.0.18.0.kos-9eb.chl-81e.3ch-9c.fos-0.3ch-5de.osa-8f)!", + result: { + word: "osada", + correct: 11, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 29, + date: "22.11.2025", + }, + }, + { + date: "22.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYGOtE2cv5SMtM3bi5SYjdTLzFWbuMmNh1SYydmLw4CMx4SMuATMuYjMz0SYkF2cvhSI", + value: "!(osada-326.10.1.10.0.gra-a6c.mas-7ca.bos-1.osa-8f)!", + result: { + word: "osada", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "22.11.2025", + }, + }, + { + date: "22.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYGOtEmLw0ybz9mL5YWLz9GcuQjY20SY3tmLw4iNx4iMuITMuYjMz0SYkF2cvhSI", + value: "!(osada-326.12.2.16.0.kwa-6b4.pos-f9.oso-0.a-8f)!", + result: { + word: "osada", + correct: 12, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "22.11.2025", + }, + }, + { + date: "22.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ40SYz9mL0ITNtg2Yz4SZ0MWLn9GcuATLk9WbuQjZx0CZ5dnLw4iMx4SMuQTMuYjMz0SYkF2cvhSI", + value: "!(osada-326.14.1.12.0.wyd-1f4.mod-0.pog-c4e.3ch-524.osa-8f)!", + result: { + word: "osada", + correct: 14, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "22.11.2025", + }, + }, + { + date: "22.11.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYGOtE2cv5iZwMTMtQWYu5CMucjLy4COuYjMz0SYkF2cvhSI", + value: "!(osada-326.8.2.7.0.nad-130f.osa-8f)!", + result: { + word: "osada", + correct: 8, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "22.11.2025", + }, + }, + { + date: "22.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYGOtE2cv5SYxczMtoncw5CMucjLx4COuYjMz0SYkF2cvhSI", + value: "!(osada-326.8.1.7.0.prz-371a.osa-8f)!", + result: { + word: "osada", + correct: 8, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "22.11.2025", + }, + }, + { + date: "22.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmhjLlhTLhN3buEWMyUTL69GcuAjL34CMuITMuYjMz0SYkF2cvhSI", + value: "!(osada-326.12.0.7.0.poz-521a.osa-8e.8f)!", + result: { + word: "osada", + correct: 12, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "22.11.2025", + }, + }, + { + date: "22.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ40SYz9mLkJDNtIHcz5CMucjLx4SOuYjMz0SYkF2cvhSI", + value: "!(osada-326.9.1.7.0.spr-42d.osa-8f)!", + result: { + word: "osada", + correct: 9, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "22.11.2025", + }, + }, + { + date: "22.11.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYGOtE2cv5CNhVTL6JHdllmbuAjLwEjLx4SOuYjMz0SYkF2cvhSI", + value: "!(osada-326.9.1.10.0.nietrz-5a4.osa-8f)!", + result: { + word: "osada", + correct: 9, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "22.11.2025", + }, + }, + { + date: "22.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ40SYz9mL0kTLz9mYuATLz9mZuAjMy0ybstmLwMWLvJ3cuYmYy0SdoNmLw4SOx4SMuYTMuYjMz0SYkF2cvhSI", + value: "!(osada-326.16.1.19.0.chu-2bf.sro-c0.klo-220.fos-0.bos-94.osa-8f)!", + result: { + word: "osada", + correct: 16, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "22.11.2025", + }, + }, + { + date: "22.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYGOtEmLw0ybuATLwN3buYTM00CajNjL1ETLj92cuQDNtw2bn5yNy0ya1VmLw4SNx4yMukTMuYjMz0SYkF2cvhSI", + value: + "!(osada-326.19.3.15.0.euk-27.gol-44.soc-15.3ch-416.osp-0.o-0.a-8f)!", + result: { + word: "osada", + correct: 19, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 37, + date: "22.11.2025", + }, + }, + { + date: "22.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ40SYz9mLw0ycvZmL3QjMto2b35yM5gTYx0ieyBnLw4COx4CMuETMuYjMz0SYkF2cvhSI", + value: "!(osada-326.11.0.18.0.prz-1a893.woj-247.fos-0.osa-8f)!", + result: { + word: "osada", + correct: 11, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "22.11.2025", + }, + }, + { + date: "22.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmhTLhNnLx0Seo5SNxMTLvB3buIWNy0SY6NnLw4SMx4SMuMTMuYjMz0SYkF2cvhSI", + value: "!(osada-326.13.1.11.0.sza-25b.opo-315.hy-1.sa-8f)!", + result: { + word: "osada", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "22.11.2025", + }, + }, + { + date: "22.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYGOtE2cuQ2MtMnYv5SZ1MTL0FGcukDNy0CZv1mLw4CNx4iMuQTMuYjMz0SYkF2cvhSI", + value: "!(osada-326.14.2.14.0.mod-249.pat-35e.obs-3d.sa-8f)!", + result: { + word: "osada", + correct: 14, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "22.11.2025", + }, + }, + { + date: "22.11.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ40SYz9mL0cjMt8mcn5iMlFWLuFGcuAjL54SMuATMuYjMz0SYkF2cvhSI", + value: "!(osada-326.10.1.9.0.pan-ae2.gro-274.osa-8f)!", + result: { + word: "osada", + correct: 10, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "22.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/proste-ale-moze-sprawic-problemy-jak-sie-nie-trafi-dobrze-15-12-2025-diffle-diff" +] = [ + { + date: "15.12.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKk1Sb11mL0QzMtcHaj5CMkFTLsVnYuAjZ50ycvtmLw4SNx4SMuETMukDNz0SYp1WdthSI", + value: "!(mumia-349.11.1.15.0.kos-9f0.bul-1d0.chw-344.mum-d)!", + result: { + word: "mumia", + correct: 11, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "15.12.2025", + }, + }, + { + date: "15.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKk1Sb15SMtYmLiNTMtcWYuATLslWbuITO30SY6NmLx4SNx4SMuYTMukDNz0SYp1WdthSI", + value: "!(mumia-349.16.1.15.1.cza-792.mil-0.ag-13b.f-1.um-d)!", + result: { + word: "mumia", + correct: 16, + position: 1, + incorrect: 15, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 32, + date: "15.12.2025", + }, + }, + { + date: "15.12.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKk1Sb11mLwQWMtwWdi5yN5ITL1h2YuQTY10ieyRXZp5mLw4SOx4SMuQTMukDNz0SYp1WdthSI", + value: "!(mumia-349.14.1.19.0.nietrz-5a4.chu-297.bul-1d0.mum-d)!", + result: { + word: "mumia", + correct: 14, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "15.12.2025", + }, + }, + { + date: "15.12.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQWLtVXbuYjY1ETLyR3cuYmYy0SdoNmLw4yMx4SMuETMukDNz0SYp1WdthSI", + value: "!(mumia-349.11.1.13.0.chu-2bf.str-15b6.mum-d)!", + result: { + word: "mumia", + correct: 11, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "15.12.2025", + }, + }, + { + date: "15.12.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZt0Wdt5iZjJTLpJWduATLnlGbuQmM00icwNnLw4CNx4SMuETMukDNz0SYp1WdthSI", + value: "!(mumia-349.11.1.14.0.spr-42d.lig-0.ubi-2cf.mum-d)!", + result: { + word: "mumia", + correct: 11, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "15.12.2025", + }, + }, + { + date: "15.12.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKk1Sb11mLwQWMtwWdi5yNy0ya1VmLw4CMx4SMuETMukDNz0SYp1WdthSI", + value: "!(mumia-349.11.1.10.0.euk-27.bul-1d0.mum-d)!", + result: { + word: "mumia", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "15.12.2025", + }, + }, + { + date: "15.12.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKk1Sb11mLygTMtUXaj5iMtYWam5CZ2MTLhlGcuQjZx0CZ5dnLw4SNx4iMuMTMukDNz0SYp1WdthSI", + value: "!(mumia-349.13.2.15.0.wyd-1f4.pia-36d.fif-2.ciu-182.mum-d)!", + result: { + word: "mumia", + correct: 13, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "15.12.2025", + }, + }, + { + date: "15.12.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKk1Sb15iMx0yY55SNmFTL65iYzITLhlWbuMmNh1SYydmLw4SMx4SMuUTMukDNz0SYp1WdthSI", + value: "!(mumia-349.15.1.11.0.gra-a6c.mia-23b.z-1f5.yc-12.um-d)!", + result: { + word: "mumia", + correct: 15, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "15.12.2025", + }, + }, + { + date: "15.12.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCZt0Wdt5yN0ITLq92dukzYtIWdk5yM5gTYx0ieyBnLw4COx4CMuITMukDNz0SYp1WdthSI", + value: "!(mumia-349.12.0.18.0.prz-1a893.dub-c9.woj-247.mum-d)!", + result: { + word: "mumia", + correct: 12, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "15.12.2025", + }, + }, + { + date: "15.12.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKk1Sb15iNhJWLllWbuAjLxEjLw4COukDNz0SYp1WdthSI", + value: "!(mumia-349.8.0.11.0.mie-ba6.um-d)!", + result: { + word: "mumia", + correct: 8, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "15.12.2025", + }, + }, + { + date: "15.12.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKk1Sb11mLwYWLu9mZuEWM3MTL6JHcuAjLyEjLw4SOukDNz0SYp1WdthSI", + value: "!(mumia-349.9.0.12.0.prz-371a.fon-f0.mum-d)!", + result: { + word: "mumia", + correct: 9, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "15.12.2025", + }, + }, + { + date: "15.12.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKk1Sb15CMtIXat5SYxITNto3bw5CMukjLx4SOukDNz0SYp1WdthSI", + value: "!(mumia-349.9.1.9.0.poz-521a.mir-0.um-d)!", + result: { + word: "mumia", + correct: 9, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "15.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/pyk-pyk-i-po-temacie-slightly-smiling-face-05-11-2025-diffle-difflepl-grywebowe-" +] = [ + { + date: "05.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWYj1Cch5mLw0SeuFmLzQzMx0Cb5dnLw4SOuIjLwEjL5AzMtkHd5kTJ0MUJpBXYuhSI", + value: "!(napięty-309.10.2.9.0.wyl-1343.any-0.nap-cac)!", + result: { + word: "napięty", + correct: 10, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "05.11.2025", + }, + }, + { + date: "05.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYhNWLw5iNkRWLkFmbuMTNz0CdlBnL4Q2YtoXe35iN2MTLoN2MuEWO00SdsNnLyMWMt8mcr5CMucTMuIjL4EjL5AzMtkHd5kTJ0MUJpBXYuhSI", + value: + "!(napięty-309.18.2.17.0.kro-1c2.slu-49a.3ch-366.wyz-cd8.pet-353.nad-dd6.p-cac)!", + result: { + word: "napięty", + correct: 18, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 37, + date: "05.11.2025", + }, + }, + { + date: "05.11.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYhNmL2MmYtAXYu5CN4ETLpx2cugTOt8me65CMuITMuEjL1EjL5AzMtkHd5kTJ0MUJpBXYuhSI", + value: "!(napięty-309.15.1.12.0.zzo-98.sli-184.nap-bc6.cac)!", + result: { + word: "napięty", + correct: 15, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "05.11.2025", + }, + }, + { + date: "05.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjF2YuMjN40Cch5mLkhTMtA3ch5CMuATMuEjLzEjL5AzMtkHd5kTJ0MUJpBXYuhSI", + value: "!(napięty-309.13.1.10.0.asp-18d.nap-863.cac)!", + result: { + word: "napięty", + correct: 13, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "05.11.2025", + }, + }, + { + date: "05.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjF2YucTYk1Cch5mLmJmMtUHaj5CMuATMuEjLzEjL5AzMtkHd5kTJ0MUJpBXYuhSI", + value: "!(napięty-309.13.1.10.0.chu-2bf.nap-da7.cac)!", + result: { + word: "napięty", + correct: 13, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "05.11.2025", + }, + }, + { + date: "05.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWYj1Cch5mL2MWLp52cugTOt8me65CMuUTMuAjLyEjL5AzMtkHd5kTJ0MUJpBXYuhSI", + value: "!(napięty-309.12.0.15.0.zzo-98.sni-c6.nap-cac)!", + result: { + word: "napięty", + correct: 12, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "05.11.2025", + }, + }, + { + date: "05.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYhNmLjVTOx4yM2gTLwFmbuIGZ3ETLu9GcugTOt8me65iMuMTMuMjLwIjL5AzMtkHd5kTJ0MUJpBXYuhSI", + value: "!(napięty-309.20.3.13.2.zzo-98.pon-17db.nap-863.195c.cac)!", + result: { + word: "napięty", + correct: 20, + position: 3, + incorrect: 13, + knownIncorrect: 2, + totalWords: 5, + totalLetters: 36, + date: "05.11.2025", + }, + }, + { + date: "05.11.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWYj1Cch5mL4Y2Nx0ibvBnL0MzMx0Cb5dnLw4SOuMjLzEjL5AzMtkHd5kTJ0MUJpBXYuhSI", + value: "!(napięty-309.13.3.9.0.wyl-1334.pon-17f8.nap-cac)!", + result: { + word: "napięty", + correct: 13, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "05.11.2025", + }, + }, + { + date: "05.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWYj5SNwUWLwFmbuUDNtkHZn5SN1ITLq92duMTO4EWMtoncw5CMuEjMuUjL2EjL5AzMtkHd5kTJ0MUJpBXYuhSI", + value: "!(napięty-309.16.5.21.0.prz-1a893.woj-255.gdy-45.nap-e05.cac)!", + result: { + word: "napięty", + correct: 16, + position: 5, + incorrect: 21, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "05.11.2025", + }, + }, + { + date: "05.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYhNWLw5yYyEWLjFmbuATOtcWYq5SO1YTMtwWY65CMuETMuEjL1EjL5AzMtkHd5kTJ0MUJpBXYuhSI", + value: "!(napięty-309.15.1.11.0.zal-1659.jag-90.nac-a2c.p-cac)!", + result: { + word: "napięty", + correct: 15, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "05.11.2025", + }, + }, + { + date: "05.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYhNmL1ATZtAXYu5iMiRWNto3bw5yY5ETLrFmauYWO20ic1JmLkVjMtkGbz5iMzMTMtMXe35CMukTMuMjL5EjL5AzMtkHd5kTJ0MUJpBXYuhSI", + value: + "!(napięty-309.19.3.19.0.wys-1332.sli-25d.bur-69f.jak-19c.poz-5db2.nap-e05.cac)!", + result: { + word: "napięty", + correct: 19, + position: 3, + incorrect: 19, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "05.11.2025", + }, + }, + { + date: "05.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYhNWLwFmbuQ2NtA3bs5CZxczMtoncw5CMuATMuQjLxEjL5AzMtkHd5kTJ0MUJpBXYuhSI", + value: "!(napięty-309.11.4.10.0.prz-371d.lop-7d.nap-cac)!", + result: { + word: "napięty", + correct: 11, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "05.11.2025", + }, + }, + { + date: "05.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWYj5yMwMmLiZmYtAXYu5yM0IGNtQ2bw5CMuATMuEjLwIjL5AzMtkHd5kTJ0MUJpBXYuhSI", + value: "!(napięty-309.20.1.10.0.pod-4b43.nap-bfb.c03.cac)!", + result: { + word: "napięty", + correct: 20, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "05.11.2025", + }, + }, + { + date: "05.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMWYj1CcugTZk1yah5mLxEDZtUGdz5CNx0SdlZmL2kjNtw2b65CMucTMuQjL1EjL5AzMtkHd5kTJ0MUJpBXYuhSI", + value: "!(napięty-309.15.4.17.0.zol-696.feu-14.ste-d11.nak-de8.p-cac)!", + result: { + word: "napięty", + correct: 15, + position: 4, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "05.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/rzadkie-slowo-dobre-10-12-2025-flag-pl-diffle-difflepl-grywebowe-45-liter-w-8-sl" +] = [ + { + date: "10.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2E2MtwWYm5SZkJTLoN2MuIGOtQXZk5CMtQXZt5iNl1ychtmLkJWL0V3cucDZ20ychBnLzQjMtEmez5CMucTMuUjLzIjL0QzMtQXZzxWYmhSI", + value: + "!(falset-344.23.5.17.0.sza-243.pas-6d7.sut-bd.kas-e6.met-0.det-8b.3ch-2de.fal-3a6)!", + result: { + word: "falset", + correct: 23, + position: 5, + incorrect: 17, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 45, + date: "10.12.2025", + }, + }, + { + date: "10.12.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTYz0CbuMzYtMXYm5SNxITLzFmYuUGNx0SZ0FmL0ImNtE2dr5CMuQTMuIjLxIjL0QzMtQXZzxWYmhSI", + value: "!(falset-344.21.2.14.0.kwa-6b4.ate-14e.bas-215.fas-c3.l-3a6)!", + result: { + word: "falset", + correct: 21, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "10.12.2025", + }, + }, + { + date: "10.12.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTYz0CbhZmLkBTMtMXYr5SYxczMtoncw5CMuATMuIjLyEjL0QzMtQXZzxWYmhSI", + value: "!(falset-344.12.2.10.0.prz-371a.kas-10d.fal-3a6)!", + result: { + word: "falset", + correct: 12, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "10.12.2025", + }, + }, + { + date: "10.12.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTYz0CbhZmL1ADNtwWYz5CMtEGbi5SYkJjMts2bw5CMuQTMuIjLxEjL0QzMtQXZzxWYmhSI", + value: "!(falset-344.11.2.14.0.pok-22da.bla-0.sal-405.fal-3a6)!", + result: { + word: "falset", + correct: 11, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "10.12.2025", + }, + }, + { + date: "10.12.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2E2MtwWYm5CMy4iYl1CajNjLwYTLzVGduMmZz0Se0NnL10yah1mLmJmMtUHaj5CMukTMuIjL3EjL0QzMtQXZzxWYmhSI", + value: + "!(falset-344.17.2.19.0.chu-2bf.mak-5.sty-3fc.tes-60.3ch-eb.20.fal-3a6)!", + result: { + word: "falset", + correct: 17, + position: 2, + incorrect: 19, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 38, + date: "10.12.2025", + }, + }, + { + date: "10.12.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNhNTLsFmZuEmYx0ychtmLkJDNtIHcz5CMuETMuEjLyEjL0QzMtQXZzxWYmhSI", + value: "!(falset-344.12.1.11.0.spr-42d.kas-1ba.fal-3a6)!", + result: { + word: "falset", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "10.12.2025", + }, + }, + { + date: "10.12.2025", + nick: "nigdywzyciu", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTYz0CbhZmLhN2NtMXYt5yNwAjMt8mcw5CMuATMuEjLxEjL0QzMtQXZzxWYmhSI", + value: "!(falset-344.11.1.10.0.pro-2007.mas-7ca.fal-3a6)!", + result: { + word: "falset", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "10.12.2025", + }, + }, + { + date: "10.12.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNhNTLsFmZugTYy0CbhdnLjljMtQXZt5yNy0ya1VmLw4SOuMjL0EjL0QzMtQXZzxWYmhSI", + value: "!(falset-344.14.3.9.0.euk-27.met-29c.wal-2a8.fal-3a6)!", + result: { + word: "falset", + correct: 14, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "10.12.2025", + }, + }, + { + date: "10.12.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2E2MtwWYm5SY5ITL1h2YuQTY10ieyRXZp5mLw4iNx4iMukjL0QzMtQXZzxWYmhSI", + value: "!(falset-344.9.2.16.0.nietrz-5a4.chu-29a.fal-3a6)!", + result: { + word: "falset", + correct: 9, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "10.12.2025", + }, + }, + { + date: "10.12.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTYz0CbhZmL1EmMtUnez5iZzUTLsFGcuMmNh1SYydmLw4SOuAjLzEjL0QzMtQXZzxWYmhSI", + value: "!(falset-344.13.0.9.0.gra-a6c.pal-53f.szu-2a5.fal-3a6)!", + result: { + word: "falset", + correct: 13, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "10.12.2025", + }, + }, + { + date: "10.12.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNhNTLsFmL5UTLslmZuAjL14SMukjL0QzMtQXZzxWYmhSI", + value: "!(falset-344.9.1.5.0.fil-59.al-3a6)!", + result: { + word: "falset", + correct: 9, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "10.12.2025", + }, + }, + { + date: "10.12.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2E2MtwWYm5iYiNTLoN2MuUDNtMWdk5yYy0iZhdnL4QTNtUWaw5CMuUTMuQjLzEjL0QzMtQXZzxWYmhSI", + value: "!(falset-344.13.4.15.0.pie-548.waf-2c.duc-45.3ch-3bb.fal-3a6)!", + result: { + word: "falset", + correct: 13, + position: 4, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "10.12.2025", + }, + }, + { + date: "10.12.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2E2MtwWYm5SMy0SYsFmL2EmYtUWat5CMuMTMuMjLzEjL0QzMtQXZzxWYmhSI", + value: "!(falset-344.13.3.13.0.mie-ba6.ala-21.fal-3a6)!", + result: { + word: "falset", + correct: 13, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "10.12.2025", + }, + }, + { + date: "10.12.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2E2MtwWYm5CNwcTLzFGcuQjZx0CZ5dnLw4COuIjLxEjL0QzMtQXZzxWYmhSI", + value: "!(falset-344.11.2.8.0.wyd-1f4.pas-704.fal-3a6)!", + result: { + word: "falset", + correct: 11, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "10.12.2025", + }, + }, + { + date: "10.12.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTYz0CbhZmL3QjMto2b35yM5gTYx0ieyBnLw4SNx4iMukjL0QzMtQXZzxWYmhSI", + value: "!(falset-344.9.2.15.0.prz-1a893.woj-247.fal-3a6)!", + result: { + word: "falset", + correct: 9, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "10.12.2025", + }, + }, + { + date: "10.12.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNhNTLsFmZuImZ00SbhxmLlJGNtIXZz5SYxITNto3bw5CMuITMuQjLzEjL0QzMtQXZzxWYmhSI", + value: "!(falset-344.13.4.12.0.poz-521a.ser-4be.lam-4fb.fal-3a6)!", + result: { + word: "falset", + correct: 13, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "10.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/specyficzne-slowo-niby-znalem-ale-nie-uzywam-na-codzien-02-01-2025-diffle-diffle" +] = [ + { + date: "02.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMy0Sah5yNx0SYpZmLz0idpBnLyATMtMWZz5CMuATMuIjLyEjLy0CdulWYmhSI", + value: "!(faint-2.12.2.10.0.sec-102.piv-3.fia-17.ai-22)!", + result: { + word: "faint", + correct: 12, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "02.01.2025", + }, + }, + { + date: "02.01.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMy0SauczNt4mL2ETL1FmZucDZ00SYoNmLhRWLzFGcuIjNt0WYn5CMuATMuAjL3EjLy0CdulWYmhSI", + value: "!(faint-2.17.0.10.0.gam-62.pas-da.cha-4d7.fau-16.n-77.i-22)!", + result: { + word: "faint", + correct: 17, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 27, + date: "02.01.2025", + }, + }, + { + date: "02.01.2025", + nick: "ChomikowyPedziwiatr", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyITLpFmZuIzNtkmbh5iYz0SZwNnLw4CMx4iMukjLy0CdulWYmhSI", + value: "!(faint-2.9.2.10.0.spe-3b.ani-72.fai-22)!", + result: { + word: "faint", + correct: 9, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "02.01.2025", + }, + }, + { + date: "02.01.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMy0SahZmLzYjMtg2Yz4yMy0Cdv1mLw4CMx4SMukjLy0CdulWYmhSI", + value: "!(faint-2.9.1.10.0.mot-23.3ch-263.fai-22)!", + result: { + word: "faint", + correct: 9, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "02.01.2025", + }, + }, + { + date: "02.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyITLpFmZuQmNtkWY05iZz0SahBnL4YTLzV3cuEjNt4WZn5CMuMTMuIjL5EjLy0CdulWYmhSI", + value: "!(faint-2.19.2.13.0.gen-61.sus-68.pai-3f.tai-6d.fai-22)!", + result: { + word: "faint", + correct: 19, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "02.01.2025", + }, + }, + { + date: "02.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyITLpFmZuQDNtkWYz5SZ2ETLulWbukTO30CdulmLzADNtQmb15CMuATMuAjL3EjLy0CdulWYmhSI", + value: "!(faint-2.17.0.10.0.und-403.int-799.min-16e.sai-44.fai-22)!", + result: { + word: "faint", + correct: 17, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "02.01.2025", + }, + }, + { + date: "02.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMy0SahZmL1ITLpFGZuYjYtkWYt5yN10SahJmL5kTMtUGa05CMuQTMuIjL2EjLy0CdulWYmhSI", + value: "!(faint-2.16.2.14.0.the-199.bai-57.mai-b6.dai-25.fai-22)!", + result: { + word: "faint", + correct: 16, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "02.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/strasznie-wkurzajace-06-11-2025-diffle-difflepl-grywebowe-25-liter-w-3-slowach-l" +] = [ + { + date: "06.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpY2Mt4WZn5SZ10SdyRXZp5mLkVWOtM3br5CMuITMuIjLxEjLwEzMtIXZk5WZnhSI", + value: "!(gender-310.11.2.12.0.kos-9ed.nietru-5e.gen-3f)!", + result: { + word: "gender", + correct: 11, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "06.11.2025", + }, + }, + { + date: "06.11.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpY2Mt4WZuATLlR2ZuEWOy0SdoNmL0EWNtonc0VWau5CMuYTMuEjL0EjLwEzMtIXZk5WZnhSI", + value: "!(gender-310.14.1.16.0.nietrz-5a4.chu-29a.gde-0.en-3f)!", + result: { + word: "gender", + correct: 14, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "06.11.2025", + }, + }, + { + date: "06.11.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmNTLuV2ZuQWMt4Wd05iZwMTMtQWYu5CMuETMuEjLyEjLwEzMtIXZk5WZnhSI", + value: "!(gender-310.12.1.11.0.nad-130f.tun-1d.gen-3f)!", + result: { + word: "gender", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "06.11.2025", + }, + }, + { + date: "06.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmNTLuV2ZukTNx0CajNjL0MWLlJHZuQTNy0CajNjLhJGNtIXZz5COhBDNtoncw5CMuUTMuQjL2EjLwEzMtIXZk5WZnhSI", + value: + "!(gender-310.16.4.15.0.prz-40a8.ser-4ba.3ch-254.dre-c4.3ch-159.gen-3f)!", + result: { + word: "gender", + correct: 16, + position: 4, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "06.11.2025", + }, + }, + { + date: "06.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpY2Mt4WZn5yM0YWLyB3cuYmYy0SdoNmLw4yMx4SMukjLwEzMtIXZk5WZnhSI", + value: "!(gender-310.9.1.13.0.chu-2bf.spr-f43.gen-3f)!", + result: { + word: "gender", + correct: 9, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "06.11.2025", + }, + }, + { + date: "06.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmNTLuV2ZukjNz0SZyRnL0MWLlJHZuQmM00icwNnLw4SOuUjLzEjLwEzMtIXZk5WZnhSI", + value: "!(gender-310.13.5.9.0.spr-42d.dre-c4.tre-369.gen-3f)!", + result: { + word: "gender", + correct: 13, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "06.11.2025", + }, + }, + { + date: "06.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmNTLuV2ZuIWMy0SZsJmLkNWLyVmbucjMtsWdl5CMuATMuEjL2EjLwEzMtIXZk5WZnhSI", + value: "!(gender-310.16.1.10.0.euk-27.ner-cd.ble-21b.gen-3f)!", + result: { + word: "gender", + correct: 16, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "06.11.2025", + }, + }, + { + date: "06.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpY2Mt4WZn5CNy0icl5mL0ImNtE2dr5CMuITMuIjLxEjLwEzMtIXZk5WZnhSI", + value: "!(gender-310.11.2.12.0.kwa-6b4.ner-24.gen-3f)!", + result: { + word: "gender", + correct: 11, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "06.11.2025", + }, + }, + { + date: "06.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZz0ibldmL3QjMto2b35yM5gTYx0ieyBnLw4yNx4SMugjLwEzMtIXZk5WZnhSI", + value: "!(gender-310.8.1.17.0.prz-1a893.woj-247.gen-3f)!", + result: { + word: "gender", + correct: 8, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "06.11.2025", + }, + }, + { + date: "06.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpY2Mt4WZn5iYxITLlxmYuQjY00ibl1mL0YWMtQWe35CMuATMuIjL2EjLwEzMtIXZk5WZnhSI", + value: "!(gender-310.16.2.10.0.wyd-1f4.men-4b4.ble-21b.gen-3f)!", + result: { + word: "gender", + correct: 16, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "06.11.2025", + }, + }, + { + date: "06.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpY2Mt4WZn5iN20Se6NnLkNTLuVnLjZTYtEmcn5CMuATMuEjLzEjLwEzMtIXZk5WZnhSI", + value: "!(gender-310.13.1.10.0.gra-a6c.un-3d.szy-66.gen-3f)!", + result: { + word: "gender", + correct: 13, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "06.11.2025", + }, + }, + { + date: "06.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpY2Mt4WZn5SO0ITLk9WbuAjL44SMukjLwEzMtIXZk5WZnhSI", + value: "!(gender-310.9.1.8.0.mod-249.gen-3f)!", + result: { + word: "gender", + correct: 9, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "06.11.2025", + }, + }, + { + date: "06.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpY2Mt4WZn5yYm1CajNjLjJTLtVnbuITOtUmb35SYxITNto3bw5CMuITMuEjL1EjLwEzMtIXZk5WZnhSI", + value: "!(gender-310.15.1.12.0.poz-521a.wne-92.num-2c.3ch-fc.gen-3f)!", + result: { + word: "gender", + correct: 15, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "06.11.2025", + }, + }, + { + date: "06.11.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZz0ibl5CMtUGZn5SNzITLlRWduUWN50SZpBnLhR2MtIXZ35iNjNWMtIXYr5CMuITMuIjL4EjLwEzMtIXZk5WZnhSI", + value: + "!(gender-310.18.2.12.0.kar-1cc6.wer-3da.pie-95e.ude-235.gde-0.en-3f)!", + result: { + word: "gender", + correct: 18, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "06.11.2025", + }, + }, + { + date: "06.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpY2Mt4WZn5SO4ETLuVGZuQjMtIXZu5CMtYWZt5SYxczMtoncw5CMuITMuQjL5EjLwEzMtIXZk5WZnhSI", + value: "!(gender-310.19.4.12.0.prz-371a.mef-0.ner-24.den-189.gen-3f)!", + result: { + word: "gender", + correct: 19, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "06.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/szybki-strzal-wink-29-10-2025-diffle-difflepl-grywebowe-19-liter-w-3-slowach-lar" +] = [ + { + date: "29.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4YWLpJHZuQjNt4Wey5iYllTLz92auAjL34iMuATMuIDMz0yaulmckhSI", + value: "!(drink-302.10.2.7.0.kos-9eb.ryn-64.dri-f8)!", + result: { + word: "drink", + correct: 10, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "29.10.2025", + }, + }, + { + date: "29.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOm1SayRmLhNTNtI3bm5SNiNTLwFmbuAjLxEjLy4SOuIDMz0yaulmckhSI", + value: "!(drink-302.9.2.11.0.nap-3b5.for-53a.dri-f8)!", + result: { + word: "drink", + correct: 9, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "29.10.2025", + }, + }, + { + date: "29.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOm1SayRmLidjNtQmbp5CZkRTLp5WduYTYi1SZp1mLw4yMx4yMuITMuIDMz0yaulmckhSI", + value: "!(drink-302.12.3.13.0.mie-ba6.uni-4dd.ind-67b.dri-f8)!", + result: { + word: "drink", + correct: 12, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "29.10.2025", + }, + }, + { + date: "29.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjZtkmck5SYxczMtoncw5CMugjLx4yNuIDMz0yaulmckhSI", + value: "!(drink-302.7.1.8.0.prz-371a.dri-f8)!", + result: { + word: "drink", + correct: 7, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "29.10.2025", + }, + }, + { + date: "29.10.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjZtkmck5iZwMTMtQWYu5CMucjLz4yNuIDMz0yaulmckhSI", + value: "!(drink-302.7.3.7.0.nad-130f.dri-f8)!", + result: { + word: "drink", + correct: 7, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "29.10.2025", + }, + }, + { + date: "29.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOm1SayRmLkJDNtIHcz5CMugjLy4yNuIDMz0yaulmckhSI", + value: "!(drink-302.7.2.8.0.spr-42d.dri-f8)!", + result: { + word: "drink", + correct: 7, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "29.10.2025", + }, + }, + { + date: "29.10.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjZtkmck5yY1ETLkVncuQTY10ieyRXZp5mLw4SMx4SNuATMuIDMz0yaulmckhSI", + value: "!(drink-302.10.5.11.0.nietrz-5a4.rud-15c.dri-f8)!", + result: { + word: "drink", + correct: 10, + position: 5, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "29.10.2025", + }, + }, + { + date: "29.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjZtkmck5SMt4Way5SYzgTLyB3cuYmYy0SdoNmLw4CNx4CMuMTMuIDMz0yaulmckhSI", + value: "!(drink-302.13.0.14.0.chu-2bf.spr-83a.rin-1.dri-f8)!", + result: { + word: "drink", + correct: 13, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "29.10.2025", + }, + }, + { + date: "29.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4YWLpJHZucjMtsWdl5CMuYjLx4COuIDMz0yaulmckhSI", + value: "!(drink-302.8.1.6.0.euk-27.dri-f8)!", + result: { + word: "drink", + correct: 8, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "29.10.2025", + }, + }, + { + date: "29.10.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjZtkmck5CNiZTLhd3auAjLxEjLy4yNuIDMz0yaulmckhSI", + value: "!(drink-302.7.2.11.0.kwa-6b4.dri-f8)!", + result: { + word: "drink", + correct: 7, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "29.10.2025", + }, + }, + { + date: "29.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4YWLpJHZucDNy0iavdnLzkDOhFTL6JHcuAjL2EjLx4COuIDMz0yaulmckhSI", + value: "!(drink-302.8.1.16.0.prz-1a893.woj-247.dri-f8)!", + result: { + word: "drink", + correct: 8, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "29.10.2025", + }, + }, + { + date: "29.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOm1SayRmL5QjMtQ2bt5CMugjLx4COuIDMz0yaulmckhSI", + value: "!(drink-302.8.1.8.0.mod-249.dri-f8)!", + result: { + word: "drink", + correct: 8, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "29.10.2025", + }, + }, + { + date: "29.10.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4YWLpJHZuMGNtkGbj5iZy0yc1RnLyITMtIXam5yY2EWLhJ3ZuAjL1EjLy4SOuIDMz0yaulmckhSI", + value: "!(drink-302.9.2.15.0.gra-a6c.fir-122.tus-2f.cli-4c.dri-f8)!", + result: { + word: "drink", + correct: 9, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "29.10.2025", + }, + }, + { + date: "29.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOm1SayRmL0YWMtQWe35CMuUjLx4COuIDMz0yaulmckhSI", + value: "!(drink-302.8.1.5.0.wyd-1f4.dri-f8)!", + result: { + word: "drink", + correct: 8, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "29.10.2025", + }, + }, + { + date: "29.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOm1SayRmLyImMt4Was5SYxITNto3bw5CMugjLy4SOuIDMz0yaulmckhSI", + value: "!(drink-302.9.2.8.0.poz-521a.lin-2b2.dri-f8)!", + result: { + word: "drink", + correct: 9, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "29.10.2025", + }, + }, + { + date: "29.10.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCOm1SayRmLhFTMtIXa35iM5QTL1J3auUWMz0ybyBnLw4iMx4iMuITMuIDMz0yaulmckhSI", + value: "!(drink-302.12.2.12.0.pro-31e.kru-492.wir-11a.dri-f8)!", + result: { + word: "drink", + correct: 12, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "29.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/szybko-poszlo-04-11-2025-diffle-difflepl-grywebowe-24-litery-w-3-slowach-large-g" +] = [ + { + date: "04.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYy0Sb5NnL0UmMt02cv5CZllTLz92auAjL24iMuYTMugDMz0SY69Wai1WezhSI", + value: "!(symbioza-308.16.2.6.0.kos-9ed.osm-2e4.sym-2c)!", + result: { + word: "symbioza", + correct: 16, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "04.11.2025", + }, + }, + { + date: "04.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmMt0WeuADN50Se6NnLhFWZx0yY5dnLw4yMx4SMuUTMugDMz0SY69Wai1WezhSI", + value: "!(symbioza-308.15.1.13.0.wyc-1eaa.szy-940.ym-2c)!", + result: { + word: "symbioza", + correct: 15, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "04.11.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJTLtl3cucTN00ybwVnLw4CMx4iMuETMugDMz0SY69Wai1WezhSI", + value: "!(symbioza-308.11.2.10.0.upo-457.sym-2c)!", + result: { + word: "symbioza", + correct: 11, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + }, + }, + { + date: "04.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJTLtl3cuEWZt0Wat5iZiJTL1h2YuAjL34SMuYTMugDMz0SY69Wai1WezhSI", + value: "!(symbioza-308.16.1.7.0.chu-2bf.mim-ea.sym-2c)!", + result: { + word: "symbioza", + correct: 16, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "04.11.2025", + }, + }, + { + date: "04.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJTLtlnLiFTLnlmLxUmNtQneuQmM00icwNnLw4SMx4iMugTMugDMz0SY69Wai1WezhSI", + value: "!(symbioza-308.18.2.11.0.spr-42d.zt-6e1.ig-1b.ym-2c)!", + result: { + word: "symbioza", + correct: 18, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "04.11.2025", + }, + }, + { + date: "04.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmMt0Wez5iNlJTLtN3buQjY20SY3tmLw4CMx4CNucTMugDMz0SY69Wai1WezhSI", + value: "!(symbioza-308.17.4.10.0.kwa-6b4.osm-2e6.sym-2c)!", + result: { + word: "symbioza", + correct: 17, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "04.11.2025", + }, + }, + { + date: "04.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYy0Sb5NnL3ITLrVXZuAjL24iMuATMugDMz0SY69Wai1WezhSI", + value: "!(symbioza-308.10.2.6.0.euk-27.sym-2c)!", + result: { + word: "symbioza", + correct: 10, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "04.11.2025", + }, + }, + { + date: "04.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYy0Sb5NnLidTMtkGbr5SOjJWL39GcukDNy0CZv1mLw4iMx4yMuYTMugDMz0SY69Wai1WezhSI", + value: "!(symbioza-308.16.3.12.0.mod-249.pow-bc9.kli-17b.sym-2c)!", + result: { + word: "symbioza", + correct: 16, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "04.11.2025", + }, + }, + { + date: "04.11.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYy4iZjFTLtl3cugDN10SZpBnLw4CMx4yMucTMugDMz0SY69Wai1WezhSI", + value: "!(symbioza-308.17.3.10.0.pie-548.sym-1cf.2c)!", + result: { + word: "symbioza", + correct: 17, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "04.11.2025", + }, + }, + { + date: "04.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJTLtlnLiJTNtknez5CNmFTLkl3duAjL24yMuMTMugDMz0SY69Wai1WezhSI", + value: "!(symbioza-308.13.3.6.0.wyd-1f4.szy-52b.ym-2c)!", + result: { + word: "symbioza", + correct: 13, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "04.11.2025", + }, + }, + { + date: "04.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmMt0Wez5CO50CajNjL4EjMt8Wbz5iYzITLhlWbuMmNh1SYydmLw4CMx4CNuYTMugDMz0SY69Wai1WezhSI", + value: "!(symbioza-308.16.4.10.0.gra-a6c.mia-23b.smo-218.3ch-98.sym-2c)!", + result: { + word: "symbioza", + correct: 16, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "04.11.2025", + }, + }, + { + date: "04.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMmMt0Wez5SN00SekdmL3QjMto2b35yM5gTYx0ieyBnLw4SNx4yMuYTMugDMz0SY69Wai1WezhSI", + value: "!(symbioza-308.16.3.15.0.prz-1a893.woj-247.gdy-45.sym-2c)!", + result: { + word: "symbioza", + correct: 16, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "04.11.2025", + }, + }, + { + date: "04.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyYy0Sb55CZxITLtp3cuEWM3MTL6JHcuAjL54iMuUTMugDMz0SY69Wai1WezhSI", + value: "!(symbioza-308.15.2.9.0.prz-371a.szm-21d.ym-2c)!", + result: { + word: "symbioza", + correct: 15, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "04.11.2025", + }, + }, + { + date: "04.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjJTLtl3cuEWMyUTL69GcuAjL04yMuETMugDMz0SY69Wai1WezhSI", + value: "!(symbioza-308.11.3.4.0.poz-521a.sym-2c)!", + result: { + word: "symbioza", + correct: 11, + position: 3, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "04.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/szybko-przyszlo-szybko-poszlo-06-10-2025-flag-pl-diffle-difflepl-grywebowe-20-li" +] = [ + { + date: "06.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKycDNtoWe35yY4UTLzlHZuAjLxEjLy4yNukzNy0yYlpWe3hSI", + value: "!(wyjec-279.7.2.11.0.dys-58c.wyj-472)!", + result: { + word: "wyjec", + correct: 7, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "06.10.2025", + }, + }, + { + date: "06.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzN00iauYTMz0Cb5dnLkJTLjVGcuIWZ50ycvtmLw4iMx4CMuITMukzNy0yYlpWe3hSI", + value: "!(wyjec-279.12.0.12.0.kos-9eb.pec-2d.wyl-316.j-472)!", + result: { + word: "wyjec", + correct: 12, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "06.10.2025", + }, + }, + { + date: "06.10.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKycDNtomLiBzMtwmLxEGNx0icuATZ00ib5dnLw4CMx4CMuYTMukzNy0yYlpWe3hSI", + value: "!(wyjec-279.16.0.10.0.wyn-4e0.r-14a1.l-30b.j-472)!", + result: { + word: "wyjec", + correct: 16, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "06.10.2025", + }, + }, + { + date: "06.10.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM3QTLqlnL1QTNtQ2b35SOwETLiVHduADOtMWZt5iMzcTLlx2auMmNh1SYydmLw4yNx4CMuMTMukzNy0yYlpWe3hSI", + value: + "!(wyjec-279.13.0.17.0.gra-a6c.kle-732.mec-80.tub-109.wod-545.yj-472)!", + result: { + word: "wyjec", + correct: 13, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "06.10.2025", + }, + }, + { + date: "06.10.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzN00ia5dnLxIzMtwGaj5CNhVTL6JHdllmbuAjL0EjL04COukzNy0yYlpWe3hSI", + value: "!(wyjec-279.8.4.14.0.nietrz-5a4.chl-321.wyj-472)!", + result: { + word: "wyjec", + correct: 8, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "06.10.2025", + }, + }, + { + date: "06.10.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzN00iauQjN00CZ5dnLhRmMy0yavBnLw4SMx4SMuATMukzNy0yYlpWe3hSI", + value: "!(wyjec-279.10.1.11.0.pok-22da.wyd-464.j-472)!", + result: { + word: "wyjec", + correct: 10, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "06.10.2025", + }, + }, + { + date: "06.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKycDNtoWe35SOiNTL3h2YuQmM00icwNnLw4yMx4SMuATMukzNy0yYlpWe3hSI", + value: "!(wyjec-279.10.1.13.0.spr-42d.chw-3b9.wyj-472)!", + result: { + word: "wyjec", + correct: 10, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "06.10.2025", + }, + }, + { + date: "06.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzN00ia5dnLmJmMtUHaj5CMucjLy4iNukzNy0yYlpWe3hSI", + value: "!(wyjec-279.6.2.7.0.chu-2bf.wyj-472)!", + result: { + word: "wyjec", + correct: 6, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "06.10.2025", + }, + }, + { + date: "06.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM3QTLqlnLzYWLsV2duEWM3MTL6JHcuAjLyEjLx4COukzNy0yYlpWe3hSI", + value: "!(wyjec-279.8.1.12.0.prz-371a.wel-f3.yj-472)!", + result: { + word: "wyjec", + correct: 8, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "06.10.2025", + }, + }, + { + date: "06.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM3QTLq5CN2QTLkl3dukTMtwWew5CMtknez5yNy0ya1VmLw4SNx4SMuMTMukzNy0yYlpWe3hSI", + value: "!(wyjec-279.13.1.15.0.euk-27.szy-0.pyl-19.wyd-464.j-472)!", + result: { + word: "wyjec", + correct: 13, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "06.10.2025", + }, + }, + { + date: "06.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKycDNtomL0YWMtQWe35CMuYjLw4COukzNy0yYlpWe3hSI", + value: "!(wyjec-279.8.0.6.0.wyd-1f4.j-472)!", + result: { + word: "wyjec", + correct: 8, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "06.10.2025", + }, + }, + { + date: "06.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM3QTLq5CN2QTLkl3duYTYi1SZp1mLw4yMx4SMuETMukzNy0yYlpWe3hSI", + value: "!(wyjec-279.11.1.13.0.mie-ba6.wyd-464.j-472)!", + result: { + word: "wyjec", + correct: 11, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "06.10.2025", + }, + }, + { + date: "06.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM3QTLqlnL3QjMto2b35yM5gTYx0ieyBnLw4SNx4CMuATMukzNy0yYlpWe3hSI", + value: "!(wyjec-279.10.0.15.0.prz-1a893.woj-247.yj-472)!", + result: { + word: "wyjec", + correct: 10, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "06.10.2025", + }, + }, + { + date: "06.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiM3QTLql3ducDOtoWZw5SO0ITLk9WbuAjLxEjLz4COukzNy0yYlpWe3hSI", + value: "!(wyjec-279.8.3.11.0.mod-249.pej-87.wyj-472)!", + result: { + word: "wyjec", + correct: 8, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "06.10.2025", + }, + }, + { + date: "06.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIzN00iauETY20Cb5dnLhFjM10ievBnLw4CMx4CMuATMukzNy0yYlpWe3hSI", + value: "!(wyjec-279.10.0.10.0.poz-521a.wyl-6a1.j-472)!", + result: { + word: "wyjec", + correct: 10, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "06.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/to-bylo-tak-szybkie-ze-az-mnie-zaskoczylo-09-12-2025-diffle-difflepl-grywebowe-1" +] = [ + { + date: "09.12.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzQWLslWbuAjZ50ycvtmLw4yNuAjL34yM0MTLlxWathSI", + value: "!(mile-343.7.0.7.0.kos-9f0.mil-d3)!", + result: { + word: "mile", + correct: 7, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "09.12.2025", + }, + }, + { + date: "09.12.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzQWLs5CM3QjLyM2MtUWat5CNiZTLhd3auAjL0EjLx4yMx4yM0MTLlxWathSI", + value: "!(mile-343.13.1.14.0.kwa-6b4.mie-3c2.470.l-d3)!", + result: { + word: "mile", + correct: 13, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "09.12.2025", + }, + }, + { + date: "09.12.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzQWLslWbuMGM10CbpZmLhljMtUHaj5CNhVTL6JHdllmbuAjL5EjLy4CMx4yM0MTLlxWathSI", + value: "!(mile-343.10.2.19.0.nietrz-5a4.chu-29a.fil-50c.mil-d3)!", + result: { + word: "mile", + correct: 10, + position: 2, + incorrect: 19, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "09.12.2025", + }, + }, + { + date: "09.12.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzQWLslWbucjYt0Wdz5SYkJjMts2bw5CMuITMuAjL44yM0MTLlxWathSI", + value: "!(mile-343.8.0.12.0.pok-22da.sum-b7.mil-d3)!", + result: { + word: "mile", + correct: 8, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "09.12.2025", + }, + }, + { + date: "09.12.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMk1Cbp1mL10SasVnLkJDNtIHcz5CMuITMuEjL44yM0MTLlxWathSI", + value: "!(mile-343.8.1.12.0.spr-42d.uli-5.mil-d3)!", + result: { + word: "mile", + correct: 8, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "09.12.2025", + }, + }, + { + date: "09.12.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMk1Cbp1mLxEjMtwWam5yNx0CZpxmL0YjMtUWai5yYiBTMtkGcz5iZiJTL1h2YuAjL5EjLx4CNx4yM0MTLlxWathSI", + value: + "!(mile-343.14.1.19.0.chu-2bf.spi-10bc.bie-264.lid-17.fil-211.mil-d3)!", + result: { + word: "mile", + correct: 14, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "09.12.2025", + }, + }, + { + date: "09.12.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDZtwWat5SO5QTLll2ducjMtsWdl5CMuATMuEjL44yM0MTLlxWathSI", + value: "!(mile-343.8.1.10.0.euk-27.wie-499.mil-d3)!", + result: { + word: "mile", + correct: 8, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "09.12.2025", + }, + }, + { + date: "09.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMk1Cbp1mLxQTMt8mcw5CMuATMuIjL24yM0MTLlxWathSI", + value: "!(mile-343.6.2.10.0.pro-141.mil-d3)!", + result: { + word: "mile", + correct: 6, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "09.12.2025", + }, + }, + { + date: "09.12.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzQWLslWbuAjMx0CbpBnLxETMtwWai5SYy0CdpxmLjZTYtEmcn5CMucjLx4CNx4yM0MTLlxWathSI", + value: "!(mile-343.14.1.7.0.gra-a6c.lit-2a.bil-111.pil-120.mil-d3)!", + result: { + word: "mile", + correct: 14, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 22, + date: "09.12.2025", + }, + }, + { + date: "09.12.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzQWLslWbuETMtg2YyUWau5SYxczMtoncw5CMuETMuIjL34yM0MTLlxWathSI", + value: "!(mile-343.7.2.11.0.prz-371a.nie2ch-11.mil-d3)!", + result: { + word: "mile", + correct: 7, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "09.12.2025", + }, + }, + { + date: "09.12.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzQWLslWbugDN10SZpBnLw4yNuIjL24yM0MTLlxWathSI", + value: "!(mile-343.6.2.7.0.pie-548.mil-d3)!", + result: { + word: "mile", + correct: 6, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "09.12.2025", + }, + }, + { + date: "09.12.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzQmL0QWLs5SOtUWat5CNmFTLkl3duAjLwEjLx4iMx4yM0MTLlxWathSI", + value: "!(mile-343.12.1.10.0.wyd-1f4.mie-9.l-d4.d3)!", + result: { + word: "mile", + correct: 12, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "09.12.2025", + }, + }, + { + date: "09.12.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDZtwWat5yN0ITLq92duMTO4EWMtoncw5CMuYTMuEjL34yM0MTLlxWathSI", + value: "!(mile-343.7.1.16.0.prz-1a893.woj-247.mil-d3)!", + result: { + word: "mile", + correct: 7, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "09.12.2025", + }, + }, + { + date: "09.12.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMk5SZ2ETLslWbuEmMtYWdw5iNhJWLllWbuAjL1EjLx4SMx4yM0MTLlxWathSI", + value: "!(mile-343.11.1.15.0.mie-ba6.puf-2a.mil-16e.d3)!", + result: { + word: "mile", + correct: 11, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "09.12.2025", + }, + }, + { + date: "09.12.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzQWLslWbuMDNx0SaoNmLxETMtwWai5SO5QTLll2duEWMyUTL69GcuAjLzEjLw4SNx4yM0MTLlxWathSI", + value: "!(mile-343.15.0.13.0.poz-521a.wie-499.bil-111.chi-143.mil-d3)!", + result: { + word: "mile", + correct: 15, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "09.12.2025", + }, + }, + { + date: "09.12.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMDZuQDZtwWat5CNk1yYlxmL5MjMtUnez5iMlFWLuFGcuAjL0EjLy4yMx4yM0MTLlxWathSI", + value: "!(mile-343.13.2.14.0.pan-ae2.szu-239.lec-d4.mil-d4.d3)!", + result: { + word: "mile", + correct: 13, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "09.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/tradycyjna-pomylka-o-1-literke-w-przedostatnim-06-12-2025-diffle-difflepl-gryweb" +] = [ + { + date: "06.12.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzMzMtoHZuQTLup3buMDNzETLsl3duAjL14iMuAjMuADNz0yN4UCNDVSY6NWYupHZvhSI", + value: "!(odznaczać-340.20.2.5.0.wyl-1343.ozn-4.dz-333)!", + result: { + word: "odznaczać", + correct: 20, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "06.12.2025", + }, + }, + { + date: "06.12.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMzMjL2kzMtoHZv5iZiJTL1h2YuAjL44SMuAjMuADNz0yN4UCNDVSY6NWYupHZvhSI", + value: "!(odznaczać-340.20.1.8.0.chu-2bf.odz-396.333)!", + result: { + word: "odznaczać", + correct: 20, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "06.12.2025", + }, + }, + { + date: "06.12.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMzMTL6RmL00ib65CNtE2cv5yN1QTLvBXduUTNy0SZsdmLw4COx4SMukjMuADNz0yN4UCNDVSY6NWYupHZvhSI", + value: "!(odznaczać-340.29.1.18.0.gle-255.upo-457.osa-4.zn-4.dz-333)!", + result: { + word: "odznaczać", + correct: 29, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 48, + date: "06.12.2025", + }, + }, + { + date: "06.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMzMz0ieugDO40CbuQDMwETLjR2buADN10yY5dnLw4SMx4iMuIjMuADNz0yN4UCNDVSY6NWYupHZvhSI", + value: "!(odznaczać-340.22.2.11.0.wyc-540.odc-1004.l-888.z-333)!", + result: { + word: "odznaczać", + correct: 22, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "06.12.2025", + }, + }, + { + date: "06.12.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMzMTL6RmL00ib69mL1UTLj92auIzMzETLzl3duAjL44CMuMjMuADNz0yN4UCNDVSY6NWYupHZvhSI", + value: "!(odznaczać-340.23.0.8.0.wys-1332.koc-55.ozn-4.dz-333)!", + result: { + word: "odznaczać", + correct: 23, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "06.12.2025", + }, + }, + { + date: "06.12.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMzMz0iek9mL1MWN00ievBnL4kTLvpneuAjL34CMugTMuADNz0yN4UCNDVSY6NWYupHZvhSI", + value: "!(odznaczać-340.18.0.7.0.zzo-98.poz-45c5.odz-333)!", + result: { + word: "odznaczać", + correct: 18, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "06.12.2025", + }, + }, + { + date: "06.12.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzMzMtoHZuMjNt4mev5yM5gTYx0ieyBnLw4CMx4CMukTMuADNz0yN4UCNDVSY6NWYupHZvhSI", + value: "!(odznaczać-340.19.0.10.0.prz-1a893.ozn-63.dz-333)!", + result: { + word: "odznaczać", + correct: 19, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "06.12.2025", + }, + }, + { + date: "06.12.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMzMz0iek9mLxIWMts2bk5SO1YTMtwWY65CNmFTLkl3duAjL54yMukTMuADNz0yN4UCNDVSY6NWYupHZvhSI", + value: "!(odznaczać-340.19.3.9.0.wyd-1f4.zal-1659.dok-1b1.odz-333)!", + result: { + word: "odznaczać", + correct: 19, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "06.12.2025", + }, + }, + { + date: "06.12.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzMzMtoHZuQTLup3buQWOl1SY6NnL4kTLvpneuAjL34iMuQjMuADNz0yN4UCNDVSY6NWYupHZvhSI", + value: "!(odznaczać-340.24.2.7.0.zzo-98.sza-e9d.ozn-4.dz-333)!", + result: { + word: "odznaczać", + correct: 24, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "06.12.2025", + }, + }, + { + date: "06.12.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMzMz4yY5MTL6R2buYWM0QTL69GcuYTYi1SZp1mLw4SMx4iMuUjMuADNz0yN4UCNDVSY6NWYupHZvhSI", + value: "!(odznaczać-340.25.2.11.0.mie-ba6.poz-441f.odz-39c.333)!", + result: { + word: "odznaczać", + correct: 25, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 38, + date: "06.12.2025", + }, + }, + { + date: "06.12.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMzMTL65yYi1icuMzYwETLjR2buMWYiRTLk9GcuAjL34CMucjMuADNz0yN4UCNDVSY6NWYupHZvhSI", + value: "!(odznaczać-340.27.0.7.0.pod-4bac.odc-10c3.r-bc.z-333)!", + result: { + word: "odznaczać", + correct: 27, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "06.12.2025", + }, + }, + { + date: "06.12.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzMzMtoHZv5SNjVDNto3bw5iN5YTLs9meuAjL34CMucTMuADNz0yN4UCNDVSY6NWYupHZvhSI", + value: "!(odznaczać-340.17.0.7.0.zol-696.poz-45c5.odz-333)!", + result: { + word: "odznaczać", + correct: 17, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "06.12.2025", + }, + }, + { + date: "06.12.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzMzMtoHZuQTLup3buQzMzETLsl3duAjL24SMukTMuADNz0yN4UCNDVSY6NWYupHZvhSI", + value: "!(odznaczać-340.19.1.6.0.wyl-1334.ozn-4.dz-333)!", + result: { + word: "odznaczać", + correct: 19, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "06.12.2025", + }, + }, + { + date: "06.12.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyMzMTL6RmLjZWLsd2buEWNz0CZhpnL2UzNz0ieyBnLw4CMx4yMuAjMuADNz0yN4UCNDVSY6NWYupHZvhSI", + value: "!(odznaczać-340.20.3.10.0.prz-3756.zad-35a.ogl-fc.dz-333)!", + result: { + word: "odznaczać", + correct: 20, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "06.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/tradycyjna-pomylka-o-1-literke-w-przedostatnim-08-12-2025-diffle-difflepl-gryweb" +] = [ + { + date: "08.12.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDZuQmMx0ybsBnLwYWOtM3br5CMukjLw4CMx4iM0MTLu9GbwhSI", + value: "!(plon-342.10.0.9.0.kos-9f0.plo-12d.d5)!", + result: { + word: "plon", + correct: 10, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "08.12.2025", + }, + }, + { + date: "08.12.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDZt8GbuMDO4ETLs9mLzkDOhFTL6JHcuAjLxEjLw4SMx4iM0MTLu9GbwhSI", + value: "!(plon-342.11.0.11.0.prz-1a893.ol-1883.lo-d5)!", + result: { + word: "plon", + correct: 11, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "08.12.2025", + }, + }, + { + date: "08.12.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNk1ybs5CMh1Cb55SYxczMtoncw5CMuETMuAjL54iM0MTLu9GbwhSI", + value: "!(plon-342.9.0.11.0.prz-371a.yl-a0.lo-d5)!", + result: { + word: "plon", + correct: 9, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "08.12.2025", + }, + }, + { + date: "08.12.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNk1ybsBnL0EWNtonc0VWau5CMuITMuEjL24iM0MTLu9GbwhSI", + value: "!(plon-342.6.1.12.0.nietrz-5a4.plo-d5)!", + result: { + word: "plon", + correct: 6, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "08.12.2025", + }, + }, + { + date: "08.12.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1QWLvxmLhRmMy0yavBnLw4COuAjL34iM0MTLu9GbwhSI", + value: "!(plon-342.7.0.8.0.pok-22da.lo-d5)!", + result: { + word: "plon", + correct: 7, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "08.12.2025", + }, + }, + { + date: "08.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDZt8GbuYWZy0CbpBnL5Y2NtsWZk5CMuITMuAjL54iM0MTLu9GbwhSI", + value: "!(plon-342.9.0.12.0.dek-7f9.pil-2ef.lo-d5)!", + result: { + word: "plon", + correct: 9, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "08.12.2025", + }, + }, + { + date: "08.12.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNk1ybs5CMh1Cb55iMhRWMt42bw5CZyQTLyB3cuAjLzEjLw4CNx4iM0MTLu9GbwhSI", + value: "!(plon-342.14.0.13.0.spr-42d.pon-1da2.yl-a0.lo-d5)!", + result: { + word: "plon", + correct: 14, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "08.12.2025", + }, + }, + { + date: "08.12.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNk1ybsBnL0ImNtE2dr5CMuMTMuAjL24iM0MTLu9GbwhSI", + value: "!(plon-342.6.0.13.0.kwa-6b4.plo-d5)!", + result: { + word: "plon", + correct: 6, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "08.12.2025", + }, + }, + { + date: "08.12.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNk1ybs5CO0ETLsVGcuIDMx0iZ5NnL5QTNt42br5iZiJTL1h2YuAjL4EjLw4CNx4iM0MTLu9GbwhSI", + value: "!(plon-342.14.0.18.0.chu-2bf.kon-549.syf-102.pel-148.lo-d5)!", + result: { + word: "plon", + correct: 14, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "08.12.2025", + }, + }, + { + date: "08.12.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDZt8Gbw5SN5gTLwp3cucjMtsWdl5CMuATMuAjL54iM0MTLu9GbwhSI", + value: "!(plon-342.9.0.10.0.euk-27.szp-895.plo-d5)!", + result: { + word: "plon", + correct: 9, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "08.12.2025", + }, + }, + { + date: "08.12.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1QWLvxmL2EmNx0ibvBnLzYWMy0ibvtmLiBTMt42bz5yY2EWLhJ3ZuAjLzEjLw4iMx4iM0MTLu9GbwhSI", + value: "!(plon-342.12.0.13.0.gra-a6c.son-10b.kon-21f3.pon-16a6.lo-d5)!", + result: { + word: "plon", + correct: 12, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "08.12.2025", + }, + }, + { + date: "08.12.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSNk5CZyETLvxmL3UWYt4WYw5CMucjLy4CMx4iM0MTLu9GbwhSI", + value: "!(plon-342.10.2.7.0.pan-ae7.lo-12d.d5)!", + result: { + word: "plon", + correct: 10, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "08.12.2025", + }, + }, + { + date: "08.12.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDZt8GbugDN10SZpBnLw4SOuAjL24iM0MTLu9GbwhSI", + value: "!(plon-342.6.0.9.0.pie-548.lo-d5)!", + result: { + word: "plon", + correct: 6, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "08.12.2025", + }, + }, + { + date: "08.12.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDZt8Gbw5yM2ITLoN2MuMjZxITLu92auMTZy0ibvJmLwMTMt8mbn5CNmFTLkl3duAjL3EjLx4iMx4iM0MTLu9GbwhSI", + value: + "!(plon-342.12.1.17.0.wyd-1f4.gno-130.bon-2e3.kon-21f3.3ch-263.plo-d5)!", + result: { + word: "plon", + correct: 12, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "08.12.2025", + }, + }, + { + date: "08.12.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUDZt8Gbw5iZz0Cb1JnL2EmYtUWat5CMuMTMuEjL54iM0MTLu9GbwhSI", + value: "!(plon-342.9.1.13.0.mie-ba6.rul-3f.plo-d5)!", + result: { + word: "plon", + correct: 9, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "08.12.2025", + }, + }, + { + date: "08.12.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK1QWLvxmLhFjM10ievBnLw4yNuAjL34iM0MTLu9GbwhSI", + value: "!(plon-342.7.0.7.0.poz-521a.lo-d5)!", + result: { + word: "plon", + correct: 7, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "08.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/tradycyjna-pomylka-o-1-literke-w-przedostatnim-19-11-2025-diffle-difflepl-gryweb" +] = [ + { + date: "19.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZ2MuMGN00yYpxmLmVTMtUnej5iYllTLz92auAjL44CMuMjMuMjMz0SZp5WZ6NWashSI", + value: "!(liczenie-323.23.0.8.0.kos-9eb.czu-15f.lic-44c.3fa)!", + result: { + word: "liczenie", + correct: 23, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "19.11.2025", + }, + }, + { + date: "19.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYmNTLjlGbukDMlNWL6JHcuAjL54CMuMTMuMjMz0SZp5WZ6NWashSI", + value: "!(liczenie-323.13.0.9.0.prz-ce09.lic-3fa)!", + result: { + word: "liczenie", + correct: 13, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "19.11.2025", + }, + }, + { + date: "19.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZ2MtMWas5CZz0CcpBnLkFTMtUWaz5yN4ETLllWbuYmYy0SdoNmLw4iMx4iMugjMuMjMz0SZp5WZ6NWashSI", + value: "!(liczenie-323.28.2.12.0.chu-2bf.mie-187.sie-11d.pip-3d.lic-3fa)!", + result: { + word: "liczenie", + correct: 28, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "19.11.2025", + }, + }, + { + date: "19.11.2025", + nick: "Bigos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmZz0yYuIGZx0ibp5CO20iblxmL0MTLtVHcuAjL44iMuMjMuMjMz0SZp5WZ6NWashSI", + value: "!(liczenie-323.23.2.8.0.pum-34.len-68.in-1db.c-3fa)!", + result: { + word: "liczenie", + correct: 23, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "19.11.2025", + }, + }, + { + date: "19.11.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYmNTLjlmLwETMtMWZs5SZyQTLlp3cuE2Mt4WZ65CN30CZ15mLhRmMy0yavBnLw4yMx4yMucjMuMjMz0SZp5WZ6NWashSI", + value: + "!(liczenie-323.27.3.13.0.pok-22da.nud-74.zen-3a.sze-42e.lec-110.ic-3fa)!", + result: { + word: "liczenie", + correct: 27, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "19.11.2025", + }, + }, + { + date: "19.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYmNjLjRDNtMWas5CZ5ETL5JmeuQmM00icwNnLw4SMx4CMuMjMuMjMz0SZp5WZ6NWashSI", + value: "!(liczenie-323.23.0.11.0.spr-42d.zby-19d.lic-44c.3fa)!", + result: { + word: "liczenie", + correct: 23, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "19.11.2025", + }, + }, + { + date: "19.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYmNTLjlGbuQjY20SY3tmLw4CMx4SMuITMuMjMz0SZp5WZ6NWashSI", + value: "!(liczenie-323.12.1.10.0.kwa-6b4.lic-3fa)!", + result: { + word: "liczenie", + correct: 12, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "19.11.2025", + }, + }, + { + date: "19.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmZz0yYuIGZx0ibp5SMjFTLuVGbuY2YtUWai5yNy0ya1VmLw4iMx4iMuQjMuMjMz0SZp5WZ6NWashSI", + value: "!(liczenie-323.24.2.12.0.euk-27.bie-cf.len-1c1.in-1db.c-3fa)!", + result: { + word: "liczenie", + correct: 24, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "19.11.2025", + }, + }, + { + date: "19.11.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYmNTLjlmLwETMtMWZs5CO0UTLllGcuAjL44iMucTMuMjMz0SZp5WZ6NWashSI", + value: "!(liczenie-323.17.2.8.0.pie-548.lec-110.ic-3fa)!", + result: { + word: "liczenie", + correct: 17, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "19.11.2025", + }, + }, + { + date: "19.11.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmZz0yYpxmL0UWLudmeuQTY10ieyRXZp5mLw4CNx4iMucTMuMjMz0SZp5WZ6NWashSI", + value: "!(liczenie-323.17.2.14.0.nietrz-5a4.zgn-e4.lic-3fa)!", + result: { + word: "liczenie", + correct: 17, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 33, + date: "19.11.2025", + }, + }, + { + date: "19.11.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZ2MtMmL5IWMt4Was5iMlFWLuFGcuAjL14SMuUTMuMjMz0SZp5WZ6NWashSI", + value: "!(liczenie-323.15.1.5.0.pan-ae2.lin-1b9.c-3fa)!", + result: { + word: "liczenie", + correct: 15, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "19.11.2025", + }, + }, + { + date: "19.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYmNTLjlGbuQGZk1SbvBnLhNTLuVmeuQjZx0CZ5dnLw4iMx4CMuMjMuMjMz0SZp5WZ6NWashSI", + value: "!(liczenie-323.23.0.12.0.wyd-1f4.zen-3a.pom-ddd.lic-3fa)!", + result: { + word: "liczenie", + correct: 23, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "19.11.2025", + }, + }, + { + date: "19.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYmNjLyM2MuMGN00yYpxmLwMDMx0yY5dnLiNTLuV3cuQTMx0ibvRnL5QTLp5GcuMmNh1SYydmLw4yMx4SMukzMuMjMz0SZp5WZ6NWashSI", + value: + "!(liczenie-323.39.1.13.0.gra-a6c.pni-49.ton-114.sun-3b.wyc-1030.lic-44c.3c2.3fa)!", + result: { + word: "liczenie", + correct: 39, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 53, + date: "19.11.2025", + }, + }, + { + date: "19.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEmZz0yYpxmL1gTL6NWduEWMyUTL69GcuAjL34CMugTMuMjMz0SZp5WZ6NWashSI", + value: "!(liczenie-323.18.0.7.0.poz-521a.ucz-85.lic-3fa)!", + result: { + word: "liczenie", + correct: 18, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "19.11.2025", + }, + }, + { + date: "19.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZ2MtMWauATMx0yYlxmLzkDOhFTL6JHcuAjL44iMukTMuMjMz0SZp5WZ6NWashSI", + value: "!(liczenie-323.19.2.8.0.prz-1a893.lec-110.ic-3fa)!", + result: { + word: "liczenie", + correct: 19, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "19.11.2025", + }, + }, + { + date: "19.11.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZ2MtMWas5iNhJWLllWbuAjL34yMuITMuMjMz0SZp5WZ6NWashSI", + value: "!(liczenie-323.12.3.7.0.mie-ba6.lic-3fa)!", + result: { + word: "liczenie", + correct: 12, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "19.11.2025", + }, + }, + { + date: "19.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYmNTLjlGbuMDZtMWez5SMwETLjVmYuUDOto3Y15COkRWLlp3YukDNy0CZv1mLw4CNx4iMuQzMuMjMz0SZp5WZ6NWashSI", + value: + "!(liczenie-323.34.2.14.0.mod-249.cze-dd8.ucz-85.bec-101.syc-d3.lic-3fa)!", + result: { + word: "liczenie", + correct: 34, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 50, + date: "19.11.2025", + }, + }, + { + date: "19.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhZ2MtMWauATMx0yYlxmLkZTL6NWdugDOx0SZ6NmLhFzNz0ieyBnLw4SMx4SMucjMuMjMz0SZp5WZ6NWashSI", + value: "!(liczenie-323.27.1.11.0.prz-371a.cze-188.ucz-6d.lec-110.ic-3fa)!", + result: { + word: "liczenie", + correct: 27, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "19.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/tradycyjna-pomylka-o-1-literke-w-przedostatnim-30-10-2025-diffle-difflepl-gryweb" +] = [ + { + date: "30.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwYWOuQjYh5SZhRWLpd3cuMDNzETLsl3duAjL44SMuQjMuMDMz0SYuFGb0VWa3JUOlUzQlgSI", + value: "!(świetlana-303.24.1.8.0.wyl-1343.swi-dae.ab4.9f0)!", + result: { + word: "świetlana", + correct: 24, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "30.10.2025", + }, + }, + { + date: "30.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMmlTLpdnL5kTLp52cuQGOx0CczFmLw4SMx4CNuUTMuMDMz0SYuFGb0VWa3JUOlUzQlgSI", + value: "!(świetlana-303.15.4.11.0.asp-18d.sni-99.wi-9f0)!", + result: { + word: "świetlana", + correct: 15, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "30.10.2025", + }, + }, + { + date: "30.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMmljLiRWYtk2dz5iZiJTL1h2YuAjL24CMuAjMuMDMz0SYuFGb0VWa3JUOlUzQlgSI", + value: "!(świetlana-303.20.0.6.0.chu-2bf.swi-adb.9f0)!", + result: { + word: "świetlana", + correct: 20, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "30.10.2025", + }, + }, + { + date: "30.10.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMmlTLpdnLmRzMtkmbz5CO50yb6pnLw4SMx4SMuMTMuMDMz0SYuFGb0VWa3JUOlUzQlgSI", + value: "!(świetlana-303.13.1.11.0.zzo-98.sni-34f.wi-9f0)!", + result: { + word: "świetlana", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "30.10.2025", + }, + }, + { + date: "30.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwYWOtk2dz5SMiZGNtMXe35CO5UTLpdXduYzMy0SZpdnLkdTNx0SZp1mLw4yMx4SMuYjMuMDMz0SYuFGb0VWa3JUOlUzQlgSI", + value: + "!(świetlana-303.26.1.13.0.mie-157d.wie-236.uwi-598.wys-4fb1.swi-9f0)!", + result: { + word: "świetlana", + correct: 26, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "30.10.2025", + }, + }, + { + date: "30.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwYWOuQjYh1Sa3NnLzkDOhFTL6JHcuAjL34iMuEjMuMDMz0SYuFGb0VWa3JUOlUzQlgSI", + value: "!(świetlana-303.21.2.7.0.prz-1a893.swi-ab4.9f0)!", + result: { + word: "świetlana", + correct: 21, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "30.10.2025", + }, + }, + { + date: "30.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMmlTLpdnLkFDNtkWbz5iYkdTMt42bw5CO50yb6pnLw4iMx4CMuAjMuMDMz0SYuFGb0VWa3JUOlUzQlgSI", + value: "!(świetlana-303.20.0.12.0.zzo-98.pon-17db.smi-41d.wi-9f0)!", + result: { + word: "świetlana", + correct: 20, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "30.10.2025", + }, + }, + { + date: "30.10.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjZ54yM0EWLpd3cuMWN10SZpBnLw4CMx4SMuAjMuMDMz0SYuFGb0VWa3JUOlUzQlgSI", + value: "!(świetlana-303.20.1.10.0.pie-55c.swi-a43.9f0)!", + result: { + word: "świetlana", + correct: 20, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "30.10.2025", + }, + }, + { + date: "30.10.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMmljLiRWYuQDO14SZhRWLpd3cuYDNl1CczdnLw4CNx4SMucjMuMDMz0SYuFGb0VWa3JUOlUzQlgSI", + value: "!(świetlana-303.27.1.14.0.wsp-e46.swi-dae.584.adb.9f0)!", + result: { + word: "świetlana", + correct: 27, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "30.10.2025", + }, + }, + { + date: "30.10.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMmljL0IWYuITZh1Sa3NnLzE2Mx0ydvBnL0MzMx0Cb5dnLw4yMx4iMugjMuMDMz0SYuFGb0VWa3JUOlUzQlgSI", + value: "!(świetlana-303.28.2.13.0.wyl-1334.pow-13a3.swi-ae2.ab4.9f0)!", + result: { + word: "świetlana", + correct: 28, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 43, + date: "30.10.2025", + }, + }, + { + date: "30.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpAjZ54CNiFmLiRWYuMDOk5SYkFTMtk2dz5COwcTLslWbuAjL24SMuMzMuMDMz0SYuFGb0VWa3JUOlUzQlgSI", + value: "!(świetlana-303.33.1.6.0.mil-708.swi-11da.d83.adb.ab4.9f0)!", + result: { + word: "świetlana", + correct: 33, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "30.10.2025", + }, + }, + { + date: "30.10.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMmljLxYWOuQGMh1Sa35SM0UTL1x2cuETNtE2dp5yY2EWLhJ3ZuAjL44yMuIzMuMDMz0SYuFGb0VWa3JUOlUzQlgSI", + value: "!(świetlana-303.32.3.8.0.gra-a6c.iwa-51.slu-541.wi-a0d.9f1.9f0)!", + result: { + word: "świetlana", + correct: 32, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "30.10.2025", + }, + }, + { + date: "30.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMmlTLpd3cuQWM3MTL6JHcuAjL24iMuMTMuMDMz0SYuFGb0VWa3JUOlUzQlgSI", + value: "!(świetlana-303.13.2.6.0.prz-371d.swi-9f0)!", + result: { + word: "świetlana", + correct: 13, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "30.10.2025", + }, + }, + { + date: "30.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwYWOtk2duUTZx0Sau5iYkVTLhx2cuAjL44SMuYTMuMDMz0SYuFGb0VWa3JUOlUzQlgSI", + value: "!(świetlana-303.16.1.8.0.sla-5db.ni-1e5.wi-9f0)!", + result: { + word: "świetlana", + correct: 16, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "30.10.2025", + }, + }, + { + date: "30.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwYWOuQjYh1Sa35CN4ETLpx2cugTYtkmbr5yY1QWLll2cuczMx0iY1pnLjFmY00CZvBnLw4SOx4iMuUjMuMDMz0SYuFGb0VWa3JUOlUzQlgSI", + value: + "!(świetlana-303.25.2.19.0.pod-4bac.zub-137.sie-d5c.kni-a8.sli-184.wi-ab4.9f0)!", + result: { + word: "świetlana", + correct: 25, + position: 2, + incorrect: 19, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 46, + date: "30.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/troszke-klopotu-sprawilo-28-11-2025-diffle-difflepl-grywebowe-38-liter-w-5-slowa" +] = [ + { + date: "28.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjZ30ick5yNxMWLyJmL5MjNtg2Yv5SZlJTLy9GcuIWZ50ycvtmLw4SMx4yMuQjMuIzMz0SYulmYvJHZvhSI", + value: "!(odrobina-332.24.3.11.0.kos-9eb.por-2ee.och-639.br-c17.dr-7f2)!", + result: { + word: "odrobina", + correct: 24, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "28.11.2025", + }, + }, + { + date: "28.11.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyY2NtIHZv5iN50ybyRmL4cTMt8mci5CNhVTL6JHdllmbuAjL54iNuIjMuIzMz0SYulmYvJHZvhSI", + value: "!(odrobina-332.22.6.9.0.nietrz-5a4.bro-178.dro-96.odr-7f2)!", + result: { + word: "odrobina", + correct: 22, + position: 6, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "28.11.2025", + }, + }, + { + date: "28.11.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjZ30ick9mL4Q2MtI3bi5iYiZTLyFWbucTN00ybwVnLw4CNx4SMuIjMuIzMz0SYulmYvJHZvhSI", + value: "!(odrobina-332.22.1.14.0.upo-457.mar-6bb.bor-3d8.odr-7f2)!", + result: { + word: "odrobina", + correct: 22, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "28.11.2025", + }, + }, + { + date: "28.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyY2NtIHZv5iN50ybyRmLxY2Mt8Gcz5iZiJTL1h2YuAjL44CMuMjMuIzMz0SYulmYvJHZvhSI", + value: "!(odrobina-332.23.0.8.0.chu-2bf.spo-3f1.dro-96.odr-7f2)!", + result: { + word: "odrobina", + correct: 23, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "28.11.2025", + }, + }, + { + date: "28.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyY2NtIHZv5CZyQTLyB3cuAjL24yMuETMuIzMz0SYulmYvJHZvhSI", + value: "!(odrobina-332.11.3.6.0.spr-42d.odr-7f2)!", + result: { + word: "odrobina", + correct: 11, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "28.11.2025", + }, + }, + { + date: "28.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMmdTLyR2buEmZy0CZvJnLxUWMx0ybyBnL3ITLrVXZuAjL44yMuEjMuIzMz0SYulmYvJHZvhSI", + value: "!(odrobina-332.21.3.8.0.euk-27.pro-11e1.rod-2fa.odr-7f2)!", + result: { + word: "odrobina", + correct: 21, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "28.11.2025", + }, + }, + { + date: "28.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMmdTLyR2buYWMtEmck5SY50CajNjLkVTL3FGcuATLjlGbuEjY00ya6NnL2QTL0VnbuMmNh1SYydmLw4SNx4SNucjMuIzMz0SYulmYvJHZvhSI", + value: + "!(odrobina-332.27.5.15.0.gra-a6c.nut-46.szk-4b1.lic-0.paw-5d.3ch-9a.dra-1f.odr-7f2)!", + result: { + word: "odrobina", + correct: 27, + position: 5, + incorrect: 15, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 47, + date: "28.11.2025", + }, + }, + { + date: "28.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyY2NtIHZuUWZh1ici9mL3QjMto2b35yM5gTYx0ieyBnLw4iNx4SMuAjMuIzMz0SYulmYvJHZvhSI", + value: "!(odrobina-332.20.1.16.0.prz-1a893.woj-247.obr-aee.dr-7f2)!", + result: { + word: "odrobina", + correct: 20, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "28.11.2025", + }, + }, + { + date: "28.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMmdTLyR2bugjZtkmck5CNmFTLkl3duAjL14iMuUTMuIzMz0SYulmYvJHZvhSI", + value: "!(odrobina-332.15.2.5.0.wyd-1f4.dri-f8.odr-7f2)!", + result: { + word: "odrobina", + correct: 15, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "28.11.2025", + }, + }, + { + date: "28.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjZ30ick9mL2kTLvJHZuUTZ40ic5dnLwUzMtIXdr5CN50ycphmLw4SMx4iMuUjMuIzMz0SYulmYvJHZvhSI", + value: "!(odrobina-332.25.2.11.0.his-94.kur-350.wyr-8e5.dro-96.odr-7f2)!", + result: { + word: "odrobina", + correct: 25, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "28.11.2025", + }, + }, + { + date: "28.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMmdTLyRmLzEWLyB3buQjY20SY3tmLw4SMx4CNuQTMuIzMz0SYulmYvJHZvhSI", + value: "!(odrobina-332.14.4.11.0.kwa-6b4.opr-a3.dr-7f2)!", + result: { + word: "odrobina", + correct: 14, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "28.11.2025", + }, + }, + { + date: "28.11.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMmdTLyR2buUmNx0iYvJnL0MTLvlGcuYTYi1SZp1mLw4SMx4CNukTMuIzMz0SYulmYvJHZvhSI", + value: "!(odrobina-332.19.4.11.0.mie-ba6.pio-34.rob-16e.odr-7f2)!", + result: { + word: "odrobina", + correct: 19, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "28.11.2025", + }, + }, + { + date: "28.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjZ30ick9mLmFTLvdnLmJTNtw2bk5CNz0ybnFmLhFjM10ievBnLw4CMx4yMuMjMuIzMz0SYulmYvJHZvhSI", + value: "!(odrobina-332.23.3.10.0.poz-521a.ago-34.dol-52f.wo-1f.odr-7f2)!", + result: { + word: "odrobina", + correct: 23, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "28.11.2025", + }, + }, + { + date: "28.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyY2NtIHZv5SYidDOtQ2bw5SO0ITLk9WbuAjL54SMuYTMuIzMz0SYulmYvJHZvhSI", + value: "!(odrobina-332.16.1.9.0.mod-249.pod-87ba.odr-7f2)!", + result: { + word: "odrobina", + correct: 16, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "28.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/trudne-znalem-ale-inaczej-pisane-znow-niepolskawe-21-12-2025-flag-pl-diffle-diff" +] = [ + { + date: "21.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM1cTLh5iZyITLph2YuATM00ibhNnLkVWMtg2Yz4yYi1yZhxmL0IWMtMXYm5iZyQTL09GcuQDZx0SeztmLkRTLzFmYuADNwETLyFWbuIjLwIjL04CMz4SN1MTLu92cuFGajhSI", + value: + "!(chanson-355.30.4.20.2.mar-1040.bas-4d.ksy-1d4.pot-42f.fas-1b4.lag-bc.3ch-1ed.san-410.chi-22f.a-753)!", + result: { + word: "chanson", + correct: 30, + position: 4, + incorrect: 20, + knownIncorrect: 2, + totalWords: 10, + totalLetters: 54, + date: "21.12.2025", + }, + }, + { + date: "21.12.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM1cjLzEGZtEGaj5CZ1ETLjVHcuQjYx0ychZmL4AzMtwWYz5CMmlTLz92auAjLzEjLz4SMy4SN1MTLu92cuFGajhSI", + value: + "!(chanson-355.21.3.13.0.kos-9f0.sal-308.fas-1b4.puc-15d.cha-da3.753)!", + result: { + word: "chanson", + correct: 21, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "21.12.2025", + }, + }, + { + date: "21.12.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM1cTLhh2YuYjNz0ych1mLlVTMtsWYz5yYz0ycvdmL5YjMtMXYq5yM4UTLvFmbuEjL2EjL04iMy4SN1MTLu92cuFGajhSI", + value: + "!(chanson-355.22.4.16.1.nao-583.jas-269.gos-3c.sak-15e.mas-366.cha-753)!", + result: { + word: "chanson", + correct: 22, + position: 4, + incorrect: 16, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 42, + date: "21.12.2025", + }, + }, + { + date: "21.12.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM1cTLh5SOk1SdoNmLmRTLj5WYuYmN40ychtmL0ADNtEGbw5yY2EWLhJ3ZuAjL0EjLx4SMy4SN1MTLu92cuFGajhSI", + value: + "!(chanson-355.21.1.14.0.gra-a6c.pla-404.kas-86f.anc-4f.chu-d9.a-753)!", + result: { + word: "chanson", + correct: 21, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "21.12.2025", + }, + }, + { + date: "21.12.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTN30SYuATOtwmLkFmMtUHaj5CNhVTL6JHdllmbuAjL1EjLx4COx4SN1MTLu92cuFGajhSI", + value: "!(chanson-355.18.1.15.0.nietrz-5a4.chu-2ad.l-90.a-753)!", + result: { + word: "chanson", + correct: 18, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "21.12.2025", + }, + }, + { + date: "21.12.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM1cTLhh2YuE2Nx0SYstmL2YzMtMXYt5CZyQTLyB3cuAjLyEjLx4COx4SN1MTLu92cuFGajhSI", + value: "!(chanson-355.18.1.12.0.spr-42d.mas-366.kla-17a.cha-753)!", + result: { + word: "chanson", + correct: 18, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "21.12.2025", + }, + }, + { + date: "21.12.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTN34SM5gjLjZGNtEmLxkTLs5CMzEWLv5iZiJTL1h2YuAjLyEjLy4SNy4SN1MTLu92cuFGajhSI", + value: "!(chanson-355.25.2.12.0.chu-2bf.o-a30.l-91.a-4fc.891.753)!", + result: { + word: "chanson", + correct: 25, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "21.12.2025", + }, + }, + { + date: "21.12.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM1cTLhh2YuQjYx0ychZmLmF2NtEGauQTYtEWauUWLnlnLiFTL3p3YuAjLxEjLy4yMy4SN1MTLu92cuFGajhSI", + value: "!(chanson-355.23.2.11.0.czw-1b.yg-e.ia-a4.ha-7af.fas-1b4.cha-753)!", + result: { + word: "chanson", + correct: 23, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "21.12.2025", + }, + }, + { + date: "21.12.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM1cTLhh2YuADZ40ibh1mLmFjNt4WYi5SN20SY1dmL2YWMt8mbh5iNjdTLhx2auEWM3MTL6JHcuAjL4EjLy4yMy4SN1MTLu92cuFGajhSI", + value: + "!(chanson-355.23.2.18.0.prz-371a.kla-7c6.ano-1f6.gua-65.ban-61f.man-8d0.cha-753)!", + result: { + word: "chanson", + correct: 23, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 43, + date: "21.12.2025", + }, + }, + { + date: "21.12.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM1cTLhh2YuYjNz0ych1mL0QTLqF2cuY2Y00CbhJmL3ITLrVXZuAjLyEjLx4CMy4SN1MTLu92cuFGajhSI", + value: "!(chanson-355.20.1.12.0.euk-27.bal-4cf.saj-44.mas-366.cha-753)!", + result: { + word: "chanson", + correct: 20, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "21.12.2025", + }, + }, + { + date: "21.12.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzUzNuMjY20SYoNmLlVTLjFWbuUjMtg2Yz4yNx0ibhxmLjRTYt4WYt5CNmFTLkl3duIjL0EjLx4SNy4SN1MTLu92cuFGajhSI", + value: + "!(chanson-355.25.1.14.2.wyd-1f4.man-a4c.lan-17.3ch-25.mac-5e.cha-6b3.753)!", + result: { + word: "chanson", + correct: 25, + position: 1, + incorrect: 14, + knownIncorrect: 2, + totalWords: 7, + totalLetters: 40, + date: "21.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/trudniejsze-niz-by-sie-wydawalo-25-12-2024-diffle-diffleen-grywebowe-41-letters-" +] = [ + { + date: "25.12.2024", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYmNtMnbl5CZ2ETLuVmduQTOt4WZz5SZ40iZlRmL5YTMt4WYi5CM1kTL05WauAjL0EjLz4CNy4CM2MTLlZXYsNnblhSI", + value: + "!(enslave-360.24.3.14.0.int-950.ban-169.def-8e.sen-94.ven-16d.ens-6f)!", + result: { + word: "enslave", + correct: 24, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 41, + date: "25.12.2024", + }, + }, + { + date: "25.12.2024", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYmNtMnbl5iM10CbvBnLwIWLz5WZuMTNt4WZs5yY20iblJnLxITLlh2YuAjLzEjLz4iMy4CM2MTLlZXYsNnblhSI", + value: + "!(enslave-360.22.3.13.0.che-21.ren-6c.len-53.ens-b0.pol-52.ens-6f)!", + result: { + word: "enslave", + correct: 22, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "25.12.2024", + }, + }, + { + date: "25.12.2024", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZ20ycuVmLxYWLhx2cucTMtYXYu5CMxgTLoN2MuEmMtQ3bk5yY40SdoNmL0QWLuFGbuITMx0CbhBnLyYTLtF2ZuAjL0EjLy4iNy4CM2MTLlZXYsNnblhSI", + value: + "!(enslave-360.26.2.14.0.gam-62.pal-112.lan-d4.chu-8c.dot-2a.3ch-810.nav-17.sla-f1.ens-6f)!", + result: { + word: "enslave", + correct: 26, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 42, + date: "25.12.2024", + }, + }, + { + date: "25.12.2024", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmZTLz5WZuMGN00ycuVnLzYWLhx2cuAjZtMXYn5CMukjLx4CMy4CM2MTLlZXYsNnblhSI", + value: "!(enslave-360.20.1.9.0.gas-f0.sla-f3.uns-44c.ens-6f)!", + result: { + word: "enslave", + correct: 20, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "25.12.2024", + }, + }, + { + date: "25.12.2024", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmZTLz5WZuMTLz9mbuQTLh5mLhRWLuF2cuIzMtMXdh5CMukjLz4yNx4CM2MTLlZXYsNnblhSI", + value: "!(enslave-360.17.3.9.0.aus-32.san-da.na-4.nos-3.ens-6f)!", + result: { + word: "enslave", + correct: 17, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "25.12.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/trzeba-bylo-poskladac-07-11-2025-flag-pl-diffle-difflepl-grywebowe-23-litery-w-2" +] = [ + { + date: "07.11.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpczMtsWey5CNhVTL6JHdllmbuAjL34CNuITMuETMz0Cdlp3cvtWeyhSI", + value: "!(rykoszet-311.12.4.7.0.nietrz-5a4.ryk-37)!", + result: { + word: "rykoszet", + correct: 12, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "07.11.2025", + }, + }, + { + date: "07.11.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpczMtsWey5iN1cTLyt2buYTYi1SZp1mLw4CMx4SNuUTMuETMz0Cdlp3cvtWeyhSI", + value: "!(rykoszet-311.15.5.10.0.mie-ba6.okr-756.ryk-37)!", + result: { + word: "rykoszet", + correct: 15, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "07.11.2025", + }, + }, + { + date: "07.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpczMtsWey5iYllTLz92auAjLz4SMuMTMuETMz0Cdlp3cvtWeyhSI", + value: "!(rykoszet-311.13.1.3.0.kos-9eb.ryk-37)!", + result: { + word: "rykoszet", + correct: 13, + position: 1, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "07.11.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNz0ya5JnL3IjYtM3br5iZ5ETLz9WbuYzYzETLvB3cuAjL54CNugTMuETMz0Cdlp3cvtWeyhSI", + value: "!(rykoszet-311.18.4.9.0.spo-13c6.mos-19f.kos-b27.ryk-37)!", + result: { + word: "rykoszet", + correct: 18, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + }, + }, + { + date: "07.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpczMtsWey5yNzITL0VGcuAjL34iMuETMuETMz0Cdlp3cvtWeyhSI", + value: "!(rykoszet-311.11.2.7.0.pet-237.ryk-37)!", + result: { + word: "rykoszet", + correct: 11, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "07.11.2025", + }, + }, + { + date: "07.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpczMtsWey5yN1EWLz92auYmYy0SdoNmLw4CMx4iMuUTMuETMz0Cdlp3cvtWeyhSI", + value: "!(rykoszet-311.15.2.10.0.chu-2bf.kos-a57.ryk-37)!", + result: { + word: "rykoszet", + correct: 15, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "07.11.2025", + }, + }, + { + date: "07.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNz0ya5JnLjNTNt8mcn5CZyQTLyB3cuAjL44iMucTMuETMz0Cdlp3cvtWeyhSI", + value: "!(rykoszet-311.17.2.8.0.spr-42d.gro-53c.ryk-37)!", + result: { + word: "rykoszet", + correct: 17, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "07.11.2025", + }, + }, + { + date: "07.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3MTLrlncuETN40CcvtmL3ITLrVXZuEjL44iNuQTMuETMz0Cdlp3cvtWeyhSI", + value: "!(rykoszet-311.14.6.8.1.euk-27.kop-851.ryk-37)!", + result: { + word: "rykoszet", + correct: 14, + position: 6, + incorrect: 8, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 28, + date: "07.11.2025", + }, + }, + { + date: "07.11.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNz0yauIzMtMWey5CO0UTLllGcuAjL54CNuQTMuETMz0Cdlp3cvtWeyhSI", + value: "!(rykoszet-311.14.4.9.0.pie-548.ryc-32.k-37)!", + result: { + word: "rykoszet", + correct: 14, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "07.11.2025", + }, + }, + { + date: "07.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpczMtsWey5SZiJWLz92auEWMyUTL69GcuAjL34CNuYTMuETMz0Cdlp3cvtWeyhSI", + value: "!(rykoszet-311.16.4.7.0.poz-521a.kos-bbe.ryk-37)!", + result: { + word: "rykoszet", + correct: 16, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "07.11.2025", + }, + }, + { + date: "07.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpczMtsWeuQTMtM2by5CZ5QTMtQXe35SOmFTLtV3cuQzY0ITLvJHcuMmNh1SYydmLw4SMx4SNuAjMuETMz0Cdlp3cvtWeyhSI", + value: + "!(rykoszet-311.20.5.11.0.gra-a6c.pro-24c4.sum-1f9.wyt-149d.roc-14.yk-37)!", + result: { + word: "rykoszet", + correct: 20, + position: 5, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "07.11.2025", + }, + }, + { + date: "07.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpczMtsWey5iN1cTLyt2buIzNtkncw5SN4MTL5JnZuQjZx0CZ5dnLw4iMx4yMuMjMuETMz0Cdlp3cvtWeyhSI", + value: "!(rykoszet-311.23.3.12.0.wyd-1f4.fry-385.pry-72.okr-756.ryk-37)!", + result: { + word: "rykoszet", + correct: 23, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "07.11.2025", + }, + }, + { + date: "07.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpczMtsWey5CNiZTLhd3auAjL34CNuITMuETMz0Cdlp3cvtWeyhSI", + value: "!(rykoszet-311.12.4.7.0.kwa-6b4.ryk-37)!", + result: { + word: "rykoszet", + correct: 12, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "07.11.2025", + }, + }, + { + date: "07.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNz0ya5JnLzkDOhFTL6JHcuAjL44iMuETMuETMz0Cdlp3cvtWeyhSI", + value: "!(rykoszet-311.11.2.8.0.prz-1a893.ryk-37)!", + result: { + word: "rykoszet", + correct: 11, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "07.11.2025", + }, + }, + { + date: "07.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyNz0ya5JnL2QzMt8mcr5CZ4ETL6J3bukDNy0CZv1mLw4iMx4CNuAjMuETMz0Cdlp3cvtWeyhSI", + value: "!(rykoszet-311.20.4.12.0.mod-249.orz-18d.kro-346.ryk-37)!", + result: { + word: "rykoszet", + correct: 20, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "07.11.2025", + }, + }, + { + date: "07.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK3MTLrlncuEWM3MTL6JHcuAjL24SMuITMuETMz0Cdlp3cvtWeyhSI", + value: "!(rykoszet-311.12.1.6.0.prz-371a.ryk-37)!", + result: { + word: "rykoszet", + correct: 12, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "07.11.2025", + }, + }, + { + date: "07.11.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpczMtsWey5SZ5QTL5JHduYzYjFTLyF2auAjL14yMuYTMuETMz0Cdlp3cvtWeyhSI", + value: "!(rykoszet-311.16.3.5.0.kar-1cc6.try-49e.ryk-37)!", + result: { + word: "rykoszet", + correct: 16, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "07.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/trzy-razy-po-jednej-tej-samej-literce-a-potem-od-razu-haslo-najs-18-12-2025-flag" +] = [ + { + date: "18.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzNh1SYyJmL3kzMtMXdw5yMzkTLvxmeuYWOx0yYzdnLw4COx4CMucjLyUzMtoXN4UCNDVicihSI", + value: "!(brąz-352.7.0.18.0.wsc-19f.zlo-933.pus-397.bra-a71)!", + result: { + word: "brąz", + correct: 7, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "18.12.2025", + }, + }, + { + date: "18.12.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzNh1SYyJmLwEGNtg2Yz4CO2ITLlJHdukjMtkGbw5iN5MWMtQWY65yM0MTMtwWe35CMukTMuEjLxEjLyUzMtoXN4UCNDVicihSI", + value: + "!(brąz-352.11.1.19.0.wyl-1343.zad-1c96.pli-29.tre-268.3ch-4a0.bra-a71)!", + result: { + word: "brąz", + correct: 11, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "18.12.2025", + }, + }, + { + date: "18.12.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxcTYtEmL5cTMtonci5SYz0Se6NnLmJmMtUHaj5CMuUTMuEjLwEjLyUzMtoXN4UCNDVicihSI", + value: "!(brąz-352.10.1.15.0.chu-2bf.szy-3a.brz-179.a-a71)!", + result: { + word: "brąz", + correct: 10, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "18.12.2025", + }, + }, + { + date: "18.12.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM3EWLhJnYuUTY10ieyRXZp5mLw4iMx4SMuYjLyUzMtoXN4UCNDVicihSI", + value: "!(brąz-352.6.1.12.0.nietrz-5a5.bra-a71)!", + result: { + word: "brąz", + correct: 6, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "18.12.2025", + }, + }, + { + date: "18.12.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM3EWLhJnYuEmZz0SeydmL0UGNtg2Yz4CNyQTL6J3duMDZ30SatpnLkhTMtA3ch5SMuIjMuEjLyEjLyUzMtoXN4UCNDVicihSI", + value: + "!(brąz-352.12.1.22.1.asp-18d.zmi-7d3.wrz-424.3ch-4e4.gry-3fa.bra-a71)!", + result: { + word: "brąz", + correct: 12, + position: 1, + incorrect: 22, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 35, + date: "18.12.2025", + }, + }, + { + date: "18.12.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM3EWLhJnYuMzNz0CZhNnL4QWZtEGbw5CO50yb6pnLw4yMx4SMukjLyUzMtoXN4UCNDVicihSI", + value: "!(brąz-352.9.1.13.0.zzo-98.pla-ed8.sad-373.bra-a71)!", + result: { + word: "brąz", + correct: 9, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "18.12.2025", + }, + }, + { + date: "18.12.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzNh1SYyJmLmZDOwETL69mcuMWN10SZpBnLw4CNx4CMugjLyUzMtoXN4UCNDVicihSI", + value: "!(brąz-352.8.0.14.0.pie-55c.roz-1086f.bra-a71)!", + result: { + word: "brąz", + correct: 8, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "18.12.2025", + }, + }, + { + date: "18.12.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzNh1SYyJmLwEGNtg2Yz4COkJWLlJ3auUTN10ydvJnL5UjNx0CbhpnLw4CNx4SMugjLyUzMtoXN4UCNDVicihSI", + value: "!(brąz-352.8.1.14.0.zal-1659.row-555.kre-bd8.3ch-4a0.bra-a71)!", + result: { + word: "brąz", + correct: 8, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 23, + date: "18.12.2025", + }, + }, + { + date: "18.12.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxcTYtEmci5yMhZTLjFWbuEDN10SdsNnLyMzMx0yc5dnLw4yMx4CMucjLyUzMtoXN4UCNDVicihSI", + value: "!(brąz-352.7.0.13.0.wys-1332.slu-541.mac-6a3.bra-a71)!", + result: { + word: "brąz", + correct: 7, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "18.12.2025", + }, + }, + { + date: "18.12.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM3EWLhJnYuITZ00SYypnL2Q2Mt8mct5CZxczMtoncw5CMuUTMuAjLwEjLyUzMtoXN4UCNDVicihSI", + value: "!(brąz-352.10.0.15.0.prz-371d.mro-3d6.zra-4e2.bra-a71)!", + result: { + word: "brąz", + correct: 10, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "18.12.2025", + }, + }, + { + date: "18.12.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxcTYtEmci5SZ3cDMx0ievJnL1UjMto2b35yM5gTYx0ieyBnLw4yMy4SMugjLyUzMtoXN4UCNDVicihSI", + value: "!(brąz-352.8.1.23.0.prz-1a893.woj-255.roz-1077e.bra-a71)!", + result: { + word: "brąz", + correct: 8, + position: 1, + incorrect: 23, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "18.12.2025", + }, + }, + { + date: "18.12.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEzNh1SYyJmLxgTLhpncuYTYi1SZp1mLw4CNx4SMucjLyUzMtoXN4UCNDVicihSI", + value: "!(brąz-352.7.1.14.0.mie-ba6.rza-81.bra-a71)!", + result: { + word: "brąz", + correct: 7, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "18.12.2025", + }, + }, + { + date: "18.12.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSM3EWLhJnYuITO00iehdmL4QWZtEGbw5iN4QTLhtWdugTOt8me65SMucTMuEjLxEjLyUzMtoXN4UCNDVicihSI", + value: "!(brąz-352.11.1.17.1.zzo-98.uka-486.pla-ed8.gaz-492.bra-a71)!", + result: { + word: "brąz", + correct: 11, + position: 1, + incorrect: 17, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 29, + date: "18.12.2025", + }, + }, + { + date: "18.12.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKxcTYtEmci5yMjJTLhl2duMDNiRTLk9GcuAjL54CMugjLyUzMtoXN4UCNDVicihSI", + value: "!(brąz-352.8.0.9.0.pod-4b43.wia-2c3.bra-a71)!", + result: { + word: "brąz", + correct: 8, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "18.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ujmujaco-frustrujace-09-11-2025-flag-pl-diffle-difflepl-grywebowe-52-litery-w-9-" +] = [ + { + date: "09.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtsmLhJTLmxWZuUjM00CbhtmL0YmMtUGb15CO00ialhmLk1yal1mL3ATMtMWZi5SZ1YTLlJ3auMWL05WYuIjL1IjLz4CNy4yMxMTLhtGblhSI", + value: + "!(elka-313.24.3.25.2.ant-c.kre-65e.bec-107.mek-d.hej-48.ule-2f4.kal-425.elf-2a.k-0)!", + result: { + word: "elka", + correct: 24, + position: 3, + incorrect: 25, + knownIncorrect: 2, + totalWords: 9, + totalLetters: 52, + date: "09.11.2025", + }, + }, + { + date: "09.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0yasVmLw0yalRmLw0ial5CNiZTLhd3auAjL0EjLy4SMx4yMxMTLhtGblhSI", + value: "!(elka-313.11.2.14.0.kwa-6b4.ej-0.dek-0.elk-0)!", + result: { + word: "elka", + correct: 11, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "09.11.2025", + }, + }, + { + date: "09.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0yasVmL0IWMtg2Yz4iY1ETL0FGcukzN10SZpdnLwEWMtUHaj5CMtsWZi5iYllTLz92auAjL5EjLx4COx4yMxMTLhtGblhSI", + value: + "!(elka-313.18.1.19.0.kos-9eb.bek-0.chu-1a0.wie-579.pat-15b.3ch-1b4.elk-0)!", + result: { + word: "elka", + correct: 18, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 38, + date: "09.11.2025", + }, + }, + { + date: "09.11.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0yasVmLmdTMtIWdk5iNhJWLllWbuAjL0EjLy4CMx4yMxMTLhtGblhSI", + value: "!(elka-313.10.2.14.0.mie-ba6.dub-17f.elk-0)!", + result: { + word: "elka", + correct: 10, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "09.11.2025", + }, + }, + { + date: "09.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLrxWZuEWN40Cdl1mLw0yalJmL4YWOtEmcw5iZiJTL1h2YuAjL2EjLw4yMx4yMxMTLhtGblhSI", + value: "!(elka-313.13.0.16.0.chu-2bf.pra-9f8.bek-0.met-85a.elk-0)!", + result: { + word: "elka", + correct: 13, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "09.11.2025", + }, + }, + { + date: "09.11.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtsGbl5COjFTLsVmYugjZtUGbt5CNhVTL6JHdllmbuAjL0EjLx4CNx4yMxMTLhtGblhSI", + value: "!(elka-313.14.1.14.0.nietrz-5a4.mle-f8.bel-1c8.elk-0)!", + result: { + word: "elka", + correct: 14, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "09.11.2025", + }, + }, + { + date: "09.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0yas5SMtE2duUjYtEGdl5yY2EWLhJ3ZuAjLyEjLx4CMx4yMxMTLhtGblhSI", + value: "!(elka-313.10.1.12.0.gra-a6c.eta-b5.wa-1.lk-0)!", + result: { + word: "elka", + correct: 10, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "09.11.2025", + }, + }, + { + date: "09.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtsGbuATLrRnLw0yaz5CMtsWbuETMt8Gcl5CNmFTLkl3duAjLyEjLx4yNx4yMxMTLhtGblhSI", + value: "!(elka-313.17.1.12.0.wyd-1f4.epo-11.mk-0.sk-0.tk-0.lk-0)!", + result: { + word: "elka", + correct: 17, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "09.11.2025", + }, + }, + { + date: "09.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0yas5yNy0ya1VmLw4yNuAjL34yMxMTLhtGblhSI", + value: "!(elka-313.7.0.7.0.euk-27.lk-0)!", + result: { + word: "elka", + correct: 7, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "09.11.2025", + }, + }, + { + date: "09.11.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtsGbl5SMtoWau5iYtMWYk5CZiFTLwF2auUTNy0yc11mL4MWMtwWZi5yYycTLsl3duYzYjFTLyF2auAjLxIjL04yMy4yMxMTLhtGblhSI", + value: + "!(elka-313.23.4.21.0.kar-1cc6.wyl-72c.bel-1c8.mus-255.kap-1bd.dac-b.nij-1.elk-0)!", + result: { + word: "elka", + correct: 23, + position: 4, + incorrect: 21, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 48, + date: "09.11.2025", + }, + }, + { + date: "09.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0yasVmL4MWMtwWZi5SYxITNto3bw5CMugjLx4CMx4yMxMTLhtGblhSI", + value: "!(elka-313.10.1.8.0.poz-521a.bel-1c8.elk-0)!", + result: { + word: "elka", + correct: 10, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "09.11.2025", + }, + }, + { + date: "09.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCMtsGbl5COjFTLsVmYuEWM3MTL6JHcuAjLwEjLw4CMx4yMxMTLhtGblhSI", + value: "!(elka-313.10.0.10.0.prz-371a.bel-1c8.elk-0)!", + result: { + word: "elka", + correct: 10, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "09.11.2025", + }, + }, + { + date: "09.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKw0yas5SMz0CdzVmL5QjMtQ2bt5CMuQTMuAjL44yMxMTLhtGblhSI", + value: "!(elka-313.8.0.14.0.mod-249.est-31.lk-0)!", + result: { + word: "elka", + correct: 8, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "09.11.2025", + }, + }, + { + date: "09.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpATLrxWZugjNtYWYr5COjFTLsVmYucDNy0iavdnLzkDOhFTL6JHcuAjLwIjLx4SNx4yMxMTLhtGblhSI", + value: "!(elka-313.15.1.20.0.prz-1a893.woj-247.bel-1c8.kaf-68.elk-0)!", + result: { + word: "elka", + correct: 15, + position: 1, + incorrect: 20, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "09.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/urocze-20-10-2025-diffle-difflepl-grywebowe-24-litery-w-3-slowach-large-green-ci" +] = [ + { + date: "20.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO4MjL0MGNt8mcuMDNzETLsl3duAjLxEjLw4yMx4yM5ITLrVGblJ2MCVyMDVic3hSI", + value: "!(wróbelek-293.13.0.11.0.wyl-1343.ro-4c4.388)!", + result: { + word: "wróbelek", + correct: 13, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "20.10.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO4MjL3gzMt8mc35iYkNWLlJneuAjLxEjLx4SNx4yM5ITLrVGblJ2MCVyMDVic3hSI", + value: "!(wróbelek-293.15.1.11.0.zre-cdb.wro-387.388)!", + result: { + word: "wróbelek", + correct: 15, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + }, + }, + { + date: "20.10.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO4MjL3gzMuADN04COzQTLvJnLjVmMx0yd5dnLkljMtUHaj5iN0UWLwN3duAjLyIjLx4iNy4yM5ITLrVGblJ2MCVyMDVic3hSI", + value: + "!(wróbelek-293.26.1.22.0.wsp-e46.chu-29d.wyw-12ec.ro-438.440.387.388)!", + result: { + word: "wróbelek", + correct: 26, + position: 1, + incorrect: 22, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 49, + date: "20.10.2025", + }, + }, + { + date: "20.10.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDOz0yby5yMyMTLvl2ducjNx0ydvNnL4kTLvpneuAjLwEjLy4SNx4yM5ITLrVGblJ2MCVyMDVic3hSI", + value: "!(wróbelek-293.15.2.10.0.zzo-98.sow-167.wio-323.ro-388)!", + result: { + word: "wróbelek", + correct: 15, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "20.10.2025", + }, + }, + { + date: "20.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO4MjL5E2Mt8mc35CZxczMtoncw5CMukjLx4iNx4yM5ITLrVGblJ2MCVyMDVic3hSI", + value: "!(wróbelek-293.16.1.9.0.prz-371d.wro-3a9.388)!", + result: { + word: "wróbelek", + correct: 16, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "20.10.2025", + }, + }, + { + date: "20.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDOz0ybydnLxATNtwWZ65CZ4ETLwNXYuAjLzEjLw4iMx4yM5ITLrVGblJ2MCVyMDVic3hSI", + value: "!(wróbelek-293.12.0.13.0.asp-18d.zel-501.wro-388)!", + result: { + word: "wróbelek", + correct: 12, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "20.10.2025", + }, + }, + { + date: "20.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDOz4COzQTLvJnLw0icz5CM4QzMtAXe35iZiJTL1h2YuAjL2EjLw4COx4yM5ITLrVGblJ2MCVyMDVic3hSI", + value: "!(wróbelek-293.18.0.16.0.chu-2bf.wyp-3480.sr-0.ro-438.388)!", + result: { + word: "wróbelek", + correct: 18, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "20.10.2025", + }, + }, + { + date: "20.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDOz0yby5SY5YTLk92dugTOt8me65CMugjLw4yMx4yM5ITLrVGblJ2MCVyMDVic3hSI", + value: "!(wróbelek-293.13.0.8.0.zzo-98.wod-69a.ro-388)!", + result: { + word: "wróbelek", + correct: 13, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "20.10.2025", + }, + }, + { + date: "20.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4gzMt8mcuUTNy0iavdnLzkDOhFTL6JHcuAjL4EjLw4yMx4yM5ITLrVGblJ2MCVyMDVic3hSI", + value: "!(wróbelek-293.13.0.18.0.prz-1a893.woj-255.ro-388)!", + result: { + word: "wróbelek", + correct: 13, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "20.10.2025", + }, + }, + { + date: "20.10.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4gzMucDOz0ybydnLjVTNtUWaw5CMukjLy4iNx4yM5ITLrVGblJ2MCVyMDVic3hSI", + value: "!(wróbelek-293.16.2.9.0.pie-55c.wro-387.388)!", + result: { + word: "wróbelek", + correct: 16, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "20.10.2025", + }, + }, + { + date: "20.10.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDOz4yN4MjL0QDNt8mcucTYtQWZuIzMzETLzl3duAjLyEjLw4CMy4yM5ITLrVGblJ2MCVyMDVic3hSI", + value: "!(wróbelek-293.20.0.12.0.wys-1332.ed-a7.ro-444.387.388)!", + result: { + word: "wróbelek", + correct: 20, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "20.10.2025", + }, + }, + { + date: "20.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDOz0ybydnLkRDOwETL69mcuQmN20ieydmL1ADZtUmc65CM10CajNjLkJzMtQXZw5COwcTLslWbuEjL3EjLx4SMy4yM5ITLrVGblJ2MCVyMDVic3hSI", + value: + "!(wróbelek-293.21.1.17.1.mil-708.pet-32d.3ch-50.zre-d05.grz-66d.roz-1084d.wro-388)!", + result: { + word: "wróbelek", + correct: 21, + position: 1, + incorrect: 17, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 39, + date: "20.10.2025", + }, + }, + { + date: "20.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDOz0ybydnL3YWL1JnYuQjM10CblpnL5MzNto2bw5iNhJWLllWbuAjL4EjL14SNx4yM5ITLrVGblJ2MCVyMDVic3hSI", + value: "!(wróbelek-293.15.5.18.0.mie-ba6.poj-739.zel-524.bru-f7.wro-388)!", + result: { + word: "wróbelek", + correct: 15, + position: 5, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "20.10.2025", + }, + }, + { + date: "20.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDOz4yN4MTLvJnLyY2YtIXe35yNzETLiVneuMDNiRTLk9GcuAjLyEjLx4SOx4yM5ITLrVGblJ2MCVyMDVic3hSI", + value: "!(wróbelek-293.19.1.12.0.pod-4b43.zub-137.wyr-cf2.ro-387.388)!", + result: { + word: "wróbelek", + correct: 19, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "20.10.2025", + }, + }, + { + date: "20.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO4MTLvJnLiBTMto3b35yN3QWLvh2YuEWM00CbvpnLlVTLhtWduAjL1EjLz4iNx4yM5ITLrVGblJ2MCVyMDVic3hSI", + value: "!(wróbelek-293.16.3.15.0.uka-5e.zol-41a.cho-d77.woz-10b.ro-388)!", + result: { + word: "wróbelek", + correct: 16, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "20.10.2025", + }, + }, + { + date: "20.10.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgDOz4CNiRTLvJnLhVTMtcWZuQzMzETLsl3duAjLxEjLw4SOx4yM5ITLrVGblJ2MCVyMDVic3hSI", + value: "!(wróbelek-293.19.0.11.0.wyl-1334.eg-15a.ro-4b4.388)!", + result: { + word: "wróbelek", + correct: 19, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "20.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/wszyscy-spia-08-10-2025-flag-pl-diffle-difflepl-grywebowe-32-litery-w-3-slowach-" +] = [ + { + date: "08.10.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ5UTLr9GZuQWOy0SdoNmL0EWNtonc0VWau5CMuMTMuMjL2EjLxgjMtUWauFmbvt2bkhSI", + value: "!(dokonanie-281.16.3.13.0.nietrz-5a4.chu-29d.dok-59f)!", + result: { + word: "dokonanie", + correct: 16, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 32, + date: "08.10.2025", + }, + }, + { + date: "08.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWO10yavRmLwYTLu92aucjMj1yZ5dnLjJmMt4WYz5SZ1UTLuFGcuY2MtMWdi5CMuMTMuEjLxMjLxgjMtUWauFmbvt2bkhSI", + value: + "!(dokonanie-281.31.1.13.0.buc-3f.pan-55e.san-2bc.wyg-c27.kon-60.dok-59f)!", + result: { + word: "dokonanie", + correct: 31, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 45, + date: "08.10.2025", + }, + }, + { + date: "08.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWO10yavRmLjhDNx0yavBnLwYTLu92auMTLvtWauYmYy0SdoNmLw4SOuEjLyMjLxgjMtUWauFmbvt2bkhSI", + value: "!(dokonanie-281.32.1.9.0.chu-2bf.iko-3.kon-60.pok-148c.dok-59f)!", + result: { + word: "dokonanie", + correct: 32, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "08.10.2025", + }, + }, + { + date: "08.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmlTNtsmLyUTLk9GZuQmM00icwNnLw4yNuEjLwIjLxgjMtUWauFmbvt2bkhSI", + value: "!(dokonanie-281.20.1.7.0.spr-42d.dod-52.k-59f)!", + result: { + word: "dokonanie", + correct: 20, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "08.10.2025", + }, + }, + { + date: "08.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmlTNts2buQDZz0SYpRmL5EjZt42br5yNy0ya1VmLw4iNucjLxIjLxgjMtUWauFmbvt2bkhSI", + value: "!(dokonanie-281.21.7.6.0.euk-27.kon-f19.dia-3d4.ok-59f)!", + result: { + word: "dokonanie", + correct: 21, + position: 7, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "08.10.2025", + }, + }, + { + date: "08.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ5UTLr9GZuUTOx0yavJnLhFjM10ievBnLw4iNuAjLyIjLxgjMtUWauFmbvt2bkhSI", + value: "!(dokonanie-281.22.0.6.0.poz-521a.rok-195.dok-59f)!", + result: { + word: "dokonanie", + correct: 22, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "08.10.2025", + }, + }, + { + date: "08.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmlTNts2bk5CMtcmYv5yN0ITLq92duMTO4EWMtoncw5CMuYTMuMjL2EjLxgjMtUWauFmbvt2bkhSI", + value: "!(dokonanie-281.16.3.16.0.prz-1a893.woj-247.obg-0.dok-59f)!", + result: { + word: "dokonanie", + correct: 16, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "08.10.2025", + }, + }, + { + date: "08.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWO10yaukTZ40SbuEGMz0iYuUjNj1ycugTYx0CcvRmL0YWMtQWe35SMuYTMuEjL4MjLxgjMtUWauFmbvt2bkhSI", + value: + "!(dokonanie-281.38.1.16.1.wyd-1f4.dop-1a8.s-c65.b-30a.m-8e9.k-59f)!", + result: { + word: "dokonanie", + correct: 38, + position: 1, + incorrect: 16, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 55, + date: "08.10.2025", + }, + }, + { + date: "08.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWO10yavRmL5MWLw92auYTYi1SZp1mLw4SOuIjL5EjLxgjMtUWauFmbvt2bkhSI", + value: "!(dokonanie-281.19.2.9.0.mie-ba6.kop-c9.dok-59f)!", + result: { + word: "dokonanie", + correct: 19, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "08.10.2025", + }, + }, + { + date: "08.10.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWO10yavRmLjhDNx0yavBnLwYTLu9mL0ImNtE2dr5CMuATMuEjL5IjLxgjMtUWauFmbvt2bkhSI", + value: "!(dokonanie-281.29.1.10.0.kwa-6b4.on-60.pok-148c.dok-59f)!", + result: { + word: "dokonanie", + correct: 29, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 40, + date: "08.10.2025", + }, + }, + { + date: "08.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiZ5UTLr5SOlhTLt9GZuMzMx0Cbk9mLhRTL5R2ZuUGOtEGZ15SYxczMtoncw5CMuYTMuIjL0MjLxgjMtUWauFmbvt2bkhSI", + value: + "!(dokonanie-281.34.2.16.0.prz-371a.uda-8e.gdy-4a.odl-133.dom-8e9.k-59f)!", + result: { + word: "dokonanie", + correct: 34, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 52, + date: "08.10.2025", + }, + }, + { + date: "08.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWO10yauAzY10yZugjMtwmL1YzYtM3bk5iMh1CZvBnL5QjMtQ2bt5CMuETMuQjL2MjLxgjMtUWauFmbvt2bkhSI", + value: + "!(dokonanie-281.36.4.11.0.mod-249.pod-a2.dos-c65.l-28.g-5c0.k-59f)!", + result: { + word: "dokonanie", + correct: 36, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 51, + date: "08.10.2025", + }, + }, + { + date: "08.10.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWO14yNycjLzU2Nts2buYzMt0WduQGNtEmYugTYt4WYk5CO0ITLuFGbuMmNh1SYydmLw4COuAjL4QjLxgjMtUWauFmbvt2bkhSI", + value: + "!(dokonanie-281.48.0.8.0.gra-a6c.lan-248.dan-a8.ba-4d.um-36.ok-7e3.727.59f)!", + result: { + word: "dokonanie", + correct: 48, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 56, + date: "08.10.2025", + }, + }, + { + date: "08.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYWO10yavRmLyEWMtg2Yz4iZxYTLhxmYuQTOy0SdoNmLzETOx0ya5dnLiVWOtM3br5CMuUTMuEjLyIjLxgjMtUWauFmbvt2bkhSI", + value: + "!(dokonanie-281.22.1.15.0.kos-9eb.wyk-1913.chu-294.bla-61f.3ch-1a2.dok-59f)!", + result: { + word: "dokonanie", + correct: 22, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "08.10.2025", + }, + }, + { + date: "08.10.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKmlTNtsmL0IjNtM3bk5CZj1CZhtmL1YTNtonc05CMuATMuQjLyIjLxgjMtUWauFmbvt2bkhSI", + value: "!(dokonanie-281.22.4.10.0.trz-565.kad-cd.dos-624.k-59f)!", + result: { + word: "dokonanie", + correct: 22, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "08.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/wyjatkowo-strzal-wyszedl-latwe-13-10-2025-diffle-difflepl-grywebowe-19-liter-w-3" +] = [ + { + date: "13.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOjVTLhxmLw0yc15CZllTLz92auAjL44CMuETMuYDOy0SYzFGbrhSI", + value: "!(klasa-286.11.0.8.0.kos-9ed.us-0.la-5c9)!", + result: { + word: "klasa", + correct: 11, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "13.10.2025", + }, + }, + { + date: "13.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOjVjL3M2NtEGbr5CO1gTLhlGZuAjL44CMuITMuYDOy0SYzFGbrhSI", + value: "!(klasa-286.12.0.8.0.dia-858.kla-7c7.5c9)!", + result: { + word: "klasa", + correct: 12, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "13.10.2025", + }, + }, + { + date: "13.10.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MWNtEGbr5iNxETLzFGbuETLsl3cuQTM20SYtpnLw4SNx4iMuQTMuYDOy0SYzFGbrhSI", + value: "!(klasa-286.14.2.15.0.zma-614.syl-1.las-116.kla-5c9)!", + result: { + word: "klasa", + correct: 14, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "13.10.2025", + }, + }, + { + date: "13.10.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkzY10SYs5CMtMXYuATLzV3auEWN40Cdl1mLhRmMy0yavBnLw4yMx4CMuYTMuYDOy0SYzFGbrhSI", + value: "!(klasa-286.16.0.13.0.pok-22da.met-85a.kus-0.as-0.la-5c9)!", + result: { + word: "klasa", + correct: 16, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "13.10.2025", + }, + }, + { + date: "13.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOjVTLhxmLhN2MtMXYr5yM5ETLzFWbuQmM00icwNnLw4SMx4iMuQTMuYDOy0SYzFGbrhSI", + value: "!(klasa-286.14.2.11.0.spr-42d.mas-193.kas-3ca.la-5c9)!", + result: { + word: "klasa", + correct: 14, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "13.10.2025", + }, + }, + { + date: "13.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkzY10SYs5CMtMXYr5CO1MTL5JHcuYmYy0SdoNmLw4iMx4SMuITMuYDOy0SYzFGbrhSI", + value: "!(klasa-286.12.1.12.0.chu-2bf.pry-358.kas-0.la-5c9)!", + result: { + word: "klasa", + correct: 12, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "13.10.2025", + }, + }, + { + date: "13.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MWNtEGbuADZ10SY3tmL3ITLrVXZuAjL54CMuATMuYDOy0SYzFGbrhSI", + value: "!(klasa-286.10.0.9.0.euk-27.kwa-5d0.la-5c9)!", + result: { + word: "klasa", + correct: 10, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "13.10.2025", + }, + }, + { + date: "13.10.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MWNtEGbuATLzF2auQTY10ieyRXZp5mLw4SMx4iMuETMuYDOy0SYzFGbrhSI", + value: "!(klasa-286.11.2.11.0.nietrz-5a4.kas-0.la-5c9)!", + result: { + word: "klasa", + correct: 11, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "13.10.2025", + }, + }, + { + date: "13.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MWNtEGbr5iNxETLzFGbuEWM3MTL6JHcuAjL44iMuETMuYDOy0SYzFGbrhSI", + value: "!(klasa-286.11.2.8.0.prz-371a.las-116.kla-5c9)!", + result: { + word: "klasa", + correct: 11, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "13.10.2025", + }, + }, + { + date: "13.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOjVTLhx2aucDNy0iavdnLzkDOhFTL6JHcuAjL2EjLx4COuYDOy0SYzFGbrhSI", + value: "!(klasa-286.8.1.16.0.prz-1a893.woj-247.kla-5c9)!", + result: { + word: "klasa", + correct: 8, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "13.10.2025", + }, + }, + { + date: "13.10.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOjVTLhx2auEWY20ych1mL2QmNtMXYw5yY2EWLhJ3ZuAjL54CMuATMuYDOy0SYzFGbrhSI", + value: "!(klasa-286.10.0.9.0.gra-a6c.pas-6d6.mas-6aa.kla-5c9)!", + result: { + word: "klasa", + correct: 10, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 19, + date: "13.10.2025", + }, + }, + { + date: "13.10.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOjVTLhxmLhNjMtMXYuQjY20SY3tmLw4yMx4CMuETMuYDOy0SYzFGbrhSI", + value: "!(klasa-286.11.0.13.0.kwa-6b4.as-23a.la-5c9)!", + result: { + word: "klasa", + correct: 11, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "13.10.2025", + }, + }, + { + date: "13.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MWNtEGbr5iNhJWLllWbuAjLwEjLy4yNuYDOy0SYzFGbrhSI", + value: "!(klasa-286.7.2.10.0.mie-ba6.kla-5c9)!", + result: { + word: "klasa", + correct: 7, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "13.10.2025", + }, + }, + { + date: "13.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOjVTLhxmLj1Cd15CMygTLwF2auQjZx0CZ5dnLw4yMx4CMuETMuYDOy0SYzFGbrhSI", + value: "!(klasa-286.11.0.13.0.wyd-1f4.kap-820.ut-c.la-5c9)!", + result: { + word: "klasa", + correct: 11, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "13.10.2025", + }, + }, + { + date: "13.10.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpkzY14SM4YTLhx2augDN10SZpBnLw4CMx4SMuITMuYDOy0SYzFGbrhSI", + value: "!(klasa-286.12.1.10.0.pie-548.kla-681.5c9)!", + result: { + word: "klasa", + correct: 12, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "13.10.2025", + }, + }, + { + date: "13.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MWNtEGbuATLzF2auATL0tWYukDNy0CZv1mLw4SMx4SMuMTMuYDOy0SYzFGbrhSI", + value: "!(klasa-286.13.1.11.0.mod-249.akt-0.kas-0.la-5c9)!", + result: { + word: "klasa", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "13.10.2025", + }, + }, + { + date: "13.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK5MWNtEGbuATLzF2auEWMyUTL69GcuAjL34SMuETMuYDOy0SYzFGbrhSI", + value: "!(klasa-286.11.1.7.0.poz-521a.kas-0.la-5c9)!", + result: { + word: "klasa", + correct: 11, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "13.10.2025", + }, + }, + { + date: "13.10.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSOjVTLhx2auMmYx0ychBnL3AzMtEmc05CMukjLx4COuYDOy0SYzFGbrhSI", + value: "!(klasa-286.8.1.9.0.tra-307.pas-1bc.kla-5c9)!", + result: { + word: "klasa", + correct: 8, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "13.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/wymagajace-03-12-2025-diffle-difflepl-grywebowe-33-litery-w-6-slowach-large-gree" +] = [ + { + date: "03.12.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZ4MTLyVmeuU2NuImZ00CajNjLhljYtkWbuQTNtwWd65yM0MTMtwWe35CMuEjMuAjLyEjL3MzMtUWatVmclNkQlUzQlgSI", + value: + "!(żeremie-337.12.0.21.0.wyl-1343.zul-54.mi-b9a.3ch-4fb.7e.zer-38e)!", + result: { + word: "żeremie", + correct: 12, + position: 0, + incorrect: 21, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "03.12.2025", + }, + }, + { + date: "03.12.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlhzMuEGOz0iclpnLiFGNtg2Yz4iYlRTLlJ3aukjMiFTLhJHduIDMj1SYydmL2QTZtA3c35CMuEjMuAjLyIjL3MzMtUWatVmclNkQlUzQlgSI", + value: + "!(żeremie-337.22.0.21.0.wsp-e46.gra-c02.tra-1b29.kre-4eb.3ch-4ab.zer-38a.38e)!", + result: { + word: "żeremie", + correct: 22, + position: 0, + incorrect: 21, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 43, + date: "03.12.2025", + }, + }, + { + date: "03.12.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZ4MTLyVmeuI2M20CajNjL4gzMtIXZ65iNwETLlp3duIjN1UTL69GcugTOt8me65CMuQTMuAjL5EjL3MzMtUWatVmclNkQlUzQlgSI", + value: + "!(żeremie-337.19.0.14.0.zzo-98.poz-5562.wze-106.zer-388.3ch-63b.zer-38e)!", + result: { + word: "żeremie", + correct: 19, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "03.12.2025", + }, + }, + { + date: "03.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUGOz4SO4MTLyVmeuI2M20CajNjLyYDNtM3by5SOlJTL1xGduUTMtQWZn5CMugTMuAjL2EjL3MzMtUWatVmclNkQlUzQlgSI", + value: + "!(żeremie-337.16.0.18.0.ged-15.tlu-2e9.ros-462.3ch-63b.zer-389.38e)!", + result: { + word: "żeremie", + correct: 16, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "03.12.2025", + }, + }, + { + date: "03.12.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlhzMtIXZ65iYzYTLoN2MuczYz0CdpxmL5EjNtwWaw5SZy0iYldmLmJmMtUHaj5CMugTMuEjL0EjL3MzMtUWatVmclNkQlUzQlgSI", + value: + "!(żeremie-337.14.1.18.0.chu-2bf.geb-2e.pil-619.lit-3c7.3ch-63b.zer-38e)!", + result: { + word: "żeremie", + correct: 14, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "03.12.2025", + }, + }, + { + date: "03.12.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlhzMuYjM04SZyQjL4gzMtIXZ65SZh1SZ6dnLkhTMtA3ch5CMucTMuAjLxIjL3MzMtUWatVmclNkQlUzQlgSI", + value: "!(żeremie-337.21.0.17.0.asp-18d.wze-ae.zer-388.42e.426.38e)!", + result: { + word: "żeremie", + correct: 21, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "03.12.2025", + }, + }, + { + date: "03.12.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZ4MjL4gzMtIXZ65iYzYTLoN2MuQ2YtIXe65SY1UTLyR3cugTOt8me65CMuQTMuEjL3EjL3MzMtUWatVmclNkQlUzQlgSI", + value: + "!(żeremie-337.17.1.14.0.zzo-98.str-55a.zyr-cd.3ch-63b.zer-388.38e)!", + result: { + word: "żeremie", + correct: 17, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "03.12.2025", + }, + }, + { + date: "03.12.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUGOz0iclpnLiNjNtg2Yz4iMjNTLllWbuIjYmFTLiFmeuQjYy0SdyRnL1ImMtkWb65CNiNTLllWbuQzYtkWbz5iMzMTMtMXe35CMuQjMuAjL4IjL3MzMtUWatVmclNkQlUzQlgSI", + value: + "!(żeremie-337.28.0.24.0.wys-1332.smi-c4.mie-3b4.zmi-2b5.tru-2b4.zab-1fb2.mie-3c2.3ch-63b.zer-38e)!", + result: { + word: "żeremie", + correct: 28, + position: 0, + incorrect: 24, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 52, + date: "03.12.2025", + }, + }, + { + date: "03.12.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUGOz0iclpnLiNjNtg2Yz4iMwQTLyl3dugTOt8me65CMuETMuEjLyEjL3MzMtUWatVmclNkQlUzQlgSI", + value: "!(żeremie-337.12.1.11.0.zzo-98.wyr-402.3ch-63b.zer-38e)!", + result: { + word: "żeremie", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "03.12.2025", + }, + }, + { + date: "03.12.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZ4MjLmJDNuADNz0iclpnLiNjNtg2Yz4CN2MTLiVmL5UjNx0CbhpnLw4SOuAjLyIjL3MzMtUWatVmclNkQlUzQlgSI", + value: "!(żeremie-337.22.0.9.0.zal-1659.eb-364.3ch-63b.zer-340.42f.38e)!", + result: { + word: "żeremie", + correct: 22, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "03.12.2025", + }, + }, + { + date: "03.12.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUGOz0iclpnLwEDNtoXZy5SN1ITLq92duMTO4EWMtoncw5CMuAjMuIjLzEjL3MzMtUWatVmclNkQlUzQlgSI", + value: "!(żeremie-337.13.2.20.0.prz-1a893.woj-255.rez-410.zer-38e)!", + result: { + word: "żeremie", + correct: 13, + position: 2, + incorrect: 20, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "03.12.2025", + }, + }, + { + date: "03.12.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUGOz0iclpnL5IGOtUmcr5iN1czMtoncw5CMuETMuAjLzEjL3MzMtUWatVmclNkQlUzQlgSI", + value: "!(żeremie-337.13.0.11.0.prz-3756.kre-8b9.zer-38e)!", + result: { + word: "żeremie", + correct: 13, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "03.12.2025", + }, + }, + { + date: "03.12.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlhzMtIXZ65SZzETLtVncuADMy0SatNnL2EmYtUWat5CMuUTMuAjL3EjL3MzMtUWatVmclNkQlUzQlgSI", + value: "!(żeremie-337.17.0.15.0.mie-ba6.smi-200.rum-13e.zer-38e)!", + result: { + word: "żeremie", + correct: 17, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "03.12.2025", + }, + }, + { + date: "03.12.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZ4MTLyVmL4EjZtk2duMWY3ETLyFmL3MTMtIWd65yYhJGNtQ2bw5CMuYTMuEjL0EjL3MzMtUWatVmclNkQlUzQlgSI", + value: "!(żeremie-337.14.1.16.0.pod-4bac.zub-137.ar-17ac.wi-f18.er-38e)!", + result: { + word: "żeremie", + correct: 14, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "03.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/wyprowadzilo-mnie-w-pole-i-to-dwa-razy-01-12-2025-diffle-difflepl-grywebowe-36-l" +] = [ + { + date: "01.12.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO20SdhpnLkRTLupXduATYx0SdoNmL2QTL6lGbuIWZ50ycvtmLw4iMx4SMuMjMuUzMz0SZp5WYmVXY6hSI", + value: "!(zaufanie-335.23.1.12.0.kos-9eb.liz-46.chu-1a0.uzn-4d.zau-68)!", + result: { + word: "zaufanie", + correct: 23, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "01.12.2025", + }, + }, + { + date: "01.12.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO20SdhpnLkRTLupXduQjY20SY3tmLw4CMx4yMucTMuUzMz0SZp5WYmVXY6hSI", + value: "!(zaufanie-335.17.3.10.0.kwa-6b4.uzn-4d.zau-68)!", + result: { + word: "zaufanie", + correct: 17, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "01.12.2025", + }, + }, + { + date: "01.12.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjNtUnLxIDNy0ycuATZhFTLi5iY3cTLn5SMmFTMtQWY65yNwITL1t2ducTN00ybwVnLy4CMy4yMuMDNuUzMz0SZp5WYmVXY6hSI", + value: + "!(zaufanie-335.43.3.20.2.upo-457.wku-207.zad-11f1.g-77b.b-1ae0.s-2421.u-68)!", + result: { + word: "zaufanie", + correct: 43, + position: 3, + incorrect: 20, + knownIncorrect: 2, + totalWords: 7, + totalLetters: 66, + date: "01.12.2025", + }, + }, + { + date: "01.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4YTL15iN40CZh5yM3kTLzVmeuQmNy0ielJmLw4CMx4iMukTMuUzMz0SZp5WYmVXY6hSI", + value: "!(zaufanie-335.19.2.10.0.bez-26d.zes-973.ad-86.u-68)!", + result: { + word: "zaufanie", + correct: 19, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "01.12.2025", + }, + }, + { + date: "01.12.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4YTL15yMmZTLq5SOkFTLsFmeuQTY10ieyRXZp5mLw4iMx4yMuQjMuUzMz0SZp5WYmVXY6hSI", + value: "!(zaufanie-335.24.3.12.0.nietrz-5a4.zal-1d9.j-6f3.u-68)!", + result: { + word: "zaufanie", + correct: 24, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 39, + date: "01.12.2025", + }, + }, + { + date: "01.12.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4YTL15SZxITLiFmeuQTY10ieyRXZp5mLw4iMx4CNuQTMuUzMz0SZp5WYmVXY6hSI", + value: "!(zaufanie-335.14.4.12.0.nietrz-5a4.zab-21e.u-68)!", + result: { + word: "zaufanie", + correct: 14, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "01.12.2025", + }, + }, + { + date: "01.12.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4YTL1FmeuATL6FmZuMTYx0SdsJmLw0CZ6VnLjR2NhFTL6JHcuQGMy0Sd6NnLkRTLupXduYmYy0SdoNmLw4CMy4COuUzMuUzMz0SZp5WYmVXY6hSI", + value: + "!(zaufanie-335.35.8.20.0.chu-2bf.uzn-4d.szu-20d.prz-1a7dc.uzd-0.blu-1a3.faz-0.zau-68)!", + result: { + word: "zaufanie", + correct: 35, + position: 8, + incorrect: 20, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 63, + date: "01.12.2025", + }, + }, + { + date: "01.12.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK4YTL15CM2EWLi5yMxIWLt5COlhTL05SOkFTLsFmeuQmM00icwNnLx4SNx4SMuczMuUzMz0SZp5WYmVXY6hSI", + value: "!(zaufanie-335.37.1.15.1.spr-42d.zal-1d9.t-8e8.m-b13.b-a60.u-68)!", + result: { + word: "zaufanie", + correct: 37, + position: 1, + incorrect: 15, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 53, + date: "01.12.2025", + }, + }, + { + date: "01.12.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO20SdukjZ0ITLzFmeuUjYz0Sd6NmLyMmMtUWai5SYyMTL0FWbucjNx0icvBnLw4iNx4CMuIzMuUzMz0SZp5WYmVXY6hSI", + value: + "!(zaufanie-335.32.0.16.0.por-167.mat-32a.bie-2c2.czu-3b5.zas-24f9.u-68)!", + result: { + word: "zaufanie", + correct: 32, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 48, + date: "01.12.2025", + }, + }, + { + date: "01.12.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO20SduM2MiFTLj5CZhNTLq5SO1MTL0FmeuUmNtoXYt5iZ3ETLht2cugTYt4WYk5CO0ITLuFGbuMmNh1SYydmLw4yNx4SMukDNuUzMz0SZp5WYmVXY6hSI", + value: + "!(zaufanie-335.49.1.17.0.gra-a6c.lan-248.dan-a8.ska-17f.maz-6e.zat-359.j-3ad.c-1b3c.u-68)!", + result: { + word: "zaufanie", + correct: 49, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 67, + date: "01.12.2025", + }, + }, + { + date: "01.12.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO20SducjNiFTLn5CMhRTLz5CM0ETL0FmL4UTLhRmeuAzYk1yYh5mLhRmMy0yavBnLx4SOx4CNuczMuUzMz0SZp5WYmVXY6hSI", + value: + "!(zaufanie-335.37.4.19.1.pok-22da.nac-dc0.zda-58.at-140.s-4a0.g-1b67.u-68)!", + result: { + word: "zaufanie", + correct: 37, + position: 4, + incorrect: 19, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 60, + date: "01.12.2025", + }, + }, + { + date: "01.12.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjNtUXY65iYykTLt92auEjM0ITLz5SN3IWMtcWY65yM5gTYx0ieyBnLw4yNx4iMuUjMuUzMz0SZp5WYmVXY6hSI", + value: + "!(zaufanie-335.25.2.17.0.prz-1a893.zag-1b75.s-2421.kom-92b.zau-68)!", + result: { + word: "zaufanie", + correct: 25, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 44, + date: "01.12.2025", + }, + }, + { + date: "01.12.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjNtUnLmlTMx0CZhpnLkRTLupXduYTYi1SZp1mLw4SMx4iMuUjMuUzMz0SZp5WYmVXY6hSI", + value: "!(zaufanie-335.25.2.11.0.mie-ba6.uzn-4d.zad-119f.u-68)!", + result: { + word: "zaufanie", + correct: 25, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 38, + date: "01.12.2025", + }, + }, + { + date: "01.12.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjNtUnLyIjNx0SbukDZx0CbhpnLxQTLjp3cuQjZx0CZ5dnLw4SMx4iMugjMuUzMz0SZp5WYmVXY6hSI", + value: "!(zaufanie-335.28.2.11.0.wyd-1f4.szc-41.zal-1d9.m-1622.u-68)!", + result: { + word: "zaufanie", + correct: 28, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "01.12.2025", + }, + }, + { + date: "01.12.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjNtUnLwUWYx0iYh5SN20ycv5SZ1ETL6VmL4UTLhRmeugDN10SZpBnLw4yNx4iMuMzMuUzMz0SZp5WYmVXY6hSI", + value: + "!(zaufanie-335.33.2.17.0.pie-548.zda-58.ez-15e.os-65.ab-1ae0.u-68)!", + result: { + word: "zaufanie", + correct: 33, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 52, + date: "01.12.2025", + }, + }, + { + date: "01.12.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO20SduM2Nk1yZugTZ40CduYzY3ETLz5SOkFTLs5iM2YTLiFmeukDNy0CZv1mLw4SNx4yMuEDNuUzMz0SZp5WYmVXY6hSI", + value: + "!(zaufanie-335.41.3.15.0.mod-249.zab-662.l-1d9.s-17c6.t-8e8.g-d7c.u-68)!", + result: { + word: "zaufanie", + correct: 41, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 59, + date: "01.12.2025", + }, + }, + { + date: "01.12.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO20SdhpnL1I2MtUnej5CZ00ib6VnL3ITLrVXZuAjL44yMuIjMuUzMz0SZp5WYmVXY6hSI", + value: "!(zaufanie-335.22.3.8.0.euk-27.uzn-4d.czu-3b5.zau-68)!", + result: { + word: "zaufanie", + correct: 22, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "01.12.2025", + }, + }, + { + date: "01.12.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpgjNtUnLhFjMtcmL5QWMtwWY65CN40iehtmLhFzNz0ieyBnLw4SMx4yMugjMuUzMz0SZp5WYmVXY6hSI", + value: "!(zaufanie-335.28.3.11.0.prz-371a.kaz-84.zal-1d9.g-21a.u-68)!", + result: { + word: "zaufanie", + correct: 28, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "01.12.2025", + }, + }, + { + date: "01.12.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCO20SduMDMiFTLtFmeuI2MtUney5CZ00ib6VnLhFjM10ievBnLw4CMx4SMuEzMuUzMz0SZp5WYmVXY6hSI", + value: "!(zaufanie-335.31.1.10.0.poz-521a.uzn-4d.rzu-3b.zam-1b03.u-68)!", + result: { + word: "zaufanie", + correct: 31, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "01.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/z-takim-startowym-nie-pozostalo-mi-nic-innego-niz-zgadnac-w-drugim-slightly-smil" +] = [ + { + date: "01.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpADOz0SZy5iYllTLz92auAjL04iMuETMuUDMz0SYqNWYtVmcrhSI", + value: "!(kremacja-305.11.2.4.0.kos-9eb.re-380)!", + result: { + word: "kremacja", + correct: 11, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "01.11.2025", + }, + }, + { + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM4MjLw0SZytmLhFTLlJXZuMWLlJ3ZucTN00ybwVnLw4CNx4yMuYjMuUDMz0SYqNWYtVmcrhSI", + value: "!(kremacja-305.26.3.14.0.upo-457.gre-c.ere-1a.kre-0.380)!", + result: { + word: "kremacja", + correct: 26, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 43, + }, + }, + { + date: "01.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwgzMuU2Nz0SZuMjY00SYy5iNjJTMtIXYr5CZ0ETLvJXbuAjL04CNuEjMuUDMz0SYqNWYtVmcrhSI", + value: "!(kremacja-305.21.4.4.0.mro-14d.kar-12c6.ra-4b3.e-37e.380)!", + result: { + word: "kremacja", + correct: 21, + position: 4, + incorrect: 4, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "01.11.2025", + }, + }, + { + date: "01.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwgzMtUmcr5CZyQTLyB3cuAjL44SMuETMuUDMz0SYqNWYtVmcrhSI", + value: "!(kremacja-305.11.1.8.0.spr-42d.kre-380)!", + result: { + word: "kremacja", + correct: 11, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "01.11.2025", + }, + }, + { + date: "01.11.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpADOz0SZy5CZmFTLtF2auYGMzETLkFmbuAjL24iNuQTMuUDMz0SYqNWYtVmcrhSI", + value: "!(kremacja-305.14.6.6.0.nad-130f.kam-1fd.re-380)!", + result: { + word: "kremacja", + correct: 14, + position: 6, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "01.11.2025", + }, + }, + { + date: "01.11.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwgzMtUmcr5SO1ETLrVmcuQTY10ieyRXZp5mLw4SMx4CNuUTMuUDMz0SYqNWYtVmcrhSI", + value: "!(kremacja-305.15.4.11.0.nietrz-5a4.rek-159.kre-380)!", + result: { + word: "kremacja", + correct: 15, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "01.11.2025", + }, + }, + { + date: "01.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpADOz4CMtUmcr5SZjFTLjFmcuQTZtEGcz5iZiJTL1h2YuAjL54CMucjMuUDMz0SYqNWYtVmcrhSI", + value: "!(kremacja-305.27.0.9.0.chu-2bf.spa-e4.rac-1ce.kre-0.380)!", + result: { + word: "kremacja", + correct: 27, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "01.11.2025", + }, + }, + { + date: "01.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwgzMtUmcr5SO1ETLrVmcuEWM3MTL6JHcuAjL44iMuYTMuUDMz0SYqNWYtVmcrhSI", + value: "!(kremacja-305.16.2.8.0.prz-371a.rek-159.kre-380)!", + result: { + word: "kremacja", + correct: 16, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "01.11.2025", + }, + }, + { + date: "01.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpADOz4CMuYjYuUDOh5SZ1YjLjVTMtUmcr5SY1YTLzVmcuMmNh1SYydmLw4CMx4SMuczMuUDMz0SYqNWYtVmcrhSI", + value: + "!(kremacja-305.37.1.10.0.gra-a6c.res-65a.kre-15c.65e.a85.b6.0.380)!", + result: { + word: "kremacja", + correct: 37, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 48, + date: "01.11.2025", + }, + }, + { + date: "01.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM4MjLw0SZytmLzkDOhFTL6JHcuAjL54CMukTMuUDMz0SYqNWYtVmcrhSI", + value: "!(kremacja-305.19.0.9.0.prz-1a893.kre-0.380)!", + result: { + word: "kremacja", + correct: 19, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "01.11.2025", + }, + }, + { + date: "01.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpADOz0SZy5CNiZTLhd3auAjL54iMuITMuUDMz0SYqNWYtVmcrhSI", + value: "!(kremacja-305.12.2.9.0.kwa-6b4.re-380)!", + result: { + word: "kremacja", + correct: 12, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "01.11.2025", + }, + }, + { + date: "01.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpADOz0SZytmLiJjMtUmc05CNmFTLkl3duAjL34SMuQTMuUDMz0SYqNWYtVmcrhSI", + value: "!(kremacja-305.14.1.7.0.wyd-1f4.tre-22b.kre-380)!", + result: { + word: "kremacja", + correct: 14, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "01.11.2025", + }, + }, + { + date: "01.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM4MjLw0SZytmL3ITLrVXZuAjL24iMucTMuUDMz0SYqNWYtVmcrhSI", + value: "!(kremacja-305.17.2.6.0.euk-27.kre-0.380)!", + result: { + word: "kremacja", + correct: 17, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "01.11.2025", + }, + }, + { + date: "01.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkCM4MTLlJ3aukTNx0yalJnLlVTLhtWduAjL44CNuUTMuUDMz0SYqNWYtVmcrhSI", + value: "!(kremacja-305.15.4.8.0.uka-5e.rek-159.kre-380)!", + result: { + word: "kremacja", + correct: 15, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "01.11.2025", + }, + }, + { + date: "01.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKwgzMuATLlJ3auAzN00yalRmLhFjM10ievBnLw4CMx4iMuMjMuUDMz0SYqNWYtVmcrhSI", + value: "!(kremacja-305.23.2.10.0.poz-521a.dek-470.kre-0.380)!", + result: { + word: "kremacja", + correct: 23, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "01.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/za-duzo-podobnych-17-11-2025-diffle-difflepl-grywebowe-30-liter-w-4-slowach-larg" +] = [ + { + date: "17.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZwIWLyl3duEmNy0SdsBnL1IWLu5yM0MTMtwWe35CMuATMuIjL4EjLxIzMtcDOlQzQlUDOlQzQl42cvJXe3hSI", + value: "!(wyrosnąć-321.18.2.10.0.wyl-1343.n-b5.plu-26a.wyr-b0e)!", + result: { + word: "wyrosnąć", + correct: 18, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "17.11.2025", + }, + }, + { + date: "17.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZwIWLyl3duEDM00ychpmL2UWMtwWatVWau5CMuETMuMjL0EjLxIzMtcDOlQzQlUDOlQzQl42cvJXe3hSI", + value: "!(wyrosnąć-321.14.3.11.0.niemil-1e6.jas-401.wyr-b0e)!", + result: { + word: "wyrosnąć", + correct: 14, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "17.11.2025", + }, + }, + { + date: "17.11.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUGMi1ic55iYxITLvJnLx0SdzdnL2EmYtUWat5CMuETMuIjLyIjLxIzMtcDOlQzQlUDOlQzQl42cvJXe3hSI", + value: "!(wyrosnąć-321.22.2.11.0.mie-ba6.wsu-1.ro-21b.yr-b0e)!", + result: { + word: "wyrosnąć", + correct: 22, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "17.11.2025", + }, + }, + { + date: "17.11.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZwIWLylnLiFjMt8mcuYDNl1CczdnLw4yNuIjL5EjLxIzMtcDOlQzQlUDOlQzQl42cvJXe3hSI", + value: "!(wyrosnąć-321.19.2.7.0.wsp-e46.ro-21b.yr-b0e)!", + result: { + word: "wyrosnąć", + correct: 19, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "17.11.2025", + }, + }, + { + date: "17.11.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUGMi1ic5dnL4ATMtM3by5CN0UzMtM3bw5SZ40ibvRnLlJTLulWbugTOt8me65CMuATMuAjL5IjLxIzMtcDOlQzQlUDOlQzQl42cvJXe3hSI", + value: + "!(wyrosnąć-321.29.0.10.0.zzo-98.min-2e.ton-8e.pos-3544.ros-108.wyr-b0e)!", + result: { + word: "wyrosnąć", + correct: 29, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "17.11.2025", + }, + }, + { + date: "17.11.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlBjYtIXe35SZ50yc1JmL1EWNtonc0VWau5CMuETMuUjLzEjLxIzMtcDOlQzQlUDOlQzQl42cvJXe3hSI", + value: "!(wyrosnąć-321.13.5.11.0.nietrz-5a5.bus-9e.wyr-b0e)!", + result: { + word: "wyrosnąć", + correct: 13, + position: 5, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "17.11.2025", + }, + }, + { + date: "17.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlBjYtIXeuIWMy0ybydnL4ATMtM3by5SYkJWLyJ2bugTZy0Sd0NnLkhTMtA3ch5SMuMTMuEjL0MjLxIzMtcDOlQzQlUDOlQzQl42cvJXe3hSI", + value: + "!(wyrosnąć-321.34.1.13.1.asp-18d.stu-2e8.obr-bda.ros-108.wro-21b.yr-b0e)!", + result: { + word: "wyrosnąć", + correct: 34, + position: 1, + incorrect: 13, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 48, + date: "17.11.2025", + }, + }, + { + date: "18.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMzNt42by5yMyUTLvJnYucTY10icoNmLmF2Mt8mc15yN1ATMtIHdz5iNhRWLn9GcukDMl1Sb5dnL4kTLvpneuAjLxIjLw4CNz4iMyMTL3gTJ0MUJp52byhSI", + value: + "!(ronić-322.34.0.21.0.zzo-98.wym-e09.pog-da6.str-1057.uro-3af.chr-5a7.bro-523.ron-73)!", + result: { + word: "ronić", + correct: 34, + position: 0, + incorrect: 21, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 55, + date: "18.11.2025", + }, + }, + { + date: "17.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSZwImLhFDNx4iZihTMtInLzUWMx0Cd55SZ30ibvdnLmJmMtUHaj5CMuYTMuEjL5IjLxIzMtcDOlQzQlUDOlQzQl42cvJXe3hSI", + value: "!(wyrosnąć-321.29.1.16.0.chu-2bf.won-7e.yt-11e3.r-18bf.141a.b0e)!", + result: { + word: "wyrosnąć", + correct: 29, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 46, + date: "17.11.2025", + }, + }, + { + date: "17.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlBjYtIXeuIWMy0ybydnLhFzMtEmcw5CO50yb6pnLw4COuAjLyIjLxIzMtcDOlQzQlUDOlQzQl42cvJXe3hSI", + value: "!(wyrosnąć-321.22.0.8.0.zzo-98.pra-31a.wro-21b.yr-b0e)!", + result: { + word: "wyrosnąć", + correct: 22, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "17.11.2025", + }, + }, + { + date: "17.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUGMi1ic55SN1ITLq92duMTO4EWMtoncw5CMuYTMuEjL0EjLxIzMtcDOlQzQlUDOlQzQl42cvJXe3hSI", + value: "!(wyrosnąć-321.14.1.16.0.prz-1a893.woj-255.yr-b0e)!", + result: { + word: "wyrosnąć", + correct: 14, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "17.11.2025", + }, + }, + { + date: "17.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlBjYtIXeuIWMy0ybydnL2UzNz0ieyBnLw4yNuEjL4EjLxIzMtcDOlQzQlUDOlQzQl42cvJXe3hSI", + value: "!(wyrosnąć-321.18.1.7.0.prz-3756.wro-21b.yr-b0e)!", + result: { + word: "wyrosnąć", + correct: 18, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "17.11.2025", + }, + }, + { + date: "17.11.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlBjYtInLmFDMx0iYuEGO40ic5dnLjVTNtUWaw5CMuITMuMjLwIjLxIzMtcDOlQzQlUDOlQzQl42cvJXe3hSI", + value: "!(wyrosnąć-321.20.3.12.0.pie-55c.wyr-88a.b-101f.r-b0e)!", + result: { + word: "wyrosnąć", + correct: 20, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "17.11.2025", + }, + }, + { + date: "17.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlBjYtInLyMzMx0yc5dnLw4yMuEjLyEjLxIzMtcDOlQzQlUDOlQzQl42cvJXe3hSI", + value: "!(wyrosnąć-321.12.1.3.0.wys-1332.r-b0e)!", + result: { + word: "wyrosnąć", + correct: 12, + position: 1, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "17.11.2025", + }, + }, + { + date: "17.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlBjYtIXe35CZxQTLoN2MuI2NyETLz9GZugzYy0Sat9mLihjNtA3bw5SMxITLs92ZuUGOt42b05SO1YTMtwWY65CMuUTMuEjLzMjLxIzMtcDOlQzQlUDOlQzQl42cvJXe3hSI", + value: + "!(wyrosnąć-321.33.1.15.0.zal-1659.ton-8e.gol-211.pop-68b.omi-2c8.dos-127b.3ch-41d.wyr-b0e)!", + result: { + word: "wyrosnąć", + correct: 33, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 49, + date: "17.11.2025", + }, + }, + { + date: "17.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKlBjYtInL1cjNx0ya5dnLjFmY00CZvBnLw4yNuEjL2EjLxIzMtcDOlQzQlUDOlQzQl42cvJXe3hSI", + value: "!(wyrosnąć-321.16.1.7.0.pod-4bac.wyk-1675.r-b0e)!", + result: { + word: "wyrosnąć", + correct: 16, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "17.11.2025", + }, + }, + { + date: "17.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpUGMi1ic5dnL4ATMtM3by5SZ0MTL1B3cuUmZ20CbvpnL5QjMtQ2bt5CMuYTMuEjL5EjLxIzMtcDOlQzQlUDOlQzQl42cvJXe3hSI", + value: "!(wyrosnąć-321.19.1.16.0.mod-249.zol-6fe.spu-34e.ros-108.wyr-b0e)!", + result: { + word: "wyrosnąć", + correct: 19, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "17.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/za-proste-18-11-2025-flag-pl-diffle-difflepl-grywebowe-39-liter-w-6-slowach-larg" +] = [ + { + date: "18.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzcTLu9mcuMTO10ybyRnLyUTLk9WbuYTYk1yZvBnLlBTOtw2az5iZiJTL1h2YuAjL5EjLx4SOx4iMyMTL3gTJ0MUJp52byhSI", + value: + "!(ronić-322.19.1.19.0.chu-2bf.skl-90e.pog-da6.mod-52.tro-593.ron-73)!", + result: { + word: "ronić", + correct: 19, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "18.11.2025", + }, + }, + { + date: "18.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzcTLu9mcuImZtUnck5yM0MTMtwWe35CMuITMuEjL54iMyMTL3gTJ0MUJp52byhSI", + value: "!(ronić-322.9.1.12.0.wyl-1343.dru-fb.ron-73)!", + result: { + word: "ronić", + correct: 9, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "18.11.2025", + }, + }, + { + date: "18.11.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM30ibvJnL2MjMto3bt5yN1QTLvBXduAjL0EjLw4SMx4iMyMTL3gTJ0MUJp52byhSI", + value: "!(ronić-322.11.0.14.0.upo-457.moz-236.ron-73)!", + result: { + word: "ronić", + correct: 11, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "18.11.2025", + }, + }, + { + date: "18.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzcTLu5SMtk2by5SMxETLi9GZuMTYx0CbvdmL3ITLpB3buIzMzETLzl3duAjLwEjLw4SMy4iMyMTL3gTJ0MUJp52byhSI", + value: "!(ronić-322.21.0.10.0.wys-1332.opi-27.gol-1a3.dob-111.roi-1.n-73)!", + result: { + word: "ronić", + correct: 21, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "18.11.2025", + }, + }, + { + date: "18.11.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMzNt42by5CZ20ydyRnLzcTMtkmbz5yYl1SaudmL3YTLuVGbuEGM50Cch5mL4kTLvpneuAjL0EjLw4CNy4iMyMTL3gTJ0MUJp52byhSI", + value: + "!(ronić-322.24.0.14.0.zzo-98.nap-90a.len-67.gni-ec.sni-173.trw-6d.ron-73)!", + result: { + word: "ronić", + correct: 24, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 38, + date: "18.11.2025", + }, + }, + { + date: "18.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMzNt42by5CZ20ydyRnLkJTMt42bn5CZ4ETLwNXYuAjLyEjLw4yNx4iMyMTL3gTJ0MUJp52byhSI", + value: "!(ronić-322.17.0.12.0.asp-18d.gon-12d.trw-6d.ron-73)!", + result: { + word: "ronić", + correct: 17, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "18.11.2025", + }, + }, + { + date: "18.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzcTLu9mcuUTNy0iavdnLzkDOhFTL6JHcuAjL4EjLw4CMx4iMyMTL3gTJ0MUJp52byhSI", + value: "!(ronić-322.10.0.18.0.prz-1a893.woj-255.ron-73)!", + result: { + word: "ronić", + correct: 10, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "18.11.2025", + }, + }, + { + date: "18.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMzNt42by5yMyUTLvJnYucTY10icoNmLmF2Mt8mc15yN1ATMtIHdz5iNhRWLn9GcukDMl1Sb5dnL4kTLvpneuAjLxIjLw4CNz4iMyMTL3gTJ0MUJp52byhSI", + value: + "!(ronić-322.34.0.21.0.zzo-98.wym-e09.pog-da6.str-1057.uro-3af.chr-5a7.bro-523.ron-73)!", + result: { + word: "ronić", + correct: 34, + position: 0, + incorrect: 21, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 55, + date: "18.11.2025", + }, + }, + { + date: "18.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMzNt42by5yNhVTLyh2YucTNwETLyR3cuMjM10ybyJmL5MjYtI3bw5CNzITLuF2ZuczMy0ibpdnL4kTLvpneuAjL3EjLw4yMz4iMyMTL3gTJ0MUJp52byhSI", + value: + "!(ronić-322.33.0.17.0.zzo-98.win-237.gan-234.por-b39.bro-523.str-1057.chr-5a7.ron-73)!", + result: { + word: "ronić", + correct: 33, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 50, + date: "18.11.2025", + }, + }, + { + date: "18.11.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM30ibuMTNtMnLx0SauUWZtI2by5yY1UTLllGcuAjLxEjLx4CMy4iMyMTL3gTJ0MUJp52byhSI", + value: "!(ronić-322.20.1.11.0.pie-55c.rob-ee.i-1.s-53.n-73)!", + result: { + word: "ronić", + correct: 20, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "18.11.2025", + }, + }, + { + date: "18.11.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMzNt42by5yMyUTLvJnYuQmMx0ibvdmL1QzMtkmbz5iZjNTLoN2MuQzMzETLsl3duAjL0EjLw4CMy4iMyMTL3gTJ0MUJp52byhSI", + value: + "!(ronić-322.20.0.14.0.wyl-1334.3ch-3cf.sni-345.gon-12d.bro-523.ron-73)!", + result: { + word: "ronić", + correct: 20, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "18.11.2025", + }, + }, + { + date: "18.11.2025", + nick: "Cybulion", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMzNuQ2Nt42by5SNhVTL6JHdllmbuAjLyEjLy4SMx4iMyMTL3gTJ0MUJp52byhSI", + value: "!(ronić-322.11.2.12.0.nietrz-5a5.ron-7d.73)!", + result: { + word: "ronić", + correct: 11, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "18.11.2025", + }, + }, + { + date: "18.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM30ibvJnL2UzNz0ieyBnLw4COuAjL44iMyMTL3gTJ0MUJp52byhSI", + value: "!(ronić-322.8.0.8.0.prz-3756.ron-73)!", + result: { + word: "ronić", + correct: 8, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "18.11.2025", + }, + }, + { + date: "18.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM30ibuYTOy0CZuUWZtI2by5SYkFTLvJ3auEzMwETLj9GcukTN2ETLsFmeuAjLwEjLw4iMy4iMyMTL3gTJ0MUJp52byhSI", + value: + "!(ronić-322.22.0.10.0.zal-1659.poc-1031.kro-1da.rob-ee.d-296.n-73)!", + result: { + word: "ronić", + correct: 22, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "18.11.2025", + }, + }, + { + date: "18.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKzcTLu5SZl1iYvJnL2kTLz92auMDNiRTLk9GcuAjLwEjLw4CNx4iMyMTL3gTJ0MUJp52byhSI", + value: "!(ronić-322.14.0.10.0.pod-4b43.kos-96.rob-ee.n-73)!", + result: { + word: "ronić", + correct: 14, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "18.11.2025", + }, + }, + { + date: "18.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyM30ibuETLp5CN2E2Nto3by5CMx0ybn9mLkFTNtQ2bw5iN5YTLs9meuAjL2EjLw4SMy4iMyMTL3gTJ0MUJp52byhSI", + value: "!(ronić-322.21.0.16.0.zol-696.pod-51d.ogo-10.roz-7a64.i-1.n-73)!", + result: { + word: "ronić", + correct: 21, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "18.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zabawne-11-12-2025-flag-pl-diffle-difflepl-grywebowe-31-liter-w-5-slowach-large-" +] = [ + { + date: "11.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyIjYx0Sa6RmL2UmMtk2dn5SMk1ielRnL4YTMt42b65iN2UjYtoncw5CMugTMuIjLxEjL1QzMt4WaDJUJ1MUJkhSI", + value: "!(dżin-345.11.2.18.0.prz-b566.zon-168.tez-d1.gwi-2e6.dzi-1b22)!", + result: { + word: "dżin", + correct: 11, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "11.12.2025", + }, + }, + { + date: "11.12.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjMiFTLppnLiZ2Nt8mck5yM5IWMtQWY65yM0MTMtwWe35CMuUTMuIjLwEjL1QzMt4WaDJUJ1MUJkhSI", + value: "!(dżin-345.10.2.15.0.wyl-1343.zad-1b93.dro-7fb.zi-1b22)!", + result: { + word: "dżin", + correct: 10, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "11.12.2025", + }, + }, + { + date: "11.12.2025", + nick: "Atexor", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjMiFTLp5iM00SZ65SNm1SdsRmL1ADMx0icwNnLw4CNx4CMukjL1QzMt4WaDJUJ1MUJkhSI", + value: "!(dżin-345.9.0.14.0.spr-1005.dlu-f5.ze-42.i-1b22)!", + result: { + word: "dżin", + correct: 9, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "11.12.2025", + }, + }, + { + date: "11.12.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMyIWMtkmek5iMhlTLllmYuMjZ4ETLyl3dugTOt8me65SMugTMuIjLwEjL1QzMt4WaDJUJ1MUJkhSI", + value: "!(dżin-345.10.2.18.1.zzo-98.wyr-18f3.bie-9a2.dzi-1b22)!", + result: { + word: "dżin", + correct: 10, + position: 2, + incorrect: 18, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 30, + date: "11.12.2025", + }, + }, + { + date: "11.12.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMyIWMtkmek5SMyMTL6VWbuMzY1UTL69GcugTOt8me65CMuMTMuEjLwEjL1QzMt4WaDJUJ1MUJkhSI", + value: "!(dżin-345.10.1.13.0.zzo-98.poz-55c3.mez-321.dzi-1b22)!", + result: { + word: "dżin", + correct: 10, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "11.12.2025", + }, + }, + { + date: "11.12.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMyIWMtkmek5CZ3kTLvx2ZuMDOx0SasNnLiZWLrVmcuU2Yz0ibp1mLx0SawNnLmJmMtUHaj5CMuYjMuAjLzEjL1QzMt4WaDJUJ1MUJkhSI", + value: + "!(dżin-345.13.0.26.0.chu-2bf.spi-1.min-3ce.rek-fb.sli-183.glo-97d.dzi-1b22)!", + result: { + word: "dżin", + correct: 13, + position: 0, + incorrect: 26, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "11.12.2025", + }, + }, + { + date: "11.12.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjMiFTLppnLi1ie15yMy0iehRmL2QTZtA3c35CMucTMuEjLyEjL1QzMt4WaDJUJ1MUJkhSI", + value: "!(dżin-345.12.1.17.0.wsp-e46.daz-23.uz-b.zi-1b22)!", + result: { + word: "dżin", + correct: 12, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "11.12.2025", + }, + }, + { + date: "11.12.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyIjYx0Sa6RmLmFTL0lneuQGOx0CczFmLw4yMx4SMucjL1QzMt4WaDJUJ1MUJkhSI", + value: "!(dżin-345.7.1.13.0.asp-18d.zyt-1f.dzi-1b22)!", + result: { + word: "dżin", + correct: 7, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "11.12.2025", + }, + }, + { + date: "11.12.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpIjMiFTLppHZuUGOiFTLkFmL4kTLvpneuAjL44SMugjL1QzMt4WaDJUJ1MUJkhSI", + value: "!(dżin-345.8.1.8.0.zzo-98.ad-1b8e.dzi-1b22)!", + result: { + word: "dżin", + correct: 8, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "11.12.2025", + }, + }, + { + date: "11.12.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMyIWMtkmeuUzMtoXYuUjZtUHbk5iN1czMtoncw5CMuQTMuAjLwEjL1QzMt4WaDJUJ1MUJkhSI", + value: "!(dżin-345.10.0.14.0.prz-3756.dlu-f5.az-35.zi-1b22)!", + result: { + word: "dżin", + correct: 10, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "11.12.2025", + }, + }, + { + date: "11.12.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyIjYx0Sa6RmL4ETLul2ZuYDZx0ibp1mL1UjMto2b35yM5gTYx0ieyBnLw4SNy4SMukjL1QzMt4WaDJUJ1MUJkhSI", + value: "!(dżin-345.9.1.25.0.prz-1a893.woj-255.min-1d6.gin-18.dzi-1b22)!", + result: { + word: "dżin", + correct: 9, + position: 1, + incorrect: 25, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "11.12.2025", + }, + }, + { + date: "11.12.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMyIWMtkmek5CMxYWMtIWY65SMjRTLoN2MuUTM00Cdl5yMhVTMtkmek5iMzMTMtMXe35CMugTMuAjLwEjL1QzMt4WaDJUJ1MUJkhSI", + value: + "!(dżin-345.10.0.18.0.wys-1332.dzi-15a3.et-415.3ch-4c1.zab-1f10.dzi-1b22)!", + result: { + word: "dżin", + correct: 10, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 28, + date: "11.12.2025", + }, + }, + { + date: "11.12.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyIjYx0Sa6RmLyYjMtkne15COhlTLllmYuY2Yz0CajNjL5UjNx0CbhpnLw4yMx4yMukjL1QzMt4WaDJUJ1MUJkhSI", + value: "!(dżin-345.9.3.13.0.zal-1659.3ch-3cf.bie-9a8.uzy-262.dzi-1b22)!", + result: { + word: "dżin", + correct: 9, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "11.12.2025", + }, + }, + { + date: "11.12.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKyIjYx0Sa6RmLlRjNtg2Yz4yN5UWNto3bw5CNy0ibpdmL2EmYtUWat5CMuEjMuAjLwEjL1QzMt4WaDJUJ1MUJkhSI", + value: "!(dżin-345.10.0.21.0.mie-ba6.gin-24.poz-5e97.3ch-64e.dzi-1b22)!", + result: { + word: "dżin", + correct: 10, + position: 0, + incorrect: 21, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "11.12.2025", + }, + }, + { + date: "11.12.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMyIWMtkmek5SZmZTLs9meukDNy0CZv1mLw4yMx4SMucjL1QzMt4WaDJUJ1MUJkhSI", + value: "!(dżin-345.7.1.13.0.mod-249.zol-6fe.dzi-1b22)!", + result: { + word: "dżin", + correct: 7, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "11.12.2025", + }, + }, + { + date: "11.12.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiMyIWMuQmNiFTLppnLwMmMt4WZuEmZx0yd65iMjdTLvJnLwEDNtQXZk5yYhJGNtQ2bw5CMuEjMuEjL1EjL1QzMt4WaDJUJ1MUJkhSI", + value: + "!(dżin-345.15.1.21.0.pod-4bac.det-410.ro-7c2.zw-1fa.en-2c0.zi-1b6d.1b22)!", + result: { + word: "dżin", + correct: 15, + position: 1, + incorrect: 21, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 37, + date: "11.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/znalazlem-slowo-ktorego-nie-ma-w-slowniku-a-chyba-powinno-byc-nie-napisze-jakie-" +] = [ + { + date: "21.10.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2UWMz0ybyBnLiN2Nx0ichpnLzYTL69mbuMDNzETLsl3duAjLwEjLy4yMx4CN5ITLv52QCVSNDVyMCVyMDVicwhSI", + value: "!(próżno-294.13.2.10.0.wyl-1343.noz-63.zar-17cb.pro-31e6)!", + result: { + word: "próżno", + correct: 13, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "21.10.2025", + }, + }, + { + date: "21.10.2025", + nick: "Kotuduchawinny", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2UWMz0ybyBnLygjYwETL69mcucjY00ybydnL4kTLvpneuAjLwEjLx4iNx4CN5ITLv52QCVSNDVyMCVyMDVicwhSI", + value: "!(próżno-294.16.1.10.0.zzo-98.wro-4b7.roz-10b82.pro-31e6)!", + result: { + word: "próżno", + correct: 16, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "21.10.2025", + }, + }, + { + date: "21.10.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2UWMz0yby5iZwUWNto3bw5CZ4ETLwNXYuAjLwEjLw4yMx4CN5ITLv52QCVSNDVyMCVyMDVicwhSI", + value: "!(próżno-294.13.0.10.0.asp-18d.poz-5e0f.ro-31e6)!", + result: { + word: "próżno", + correct: 13, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "21.10.2025", + }, + }, + { + date: "21.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNlFzMuI2MmJTLvJHcuIzN00CajNjL0MTLjVHcuUDN00CajNjLmZTNt8GbukTOy0ycvBnL1UTNtc3by5SM0MTLp12cuIjL2IjLx4yMy4CN5ITLv52QCVSNDVyMCVyMDVicwhSI", + value: + "!(próżno-294.23.1.26.2.smi-341.row-555.pos-299.lo-56f.3ch-445.puc-34.3ch-472.pro-2f3b.31e6)!", + result: { + word: "próżno", + correct: 23, + position: 1, + incorrect: 26, + knownIncorrect: 2, + totalWords: 9, + totalLetters: 50, + date: "21.10.2025", + }, + }, + { + date: "21.10.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2UWMz4SZ4EzMuczMyMTLvJHcugTOt8me65CMugjLx4COx4CN5ITLv52QCVSNDVyMCVyMDVicwhSI", + value: "!(próżno-294.18.1.8.0.zzo-98.pro-3237.318e.31e6)!", + result: { + word: "próżno", + correct: 18, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "21.10.2025", + }, + }, + { + date: "21.10.2025", + nick: "User", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2UWMz4SZ2AzMuYTN20yby5yY1UTLllGcuAjL4EjLw4yNx4CN5ITLv52QCVSNDVyMCVyMDVicwhSI", + value: "!(próżno-294.17.0.18.0.pie-55c.ro-656.306e.31e6)!", + result: { + word: "próżno", + correct: 17, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "21.10.2025", + }, + }, + { + date: "21.10.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNlFzMt8mcw5yY5ETLu9meuATOtcWYq5iZ5QTLvxmeuAjLwEjLx4CMx4CN5ITLv52QCVSNDVyMCVyMDVicwhSI", + value: "!(próżno-294.10.1.10.0.zlo-49f.jag-90.zon-19c.pro-31e6)!", + result: { + word: "próżno", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "21.10.2025", + }, + }, + { + date: "21.10.2025", + nick: "Endrevoir", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2UWMz0ybyBnL2QTZtA3c35CMugjLx4CMx4CN5ITLv52QCVSNDVyMCVyMDVicwhSI", + value: "!(próżno-294.10.1.8.0.wsp-e46.pro-31e6)!", + result: { + word: "próżno", + correct: 10, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "21.10.2025", + }, + }, + { + date: "21.10.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2UWMz0ybuEmMyETLh5yM0QTMt8mcuMWYiRTLk9GcuAjL0EjLx4SNx4CN5ITLv52QCVSNDVyMCVyMDVicwhSI", + value: "!(próżno-294.15.1.14.0.pod-4bac.ro-1443.a-122a.o-31e6)!", + result: { + word: "próżno", + correct: 15, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "21.10.2025", + }, + }, + { + date: "21.10.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNlFzMt8mcw5SMxIGMx0ievJnLxQzNtIHdz5iZiJTL1h2YuAjL1EjLx4CNx4CN5ITLv52QCVSNDVyMCVyMDVicwhSI", + value: "!(próżno-294.14.1.15.0.chu-2bf.str-741.roz-10b11.pro-31e6)!", + result: { + word: "próżno", + correct: 14, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "21.10.2025", + }, + }, + { + date: "21.10.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNlFzMt8mcw5yMxETL1JHducTNt8mbt5yM20iev5mL2kTLu9meuIzMzETLzl3duAjL0EjLz4CNx4CN5ITLv52QCVSNDVyMCVyMDVicwhSI", + value: + "!(próżno-294.14.3.14.0.wys-1332.zon-96.noz-63.mno-57.tru-113.pro-31e6)!", + result: { + word: "próżno", + correct: 14, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "21.10.2025", + }, + }, + { + date: "21.10.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2UWMz0ybucjZzETLlJHcuUTNy0iavdnLzkDOhFTL6JHcuAjLxIjLx4CNx4CN5ITLv52QCVSNDVyMCVyMDVicwhSI", + value: "!(próżno-294.14.1.21.0.prz-1a893.woj-255.pre-13f7.o-31e6)!", + result: { + word: "próżno", + correct: 14, + position: 1, + incorrect: 21, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "21.10.2025", + }, + }, + { + date: "21.10.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNlFzMt8mcw5SMxIGMx0ievJnLjR2Mtg2Yz4SZjZTLs9meuAjLwEjLz4SNx4CN5ITLv52QCVSNDVyMCVyMDVicwhSI", + value: "!(próżno-294.15.3.10.0.zol-6ce.3ch-3dc.roz-10b11.pro-31e6)!", + result: { + word: "próżno", + correct: 15, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "21.10.2025", + }, + }, + { + date: "21.10.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNlFzMuMDMxMjL3MjMz0ybyBnLlNTOwETL69mcugTOt8me65CMukjLx4iMy4CN5ITLv52QCVSNDVyMCVyMDVicwhSI", + value: "!(próżno-294.22.1.9.0.zzo-98.roz-1093e.pro-3237.3103.31e6)!", + result: { + word: "próżno", + correct: 22, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "21.10.2025", + }, + }, + { + date: "21.10.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiNlFzMuQmZxMTLvJHcuMTO5ETLzFmbuQzMzETLsl3duAjL0EjLx4SNx4CN5ITLv52QCVSNDVyMCVyMDVicwhSI", + value: "!(próżno-294.15.1.14.0.wyl-1334.nas-1993.pro-31fd.31e6)!", + result: { + word: "próżno", + correct: 15, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "21.10.2025", + }, + }, + { + date: "21.10.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpYTZxMTLvJnLmBTZ10ievBnL0ADOt8Gbn5iNhJWLllWbuAjL3EjLw4CNx4CN5ITLv52QCVSNDVyMCVyMDVicwhSI", + value: "!(próżno-294.14.0.17.0.mie-ba6.glo-804.poz-5e0f.ro-31e6)!", + result: { + word: "próżno", + correct: 14, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "21.10.2025", + }, + }, + { + date: "21.10.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK2UWMz4SZ2AzMuMWOmJjLycDMz0ybuQWM3MTL6JHcuAjL1EjLw4SOx4CN5ITLv52QCVSNDVyMCVyMDVicwhSI", + value: "!(próżno-294.19.0.15.0.prz-371d.o-3072.2f9c.306e.31e6)!", + result: { + word: "próżno", + correct: 19, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "21.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/znowu-takie-troche-naciagane-30-11-2025-diffle-difflepl-grywebowe-29-liter-w-5-s" +] = [ + { + date: "30.11.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYx0yclRnLwEWMtUHaj5yM50yclJmL2MWLwV2cuIWZ50ycvtmLw4SNx4iMuITMuQzMz0SYsNXZ0hSI", + value: "!(tesla-334.12.2.15.0.kos-9eb.sep-c6.bes-93.chu-1a0.tes-1a)!", + result: { + word: "tesla", + correct: 12, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "30.11.2025", + }, + }, + { + date: "30.11.2025", + nick: "Heheszki", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhFTLzVGduITL0FmZuIjNm1ybyBnLy4SNx4yMuATMuQzMz0SYsNXZ0hSI", + value: "!(tesla-334.10.3.15.2.pro-f62.fat-2.tes-1a)!", + result: { + word: "tesla", + correct: 10, + position: 3, + incorrect: 15, + knownIncorrect: 2, + totalWords: 3, + totalLetters: 28, + date: "30.11.2025", + }, + }, + { + date: "30.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWMtMXZ05COx0CdwFmLw0Cdl1mLmRTL5JnZuYmYy0SdoNmLw4yNx4SMuITMuQzMz0SYsNXZ0hSI", + value: "!(tesla-334.12.1.17.0.chu-2bf.fry-4f.met-0.apt-18.tes-1a)!", + result: { + word: "tesla", + correct: 12, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "30.11.2025", + }, + }, + { + date: "30.11.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhFTLzVGduETLzVGbuQmM00icwNnLw4CMx4iMuATMuQzMz0SYsNXZ0hSI", + value: "!(tesla-334.10.2.10.0.spr-42d.les-1.tes-1a)!", + result: { + word: "tesla", + correct: 10, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "30.11.2025", + }, + }, + { + date: "30.11.2025", + nick: "Felonious_Gru", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWMuEjNtMXZ05iMhRWLhh2YuEWLzV2cuATLzVWbuYTZxETLhp3cuMTZx0SYwVnLw4iNx4iMukTMuQzMz0SYsNXZ0hSI", + value: + "!(tesla-334.19.2.16.0.upa-1e3.sza-11e6.mes-0.ses-a.cha-da2.tes-61.1a)!", + result: { + word: "tesla", + correct: 19, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 37, + date: "30.11.2025", + }, + }, + { + date: "30.11.2025", + nick: "kwiecik", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWMtMXZ05SY4ETLlR3cuQjY20SY3tmLw4SMx4yMuETMuQzMz0SYsNXZ0hSI", + value: "!(tesla-334.11.3.11.0.kwa-6b4.ste-18a.tes-1a)!", + result: { + word: "tesla", + correct: 11, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "30.11.2025", + }, + }, + { + date: "30.11.2025", + nick: "Deykun", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYx0yclRnLwEWMtUHaj5CMtwWZi5CN0ETLlx2duMmNh1SYydmLw4yMx4iMuETMuQzMz0SYsNXZ0hSI", + value: "!(tesla-334.11.2.13.0.gra-a6c.wle-144.bel-0.chu-1a0.tes-1a)!", + result: { + word: "tesla", + correct: 11, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "30.11.2025", + }, + }, + { + date: "30.11.2025", + nick: "radziol", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhFTLzVGducDNy0iavdnLzkDOhFTL6JHcuAjL1EjLx4SOuQzMz0SYsNXZ0hSI", + value: "!(tesla-334.9.1.15.0.prz-1a893.woj-247.tes-1a)!", + result: { + word: "tesla", + correct: 9, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "30.11.2025", + }, + }, + { + date: "30.11.2025", + nick: "Gilgamesh", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWMtMXZ05iY10yclBnL0YWMtQWe35CMukjLy4SOuQzMz0SYsNXZ0hSI", + value: "!(tesla-334.9.2.9.0.wyd-1f4.pes-5b.tes-1a)!", + result: { + word: "tesla", + correct: 9, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "30.11.2025", + }, + }, + { + date: "30.11.2025", + nick: "yourgrandma", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKhFTLzVGduATL0VmYuYWMtsWdl5CMucjLy4SOuQzMz0SYsNXZ0hSI", + value: "!(tesla-334.9.2.7.0.euk-1f.bet-0.tes-1a)!", + result: { + word: "tesla", + correct: 9, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "30.11.2025", + }, + }, + { + date: "30.11.2025", + nick: "wihajster", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYx0yclRnL2EmYtUWat5CMukjLy4COuQzMz0SYsNXZ0hSI", + value: "!(tesla-334.8.2.9.0.mie-ba6.tes-1a)!", + result: { + word: "tesla", + correct: 8, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "30.11.2025", + }, + }, + { + date: "30.11.2025", + nick: "tosiu", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWMtMnLzUWYtwmL2cTLtVmLhNGNx0SYyRnLkNmYx0ibvtmLz4SOx4SMuYTMuQzMz0SYsNXZ0hSI", + value: "!(tesla-334.16.1.19.3.kon-1bcd.tra-14ca.em-76.l-ae3.s-1a)!", + result: { + word: "tesla", + correct: 16, + position: 1, + incorrect: 19, + knownIncorrect: 3, + totalWords: 5, + totalLetters: 36, + date: "30.11.2025", + }, + }, + { + date: "30.11.2025", + nick: "gedzior84", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWMtMXZ05iN5IWLlR3cuYzM30ybl5mLw4SMx4iMuATMuQzMz0SYsNXZ0hSI", + value: "!(tesla-334.10.2.11.0.neo-736.ste-b96.tes-1a)!", + result: { + word: "tesla", + correct: 10, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "30.11.2025", + }, + }, + { + date: "30.11.2025", + nick: "PatykiemPisane", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpEWMtMXZ05SYxczMtoncw5CMucjLx4COuQzMz0SYsNXZ0hSI", + value: "!(tesla-334.8.1.7.0.prz-371a.tes-1a)!", + result: { + word: "tesla", + correct: 8, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "30.11.2025", + }, + }, + { + date: "30.11.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYx0yclRnLmhzMtsWZs5SO0ITLk9WbuAjLzEjLy4SOuQzMz0SYsNXZ0hSI", + value: "!(tesla-334.9.2.13.0.mod-249.lek-38f.tes-1a)!", + result: { + word: "tesla", + correct: 9, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "30.11.2025", + }, + }, + { + date: "30.11.2025", + nick: "ranunculus", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkSYx0yclRnLlJGNtIXZz5SYxITNto3bw5CMukjLz4SOuQzMz0SYsNXZ0hSI", + value: "!(tesla-334.9.3.9.0.poz-521a.ser-4be.tes-1a)!", + result: { + word: "tesla", + correct: 9, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "30.11.2025", + }, + }, +]; diff --git a/scripts/hejto/parts-2025/part-5.ts b/scripts/hejto/parts-2025/part-5.ts new file mode 100644 index 000000000..7a9259d27 --- /dev/null +++ b/scripts/hejto/parts-2025/part-5.ts @@ -0,0 +1,19930 @@ +import { ParsedHejtoResult } from "../hejto-types"; + +export const results: { + resultsBySource: { + [url: string]: ParsedHejtoResult[]; + }; +} = { + resultsBySource: {}, +}; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/01-02-2025-diffle-diffleen-grywebowe-27-letters-in-5-words-11-0-16-0" +] = [ + { + date: "01.02.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK40yYpdnLlBDOtg2Yz4SNtwWauIDNx0SaodnL3IWMtYmbp5CMuYTMuAjLxEjLyMTLrNWa3hSI", + value: "!(wick-32.11.0.16.0.inf-1b7.whi-142.il-5.3ch-80e.wic-8)!", + result: { + word: "wick", + correct: 11, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "01.02.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOtMWa35yNy0yYp5mLkVTLjlGbuYDNtMWaw5yN50yYpRmLx0yYptmLkJTLjl2cuMjMtQ3bt5CMuYTMuAjL0IjLyMTLrNWa3hSI", + value: + "!(wick-32.24.0.16.0.mot-23.sic-2d.kic-1.dic-97.pic-46.lic-5d.nic-27.wic-8)!", + result: { + word: "wick", + correct: 24, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 40, + }, + }, + { + date: "01.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOtMWa35SMtMWar5iY00yYpJnL2MTLjlWbucTNz0CajNjLw0ibppnLz0Sa1JmL5kTMt8Gch5CMukTMuAjL5EjLyMTLrNWa3hSI", + value: + "!(wick-32.19.0.19.0.apo-199.bui-3.zin-0.3ch-357.mic-36.ric-4b.kic-1.wic-8)!", + result: { + word: "wick", + correct: 19, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 38, + date: "01.02.2025", + }, + }, + { + date: "01.02.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOtMWa35SMtMWar5CZ10yYpxmLyITLphGduEDZx0SblRmLxUjNtIWdz5CMuUTMuAjL1EjLyMTLrNWa3hSI", + value: "!(wick-32.15.0.15.0.sub-651.dem-1d1.thi-22.lic-5d.kic-1.wic-8)!", + result: { + word: "wick", + correct: 15, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "01.02.2025", + }, + }, + { + date: "01.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOtMWa35yM10yYpZnL5QTLjlmYuETLjl2auQmMtMWaz5iMy0SaoRnL2QTLjVHbukTLu9GcuIjNt0WYn5CMucTMuAjLxIjLyMTLrNWa3hSI", + value: + "!(wick-32.21.0.17.0.gam-62.pon-9.luc-46.thi-22.sic-2d.kic-1.bic-49.vic-53.wic-8)!", + result: { + word: "wick", + correct: 21, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 38, + date: "01.02.2025", + }, + }, + { + date: "01.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK40yYpdnL2QTLjlGcuQWNtMWas5CN1ETLu9WbuIzMtMXdh5CMuMTMuAjLyEjLyMTLrNWa3hSI", + value: "!(wick-32.12.0.13.0.aus-32.mon-154.lic-5d.pic-46.wic-8)!", + result: { + word: "wick", + correct: 12, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "01.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/04-01-2025-diffle-diffleen-grywebowe-23-letters-in-3-words-large-green-circle-14" +] = [ + { + date: "04.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiJmLlRTLk5CO0QTLzlWbuAjL54CMuQTMuQTLlZWa3RWathSI", + value: "!(midwife-4.14.0.9.0.mis-448.d-4e.bb)!", + result: { + word: "midwife", + correct: 14, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "04.01.2025", + }, + }, + { + date: "04.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiJWLklWbugzMx0SaodnL3QTLklWbuUjZy0CclJnLw4CNx4SMuQTMuQTLlZWa3RWathSI", + value: "!(midwife-4.14.1.14.0.rep-2f5.mid-47.whi-138.mid-bb)!", + result: { + word: "midwife", + correct: 14, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "04.01.2025", + }, + }, + { + date: "04.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpImYtQWat5CMtYWa35SYkNTLoN2MuYTLtlWbuUWYx4iZhFjLiRWMtg2Yz4SMts2b35COz0CZp1mLl1CZpdnL00CZpZnLkNTLllGcuYWNtkGbi5SMy0SZoNmLw4SOx4yMugzMuQTLlZWa3RWathSI", + value: + "!(midwife-4.38.3.19.0.che-21.bli-5f.pie-3d.vid-4.wid-e.mid-38.wok-1.3ch-1db.1af.1ae.mim-6.3ch-3da.wif-0.mid-bb)!", + result: { + word: "midwife", + correct: 38, + position: 3, + incorrect: 19, + knownIncorrect: 0, + totalWords: 14, + totalLetters: 60, + date: "04.01.2025", + }, + }, + { + date: "04.01.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiJWLklWbuATL2lmZugzMtQmL30yauETMtMmL50CducDNt4WauQmNtMXduQmMtw2bt5iM20SbhdmLw4iMx4SMuEzMuQTLlZWa3RWathSI", + value: + "!(midwife-4.31.1.12.0.gam-62.mol-2d.us-6d.in-47.t-9.c-11.k-7.d-38.fiv-0.mid-bb)!", + result: { + word: "midwife", + correct: 31, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 44, + date: "04.01.2025", + }, + }, + { + date: "04.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiJmL4MjL1QjL2ETLklWbukDOt4WYw5SN20SdyRmLw4yMx4yMuMjMuQTLlZWa3RWathSI", + value: "!(midwife-4.23.3.13.0.dru-65.pan-89.mid-16.45.38.bb)!", + result: { + word: "midwife", + correct: 23, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "04.01.2025", + }, + }, + { + date: "04.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYi1CZp1mLlFWMtg2Yz4SZz0SarNnL3EWLoNmMuMWMx0SYyZmLw4iMx4SMuUTMuQTLlZWa3RWathSI", + value: "!(midwife-4.15.1.12.0.fra-11c.2ch-a7.ski-3e.3ch-1ae.mid-bb)!", + result: { + word: "midwife", + correct: 15, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "04.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/04-04-2025-diffle-diffleen-24-letters-in-5-words-11-0-13-1" +] = [ + { + date: "04.04.2025", + nick: "hapaczuri", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwkTLjV3cugTLjVXbuETOz0CbvBnLwETLnlmZuImZtEmcj5SMuMTMuAjLxEjL0kTLoNWdzhSI", + value: "!(such-94.11.0.13.1.cra-fb.fig-10.pol-391.muc-8.suc-90)!", + result: { + word: "such", + correct: 11, + position: 0, + incorrect: 13, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 24, + date: "04.04.2025", + }, + }, + { + date: "04.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpATOtMWdz5COtMWdt5SYy0yc1JmLyQjMtQnbh5CMuUTMuEjLwEjL0kTLoNWdzhSI", + value: "!(such-94.10.1.15.0.ant-242.bus-2a.muc-8.suc-90)!", + result: { + word: "such", + correct: 10, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "04.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/05-04-2025-diffle-diffleen-grywebowe-25-letters-in-4-words-large-green-circle-17" +] = [ + { + date: "05.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzETLnVGbuATLhdWZuATLnVmduYDOtEWZy5CMugjLw4yNx4SN50SZ6lGbhdWZshSI", + value: "!(legalize-95.17.0.8.0.rea-86.veg-0.ega-0.leg-13)!", + result: { + word: "legalize", + correct: 17, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "05.04.2025", + }, + }, + { + date: "05.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMx0yZlxmLhVDNtg2Yz4iN00SYlJmLwIjNtg2Yz4SZx0SY2VmLw0SYlpnLyIWLhVGauEjNtYWZy5SO30SYl1mLjhTLjVGZuAjLxIjLz4CNz4SN50SZ6lGbhdWZshSI", + value: + "!(legalize-95.34.3.21.0.dec-8c.mea-79.ref-61.hea-b2.zea-0.eva-1e.3ch-620.bea-46.3ch-45a.leg-13)!", + result: { + word: "legalize", + correct: 34, + position: 3, + incorrect: 21, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 58, + date: "05.04.2025", + }, + }, + { + date: "05.04.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMx4yNx0yZuYWNtEWZs5SMtU2Zh5SMx0SYldmLxITLlh2YuAjLwEjL04CNy4SN50SZ6lGbhdWZshSI", + value: "!(legalize-95.24.4.10.0.che-21.gea-11.age-1.lea-5f.g-17.13)!", + result: { + word: "legalize", + correct: 24, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "05.04.2025", + }, + }, + { + date: "05.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzETLnVGbuETLnVmbuIjNt0WYn5CMuQjLw4SNx4SN50SZ6lGbhdWZshSI", + value: "!(legalize-95.15.0.4.0.gam-62.neg-1.leg-13)!", + result: { + word: "legalize", + correct: 15, + position: 0, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "05.04.2025", + }, + }, + { + date: "05.04.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMTMtcmL5MWLhVGbuITYt8mcw5CMukjLx4iNx4SN50SZ6lGbhdWZshSI", + value: "!(legalize-95.16.1.9.0.pro-a2.lea-c9.g-13)!", + result: { + word: "legalize", + correct: 16, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "05.04.2025", + }, + }, + { + date: "05.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzEjLmVTLnVGbuI2Mx0ibh1mLz0yapxmLw0CbklmLyMTLzVXYuAjLyEjL04SMy4SN50SZ6lGbhdWZshSI", + value: "!(legalize-95.21.4.12.0.aus-32.idl-0.lik-3.man-13b.leg-5f.13)!", + result: { + word: "legalize", + correct: 21, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "05.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/07-06-2025-diffle-diffleen-grywebowe-16-letters-in-2-words-large-green-circle-12" +] = [ + { + date: "07.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzITLlJHduYDOtEWZy5CMuIjLy4iMx4CO1ETLu92chVmc0hSI", + value: "!(treason-158.12.2.2.0.rea-86.tre-23)!", + result: { + word: "treason", + correct: 12, + position: 2, + incorrect: 2, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "07.06.2025", + }, + }, + { + date: "07.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMy0SZyRnL1YWMtMXZy5CMuQjLy4SMx4CO1ETLu92chVmc0hSI", + value: "!(treason-158.11.2.4.0.res-1f5.tre-23)!", + result: { + word: "treason", + correct: 11, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "07.06.2025", + }, + }, + { + date: "07.06.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzIjLyMTLlJnLiVTLhVGduEjMtUGaj5CMucjLx4SOx4CO1ETLu92chVmc0hSI", + value: "!(treason-158.19.1.7.0.che-21.tea-5b.re-32.23)!", + result: { + word: "treason", + correct: 19, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "07.06.2025", + }, + }, + { + date: "07.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMy4iMy4iZtUmc05CZz0SZyNmLjVTLsVmcuIjNt0WYn5CMuYjLz4yMy4CO1ETLu92chVmc0hSI", + value: "!(treason-158.23.3.6.0.gam-62.rel-5c.cre-3d.tre-f.22.23)!", + result: { + word: "treason", + correct: 23, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "07.06.2025", + }, + }, + { + date: "07.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzITLlJHduM2Yz0yclJnLkZWLlJnZuAjLwEjLy4SNx4CO1ETLu92chVmc0hSI", + value: "!(treason-158.15.2.10.0.fre-fd.res-3cc.tre-23)!", + result: { + word: "treason", + correct: 15, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "07.06.2025", + }, + }, + { + date: "07.06.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMjMtUmc05iN3ETLyR3cuITYt8mcw5CMucjLz4CNx4CO1ETLu92chVmc0hSI", + value: "!(treason-158.14.3.7.0.pro-a2.str-176.tre-23)!", + result: { + word: "treason", + correct: 14, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "07.06.2025", + }, + }, + { + date: "07.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzITLl5iZx0SYyRnLlBjMtwWYt5CMucjL04yMx4CO1ETLu92chVmc0hSI", + value: "!(treason-158.13.4.7.0.mal-20e.tra-1f.e-23)!", + result: { + word: "treason", + correct: 13, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "07.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/09-06-2025-diffle-diffleen-grywebowe-26-letters-in-4-words-large-green-circle-16" +] = [ + { + date: "09.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNzMTLjVGZuYTMtUHbw5SMx0SZyNmL2gTLhVmcuAjL54SMuYTMuAjNx0SZzFWZyNWZkhSI", + value: "!(decrease-160.16.1.9.0.rea-86.cre-11.plu-16.dec-337)!", + result: { + word: "decrease", + correct: 16, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "09.06.2025", + }, + }, + { + date: "09.06.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3MzMtMWZk5yYh1icjNnLxITLlh2YuAjL24SMuUTMuAjNx0SZzFWZyNWZkhSI", + value: "!(decrease-160.15.1.6.0.che-21.scr-ac.dec-337)!", + result: { + word: "decrease", + correct: 15, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "09.06.2025", + }, + }, + { + date: "09.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3MzMtMmL0kTLyVGZuIzNx0Cd4VmLw4CMx4SMuUTMuAjNx0SZzFWZyNWZkhSI", + value: "!(decrease-160.15.1.10.0.ext-172.der-94.c-337)!", + result: { + word: "decrease", + correct: 15, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "09.06.2025", + }, + }, + { + date: "09.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpczMz4iZzMTLj5iM10SbuYmYtEWZk5iMy0SYlJmLlNTLpV2duYjYh1SZ29mLw4CMx4yMukjMuAjNx0SZzFWZyNWZkhSI", + value: + "!(decrease-160.29.3.10.0.ove-ab6.wei-3e.bea-22.dea-bf.m-52.c-33f.337)!", + result: { + word: "decrease", + correct: 29, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "09.06.2025", + }, + }, + { + date: "09.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpczMz0yYlRmL1QmMtMmbp5CNxUTLs9GcuY2MtUmcj5yNtMWYy5iNl1ichJmLyYTLtF2ZuAjL54yMucjMuAjNx0SZzFWZyNWZkhSI", + value: + "!(decrease-160.27.3.9.0.gam-62.bar-e6.rac-7.cre-3f.pol-514.inc-2d5.dec-337)!", + result: { + word: "decrease", + correct: 27, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "09.06.2025", + }, + }, + { + date: "09.06.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNzMTLjVGZuYmMtMXY35iNtUmcj5iMh1ybyBnLw4SMx4SMucTMuAjNx0SZzFWZyNWZkhSI", + value: "!(decrease-160.17.1.11.0.pro-a2.cre-6.was-2f.dec-337)!", + result: { + word: "decrease", + correct: 17, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "09.06.2025", + }, + }, + { + date: "09.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpczMz4iMm1yYuEWMtYnL30yZlRmLh1SdlZmLw4CMx4SMucjMuAjNx0SZzFWZyNWZkhSI", + value: "!(decrease-160.27.1.10.0.feu-a.deg-7.v-1a.c-f2.337)!", + result: { + word: "decrease", + correct: 27, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "09.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/1-slowo-a-tak-wiele-znaczen-14-01-2025-diffle-diffleen-grywebowe-25-letters-in-4" +] = [ + { + date: "14.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhlDNtI3bm5COx0SYy9mL5ITNtIXYw5iM00SZydnLw4COuMjL0EjL0ETLhxWdtJ3bmhSI", + value: "!(formula-14.14.3.8.0.wre-42.par-529.ora-18.for-49a)!", + result: { + word: "formula", + correct: 14, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "14.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/12-06-2025-diffle-diffleen-grywebowe-47-letters-in-9-words-large-green-circle-26" +] = [ + { + date: "12.06.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNz0SdxFmL1gjMtEWdx5yNyYTLoN2MuUjMx0ic1JmLiNTLtFmauQTNtI3bw5yMz0SY35CMtkGeh5SMy0SZoNmLw4COx4yMuYjMuMjNx0yc1lmchVXchhSI", + value: + "!(aquarius-163.26.3.18.0.che-21.axi-0.wa-33.por-54.jam-3b.bur-125.3ch-627.qua-285.aqu-37)!", + result: { + word: "aquarius", + correct: 26, + position: 3, + incorrect: 18, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 47, + date: "12.06.2025", + }, + }, + { + date: "12.06.2025", + nick: "Calypso_Cluster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3MTL1FXYukjYtwWdw5CMz0iYiFmLw4CMx4SMuMTMuMjNx0yc1lmchVXchhSI", + value: "!(aquarius-163.13.1.10.0.abb-30.pul-b9.aqu-37)!", + result: { + word: "aquarius", + correct: 13, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "12.06.2025", + }, + }, + { + date: "12.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpczMtUXch5iYz0ichRmL2ETLylWYuUWL6FGbuM2M00SYoNmLkJjNtIXYw5iM20SbhdmLw4CNx4SMugjMuMjNx0yc1lmchVXchhSI", + value: + "!(aquarius-163.28.1.14.0.gam-62.par-62d.cha-43c.laz-e.air-16.dar-3b.aqu-37)!", + result: { + word: "aquarius", + correct: 28, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 43, + date: "12.06.2025", + }, + }, + { + date: "12.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpczMtUXcuEmNtIXduIjNtkWbuYTNtkmdh5iNy0SYlZmLw4iMx4SMuEjMuMjNx0yc1lmchVXchhSI", + value: "!(aquarius-163.21.1.12.0.fea-26.avi-56.mi-62.ur-6a.qu-37)!", + result: { + word: "aquarius", + correct: 21, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "12.06.2025", + }, + }, + { + date: "12.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNz0Sdx5SMh1SayFmL1MTLzVncuU2YtUncj5SO10SY1dmLh1SdlZmLw4SMx4iMuUjMuMjNx0yc1lmchVXchhSI", + value: "!(aquarius-163.25.2.11.0.feu-a.gua-59.cru-ce.rus-35.ari-a1.qu-37)!", + result: { + word: "aquarius", + correct: 25, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "12.06.2025", + }, + }, + { + date: "12.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3MTL1FnLhZTLyVnLj1SayFmLiNTLyVnauYDZtIXYz5iN4QTLyFGcuUGOx0SaoNmLw4CNx4yMucjMuMjNx0yc1lmchVXchhSI", + value: + "!(aquarius-163.27.3.14.0.chi-18e.par-486.sar-d6.jur-3b.ari-c.ur-6a.qu-37)!", + result: { + word: "aquarius", + correct: 27, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 44, + date: "12.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/15-02-2025-diffle-diffleen-grywebowe-30-letters-in-4-words-large-green-circle-22" +] = [ + { + date: "15.02.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMiFTLm5WauIzM00icvZmLi1SbvJnL0QTLjV2cuAjL14yMuIjMuYDNtQnbh1mcvZmbphSI", + value: "!(informant-46.22.3.5.0.sec-44.rom-b.for-432.inf-1b2)!", + result: { + word: "informant", + correct: 22, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "15.02.2025", + }, + }, + { + date: "15.02.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIjYx0iZulmLmdjMtg2Yz4SNy0iZuUDZx0ycuITMtAnL2YzNtQnbp5SMy0SZoNmLw4CMx4yMuEzMuYDNtQnbh1mcvZmbphSI", + value: + "!(informant-46.31.3.10.0.che-21.int-766.p-12.s-1d5.f-25.3ch-27f.inf-1b2)!", + result: { + word: "informant", + correct: 31, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 44, + date: "15.02.2025", + }, + }, + { + date: "15.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIjYx0iZu5CO4ITLw1mLkNTLudWauAjNtEmcv5yMm1SZoRnLw4yMx4CNukjMuYDNtQnbh1mcvZmbphSI", + value: "!(informant-46.29.4.13.0.the-f3.ora-60.ign-3d.mp-288.nf-1b2)!", + result: { + word: "informant", + correct: 29, + position: 4, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 46, + date: "15.02.2025", + }, + }, + { + date: "15.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyIWMtYmbugDOy0CctlmL0UTLy9mbuETNt82bk5yYz0SbvJnLyYTLtF2ZuAjL54CNuEzMuYDNtQnbh1mcvZmbphSI", + value: + "!(informant-46.31.4.9.0.gam-62.rom-3c.doo-51.nor-54.imp-288.nf-1b2)!", + result: { + word: "informant", + correct: 31, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 44, + date: "15.02.2025", + }, + }, + { + date: "15.02.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMiFjL1IWMtYmbp5iM3ETL0hXZuAjL54CNuAjMuYDNtQnbh1mcvZmbphSI", + value: "!(informant-46.20.4.9.0.ext-172.inf-1b5.1b2)!", + result: { + word: "informant", + correct: 20, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 33, + date: "15.02.2025", + }, + }, + { + date: "15.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMiFTLm5WaugDOt8Gbm5SZ5QjLxUWNtg2Yz4COtIXai5yMx0Say5iMz0yc1FmLw4iMx4CNuIjMuYDNtQnbh1mcvZmbphSI", + value: + "!(informant-46.22.4.12.0.aus-32.ri-13.bir-8.3ch-5e1.49e.flo-88.inf-1b2)!", + result: { + word: "informant", + correct: 22, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 38, + date: "15.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/15-06-2025-diffle-diffleen-grywebowe-37-letters-in-4-words-large-green-circle-24" +] = [ + { + date: "15.06.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkDMy0CbuYTNx0ibvNmL3YTLsl2cuITYt8mcw5CMuATMuMjL0IjL2YTMt42bpNXdsx2bjhSI", + value: "!(collusion-166.24.3.10.0.pro-a2.sil-67.con-156.l-209)!", + result: { + word: "collusion", + correct: 24, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "15.06.2025", + }, + }, + { + date: "15.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkDMy4yYhFTLs92YuMWMtw2bs5iNi1icoRnLw4SOuEjL0IjL2YTMt42bpNXdsx2bjhSI", + value: "!(collusion-166.24.1.9.0.thr-b6.lol-1c.col-1ac.209)!", + result: { + word: "collusion", + correct: 24, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "15.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/16-04-2025-diffle-diffleen-grywebowe-41-letters-in-7-words-large-green-circle-22" +] = [ + { + date: "16.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyYx0Cdv1mL40Ca09mL4IWLv9GauIGNtwWdi5CZk1CdvBnL2QTL0VmZuYDOtEWZy5CMuMTMuYjLyIjL2ATMtIXZoR3bthSI", + value: + "!(mother-106.22.6.13.0.rea-86.fet-46.pot-dd.bul-4b.hoo-b8.oth-8.mot-1c)!", + result: { + word: "mother", + correct: 22, + position: 6, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "16.04.2025", + }, + }, + { + date: "16.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjFTL05COtQmLz0iYuMTMtYnL40ydv1mLmFzMtI3bj5CMuUTMuAjL0IjL2ATMtIXZoR3bthSI", + value: "!(mother-106.24.0.15.0.cor-31f.mow-8.v-13.b-3.d-8.t-1c)!", + result: { + word: "mother", + correct: 24, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "16.04.2025", + }, + }, + { + date: "16.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMWMtQnLkZDNt4mLzITLw5yMx0iduQWMtw2bt5iM20SbhdmLw4SOuAjL2IjL2ATMtIXZoR3bthSI", + value: "!(mother-106.26.0.9.0.gam-62.mol-1d.v-13.p-23.n-46d.t-1c)!", + result: { + word: "mother", + correct: 26, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "16.04.2025", + }, + }, + { + date: "16.04.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjFTL09WbuM2YtUGa05SMy0SZoNmLw4yNuIjLxEjL2ATMtIXZoR3bthSI", + value: "!(mother-106.11.2.7.0.che-21.the-cc.mot-1c)!", + result: { + word: "mother", + correct: 11, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "16.04.2025", + }, + }, + { + date: "16.04.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjFTL09WbuI2MtQ3bi5COtgGdv5iMy0Ca0VmLzYWMtUGa05CZy0CdhdmLx4COuAjL4IjL2ATMtIXZoR3bthSI", + value: "!(mother-106.28.0.8.1.gat-2d.the-1f3.eth-22.oth-8.bot-3b.mot-1c)!", + result: { + word: "mother", + correct: 28, + position: 0, + incorrect: 8, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 36, + date: "16.04.2025", + }, + }, + { + date: "16.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMWMtQ3buEzMy0Cdl1mLh1SdlZmLw4COuIjLxEjL2ATMtIXZoR3bthSI", + value: "!(mother-106.11.2.8.0.feu-a.met-231.ot-1c)!", + result: { + word: "mother", + correct: 11, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "16.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/16-06-2025-diffle-diffleen-grywebowe-29-letters-in-4-words-large-green-circle-17" +] = [ + { + date: "16.06.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZh1Ccp5SN10SdvRmLm1ybwNnLyEWLvJHcuAjL44CNucTMucjNx0Cdh12bsBXakhSI", + value: "!(diplomat-167.17.4.8.0.pro-a2.spo-f.dou-55.ip-ad)!", + result: { + word: "diplomat", + correct: 17, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "16.06.2025", + }, + }, + { + date: "16.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZh1CcuIGZtEWak5SNtwWa35yNk1CajNjL2gTLhVmcuAjL34CNucTMucjNx0Cdh12bsBXakhSI", + value: "!(diplomat-167.17.4.7.0.rea-86.3ch-d7.wil-5.dia-db.p-ad)!", + result: { + word: "diplomat", + correct: 17, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "16.06.2025", + }, + }, + { + date: "16.06.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZh1CcpRmL5gTMtg2Yz4yYy0ybsBnLlJTLsBXduQ2M10CajNjLkdTL0FmZuU2Yy0SYoNmLw4CMx4iMuUjMucjNx0Cdh12bsBXakhSI", + value: + "!(diplomat-167.25.2.10.0.cha-2ce.fat-7d.3ch-53d.upl-2e.plo-2c.3ch-189.dip-ad)!", + result: { + word: "diplomat", + correct: 25, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 37, + date: "16.06.2025", + }, + }, + { + date: "16.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQWYtAXak5COtw2bi5CMt0Wdw5SOx0Cch1mLyYTLtF2ZuAjL24CNuUTMucjNx0Cdh12bsBXakhSI", + value: "!(diplomat-167.15.4.6.0.gam-62.map-19.pum-0.bol-8.dip-ad)!", + result: { + word: "diplomat", + correct: 15, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "16.06.2025", + }, + }, + { + date: "16.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZh1CcpRmL2IWMtg2Yz4CNjZWLlJHcuAjL44iMuITMucjNx0Cdh12bsBXakhSI", + value: "!(diplomat-167.12.2.8.0.pre-fc4.3ch-1b6.dip-ad)!", + result: { + word: "diplomat", + correct: 12, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "16.06.2025", + }, + }, + { + date: "16.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQWYucTYtAnL1UTLslGZuEWL1VmZuAjL14iMuEjMucjNx0Cdh12bsBXakhSI", + value: "!(diplomat-167.21.2.5.0.feu-a.dil-55.p-a7.ad)!", + result: { + word: "diplomat", + correct: 21, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "16.06.2025", + }, + }, + { + date: "16.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkFWLw5iMz0CbpRmL5UDNtg2Yz4CMtE2b05yY3ETLph2cucTM00yYlJnLw4iMx4iNuAjMucjNx0Cdh12bsBXakhSI", + value: + "!(diplomat-167.20.6.12.0.rec-417.shi-17c.toa-0.3ch-459.dil-32.p-ad)!", + result: { + word: "diplomat", + correct: 20, + position: 6, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "16.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/17-03-2025-diffle-diffleen-grywebowe-25-letters-in-3-words-large-green-circle-17" +] = [ + { + date: "17.03.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETMtMWY25iY0ITL0F2YuITYt8mcw5CMuYjLy4yNx4iN30ibvlGdhNWY2hSI", + value: "!(vacation-76.17.2.6.0.pro-a2.cat-24b.vac-11)!", + result: { + word: "vacation", + correct: 17, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETMtMWY25SZk1yYhxmLlhTL0NWYuYDOtEWZy5CMuUjLw4yNy4iN30ibvlGdhNWY2hSI", + value: "!(vacation-76.27.0.5.0.rea-86.act-8e.lac-de.vac-11)!", + result: { + word: "vacation", + correct: 27, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxETLjFmdugjMtMWam5iZ10yYpZnLiFTMtUnc05CZ1IWLu92YuEjLwEjLx4SMy4iN30ibvlGdhNWY2hSI", + value: "!(vacation-76.21.1.10.1.con-b5d.tru-11b.vic-5f.fic-28.vac-11)!", + result: { + word: "vacation", + correct: 21, + position: 1, + incorrect: 10, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 32, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETMtMWYuATL2lmduAjMtMWYq5COy0yYpZmLk1SdvxmLxETLt9GduATOx0ybwNnLxITLlh2YuAjL4EjLy4iNy4iN30ibvlGdhNWY2hSI", + value: + "!(vacation-76.26.2.18.0.che-21.spo-190.tom-11.lou-d.fic-28.jac-20.viv-0.ac-11)!", + result: { + word: "vacation", + correct: 26, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 46, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMx0yYhZnL5EWLjFmZuQTMtQHdh5SYk1ychBnLyYTLtF2ZuAjLzEjLz4iNx4iN30ibvlGdhNWY2hSI", + value: "!(vacation-76.16.3.13.0.gam-62.pas-da.att-14.fac-a9.vac-11)!", + result: { + word: "vacation", + correct: 16, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMx0yYhZnLiRjMtQXYj5CZt8GduIzMtMXdh5CMucjLy4CMy4iN30ibvlGdhNWY2hSI", + value: "!(vacation-76.20.2.7.0.aus-32.to-d.cat-24b.vac-11)!", + result: { + word: "vacation", + correct: 20, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "17.03.2025", + }, + }, + { + date: "17.03.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxETLjFmduIjNy0SYuFmLycTMtQHel5CMugjL24SNx4iN30ibvlGdhNWY2hSI", + value: "!(vacation-76.15.6.8.0.ext-172.ana-262.vac-11)!", + result: { + word: "vacation", + correct: 15, + position: 6, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "17.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/19-03-2025-diffle-diffleen-grywebowe-21-letters-in-3-words-large-green-circle-9-" +] = [ + { + date: "19.03.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyYtUnLkRTLv92duITYt8mcw5CMuITMuAjL54CO30CZuV3b3hSI", + value: "!(wound-78.9.0.12.0.pro-a2.woo-4d.u-c)!", + result: { + word: "wound", + correct: 9, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKj1SdvdnL4QTLuVHZuczYt82b35iMz0ydvRmL2gTLhVmcuAjLwEjLz4yMx4CO30CZuV3b3hSI", + value: "!(wound-78.13.3.10.0.rea-86.dow-32.woo-c7.dun-48.wou-c)!", + result: { + word: "wound", + correct: 13, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKj1SdvdnL3QTL19WbuQTMtU3bi5SZlVTLzlGZuQTOtU3b05iZtU3bm5COjFTLvh2YuAjL5EjLw4COx4CO30CZuV3b3hSI", + value: + "!(wound-78.18.0.19.0.cho-1c8.fou-f.tou-94.dis-5ee.bou-14.mou-47.wou-c)!", + result: { + word: "wound", + correct: 18, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 37, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKj1SdvdnL5ITMt8Gbi5SMy0SZoNmLw4SOuEjL44CO30CZuV3b3hSI", + value: "!(wound-78.8.1.9.0.che-21.blo-129.wou-c)!", + result: { + word: "wound", + correct: 8, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "19.03.2025", + }, + }, + { + date: "19.03.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyYtU3b35CM10SdvNnL50ibvBnLkJTL0F2ZuAjLwEjLw4yMx4CO30CZuV3b3hSI", + value: "!(wound-78.13.0.10.0.gat-2d.pon-9.sou-50.wou-c)!", + result: { + word: "wound", + correct: 13, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "19.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/19-04-2025-diffle-diffleen-grywebowe-48-letters-in-9-words-large-green-circle-30" +] = [ + { + date: "19.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2YTLmZWYuADMx0iZulmLh1CajNjLxETLul2auYTMtUHbw5SY20SatFmLjRTLulGaugjNtkWY05iN40SYlJnLw4iNx4iMuAzMukDMx0Se0lmbpZmZhhSI", + value: + "!(affinity-109.30.2.16.0.rea-86.tai-68.hin-4c.ami-6a.plu-16.kin-11.3ch-a.inf-100.aff-66)!", + result: { + word: "affinity", + correct: 30, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 48, + date: "19.04.2025", + }, + }, + { + date: "19.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiN20iZm5yNy0Sai5COlJTL05WYuEmYx0yclRmLw4SMx4SMucTMukDMx0Se0lmbpZmZhhSI", + value: "!(affinity-109.17.1.11.0.des-1ba.ant-2e8.bi-27.ff-66)!", + result: { + word: "affinity", + correct: 17, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "19.04.2025", + }, + }, + { + date: "19.04.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYjNtYmZh5CMwETLm5WauAzMtYWay5yM50ibp1mL0QTL19GcuUWLhx2cuQmNtkWY05SMy0SZoNmLw4yNx4iMukjMukDMx0Se0lmbpZmZhhSI", + value: + "!(affinity-109.29.2.17.0.che-21.tai-6d.sla-e.pou-44.min-93.rif-30.inf-100.aff-66)!", + result: { + word: "affinity", + correct: 29, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 48, + date: "19.04.2025", + }, + }, + { + date: "19.04.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2YTLmZWYuMzYt4Wam5CMwETLm5WauYzNx0ibp1mL4gTLulmduUzYz0yYlJnLw4yMx4CMukjMukDMx0Se0lmbpZmZhhSI", + value: + "!(affinity-109.29.0.13.0.rec-3c5.vin-88.min-176.inf-100.fin-c3.aff-66)!", + result: { + word: "affinity", + correct: 29, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 42, + date: "19.04.2025", + }, + }, + { + date: "19.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiN20iZmFmLzMWLulmZuAjMx0ibpdnL40ibpFmL4QTLuVHZuUGNtIGbugTZy0CduFmL5UTL0FmbuEGZtMXYw5iM20SbhdmLw4CNx4iMuMzMukDMx0Se0lmbpZmZhhSI", + value: + "!(affinity-109.33.2.14.0.gam-62.pas-da.nat-59.ant-2e8.lb-4e.dun-48.ain-8.win-120.fin-c3.aff-66)!", + result: { + word: "affinity", + correct: 33, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 49, + date: "19.04.2025", + }, + }, + { + date: "19.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiN20iZm5yYtk2YugTLpdmLyMTLzVXYuAjL54CMukTMukDMx0Se0lmbpZmZhhSI", + value: "!(affinity-109.19.0.9.0.aus-32.gi-8.ci-c.ff-66)!", + result: { + word: "affinity", + correct: 19, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "19.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/22-03-2025-diffle-diffleen-grywebowe-40-letters-in-7-words-large-green-circle-24" +] = [ + { + date: "22.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZtMWYm5CNtM2Yh5CZz0yYhJmL2MTLkVnauATZtMWYt5SO50yYhxmL2gTLhVmcuAjL0EjLy4CNy4SM40yczVGblNWYmhSI", + value: + "!(faceless-81.24.2.14.0.rea-86.lac-99.mac-e0.jud-36.bac-3d.acc-4.fac-d)!", + result: { + word: "faceless", + correct: 24, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZtMWYm5CNtEWZugTOtMXYj5iY30SYjNnLyEWLvJHcuEjLxEjL24CNy4SM40yczVGblNWYmhSI", + value: "!(faceless-81.24.6.11.1.pro-a2.sca-7b.cas-98.ea-4.fac-d)!", + result: { + word: "faceless", + correct: 24, + position: 6, + incorrect: 11, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 41, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZuQTLjFmZuMTYtQXZw5CMukjLy4CNx4SM40yczVGblNWYmhSI", + value: "!(faceless-81.14.2.9.0.pet-a3.fac-4.d)!", + result: { + word: "faceless", + correct: 14, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQWLjFmL4QTLsVnZuYWMtEGbw5yY00yYh1mLxITLlh2YuAjLwEjLy4COx4SM40yczVGblNWYmhSI", + value: "!(faceless-81.18.2.10.0.che-21.mac-4c.pla-1f.ful-48.ac-d)!", + result: { + word: "faceless", + correct: 18, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZtMWYuMTNy0SYsZmLjRTLs92cuMTLuVnYuITMx0CbhBnLyYTLtF2ZuAjLyEjLx4SMy4SM40yczVGblNWYmhSI", + value: "!(faceless-81.21.1.12.0.gam-62.pal-112.bun-3.sol-4c.fla-253.ac-d)!", + result: { + word: "faceless", + correct: 21, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKk1yYhZmL30CbhBnL4ADOt42bj5CMukjLz4CNx4SM40yczVGblNWYmhSI", + value: "!(faceless-81.14.3.9.0.con-808.pal-7.fac-d)!", + result: { + word: "faceless", + correct: 14, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQWLj5iM20CduMWLp5SN30CbuQzMtIWYm5CMucjLw4iNy4SM40yczVGblNWYmhSI", + value: "!(faceless-81.26.0.7.0.fab-34.l-75.i-c.t-62.c-d)!", + result: { + word: "faceless", + correct: 26, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "22.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/23-04-2025-diffle-diffleen-grywebowe-15-letters-in-2-words-large-green-circle-10" +] = [ + { + date: "23.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZyITLj5iN40SYlJnLw4CNuEjLwEjLzETMtwWavNWZyhSI", + value: "!(recoil-113.10.1.4.0.rea-86.c-22e)!", + result: { + word: "recoil", + correct: 10, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "23.04.2025", + }, + }, + { + date: "23.04.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUmMy4iNh1yYlJnLyYTLjlGcuEjMtUGaj5CMuATMuQjLzEjLzETMtwWavNWZyhSI", + value: "!(recoil-113.13.4.10.0.che-21.pic-62.rec-a6.22e)!", + result: { + word: "recoil", + correct: 13, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "23.04.2025", + }, + }, + { + date: "23.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlJjMuU2Ny0yYlJnLw4yNuAjLxEjLzETMtwWavNWZyhSI", + value: "!(recoil-113.11.0.7.0.rec-27e.22e)!", + result: { + word: "recoil", + correct: 11, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "23.04.2025", + }, + }, + { + date: "23.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZyITLj5COk1SbuITMx0idlJnL3ITLpVGauIzMtMXdh5CMuMTMuIjL2EjLzETMtwWavNWZyhSI", + value: "!(recoil-113.16.2.13.0.aus-32.hei-27.rev-112.m-d8.c-22e)!", + result: { + word: "recoil", + correct: 16, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "23.04.2025", + }, + }, + { + date: "23.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZyIjLllTMtMmLwQzMtMXZy5iM20SbhdmLw4iNuEjLyEjLzETMtwWavNWZyhSI", + value: "!(recoil-113.12.1.6.0.gam-62.res-340.c-19e.22e)!", + result: { + word: "recoil", + correct: 12, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 19, + date: "23.04.2025", + }, + }, + { + date: "23.04.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlJjMtMWZy5iM3ETL0hXZuAjL54SMukjLzETMtwWavNWZyhSI", + value: "!(recoil-113.9.1.9.0.ext-172.rec-22e)!", + result: { + word: "recoil", + correct: 9, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "23.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/23-05-2025-diffle-diffleen-grywebowe-25-letters-in-4-words-large-green-circle-11" +] = [ + { + date: "23.05.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZtMXZ35CMtMXZ65yYh1ib1NnLyEWLvJHcuAjLzEjLx4SMx4yM0ETL0NXZ3hSI", + value: "!(west-143.11.1.13.0.pro-a2.sun-ac.zes-0.wes-d)!", + result: { + word: "west", + correct: 11, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "23.05.2025", + }, + }, + { + date: "23.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKk1ycl5SNz0SZydnL1MWLlVXcuIzMx0yclJmLwETLs92cuAjLyEjLx4SNx4yM0ETL0NXZ3hSI", + value: "!(west-143.15.1.12.0.sol-10.bes-132.que-c5.wre-35.es-d)!", + result: { + word: "west", + correct: 15, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "23.05.2025", + }, + }, + { + date: "23.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKk1ycldnLyMTMtMXZi5iN40SYlJnLw4yNuEjL54yM0ETL0NXZ3hSI", + value: "!(west-143.9.1.7.0.rea-86.bes-132.wes-d)!", + result: { + word: "west", + correct: 9, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "23.05.2025", + }, + }, + { + date: "23.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQWLzV2duIzMx0yclJmLm1yclZmL3ITLzVGcuUmMtMXZ05yMz0CdzVmLxITLlh2YuAjLyEjLw4SMy4yM0ETL0NXZ3hSI", + value: + "!(west-143.21.0.12.0.che-21.est-33.tes-2e.pes-27.fes-f.bes-132.wes-d)!", + result: { + word: "west", + correct: 21, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 33, + date: "23.05.2025", + }, + }, + { + date: "23.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQWLzV2duAjMtMXZu5iMzETLzVmYucjMtMXZw5iY10Ca0VmLyYTLtF2ZuAjLwEjLw4iNx4yM0ETL0NXZ3hSI", + value: "!(west-143.16.0.10.0.gam-62.eth-5b.pes-27.bes-132.nes-20.wes-d)!", + result: { + word: "west", + correct: 16, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 26, + date: "23.05.2025", + }, + }, + { + date: "23.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKk1ycl5yMyETLy9mLzkTL0l2duAjLxEjLw4CMx4yM0ETL0NXZ3hSI", + value: "!(west-143.10.0.11.0.wit-93.or-123.es-d)!", + result: { + word: "west", + correct: 10, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "23.05.2025", + }, + }, + { + date: "23.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKk1ycldnLwATMtQXZw5yNx0Cd1JmLw4yNuIjL34yM0ETL0NXZ3hSI", + value: "!(west-143.7.2.7.0.but-17.pet-100.wes-d)!", + result: { + word: "west", + correct: 7, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 16, + date: "23.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/23-06-2025-diffle-diffleen-grywebowe-31-letters-in-4-words-large-green-circle-15" +] = [ + { + date: "23.06.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiY44SYz0Say5COtIXa05yMy0Cdv1mLw4SNx4SMuUTMuQzNx0SZilmc0hSI", + value: "!(tribe-174.15.1.15.0.mot-23.tir-8.ri-3a.8b)!", + result: { + word: "tribe", + correct: 15, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "23.06.2025", + }, + }, + { + date: "23.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiY44iMjRjL1ImMtkmc05iN40SYlJnLw4CMx4iMuUTMuQzNx0SZilmc0hSI", + value: "!(tribe-174.15.2.10.0.rea-86.tri-2b5.4c2.8b)!", + result: { + word: "tribe", + correct: 15, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "23.06.2025", + }, + }, + { + date: "23.06.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKihTLpJHduEjMtUGaj5CMuUjLx4yNuQzNx0SZilmc0hSI", + value: "!(tribe-174.7.1.5.0.che-21.tri-8b)!", + result: { + word: "tribe", + correct: 7, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "23.06.2025", + }, + }, + { + date: "23.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIGOuYmYtkmc05iM1ETLjVmcuQjMy0SblRmLx4iMx4CMuYTMuQzNx0SZilmc0hSI", + value: "!(tribe-174.16.0.12.1.dem-224.rec-152.tri-bf.8b)!", + result: { + word: "tribe", + correct: 16, + position: 0, + incorrect: 12, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 28, + date: "23.06.2025", + }, + }, + { + date: "23.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIGOtkmc05yMt4Wdi5COyITLpJHcuIWZtYWZy5iM20SbhdmLw4yMx4SMuITMuQzNx0SZilmc0hSI", + value: "!(tribe-174.12.1.13.0.gam-62.ref-eb.pri-228.bun-3.tri-8b)!", + result: { + word: "tribe", + correct: 12, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "23.06.2025", + }, + }, + { + date: "23.06.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKihTLpJHduITYt8mcw5CMuYjLy4COuQzNx0SZilmc0hSI", + value: "!(tribe-174.8.2.6.0.pro-a2.tri-8b)!", + result: { + word: "tribe", + correct: 8, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "23.06.2025", + }, + }, + { + date: "23.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiY44SNyMjLyMGNuQGNy0SayRnLyMTLzVXYuAjL54SMuAjMuQzNx0SZilmc0hSI", + value: "!(tribe-174.20.1.9.0.aus-32.tri-24d.4c2.325.8b)!", + result: { + word: "tribe", + correct: 20, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "23.06.2025", + }, + }, + { + date: "23.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKihTLpJHdugTOtA3bj5CMugjLx4SOuQzNx0SZilmc0hSI", + value: "!(tribe-174.9.1.8.0.cop-98.tri-8b)!", + result: { + word: "tribe", + correct: 9, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "23.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/26-04-2025-diffle-diffleen-grywebowe-20-letters-in-3-words-large-green-circle-13" +] = [ + { + date: "26.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4UTMucTOt42bt5iN40SYlJnLw4iNuEjLzEjL2ETMtkXZr52bthSI", + value: "!(monkey-116.13.1.6.0.rea-86.mon-97.158)!", + result: { + word: "monkey", + correct: 13, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "26.04.2025", + }, + }, + { + date: "26.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgTNx0ibv1mLlJTLj9mcuQGM20ycpRmLw4COuAjLxEjL2ETMtkXZr52bthSI", + value: "!(monkey-116.11.0.8.0.dis-60d.roc-2e.mon-158)!", + result: { + word: "monkey", + correct: 11, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "26.04.2025", + }, + }, + { + date: "26.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4UTMucTOt42buMmMtQXdt5iM20SbhdmLw4SNuAjL1EjL2ETMtkXZr52bthSI", + value: "!(monkey-116.15.0.5.0.gam-62.mut-2c.on-97.158)!", + result: { + word: "monkey", + correct: 15, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "26.04.2025", + }, + }, + { + date: "26.04.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgTNx0ibucTL39WbuEWL2VmbuEjMtUGaj5CMuETMuEjLyEjL2ETMtkXZr52bthSI", + value: "!(monkey-116.12.1.11.0.che-21.nev-a.mow-7.n-158)!", + result: { + word: "monkey", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "26.04.2025", + }, + }, + { + date: "26.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4UTMucTOt42buIWNx0icl1mLh1SdlZmLw4SOuEjL1EjL2ETMtkXZr52bthSI", + value: "!(monkey-116.15.1.9.0.feu-a.mer-15b.on-97.158)!", + result: { + word: "monkey", + correct: 15, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "26.04.2025", + }, + }, + { + date: "26.04.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4UTMt42bt5CZ00ibvJmLy0ievRmLhVGOt8mcw5CMuETMuEjLzEjL2ETMtkXZr52bthSI", + value: "!(monkey-116.13.1.11.0.pro-8ea.doz-2.bon-4d.mon-158)!", + result: { + word: "monkey", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "26.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/27-03-2025-diffle-diffleen-grywebowe-43-letters-in-7-words-large-green-circle-28" +] = [ + { + date: "27.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM50yYulmLwYWLoNmMuYWLjVHbuUDNx0yYlRmL0UTLuV2YuATOt4WZn5iN40SYlJnLw4CMx4SNugjMuYDOtUmdpRnblNmbphSI", + value: + "!(incentive-86.28.5.10.0.rea-86.gen-90.cen-54.dec-145.luc-f.2ch-f0.inc-93)!", + result: { + word: "incentive", + correct: 28, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 43, + date: "27.03.2025", + }, + }, + { + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMTOtMmbp5CZkdTLoN2MuQGNt82b35yY10Cb1JmLyEWLuV2YuIWNtgGdl5iM20SbhdmLw4iNx4iMukTMuYDOtUmdpRnblNmbphSI", + value: + "!(incentive-86.19.2.16.0.gam-62.eth-5b.cen-a2.bul-5c.woo-4d.3ch-7dd.inc-93)!", + result: { + word: "incentive", + correct: 19, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 37, + }, + }, + { + date: "27.03.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM50yYulmLjljMtUGaj5yYy0yclZmL0ITLlhXZukzMtQXZk5iMh1ybyBnLx4iNx4yMuMzMuYDOtUmdpRnblNmbphSI", + value: + "!(incentive-86.33.3.16.1.pro-a2.det-39.exe-24.fes-2c.che-29c.inc-93)!", + result: { + word: "incentive", + correct: 33, + position: 3, + incorrect: 16, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 52, + date: "27.03.2025", + }, + }, + { + date: "27.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzkTLj5WauIGMx0CduVmL3UTLulmZuETZt4WZy5CM00SdhhmLw4yMx4yMuQjMuYDOtUmdpRnblNmbphSI", + value: "!(incentive-86.24.3.13.0.hau-40.ren-e1.fin-57.ent-10b.inc-93)!", + result: { + word: "incentive", + correct: 24, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "27.03.2025", + }, + }, + { + date: "27.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMTOtMmLlNWL05WauImMt4Wai5SNz0Saw9mLh1SdlZmLw4yMx4SMuUjMuYDOtUmdpRnblNmbphSI", + value: "!(incentive-86.25.1.13.0.feu-a.opi-35.bin-2b.int-ce.c-93)!", + result: { + word: "incentive", + correct: 25, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "27.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/30-01-2025-diffle-diffleen-grywebowe-36-letters-in-6-words-19-2-15-0" +] = [ + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZ34SO34CN54SNtw2buImMx0ybsZmLzITL09WbuAjL1EjLy4SOx4CMz0Sesx2bmhSI", + value: "!(folly-30.19.2.15.0.mot-23.flo-12b.ol-5.94.79.7f)!", + result: { + word: "folly", + correct: 19, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + }, + }, + { + date: "30.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmdTLs9mZuYGNtw2bi5yMx0CbvxmL00CbvpmLyMTLu9GZuQTMtEWZ35iYzYTLpJHduAjL4EjLw4CMy4CMz0Sesx2bmhSI", + value: + "!(folly-30.20.0.18.0.tri-63b.wea-14.don-32.jol-4.lol-13.bol-4f.fol-7f)!", + result: { + word: "folly", + correct: 20, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 38, + date: "30.01.2025", + }, + }, + { + date: "30.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmdTLs9mZuAjN10CajNjLykTLvxGcuEjMtUGaj5CMuITMuEjL44CMz0Sesx2bmhSI", + value: "!(folly-30.8.1.12.0.che-21.plo-92.3ch-560.fol-7f)!", + result: { + word: "folly", + correct: 8, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "30.01.2025", + }, + }, + { + date: "30.01.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZ30CbvZmLldTLs9GcuQTNt8Gbi5CMz0Cdv5mLyYTLtF2ZuAjLzEjLx4CMx4CMz0Sesx2bmhSI", + value: "!(folly-30.10.1.13.0.gam-62.not-30.blo-54.pol-7e.fol-7f)!", + result: { + word: "folly", + correct: 10, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "30.01.2025", + }, + }, + { + date: "30.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmdTLs9mZugTLs9mYuU2Ntw2bw5CZ40ybsdmLyMTLzVXYuAjL0EjLx4yMx4CMz0Sesx2bmhSI", + value: "!(folly-30.13.1.14.0.aus-32.glo-8d.pol-7e.bol-8.fol-7f)!", + result: { + word: "folly", + correct: 13, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "30.01.2025", + }, + }, + { + date: "30.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpY2Ntw2bm5iMtE2bs5COlVTLoN2MuUWNt8mci5CMuITMuEjL44CMz0Sesx2bmhSI", + value: "!(folly-30.8.1.12.0.bro-5e.3ch-5e8.loa-2.fol-7f)!", + result: { + word: "folly", + correct: 8, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "30.01.2025", + }, + }, + { + date: "30.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmdjLkRTLs9mL3cTMt8Gbm5iMwMTLu92YuAjL0EjLx4iMx4CMz0Sesx2bmhSI", + value: "!(folly-30.12.1.14.0.con-302.flo-177.ol-4d.7f)!", + result: { + word: "folly", + correct: 12, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "30.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/a-gdzie-angielskie-02-06-2025-diffle-diffleen-grywebowe-33-letters-in-7-words-la" +] = [ + { + date: "02.06.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIWLw5iZy0iduIjMtUWZuUTMtc3bs5iN4QjLlFmNtg2Yz4SMy0SZoNmLw4CNx4CMukTMuMTNx0iclBXZshSI", + value: "!(leper-153.19.0.14.0.che-21.3ch-6ae.486.low-15.ee-22.v-2f.p-b)!", + result: { + word: "leper", + correct: 19, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 33, + date: "02.06.2025", + }, + }, + { + date: "02.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIWLwVGbuYTLwl3YuQmMx0ycvBnLyYTLtF2ZuAjL54CMuMTMuMTNx0iclBXZshSI", + value: "!(leper-153.13.0.9.0.gam-62.pos-12d.cyp-6.lep-b)!", + result: { + word: "leper", + correct: 13, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "02.06.2025", + }, + }, + { + date: "02.06.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYtAXZs5CNz0SZsNnLyEWLvJHcuAjL54iMuITMuMTNx0iclBXZshSI", + value: "!(leper-153.12.2.9.0.pro-a2.sle-34.lep-b)!", + result: { + word: "leper", + correct: 12, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "02.06.2025", + }, + }, + { + date: "02.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYtAXZs5iZy0SZlBnL0YjMtIXZ25yYx0iclpmLyATMtIXZi5SY00icldmLy0iZl5mLw4yNx4iMugTMuMTNx0iclBXZshSI", + value: + "!(leper-153.18.2.17.0.nef-2.ger-4a.ber-102.jer-1c.ver-264.pee-2f.lep-b)!", + result: { + word: "leper", + correct: 18, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 37, + date: "02.06.2025", + }, + }, + { + date: "02.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYtAnLmJTL25yYy0Cdl5SNx0ydvxmLh1SdlZmLw4iMx4SMucTMuMTNx0iclBXZshSI", + value: "!(leper-153.17.1.12.0.feu-a.low-15.et-2c.v-2f.p-b)!", + result: { + word: "leper", + correct: 17, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "02.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/a-to-zbyt-proste-by-bylo-latwe-02-05-2025-diffle-diffleen-grywebowe-36-letters-i" +] = [ + { + date: "02.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMDOtwWY05yNxcTLoN2MuITL0FmbuMmNtwmLhdTLi5iM10ichRnLxIWL1F2YuAjL2EjLx4SOx4iMyETLsxWY0hSI", + value: + "!(tall-122.19.1.16.0.cau-b1.tar-52.b-7a.l-6c.nat-2.3ch-717.tal-83)!", + result: { + word: "tall", + correct: 19, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 36, + date: "02.05.2025", + }, + }, + { + date: "02.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM44CO54yMk5yY20CbhRnL2gTLhVmcuAjLyEjLx4SNx4iMyETLsxWY0hSI", + value: "!(tall-122.15.1.12.0.rea-86.tal-6c.d3.98.83)!", + result: { + word: "tall", + correct: 15, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "02.05.2025", + }, + }, + { + date: "02.05.2025", + nick: "Romanzholandii", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM40CbhRnLlNTLsF2dukTYtwWYo5CMm1CbhJmL5QTLtF2ZuYTMtMWdm5SO2ETLwVGZuEjLwIjLw4CNx4iMyETLsxWY0hSI", + value: + "!(tall-122.14.0.20.1.dep-169.fuc-16.gam-49.bal-f0.hal-a9.wal-3e.tal-83)!", + result: { + word: "tall", + correct: 14, + position: 0, + incorrect: 20, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 34, + date: "02.05.2025", + }, + }, + { + date: "02.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM40CbuITYt0WY05SMy0SZoNmLw4SOuEjL34iMyETLsxWY0hSI", + value: "!(tall-122.7.1.9.0.che-21.tam-a2.l-83)!", + result: { + word: "tall", + correct: 7, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "02.05.2025", + }, + }, + { + date: "02.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM40CbhRnLx0CdhZmL0UTMtwWYz5SO40ibhRmLyYTLtF2ZuAjLwEjLx4SMx4iMyETLsxWY0hSI", + value: "!(tall-122.11.1.10.0.gam-62.dan-89.sal-154.fat-1.tal-83)!", + result: { + word: "tall", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 22, + date: "02.05.2025", + }, + }, + { + date: "02.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMDOuMmNtwWY05iYxcTLoN2MuATLhRXduEGOtEGdz5iM3ETL0hXZuAjL4EjLw4SNx4iMyETLsxWY0hSI", + value: "!(tall-122.15.0.18.0.ext-172.sta-8a.uta-0.3ch-71b.tal-6c.83)!", + result: { + word: "tall", + correct: 15, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "02.05.2025", + }, + }, + { + date: "02.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMDOtwWY05CZxITLsF2YuYDZtwWYn5CMm1CbhJmLlNTLsF2dukTLs9GcuEWL1VmZuAjL0EjLx4SOx4iMyETLsxWY0hSI", + value: + "!(tall-122.19.1.14.0.feu-a.pol-9.wal-3e.bal-f0.gal-d6.cal-21d.tal-83)!", + result: { + word: "tall", + correct: 19, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 34, + date: "02.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/albo-ja-glupieje-albo-poziom-trudnosci-rosnie-wlasciwie-przypadkiem-zgadlem-dlug" +] = [ + { + date: "25.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiN24SZzETLmVGZuYTLjVmduYDOtEWZy5CMuYjLx4SNy4CN40icvR3YlZWZkhSI", + value: "!(defector-84.25.1.6.0.rea-86.vec-6.def-13e.66)!", + result: { + word: "defector", + correct: 25, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "25.03.2025", + }, + }, + { + date: "25.03.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2YTLm5yYz0CdlRmLhJWLjV2cuYTLjVmduITYt8mcw5CMukjLz4yNy4CN40icvR3YlZWZkhSI", + value: "!(defector-84.27.3.9.0.pro-a2.vec-6.sec-ba.det-3c.f-66)!", + result: { + word: "defector", + correct: 27, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "25.03.2025", + }, + }, + { + date: "25.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYjNtYmLjNTL0VGZukTNtMWZs5iYj1SZwNnLxITLlh2YuAjLxEjL04SNy4CN40icvR3YlZWZkhSI", + value: "!(defector-84.25.4.11.0.che-21.spe-cb.lec-59.det-3c.f-66)!", + result: { + word: "defector", + correct: 25, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "25.03.2025", + }, + }, + { + date: "25.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYjNtYWZk5SOx0iZmVmLxYTMtIXZw5CMucjLy4SOx4CN40icvR3YlZWZkhSI", + value: "!(defector-84.19.2.7.0.per-161.eff-19.def-66)!", + result: { + word: "defector", + correct: 19, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "25.03.2025", + }, + }, + { + date: "25.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2YTLmVGZuYWO00yYlJnLlNTLjVGauYTLjVmduUGNtMWZs5SMy0SZvBnLyMTLzVXYuAjLxEjLy4iMz4CN40icvR3YlZWZkhSI", + value: + "!(defector-84.32.2.11.0.aus-32.poe-21.lec-4e.vec-6.hec-3e.rec-49f.def-66)!", + result: { + word: "defector", + correct: 32, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "25.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-mnie-przeczolgalo-10-05-2025-diffle-diffleen-grywebowe-39-letters-in-7-words" +] = [ + { + date: "10.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMihTLlZ3buUTMtc3bw5iNldjLmdjMuMGZx0CajNjLxEWLvJHcuYDOtEWZy5CMuQTMuIjLzIjLwMTMtIXZ39GcyVmdvhSI", + value: + "!(overpower-130.23.2.14.0.rea-86.pro-a1.3ch-1dc.27f.7e6.pow-15.ove-8b3)!", + result: { + word: "overpower", + correct: 23, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "10.05.2025", + }, + }, + { + date: "10.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzIGOtUmdv5iN10Cb1BnL2ITLv12cuEjMtUGaj5CMuMTMuEjL3EjLwMTMtIXZ39GcyVmdvhSI", + value: "!(overpower-130.17.1.13.0.che-21.smo-26.pul-56.ove-8b3)!", + result: { + word: "overpower", + correct: 17, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "10.05.2025", + }, + }, + { + date: "10.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMjY40SZ29mLkVWMtAXZy5SZ1MTLw5WduUTMtcnLk1yav5iNj1CdlBnL5EWMt0WZk5CMuMTMuMjL1MjLwMTMtIXZ39GcyVmdvhSI", + value: + "!(overpower-130.35.3.13.0.dem-1a9.pet-c6.ok-d.w-15.unp-35e.rep-1ed.ove-8b3)!", + result: { + word: "overpower", + correct: 35, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 51, + date: "10.05.2025", + }, + }, + { + date: "10.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMihTLlZ3buMGO14iYxgjLmZjMtg2Yz4yN3ETLvh2YuATLr9mauYjZtg2Yz4iYy0ibvdmL50CZv1mLi1CclxmLmJTLlVGcuIzMtMXdh5CMukTMuIjL0MjLwMTMtIXZ39GcyVmdvhSI", + value: + "!(overpower-130.34.2.19.0.aus-32.pee-2f.lep-b.mod-9.gon-2b.3ch-f6.jok-0.cho-177.3ch-26f.81b.58c.ove-8b3)!", + result: { + word: "overpower", + correct: 34, + position: 2, + incorrect: 19, + knownIncorrect: 0, + totalWords: 12, + totalLetters: 55, + date: "10.05.2025", + }, + }, + { + date: "10.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMihTLlZ3buQTNtI3bw5SOj1icvdnLmJTLlVGcuIjMtUWZs5CNx0SZ29mLwMzMtI3bm5yMz0idlNnL30SZlZnL2MTMtUmcn5CMuMTMuUjL5MjLwMTMtIXZ39GcyVmdvhSI", + value: + "!(overpower-130.39.5.13.0.gre-136.vee-7.sev-33.for-330.ove-14.lee-22.pee-2f.wor-c9.por-54.ove-8b3)!", + result: { + word: "overpower", + correct: 39, + position: 5, + incorrect: 13, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 57, + date: "10.05.2025", + }, + }, + { + date: "10.05.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzIGOtUmdv5SNx0ydvBnLkNTMt8Gcz5iMh1ybyBnLw4COuIjLwIjLwMTMtIXZ39GcyVmdvhSI", + value: "!(overpower-130.20.2.8.0.pro-a2.spo-13d.pow-15.ove-8b3)!", + result: { + word: "overpower", + correct: 20, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "10.05.2025", + }, + }, + { + date: "10.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMjY40SZ29mLlZmNtg2Yz4CMx0CcvRmL4MTLjlGcuEWMt42bs5CNx0SZ29mLyUTLv9mZuIjNt0WYn5CMuQTMuAjL3IjLwMTMtIXZ39GcyVmdvhSI", + value: + "!(overpower-130.27.0.14.0.gam-62.foo-52.ove-14.lon-1a.pic-38.dop-10.3ch-6fe.ove-8b3)!", + result: { + word: "overpower", + correct: 27, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 41, + date: "10.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-mnie-przeczolgalo-a-niby-nietrudne-tylko-ciagi-liter-mi-sie-nie-chcialy-uloz" +] = [ + { + date: "15.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK54yNtgXZ05CMxMjLkFWNuQmZx0CajNjLlJWMtwWZt5SYx0CdltmL2gTLhVmcuAjLzEjLx4CNy4CN30yav9mY0hXZ0hSI", + value: + "!(textbook-74.24.1.13.0.rea-86.ket-1a.mel-1be.3ch-1fd.5ad.310.tex-7.9)!", + result: { + word: "textbook", + correct: 24, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 38, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK50CelRnLxMTLv9mYuIDZ00CajNjLy0Cd5JmLmR2Mtg2Yz4iYtMWd05CZ30ydl5mLmFTLhVGbuAjL2EjLz4SMy4CN30yav9mY0hXZ0hSI", + value: + "!(textbook-74.21.3.16.0.lea-1f.new-7d.tuc-b.3ch-3df.byt-2.3ch-4d2.boo-31.tex-9)!", + result: { + word: "textbook", + correct: 21, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 40, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOtgXZ05SMz0ybvJmL0YWLoN2MuETLr92duEjNtwWZ25SNzETLuVGZucjMtMXZw5iY10Ca0VmLyYTLtF2ZuAjL2EjLy4SNy4CN30yav9mY0hXZ0hSI", + value: + "!(textbook-74.25.2.16.0.gam-62.eth-5b.pes-27.den-135.vel-61.wok-1.3ch-f4.boo-31.tex-9)!", + result: { + word: "textbook", + correct: 25, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 43, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK50Cel5iN30SZoRnL2EWLiVGZuQ2MtUWdn5SO20CdlJmLyEWLvJHcuAjL0EjL04CMy4CN30yav9mY0hXZ0hSI", + value: "!(textbook-74.20.4.14.0.pro-a2.bet-69.gue-3d.deb-a6.the-76.ex-9)!", + result: { + word: "textbook", + correct: 20, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "15.03.2025", + }, + }, + { + date: "15.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOucTL4VGduQWZtAHel5CMuYjLw4iNx4CN30yav9mY0hXZ0hSI", + value: "!(textbook-74.16.0.6.0.exp-ed.tex-7.9)!", + result: { + word: "textbook", + correct: 16, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "15.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-mnie-zirytowalo-angry-10-03-2025-diffle-diffleen-grywebowe-35-letters-in-5-w" +] = [ + { + date: "10.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgDM10SYo5iYlFTLhxmLhdTLhJnLxkTMtQXYj5iN40SYlJnLw4yNuMjL1IjL5YTLyVGd0FGajhSI", + value: "!(chatter-69.25.3.7.0.rea-86.cat-191.ra-7a.la-1eb.ha-508)!", + result: { + word: "chatter", + correct: 25, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgDM10SYo5iY0ETLzF2YugjNtQXYw5SMx0CdsFmLjBTMt4WYi5iM20SbhdmLw4COuAjL2IjL5YTLyVGd0FGajhSI", + value: + "!(chatter-69.26.0.8.0.gam-62.ban-10c.alt-11.pat-68.cas-14b.ha-508)!", + result: { + word: "chatter", + correct: 26, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOwUTLhh2YuIjNtQXYo5yYjFTLhxmZuETN20CdulmLw4COuIjLxIjL5YTLyVGd0FGajhSI", + value: "!(chatter-69.21.2.8.0.int-651.fla-1cc.hat-62.cha-508)!", + result: { + word: "chatter", + correct: 21, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOwUTLh5SMy0SZoNmLw4yMuEjLxEjL5YTLyVGd0FGajhSI", + value: "!(chatter-69.11.1.3.0.che-21.a-508)!", + result: { + word: "chatter", + correct: 11, + position: 1, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOwUTLhhmLzQWMtEmcj5iMh1ybyBnLw4iNuQjLzEjL5YTLyVGd0FGajhSI", + value: "!(chatter-69.13.4.6.0.pro-a2.cra-1d3.ha-508)!", + result: { + word: "chatter", + correct: 13, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgDM14iN2QTLhhmLjZjMt4WYj5SZz0CdhdnL1ITLwFGduQDNtUmYh5SYtUXZm5CMuITMuMjL4IjL5YTLyVGd0FGajhSI", + value: + "!(chatter-69.28.3.12.0.feu-a.abe-44.tap-25.wat-3e.can-26c.ha-466.508)!", + result: { + word: "chatter", + correct: 28, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 43, + date: "10.03.2025", + }, + }, + { + date: "10.03.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOwUTLhhmL0EmMtQXYj5iYh1SZwNnLw4iNuIjL2EjL5YTLyVGd0FGajhSI", + value: "!(chatter-69.16.2.6.0.spe-ab.cat-2a4.ha-508)!", + result: { + word: "chatter", + correct: 16, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "10.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-slowa-dzisiaj-albo-cos-ze-mna-nie-tak-15-01-2025-diffle-diffleen-grywebowe-2" +] = [ + { + date: "15.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMuETL0lXbuATM20CajNjLmZTLjFGduYDOtEWZy5CMugjLz4yNx4SNx0CbhNWaoRXethSI", + value: "!(mythical-15.17.3.8.0.rea-86.tac-6f.3ch-610.myt-1.3)!", + result: { + word: "mythical", + correct: 17, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "15.01.2025", + }, + }, + { + date: "15.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMTL0lXbugzMx0Say5iN40CcvNmLzgTLzF2duAjL3EjL04yNx4SNx0CbhNWaoRXethSI", + value: "!(mythical-15.17.4.17.0.was-83.cop-86.ri-138.myt-3)!", + result: { + word: "mythical", + correct: 17, + position: 4, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 38, + date: "15.01.2025", + }, + }, + { + date: "15.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMTL0lXbuI2Yy0SYsBnLyITLphGduEjMtUGaj5CMuYjL14yNx4SNx0CbhNWaoRXethSI", + value: "!(mythical-15.17.5.6.0.che-21.thi-22.pla-2cb.myt-3)!", + result: { + word: "mythical", + correct: 17, + position: 5, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "15.01.2025", + }, + }, + { + date: "15.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMTL0lXbuEzMtQWa05iYtEGdp5SY00CbhRnL5UTLlxWYuQzMtIWYm5CMukjL14CMy4SNx0CbhNWaoRXethSI", + value: "!(mythical-15.20.5.9.0.fab-34.ale-59.tal-4a.ita-b.tid-31.myt-3)!", + result: { + word: "mythical", + correct: 20, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "15.01.2025", + }, + }, + { + date: "15.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKz0Cd55SZjJTLyFWbuMzYt4WZk5CMukjLx4iNx4SNx0CbhNWaoRXethSI", + value: "!(mythical-15.16.1.9.0.den-c3.mar-2ce.yt-3)!", + result: { + word: "mythical", + correct: 16, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "15.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-wylew-11-03-2025-diffle-diffleen-grywebowe-31-letters-in-4-words-large-green" +] = [ + { + date: "11.03.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0kTLu5WYuATLlNmL10SYy9mLyEWLvJHcuEjL34yNucTMuAzNtIXZj5Wdv5mbhhSI", + value: "!(announcer-70.17.7.7.1.pro-a2.ora-5.ce-0.ann-94)!", + result: { + word: "announcer", + correct: 17, + position: 7, + incorrect: 7, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 31, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCN50ibuFmL2ETLuFGZuATLlN2bukTMx0CajNjL2gTLhVmcuAjL04iNuIjMuAzNtIXZj5Wdv5mbhhSI", + value: "!(announcer-70.22.6.4.0.rea-86.3ch-119.oce-0.dan-16.ann-94)!", + result: { + word: "announcer", + correct: 22, + position: 6, + incorrect: 4, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTOuYGOt4mbh5CMt4Wdv5SZwkTLu92YuAjL04yMuUjMuAzNtIXZj5Wdv5mbhhSI", + value: "!(announcer-70.25.3.4.0.con-90e.oun-0.ann-8f.94)!", + result: { + word: "announcer", + correct: 25, + position: 3, + incorrect: 4, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTOuYTOt4mbh5iMx0ibhRmLxITLlh2YuAjL24iMuMjMuAzNtIXZj5Wdv5mbhhSI", + value: "!(announcer-70.23.2.6.0.che-21.dan-12.ann-96.94)!", + result: { + word: "announcer", + correct: 23, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0kTLu5WYuIWMtU3bu5CZ3YjL5ADOuETO14SN0cTLoN2MuEWMtw2bm5SM40ibhNmLjBTMt4WYi5iM20SbhdmLw4iNx4SMuAzMuAzNtIXZj5Wdv5mbhhSI", + value: + "!(announcer-70.30.1.16.0.gam-62.ban-10c.can-81.fol-1a.3ch-745.591.809.67d.nou-1b.ann-94)!", + result: { + word: "announcer", + correct: 30, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 47, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTOt4mbuQTNt82YuYWMtoGZuADOtcmch5CNz0iYhZmLw4CMx4yMuYjMuAzNtIXZj5Wdv5mbhhSI", + value: "!(announcer-70.26.3.10.0.fab-34.arg-80.dj-1f.co-54.nn-94)!", + result: { + word: "announcer", + correct: 26, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "11.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/alez-mnie-wymeczylo-08-06-2025-diffle-diffleen-grywebowe-51-letters-in-8-words-l" +] = [ + { + date: "08.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKy0icrVnLxAjMtEWdx5SNtkmcm5yNxETLoN2MuQ2Nx0SYyJmLwMjLz0SahJnLxITMtQXZt5CMukTMuMjL5IjL5UTMt4WYp5WahJ3a1hSI", + value: + "!(ukrainian-159.29.3.19.0.met-121.rai-3.30.bra-17d.3ch-117.fri-5.qua-201.ukr-2)!", + result: { + word: "ukrainian", + correct: 29, + position: 3, + incorrect: 19, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 51, + date: "08.06.2025", + }, + }, + { + date: "08.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMtI3a15SOmdTLoN2MuYGNy0Sa1FnL5gjMuEjZ04yYwYTLoN2MuEmMtwWdk5CZ3ETLhJnYuYDOtEWZy5CMucTMuAjL2IjL5UTMt4WYp5WahJ3a1hSI", + value: + "!(ukrainian-159.26.0.17.0.rea-86.bra-17d.dul-2a.3ch-60c.4f1.289.qui-24f.3ch-7f9.ukr-2)!", + result: { + word: "ukrainian", + correct: 26, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 43, + date: "08.06.2025", + }, + }, + { + date: "08.06.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKy0icr5iMy0SYyVnL3kTLhV3ZuITYt8mcw5CMuATMuEjL0IjL5UTMt4WYp5WahJ3a1hSI", + value: "!(ukrainian-159.24.1.10.0.pro-a2.gua-97.ura-22.kr-2)!", + result: { + word: "ukrainian", + correct: 24, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "08.06.2025", + }, + }, + { + date: "08.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKy0icrVnLzkTMtEmci5yNk1SYydmL3EDNtMWZy5CMuETMuAjL2IjL5UTMt4WYp5WahJ3a1hSI", + value: "!(ukrainian-159.26.0.11.0.rec-417.gra-d7.bra-193.ukr-2)!", + result: { + word: "ukrainian", + correct: 26, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "08.06.2025", + }, + }, + { + date: "08.06.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITLytWduYjZz0CajNjLw0Sa1JnL20SahZnLjhTLuFmcuYzYz0CajNjL2EWLyVnZuI2MtkWYy5CZtI3bs5SMx0ydhBnLyMWLzFmYuEjMtUGaj5CMugTMuIjL3MjL5UTMt4WYp5WahJ3a1hSI", + value: + "!(ukrainian-159.37.2.18.0.che-21.bas-c2.paw-11.lor-d.rai-3b.fur-a6.3ch-3c6.ran-8c.vai-6.rui-0.3ch-3f6.ukr-2)!", + result: { + word: "ukrainian", + correct: 37, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 12, + totalLetters: 57, + date: "08.06.2025", + }, + }, + { + date: "08.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITLytWduIGNtwWdi5SMt82Yp5SY20ic0NnL0MTLuFmcuIjNt0WYn5CMuATMuEjLxIjL5UTMt4WYp5WahJ3a1hSI", + value: + "!(ukrainian-159.21.1.10.0.gam-62.ran-34.str-6a.ico-1.bul-4b.ukr-2)!", + result: { + word: "ukrainian", + correct: 21, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "08.06.2025", + }, + }, + { + date: "08.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMtI3auIjMtEmc15CZ3ETLoNmMugTLjJXduMjY30CajNjLhdTMtg2Yy4SYtImb15SYtUXZm5CMuITMuAjLxMjL5UTMt4WYp5WahJ3a1hSI", + value: + "!(ukrainian-159.31.0.12.0.feu-a.unb-a.2ch-17a.3ch-7b3.urc-8.2ch-17d.ura-22.kr-2)!", + result: { + word: "ukrainian", + correct: 31, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 43, + date: "08.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/alez-wkurzajace-dwa-razy-myslalem-ze-juz-a-tu-nic-z-tego-19-01-2025-diffle-diffl" +] = [ + { + date: "19.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjVjL5UTLjVGbukTOtwWdj5iYtMWd05SOxMTLzVmcuAjLxEjLz4CNy4SOx0iclJXd0NWZshSI", + value: "!(lecturer-19.24.3.11.0.res-319.tuc-b.cul-99.lec-59.5c)!", + result: { + word: "lecturer", + correct: 24, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "19.01.2025", + }, + }, + { + date: "19.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyY14iNx0yYuMmMtQXZs5CZ00SdyRnLyITLlVmLmVTLv9mL5MTL0FmL2QTLjVHbuETNtwWdm5CNwQTLk5WduEjL2EjL04SOz4SOx0iclJXd0NWZshSI", + value: + "!(lecturer-19.39.4.16.1.und-404.ful-51.luc-46.at-39.oo-5f.ee-22.tru-4d.let-2c.c-16.5c)!", + result: { + word: "lecturer", + correct: 39, + position: 4, + incorrect: 16, + knownIncorrect: 1, + totalWords: 10, + totalLetters: 59, + date: "19.01.2025", + }, + }, + { + date: "19.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyY10yYlxmLzcTLyVHduYmNtQXdj5iNy0ydvBnLxITLlh2YuAjLxEjLy4SOx4SOx0iclJXd0NWZshSI", + value: "!(lecturer-19.19.2.11.0.che-21.pow-26.cut-6f.tur-73.lec-5c)!", + result: { + word: "lecturer", + correct: 19, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "19.01.2025", + }, + }, + { + date: "19.01.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjVTLjVGbuUGNtQXdj5yNtQXai5yNyETL1R3cuIjMt4Wd05CMx0CdvZnLyYTLtF2ZuAjLyEjLz4iNy4SOx0iclJXd0NWZshSI", + value: + "!(lecturer-19.26.3.12.0.gam-62.vot-10.tun-22.stu-127.bit-7.cut-4e.lec-5c)!", + result: { + word: "lecturer", + correct: 26, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "19.01.2025", + }, + }, + { + date: "19.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjVTLjVGbuMjYtUGbm5yMm1iclRnLyETLwVGZuAjLwEjLy4COx4SOx0iclJXd0NWZshSI", + value: "!(lecturer-19.18.2.10.0.dep-12.ter-f3.fle-b3.lec-5c)!", + result: { + word: "lecturer", + correct: 18, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "19.01.2025", + }, + }, + { + date: "19.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjVjL4UTLjVGbuATLsV2duEGOt42bt5CMukjLx4yNx4SOx0iclJXd0NWZshSI", + value: "!(lecturer-19.17.1.9.0.mon-8a.wel-0.lec-58.5c)!", + result: { + word: "lecturer", + correct: 17, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "19.01.2025", + }, + }, + { + date: "19.01.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjVTLjVGbuQjZtMWZz5SN1QTLjVmcuUjZtEmc05SZ30iblNmLzITL09WbuAjLxEjL24SMz4SOx0iclJXd0NWZshSI", + value: + "!(lecturer-19.31.6.11.0.mot-23.cen-7e.tra-f5.rec-455.sec-f4.lec-5c)!", + result: { + word: "lecturer", + correct: 31, + position: 6, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 48, + date: "19.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/angielskie-rownie-banalne-jak-polskie-19-05-2025-diffle-diffleen-grywebowe-30-le" +] = [ + { + date: "19.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyATMukDOuMmYucDZtwWaz5SZtAXYi5CMuETMuEjL4EjL5MTMtIXZ2xWazhSI", + value: "!(silver-139.18.1.11.0.bap-e.sil-d7.bc.89.102)!", + result: { + word: "silver", + correct: 18, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "19.05.2025", + }, + }, + { + date: "19.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyATMtwmL10yauQTLw5SMtgnL3ETLl5SZtoXaz5SYxETLzVGZuYDOtEWZy5CMuETMuQjLwMjL5MTMtIXZ2xWazhSI", + value: + "!(silver-139.30.4.11.0.rea-86.des-11a.siz-e.e-17.x-1.p-4.k-5.l-102)!", + result: { + word: "silver", + correct: 30, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 45, + date: "19.05.2025", + }, + }, + { + date: "19.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyATMukjYukDOtwWaz5SY4ITLzlWbuITLylmZuEjMtUGaj5CMuETMuMjLwIjL5MTMtIXZ2xWazhSI", + value: "!(silver-139.20.3.11.0.che-21.fir-2.mis-28a.sil-89.b9.102)!", + result: { + word: "silver", + correct: 20, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "19.05.2025", + }, + }, + { + date: "19.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMwETLsl2cuYjY24CO4ITLoN2MuUTMtwWa05yN40CbpBnL0ITLj9GZuIjNt0WYn5CMuUTMuAjL5EjL5MTMtIXZ2xWazhSI", + value: + "!(silver-139.19.0.15.0.gam-62.doc-24.pil-87.til-15.3ch-288.6b6.sil-102)!", + result: { + word: "silver", + correct: 19, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 34, + date: "19.05.2025", + }, + }, + { + date: "19.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyATMuEWMtwWauYjMtkGbz5CNz0iYhZmLw4SOuIjL0EjL5MTMtIXZ2xWazhSI", + value: "!(silver-139.14.2.9.0.fab-34.sli-26.il-1a.102)!", + result: { + word: "silver", + correct: 14, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "19.05.2025", + }, + }, + { + date: "19.05.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyATMtwWauEzMtkGbz5iMh1ybyBnLw4COuMjLyEjL5MTMtIXZ2xWazhSI", + value: "!(silver-139.12.3.8.0.pro-a2.sli-31.il-102)!", + result: { + word: "silver", + correct: 12, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "19.05.2025", + }, + }, + { + date: "19.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIDMx0CbuQTLyl2cuATZy0yYlRmLw4SOuMjLxEjL5MTMtIXZ2xWazhSI", + value: "!(silver-139.11.3.9.0.dec-2e0.sir-4.l-102)!", + result: { + word: "silver", + correct: 11, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "19.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/az-musialem-sprawdzic-jak-sie-to-pisze-07-03-2025-diffle-diffleen-grywebowe-41-l" +] = [ + { + date: "07.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZ00iYuM2MtAnLxYTLp1WYuU2Mtg2Yz4SOz0SakFmL2gTLhVmcuAjL54SMuEzMuYjNtMXdvV3ZpJWbhhSI", + value: "!(ambiguous-66.31.1.9.0.rea-86.adi-39.3ch-3e.ami-61.p-3c.b-4e)!", + result: { + word: "ambiguous", + correct: 31, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 41, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZ00iYuIjNtkWbh5iM50ybsBnLygzMtEmcn5SMy0SZoNmLw4SMx4SMuEjMuYjNtMXdvV3ZpJWbhhSI", + value: "!(ambiguous-66.21.1.11.0.che-21.gra-382.plo-92.ami-62.b-4e)!", + result: { + word: "ambiguous", + correct: 21, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "07.03.2025", + }, + }, + { + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUGNtImLxYTLp5SZy0ybtFmLyYTLtF2ZuAjLz4iMukTMuYjNtMXdvV3ZpJWbhhSI", + value: "!(ambiguous-66.19.2.3.0.gam-62.amo-2e.i-61.b-4e)!", + result: { + word: "ambiguous", + correct: 19, + position: 2, + incorrect: 3, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + }, + }, + { + date: "07.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUGNtIWbh5iNtkWbv5yYk1yc11mL3ETLnl2duUWNy0CajNjL5EWL192cuMWNx0Cd19mLx4SNx4CNuUjMuYjNtMXdvV3ZpJWbhhSI", + value: + "!(ambiguous-66.25.4.15.1.out-15c.sou-a9.3ch-25e.wig-17.mus-dc.omi-6.amb-4e)!", + result: { + word: "ambiguous", + correct: 25, + position: 4, + incorrect: 15, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 44, + date: "07.03.2025", + }, + }, + { + date: "07.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZ00iYuMzMx0CctFmLzQTLu9WbuAjL44SMuMTMuYjNtMXdvV3ZpJWbhhSI", + value: "!(ambiguous-66.13.1.8.0.mon-43.amp-133.b-4e)!", + result: { + word: "ambiguous", + correct: 13, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "07.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/az-sam-sie-zaskoczylem-slightly-smiling-face-20-02-2025-diffle-diffleen-grywebow" +] = [ + { + date: "20.02.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiN00SYuEmNt0WZ05iMwETLjV2cuAjL44SMugjLxUTLtFWZ0hSI", + value: "!(team-51.8.1.8.0.sec-102.tem-6a.a-46)!", + result: { + word: "team", + correct: 8, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "20.02.2025", + }, + }, + { + date: "20.02.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2QTLh5iNl1CblRnLw4CMx4CMucjLxUTLtFWZ0hSI", + value: "!(team-51.7.0.10.0.tel-e6.a-46)!", + result: { + word: "team", + correct: 7, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "20.02.2025", + }, + }, + { + date: "20.02.2025", + nick: "Endrevoir", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiN00SYlRnL2gTLu92YuAjL34SMuYjLxUTLtFWZ0hSI", + value: "!(team-51.6.1.7.0.con-86.tea-46)!", + result: { + word: "team", + correct: 6, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "20.02.2025", + }, + }, + { + date: "20.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiN00SYlRnL10SYkVmLyYTLtF2ZuAjLz4SMukjLxUTLtFWZ0hSI", + value: "!(team-51.9.1.3.0.gam-62.eda-5.tea-46)!", + result: { + word: "team", + correct: 9, + position: 1, + incorrect: 3, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 13, + date: "20.02.2025", + }, + }, + { + date: "20.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYDNuQmL5cjLhNTLhVGducjM30CajNjLjFTLlR3cuAjNtQHdh5CMuMTMuAjLyIjLxUTLtFWZ0hSI", + value: "!(team-51.22.0.13.0.att-60.ste-1c.3ch-727.tea-3a.79.d.46)!", + result: { + word: "team", + correct: 22, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 35, + date: "20.02.2025", + }, + }, + { + date: "20.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiN00SYlRnLyYTLtF2ZuAjLy4SMuYjLxUTLtFWZ0hSI", + value: "!(team-51.6.1.2.0.gam-62.tea-46)!", + result: { + word: "team", + correct: 6, + position: 1, + incorrect: 2, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 9, + date: "20.02.2025", + }, + }, + { + date: "20.02.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYDNuETOuADNuQjNtEWZ05SMy0SZoNmLw4COuEjL1EjLxUTLtFWZ0hSI", + value: "!(team-51.15.1.8.0.che-21.tea-64.40.91.46)!", + result: { + word: "team", + correct: 15, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "20.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/banal-ale-sympatyczny-i-nostalgiczny-22-02-2025-diffle-diffleen-grywebowe-35-let" +] = [ + { + date: "22.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2gTLlJnZucTOz0yclJnL1YGOt8mcw5iYy0SYlhmLw4SMx4CMuQjMuMTNtUGb5R3clVmcmhSI", + value: "!(freestyle-53.24.0.11.0.hea-2b.pro-8f5.res-397.fre-86)!", + result: { + word: "freestyle", + correct: 24, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "22.02.2025", + }, + }, + { + date: "22.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiN40SZyZmLkVmMtUGdz5SYy0CdvRmLz0ib1JmLxYTMtAXZy5iM20SbhdmLw4iMx4SNugTMuMTNtUGb5R3clVmcmhSI", + value: + "!(freestyle-53.18.5.12.0.gam-62.rep-161.bun-3.dot-2a.ste-2ed.fre-86)!", + result: { + word: "freestyle", + correct: 18, + position: 5, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "22.02.2025", + }, + }, + { + date: "22.02.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiN40SZyZmL4YjMtg2Yz4yYy0ic1BnL2gTLhVmcuAjL34iMugTMuMTNtUGb5R3clVmcmhSI", + value: "!(freestyle-53.18.2.7.0.rea-86.pur-2c.3ch-268.fre-86)!", + result: { + word: "freestyle", + correct: 18, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "22.02.2025", + }, + }, + { + date: "22.02.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiN40SZyZmLjNTLlJ3duITZy0CclJnL4UTLjVGbuYWMx0ybldmLw4CMx4CNuYjMuMTNtUGb5R3clVmcmhSI", + value: "!(freestyle-53.26.4.10.0.geo-11f.lec-58.rep-2e2.wre-3c.fre-86)!", + result: { + word: "freestyle", + correct: 26, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "22.02.2025", + }, + }, + { + date: "22.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYDOtUmcm5iMk1icvNmL3kzMtMXZy5SM50Se0NnLyMTLzVXYuAjL34CNuUjMuMTNtUGb5R3clVmcmhSI", + value: "!(freestyle-53.25.4.7.0.aus-32.sty-91.res-397.cor-d2.fre-86)!", + result: { + word: "freestyle", + correct: 25, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "22.02.2025", + }, + }, + { + date: "22.02.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2gTLlJnZuEzMtIXe05iZ3ITLoN2MuIGNtQXZk5yNh1ic1JmLhRWLy9GcuUjM00yclJnL4IzMtQXZt5SMy0SZoNmLw4yMx4yMuEzMuMTNtUGb5R3clVmcmhSI", + value: + "!(freestyle-53.31.3.13.0.che-21.met-328.res-425.por-da.bur-a7.det-4b.3ch-27f.tyr-31.fre-86)!", + result: { + word: "freestyle", + correct: 31, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 47, + date: "22.02.2025", + }, + }, + { + date: "22.02.2025", + nick: "ulsterboy", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYDOtUmcm5yN5MTLzVmcuM2MtUmc35iZh1CdzVmL4czMtMXZy5SO00ycldmLwYWLlR3cuIjYx0ybyBnLw4iNx4CNuEDNuMTNtUGb5R3clVmcmhSI", + value: + "!(freestyle-53.41.4.16.0.pro-1b2.ste-f0.ges-49.res-378.est-af.wre-3c.res-397.fre-86)!", + result: { + word: "freestyle", + correct: 41, + position: 4, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 61, + date: "22.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/banalne-10-01-2025-diffle-diffleen-grywebowe-20-letters-in-3-words-large-green-c" +] = [ + { + date: "10.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKy0idlNnLiNWLzVmcugzYtAXbp5CMugjLy4CMx4CMx0iblZXZzhSI", + value: "!(seven-10.10.2.8.0.imp-c8.res-cb.sev-2)!", + result: { + word: "seven", + correct: 10, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMtYnLkFTLuV2cuYDOtEWZy5CMucjLx4CMx4CMx0iblZXZzhSI", + value: "!(seven-10.10.1.7.0.rea-86.sen-1d.v-2)!", + result: { + word: "seven", + correct: 10, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "kamin", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN20CctlmL1czMtEGbw5iMwYmMt42br5CMukjLz4CMx4CMx0ychBXbphSI", + value: "!(impas-10.10.3.9.0.kon-2f02.pla-375.imp-66)!", + result: { + word: "impas", + correct: 10, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITL25iY10SZlNnL5QTMt4WZw5CM40SblJnLxITLlh2YuAjLxEjLy4SNx4CMx0iblZXZzhSI", + value: "!(seven-10.15.2.11.0.che-21.rem-80.pen-149.see-5b.v-2)!", + result: { + word: "seven", + correct: 15, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITL25iY10SZuIDMx0iblNnL4ETLtFmcuAjLwEjLx4CNx4CMx0iblZXZzhSI", + value: "!(seven-10.14.1.10.0.ram-18.sen-102.e-5b.v-2)!", + result: { + word: "seven", + correct: 14, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkiN20CctlmLxITLpNHcuYWZz0icwNnLw4SOuQjL54CMx0ychBXbphSI", + value: "!(impas-10.9.4.9.0.spr-3ef.psi-21.imp-66)!", + result: { + word: "impas", + correct: 9, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMtYnLzQTLt5SMx0yYl5yY20SZoNnLyMTLzVXYuAjLzEjLw4yNx4CMx0iblZXZzhSI", + value: "!(seven-10.17.0.13.0.aus-32.she-6c.ec-11.m-43.v-2)!", + result: { + word: "seven", + correct: 17, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMuETL2V2cuEWL6VmYuQjMtUWZk5iY10Ca0VmLyYTLtF2ZuAjLzEjLw4SNx4CMx0iblZXZzhSI", + value: "!(seven-10.15.0.13.0.gam-62.eth-5b.dee-24.bez-a.sev-1.2)!", + result: { + word: "seven", + correct: 15, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 28, + date: "10.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/banalne-29-05-2025-diffle-diffleen-grywebowe-20-letters-in-4-words-large-green-c" +] = [ + { + date: "29.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMt4Wdh5iNx0SdsBnLhZTLoN2MuYDOtEWZy5CMukjLx4CMx4SO0ETL05WdhhSI", + value: "!(aunt-149.10.1.9.0.rea-86.3ch-6a.plu-16.aun-3)!", + result: { + word: "aunt", + correct: 10, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "29.05.2025", + }, + }, + { + date: "29.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMt4Wdh5CNj1ibhJnL5YTLzFmbuEjMtUGaj5CMugjLy4SMx4SO0ETL05WdhhSI", + value: "!(aunt-149.11.2.8.0.che-21.nas-69.ran-c4.aun-3)!", + result: { + word: "aunt", + correct: 11, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "29.05.2025", + }, + }, + { + date: "29.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKz0ib1FmLjJTL1FmZuM2Nx0ycuVnLmZWLyVnYuAjLxEjLx4SMx4SO0ETL05WdhhSI", + value: "!(aunt-149.11.1.11.0.bur-ff.uns-17c.fau-2c.aun-3)!", + result: { + word: "aunt", + correct: 11, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "29.05.2025", + }, + }, + { + date: "29.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKz0ibuQ2MtQXdh5SYtUXZm5CMuATMuEjL44SO0ETL05WdhhSI", + value: "!(aunt-149.8.1.10.0.feu-a.aut-3d.n-3)!", + result: { + word: "aunt", + correct: 8, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "29.05.2025", + }, + }, + { + date: "29.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMt4Wdh5CO00ib1RmL2ITLu9mZugTLulWYuIDNy0ibhNmLlVWMtwWYi5SYk1ychBnLyYTLtF2ZuAjL0EjLw4SOx4SO0ETL05WdhhSI", + value: + "!(aunt-149.19.0.14.0.gam-62.pas-da.bal-1ee.can-242.ain-8.fon-26.dun-48.aun-3)!", + result: { + word: "aunt", + correct: 19, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 33, + date: "29.05.2025", + }, + }, + { + date: "29.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKz0ib1FmLycTLuVHZuImNt4Wds5SY40ib1JmLiRTLuVHauEDZt4Wdm5CO1ITLyN2cuAjLwEjLx4SMy4SO0ETL05WdhhSI", + value: + "!(aunt-149.21.1.10.0.scr-258.fun-d1.hun-4b.bun-8a.lun-6b.dun-72.aun-3)!", + result: { + word: "aunt", + correct: 21, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 32, + date: "29.05.2025", + }, + }, + { + date: "29.05.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMTLuVXYuEmNtg2Yz4SO20ych5mLyEWLvJHcuAjLxEjLx4SMx4SO0ETL05WdhhSI", + value: "!(aunt-149.11.1.11.0.pro-a2.nas-69.3ch-6a.aun-3)!", + result: { + word: "aunt", + correct: 11, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "29.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/bardzo-bardzo-fajne-13-06-2025-diffle-diffleen-grywebowe-36-letters-in-6-words-l" +] = [ + { + date: "13.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjVTOt42bj5CMt4Wa65SMl1SdvJmLl1Cd1pmL0QTLtlGdukzNtEGbh5CMuETMuUjLwIjL0YTMt0Wd15Wa052bjhSI", + value: + "!(continuum-164.20.5.11.0.ala-79.tim-44.jut-e.bou-e1.zin-0.con-95c)!", + result: { + word: "continuum", + correct: 20, + position: 5, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "13.06.2025", + }, + }, + { + date: "13.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyY1kTLu92YuEzNtMWau5iN40SYlJnLw4SNuIjL4EjL0YTMt0Wd15Wa052bjhSI", + value: "!(continuum-164.18.2.5.0.rea-86.nic-71.con-95c)!", + result: { + word: "continuum", + correct: 18, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "13.06.2025", + }, + }, + { + date: "13.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyY1kTLu9mL2QTLuV3YukTLuVHcuMmNtM3bt5iM20SbhdmLw4yNuQjL2EjL0YTMt0Wd15Wa052bjhSI", + value: "!(continuum-164.16.4.7.0.gam-62.mos-6c.pun-9.cun-46.on-95c)!", + result: { + word: "continuum", + correct: 16, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "13.06.2025", + }, + }, + { + date: "13.06.2025", + nick: "Calypso_Cluster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMWN50ibucTYtQ3bj5CZz0yZsFmL1IWNtUmcw5CMuITMuEjL3EjL0YTMt0Wd15Wa052bjhSI", + value: "!(continuum-164.17.1.12.0.pre-5b5.alg-3d.cot-a7.n-95c)!", + result: { + word: "continuum", + correct: 17, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "13.06.2025", + }, + }, + { + date: "13.06.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjVTOuEGN50ibuUWNy0SdvNmLyEjMtQmbp5CMuATMuIjL3IjL0YTMt0Wd15Wa052bjhSI", + value: "!(continuum-164.27.2.10.0.ind-212.cou-25e.n-94a.95c)!", + result: { + word: "continuum", + correct: 27, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 39, + date: "13.06.2025", + }, + }, + { + date: "13.06.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjVTOt4mL0YjMt02bj5iMh1ybyBnLw4SOuMjL3EjL0YTMt0Wd15Wa052bjhSI", + value: "!(continuum-164.17.3.9.0.pro-a2.com-264.n-95c)!", + result: { + word: "continuum", + correct: 17, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "13.06.2025", + }, + }, + { + date: "13.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMWN50ibvNmL0UTMukDO10CajNjLhRWLy9GcuQjZt4Wa35SYtUXZm5CMuATMuIjLwIjL0YTMt0Wd15Wa052bjhSI", + value: + "!(continuum-164.20.2.10.0.feu-a.win-f4.por-da.3ch-589.154.con-95c)!", + result: { + word: "continuum", + correct: 20, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "13.06.2025", + }, + }, + { + date: "13.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjVTOt42bj5SNy0ib1ZmLwMTLkJWYuYzYtAXZy5CMuUTMuYjLxIjL0YTMt0Wd15Wa052bjhSI", + value: "!(continuum-164.21.6.15.0.rep-c6.abd-30.fun-25.con-95c)!", + result: { + word: "continuum", + correct: 21, + position: 6, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 42, + date: "13.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/bez-wysilku-30-03-2025-diffle-diffleen-grywebowe-29-letters-in-4-words-large-gre" +] = [ + { + date: "30.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjJ2NtUmcw5CZtQXYm5SZm1icwNnLxETMt42bj5CMuITMuIjL1EjL5gTLlNWYmVmcwhSI", + value: "!(preface-89.15.2.12.0.con-111.spr-fe.fat-d.pre-7bc)!", + result: { + word: "preface", + correct: 15, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "30.03.2025", + }, + }, + { + date: "30.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMmY30SZyBnL0YWNtg2Yz4iN40SYlJnLw4SNuAjL0EjL5gTLlNWYmVmcwhSI", + value: "!(preface-89.14.0.5.0.rea-86.3ch-5f4.pre-7bc)!", + result: { + word: "preface", + correct: 14, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "30.03.2025", + }, + }, + { + date: "30.03.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjJ2NtUmL4ETLp5CZjhTLvJHcucTL2FmcuYTZtIXYi5iM20SbhdmLw4SOuIjLyIjL5gTLlNWYmVmcwhSI", + value: "!(preface-89.22.2.9.0.gam-62.bar-e6.rav-7.pro-8cd.i-18.e-7bc)!", + result: { + word: "preface", + correct: 22, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "30.03.2025", + }, + }, + { + date: "30.03.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjJ2NtUmcw5CO10icpZmLw4iMuIjLyEjL5gTLlNWYmVmcwhSI", + value: "!(preface-89.12.2.2.0.fir-58.pre-7bc)!", + result: { + word: "preface", + correct: 12, + position: 2, + incorrect: 2, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "30.03.2025", + }, + }, + { + date: "30.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjJ2NtUmcw5iYxETLwVmcucjNtIWbl5yNtMWYy5iMz0yc1FmLw4SOuMjLwIjL5gTLlNWYmVmcwhSI", + value: "!(preface-89.20.3.9.0.aus-32.rac-7.emb-67.rep-11b.pre-7bc)!", + result: { + word: "preface", + correct: 20, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "30.03.2025", + }, + }, + { + date: "30.03.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjJ2NuYjNj5yMz0SZuITYt8mcw5CMuETMuAjLzIjL5gTLlNWYmVmcwhSI", + value: "!(preface-89.23.0.11.0.pro-a2.e-33.c66.7bc)!", + result: { + word: "preface", + correct: 23, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "30.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/blue-dot-27-02-2025-diffle-diffleen-grywebowe-38-letters-in-7-words-20-3-15-0" +] = [ + { + date: "27.02.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgTMt8Gbn5SN00ybsJmLzETLvxWYuMmZt8Gbj5COtY3bs5iNt8Ga35SO2ETLwVGZuAjL1EjLz4CMy4CO10SZi9GbnhSI", + value: + "!(globe-58.20.3.15.0.dep-169.who-6.lov-8.clo-fc.alo-13.blo-45.glo-18)!", + result: { + word: "globe", + correct: 20, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 38, + date: "27.02.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOx0ybsdmLw4CMuAjL14CO10SZi9GbnhSI", + value: "!(globe-58.5.0.0.0.glo-18)!", + result: { + word: "globe", + correct: 5, + position: 0, + incorrect: 0, + knownIncorrect: 0, + totalWords: 1, + totalLetters: 5, + }, + }, + { + date: "27.02.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgTMt8Gbn5SN00ybsJmLwETLu9GbucTLs92duMWYtQWZt5SOlFTLlhGduAjL1EjLy4CNx4CO10SZi9GbnhSI", + value: "!(globe-58.14.2.15.0.the-1e9.med-ac.wol-7.lon-10.blo-45.glo-18)!", + result: { + word: "globe", + correct: 14, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "27.02.2025", + }, + }, + { + date: "27.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOx0ybsdmLx0Cbn9mL2ETLsV2duIjNtIXYl5CMugjLz4CMx4CO10SZi9GbnhSI", + value: "!(globe-58.10.3.8.0.ear-62.wel-16.ogl-1.glo-18)!", + result: { + word: "globe", + correct: 10, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "27.02.2025", + }, + }, + { + date: "27.02.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOx4SZk5CZ0ETLv5iY20Sds5CM10SZydmLxITLlh2YuAjL2EjLx4iNx4CO10SZi9GbnhSI", + value: "!(globe-58.16.1.16.0.che-21.gre-50.lu-6b.o-14d.de.18)!", + result: { + word: "globe", + correct: 16, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "27.02.2025", + }, + }, + { + date: "27.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgTMuY2Mx0ybs5iZ20ybv5iNtMWZuIjNt0WYn5CMugjLx4iNx4CO10SZi9GbnhSI", + value: "!(globe-58.16.1.8.0.gam-62.ec-6.oo-6f.lo-13f.18)!", + result: { + word: "globe", + correct: 16, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "27.02.2025", + }, + }, + { + date: "27.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOx4CZ0ETLvxmLiFTLtV2ZuMzYy0CajNjLmdTLyF2cuAjL1EjLx4yMx4CO10SZi9GbnhSI", + value: "!(globe-58.13.1.15.0.sar-7f.3ch-2c3.gem-1b.lo-14d.18)!", + result: { + word: "globe", + correct: 13, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "27.02.2025", + }, + }, + { + date: "27.02.2025", + nick: "ulsterboy", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgTMt8GbuMWMtw2bn5iN10SZvBnL2UTLt92cuAjLxEjLx4iMx4CO10SZi9GbnhSI", + value: "!(globe-58.12.1.11.0.som-56.poe-56.gol-1c.lo-18)!", + result: { + word: "globe", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "27.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/bulls-eye-11-06-2025-diffle-diffleen-grywebowe-16-letters-in-2-words-large-green" +] = [ + { + date: "11.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwEWLu92YuYDOtEWZy5CMuMjLz4CMx4iM2ETL0JXZj52bjhSI", + value: "!(concert-162.10.3.3.0.rea-86.con-a0)!", + result: { + word: "concert", + correct: 10, + position: 3, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "11.06.2025", + }, + }, + { + date: "11.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMh1ibuQWZx0icvNmLi1yZ15mLkRTLv92duUTNtUmdh5CO40SZ4VmLwEmNtIXZw5CZ1ETLph2cuAjL5EjLx4yNy4iM2ETL0JXZj52bjhSI", + value: + "!(concert-162.27.1.19.0.shi-15d.per-6a0.exe-88.ave-55.woo-4d.nug-b.cor-1ed.n-a0)!", + result: { + word: "concert", + correct: 27, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 47, + date: "11.06.2025", + }, + }, + { + date: "11.06.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwEmL1QjYt42buQTNt4WZuEjMtUGaj5CMuUjLy4SOx4iM2ETL0JXZj52bjhSI", + value: "!(concert-162.19.2.5.0.che-21.en-54.on-b45.a0)!", + result: { + word: "concert", + correct: 19, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "11.06.2025", + }, + }, + { + date: "11.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwEWLu5SYy0CbvNmLxUmYtUmdv5iNtMXdw5CNy0ybyVmLyYTLtF2ZuAjLxEjLy4COx4iM2ETL0JXZj52bjhSI", + value: "!(concert-162.18.2.11.0.gam-62.ero-24.pus-6.ove-be1.col-2a.n-a0)!", + result: { + word: "concert", + correct: 18, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "11.06.2025", + }, + }, + { + date: "11.06.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwEWLu92YuITYt8mcw5CMuYjLy4CMx4iM2ETL0JXZj52bjhSI", + value: "!(concert-162.10.2.6.0.pro-a2.con-a0)!", + result: { + word: "concert", + correct: 10, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "11.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/by-nie-byc-zbyt-ambitnym-02-02-2025-diffle-diffleen-grywebowe-38-letters-in-6-wo" +] = [ + { + date: "02.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNx4CMtUmck5COtUmci5SYzETLhVmcuUWOtEmcw5CNlFTLhN2cuAjL3EjLy4SOx4yMz0SbhVmckhSI", + value: "!(dream-33.19.2.17.0.sca-1e4.pra-9e.rea-13a.bre-8.dre-0.14)!", + result: { + word: "dream", + correct: 19, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "02.02.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNx0SZyRmLhFTLtlmcuMjMtQ3bt5CMuETMuMjL54yMz0SbhVmckhSI", + value: "!(dream-33.9.3.11.0.mot-23.rim-1a.dre-14)!", + result: { + word: "dream", + correct: 9, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + }, + }, + { + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTMtUmck5iM20SbhdmLw4SMuIjL34yMz0SbhVmckhSI", + value: "!(dream-33.7.2.1.0.gam-62.dre-14)!", + result: { + word: "dream", + correct: 7, + position: 2, + incorrect: 1, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 10, + }, + }, + { + date: "02.02.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0ETLlJHZugTLlJnYuYTLlJ3YuE2Mx0SYlJnLyUWL1VmbuAjLxEjLy4iNx4yMz0SbhVmckhSI", + value: "!(dream-33.16.2.11.0.neu-e2.rea-13a.cre-6.bre-8.dre-14)!", + result: { + word: "dream", + correct: 16, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "02.02.2025", + }, + }, + { + date: "02.02.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNx0SZyRmLzgTMtEWZy5CM2ETL192YuAjLxEjLx4iMx4yMz0SbhVmckhSI", + value: "!(dream-33.12.1.11.0.cou-160.rea-183.dre-14)!", + result: { + word: "dream", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "02.02.2025", + }, + }, + { + date: "02.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTMtUmck5iZ20ibpBnL1QTLtVmcuEjNy0Cdl1mL0MTLiFmZuAjL0EjLz4SMx4yMz0SbhVmckhSI", + value: "!(dream-33.11.3.14.0.fab-34.met-261.rem-45.pin-6f.dre-14)!", + result: { + word: "dream", + correct: 11, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "02.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/byc-jak-stanislaw-lem-07-01-2025-diffle-diffleen-grywebowe-23-letters-in-3-words" +] = [ + { + date: "07.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgjMtMWam5iY50CdvBnLwYTLsVmcuAjL44CMuUTMucTLu9Wa0NWamhSI", + value: "!(fiction-7.15.0.8.0.rel-60.pot-9b.fic-28)!", + result: { + word: "fiction", + correct: 15, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "07.01.2025", + }, + }, + { + date: "07.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOy0yYpZmLmZWLjlGZuETLvNWaugTLjVXbuADNx0SYwNnLw4SMx4CMuAjMucTLu9Wa0NWamhSI", + value: "!(fiction-7.20.0.11.0.spa-140.muc-8.ico-1.dic-ff.fic-28)!", + result: { + word: "fiction", + correct: 20, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "07.01.2025", + }, + }, + { + date: "07.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOy0yYpZmLlJTOt42bj5CM00SY1FnLw4iMx4iMuMTMucTLu9Wa0NWamhSI", + value: "!(fiction-7.13.2.12.0.qua-40.con-92e.fic-28)!", + result: { + word: "fiction", + correct: 13, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "07.01.2025", + }, + }, + { + date: "07.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgjMtMWam5SN10ibvRnLiJTLp9GcuI2Mtw2b05yN5ETLvN2cukTOy0SYoNmLw4CMx4SNugTMucTLu9Wa0NWamhSI", + value: + "!(fiction-7.18.5.10.0.cha-299.sco-197.tol-3b.poi-2b.ton-55.fic-28)!", + result: { + word: "fiction", + correct: 18, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "07.01.2025", + }, + }, + { + date: "07.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgjMtMWam5CMx0Cdw9mLyMTLzVXYuAjL44iMuETMucTLu9Wa0NWamhSI", + value: "!(fiction-7.11.2.8.0.aus-32.opt-10.fic-28)!", + result: { + word: "fiction", + correct: 11, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "07.01.2025", + }, + }, + { + date: "07.01.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOy0yYp5iM20ybsZmLlVWLvB3cuIjMt42bi5iM20SbhdmLw4SMx4CMuQTMucTLu9Wa0NWamhSI", + value: "!(fiction-7.14.0.11.0.gam-62.bon-22.spo-ee.flo-62.ic-28)!", + result: { + word: "fiction", + correct: 14, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "07.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/calkiem-zgrabnie-poszlo-w-prtzeciwienstwie-do-polskiego-13-03-2025-diffle-diffle" +] = [ + { + date: "13.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZk1SYyRmLjNTMtEmcn5CN30SYyZmL2gTLhVmcuAjLxEjLw4iMx4iM30SYtFmckhSI", + value: "!(drama-72.12.0.11.0.rea-86.fra-74.gra-13c.dra-de)!", + result: { + word: "drama", + correct: 12, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlRWLhJHZuImMtIXdo5yNy0SYydnLkNWL05WZuAjL4EjLw4SMx4iM30SYtFmckhSI", + value: "!(drama-72.11.0.18.0.ent-cd.wra-27.hur-2b.dra-de)!", + result: { + word: "drama", + correct: 11, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlRWLhJHZuITO00CajNjL0cTLhJnZuYTMtIXY35CZ20SdvBnLxITLlh2YuAjL0EjLz4iMx4iM30SYtFmckhSI", + value: "!(drama-72.12.3.14.0.che-21.pou-6d.war-16.fra-74.3ch-492.dra-de)!", + result: { + word: "drama", + correct: 12, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 29, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUGZtEmck5yYx0SasNnLz0ib1JmL2gTLtFmcuEGMy0SYyRnLyYTLtF2ZuAjLyEjLx4CNx4iM30SYtFmckhSI", + value: "!(drama-72.14.1.12.0.gam-62.tra-20a.ram-86.bun-3.sli-1c.dra-de)!", + result: { + word: "drama", + correct: 14, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 27, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlRWLhJHZuATLtJXYuITYt8mcw5CMukjLy4SMx4iM30SYtFmckhSI", + value: "!(drama-72.11.2.9.0.pro-a2.arm-0.dra-de)!", + result: { + word: "drama", + correct: 11, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlRWLhJHZuMGMy0ich1mLw4CNuIjL34iM30SYtFmckhSI", + value: "!(drama-72.7.2.4.0.mar-20c.dra-de)!", + result: { + word: "drama", + correct: 7, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "13.03.2025", + }, + }, + { + date: "13.03.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlRmLxATMuQGZtEmck5iY50SYyZmL0QWMtEmci5iZi1SYyNmL5IjNtg2Yz4iNk1SYyBnLm1Sbh5mLiJTLtxWYuAjL0EjLw4iMz4iM30SYtFmckhSI", + value: + "!(drama-72.32.0.14.0.alm-2b.nam-f.pra-d6.3ch-629.cra-bf.bra-1d4.fra-9b.dra-dd.101.de)!", + result: { + word: "drama", + correct: 32, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 46, + date: "13.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/chyba-calkiem-niezle-biorac-pod-uwage-zaledwie-jedna-litere-trafiona-w-pierwszym" +] = [ + { + date: "04.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETOtMXdt5iNz0yc1JmLkJTMtUHbw5iN40SYlJnLw4SMx4CMuMTMuQjMx0SeoNXdthSI", + value: "!(mushy-124.13.0.11.0.rea-86.plu-12d.bus-36.mus-91)!", + result: { + word: "mushy", + correct: 13, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "04.05.2025", + }, + }, + { + date: "04.05.2025", + nick: "the_moon", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpMTYz0ichpmLwMTZx0ichBnL5UjZy0ibvtmLw4yNuEjLyEjL0ITMt8Wb6JXYqhSI", + value: "!(jarzmo-124.12.1.7.0.kon-2f59.par-1e30.jar-3a3)!", + result: { + word: "jarzmo", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "04.05.2025", + }, + }, + { + date: "04.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETOtMXdt5SNz0ic1hmLz0SdvxmLxITLlh2YuAjLyEjLx4SOuQjMx0SeoNXdthSI", + value: "!(mushy-124.9.1.12.0.che-21.lou-3.hur-35.mus-91)!", + result: { + word: "mushy", + correct: 9, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "04.05.2025", + }, + }, + { + date: "04.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSM54SNm1yc11mLyMTLzVXYuAjL34CMuITMuQjMx0SeoNXdthSI", + value: "!(mushy-124.12.0.7.0.aus-32.mus-f5.91)!", + result: { + word: "mushy", + correct: 12, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "04.05.2025", + }, + }, + { + date: "04.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETOtMnLy0ib15yMx0Cbv1mLyYTLtF2ZuAjL54CMuATMuQjMx0SeoNXdthSI", + value: "!(mushy-124.10.0.9.0.gam-62.mol-13.un-2.s-91)!", + result: { + word: "mushy", + correct: 10, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 19, + date: "04.05.2025", + }, + }, + { + date: "04.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxkTLzVXbuUTMtMXdo5CM10yc1ZmL0YTLzVnYuQTNy0ibhNmLw4iNx4CMuYTMuQjMx0SeoNXdthSI", + value: "!(mushy-124.16.0.16.0.can-254.bus-64.fus-50.hus-15.mus-91)!", + result: { + word: "mushy", + correct: 16, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "04.05.2025", + }, + }, + { + date: "04.05.2025", + nick: "Romanzholandii", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxkTLzVXbuYTLzVHcuETNtUHdz5CNtYWZr5SOk1CbvhmLx4CNx4iMuETMuQjMx0SeoNXdthSI", + value: "!(mushy-124.11.2.14.1.hol-d9.kef-4.stu-51.pus-6.mus-91)!", + result: { + word: "mushy", + correct: 11, + position: 2, + incorrect: 14, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 27, + date: "04.05.2025", + }, + }, + { + date: "04.05.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxkjL3MTMuMGZtMXdt5iMh1ybyBnLw4iMx4CMuMTMuQjMx0SeoNXdthSI", + value: "!(mushy-124.13.0.12.0.pro-a2.mus-dc.137.91)!", + result: { + word: "mushy", + correct: 13, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "04.05.2025", + }, + }, + { + date: "04.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSM50yc11mLwcTLtVHbucTLmV3ZuIzNx0Cd4VmLw4yNx4SMuATMuQjMx0SeoNXdthSI", + value: "!(mushy-124.10.1.17.0.ext-172.guf-7.lum-70.mus-91)!", + result: { + word: "mushy", + correct: 10, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "04.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/czy-to-w-ogole-jest-dozwolone-28-03-2025-diffle-diffleen-grywebowe-29-letters-in" +] = [ + { + date: "28.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMTNt4Waz5COjZTLoN2MukTNx0yculmL2gTLhVmcuAjL14yNucTMucDOtUmcvBXYn5WazhSI", + value: "!(singapore-87.17.7.5.0.rea-86.ins-159.3ch-6c8.sin-53)!", + result: { + word: "singapore", + correct: 17, + position: 7, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "28.03.2025", + }, + }, + { + date: "28.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMTNt4Waz5CMy0SYtlmL20Cb1pmLkNTMt8GcuMGZt82Yz5SMwETLy92dukDMy0ybyJmLw4iNx4CNuYjMucDOtUmcvBXYn5WazhSI", + value: + "!(singapore-87.26.4.16.0.bro-209.wor-101.sco-dc.po-13d.jul-6.ima-20.sin-53)!", + result: { + word: "singapore", + correct: 26, + position: 4, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 46, + date: "28.03.2025", + }, + }, + { + date: "28.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM10ibpNnLzYTLpFGcuQzMtkWYn5SY40ibpNnL4ETMt4Wa35yY00ichZmLxITLlh2YuAjL34iNukjMucDOtUmcvBXYn5WazhSI", + value: + "!(singapore-87.29.6.7.0.che-21.far-4c.win-118.sin-8a.gai-34.pai-63.sin-53)!", + result: { + word: "singapore", + correct: 29, + position: 6, + incorrect: 7, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "28.03.2025", + }, + }, + { + date: "28.03.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM10ibpNnL0ETLslmbuMGOtUHaj5CNz0CdhdmLxgzMtI3bm5iM20SbhdmLw4CMx4SNuEjMucDOtUmcvBXYn5WazhSI", + value: + "!(singapore-87.21.5.10.0.gam-62.for-381.gat-34.chu-8c.nil-14.sin-53)!", + result: { + word: "singapore", + correct: 21, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "28.03.2025", + }, + }, + { + date: "28.03.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM10ibpNnL4MWMtAHch5iMh1ybyBnLx4CMx4CNucTMucDOtUmcvBXYn5WazhSI", + value: "!(singapore-87.17.4.10.1.pro-a2.app-1c8.sin-53)!", + result: { + word: "singapore", + correct: 17, + position: 4, + incorrect: 10, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 31, + date: "28.03.2025", + }, + }, + { + date: "28.03.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM14SY10ibpNnLkNTLzl2duAjL34iMucTMucDOtUmcvBXYn5WazhSI", + value: "!(singapore-87.17.2.7.0.wis-3d.sin-5a.53)!", + result: { + word: "singapore", + correct: 17, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "28.03.2025", + }, + }, + { + date: "28.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzUTLulmL5YTLwFmL1IWLhd3cuEWZ20CajNjLkNWLjF2cuQmNtUmch5yNm1ych1mLw4CMx4SNugjMucDOtUmcvBXYn5WazhSI", + value: + "!(singapore-87.28.5.10.0.mas-f7.are-6d.sac-cd.3ch-6ea.swa-b5.ap-69.in-53)!", + result: { + word: "singapore", + correct: 28, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 43, + date: "28.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dlugo-myslalem-ale-strzal-celny-19-06-2025-diffle-diffleen-grywebowe-15-letters-" +] = [ + { + date: "19.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNh1SdoNmL2gTLhVmcuAjL34CMugjLwcTMtg2YyVHajhSI", + value: "!(church-170.8.0.7.0.rea-86.chu-a4)!", + result: { + word: "church", + correct: 8, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "19.06.2025", + }, + }, + { + date: "19.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTYuQGZtUHaj5yY00ic1hmLwcTL19mcuIjNt0WYn5CMuATMuEjL1EjLwcTMtg2YyVHajhSI", + value: "!(church-170.15.1.10.0.gam-62.rou-70.hur-4c.chu-dd.a4)!", + result: { + word: "church", + correct: 15, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "19.06.2025", + }, + }, + { + date: "19.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0EWL1h2YuMTLyVHbucTYtIXdi5yNx0SdvJnLjVjMtkGcz5CMuITMuEjL1EjLwcTMtg2YyVHajhSI", + value: "!(church-170.15.1.12.0.spi-25c.rou-17.bur-a7.lur-3.chu-a4)!", + result: { + word: "church", + correct: 15, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "19.06.2025", + }, + }, + { + date: "19.06.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0EWL1h2YuEmNtUnck5iMh1ybyBnLw4iMx4SMukjLwcTMtg2YyVHajhSI", + value: "!(church-170.9.1.12.0.pro-a2.dru-6a.chu-a4)!", + result: { + word: "church", + correct: 9, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "19.06.2025", + }, + }, + { + date: "19.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTYtUHauIWOtUncugTOtA3bj5CMuETMuEjLzEjLwcTMtg2YyVHajhSI", + value: "!(church-170.13.1.11.0.cop-98.ru-9b.hu-a4)!", + result: { + word: "church", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "19.06.2025", + }, + }, + { + date: "19.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNh1SdoNmL00yc1JnL1QTLk9WbuAjL54SMukjLwcTMtg2YyVHajhSI", + value: "!(church-170.9.1.9.0.mod-45.rus-4.chu-a4)!", + result: { + word: "church", + correct: 9, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "19.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/do-wynikow-i-slow-nie-moge-przywiazywac-raz-lepiej-a-raz-gorzej-08-01-2025-diffl" +] = [ + { + date: "08.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYtQHdh5yMhJTL0F2YuEjN10SZyBnLw4SOuQjL1EjL40CZlh2YhRHdhhSI", + value: "!(attached-8.15.4.9.0.pre-561.cat-2a3.att-b)!", + result: { + word: "attached", + correct: 15, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "08.01.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKi1Cd0FmLlBTMtQXYj5yMy0Cdv1mLw4SOuEjL3EjL40CZlh2YhRHdhhSI", + value: "!(attached-8.17.1.9.0.mot-23.cat-10e.att-b)!", + result: { + word: "attached", + correct: 17, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + }, + }, + { + date: "08.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpImL2ETL0RXYuMzNtQXYm5SZ20ibhdnL3IDOt8mcw5CMuMTMuAjL3IjL40CZlh2YhRHdhhSI", + value: "!(attached-8.27.0.13.0.pro-827.wan-6e.fat-73.att-16.b)!", + result: { + word: "attached", + correct: 27, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "08.01.2025", + }, + }, + { + date: "08.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYtQHdh5SMy0SZoNmLw4yMuIjLxEjL40CZlh2YhRHdhhSI", + value: "!(attached-8.11.2.3.0.che-21.att-b)!", + result: { + word: "attached", + correct: 11, + position: 2, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "08.01.2025", + }, + }, + { + date: "08.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpImL34CNx0Cd0FmLmhTL0F2YukTYtMWYm5CMuETMuIjL1IjL40CZlh2YhRHdhhSI", + value: "!(attached-8.25.2.11.0.fac-a9.cat-8f.att-14.7.b)!", + result: { + word: "attached", + correct: 25, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "08.01.2025", + }, + }, + { + date: "08.01.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYuMjNtQHdh5yNx0CdhZmLyETMtwWYw5iM20SbhdmLw4SOuAjLxIjL40CZlh2YhRHdhhSI", + value: "!(attached-8.21.0.9.0.gam-62.pal-112.fat-17.att-63.b)!", + result: { + word: "attached", + correct: 21, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "08.01.2025", + }, + }, + { + date: "08.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKi1Cd0FmLm1yYhxmLwYGNtg2Yz4iN40SYlJnLw4COuIjL1EjL40CZlh2YhRHdhhSI", + value: "!(attached-8.15.2.8.0.rea-86.3ch-4f0.lac-f.att-b)!", + result: { + word: "attached", + correct: 15, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "08.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dobre-i-na-czasie-slightly-smiling-face-22-01-2025-diffle-diffleen-grywebowe-29-" +] = [ + { + date: "22.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTOx0Cc45COy0ybwVmLidTLyVGaucDOtM3bw5CO50SbvNnLw4yMx4SMuUTMuIjMtU2cvBHelhSI", + value: "!(expose-22.15.1.13.0.som-98.pos-87.her-7b.epo-28.xp-194)!", + result: { + word: "expose", + correct: 15, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "22.01.2025", + }, + }, + { + date: "22.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTOx0Cc4VmL2ATMtAXZk5iNwETLzVmYuUTL19GcuEDMx0Cdh1mLw4iNx4iMukTMuIjMtU2cvBHelhSI", + value: "!(expose-22.19.2.16.0.mat-101.pou-5.bes-106.dep-106.exp-194)!", + result: { + word: "expose", + correct: 19, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "22.01.2025", + }, + }, + { + date: "22.01.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTOx0Cc45COy0ybw5iY10Ca0VmLyYTLtF2ZuAjL44CMuITMuIjMtU2cvBHelhSI", + value: "!(expose-22.12.0.8.0.gam-62.eth-5b.po-28.xp-194)!", + result: { + word: "expose", + correct: 12, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "22.01.2025", + }, + }, + { + date: "22.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0kTMtAHel5iNwETLwVGZuMWO10Cc1NnL30ycvBnLzcTLvh2duMGNt82bs5iN50SbtlmLw4COx4CMucjMuIjMtU2cvBHelhSI", + value: + "!(expose-22.27.0.18.0.imm-96.loo-4c.who-73.pos-7.sup-59c.dep-106.exp-194)!", + result: { + word: "expose", + correct: 27, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "22.01.2025", + }, + }, + { + date: "22.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCN5ETLwhXZuYDMx0CclRmLzITLwB3bucTLz9GcugTZ24SYwETLoN2MuUjYy0ibh1mLw4yMx4SMuMjMuIjMtU2cvBHelhSI", + value: + "!(expose-22.23.1.13.0.man-2b5.3ch-10a.6e8.pos-7.opp-23.dep-106.exp-194)!", + result: { + word: "expose", + correct: 23, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 37, + date: "22.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dobre-otwarcie-i-szybka-pilka-15-04-2025-diffle-diffleen-grywebowe-17-letters-in" +] = [ + { + date: "15.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiN50ibldmL2gTLhVmcuAjLz4iMuITMuUDMx0ycjlGdl5WZnhSI", + value: "!(genetics-105.12.2.3.0.rea-86.gen-96)!", + result: { + word: "genetics", + correct: 12, + position: 2, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "15.04.2025", + }, + }, + { + date: "15.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYTOt4WZn5COhJTLoN2MuY2MtIXZn5yNtkWZ65COx0CblpmLy4CNx4iMuMjMuUDMx0ycjlGdl5WZnhSI", + value: "!(genetics-105.23.2.14.2.jel-18.zei-7.ger-3f.3ch-2a8.gen-96)!", + result: { + word: "genetics", + correct: 23, + position: 2, + incorrect: 14, + knownIncorrect: 2, + totalWords: 5, + totalLetters: 39, + date: "15.04.2025", + }, + }, + { + date: "15.04.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiN50ibldmLxITLlh2YuAjLy4yMuETMuUDMx0ycjlGdl5WZnhSI", + value: "!(genetics-105.11.3.2.0.che-21.gen-96)!", + result: { + word: "genetics", + correct: 11, + position: 3, + incorrect: 2, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "15.04.2025", + }, + }, + { + date: "15.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2kTLuV2ZuEWNx0yboNmL0ETL0VmLkNTLlVnLyYTLtF2ZuAjL34iMugTMuUDMx0ycjlGdl5WZnhSI", + value: "!(genetics-105.18.2.7.0.gam-62.ue-3d.et-14.cho-15a.gen-96)!", + result: { + word: "genetics", + correct: 18, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "15.04.2025", + }, + }, + { + date: "15.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2kTLuV2ZukjNt4War5SMtgXZu5CM30ibp1mL0kjZtUmcw5CNz0iYhZmLw4CNx4SMuMjMuUDMx0ycjlGdl5WZnhSI", + value: + "!(genetics-105.23.1.14.0.fab-34.pre-f94.min-70.nex-1.kin-69.gen-96)!", + result: { + word: "genetics", + correct: 23, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "15.04.2025", + }, + }, + { + date: "15.04.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2kjLwkTLuVmLkJTL0F2ZuAjL04iMugTMuUDMx0ycjlGdl5WZnhSI", + value: "!(genetics-105.18.2.4.0.gat-2d.en-90.96)!", + result: { + word: "genetics", + correct: 18, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "15.04.2025", + }, + }, + { + date: "15.04.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2kTLuV2ZugTMtUmbl5CNz0ib1ZmLw4SMx4SMuAjMuUDMx0ycjlGdl5WZnhSI", + value: "!(genetics-105.20.1.11.0.fun-34.ene-18.gen-96)!", + result: { + word: "genetics", + correct: 20, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 32, + date: "15.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dobre-slowo-startowe-to-polowa-sukcesu-02-04-2025-diffle-diffleen-grywebowe-17-l" +] = [ + { + date: "02.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSO5ITLlJHcuYDOtEWZy5CMuMjLw4CNx4iM50yc19WajVmcwhSI", + value: "!(precious-92.14.0.3.0.rea-86.pre-299)!", + result: { + word: "precious", + correct: 14, + position: 0, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "02.04.2025", + }, + }, + { + date: "02.04.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5kjMtUmcw5iNh1yYlJnLlVTLpxmLxITLlh2YuAjLxEjLz4iNx4iM50yc19WajVmcwhSI", + value: "!(precious-92.16.3.11.0.che-21.li-5e.rec-a6.pre-299)!", + result: { + word: "precious", + correct: 16, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "02.04.2025", + }, + }, + { + date: "02.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSO5IjL1M2YucjZxEjLwMDOtUmcw5CM0MTLzVmcuIjNt0WYn5CMukjLx4SMz4iM50yc19WajVmcwhSI", + value: "!(precious-92.31.1.9.0.gam-62.res-340.pre-830.11f7.cc5.299)!", + result: { + word: "precious", + correct: 31, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 41, + date: "02.04.2025", + }, + }, + { + date: "02.04.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5kjMuYmYy0SZuITYt8mcw5CMuYjLy4COx4iM50yc19WajVmcwhSI", + value: "!(precious-92.18.2.6.0.pro-a2.e-2bf.299)!", + result: { + word: "precious", + correct: 18, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "02.04.2025", + }, + }, + { + date: "02.04.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTOy0SZyBnL0EGNtMXZy5CMuUjLy4yMx4iM50yc19WajVmcwhSI", + value: "!(precious-92.13.2.5.0.res-4a4.pre-299)!", + result: { + word: "precious", + correct: 13, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "02.04.2025", + }, + }, + { + date: "02.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSO5ITLlJHcuIWNx0CctlmL1MTLwlmcuIzMtMXdh5CMugjL24COx4iM50yc19WajVmcwhSI", + value: "!(precious-92.18.6.8.0.aus-32.rip-35.imp-15b.pre-299)!", + result: { + word: "precious", + correct: 18, + position: 6, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "02.04.2025", + }, + }, + { + date: "02.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5kjMtUmcw5SO00ib1dmLwMDOuQTNk1SZy5CN20SahBnLhRTMtIWbl5iYzETLy92duAjL4EjL24SNy4iM50yc19WajVmcwhSI", + value: + "!(precious-92.25.6.18.0.wor-13b.emb-14a.pai-64.re-d54.830.gun-49.pre-299)!", + result: { + word: "precious", + correct: 25, + position: 6, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 49, + date: "02.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dobrze-poszlo-21-05-2025-diffle-diffleen-grywebowe-29-letters-in-5-words-large-g" +] = [ + { + date: "21.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwYWLlR3cuIGNtQXZk5iY20Cd1JmLxETMt8mc05SMy0SZoNmLw4iMx4yMuQTMuEDNx0iclVGdzhSI", + value: "!(steer-141.14.3.12.0.che-21.tro-111.but-6b.det-4b.ste-f0)!", + result: { + word: "steer", + correct: 14, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "21.05.2025", + }, + }, + { + date: "21.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMm1SZ05iZh1SZ35SZtEXZz5COx0Cc4VmLw4SNx4iMuITMuEDNx0iclVGdzhSI", + value: "!(steer-141.12.2.15.0.exp-18.seq-e.we-af.te-f0)!", + result: { + word: "steer", + correct: 12, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "21.05.2025", + }, + }, + { + date: "21.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMm5SY0ITLlR3cuQTLklGduEWL49mYuITMt4Wdw5iM20SbhdmLw4CNx4CMugTMuEDNx0iclVGdzhSI", + value: "!(steer-141.18.0.14.0.gam-62.pun-12.box-a.tid-4.ste-24a.f0)!", + result: { + word: "steer", + correct: 18, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "21.05.2025", + }, + }, + { + date: "21.05.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMm5SY0ITLl5yNyETL1RnLzMTMt4WZz5iMh1ybyBnLw4yMx4yMucTMuEDNx0iclVGdzhSI", + value: "!(steer-141.17.3.13.0.pro-a2.sen-133.tu-127.e-24a.f0)!", + result: { + word: "steer", + correct: 17, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "21.05.2025", + }, + }, + { + date: "21.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwYWLlR3cuUGNt42bt5CMucjLx4yNuEDNx0iclVGdzhSI", + value: "!(steer-141.7.1.7.0.mon-4e.ste-f0)!", + result: { + word: "steer", + correct: 7, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "21.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dobrze-ze-widzialem-ten-film-bo-bym-dlugo-jeszcze-zgadywal-21-02-2025-diffle-dif" +] = [ + { + date: "21.02.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzQTLh9GbuUTMz0SYsBnLh1CZv1mL2gTLhVmcuAjL44yMuQTMuITNtUGa0F2bshSI", + value: "!(loathe-52.14.3.8.0.rea-86.mod-a.pla-315.loa-43)!", + result: { + word: "loathe", + correct: 14, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "21.02.2025", + }, + }, + { + date: "21.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMDNtE2bs5CMt8WYn5iYz0yb1FnL4Q2MtMXZy5iY50yYulmLw4CNx4SNuMTMuITNtUGa0F2bshSI", + value: "!(loathe-52.13.5.14.0.inc-9b.res-3d8.quo-3b.gao-0.loa-43)!", + result: { + word: "loathe", + correct: 13, + position: 5, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "21.02.2025", + }, + }, + { + date: "21.02.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM04yNx0SYugTL29GbugTLoR3buUGNtMnL3cTL0FGbuEGOtQXYw5SMy0SZoNmLw4CMx4iMuAzMuITNtUGa0F2bshSI", + value: + "!(loathe-52.30.2.10.0.che-21.pat-8a.lat-77.s-4e.oth-8.lov-8.a-17.43)!", + result: { + word: "loathe", + correct: 30, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 42, + date: "21.02.2025", + }, + }, + { + date: "21.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzQTLh9mL3cTL0FGbuIzMtQXYi5CNz0CdhhmLyYTLtF2ZuAjL04SMuAjMuITNtUGa0F2bshSI", + value: "!(loathe-52.20.1.4.0.gam-62.hat-34.bat-32.lat-77.oa-43)!", + result: { + word: "loathe", + correct: 20, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "21.02.2025", + }, + }, + { + date: "21.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzQTLh5yMy0CducDNtY3bs5CNz0iYhZmLw4iMx4SMuQTMuITNtUGa0F2bshSI", + value: "!(loathe-52.14.1.12.0.fab-34.lov-47.t-23.a-43)!", + result: { + word: "loathe", + correct: 14, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "21.02.2025", + }, + }, + { + date: "21.02.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMDNtE2bs5iZm1ybsNmL2ETLvh2duAjL24SMuQTMuITNtUGa0F2bshSI", + value: "!(loathe-52.14.1.6.0.who-16.clo-ff.loa-43)!", + result: { + word: "loathe", + correct: 14, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "21.02.2025", + }, + }, + { + date: "21.02.2025", + nick: "Endrevoir", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM00SYv5CNy0yZp5CMtQ3buMmMtQXZuEWMtM3bs5iN40ibvNmLw4SMx4SNukTMuITNtUGa0F2bshSI", + value: "!(loathe-52.19.5.11.0.con-86.los-1a.et-2c.ot-0.ig-24.oa-43)!", + result: { + word: "loathe", + correct: 19, + position: 5, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "21.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dosc-nielatwe-29-03-2025-diffle-diffleen-grywebowe-24-letters-in-3-words-large-g" +] = [ + { + date: "29.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTNt4WZj5SOjFTLmVGZuEjMx0Cdl1mLw4CNx4SMukjL4gTL05WZjhSI", + value: "!(cent-88.9.1.14.0.met-121.def-1c9.cen-54)!", + result: { + word: "cent", + correct: 9, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "29.03.2025", + }, + }, + { + date: "29.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCN10iblNmL2gTLhVmcuAjL14iMuYjL4gTL05WZjhSI", + value: "!(cent-88.6.2.5.0.rea-86.cen-54)!", + result: { + word: "cent", + correct: 6, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "29.03.2025", + }, + }, + { + date: "29.03.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0UTLu5yMk1CblNmLmhTLjV2cuIWNtgGdl5iM20SbhdmLw4COuIjLyEjL4gTL05WZjhSI", + value: "!(cent-88.12.2.8.0.gam-62.eth-5b.sec-8f.cel-d3.n-54)!", + result: { + word: "cent", + correct: 12, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 22, + date: "29.03.2025", + }, + }, + { + date: "29.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTNuETNx0ibuQWMt0WZuEjMtUGaj5CMuATMuEjL0EjL4gTL05WZjhSI", + value: "!(cent-88.14.1.10.0.che-21.em-1d.n-151.54)!", + result: { + word: "cent", + correct: 14, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "29.03.2025", + }, + }, + { + date: "29.03.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0UTLuVmLkhjMtUGaj5iMh1ybyBnLw4SMx4SMukjL4gTL05WZjhSI", + value: "!(cent-88.9.1.11.0.pro-a2.che-28d.en-54)!", + result: { + word: "cent", + correct: 9, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "29.03.2025", + }, + }, + { + date: "29.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCN10iblNmL3ITLuV2duYTNtU2bw5SYtUXZm5CMuMTMuAjLwEjL4gTL05WZjhSI", + value: "!(cent-88.10.0.13.0.feu-a.poe-56.wen-27.cen-54)!", + result: { + word: "cent", + correct: 10, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "29.03.2025", + }, + }, + { + date: "29.03.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0UTLuVmLygjMtUGaj5CZ50ybldmLw4CMx4SMukjL4gTL05WZjhSI", + value: "!(cent-88.9.1.10.0.geo-9d.che-282.en-54)!", + result: { + word: "cent", + correct: 9, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "29.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dosc-nieoczywiste-03-02-2025-diffle-diffleen-grywebowe-20-letters-in-3-words-lar" +] = [ + { + date: "03.02.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4ATMt4mLzYWLyVGduUGOtEWZy5CMukjLx4CMx4CNz0icv5WZ0hSI", + value: "!(tenor-34.10.1.9.0.rea-8e.ter-f3.n-108)!", + result: { + word: "tenor", + correct: 10, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "03.02.2025", + }, + }, + { + date: "03.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOwETLuVmLhRWLy9GduQDOtIncp5SMukjL04CMx4CNz0icv5WZ0hSI", + value: "!(tenor-34.10.4.9.1.irr-84.tor-da.en-108)!", + result: { + word: "tenor", + correct: 10, + position: 4, + incorrect: 9, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 23, + date: "03.02.2025", + }, + }, + { + date: "03.02.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOwETLuVGduIGNtkGaw5CMuATMuIjL24CNz0icv5WZ0hSI", + value: "!(tenor-34.6.2.10.0.phi-4b.ten-108)!", + result: { + word: "tenor", + correct: 6, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "03.02.2025", + }, + }, + { + date: "03.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgDMx0iblRnL2MTLuVmduIjNt0WYn5CMuUjLw4SMx4CNz0icv5WZ0hSI", + value: "!(tenor-34.11.0.5.0.gam-62.ven-36.ten-108)!", + result: { + word: "tenor", + correct: 11, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 16, + date: "03.02.2025", + }, + }, + { + date: "03.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4ATMt4mLwIWMtIXZ05iNlVTLoN2MuIzMtMXdh5CMukjLx4yMx4CNz0icv5WZ0hSI", + value: "!(tenor-34.13.1.9.0.aus-32.3ch-5e6.ter-1b0.n-108)!", + result: { + word: "tenor", + correct: 13, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "03.02.2025", + }, + }, + { + date: "03.02.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgDMx0iblRnLzQTL05WZuEjMtUGaj5CMuYjLy4CMx4CNz0icv5WZ0hSI", + value: "!(tenor-34.10.2.6.0.che-21.ent-43.ten-108)!", + result: { + word: "tenor", + correct: 10, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "03.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dosc-proste-dzis-11-02-2025-diffle-diffleen-grywebowe-43-letters-in-7-words-larg" +] = [ + { + date: "11.02.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyUTLlZXYuQWOtg2Yz4yMtMncuEWMtIHcuMzMtM3ch5yNi1SYlxmLxITLlh2YuAjLzEjLz4yNy4iM00ibvl2cyVmdhhSI", + value: + "!(aversion-42.27.3.13.0.che-21.lea-b7.ass-33.pr-1a.rs-3.3ch-9d.ave-52)!", + result: { + word: "aversion", + correct: 27, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 43, + date: "11.02.2025", + }, + }, + { + date: "11.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyUjLmRjLjRjLjJjL2MTLlZnL5UTLlxWYuIjNt0WYn5CMuYjLw4iMz4iM00ibvl2cyVmdhhSI", + value: "!(aversion-42.32.0.6.0.gam-62.ale-59.ve-36.2c.4c.4f.52)!", + result: { + word: "aversion", + correct: 32, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 38, + date: "11.02.2025", + }, + }, + { + date: "11.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyUTLlZXYuYmZx0iclZnLkdjMtQWZy5CMuYjLy4SOx4iM00ibvl2cyVmdhhSI", + value: "!(aversion-42.19.2.6.0.red-27d.ver-1ff.ave-52)!", + result: { + word: "aversion", + correct: 19, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "11.02.2025", + }, + }, + { + date: "11.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITNtUmduEGNtYHZuIzMtMXdh5CMuYjLx4yNx4iM00ibvl2cyVmdhhSI", + value: "!(aversion-42.17.1.6.0.aus-32.dv-4a.ve-52)!", + result: { + word: "aversion", + correct: 17, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "11.02.2025", + }, + }, + { + date: "11.02.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyUTLlZXYuYmZx0iclZnL5QTLzV2cuYTNx0iblBnLyITMtU2bj5CMucjLy4yNy4iM00ibvl2cyVmdhhSI", + value: "!(aversion-42.27.2.7.0.coe-122.pen-156.ses-49.ver-1ff.ave-52)!", + result: { + word: "aversion", + correct: 27, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "11.02.2025", + }, + }, + { + date: "11.02.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyUTLlZXYuUzYt4WZk5CMucjLx4iMx4iM00ibvl2cyVmdhhSI", + value: "!(aversion-42.12.1.7.0.den-c5.ave-52)!", + result: { + word: "aversion", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "11.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/duzo-mozliwosci-fajne-03-04-2025-diffle-diffleen-grywebowe-48-letters-in-7-words" +] = [ + { + date: "03.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEmMt4WZy5iMy0ic1BnL2ETLmZ2buIzMt4WZi5SZ10CZuEjMtUmbuYjNx0SZsVmLx4iNx4SMuEzMuMTOtIXZk5WZyhSI", + value: + "!(render-93.31.1.16.1.ele-166.ne-21.d-5e.ben-32.off-16.pur-22.ren-2a)!", + result: { + word: "render", + correct: 31, + position: 1, + incorrect: 16, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 48, + date: "03.04.2025", + }, + }, + { + date: "03.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEmMuEmNt4mL2gTLhVmcuAjL34CMuMTMuMTOtIXZk5WZyhSI", + value: "!(render-93.13.0.7.0.rea-86.n-6a.2a)!", + result: { + word: "render", + correct: 13, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "03.04.2025", + }, + }, + { + date: "03.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhJTLuVmcuATLuVWeuIjMt4WZ25iZx0iblZmLlVTLk5WZugTL0lmbuMjNt4Wdi5SOtM3bs5iM20SbhdmLw4CNx4CMuYzMuMTOtIXZk5WZyhSI", + value: + "!(render-93.36.0.14.0.gam-62.los-9.bun-63.nit-8.end-5e.fen-1f.ven-22.yen-0.ren-2a)!", + result: { + word: "render", + correct: 36, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 50, + date: "03.04.2025", + }, + }, + { + date: "03.04.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEmMt4WZy5SNzYTLoN2MuETOtUmck5iMh1ybyBnLw4SMx4SMuMTMuMTOtIXZk5WZyhSI", + value: "!(render-93.13.1.11.0.pro-a2.dre-91.3ch-635.ren-2a)!", + result: { + word: "render", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "03.04.2025", + }, + }, + { + date: "03.04.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYy0iblJnLkR2Mt8mcw5CMucjLx4SOuMTOtIXZk5WZyhSI", + value: "!(render-93.9.1.7.0.pro-3dd.ren-2a)!", + result: { + word: "render", + correct: 9, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "03.04.2025", + }, + }, + { + date: "03.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhJTLuVmcuATMt4WZs5iZx0iblZmLyMTLuVmYuATMt4WZn5iMtUWdz5yMx0SZvBnLw4yMx4CMuAzMuMTOtIXZk5WZyhSI", + value: + "!(render-93.30.0.13.0.poe-13.sue-2.gen-10.ben-32.fen-1f.len-10.ren-2a)!", + result: { + word: "render", + correct: 30, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 43, + date: "03.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dzis-wezowo-jak-w-sssliterin-12-02-2025-diffle-diffleen-grywebowe-36-letters-in-" +] = [ + { + date: "12.02.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUWNtMWaz5CN00ycpdnLwEWNtMXat5iM3ETL0hXZuAjL1EjLz4COx4yM00yczVmbrNWazhSI", + value: "!(sickness-43.18.3.15.0.ext-172.mis-5a0.wis-44.sic-5e)!", + result: { + word: "sickness", + correct: 18, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 36, + date: "12.02.2025", + }, + }, + { + date: "12.02.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZ10yYpNnL4QDOuUmY20CajNjLy0CeuQzMt4Waz5SNz0iZ1JmL5ETL3VmL00SasNnL5MTLvNWauATMtUWaw5iZx0ibp1mLxITLlh2YuAjL4EjL04SM04yM00yczVmbrNWazhSI", + value: + "!(sickness-43.41.4.18.0.che-21.min-1f.pie-10.ico-39.sli-4.ew-19.buf-35.sin-34.x-2.3ch-6be.848.sic-5e)!", + result: { + word: "sickness", + correct: 41, + position: 4, + incorrect: 18, + knownIncorrect: 0, + totalWords: 12, + totalLetters: 63, + date: "12.02.2025", + }, + }, + { + date: "12.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUWNtMWaz5yNx0yYpRmLiVTLoRXZuIjNt0WYn5CMucjLx4CNx4yM00yczVmbrNWazhSI", + value: "!(sickness-43.14.1.7.0.gam-62.eth-5b.dic-17.sic-5e)!", + result: { + word: "sickness", + correct: 14, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "12.02.2025", + }, + }, + { + date: "12.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZ14yNz0yYp5yN40Sar5COy0ybwNnL4YWLzFWbuAjL0EjLy4SMy4yM00yczVmbrNWazhSI", + value: "!(sickness-43.21.2.14.0.mas-f8.spo-28.ki-87.ic-37.5e)!", + result: { + word: "sickness", + correct: 21, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "12.02.2025", + }, + }, + { + date: "12.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlVTLj5iMy0ieuQjMtgXaugjNtkGcz5iNzETLhVXcuAjL0EjLw4iMy4yM00yczVmbrNWazhSI", + value: "!(sickness-43.22.0.14.0.qua-136.spi-68.ix-24.z-22.c-5e)!", + result: { + word: "sickness", + correct: 22, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "12.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dzisiaj-mam-dzien-dobrych-trafien-13-05-2025-diffle-diffleen-grywebowe-23-letter" +] = [ + { + date: "13.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNz4SNz0Cdh5mL2gTLhVmcuAjL04CMukTMuMzMx0Cbh52bpRXYuhSI", + value: "!(national-133.19.0.4.0.rea-86.nat-35.36)!", + result: { + word: "national", + correct: 19, + position: 0, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "13.05.2025", + }, + }, + { + date: "13.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNz0Cdh5iN50Cdv5mLyETLp9maugjM10CajNjLxITL0lmdukTMtU3bm5yY10yYl5mLw4yMx4iNugjMuMzMx0Cbh52bpRXYuhSI", + value: + "!(national-133.28.6.13.0.nec-5c.fou-19.vit-21.3ch-528.joi-12.not-96.at-36)!", + result: { + word: "national", + correct: 28, + position: 6, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 47, + date: "13.05.2025", + }, + }, + { + date: "13.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNz4SNz0Cdh5mLxITLlh2YuAjL04CMugTMuMzMx0Cbh52bpRXYuhSI", + value: "!(national-133.18.0.4.0.che-21.nat-35.36)!", + result: { + word: "national", + correct: 18, + position: 0, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "13.05.2025", + }, + }, + { + date: "13.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2MjL1MTL0FmbuAzNtEGa35iMlNTLoN2MugDNt4Wdk5iNmFTLsFmYuUGNtMXYs5iM20SbhdmLw4CNx4iMuQjMuMzMx0Cbh52bpRXYuhSI", + value: + "!(national-133.24.2.14.0.gam-62.las-4e.bal-1f6.dun-48.3ch-3e2.wha-70.nat-35.36)!", + result: { + word: "national", + correct: 24, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 40, + date: "13.05.2025", + }, + }, + { + date: "13.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2MjL1MTL0FmbuYGMx0CdhBnLyMTLzVXYuAjL34CMuEjMuMzMx0Cbh52bpRXYuhSI", + value: "!(national-133.21.0.7.0.aus-32.pat-10f.nat-35.36)!", + result: { + word: "national", + correct: 21, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "13.05.2025", + }, + }, + { + date: "13.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNz4SNz0Cdh5mL3MWLuVGZuAjL34CMuAjMuMzMx0Cbh52bpRXYuhSI", + value: "!(national-133.20.0.7.0.den-c7.nat-35.36)!", + result: { + word: "national", + correct: 20, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "13.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dzisiaj-nie-byl-dobry-dzien-na-gimnastyke-umyslu-10-02-2025-diffle-diffleen-gryw" +] = [ + { + date: "10.02.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNj5yN40ycvBnL2ETLvR3cuIWM10ichNmLiJWL0NWYuI2NtEWZy5CMuQjL54SMy4SM00CZyF2Y0N3bwhSI", + value: "!(postcard-41.21.9.4.0.rea-7b.act-bb.car-51b.sto-16.pos-87.c4)!", + result: { + word: "postcard", + correct: 21, + position: 9, + incorrect: 4, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "10.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQzYtM3bw5yMtg2Yy4CMkFjLkdTLoN2MuUDNtwWYm5SNmdTLoN2MuUjMx0ic1JmL3gTLz9GcugTNtMXY05iNx0yb0NnLxITLlh2YuAjL2EjL04SOy4SM00CZyF2Y0N3bwhSI", + value: + "!(postcard-41.29.4.16.0.che-21.sto-16.tas-58.pos-87.bur-125.3ch-7f5.fal-45.3ch-7d.1d0.2ch-3.pos-c4)!", + result: { + word: "postcard", + correct: 29, + position: 4, + incorrect: 16, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 49, + date: "10.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQzYtM3buMmMx0ychBnLx0icvRnLmRTMtQXdh5CMugjL24SNx4SM00CZyF2Y0N3bwhSI", + value: "!(postcard-41.15.6.8.0.aut-14f.tor-1.pas-12c.os-c4)!", + result: { + word: "postcard", + correct: 15, + position: 6, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "10.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQzYtM3buYGOi1ybyBnLyYWMt0WZk5CMukjLy4iMx4SM00CZyF2Y0N3bwhSI", + value: "!(postcard-41.12.2.9.0.dem-1f2.pro-b8f.os-c4)!", + result: { + word: "postcard", + correct: 12, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "10.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0MWLz5yMtU3bw5iNtcnbp5iM10ichRnLhhTLyFGZuIjNt0WYn5CMukjLy4iMy4SM00CZyF2Y0N3bwhSI", + value: "!(postcard-41.22.2.9.0.gam-62.dar-8a.tar-52.inw-6.pou-3.s-c4)!", + result: { + word: "postcard", + correct: 22, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "10.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQzYtM3bw5CMtE2b05SM50ycv5yYyETLzFGcuQTNtIXZz5CMugjL24yMy4SM00CZyF2Y0N3bwhSI", + value: "!(postcard-41.23.6.8.0.ser-54.pas-12c.os-91.toa-0.pos-c4)!", + result: { + word: "postcard", + correct: 23, + position: 6, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "10.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/easy-peasy-14-03-2025-diffle-diffleen-grywebowe-17-letters-in-3-words-large-gree" +] = [ + { + date: "14.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUWMt4Wat5SN1MTLoN2MuYDOtEWZy5CMuUjLy4CMx4yM30SZj5WathSI", + value: "!(mince-73.10.2.5.0.rea-86.3ch-355.min-1e)!", + result: { + word: "mince", + correct: 10, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "14.03.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZx0ibuETMtMWauMjMtQ3bt5CMukjLw4iMx4yM30SZj5WathSI", + value: "!(mince-73.12.0.9.0.mot-23.ic-11.n-1e)!", + result: { + word: "mince", + correct: 12, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + }, + }, + { + date: "14.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZx0ibp1mLh1yYp5mL5kjMtEGaj5CMuQjLy4CMx4yM30SZj5WathSI", + value: "!(mince-73.10.2.4.0.cha-299.nic-a.min-1e)!", + result: { + word: "mince", + correct: 10, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 16, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZx0ibp5CN50ibl5SNy0ib15yN50ibv1mLyYTLtF2ZuAjLwEjLx4iNx4yM30SZj5WathSI", + value: "!(mince-73.16.1.10.0.gam-62.mon-97.un-25.en-94.in-1e)!", + result: { + word: "mince", + correct: 16, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlFjL3QTLulWbucTMt0WZm5iZ20ibpBnLjFTLzVGZuAjL0EjLx4COx4yM30SZj5WathSI", + value: "!(mince-73.18.1.14.0.des-1c.pin-6f.fem-17.min-47.1e)!", + result: { + word: "mince", + correct: 18, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUWMt4mLxETLjlWbuITYt8mcw5CMucjLx4iMx4yM30SZj5WathSI", + value: "!(mince-73.12.1.7.0.pro-a2.mic-11.n-1e)!", + result: { + word: "mince", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZx0ibp1mL1ETLulmduEzYt4Wa35CN0ETLpVmcuAjLwEjLx4CNx4yM30SZj5WathSI", + value: "!(mince-73.14.1.10.0.rei-144.win-c1.vin-15.min-1e)!", + result: { + word: "mince", + correct: 14, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "14.03.2025", + }, + }, + { + date: "14.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZx0ibp5yMk1ibv1mL0ITMtUXcz5CMuETMuAjL54yM30SZj5WathSI", + value: "!(mince-73.9.0.11.0.squ-124.mon-d3.in-1e)!", + result: { + word: "mince", + correct: 9, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "14.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ech-mialem-wszystkie-litery-i-nie-umialem-ulozyc-prawidlowej-kolejnosci-a-przeci" +] = [ + { + date: "23.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTMtQ3Yv5SMz0CajNjL20ydhdmL2YTLjFGbuYTL19GduMTNtUmcj5CMuATMuQjL4EjLzITLu92ZhR3YvhSI", + value: "!(octagon-23.18.4.10.0.cre-53.tou-6.lac-66.gaw-6.3ch-31.oct-19)!", + result: { + word: "octagon", + correct: 18, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "23.01.2025", + }, + }, + { + date: "23.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5ETL0N2buImNt4WY35iN30ibugTOtMWY05COzETLh92YuQjMtE2bn5SM00ibhZmL3ETLhVXcuEWOt0WY05iMmJTLhR3cuEjNtYXZs5CMuYTMugjLxMjLzITLu92ZhR3YvhSI", + value: + "!(octagon-23.31.8.16.0.lev-61.sta-2f2.tam-9a.qua-17.fan-41.goa-24.coa-138.tac-98.n-76.wan-6b.oct-19)!", + result: { + word: "octagon", + correct: 31, + position: 8, + incorrect: 16, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 55, + date: "23.01.2025", + }, + }, + { + date: "23.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5ETL0N2buUWLvdWYucTYt4WYn5SMy0SZoNmLw4CNuQjL2EjLzITLu92ZhR3YvhSI", + value: "!(octagon-23.16.4.4.0.che-21.gan-a7.ago-e.oct-19)!", + result: { + word: "octagon", + correct: 16, + position: 4, + incorrect: 4, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "23.01.2025", + }, + }, + { + date: "23.01.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTMtQ3Yv5yNl1SY0NnLmdTLsFGduIjNt0WYn5CMuATMuIjL1EjLzITLu92ZhR3YvhSI", + value: "!(octagon-23.15.2.10.0.gam-62.tal-7f.sta-e7.oct-19)!", + result: { + word: "octagon", + correct: 15, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "23.01.2025", + }, + }, + { + date: "23.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOx4CZy0Cdj9mLjFWLuFmZuEWMx0CajNjL2MjMtIXZ25CMuATMuQjL4EjLzITLu92ZhR3YvhSI", + value: "!(octagon-23.18.4.10.0.ver-236.3ch-11a.fan-ac.oct-2d.19)!", + result: { + word: "octagon", + correct: 18, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "23.01.2025", + }, + }, + { + date: "23.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOx0Cdj9mLhFTMtg2Yz4SMl1CbhRnL4QWMtQnb15yNiFTLvR3cukTM30CajNjLmRTMtEmcm5CMuETMuMjLyIjLzITLu92ZhR3YvhSI", + value: + "!(octagon-23.22.3.11.0.fra-14f.3ch-719.sto-1b7.unt-1d8.tal-e1.3ch-11a.oct-19)!", + result: { + word: "octagon", + correct: 22, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 36, + date: "23.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ech-zwalilem-powinno-byc-w-2-slowach-ale-i-tak-gladko-06-04-2025-diffle-diffleen" +] = [ + { + date: "06.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0EjLl1CdjFmL2gTLhVmcuAjL04CMuYTMuYTOtcmbpR3YhhSI", + value: "!(acting-96.16.0.4.0.rea-86.act-e.14)!", + result: { + word: "acting", + correct: 16, + position: 0, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "06.04.2025", + }, + }, + { + date: "06.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTMtQ3Yh5yYhJTLuF2YuMjMtYWY35CM4YTLyFGcuUmMtQXYk5COx0SdhZnL40iah1mLw4CNx4SMuMzMuYTOtcmbpR3YhhSI", + value: + "!(acting-96.33.1.14.0.maj-8.vau-18.dat-2e.par-680.waf-23.can-2ac.act-14)!", + result: { + word: "acting", + correct: 33, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 48, + date: "06.04.2025", + }, + }, + { + date: "06.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNx0CdjFmLjNWMt8Gcz5iYtk2ah5iZy0SYsZmLyYTLtF2ZuAjL54SMuQTMuYTOtcmbpR3YhhSI", + value: "!(acting-96.14.1.9.0.gam-62.fla-2f.aki-b.spo-1cc.act-14)!", + result: { + word: "acting", + correct: 14, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "06.04.2025", + }, + }, + { + date: "06.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0EjLl1Cdj5COlJTL05mLyMTLzVXYuAjL24iMucTMuYTOtcmbpR3YhhSI", + value: "!(acting-96.17.2.6.0.aus-32.nt-2e8.ct-e.14)!", + result: { + word: "acting", + correct: 17, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "06.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/fajne-i-przyjemne-31-01-2025-diffle-diffleen-grywebowe-27-letters-in-4-words-lar" +] = [ + { + date: "31.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMmMtY3bu5yY10ibpZmLyMWLz5WauEjMtUGaj5CMuUjL14yNx4SMz0CdzlGblZ3buhSI", + value: "!(novelist-31.17.5.5.0.che-21.ins-c2.fin-5c.nov-2c)!", + result: { + word: "novelist", + correct: 17, + position: 5, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "31.01.2025", + }, + }, + { + date: "31.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMmMtYnL00SZuMWLp9mbuEzYt8mbz5iZ00CbpZmLwcjNtIXYw5CMugjL34SMy4SMz0CdzlGblZ3buhSI", + value: "!(novelist-31.21.7.8.0.par-670.fil-4f.sno-c1.noi-c.e-4.v-2c)!", + result: { + word: "novelist", + correct: 21, + position: 7, + incorrect: 8, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "31.01.2025", + }, + }, + { + date: "31.01.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMmMtY3bu5SOh1idulmLiVTLoRXZuIjNt0WYn5CMuYjLy4iNx4SMz0CdzlGblZ3buhSI", + value: "!(novelist-31.16.2.6.0.gam-62.eth-5b.inv-a9.nov-2c)!", + result: { + word: "novelist", + correct: 16, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "31.01.2025", + }, + }, + { + date: "31.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMmMtY3bu5yM00ybpZnLwEWLnFWbuAjLwEjLz4COx4SMz0CdzlGblZ3buhSI", + value: "!(novelist-31.18.3.10.0.mag-a0.vio-43.nov-2c)!", + result: { + word: "novelist", + correct: 18, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "31.01.2025", + }, + }, + { + date: "31.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMmMtYnL00Ccv5SMtInLwITLzVmL5YTLzFmLwQTLjVmL40ibp5mLyETL6VnZuAjL0EjLz4iNy4SMz0CdzlGblZ3buhSI", + value: + "!(novelist-31.26.3.14.0.fuz-12.nin-8.ec-40.as-69.es-20.r-1.op-4.v-2c)!", + result: { + word: "novelist", + correct: 26, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 43, + date: "31.01.2025", + }, + }, + { + date: "31.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyYy0idv5mLx0SZ29mLlVWMtg2Yz4iNy0ycpxmLkJTLs9WbuIzMtMXdh5CMucjL04SMy4SMz0CdzlGblZ3buhSI", + value: "!(novelist-31.21.4.7.0.aus-32.mol-2d.lis-26.3ch-1ee.ove-1.nov-2c)!", + result: { + word: "novelist", + correct: 21, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "31.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/fajne-nie-za-latwe-i-nie-za-trudne-13-04-2025-diffle-diffleen-grywebowe-26-lette" +] = [ + { + date: "13.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1UWLhxmZuYWNtkWYt5iY40SauFmL2gTLhVmcuAjL14CNucTMuMDMx0ybn5WatFGbmhSI", + value: "!(flamingo-103.17.4.5.0.rea-86.ani-8b.mai-5f.fla-e5)!", + result: { + word: "flamingo", + correct: 17, + position: 4, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "13.04.2025", + }, + }, + { + date: "13.04.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUTZtEGbm5COy0SahJmLkJTL0F2ZuAjL34SMuYTMuMDMx0ybn5WatFGbmhSI", + value: "!(flamingo-103.16.1.7.0.gat-2d.bai-28.fla-e5)!", + result: { + word: "flamingo", + correct: 16, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "13.04.2025", + }, + }, + { + date: "13.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNl1SYs5yMx0SYvZmLxYWL19WbuAjL34yMugTMuMDMx0ybn5WatFGbmhSI", + value: "!(flamingo-103.18.3.7.0.mou-f1.foa-13.la-e5)!", + result: { + word: "flamingo", + correct: 18, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "13.04.2025", + }, + }, + { + date: "13.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNl1SYsZmLiNTMt4WYt5SZy0ybtFmLyYTLtF2ZuAjLy4yMugTMuMDMx0ybn5WatFGbmhSI", + value: "!(flamingo-103.18.3.2.0.gam-62.amo-2e.man-13b.fla-e5)!", + result: { + word: "flamingo", + correct: 18, + position: 3, + incorrect: 2, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "13.04.2025", + }, + }, + { + date: "13.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1UWLhxmZuYWYt4Was5COy0yahJmLzQTMt4WYw5SOy0CZu5iMz0yc1FmLw4yMx4SMuUjMuMDMx0ybn5WatFGbmhSI", + value: + "!(flamingo-103.25.1.13.0.aus-32.nd-29.pan-143.bak-28.lin-af.fla-e5)!", + result: { + word: "flamingo", + correct: 25, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "13.04.2025", + }, + }, + { + date: "13.04.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNl1SYsZmL5ETLh1WaukTYx0SblRmLw4iMx4SNuQTMuMDMx0ybn5WatFGbmhSI", + value: "!(flamingo-103.14.5.12.0.dem-1a9.ima-19.fla-e5)!", + result: { + word: "flamingo", + correct: 14, + position: 5, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 31, + date: "13.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/fajne-niebanalne-20-05-2025-diffle-diffleen-grywebowe-27-letters-in-4-words-larg" +] = [ + { + date: "20.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK30Sd6FmL1QWLhx2ZuQTYtIXYo5iN40SYlJnLw4yMx4SMuMTMuADNx0SZyVnehhSI", + value: "!(azure-140.13.1.13.0.rea-86.har-a4.gla-d5.azu-7)!", + result: { + word: "azure", + correct: 13, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "20.05.2025", + }, + }, + { + date: "20.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcTL1pXYuMzNtUXYn5iZj1SZ1FnLw4yMx4iMuATMuADNx0SZyVnehhSI", + value: "!(azure-140.10.2.13.0.que-cf.gau-73.azu-7)!", + result: { + word: "azure", + correct: 10, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "20.05.2025", + }, + }, + { + date: "20.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK30Sd6FmL2EWLyVnZuMTLzJnL2ITLi1mL3UWMtwGbh5SMy0SZoNmLw4yNx4iMuUTMuADNx0SZyVnehhSI", + value: "!(azure-140.15.2.17.0.che-21.all-1e7.mb-26.rs-3.fur-a6.azu-7)!", + result: { + word: "azure", + correct: 15, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "20.05.2025", + }, + }, + { + date: "20.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK30Sd65iNl1Cdj5CZ4ETLzNnLlRTL1xmLz0ybmFmL4QTLkFGcuYTZtIXYi5iM20SbhdmLw4iMx4SMugjMuADNx0SZyVnehhSI", + value: + "!(azure-140.28.1.12.0.gam-62.bar-e6.pad-48.afo-3.lu-4e.ss-18d.ct-e6.zu-7)!", + result: { + word: "azure", + correct: 28, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 41, + date: "20.05.2025", + }, + }, + { + date: "20.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNtUneh5iMtkWY65yY00ichZmL1UTLhVmcukjZtUmcn5CN00idlRmLw4yNx4iMuYTMuADNx0SZyVnehhSI", + value: "!(azure-140.16.2.17.0.dev-44.gre-f9.rea-55.far-4c.zai-2.azu-7)!", + result: { + word: "azure", + correct: 16, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "20.05.2025", + }, + }, + { + date: "20.05.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK30Sd65CNz0SY3FmL2kTLh52cucTMtIXYk5iMh1ybyBnLw4yMx4SMuYTMuADNx0SZyVnehhSI", + value: "!(azure-140.16.1.13.0.pro-a2.dar-17.sna-96.awa-34.zu-7)!", + result: { + word: "azure", + correct: 16, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "20.05.2025", + }, + }, + { + date: "20.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNtUneugDMy0Cbs5CNz0yby5iMz0yc1FmLw4CMx4iMuQTMuADNx0SZyVnehhSI", + value: "!(azure-140.14.2.10.0.aus-32.ro-34.ll-208.zu-7)!", + result: { + word: "azure", + correct: 14, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "20.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/fajne-slowo-dobrze-ze-jest-w-tytule-jednej-z-moich-ulubionych-plyt-bo-bym-dluzej" +] = [ + { + date: "04.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwQjLzgTMuIGNtIXYt5yYz0SbyFmL2gTLhVmcuAjLwEjLz4CMy4yM20iclRWdhJXYthSI", + value: "!(marauder-63.20.3.10.0.rea-86.arm-3c.mar-4b.183.40)!", + result: { + word: "marauder", + correct: 20, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "04.03.2025", + }, + }, + { + date: "04.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwQTLyFWbuATL1J3ZuczMtUncj5iYx0CZpJnL2kTMtQmb15SY50SZ1FnLxITL39GcuAjL0EjLw4COy4yM20iclRWdhJXYthSI", + value: + "!(marauder-63.28.0.14.0.pow-21.que-9a.und-196.rid-1b.cru-37.gru-0.mar-40)!", + result: { + word: "marauder", + correct: 28, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "04.03.2025", + }, + }, + { + date: "04.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM00ich1mL40SYvxmLwkDNtIXYw5CZx0icyFmLxITLlh2YuAjLyEjLy4CMy4yM20iclRWdhJXYthSI", + value: "!(marauder-63.20.2.12.0.che-21.arr-1d.par-490.loa-8.mar-40)!", + result: { + word: "marauder", + correct: 20, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "04.03.2025", + }, + }, + { + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwQTLyFWbuEDNtUWZuMTL2FGZuIjZ00CajNjL30CZ1RmL3ETLhVXcuMWMtQWdq5iN50icpZmLjZ2NuUWY20CajNjL5ETLr9GcukTMtUXYt5yMt4Wdi5SY10Cdh1mLyYTLtF2ZuAjLyIjL14SOz4yM20iclRWdhJXYthSI", + value: + "!(marauder-63.39.5.22.0.gam-62.mat-5a.bun-3.mau-19.pok-19.3ch-6ae.7fc.fir-96.jud-1c.qua-17.dud-7.3ch-4f2.dav-3.ee-41.mar-40)!", + result: { + word: "marauder", + correct: 39, + position: 5, + incorrect: 22, + knownIncorrect: 0, + totalWords: 15, + totalLetters: 66, + }, + }, + { + date: "04.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwQTLyFWbuQmMx0SYyRmL1MTLiFmZuAjLxEjLx4yMx4yM20iclRWdhJXYthSI", + value: "!(marauder-63.13.1.11.0.fab-35.dra-12d.mar-40)!", + result: { + word: "marauder", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "04.03.2025", + }, + }, + { + date: "04.03.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwQTLyFmL0ITLkVnLkZDNt42bt5CMuYjLw4iNx4yM20iclRWdhJXYthSI", + value: "!(marauder-63.16.0.6.0.mon-46d.ud-24.ar-40)!", + result: { + word: "marauder", + correct: 16, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "04.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/fajne-slowo-i-moze-zmylic-slightly-smiling-face-podpowiedz-zwiazane-z-muzyka-28-" +] = [ + { + date: "28.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITLlVnLkFTMtUGcukzNtwWZz5iN40SYlJnLw4CMx4iMuETMugDNx0SZkVWdzhSI", + value: "!(suede-148.11.2.10.0.rea-86.sel-79.pe-11d.ue-2)!", + result: { + word: "suede", + correct: 11, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "28.05.2025", + }, + }, + { + date: "28.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITLl5CMy0CZuQTLwV3cuEjMtU3b55SMy0SZoNmLw4SMx4SMuQTMugDNx0SZkVWdzhSI", + value: "!(suede-148.14.1.11.0.che-21.you-21.sup-4.d-20.e-2)!", + result: { + word: "suede", + correct: 14, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "28.05.2025", + }, + }, + { + date: "28.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMtUWdz5iYyUTMt42bu5CMucjLw4COugDNx0SZkVWdzhSI", + value: "!(suede-148.8.0.7.0.non-152b.sue-2)!", + result: { + word: "suede", + correct: 8, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "28.05.2025", + }, + }, + { + date: "28.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKy0SZuAjMtQWdz5CNkRTLoN2MuMzYtwmLjVTLu5COy0SaucTLw5yNx0yY1NnLw4yMx4CMuQjMugDNx0SZkVWdzhSI", + value: + "!(suede-148.24.0.13.0.suc-17.p-7.i-28.n-5c.l-c3.3ch-4d4.sud-20.e-2)!", + result: { + word: "suede", + correct: 24, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 37, + date: "28.05.2025", + }, + }, + { + date: "28.05.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKy0SZ1NnLyEWLvJHcuAjLwEjLw4iNugDNx0SZkVWdzhSI", + value: "!(suede-148.6.0.10.0.pro-a2.sue-2)!", + result: { + word: "suede", + correct: 6, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "28.05.2025", + }, + }, + { + date: "28.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMtUmLwEGNtImLlNTLyVnLzMTLnVmL0YjMtUGcz5SO20ibv1mLw4SNx4SMugTMugDNx0SZkVWdzhSI", + value: "!(suede-148.18.1.15.0.mon-69.spe-264.eg-33.ur-3e.b-4a0.e-2)!", + result: { + word: "suede", + correct: 18, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "28.05.2025", + }, + }, + { + date: "28.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMtUWduAjMtU2ducDNtg2YuIzMtUGbuITL2V2cuUTZx0iZlJnLw4COx4SMuAjMugDNx0SZkVWdzhSI", + value: "!(suede-148.20.1.18.0.ref-1e5.sev-2.le-32.ch-47.we-20.ue-2)!", + result: { + word: "suede", + correct: 20, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "28.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/fajne-slowo-troche-sie-nakombinowalem-16-05-2025-diffle-diffleen-grywebowe-28-le" +] = [ + { + date: "16.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETMtIXZo5iY00Cb1JmLw0iclZnLxEWLhJnZuYDOtEWZy5CMuITMuIjL0EjL2MTMtQGbhJXZohSI", + value: "!(herald-136.14.2.12.0.rea-86.fra-a1.ver-0.bul-4b.her-11)!", + result: { + word: "herald", + correct: 14, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "16.05.2025", + }, + }, + { + date: "16.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETMuATLyVGaucjYtUGa35SMy0SZoNmLw4COuAjL3EjL2MTMtQGbhJXZohSI", + value: "!(herald-136.17.0.8.0.che-21.whe-b7.her-0.11)!", + result: { + word: "herald", + correct: 17, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "16.05.2025", + }, + }, + { + date: "16.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxETLyVGauUTLyVmZuAzNtInb15SYx0ichRmLlNTMt8Gch5CMuQTMuQjL2EjL2MTMtQGbhJXZohSI", + value: "!(herald-136.16.4.14.0.apo-13e.dar-1a.unr-70.fer-5.her-11)!", + result: { + word: "herald", + correct: 16, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "16.05.2025", + }, + }, + { + date: "16.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMx0iclhmLxIDOugDNy0CajNjL10yc1RmLz0iclNmL1EWLhVGbuATLyVGduIjNt0WYn5CMuQTMuMjL4EjL2MTMtQGbhJXZohSI", + value: + "!(herald-136.18.3.14.0.gam-62.ter-0.lea-a5.cer-3.dus-5.3ch-248.821.her-11)!", + result: { + word: "herald", + correct: 18, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 35, + date: "16.05.2025", + }, + }, + { + date: "16.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETMuATLyVGauIzNx0Cd4VmLw4SOuAjL0EjL2MTMtQGbhJXZohSI", + value: "!(herald-136.14.0.9.0.ext-172.her-0.11)!", + result: { + word: "herald", + correct: 14, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "16.05.2025", + }, + }, + { + date: "16.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETMtIXZo5SYtcWZy5iZ30SYlRmLh1SdlZmLw4iNuMjL2EjL2MTMtQGbhJXZohSI", + value: "!(herald-136.16.3.6.0.feu-a.dea-7f.reg-a.her-11)!", + result: { + word: "herald", + correct: 16, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "16.05.2025", + }, + }, + { + date: "16.05.2025", + nick: "Tomekku", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETMtInLyIWLhVGauMWLhh2duADZtUWdx5CMuATMuEjL2EjL2MTMtQGbhJXZohSI", + value: "!(herald-136.16.1.10.0.que-d0.wha-c.hea-b2.r-11)!", + result: { + word: "herald", + correct: 16, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "16.05.2025", + }, + }, + { + date: "16.05.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMx0iclhmLjJTLuV3cuUTLyVmZuITYt8mcw5CMuITMuMjLzEjL2MTMtQGbhJXZohSI", + value: "!(herald-136.13.3.12.0.pro-a2.fer-5.sun-2c.her-11)!", + result: { + word: "herald", + correct: 13, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "16.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/fajne-tak-jak-w-polskim-drugie-slowo-dobrze-mnie-naprowadzilo-30-05-2025-diffle-" +] = [ + { + date: "30.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlJTLn5SOi1icpZnL2gTLhVmcuAjL14SMuYTMuATNx0yc19mcvdWa2hSI", + value: "!(vigorous-150.16.1.5.0.rea-86.vir-b9.g-2e)!", + result: { + word: "vigorous", + correct: 16, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "30.05.2025", + }, + }, + { + date: "30.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlJTLnlmduITLzV3dugTLylmYuQ2MuITLv92ZuUzNtc2Zh5yY10ybvdmL20Se0VmLw4iNx4SMuYjMuATNx0yc19mcvdWa2hSI", + value: + "!(vigorous-150.26.1.16.0.ety-6.goo-5c.agg-75.goo-2.3d.bir-8.wus-2.vig-2e)!", + result: { + word: "vigorous", + correct: 26, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 43, + date: "30.05.2025", + }, + }, + { + date: "30.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUmMtcWa25iYz0SdyRmLwIWLvxmZuMmNtcWay5SMy0SZoNmLw4yMx4SMuYTMuATNx0yc19mcvdWa2hSI", + value: "!(vigorous-150.16.1.13.0.che-21.rig-6c.flo-b0.dru-3b.vig-2e)!", + result: { + word: "vigorous", + correct: 16, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "30.05.2025", + }, + }, + { + date: "30.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlJjLzMTLnlmduYTZ34iM2QTLoN2MuEmMtQ3bk5yMt4Wdi5iM20SbhdmLw4iMx4SMuIjMuATNx0yc19mcvdWa2hSI", + value: + "!(vigorous-150.22.1.12.0.gam-62.bun-3.dot-2a.3ch-462.7e6.vig-33.2e)!", + result: { + word: "vigorous", + correct: 22, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 35, + date: "30.05.2025", + }, + }, + { + date: "30.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUmMtcWa25SZ50icvBnLxATMtI3b35SZ00ibv1mLw4SMx4SMukTMuATNx0yc19mcvdWa2hSI", + value: "!(vigorous-150.19.1.11.0.mon-4e.wor-101.por-9e.vig-2e)!", + result: { + word: "vigorous", + correct: 19, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "30.05.2025", + }, + }, + { + date: "30.05.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlJTLnlmduMTLvJXauAzMtMXdo5iMh1ybyBnLw4iMx4SMuUTMuATNx0yc19mcvdWa2hSI", + value: "!(vigorous-150.15.1.12.0.pro-a2.hus-30.iro-3.vig-2e)!", + result: { + word: "vigorous", + correct: 15, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "30.05.2025", + }, + }, + { + date: "30.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUmMtcWa25iY50SayZmL3QTLlJ3YuAjL24iMuMTMuATNx0yc19mcvdWa2hSI", + value: "!(vigorous-150.13.2.6.0.cre-47.fri-9b.vig-2e)!", + result: { + word: "vigorous", + correct: 13, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "30.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/frustrujaco-oczywiste-28-02-2025-diffle-diffleen-grywebowe-41-letters-in-7-words" +] = [ + { + date: "28.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEWOtkGaj5SMtkGa35SN14SM54SN4ETLph2YuMjNx0CblhmL4ETLohXZuAjL3EjLy4iMy4SO10iZllGajhSI", + value: "!(chief-59.22.2.17.0.exh-18.hel-163.chi-185.91.55.whi-1.chi-9a)!", + result: { + word: "chief", + correct: 22, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "28.02.2025", + }, + }, + { + date: "28.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhlTLph2YuIWNtgGdl5iM20SbhdmLw4SNuIjL44SO10iZllGajhSI", + value: "!(chief-59.8.2.5.0.gam-62.eth-5b.chi-9a)!", + result: { + word: "chief", + correct: 8, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 15, + date: "28.02.2025", + }, + }, + { + date: "28.02.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEWOuY2My4iZhFTLphmL1YTLzV3YuAjLxEjLw4yMx4SO10iZllGajhSI", + value: "!(chief-59.13.0.11.0.cus-65.hi-1af.23f.9a)!", + result: { + word: "chief", + correct: 13, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "28.02.2025", + }, + }, + { + date: "28.02.2025", + nick: "sk4ndal", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY54COi1SauUWZy4iM3ITLlh2YuEjMtEWZw5iZh1iYlRmL2ITLvJ3duAjL0EjLx4SOx4SO10iZllGajhSI", + value: "!(chief-59.19.1.14.0.wro-26.deb-af.pea-21.che-272.2ee.i-b8.9a)!", + result: { + word: "chief", + correct: 19, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 34, + date: "28.02.2025", + }, + }, + { + date: "28.02.2025", + nick: "pingWIN", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEWOuUGMx4CZ5ETLp5iN10ybuQGZy0SZoNmLwMWMtEGaz5iYxETL1JHduAjL0EjLw4iMy4SO10iZllGajhSI", + value: "!(chief-59.22.0.14.0.tru-11b.sha-1c0.che-2dd.o-56.i-19d.10e.9a)!", + result: { + word: "chief", + correct: 22, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 36, + date: "28.02.2025", + }, + }, + { + date: "28.02.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEWOuUTNuUGNy4SOzEjLzkTMtkmLxITLlh2YuAjL0EjLx4yMy4SO10iZllGajhSI", + value: "!(chief-59.23.1.14.0.che-21.i-193.139.24e.55.9a)!", + result: { + word: "chief", + correct: 23, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "28.02.2025", + }, + }, + { + date: "28.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhlTLph2YuEzY14yMhNTLoN2MuIzNtkGdz5yMtkWYm5iN0ITLi5WduAjL0EjLx4yMx4SO10iZllGajhSI", + value: "!(chief-59.13.1.14.0.unb-246.fai-3.sti-72.3ch-3a3.5c1.chi-9a)!", + result: { + word: "chief", + correct: 13, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 28, + date: "28.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/glupi-jestem-moglem-slowo-wczesniej-zgadnac-18-02-2025-diffle-diffleen-grywebowe" +] = [ + { + date: "18.02.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcjMt82bm5SYy0Cb1RmL1QTLzlmYuYDOtEWZy5CMuETMuIjLzEjL5QTLoNXas92bmhSI", + value: "!(foolish-49.13.2.11.0.rea-86.bis-45.dul-2a.foo-27)!", + result: { + word: "foolish", + correct: 13, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "18.02.2025", + }, + }, + { + date: "18.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3ITLv9mZuUjZtg2Yz4SNtQGZv5yMx0ycvBnLwMTL09mbuIjNt0WYn5CMuMTMuAjL3EjL5QTLoNXas92bmhSI", + value: "!(foolish-49.17.0.13.0.gam-62.not-30.pos-13.odd-5.3ch-f5.foo-27)!", + result: { + word: "foolish", + correct: 17, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "18.02.2025", + }, + }, + { + date: "18.02.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNy0ybvZmL3ETLvJWYugzNz0CbvBnL2ITLzlGbuYTMtkWdn5CMuETMuAjLyIjL5QTLoNXas92bmhSI", + value: "!(foolish-49.22.0.11.0.gui-16.lis-26.pol-378.abo-17.foo-27)!", + result: { + word: "foolish", + correct: 22, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "18.02.2025", + }, + }, + { + date: "18.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcjMt82bm5CZ2ITLoN2MuMTMtM3bw5yM00ibv1mLw4COuAjL0EjL5QTLoNXas92bmhSI", + value: "!(foolish-49.14.0.8.0.mon-43.pos-13.3ch-26d.foo-27)!", + result: { + word: "foolish", + correct: 14, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "18.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/heh-znowu-o-1-literke-sie-pomylilem-14-02-2025-diffle-diffleen-grywebowe-32-lett" +] = [ + { + date: "14.02.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZ14iNt4Wdy5CMt4mc15iM1ETLhJ3ZuMzMz0SbvNmLw4CMx4yMukTMuUDNtkXY35WdyhSI", + value: "!(runway-45.19.3.10.0.com-333.gra-152.urn-0.run-6.5f)!", + result: { + word: "runway", + correct: 19, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmVjL3ITLuVncuQTLq5WduQmMtUXYm5iZ40ibvNmLw4iNx4SMucTMuUDNtkXY35WdyhSI", + value: "!(runway-45.17.1.16.0.con-8f.fau-2d.unj-4.run-27.5f)!", + result: { + word: "runway", + correct: 17, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmVjL20ib1JnL5IWLuVHcugzNtkGaj5CMt42buQzYt4WYy5iM20SbhdmLw4iNx4iMuEjMuUDNtkXY35WdyhSI", + value: "!(runway-45.21.2.16.0.gam-62.ran-c4.on-0.chi-78.pun-b9.run-6.5f)!", + result: { + word: "runway", + correct: 21, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZ10ib1JnLxcTLvJnZuIWZtEmcw5SN40SZtFmLw4iMx4iMuMTMuUDNtkXY35WdyhSI", + value: "!(runway-45.13.2.12.0.ame-85.pra-eb.fro-71.run-5f)!", + result: { + word: "runway", + correct: 13, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmVTLuVncuYWMtInb15yY00ib1ZmLkZTMtEGbw5SMy0SZoNmLw4yMx4yMuQTMuUDNtkXY35WdyhSI", + value: "!(runway-45.14.3.13.0.che-21.pla-16d.fun-4c.unr-1f.run-5f)!", + result: { + word: "runway", + correct: 14, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYWNuYTLu5SNtcmLw0Sa15CMh1ibhJnL5QWLyFmZuMGMy0ich1mLw4yMx4yMuMjMuUDNtkXY35WdyhSI", + value: "!(runway-45.23.3.13.0.mar-20c.far-d9.ran-a0.ui-0.g-5.n-6.5f)!", + result: { + word: "runway", + correct: 23, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "14.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/i-kolejna-latwizna-04-02-2025-diffle-diffleen-grywebowe-37-letters-in-5-words-la" +] = [ + { + date: "04.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEjNt4mLh1yZhRmLkFTLkFmYuEjNt4Wdn5CZk1SarNnLw4CNx4yMuAjMuUzMtIXZn5WYkhSI", + value: "!(danger-35.20.3.14.0.ski-dd.gun-61.bad-1d.dag-a.n-61)!", + result: { + word: "danger", + correct: 20, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "04.02.2025", + }, + }, + { + date: "04.02.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxYTLu5SYtcmL4ETLlFmL4ETMtEmcuYmYtEWZk5CO40SYlJnLw4CMx4yMuQjMuUzMtIXZn5WYkhSI", + value: "!(danger-35.24.3.10.0.rea-88.dea-bf.ra-118.ae-18.g-a.n-61)!", + result: { + word: "danger", + correct: 24, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "04.02.2025", + }, + }, + { + date: "04.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSM20ibhRmL5QTLn5WYuIzMtcWYw5SO00ichxmLyYTLtF2ZuAjL04SMuIjMuUzMtIXZn5WYkhSI", + value: "!(danger-35.22.1.4.0.gam-62.lar-49.pag-32.ang-49.dan-61)!", + result: { + word: "danger", + correct: 22, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "04.02.2025", + }, + }, + { + date: "04.02.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSM20ibhRmL5QTLn5WYuUTMt4WYt5iYzETLuFmYuMWMtYXYy5SMl1SeyNmLw4iMx4yMuQjMuUzMtIXZn5WYkhSI", + value: "!(danger-35.24.3.12.0.cry-e1.rav-1c.ban-13b.man-15.ang-49.dan-61)!", + result: { + word: "danger", + correct: 24, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "04.02.2025", + }, + }, + { + date: "04.02.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSM20ibhRmL5QTLn5WYuUjNt4WYy5SNx0yZuFmLxITLlh2YuAjL14iMuIjMuUzMtIXZn5WYkhSI", + value: "!(danger-35.22.2.5.0.che-21.ang-15.ran-65.ang-49.dan-61)!", + result: { + word: "danger", + correct: 22, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "04.02.2025", + }, + }, + { + date: "04.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSM20ibhRmL1kTLuFGcuUGNt4WY35SYj1ibhRnLlVWMtEmbh5CNz0iYhZmLw4iNx4SMuIjMuUzMtIXZn5WYkhSI", + value: "!(danger-35.22.1.16.0.fab-34.ana-1ee.tan-ca.wan-4e.pan-95.dan-61)!", + result: { + word: "danger", + correct: 22, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "04.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/i-to-tez-nie-01-05-2025-diffle-diffleen-grywebowe-23-letters-in-3-words-large-gr" +] = [ + { + date: "01.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMx0Say9mLhRGNt42bt5SZiJTLhxGcuAjLz4iNuQTMuEjMx0CbhRnbllmcvhSI", + value: "!(oriental-121.14.6.3.0.pla-2be.mon-4da.ori-11)!", + result: { + word: "oriental", + correct: 14, + position: 6, + incorrect: 3, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "01.05.2025", + }, + }, + { + date: "01.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMx4SMy0Say9mLyUTL19WbuY2Ny0CajNjLkRTLpJ3duUmNx0SayBnL3UTLpJnYuQTL29mcuETMtQnbp5SMy0SZoNmLw4SOx4iNuczMuEjMx0CbhRnbllmcvhSI", + value: + "!(oriental-121.37.6.19.0.che-21.int-11.rov-4.bri-57.pri-16e.wri-4d.3ch-27f.mou-52.ori-21.11)!", + result: { + word: "oriental", + correct: 37, + position: 6, + incorrect: 19, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 62, + date: "01.05.2025", + }, + }, + { + date: "01.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETMtkmcv5iM3ETL0hXZuAjL24iMuMTMuEjMx0CbhRnbllmcvhSI", + value: "!(oriental-121.13.2.6.0.ext-172.ori-11)!", + result: { + word: "oriental", + correct: 13, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "01.05.2025", + }, + }, + { + date: "01.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETMtkmcv5iNtUncw5yY10CblJnLyYTLtF2ZuAjL24CNugTMuEjMx0CbhRnbllmcvhSI", + value: "!(oriental-121.18.4.6.0.gam-62.rel-5c.pru-6.ori-11)!", + result: { + word: "oriental", + correct: 18, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "01.05.2025", + }, + }, + { + date: "01.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxETLpJ3buUWZt4WZy5iY2QTL05WauEWL1VmZuAjL24yMuIjMuEjMx0CbhRnbllmcvhSI", + value: "!(oriental-121.22.3.6.0.feu-a.int-46b.ren-ee.ori-11)!", + result: { + word: "oriental", + correct: 22, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "01.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/idziemy-chyba-na-jakis-rekord-28-04-2025-diffle-diffleen-grywebowe-14-letters-in" +] = [ + { + date: "28.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwUTLlJ3ZuYmMtYXak5CMuUjLy4yNugTMx0yalVmcnhSI", + value: "!(greek-118.7.2.5.0.div-2f.gre-50)!", + result: { + word: "greek", + correct: 7, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "28.04.2025", + }, + }, + { + date: "28.04.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpATNuUzYuIDNuIWNukjZtUmcn5iMh1ybyBnLw4CNx4CMuIjMugTMx0yalVmcnhSI", + value: "!(greek-118.22.0.14.0.pro-a2.gre-f9.5b.42.c5.50)!", + result: { + word: "greek", + correct: 22, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "28.04.2025", + }, + }, + { + date: "28.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpATNtUmcn5iZi1SZyJmLjlTLlJnZuETMtIXds5yYh1SZyRmL2ITOtUmcw5iN40SYlJnLw4yNx4CMukTMugTMx0yalVmcnhSI", + value: + "!(greek-118.19.0.17.0.rea-86.pre-926.dre-ac.lur-11.fre-9c.bre-bf.gre-50)!", + result: { + word: "greek", + correct: 19, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 36, + date: "28.04.2025", + }, + }, + { + date: "28.04.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwUTLlJ3ZuMjMtQ3bt5CMugjLy4yNugTMx0yalVmcnhSI", + value: "!(greek-118.7.2.8.0.mot-23.gre-50)!", + result: { + word: "greek", + correct: 7, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "28.04.2025", + }, + }, + { + date: "28.04.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM14yM00SZydmLxITLlh2YuAjL44SMuATMugTMx0yalVmcnhSI", + value: "!(greek-118.10.1.8.0.che-21.gre-43.50)!", + result: { + word: "greek", + correct: 10, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "28.04.2025", + }, + }, + { + date: "28.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwUTLlJ3ZuQ2YtUmci5yMtA3by5iMz0yc1FmLw4SMx4SMuETMugTMx0yalVmcnhSI", + value: "!(greek-118.11.1.11.0.aus-32.rop-3.bre-cd.gre-50)!", + result: { + word: "greek", + correct: 11, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "28.04.2025", + }, + }, + { + date: "28.04.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwUjL5YWLlJ3ZucDNtUmcj5iY50yc11mLw4CNx4SMuITMugTMx0yalVmcnhSI", + value: "!(greek-118.12.1.14.0.mus-9b.cre-47.gre-f9.50)!", + result: { + word: "greek", + correct: 12, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "28.04.2025", + }, + }, + { + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwUjL3MmLiVjLyQTLlJnLyYTLtF2ZuAjL14SMukTMugTMx0yalVmcnhSI", + value: "!(greek-118.19.1.5.0.gam-62.re-42.5b.c7.50)!", + result: { + word: "greek", + correct: 19, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/irytujace-strzelanie-kula-w-plot-a-przedostatnie-slowo-to-juz-w-ogole-25-02-2025" +] = [ + { + date: "25.02.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpAjYuEWOuYjMuQmZuATNtkGbz5yN00Sdh5mLw4SOuMjL1IjL2UTLkVGcwlGbzhSI", + value: "!(slipped-56.25.3.9.0.nau-47.sli-50.fd.26.9a.b0)!", + result: { + word: "slipped", + correct: 25, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "25.02.2025", + }, + }, + { + date: "25.02.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMi5yMtkGbz5iM00SZydnLw4iNuEjL1EjL2UTLkVGcwlGbzhSI", + value: "!(slipped-56.15.1.6.0.wre-42.sli-3.b0)!", + result: { + word: "slipped", + correct: 15, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "25.02.2025", + }, + }, + { + date: "25.02.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMi5SYy4iM20SasNnLyQTLsJ2buATLmlGbuEjMtUGaj5CMuQTMuEjL1IjL2UTLkVGcwlGbzhSI", + value: "!(slipped-56.25.1.14.0.che-21.lif-0.obl-42.sli-62.2a.b0)!", + result: { + word: "slipped", + correct: 25, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "25.02.2025", + }, + }, + { + date: "25.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMi1Sas5iM10SauNnLxYTLllGcuIWNtgGdl5iM20SbhdmLw4COuMjL1EjL2UTLkVGcwlGbzhSI", + value: "!(slipped-56.15.3.8.0.gam-62.eth-5b.pie-61.sni-52.li-b0)!", + result: { + word: "slipped", + correct: 15, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "25.02.2025", + }, + }, + { + date: "25.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpAjYuITNuQjZuEmMuMTLp5CN30SZsNnLzMTLhVGbuMTNtYWZi5CMuITMuMjL0MjL2UTLkVGcwlGbzhSI", + value: "!(slipped-56.34.3.12.0.bef-53.lea-33.sle-74.i-3.2a.f4.52.b0)!", + result: { + word: "slipped", + correct: 34, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 49, + date: "25.02.2025", + }, + }, + { + date: "25.02.2025", + nick: "ulsterboy", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMi5SY54SO50SauATOtEmLmhTLlxmLlFjMtIXZuYTNt02bz5CMuETMuEjL4IjL2UTLkVGcwlGbzhSI", + value: "!(slipped-56.28.1.11.0.som-56.er-21e.le-8f.a-90.i-99.9a.b0)!", + result: { + word: "slipped", + correct: 28, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "25.02.2025", + }, + }, + { + date: "25.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwIWLpxmL5gTLpd3cukjNtUWaw5COtIWdh5CMuATMuEjL2EjL2UTLkVGcwlGbzhSI", + value: "!(slipped-56.16.1.10.0.aub-8.pie-69.swi-89.li-b0)!", + result: { + word: "slipped", + correct: 16, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "25.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/its-complicated-23-03-2025-diffle-diffleen-grywebowe-37-letters-in-5-words-large" +] = [ + { + date: "23.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQWMtIXauImMtIHZh5SOyETLyF2duMWOt0WYy5CMwETLhVGauAjLyEjL04SMy4iM40CdmFmcjJXahhSI", + value: "!(aircraft-82.21.4.12.0.hea-100.ram-9c.war-129.adr-2b.ir-1d)!", + result: { + word: "aircraft", + correct: 21, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "23.03.2025", + }, + }, + { + date: "23.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkFTLylWYugzNtEmcj5CZyYTLoN2MuYDOtEWZy5CMuQjLy4SOx4iM40CdmFmcjJXahhSI", + value: "!(aircraft-82.19.2.4.0.rea-86.3ch-62d.cra-78.air-1d)!", + result: { + word: "aircraft", + correct: 19, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "23.03.2025", + }, + }, + { + date: "23.03.2025", + nick: "Chrabonszcz", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZx0icpFmLzcTL1xGcuYTYtIXauQWLkJWYuEjL1EjLw4yNx4iM40CdmFmcjJXahhSI", + value: "!(aircraft-82.17.0.15.1.abd-d.ir-a6.plu-73.air-1d)!", + result: { + word: "aircraft", + correct: 17, + position: 0, + incorrect: 15, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 32, + date: "23.03.2025", + }, + }, + { + date: "23.03.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQWMtIXah5iNx0yY1ZmLjhjLh1icp5yMx0SayFmLyYTLtF2ZuAjLwEjLy4CMy4iM40CdmFmcjJXahhSI", + value: "!(aircraft-82.20.2.10.0.gam-62.ari-13.ir-a.8c.fuc-16.air-1d)!", + result: { + word: "aircraft", + correct: 20, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "23.03.2025", + }, + }, + { + date: "23.03.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkFTLylWYuQTLhJ3YuMDNtwWZy5CMukjLx4CNx4iM40CdmFmcjJXahhSI", + value: "!(aircraft-82.14.1.9.0.rel-43.cra-4.air-1d)!", + result: { + word: "aircraft", + correct: 14, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "23.03.2025", + }, + }, + { + date: "23.03.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQWMtIXah5SNtQXa35iZh1yZpNnLyEWLvJHcuAjL2EjLz4SMy4iM40CdmFmcjJXahhSI", + value: "!(aircraft-82.21.3.16.0.pro-a2.sig-af.wit-5.air-1d)!", + result: { + word: "aircraft", + correct: 21, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 40, + date: "23.03.2025", + }, + }, + { + date: "23.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZx0icpFmL3MWLhN2cuETMtEmc35CNj1ibhJnLzITLk9WbuAjLxEjLx4SOx4iM40CdmFmcjJXahhSI", + value: "!(aircraft-82.19.1.11.0.mod-23.ran-c4.wra-11.sca-c7.air-1d)!", + result: { + word: "aircraft", + correct: 19, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "23.03.2025", + }, + }, + { + date: "23.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZx0icpFmL5QWLyFmZuITYtMWY05iNyUTLyF2YugDO10CajNjL0ITLpJnYuATLjRXauMWLjlGduUWYuQzMtIXah5SZ20CbpBnLlRWMtE2Yz5yYyQTLhh2YuMjLwIjL44iNz4iM40CdmFmcjJXahhSI", + value: + "!(aircraft-82.36.8.20.3.cha-42c.sca-1de.pil-6e.air-34.ae.tic-c.itc-0.bri-24.3ch-588.car-526.tac-a2.far-d9.air-1d)!", + result: { + word: "aircraft", + correct: 36, + position: 8, + incorrect: 20, + knownIncorrect: 3, + totalWords: 13, + totalLetters: 64, + date: "23.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/jak-to-szlo-w-monkey-island-05-02-2025-diffle-diffleen-grywebowe-21-letters-in-3" +] = [ + { + date: "05.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZtIWdukDZx0CdlJnL40SbyFmLw4CMx4CMuETMuYzMtIXZiJWdyhSI", + value: "!(rubber-36.11.0.10.0.arm-8.ret-1d9.ub-d)!", + result: { + word: "rubber", + correct: 11, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "05.02.2025", + }, + }, + { + date: "05.02.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZtIWdy5yNtQXai5CN1ETLu9WbuAjMtQWdugjMx0CclJnLw4CNx4CMuITMuYzMtIXZiJWdyhSI", + value: "!(rubber-36.12.0.14.0.rep-128.ud-20.mon-154.bit-7.rub-d)!", + result: { + word: "rubber", + correct: 12, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "05.02.2025", + }, + }, + { + date: "05.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZtImL2ITLk5yNtwWdy5iYx0ibvRnLyYTLtF2ZuAjL44CMugTMuYzMtIXZiJWdyhSI", + value: "!(rubber-36.18.0.8.0.gam-62.ton-1b.rul-7.d-26.b-d)!", + result: { + word: "rubber", + correct: 18, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "05.02.2025", + }, + }, + { + date: "05.02.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZtIWdy5iY00yY1JmLwMTLphGcuAjL2EjLx4SOuYzMtIXZiJWdyhSI", + value: "!(rubber-36.9.1.16.0.phi-30.buc-4b.rub-d)!", + result: { + word: "rubber", + correct: 9, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "05.02.2025", + }, + }, + { + date: "05.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQWLiVncuITLiVHbuQTNtI3bw5iMz0yc1FmLw4CMx4CMuUTMuYzMtIXZiJWdyhSI", + value: "!(rubber-36.15.0.10.0.aus-32.por-54.lub-2.rub-d)!", + result: { + word: "rubber", + correct: 15, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "05.02.2025", + }, + }, + { + date: "05.02.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQWLiVncuE2N20CajNjL5YTLoNmMuAjY30CajNjLxUTMtUmci5yNwETLoN2MuQWMtIXdq5SZy0SZyZmLyETLyVHbuQmNtU3bw5SMy0SZoNmLw4SOx4CNuQjMuYzMtIXZiJWdyhSI", + value: + "!(rubber-36.24.4.19.0.che-21.pou-6d.lur-12.fre-2e.jur-1d.3ch-107.bre-151.3ch-7b0.2ch-69.3ch-67a.rub-d)!", + result: { + word: "rubber", + correct: 24, + position: 4, + incorrect: 19, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 47, + date: "05.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/jakze-adekwatne-smile-18-06-2025-diffle-diffleen-grywebowe-35-letters-in-6-words" +] = [ + { + date: "18.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKi1iYp5iMx0Cb1dmLiFTLoNmMuUWOtIWZk5COiFTLpJHcuYDOtEWZy5CMuATMuMjLyIjL5YTMtg2cpJXZiJWanhSI", + value: + "!(gibberish-169.22.3.10.0.rea-86.pri-1b8.deb-9e.2ch-1b.gul-12.ib-b)!", + result: { + word: "gibberish", + correct: 22, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "18.06.2025", + }, + }, + { + date: "18.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKi5SNtIWauMWMtkmcn5yN20iYtVmLiFTLiFGduIWMtIWdj5iY10SZlJmL2ATMtUmdv5SMuUTMuIjLxMjL5YTMtg2cpJXZiJWanhSI", + value: + "!(gibberish-169.31.2.15.1.ove-106.bee-5b.cub-1b.tab-1b.emb-67.gri-1c.ib-5.b)!", + result: { + word: "gibberish", + correct: 31, + position: 2, + incorrect: 15, + knownIncorrect: 1, + totalWords: 8, + totalLetters: 48, + date: "18.06.2025", + }, + }, + { + date: "18.06.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYtIWan5CMtcXZm5CO1UTLzlWbuEDZ20CajNjL00Say5yNtMXan5CZlFTLvBnL0cTLlx2cuEjMtUGaj5SMucTMuUjL3IjL5YTMtg2cpJXZiJWanhSI", + value: + "!(gibberish-169.27.5.17.1.che-21.sle-74.po-1ed.gis-7.ri-4.3ch-6d1.mis-558.few-0.gib-b)!", + result: { + word: "gibberish", + correct: 27, + position: 5, + incorrect: 17, + knownIncorrect: 1, + totalWords: 9, + totalLetters: 49, + date: "18.06.2025", + }, + }, + { + date: "18.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYtIWan5yNtwWdo5SNm1SayNmL00ycpJnLllTLiVGZuQzMt42buIjNt0WYn5CMuATMuIjL3IjL5YTMtg2cpJXZiJWanhSI", + value: + "!(gibberish-169.27.2.10.0.gam-62.on-34.deb-9e.ris-4.cri-f5.hul-7.gib-b)!", + result: { + word: "gibberish", + correct: 27, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "18.06.2025", + }, + }, + { + date: "18.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKi1iYpdmLjJWLyVmZucTMt8mcl5iNiFTLyVmduIWYtUGcz5CMuUTMuIjLxIjL5YTMtg2cpJXZiJWanhSI", + value: "!(gibberish-169.21.2.15.0.spe-ab.ver-1b6.ero-17.fer-bc.gib-b)!", + result: { + word: "gibberish", + correct: 21, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "18.06.2025", + }, + }, + { + date: "18.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKi1iYpdmLmRjNtg2Yz4SZh1CajJjLyMTMtMXZi5CNz0iYhZmLw4COuEjL3EjL5YTMtg2cpJXZiJWanhSI", + value: "!(gibberish-169.17.1.8.0.fab-34.bes-132.2ch-ae.3ch-64f.gib-b)!", + result: { + word: "gibberish", + correct: 17, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "18.06.2025", + }, + }, + { + date: "18.06.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIWLil2ZuUWZ10ycpRmLmZWLyVnYuITYt8mcw5CMuITMuIjL3EjL5YTMtg2cpJXZiJWanhSI", + value: "!(gibberish-169.17.2.12.0.pro-a2.bur-ff.dis-5ee.gib-b)!", + result: { + word: "gibberish", + correct: 17, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "18.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/jedno-z-tych-co-potrafia-byc-latwe-albo-trudne-zalezy-jak-szybko-trafisz-odpowie" +] = [ + { + date: "26.02.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcTNtQWYs5iMz0CZhBnLm1CZhZmLy0ydh1mL2gTLhVmcuAjLyEjLy4CNx4yN10SZsRWYshSI", + value: "!(ladle-57.14.2.12.0.rea-86.maw-2.fad-f.pad-32.lad-57)!", + result: { + word: "ladle", + correct: 14, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "26.02.2025", + }, + }, + { + date: "26.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3UTLk5yMtsWYs5CZz0CbhNmLyMTLy92ZuAjL4EjLw4SMx4yN10SZsRWYshSI", + value: "!(ladle-57.11.0.18.0.gor-32.cal-3d.lak-3.d-57)!", + result: { + word: "ladle", + correct: 11, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "26.02.2025", + }, + }, + { + date: "26.02.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyN10CZhxmLkJTLsVHZuE2Nt8Gbw5iYy0ychNnLwgTLhJ3YuAjL1EjLy4SMx4yN10SZsRWYshSI", + value: "!(ladle-57.11.2.15.0.cra-80.sas-2b.plo-7a.dul-2d.lad-57)!", + result: { + word: "ladle", + correct: 11, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "26.02.2025", + }, + }, + { + date: "26.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyN10CZhxmLwgTLuFGauYjNx0ychNmL5ETLsJWYuITMx0CbhBnLyYTLtF2ZuAjLwEjLw4CMy4yN10SZsRWYshSI", + value: "!(ladle-57.20.0.10.0.gam-62.pal-112.abl-19.cas-166.han-80.lad-57)!", + result: { + word: "ladle", + correct: 20, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "26.02.2025", + }, + }, + { + date: "26.02.2025", + nick: "ulsterboy", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3UTLkFmL1cTLuVnL5MTMtQXas5SMk1CblJmL2UTLt92cuAjL0EjLx4CNx4yN10SZsRWYshSI", + value: "!(ladle-57.14.1.14.0.som-56.bel-d1.lit-139.un-75.ad-57)!", + result: { + word: "ladle", + correct: 14, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "26.02.2025", + }, + }, + { + date: "26.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcTNtQWYs5CMz0SYsBnL1MTLiFmZuAjLyEjLx4CMx4yN10SZsRWYshSI", + value: "!(ladle-57.10.1.12.0.fab-35.pla-30.lad-57)!", + result: { + word: "ladle", + correct: 10, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "26.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/jeszcze-latwiej-niz-polskie-26-03-2025-diffle-diffleen-grywebowe-19-letters-in-3" +] = [ + { + date: "26.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIWNx0CajNnL5ETMtg2Yz4iN40SYlJnLw4CNuMjLyEjL1gTLyFGbvh2YzhSI", + value: "!(scholar-85.12.3.4.0.rea-86.3ch-119.sch-15b)!", + result: { + word: "scholar", + correct: 12, + position: 3, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "26.03.2025", + }, + }, + { + date: "26.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiY1ETLo5CMhFTLhN2cuQjMtE2bi5CNwETLvJnZuYDO20CajNjL2QWLvBnLmJTL192cuQTLj9WbuEjMtUGaj5CMuUTMuMjL4IjL1gTLyFGbvh2YzhSI", + value: + "!(scholar-85.28.3.15.0.che-21.moc-4.sou-2f.po-d6.3ch-686.fro-104.boa-24.sca-1a0.h-15b)!", + result: { + word: "scholar", + correct: 28, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 46, + date: "26.03.2025", + }, + }, + { + date: "26.03.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiVTMtg2Yz5iNxETLoNmMuITZz4CN2ITLoN2MuMzNt8Gbw5CM2MTLhh2YuMTLuVnYuQTLhpHduETLkFmcuIjNt0WYn5CMukTMuEjLyIjL1gTLyFGbvh2YzhSI", + value: + "!(scholar-85.22.1.19.0.gam-62.rad-1.tza-4.bun-3.cha-360.plo-73.3ch-264.3e2.2ch-116.sch-15b)!", + result: { + word: "scholar", + correct: 22, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 42, + date: "26.03.2025", + }, + }, + { + date: "26.03.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiVTMtg2YuEmMtw2bz5CNy0SYy9mLxYTNtUmcw5CMuATMuUjL2EjL1gTLyFGbvh2YzhSI", + value: "!(scholar-85.16.5.10.0.pre-561.ora-24.sol-2a.ch-15b)!", + result: { + word: "scholar", + correct: 16, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "26.03.2025", + }, + }, + { + date: "26.03.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiY1ETLoN2cuYDZtw2bj5iMh1ybyBnLw4yNuIjL1EjL1gTLyFGbvh2YzhSI", + value: "!(scholar-85.15.2.7.0.pro-a2.col-d6.sch-15b)!", + result: { + word: "scholar", + correct: 15, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "26.03.2025", + }, + }, + { + date: "26.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiVTMtg2Yz5CMx0ychJnL3EGOtMXak5CMuITMuMjLzEjL1gTLyFGbvh2YzhSI", + value: "!(scholar-85.13.3.12.0.dis-8a7.ras-10.sch-15b)!", + result: { + word: "scholar", + correct: 13, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "26.03.2025", + }, + }, + { + date: "26.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiVTMtgmLwEWMtE2YuMjMtIXYz5iMz0yc1FmLw4SOuIjL2EjL1gTLyFGbvh2YzhSI", + value: "!(scholar-85.16.2.9.0.aus-32.sar-23.ca-1a0.h-15b)!", + result: { + word: "scholar", + correct: 16, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "26.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/jeszcze-smieszniejsze-slowo-08-03-2025-diffle-diffleen-grywebowe-25-letters-in-4" +] = [ + { + date: "08.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM3ETLy5SMhFTLsFGcuYWL6FGbuEjMtUGaj5CMucjLz4SNx4yN20CblxGbhJXYwhSI", + value: "!(parallel-67.15.3.7.0.che-21.laz-f.pal-1a1.r-173)!", + result: { + word: "parallel", + correct: 15, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM3EjLxgTLyFmLllTLhJHcuYDOtEWZy5CMukjLx4SOx4yN20CblxGbhJXYwhSI", + value: "!(parallel-67.19.1.9.0.rea-86.pra-9e.ar-81.173)!", + result: { + word: "parallel", + correct: 19, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzcTMtIXYw5yMy0CcwFmL10SdvdnL30idhJnLkJWMtEmci5yNtMWYy5SN2ITLhh2cuAjL2EjLy4SNy4yN20CblxGbhJXYwhSI", + value: + "!(parallel-67.25.2.16.0.sha-265.rac-7.bra-1bd.rav-7.wou-5.app-23.par-173)!", + result: { + word: "parallel", + correct: 25, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 43, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM3EjLyETLyFGcuQjNtw2bn5yM20SYyNmLw0iehJnLyMTLzVXYuAjLzEjLx4SNy4yN20CblxGbhJXYwhSI", + value: "!(parallel-67.25.1.13.0.aus-32.raz-0.cra-63.gol-64.par-12.173)!", + result: { + word: "parallel", + correct: 25, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMzNx0ichBnL3U2Ntg2Yz4CZiNjLxkTNtIXYw5CMk1ichdnLmFTLpJXYuUWYt4Wdm5iZh1ichNnLmJTNtIXYj5iNl1ichJmLyYTLtF2ZuEjL5EjLy4COz4yN20CblxGbhJXYwhSI", + value: + "!(parallel-67.38.2.19.1.gam-62.bar-e6.car-52f.sar-af.fun-ae.ari-1f.war-d0.par-591.3bd.3ch-7e7.par-173)!", + result: { + word: "parallel", + correct: 38, + position: 2, + incorrect: 19, + knownIncorrect: 1, + totalWords: 11, + totalLetters: 59, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMzNx4yNkVjLxIGNtIXYuITYt8mcw5CMugjLx4iMy4yN20CblxGbhJXYwhSI", + value: "!(parallel-67.22.1.8.0.pro-a2.ar-4b1.5d7.173)!", + result: { + word: "parallel", + correct: 22, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "08.03.2025", + }, + }, + { + date: "08.03.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM3ETLyFGcuU2NtIXYm5CMtUmch5iM3ETL0hXZuAjLxEjLy4iNx4yN20CblxGbhJXYwhSI", + value: "!(parallel-67.16.2.11.0.ext-172.are-0.far-7e.par-173)!", + result: { + word: "parallel", + correct: 16, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "08.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/kurde-co-dzisiaj-tak-ciezko-07-04-2025-diffle-diffleen-grywebowe-40-letters-in-7" +] = [ + { + date: "07.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQjYy0ichJmLmJTLtVHZuMWMtkmcm5SZi1SaydmL5ETMuADNtg2Yz4iN40SYlJnLw4iMx4SNuMjMucTOtUGZhNWayJXYihSI", + value: + "!(barricade-97.23.5.12.0.rea-86.3ch-40.119.gri-be.fri-1c.dum-2f.bar-2b4)!", + result: { + word: "barricade", + correct: 23, + position: 5, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "07.04.2025", + }, + }, + { + date: "07.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNiJTLyFmLhJTLpJnYuMmMtIXdh5COx0SayBnLlZTLjlGbugTLjlmcuUWYx0SZoNmLw4iMx4yMuIzMucTOtUGZhNWayJXYihSI", + value: + "!(barricade-97.32.3.12.0.che-1ae.ric-8.lic-6e.pri-18.aur-2c.bri-2a.ar-2b4)!", + result: { + word: "barricade", + correct: 32, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 47, + date: "07.04.2025", + }, + }, + { + date: "07.04.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0ImMtIXYuImMy0ybyJmLkhTLy5yMx0SayFmLlRWLhJHZuMDMx0Say5SMy0SZoNmLw4SMx4iNuYjMucTOtUGZhNWayJXYihSI", + value: + "!(barricade-97.26.6.11.0.che-21.ri-103.dra-de.ari-13.r-8d.bro-22b.ar-2b4)!", + result: { + word: "barricade", + correct: 26, + position: 6, + incorrect: 11, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 43, + date: "07.04.2025", + }, + }, + { + date: "07.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0ImMtIXYi5CNiVTLoN2MuETLm9GbukDOtUHaj5SZ0EjLyUmMuYTZtIXYi5iM20SbhdmLw4yMx4SMuYjMucTOtUGZhNWayJXYihSI", + value: + "!(barricade-97.26.1.13.0.gam-62.bar-e6.2e2.14e.chu-89.lof-1.3ch-5b4.bar-2b4)!", + result: { + word: "barricade", + correct: 26, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 40, + date: "07.04.2025", + }, + }, + { + date: "07.04.2025", + nick: "hapaczuri", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNiJTLyFmYuQTLklmL40CZlNmLhVjL1QTMtIXYi5SMhRTLoN2MuUTLs9meuYjZtUWdx5yYl1SYyZmLz0SZlpmL1ETL19mduUTL0VWeugjYx4CMj5iZl1ich5CMi1SYl5CM30SdvJmLhJTLlV2auQTLwl2dukTL0VmcuEzMtUXYs5yNxETLhJ3YuMjMuUDNuETMuYTNucTOtUGZhNWayJXYihSI", + value: + "!(barricade-97.56.11.45.23.cra-117.lau-31.ret-9.wip-4.kee-2a.bou-70.ea-b0.ar-ef.c0.1b8.yet-5.vou-15.jee-3.fra-ec.que-f6.zol-5.3ch-4a1.bar-145.5a.ced-8.id-4.bar-2b4)!", + result: { + word: "barricade", + correct: 56, + position: 11, + incorrect: 45, + knownIncorrect: 23, + totalWords: 22, + totalLetters: 112, + date: "07.04.2025", + }, + }, + { + date: "07.04.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQjYy0ichJmLz0yYyFmLiFWLlB3cuAjL24iMugTMucTOtUGZhNWayJXYihSI", + value: "!(barricade-97.18.2.6.0.spe-ab.arc-3.bar-2b4)!", + result: { + word: "barricade", + correct: 18, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "07.04.2025", + }, + }, + { + date: "07.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQjYy0ich5CMj1SayJmLz0icpdnLhBjNtMXat5yMm1CZhJnLw4SMx4iMuEjMucTOtUGZhNWayJXYihSI", + value: "!(barricade-97.21.2.11.0.rad-f3.mis-60a.wir-3.bri-c0.ar-2b4)!", + result: { + word: "barricade", + correct: 21, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "07.04.2025", + }, + }, + { + date: "07.04.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNiJTLyFmL40SZyJmLyEWLvJHcuAjL14yMucTMucTOtUGZhNWayJXYihSI", + value: "!(barricade-97.17.3.5.0.pro-a2.bre-8.ar-2b4)!", + result: { + word: "barricade", + correct: 17, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "07.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/latwe-ale-moze-mylic-tropy-14-06-2025-diffle-diffleen-grywebowe-30-letters-in-5-" +] = [ + { + date: "14.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNx0SasdmLi1CbklmL50Cep1mL2QTLllmZuYDOtEWZy5CMuATMuMjL3EjL1YTMtIXZklGbnhSI", + value: "!(glider-165.17.3.10.0.rea-86.fie-46.mix-9.idl-b.gli-14)!", + result: { + word: "glider", + correct: 17, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "14.06.2025", + }, + }, + { + date: "14.06.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNx0SasdmLxMTLpx2cukzMtUWas5iMh1ybyBnLw4COuIjL3EjL1YTMtIXZklGbnhSI", + value: "!(glider-165.17.2.8.0.pro-a2.lie-39.sli-31.gli-14)!", + result: { + word: "glider", + correct: 17, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "14.06.2025", + }, + }, + { + date: "14.06.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNx0Sas5CMtYXan5SMy0SZoNmLw4iNuIjLwEjL1YTMtIXZklGbnhSI", + value: "!(glider-165.10.2.6.0.che-21.giv-0.li-14)!", + result: { + word: "glider", + correct: 10, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "14.06.2025", + }, + }, + { + date: "14.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNx0SasdmLz0CZpVmLxITLklGauE2MtQWat5iYx0CZpJnL1ITLklmYuYTLylGZuU2MtkWZ35iZy0icpZmLwEjMtUmcw5CMuUTMugjLzMjL1YTMtIXZklGbnhSI", + value: + "!(glider-165.33.8.15.0.pre-210.fir-2f.wei-3e.dir-6.bid-25.rid-1b.mid-3a.hid-21.eid-3.gli-14)!", + result: { + word: "glider", + correct: 33, + position: 8, + incorrect: 15, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 56, + date: "14.06.2025", + }, + }, + { + date: "14.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNx4iM20Sas5iMz0ibv5iM20SbhdmLw4iNuAjL3EjL1YTMtIXZklGbnhSI", + value: "!(glider-165.17.0.6.0.gam-62.on-32.li-62.14)!", + result: { + word: "glider", + correct: 17, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "14.06.2025", + }, + }, + { + date: "14.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTMtkGbn5CNx0SZ0FmLhFTLpxmZuU2MtMWa25CMuMTMuAjL2EjL1YTMtIXZklGbnhSI", + value: "!(glider-165.16.0.13.0.vic-3e.fli-1a.ate-14.gli-14)!", + result: { + word: "glider", + correct: 16, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "14.06.2025", + }, + }, + { + date: "14.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNx4CMx0SasdmL40SZpxmLh1SdlZmLw4SNuMjL2EjL1YTMtIXZklGbnhSI", + value: "!(glider-165.16.3.5.0.feu-a.lie-8.gli-10.14)!", + result: { + word: "glider", + correct: 16, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "14.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/latwizna-13-02-2025-diffle-diffleen-grywebowe-17-letters-in-2-words-large-green-" +] = [ + { + date: "13.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpAzNt4Was5SZ00iZulmLw4SOuAjL44CN00ibl5WashSI", + value: "!(linen-44.8.0.9.0.inf-4e.lin-70)!", + result: { + word: "linen", + correct: 8, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "13.02.2025", + }, + }, + { + date: "13.02.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpAzNukzMugzMt4Was5SO00SasJmL4kTLulGcuIzMt4Wat5CO1ITLyN2cuAjLzEjLw4iMy4CN00ibl5WashSI", + value: "!(linen-44.22.0.13.0.scr-258.min-32.pin-98.bli-49.lin-38.39.70)!", + result: { + word: "linen", + correct: 22, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 35, + date: "13.02.2025", + }, + }, + { + date: "13.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM34iN40ibuQTL25COtUWas5iY10Ca0VmLyYTLtF2ZuAjLwEjLx4yNx4CN00ibl5WashSI", + value: "!(linen-44.17.1.10.0.gam-62.eth-5b.lie-8.v-4.n-86.70)!", + result: { + word: "linen", + correct: 17, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 28, + date: "13.02.2025", + }, + }, + { + date: "13.02.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwcjLygTLulGbucDNt4Wam5SMm1SawNnLxITLlh2YuAjLwEjLx4yNx4CN00ibl5WashSI", + value: "!(linen-44.17.1.10.0.che-21.spi-f1.fin-47.lin-82.70)!", + result: { + word: "linen", + correct: 17, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "13.02.2025", + }, + }, + { + date: "13.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM30ibuYTMtYXas5CMtwGZp5CZ10CbvBnLyMTLzVXYuAjLzEjLz4CNx4CN00ibl5WashSI", + value: "!(linen-44.14.3.13.0.aus-32.pol-5d.idl-0.liv-16.n-70)!", + result: { + word: "linen", + correct: 14, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "13.02.2025", + }, + }, + { + date: "13.02.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpAzNt4Was5CMx0ibulmL3MWLuVGZuAjLwEjLy4SMx4CN00ibl5WashSI", + value: "!(linen-44.11.2.10.0.den-c7.inn-10.lin-70)!", + result: { + word: "linen", + correct: 11, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "13.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/logiczne-latwe-ale-dobrze-skryte-wsrod-wielu-wyborow-07-05-2025-diffle-diffleen-" +] = [ + { + date: "07.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzgTL2RWYukTLzl2duETMtQWYi5yN30ychZmLmJDNtEGaj5CMucTMuEjL5EjL3ITMtU2cpZHZhhSI", + value: "!(advise-127.19.1.17.0.cha-42f.fas-77.bad-11.wis-9.adv-83)!", + result: { + word: "advise", + correct: 19, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "07.05.2025", + }, + }, + { + date: "07.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM40idk5iMtMXah5iN40SYlJnLw4iNuEjLzEjL3ITMtU2cpZHZhhSI", + value: "!(advise-127.13.1.6.0.rea-86.ais-2.dv-83)!", + result: { + word: "advise", + correct: 13, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "07.05.2025", + }, + }, + { + date: "07.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzgTL2RWYuETNtMXa25SYx0idpRmLm1SZlZmL5kzMtg2Yz4yNi1Sat5iMtMXauQTYtA3cuMWLlhXYuEjMtUGaj5CMuYTMuUjL4IjL3ITMtU2cpZHZhhSI", + value: + "!(advise-127.28.5.16.0.che-21.axe-c.sp-a4.is-2.mi-b7.3ch-399.fee-f.div-1a.vis-51.adv-83)!", + result: { + word: "advise", + correct: 28, + position: 5, + incorrect: 16, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 49, + date: "07.05.2025", + }, + }, + { + date: "07.05.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMDOtYHZuMTLklmL2UTLn5WYuITYt8mcw5CMuATMuIjL0EjL3ITMtU2cpZHZhhSI", + value: "!(advise-127.14.2.10.0.pro-a2.ang-56.id-3.dv-83)!", + result: { + word: "advise", + correct: 14, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "07.05.2025", + }, + }, + { + date: "07.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM40idkFmLiBDNtg2Yz4SZiJTLuF2YucTMtMXYi5iMxETLsFGcuIjNt0WYn5CMuMTMuEjL3EjL3ITMtU2cpZHZhhSI", + value: + "!(advise-127.17.1.13.0.gam-62.pal-112.bas-17.can-2be.3ch-40b.adv-83)!", + result: { + word: "advise", + correct: 17, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "07.05.2025", + }, + }, + { + date: "07.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMDOtYHZuMWLzJWYuYWNtg2Yz4COh1Sau5iMtMXauIzMtMXdh5CMuITMuEjLyIjL3ITMtU2cpZHZhhSI", + value: "!(advise-127.22.1.12.0.aus-32.is-2.ni-a8.3ch-5f.abs-c.dv-83)!", + result: { + word: "advise", + correct: 22, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "07.05.2025", + }, + }, + { + date: "07.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM44SY30idkFmLycTMtQHel5CMuATMuEjL0EjL3ITMtU2cpZHZhhSI", + value: "!(advise-127.14.1.10.0.ext-172.adv-7a.83)!", + result: { + word: "advise", + correct: 14, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "07.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/me-like-it-14-01-2025-diffle-diffleen-grywebowe-21-letters-in-3-words-large-gree" +] = [ + { + date: "14.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY5QTLy9mZuMjMtU3bt5yMl1yY4VmLw4yNuMjLxEjL0ETLhxWdtJ3bmhSI", + value: "!(formula-14.11.3.7.0.exc-e3.mou-23.for-49a)!", + result: { + word: "formula", + correct: 11, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "14.01.2025", + }, + }, + { + date: "14.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY5QjL0kTNtI3bm5CMy0yZpJnLw4iNuIjLzEjL0ETLhxWdtJ3bmhSI", + value: "!(formula-14.13.2.6.0.rig-20.for-594.49a)!", + result: { + word: "formula", + correct: 13, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "14.01.2025", + }, + }, + { + date: "14.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhlDNtInLm1SduUTLs9mZuUGO10CajNjLmFTLvB3cuczMtMWZ05CMuQTMuAjLwIjL0ETLhxWdtJ3bmhSI", + value: "!(formula-14.20.0.14.0.tec-37.spo-1f.3ch-58e.fol-5.u-f.r-49a)!", + result: { + word: "formula", + correct: 20, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "14.01.2025", + }, + }, + { + date: "14.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEWO00icvZmL3cjMuE2N00CajNjLklTMt8Gaj5iZ4IWLvJHcuATLyVncuIzMtMXdh5CMuITMuYjLwIjL0ETLhxWdtJ3bmhSI", + value: + "!(formula-14.20.6.12.0.aus-32.rur-0.pro-b8f.cho-19d.3ch-47a.277.for-49a)!", + result: { + word: "formula", + correct: 20, + position: 6, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 38, + date: "14.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/mialem-nie-strzelac-po-omacku-i-znowu-sie-skusilem-08-05-2025-diffle-diffleen-gr" +] = [ + { + date: "08.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQjZt8GauIGNt82duQ2Mx0ybw5yY00icvNnL2gTLhVmcuAjL34iMukTMugjMx0SZy9GazhSI", + value: "!(shore-128.19.2.7.0.rea-86.sor-4c.po-13d.wo-4b.ho-f4)!", + result: { + word: "shore", + correct: 19, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "08.05.2025", + }, + }, + { + date: "08.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQjZugDOx4SOz0yboNnL10ycvhmLxITLlh2YuAjL34SMugTMugjMx0SZy9GazhSI", + value: "!(shore-128.18.1.7.0.che-21.hos-5.sho-39.188.f4)!", + result: { + word: "shore", + correct: 18, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "08.05.2025", + }, + }, + { + date: "08.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNm5SOz0ybo5iMx0ydv5yNk1SbpNnLw4SMx4SMuQTMugjMx0SZy9GazhSI", + value: "!(shore-128.14.1.11.0.sim-d7.ow-12.ho-39.f4)!", + result: { + word: "shore", + correct: 14, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "08.05.2025", + }, + }, + { + date: "08.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0YWLv5iYzETLph2cuADNz0yclJnLyYTLtF2ZuAjL14iMuITMugjMx0SZy9GazhSI", + value: "!(shore-128.12.2.5.0.gam-62.res-340.shi-13b.o-f4)!", + result: { + word: "shore", + correct: 12, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 19, + date: "08.05.2025", + }, + }, + { + date: "08.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0YWLvh2cuIjZtI3bo5CZ1UTLt92YuAjL54SMuITMugjMx0SZy9GazhSI", + value: "!(shore-128.12.1.9.0.com-55d.hor-f2.sho-f4)!", + result: { + word: "shore", + correct: 12, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "08.05.2025", + }, + }, + { + date: "08.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQjZt8GauMGZt82YuMGNtI3bz5SOy0icvxmLzETMtI3bw5CM00Sbl1mLw4iMx4SMuEjMugjMx0SZy9GazhSI", + value: "!(shore-128.21.1.12.0.mem-40.por-113.lor-29.sor-4c.co-dc.ho-f4)!", + result: { + word: "shore", + correct: 21, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "08.05.2025", + }, + }, + { + date: "08.05.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNm1ybo5yY00icvNnLkdTLy9WbuUzNtEWZy5CMj1SdsBnLw4iMx4SMuUTMugjMx0SZy9GazhSI", + value: "!(shore-128.15.1.12.0.plu-c0.rea-75.mor-7d.sor-4c.ho-f4)!", + result: { + word: "shore", + correct: 15, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "08.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/mile-ale-nie-za-mile-06-02-2025-diffle-diffleen-grywebowe-35-letters-in-7-words-" +] = [ + { + date: "06.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETNtM3bo5yM2EjL2YWMuMGOz0SZ0NnLz0ycvxmL20SdvdmLiRWMtI3bj5CMuITMuAjLzIjL3MTLzNXZ0N3bohSI", + value: + "!(hostess-37.23.0.12.0.cor-1db.gou-6.los-3.ste-38c.1f6.163.hos-51)!", + result: { + word: "hostess", + correct: 23, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 35, + date: "06.02.2025", + }, + }, + { + date: "06.02.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETNtM3bo5iNzITLzVGZuAjL34iMukjL3MTLzNXZ0N3bohSI", + value: "!(hostess-37.9.2.7.0.des-236.hos-51)!", + result: { + word: "hostess", + correct: 9, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "06.02.2025", + }, + }, + { + date: "06.02.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxUTLz9GauUjYt8Ga05SMy0SZoNmLw4SNuIjLzEjL3MTLzNXZ0N3bohSI", + value: "!(hostess-37.13.2.5.0.che-21.tho-b5.hos-51)!", + result: { + word: "hostess", + correct: 13, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "06.02.2025", + }, + }, + { + date: "06.02.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETNuYDNtM3bo5SMjJTL0VWbuETN20iY1NnLw4SOuIjL1EjL3MTLzNXZ0N3bohSI", + value: "!(hostess-37.15.2.9.0.sub-651.met-2c1.hos-46.51)!", + result: { + word: "hostess", + correct: 15, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "06.02.2025", + }, + }, + { + date: "06.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETNtM3bo5yN1ETLvh2cuIWNtgGdl5iM20SbhdmLw4iNuMjLzEjL3MTLzNXZ0N3bohSI", + value: "!(hostess-37.13.3.6.0.gam-62.eth-5b.sho-157.hos-51)!", + result: { + word: "hostess", + correct: 13, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "06.02.2025", + }, + }, + { + date: "06.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxUTLz9GaugTL49mYuITZz0CajNjLmhDNtw2bw5CMm1ych1mL0EWMt82Yz5CMuYTMuEjL2EjL3MTLzNXZ0N3bohSI", + value: + "!(hostess-37.16.1.16.0.sco-1a4.mas-f0.pol-48f.3ch-3e2.box-8.hos-51)!", + result: { + word: "hostess", + correct: 16, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "06.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/mile-i-proste-aczkolwiek-trzeba-co-nieco-trafic-14-05-2025-diffle-diffleen-grywe" +] = [ + { + date: "14.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMuUGNt4WY35CZx0ycuFmLyITLlxmYuUzNtUWbuQ2NtIXZh5SMuUTMuMjLzIjL0MTMtIXZk5WY3hSI", + value: "!(wander-134.23.3.15.1.aer-7d.me-75.ble-22.ans-1d.wan-4e.3)!", + result: { + word: "wander", + correct: 23, + position: 3, + incorrect: 15, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 41, + date: "14.05.2025", + }, + }, + { + date: "14.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMTLuF2dukzMtIXYn5iN40SYlJnLw4iNuQjLxEjL0MTMtIXZk5WY3hSI", + value: "!(wander-134.11.4.6.0.rea-86.gar-39.wan-3)!", + result: { + word: "wander", + correct: 11, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "14.05.2025", + }, + }, + { + date: "14.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKz0ibhdnL3MTLu5WYukzYt4WYw5SMy0SZoNmLw4COuEjL0EjL0MTMtIXZk5WY3hSI", + value: "!(wander-134.14.1.8.0.che-21.pan-c9.ann-37.wan-3)!", + result: { + word: "wander", + correct: 14, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "14.05.2025", + }, + }, + { + date: "14.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMuUGNt4WY35iYzETLuFmYuMTL19GcuATN40CduFmLwUWLuF2cuIjNt0WYn5CMuMTMuAjL2IjL0MTMtIXZk5WY3hSI", + value: + "!(wander-134.26.0.13.0.gam-62.san-e0.ant-850.pou-3.ban-13b.wan-4e.3)!", + result: { + word: "wander", + correct: 26, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "14.05.2025", + }, + }, + { + date: "14.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMTLuF2duEWMtQWYm5iNtQWYs5iZi1SYuEDOx0SblRmLw4SOuIjLwIjL0MTMtIXZk5WY3hSI", + value: "!(wander-134.20.2.9.0.dem-181.a-bf.lad-6.fad-1a.wan-3)!", + result: { + word: "wander", + correct: 20, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "14.05.2025", + }, + }, + { + date: "14.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMt4WY35SN50ibhBnLxIWLhVmLx0iehRmLh1SdlZmLw4COuUjL2EjL0MTMtIXZk5WY3hSI", + value: "!(wander-134.16.5.8.0.feu-a.daz-1.ea-b1.pan-95.wan-3)!", + result: { + word: "wander", + correct: 16, + position: 5, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "14.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/mnie-troche-zwodzilo-bo-jest-kilka-podobnych-05-01-2025-diffle-diffleen-grywebow" +] = [ + { + date: "05.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIzNtkmLlVWLjVmL3MTLyVnLlRWLhx2cuAjL24SMukTMuUTLlJXd6lWZzhSI", + value: "!(seizure-5.19.1.6.0.sla-de.ur-37.ec-ee.i-72)!", + result: { + word: "seizure", + correct: 19, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "05.01.2025", + }, + }, + { + date: "05.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiM34yN20SauADZtIXZz5iNygTLvJHcuAjL24iMuEjMuUTLlJXd6lWZzhSI", + value: "!(seizure-5.21.2.6.0.pro-826.ser-d0.i-67.72)!", + result: { + word: "seizure", + correct: 21, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "05.01.2025", + }, + }, + { + date: "05.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIzNtkmL3YTNt0mLhFjMtInL5QTL0V2cuEWOy0SYoNmLw4SMx4iMuAjMuUTLlJXd6lWZzhSI", + value: "!(seizure-5.20.2.11.0.cha-29a.set-49.r-21a.m-567.i-72)!", + result: { + word: "seizure", + correct: 20, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "05.01.2025", + }, + }, + { + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKycTLpV2cuMzMtkWZs5SZ50iYlRmL1ATMt4WZj5iM20SbhdmLw4CMx4yMugTMuUTLlJXd6lWZzhSI", + value: "!(seizure-5.18.3.10.0.gam-62.cen-105.deb-9e.lei-33.sei-72)!", + result: { + word: "seizure", + correct: 18, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + }, + }, + { + date: "05.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiM30Sal5yMh1yZukDOtwWaukzNt82Yz5iMz0yc1FmLw4iMx4yMucTMuUTLlJXd6lWZzhSI", + value: "!(seizure-5.17.3.12.0.aus-32.sco-79.il-89.g-a3.ei-72)!", + result: { + word: "seizure", + correct: 17, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "05.01.2025", + }, + }, + { + date: "05.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIzNtkWZz5COzYTLyVGcuAjL24iMuETMuUTLlJXd6lWZzhSI", + value: "!(seizure-5.11.2.6.0.per-638.sei-72)!", + result: { + word: "seizure", + correct: 11, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "05.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/moim-zdaniem-dosc-trudne-moze-nie-jakies-rzadkie-ale-zwodnicze-17-04-2025-diffle" +] = [ + { + date: "17.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5YmLiRTLsVnYuITY20CajNjLkNWLsVHcukzNtwWZz5iN40SYlJnLw4CMx4iMuEjMucDMx0SZ5V2csxWdihSI", + value: "!(bullseye-107.21.2.10.0.rea-86.sel-79.pul-cd.3ch-6a2.bul-4b.f9)!", + result: { + word: "bullseye", + correct: 21, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "17.04.2025", + }, + }, + { + date: "17.04.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkjZtwWdi5SMtU2c15SOtUWZz5yMy0Cdv1mLw4SMx4yMucTMucDMx0SZ5V2csxWdihSI", + value: "!(bullseye-107.17.3.11.0.mot-23.see-9.use-1.bul-f9)!", + result: { + word: "bullseye", + correct: 17, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "17.04.2025", + }, + }, + { + date: "17.04.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5YWLsVnYuYjMtU3bt5SMy0SZoNmLw4SMx4CMuITMucDMx0SZ5V2csxWdihSI", + value: "!(bullseye-107.12.0.11.0.che-21.mou-26.bul-f9)!", + result: { + word: "bullseye", + correct: 12, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "17.04.2025", + }, + }, + { + date: "17.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5YmL3IWLsVnYuITMtIXds5yMi1SZsNmLw4iMx4SMucTMucDMx0SZ5V2csxWdihSI", + value: "!(bullseye-107.17.1.12.0.cle-b3.lur-12.bul-b7.f9)!", + result: { + word: "bullseye", + correct: 17, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "17.04.2025", + }, + }, + { + date: "17.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkjZtwWdi5SOtU2c15yNy0CelNnL3UWLuVGZuIWNtgGdl5iM20SbhdmLw4yMx4yMugTMucDMx0SZ5V2csxWdihSI", + value: + "!(bullseye-107.18.3.13.0.gam-62.eth-5b.den-e7.sex-27.use-9.bul-f9)!", + result: { + word: "bullseye", + correct: 18, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "17.04.2025", + }, + }, + { + date: "17.04.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkjZugTMx4CNz0CbuATMtIWdi5SY40SdxVmLw4CMx4iMuMjMucDMx0SZ5V2csxWdihSI", + value: "!(bullseye-107.23.2.10.0.equ-8a.bub-10.l-34.118.f9)!", + result: { + word: "bullseye", + correct: 23, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "17.04.2025", + }, + }, + { + date: "17.04.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkjZugTLsVnYuAjZtg2Yy4iZkNTLoN2MuQWLlNXduATL6VHcucTMtMWdm5CZy0CdhdmLw4SMy4SMuQjMucDMx0SZ5V2csxWdihSI", + value: + "!(bullseye-107.24.1.21.0.gat-2d.fuc-17.puz-0.use-d.3ch-3df.2ch-f0.bul-8.f9)!", + result: { + word: "bullseye", + correct: 24, + position: 1, + incorrect: 21, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 46, + date: "17.04.2025", + }, + }, + { + date: "17.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOm5CZ10Cb1JmLkRTL1JHduczYt82b35CZj1Cb1BnLk1SZzVnLh1SdlZmLw4yMx4iMuYjMucDMx0SZ5V2csxWdihSI", + value: + "!(bullseye-107.26.2.13.0.feu-a.use-d.pul-cd.woo-c7.tru-4d.bul-5d.f9)!", + result: { + word: "bullseye", + correct: 26, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "17.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/moim-zdaniem-dosc-trudne-wyprowadzilo-mnie-w-pole-elegancko-w-czwartym-15-06-202" +] = [ + { + date: "15.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOwIjLjFWMtw2bj5SZ0ETLoN2MuYDOtk2Yz5iN40SYlJnLw4iNuIjL3IjL2YTMt42bpNXdsx2bjhSI", + value: "!(collusion-166.27.2.6.0.rea-86.sci-86.3ch-14e.col-1ac.209)!", + result: { + word: "collusion", + correct: 27, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "15.06.2025", + }, + }, + { + date: "15.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkDMy0Cbv5iMy0Cb1NmLyETLzFmcuYGO00CbvBnLxETL05yNx0ibvxmLw4SOuUjL5IjL2YTMt42bpNXdsx2bjhSI", + value: + "!(collusion-166.29.5.9.0.lon-17.t-11.pol-48f.ras-12.cul-22.ol-209)!", + result: { + word: "collusion", + correct: 29, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "15.06.2025", + }, + }, + { + date: "15.06.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOwIjLjFWMuADZx0CbuQmMtY2buMGOtkmcuEjMtUGaj5CMuITMuIjLxMjL2YTMt42bpNXdsx2bjhSI", + value: "!(collusion-166.31.2.12.0.che-21.ri-8c.of-2d.l-1d0.1ac.209)!", + result: { + word: "collusion", + correct: 31, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 45, + date: "15.06.2025", + }, + }, + { + date: "15.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5AjMuMWYx4SN0ITLs92YuAzMtQ3bu5iM20SbhdmLw4COuIjLzIjL2YTMt42bpNXdsx2bjhSI", + value: "!(collusion-166.23.2.8.0.gam-62.not-30.col-245.1ac.209)!", + result: { + word: "collusion", + correct: 23, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "15.06.2025", + }, + }, + { + date: "15.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOwITLs92YuQ2YtwGbp5SYk1icvBnLh1SdlZmLw4SOuIjL5EjL2YTMt42bpNXdsx2bjhSI", + value: "!(collusion-166.19.2.9.0.feu-a.por-da.ill-cd.col-209)!", + result: { + word: "collusion", + correct: 19, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "15.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/moze-nie-trudne-ale-dla-mnie-dosc-nieoczywiste-15-05-2025-diffle-diffleen-gryweb" +] = [ + { + date: "15.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMtMHdp5yYy0CdpdnLmFzMtg2Yz4iN40SYlJnLw4yNuMjLzEjL1MTMtYGblNHdphSI", + value: "!(itself-135.13.3.7.0.rea-86.3ch-31f.wit-2c.its-0)!", + result: { + word: "itself", + correct: 13, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "15.05.2025", + }, + }, + { + date: "15.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMtMHdp5SO30CblNnLkJTLzl2duMWNtAXZz5SYtYWZs5yNx0SalZmL30SZ0NnLmhTMtUGa05CMzETLz5WduEjLxIjLyEjL2IjL1MTMtYGblNHdphSI", + value: + "!(itself-135.26.12.21.1.uns-130.the-18f.ste-7.fei-17.lef-a.sep-5c.wis-2d.sel-79.its-0)!", + result: { + word: "itself", + correct: 26, + position: 12, + incorrect: 21, + knownIncorrect: 1, + totalWords: 9, + totalLetters: 59, + date: "15.05.2025", + }, + }, + { + date: "15.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKw0yc0lmL50ycpdnL1MWL19WbucTYtwWZz5CZx0CdpJmLiZWLsB3cucTLylGduEjMtUGaj5CMuYTMuYjLzIjL1MTMtYGblNHdphSI", + value: + "!(itself-135.23.6.16.0.che-21.tir-7.spl-fb.bit-1d.sel-a7.mou-c5.wis-9.its-0)!", + result: { + word: "itself", + correct: 23, + position: 6, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 45, + date: "15.05.2025", + }, + }, + { + date: "15.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMtMHdp5COy0ycpxmLldTLs9GcuIWYtQXa35iMx0CdpJmLiVTLoRXZuIjNt0WYn5CMuQTMuUjL4EjL1MTMtYGblNHdphSI", + value: + "!(itself-135.18.5.14.0.gam-62.eth-5b.bit-12.wit-ab.pol-7e.lis-28.its-0)!", + result: { + word: "itself", + correct: 18, + position: 5, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 37, + date: "15.05.2025", + }, + }, + { + date: "15.05.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjRGNt8WZu5CN1ETLoN2MuATLzV2auImYtQXZi5SO0ITLk9WbuAjLzEjLx4SNx4SNzETLu9WZuhSI", + value: "!(neon-135.15.1.13.0.mod-249.bet-bb.kes-0.3ch-154.neo-4dc)!", + result: { + word: "neon", + correct: 15, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "15.05.2025", + }, + }, + { + date: "15.05.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpATLzRXauIGNtkGbz5SOzETL0lGbuITYt8mcw5SMuMTMuUjLzEjL1MTMtYGblNHdphSI", + value: "!(itself-135.13.5.13.1.pro-a2.lit-139.sli-4b.its-0)!", + result: { + word: "itself", + correct: 13, + position: 5, + incorrect: 13, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 31, + date: "15.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/musialem-strzelac-03-06-2025-diffle-diffleen-grywebowe-25-letters-in-4-words-lar" +] = [ + { + date: "03.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3IWLy5SY40SbyFmL5ITNtIXYw5iN40SYlJnLw4CMx4iMuMTMuQTNx0ydvJnchhSI", + value: "!(arrow-154.13.2.10.0.rea-86.par-529.arm-8a.r-b7)!", + result: { + word: "arrow", + correct: 13, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "03.06.2025", + }, + }, + { + date: "03.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNi1icuMWMtQmLwgTLnJnLyITLv1mLy0Se0FmLw4iMx4SMuQTMuQTNx0ydvJnchhSI", + value: "!(arrow-154.14.1.12.0.aty-2.mo-22.rg-80.d-1c.r-b7)!", + result: { + word: "arrow", + correct: 14, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "03.06.2025", + }, + }, + { + date: "03.06.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcjYtInL1MTLiJXYuMTMtIHcz5SMy0SZoNmLw4SMx4iMuATMuQTNx0ydvJnchhSI", + value: "!(arrow-154.10.2.11.0.che-21.spr-13.arb-35.r-b7)!", + result: { + word: "arrow", + correct: 10, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "03.06.2025", + }, + }, + { + date: "03.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNi1icyFmLlhTLyF2duEWM00ichNmLyYTLtF2ZuAjL34iMuMTMuQTNx0ydvJnchhSI", + value: "!(arrow-154.13.2.7.0.gam-62.car-41a.war-8e.arr-b7)!", + result: { + word: "arrow", + correct: 13, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "03.06.2025", + }, + }, + { + date: "03.06.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNi1icyFmLiN2Mtg2Yz4CZz0SY3NnLhZWMtEmcn5iMh1ybyBnLx4SNx4yMuITMuQTNx0ydvJnchhSI", + value: "!(arrow-154.12.3.15.1.pro-a2.gra-1fa.swa-3d.3ch-3cb.arr-b7)!", + result: { + word: "arrow", + correct: 12, + position: 3, + incorrect: 15, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 30, + date: "03.06.2025", + }, + }, + { + date: "03.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNi1icyFmLwEjMtUmcw5CMugjLx4yNuQTNx0ydvJnchhSI", + value: "!(arrow-154.7.1.8.0.pre-210.arr-b7)!", + result: { + word: "arrow", + correct: 7, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "03.06.2025", + }, + }, + { + date: "03.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNi1icyFmL4IWLyF2duU2Nx0ichJmLh1SdlZmLw4SMx4SMuATMuQTNx0ydvJnchhSI", + value: "!(arrow-154.10.1.11.0.feu-a.bar-17e.war-b8.arr-b7)!", + result: { + word: "arrow", + correct: 10, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "03.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/niby-latwe-a-i-tak-sie-nameczylem-22-06-2025-diffle-diffleen-grywebowe-27-letter" +] = [ + { + date: "22.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYx0yblxmLilTNtg2Yz4SOtw2bw5iZxITLoN2MuYDOtEWZy5CMuUjL14yNx4yM3ETLkJXYw9WZshSI", + value: "!(leopard-173.17.5.5.0.rea-86.3ch-21f.pol-9.3ch-59b.leo-1b)!", + result: { + word: "leopard", + correct: 17, + position: 5, + incorrect: 5, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "22.06.2025", + }, + }, + { + date: "22.06.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiFjLy0yblxmLzITL09WbuAjLwEjLx4SNx4yM3ETLkJXYw9WZshSI", + value: "!(leopard-173.15.1.10.0.mot-23.leo-2.1b)!", + result: { + word: "leopard", + correct: 15, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "22.06.2025", + }, + }, + { + date: "22.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYx0yblxmL0cTLs9GcuEjNt4Wdi5COtE2Yl5SZ10SYldnLyYTLtF2ZuAjLxEjLz4yNx4yM3ETLkJXYw9WZshSI", + value: "!(leopard-173.17.3.11.0.gam-62.wea-5e.eca-8.bun-61.pol-74.leo-1b)!", + result: { + word: "leopard", + correct: 17, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "22.06.2025", + }, + }, + { + date: "22.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiFTLv5SYx0SYl5SOtM3bs5iZ50ybyRnLwkTL1xmYuAjLxEjL04iNx4yM3ETLkJXYw9WZshSI", + value: "!(leopard-173.16.4.11.0.blu-90.tro-9f.los-9.ea-1a.o-1b)!", + result: { + word: "leopard", + correct: 16, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "22.06.2025", + }, + }, + { + date: "22.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIWMuITLv5yNtQXZs5yN0QTLoN2MuYWLhVGbuEWL1VmZuAjLwEjLy4CNy4yM3ETLkJXYw9WZshSI", + value: "!(leopard-173.24.2.10.0.feu-a.lea-f.3ch-447.let-7.o-2.1b)!", + result: { + word: "leopard", + correct: 24, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "22.06.2025", + }, + }, + { + date: "22.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiFTLvVGbugTOtA3bj5CMucjLz4CMx4yM3ETLkJXYw9WZshSI", + value: "!(leopard-173.10.3.7.0.cop-98.leo-1b)!", + result: { + word: "leopard", + correct: 10, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "22.06.2025", + }, + }, + { + date: "22.06.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIWMt8mLxkTLhVGbuITYt8mcw5CMuUjL04yMx4yM3ETLkJXYw9WZshSI", + value: "!(leopard-173.13.4.5.0.pro-a2.lea-91.o-1b)!", + result: { + word: "leopard", + correct: 13, + position: 4, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "22.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-pasuje-mi-cos-ostatnio-27-01-2025-diffle-diffleen-grywebowe-59-letters-in-11" +] = [ + { + date: "27.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMtomLjVTLz5WauUDOz0CajNjLy0ibphmLiFWLjlGcuUWMt4Wat5iYy0Sa2VmLz0ibpdnLw0SdsNmLzETLulGZuE2Ny0SYlJnLx4SMy4CNuQzMucjMtQ3YlpmbphSI", + value: + "!(inject-27.34.4.21.1.rea-27a.din-13.clu-0.win-3.evi-2b.min-1e.pic-ab.hin-2.3ch-385.ins-5c.j-0)!", + result: { + word: "inject", + correct: 34, + position: 4, + incorrect: 21, + knownIncorrect: 1, + totalWords: 11, + totalLetters: 59, + date: "27.01.2025", + }, + }, + { + date: "27.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpATLq5WauYDOtEWZy5CMuQjLy4SOucjMtQ3YlpmbphSI", + value: "!(inject-27.9.2.4.0.rea-86.inj-0)!", + result: { + word: "inject", + correct: 9, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "27.01.2025", + }, + }, + { + date: "27.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKw0iauU2MtYnLzMWL05WauITMtQXai5COtIXa05SZ20CblZmLw4CNx4yMuAjMucjMtQ3YlpmbphSI", + value: "!(inject-27.20.3.14.0.fel-6e.tir-8.bit-12.int-c3.v-3e.j-0)!", + result: { + word: "inject", + correct: 20, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "27.01.2025", + }, + }, + { + date: "27.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKw0iaulmL1Q2Mtg2Yz4SZ00ibpZnLmFTLjVmbucTNz4CN3ETLoN2MuATNtQnbp5SNi1SbvNmLlNWLk5COm1iZulmL0kTMt4Waw5SMy0SZoNmLw4iMy4iNuMzMucjMtQ3YlpmbphSI", + value: + "!(inject-27.33.6.22.0.che-21.pin-194.inf-f8.d-ce.com-b5.int-50.3ch-174.357.nec-1f.vin-4e.3ch-3d5.inj-0)!", + result: { + word: "inject", + correct: 33, + position: 6, + incorrect: 22, + knownIncorrect: 0, + totalWords: 12, + totalLetters: 61, + date: "27.01.2025", + }, + }, + { + date: "27.01.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpATLq5WauQjMtw2bq5SM20ib1JmLkRWLmVGZuIWNtgGdl5iM20SbhdmLw4CNx4yMuUTMucjMtQ3YlpmbphSI", + value: "!(inject-27.15.3.14.0.gam-62.eth-5b.def-dd.bun-61.jol-24.inj-0)!", + result: { + word: "inject", + correct: 15, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "27.01.2025", + }, + }, + { + date: "27.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMtomLlNTL25yM40CZuQWNtUmbp5SNwgTLoN2MuMTZtIXZ05CNz0iYhZmLw4yNx4SMuMjMucjMtQ3YlpmbphSI", + value: "!(inject-27.23.1.17.0.fab-34.ter-e3.3ch-805.ine-5d.d-83.v-3e.j-0)!", + result: { + word: "inject", + correct: 23, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "27.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-podoba-mi-sie-29-01-2025-diffle-diffleen-grywebowe-47-letters-in-8-words-lar" +] = [ + { + date: "29.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzMjLhFTLtl3cuMTLrlGbuETNtkGbuMmYtwWaz5SOtMXa35COtYWak5SMy0SZoNmLw4yMx4SNukjMukjMtUmepx2bi1WezhSI", + value: + "!(symbolize-29.29.5.13.0.che-21.dif-8.wis-9.sil-bc.li-51.lik-3.sym-1a.33)!", + result: { + word: "symbolize", + correct: 29, + position: 5, + incorrect: 13, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 47, + date: "29.01.2025", + }, + }, + { + date: "29.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMz4SYx0Sb55CM10Sas5SZ00SbvNnLkFmNtg2Yz4yYj1CbpZmLygjMtUGaj5yMm1SYsBnLw4iMx4iNucjMukjMtUmepx2bi1WezhSI", + value: + "!(symbolize-29.27.6.12.0.pla-f3.che-282.fil-cc.3ch-6ad.som-4e.li-50.ym-1a.33)!", + result: { + word: "symbolize", + correct: 27, + position: 6, + incorrect: 12, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 45, + date: "29.01.2025", + }, + }, + { + date: "29.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMz0Sb5NnLzkzMtw2bw5CN00yczFmLw4SMx4yMuUTMukjMtUmepx2bi1WezhSI", + value: "!(symbolize-29.15.3.11.0.ass-44.pol-393.sym-33)!", + result: { + word: "symbolize", + correct: 15, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "29.01.2025", + }, + }, + { + date: "29.01.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMz4SYx0Sb5NnLkJmMtAXbp5yMt4Wdi5iNtY3bt5iM20SbhdmLw4SMx4yMuUjMukjMtUmepx2bi1WezhSI", + value: "!(symbolize-29.25.3.11.0.gam-62.mov-6.bun-3.imp-2bd.sym-1a.33)!", + result: { + word: "symbolize", + correct: 25, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "29.01.2025", + }, + }, + { + date: "29.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMzMugjMt0Wez5yNjZTLoN2MuAzMt0Waz5iMtMnLxQTLtlGbuYDNtMWaw5iMz0yc1FmLw4CMx4SNuMzMukjMtUmepx2bi1WezhSI", + value: + "!(symbolize-29.33.5.10.0.aus-32.pic-46.lim-41.s-2.sim-30.3ch-6c7.sym-28.33)!", + result: { + word: "symbolize", + correct: 33, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 48, + date: "29.01.2025", + }, + }, + { + date: "29.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMz4iM04iYy4CMy4SYx0Sb55SNk1CbpNnLyETLi9WbuQTLp9mLiFTLp1mLxUTLpx2cuYTNtUHbn5iNt8Ga35CMtYWas5iNtY3bt5yMtsWas5yM3ETLs92YuQmYy0CctlmLzAjMt0WZk5yMuEjMuUTMuYzNukjMtUmepx2bi1WezhSI", + value: + "!(symbolize-29.76.15.21.3.dem-203.imp-2bd.col-173.lik-3.mov-6.lif-0.who-6.glu-56.sli-51.mi-1b.oi-4.mob-12.sil-d5.ym-1a.20.2b.42.33)!", + result: { + word: "symbolize", + correct: 76, + position: 15, + incorrect: 21, + knownIncorrect: 3, + totalWords: 18, + totalLetters: 112, + date: "29.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-to-ze-nie-znalem-ale-rzadko-uzywam-i-chyba-myslalem-ze-inaczej-sie-to-pisze-" +] = [ + { + date: "20.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhRjMtAnLiFTLxVmcuQjNuE2M24iN1YTLoN2MuUjMtQWYy5yNh1SYpRmLw4CMx4yMugjMuAjMtQmbh1WayBXZyhSI", + value: + "!(reprimand-20.28.3.10.0.dia-a7.rad-25.3ch-656.63a.64.req-1b.p-24a)!", + result: { + word: "reprimand", + correct: 28, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "20.01.2025", + }, + }, + { + date: "20.01.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhRjMtAXZy5iM0IWLlJHcuQDZtQnbp5iMz0ibp1mLlhTMtIXZo5SOx0SZtVmLyYTLtF2ZuAjL44COucjMuAjMtQmbh1WayBXZyhSI", + value: + "!(reprimand-20.27.8.8.0.gam-62.eme-19.her-18e.min-32.int-d4.pre-b42.rep-24a)!", + result: { + word: "reprimand", + correct: 27, + position: 8, + incorrect: 8, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 43, + date: "20.01.2025", + }, + }, + { + date: "20.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY0IjLmFTLwVmcuMTLpFWbuUDMx0CctlmLhNTMtEmcw5iMy0SatFmLjFWLv9mYuYmYx0SdxNnLyETLyVGZuEjMtUGaj5CMuYTMuATMuQzMuAjMtQmbh1WayBXZyhSI", + value: + "!(reprimand-20.34.10.16.0.che-21.der-12.squ-1bf.boo-ac.ami-22.pra-13a.imp-105.mai-3.rep-1f.24a)!", + result: { + word: "reprimand", + correct: 34, + position: 10, + incorrect: 16, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 60, + date: "20.01.2025", + }, + }, + { + date: "20.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEGNy0CclJnLy0SZwVnLjJTLwVmcuQ2MtUWaw5iNhdTLu92YuAjL34COuIjMuAjMtQmbh1WayBXZyhSI", + value: "!(reprimand-20.22.8.7.0.con-7a6.pie-3d.rep-2c.upe-2.rep-24a)!", + result: { + word: "reprimand", + correct: 22, + position: 8, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "20.01.2025", + }, + }, + { + date: "20.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEGNy4CMz0CcuITMx0idlJnL2kjMtUGaj5SZxIjL1gzMtg2Yz4CO30SYpRmLh1SdlZmLw4yMx4SNuEzMuAjMtQmbh1WayBXZyhSI", + value: + "!(reprimand-20.31.5.13.0.feu-a.dia-78.3ch-385.21e.che-296.rev-112.p-30.24a)!", + result: { + word: "reprimand", + correct: 31, + position: 5, + incorrect: 13, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 49, + date: "20.01.2025", + }, + }, + { + date: "20.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEGNy0CclJnL3kTLpBXZuUWOt4WZk5SOtQWZ35CN00idlRmLx4iMx4SNuMjMuAjMtQmbh1WayBXZyhSI", + value: "!(reprimand-20.23.5.12.1.dev-44.wed-9.den-9e.epi-97.rep-24a)!", + result: { + word: "reprimand", + correct: 23, + position: 5, + incorrect: 12, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 40, + date: "20.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-wyglada-jak-angielskie-face-with-raised-eyebrow-23-02-2025-diffle-diffleen-g" +] = [ + { + date: "23.02.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITYukTYuMGOtIXa25iM20icpRmLmRTL09mcuEmYy0SYyJmLllTMtUGa05CMucjLy4SOy4CN10ybz9Wd0JXa2hSI", + value: + "!(virtuoso-54.29.2.7.0.the-19e.bra-2ba.rot-4f.dir-62.vir-8c.a9.a2)!", + result: { + word: "virtuoso", + correct: 29, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 38, + date: "23.02.2025", + }, + }, + { + date: "23.02.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITYuATYukTYuQGOtIXa25SOwETLpJ3YuEjLyEjLx4COy4CN10ybz9Wd0JXa2hSI", + value: "!(virtuoso-54.28.1.12.1.cri-109.vir-8d.a9.a0.a2)!", + result: { + word: "virtuoso", + correct: 28, + position: 1, + incorrect: 12, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 41, + date: "23.02.2025", + }, + }, + { + date: "23.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITYukjYtInLwEWLzlmduIzNtMnYh5CMuUjLz4SOx4CN10ybz9Wd0JXa2hSI", + value: "!(virtuoso-54.19.3.5.0.abs-72.vis-a0.r-b9.a2)!", + result: { + word: "virtuoso", + correct: 19, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "23.02.2025", + }, + }, + { + date: "23.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMh1icpZnL3UWL1JHduM2Mt8Gbw5SO4ITLoN2MuUmMtUncj5iNiZTLoN2MuETLvlmcuQ2My0ybyJmLyYTLtF2ZuAjL1EjL14iMy4CN10ybz9Wd0JXa2hSI", + value: + "!(virtuoso-54.22.5.15.0.gam-62.bro-23d.rio-1.3ch-6b6.cru-2e.3ch-289.plo-3c.tru-e7.vir-a2)!", + result: { + word: "virtuoso", + correct: 22, + position: 5, + incorrect: 15, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 42, + date: "23.02.2025", + }, + }, + { + date: "23.02.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyEWLylmdugTOtA3bj5CMukjLy4CMx4CN10ybz9Wd0JXa2hSI", + value: "!(virtuoso-54.10.2.9.0.cop-98.vir-a2)!", + result: { + word: "virtuoso", + correct: 10, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "23.02.2025", + }, + }, + { + date: "23.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyEWLylmduYmMtQXay5iZ2cTLoN2MuIzMtMXdh5CMuQjL24SNx4CN10ybz9Wd0JXa2hSI", + value: "!(virtuoso-54.15.6.4.0.aus-32.3ch-76f.rit-2f.vir-a2)!", + result: { + word: "virtuoso", + correct: 15, + position: 6, + incorrect: 4, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "23.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-zdecydowanie-nie-21-06-2025-diffle-diffleen-grywebowe-41-letters-in-8-words-" +] = [ + { + date: "21.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQjZy0SYyJmLkJWLy92duMmYx0icvNmLyU2Mtg2Yz4yN3IjL0ETMtEmci5CN2ETLhJnZugzN00ybyBnLw4CMy4yMugTMuIzNx0yb2FmcihSI", + value: + "!(bravo-172.18.3.20.0.pro-478.fra-164.bra-114.277.3ch-3e2.cor-1bc.wor-bd.bra-2f4)!", + result: { + word: "bravo", + correct: 18, + position: 3, + incorrect: 20, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 41, + date: "21.06.2025", + }, + }, + { + date: "21.06.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNmJTLhJnYuITYt8mcw5CMucjLy4yNuIzNx0yb2FmcihSI", + value: "!(bravo-172.7.2.7.0.pro-a2.bra-2f4)!", + result: { + word: "bravo", + correct: 7, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "21.06.2025", + }, + }, + { + date: "21.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNmJTLhJnYugDM40CajNjLiJTL1xGcuADOtEmck5iN40SYlJnLw4SNx4CMuETMuIzNx0yb2FmcihSI", + value: "!(bravo-172.11.0.15.0.rea-86.dra-80.plu-2b.3ch-808.bra-2f4)!", + result: { + word: "bravo", + correct: 11, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "21.06.2025", + }, + }, + { + date: "21.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0YmMuY2YuIzNy4iM3ETLhJnYuQTLhJ3YuQzYt4WYy5iM20SbhdmLw4CMx4iMukTMuIzNx0yb2FmcihSI", + value: "!(bravo-172.19.2.10.0.gam-62.ran-c4.cra-4.bra-172.272.cf.2f4)!", + result: { + word: "bravo", + correct: 19, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 31, + date: "21.06.2025", + }, + }, + { + date: "21.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNmJTLhJnYugTOtA3bj5CMukjLy4yNuIzNx0yb2FmcihSI", + value: "!(bravo-172.7.2.9.0.cop-98.bra-2f4)!", + result: { + word: "bravo", + correct: 7, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "21.06.2025", + }, + }, + { + date: "21.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQjZy0SYyJmLzETL0V3cucTLpFmcuU2Yx0SYoNmLw4yMx4SMuATMuIzNx0yb2FmcihSI", + value: "!(bravo-172.10.1.13.0.cha-1ce.rai-7.sut-13.bra-2f4)!", + result: { + word: "bravo", + correct: 10, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "21.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nielatwe-ale-godne-27-04-2025-diffle-diffleen-grywebowe-39-letters-in-7-words-la" +] = [ + { + date: "27.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5czNtMXak5SZwgTLoN2MugzYx0iclZnLiRTLyVmauYGZx0iclhmLihTLhVGduYzYy0CbvNmLw4SNx4CMuQjMucTMx0SZzJXZwNXakhSI", + value: + "!(disperse-117.24.0.15.0.col-2c6.tea-8b.her-1df.jer-4b.ver-1c8.3ch-80e.dis-779)!", + result: { + word: "disperse", + correct: 24, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5czNtMXak5COiFTLoN2MugTN10ycp1mL1QWNtg2Yz4SNi1CajJjL3gTLyV3cukDZtg2Yz4CNtIXaz5iN40SYlJnLw4SMx4yMucjMucTMx0SZzJXZwNXakhSI", + value: + "!(disperse-117.27.3.11.0.rea-86.sir-4.3ch-d9.sur-87.2ch-b5.3ch-5d5.mis-558.3ch-1b8.dis-779)!", + result: { + word: "disperse", + correct: 27, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 41, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSO3cTLzlGZugDNt0Wdi5SNz0iduYTLylGZuYTNtk2az5SMy0SZoNmLw4CNx4yMuIjMucTMx0SZzJXZwNXakhSI", + value: "!(disperse-117.22.3.14.0.che-21.ski-56.dir-6.v-35.bum-48.dis-779)!", + result: { + word: "disperse", + correct: 22, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5czNuQWN30ycuIGMx0CcpRmL4gTLslGcuQTLllmduQjMt8mcl5iM20SbhdmLw4iMx4yMuEzMucTMx0SZzJXZwNXakhSI", + value: + "!(disperse-117.31.3.12.0.gam-62.ero-24.vie-4.pil-88.dip-10b.s-75d.779)!", + result: { + word: "disperse", + correct: 31, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 46, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkzN30ycp5SZjFTLzVGZuEWL1VmZuAjL14yMuYTMucTMx0SZzJXZwNXakhSI", + value: "!(disperse-117.16.3.5.0.feu-a.des-1ce.is-779)!", + result: { + word: "disperse", + correct: 16, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5czNuE2N30ycpRmLk1ycpxmLwATMtkmcj5SY0ETLph2duAjL54CMuIzMucTMx0SZzJXZwNXakhSI", + value: "!(disperse-117.32.0.9.0.whi-14a.cri-100.lis-d.dis-77a.779)!", + result: { + word: "disperse", + correct: 32, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSO3cTLzlGZuIzNtkWdx5yYx0CZ1pmLxQWLul2auIGOtgGcz5iMh1ybyBnLx4COx4SMuAjMucTMx0SZzJXZwNXakhSI", + value: + "!(disperse-117.20.1.18.1.pro-a2.sph-8b.kin-d1.jud-1c.qui-72.dis-779)!", + result: { + word: "disperse", + correct: 20, + position: 1, + incorrect: 18, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 39, + date: "27.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nielatwe-bo-nieczesto-uzywane-06-06-2025-diffle-diffleen-grywebowe-27-letters-in" +] = [ + { + date: "06.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNtkGdp5iY40SbpxmLk1CZiFmLw4SOuEjL3EjL3UTMtknchJXZulGdphSI", + value: "!(itinerary-157.17.1.9.0.abd-d.lim-8b.iti-5)!", + result: { + word: "itinerary", + correct: 17, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "06.06.2025", + }, + }, + { + date: "06.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUTLpRXauQTM14SNkNTLoN2MuITMtoXYo5iMtYXY35yN0IjLkFWNtg2Yz4CN30CbhJmL3UTL0VXbucTLylGduYDOtEWZy5CMucTMugjL3IjL3UTMtknchJXZulGdphSI", + value: + "!(itinerary-157.27.8.17.0.rea-86.tir-7.mut-57.bal-74.3ch-5ad.247.wav-2.haz-12.3ch-3d5.514.iti-5)!", + result: { + word: "itinerary", + correct: 27, + position: 8, + incorrect: 17, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 52, + date: "06.06.2025", + }, + }, + { + date: "06.06.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK10Sa0lmLzETLyFmcuEWLyJXYuEmNt4Wa05CZx0iehJnL2Q2Ntg2Yz4yY40SYlJmL2ITLuFmauIjZ34iMzcjL3YTLoN2MuQzNtEmcm5CNtUGdugTOtUmLiZDNtQnbp5SOl1SdvJnL3ATMtQXYw5yNj1ibpRnLxITLlh2YuAjLzIjLzEjL1YjL3UTMtknchJXZulGdphSI", + value: + "!(itinerary-157.65.13.23.0.che-21.tin-c7.pat-107.rou-e9.int-46b.e-98.te-4.fra-74.3ch-67.732.7f2.jan-26.bea-8c.3ch-7d6.raz-1d.tin-6a.arr-a.rar-13.iti-5)!", + result: { + word: "itinerary", + correct: 65, + position: 13, + incorrect: 23, + knownIncorrect: 0, + totalWords: 19, + totalLetters: 101, + date: "06.06.2025", + }, + }, + { + date: "06.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK10Sa0lmLyQWL0JXYugTOtUmbp5yM2ITLoN2MuQDZtQnbp5SM4MTLoN2MuQGZt4Waw5iZz0SZyRnLwITMt4Wa35SYx0ycvxmLlFTLuVnYuATLyVGauIjNt0WYn5CMuUTMuYjLxQjL3UTMtknchJXZulGdphSI", + value: + "!(itinerary-157.41.6.15.0.gam-62.her-0.bun-1e.los-1a.win-120.tre-3f.pin-dd.3ch-381.int-d4.3ch-263.ine-98.art-d2.iti-5)!", + result: { + word: "itinerary", + correct: 41, + position: 6, + incorrect: 15, + knownIncorrect: 0, + totalWords: 13, + totalLetters: 62, + date: "06.06.2025", + }, + }, + { + date: "06.06.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK10Sa0lmL0QzNtg2Yz4CZh1iclZmLyUmMtg2Yz4iY0ETLpR3cuITYt8mcw5CMuETMuMjL0IjL3UTMtknchJXZulGdphSI", + value: + "!(itinerary-157.24.3.11.0.pro-a2.sti-14b.3ch-2e2.fer-ad.3ch-744.iti-5)!", + result: { + word: "itinerary", + correct: 24, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "06.06.2025", + }, + }, + { + date: "06.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUTLpRnL4kTLl5CMx0ibu5SN00ibnlmLh1SdlZmLw4SOuQjLzIjL3UTMtknchJXZulGdphSI", + value: "!(itinerary-157.23.4.9.0.feu-a.ign-45.nn-10.e-98.ti-5)!", + result: { + word: "itinerary", + correct: 23, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "06.06.2025", + }, + }, + { + date: "06.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUTLpRXaucDOz0SYsBnLmFTLulGduUWZtQXZy5CN00yczFmLw4SOuYjL1IjL3UTMtknchJXZulGdphSI", + value: "!(itinerary-157.25.6.9.0.ass-44.ret-ee.tin-1f.pla-387.iti-5)!", + result: { + word: "itinerary", + correct: 25, + position: 6, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "06.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nielatwe-i-moze-kierowac-na-bledne-tropy-16-03-2025-diffle-diffleen-grywebowe-31" +] = [ + { + date: "16.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZ3QTLyVGcuYzMtQWdq5COwgTLoN2MuYTNtUHbn5SN4QTLyVGcuYDOtEWZy5CMuQTMuEjL2EjL1cTL5JXdqJXZwhSI", + value: + "!(perjury-75.16.1.14.0.rea-86.per-485.glu-56.3ch-808.jud-36.per-47d)!", + result: { + word: "perjury", + correct: 16, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZ3QjL5IWNucDO00icl5iMh1ybyBnLw4SOuEjL4EjL1cTL5JXdqJXZwhSI", + value: "!(perjury-75.18.1.9.0.pro-a2.er-487.5b9.47d)!", + result: { + word: "perjury", + correct: 18, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkdDNtIXZw5iY00ic1ZmLyUmMtg2Yz4iM5QTLyVGcuUjMtUncl5SO00SdsBnLiVjMtI3bj5CMuUTMuMjLzIjL1cTL5JXdqJXZwhSI", + value: + "!(perjury-75.23.3.15.0.cor-25b.plu-49.eru-25.per-492.3ch-2e2.fur-4b.per-47d)!", + result: { + word: "perjury", + correct: 23, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQ2N00iclBnLldTL1x2cukjY10iclBnL0ITLvJXZuIjNt0WYn5CMuETMuAjL3EjL1cTL5JXdqJXZwhSI", + value: "!(perjury-75.17.0.11.0.gam-62.ero-24.per-5b9.slu-7e.per-47d)!", + result: { + word: "perjury", + correct: 17, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQ2N04yMjZjLiZTMuUDO00icl5CZz0SZp5yN00CbvBnL1MWMtE2Yz5CMuMTMuEjL1IjL1cTL5JXdqJXZwhSI", + value: "!(perjury-75.25.1.13.0.sca-1c5.pol-47.ie-3d.er-485.16b.6c3.47d)!", + result: { + word: "perjury", + correct: 25, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkdDNtIXZw5CO50icl1mLy0iepJmLw4iNuEjLyEjL1cTL5JXdqJXZwhSI", + value: "!(perjury-75.12.1.6.0.biz-2.mer-98.per-47d)!", + result: { + word: "perjury", + correct: 12, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "16.03.2025", + }, + }, + { + date: "16.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkdDNtIXZw5SOz0Cb1RmL5gjMtg2Yz4SZmZTLyVmLiFTLyVnLkZTL19GcuEjMtUGaj5CMuQTMuEjLxIjL1cTL5JXdqJXZwhSI", + value: + "!(perjury-75.21.1.14.0.che-21.pou-6d.ur-1b.er-6fe.3ch-289.dul-39.per-47d)!", + result: { + word: "perjury", + correct: 21, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 36, + date: "16.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nieoczywiste-fajne-24-06-2025-diffle-diffleen-grywebowe-19-letters-in-3-words-la" +] = [ + { + date: "24.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzETLlh2ZuMWMtQXZ25iN40SYlJnLw4yNuAjLyEjL1cTMt8Gd0VGanhSI", + value: "!(ghetto-175.12.0.7.0.rea-86.vet-1c.ghe-13)!", + result: { + word: "ghetto", + correct: 12, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "24.06.2025", + }, + }, + { + date: "24.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMx0SZodmL4kTLw92YuAjL44iMukjL1cTMt8Gd0VGanhSI", + value: "!(ghetto-175.9.2.8.0.cop-98.ghe-13)!", + result: { + word: "ghetto", + correct: 9, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "24.06.2025", + }, + }, + { + date: "24.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMTMtUGan5CNyMjLyU2MucTZ34iM2QTLoN2MuIWOtMXdi5iNtMWZuImMt42buIjNt0WYn5CMucTMuEjL4EjL1cTMt8Gd0VGanhSI", + value: + "!(ghetto-175.18.1.17.0.gam-62.on-2b.ec-6.bus-9b.3ch-462.7e7.3e2.324.ghe-13)!", + result: { + word: "ghetto", + correct: 18, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 36, + date: "24.06.2025", + }, + }, + { + date: "24.06.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMx0SZodmLxITLlh2YuAjL04SMukjL1cTMt8Gd0VGanhSI", + value: "!(ghetto-175.9.1.4.0.che-21.ghe-13)!", + result: { + word: "ghetto", + correct: 9, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "24.06.2025", + }, + }, + { + date: "24.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzETLlh2ZugjYt8Ga05SNx0yboNnLmBDNtI3bm5CMuQTMuMjLyEjL1cTMt8Gd0VGanhSI", + value: "!(ghetto-175.12.3.14.0.for-40f.sho-15.tho-b8.ghe-13)!", + result: { + word: "ghetto", + correct: 12, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "24.06.2025", + }, + }, + { + date: "24.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzETLlh2ZukjMtQ3b05iMz0yc1FmLw4iNuMjLwEjL1cTMt8Gd0VGanhSI", + value: "!(ghetto-175.10.3.6.0.aus-32.tot-29.ghe-13)!", + result: { + word: "ghetto", + correct: 10, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "24.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nietrudne-17-05-2025-diffle-diffleen-grywebowe-24-letters-in-4-words-large-green" +] = [ + { + date: "17.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5EWLyVnLxgTLy9mLwYTMtEmci5CZ50SbhhmLw4SOuIjLzEjL3MTMtwWYpJXdihSI", + value: "!(burial-137.13.2.9.0.ham-9d.bra-160.or-81.ur-a9)!", + result: { + word: "burial", + correct: 13, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "17.05.2025", + }, + }, + { + date: "17.05.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5EWLyVnLyMzMtEmci5iMh1ybyBnLw4yNuQjLyEjL3MTMtwWYpJXdihSI", + value: "!(burial-137.12.4.7.0.pro-a2.bra-332.ur-a9)!", + result: { + word: "burial", + correct: 12, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "17.05.2025", + }, + }, + { + date: "17.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTYtIXdi5iYtIXa25iN40SYlJnLw4yNuIjLxEjL3MTMtwWYpJXdihSI", + value: "!(burial-137.11.2.7.0.rea-86.vir-b.bur-a9)!", + result: { + word: "burial", + correct: 11, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "17.05.2025", + }, + }, + { + date: "17.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5EWLyVnYuMmMtQWar5iYh1SdyJmLw0SdsNmL0MWLuFmcuIjNt0WYn5SMuATMuQjL1EjL3MTMtwWYpJXdihSI", + value: "!(burial-137.15.4.10.1.gam-62.ran-c4.clu-0.bru-ab.kid-2c.bur-a9)!", + result: { + word: "burial", + correct: 15, + position: 4, + incorrect: 10, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 29, + date: "17.05.2025", + }, + }, + { + date: "17.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5EWLyVnYuI2MtIXdk5iMz0yc1FmLw4yNuEjLzEjL3MTMtwWYpJXdihSI", + value: "!(burial-137.13.1.7.0.aus-32.dur-3b.bur-a9)!", + result: { + word: "burial", + correct: 13, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "17.05.2025", + }, + }, + { + date: "17.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5EWLyVnYucjNx0ic1NnLw4yMuAjLxEjL3MTMtwWYpJXdihSI", + value: "!(burial-137.11.0.3.0.sur-167.bur-a9)!", + result: { + word: "burial", + correct: 11, + position: 0, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "17.05.2025", + }, + }, + { + date: "17.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOh1ic1JmL4ETLhJ3buMWMtQWYy5yMtkWYm5SZ3ETLslWbuUTL6lGcuEjMtUGaj5CMuYTMuIjLwIjL3MTMtwWYpJXdihSI", + value: + "!(burial-137.20.2.16.0.che-21.piz-5.mil-17e.fai-3.rad-1c.ora-18.bur-a9)!", + result: { + word: "burial", + correct: 20, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 38, + date: "17.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/niezbyt-24-02-2025-diffle-diffleen-grywebowe-38-letters-in-8-words-large-green-c" +] = [ + { + date: "24.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlNTLsF2dukTLiFmZuYzYz4CNmdjL5Y2NuAjZ30CajNjLl1CZpdnLhFzMtQnb15SMuMjMuAjL1EjL1UTLsxWY3hSI", + value: + "!(wall-55.15.0.23.1.unt-31a.wid-e.3ch-7f0.7f9.7f4.3c6.fab-9.wal-3e)!", + result: { + word: "wall", + correct: 15, + position: 0, + incorrect: 23, + knownIncorrect: 1, + totalWords: 8, + totalLetters: 38, + date: "24.02.2025", + }, + }, + { + date: "24.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlNTLsF2duY2MtwWYo5CZi1CbhJmL0EjMtwWYj5SOz0ibhxmLhRWLzFGcuIjNt0WYn5CMuUTMuEjLzEjL1UTLsxWY3hSI", + value: + "!(wall-55.13.1.15.0.gam-62.pas-da.lan-39.cal-214.bal-bd.hal-3f.wal-3e)!", + result: { + word: "wall", + correct: 13, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 29, + date: "24.02.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpU2MtwWY35CN5UTLoN2MuEDZtM3ch5yMy0Cdv1mLw4SOx4CMuYjL1UTLsxWY3hSI", + value: "!(wall-55.6.0.19.0.mot-23.ass-d1.3ch-594.wal-3e)!", + result: { + word: "wall", + correct: 6, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + }, + }, + { + date: "24.02.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlNjLlFTLsF2dugzNy0CbhBnLyETL6FGbuYDOtEWZy5CMuMTMuEjLxEjL1UTLsxWY3hSI", + value: "!(wall-55.11.1.13.0.rea-86.laz-12.pal-278.wal-1e.3e)!", + result: { + word: "wall", + correct: 11, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "24.02.2025", + }, + }, + { + date: "24.02.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpU2MtwWY35CMm1CbhJmL1QTLsFmZuQmNx0Cbh1mLz0SdvxmLhRTLzFGcuEjMtUGaj5CMuYTMuAjL2EjL1UTLsxWY3hSI", + value: + "!(wall-55.16.0.16.0.che-21.pas-4a.lou-3.mal-16d.fal-45.bal-f0.wal-3e)!", + result: { + word: "wall", + correct: 16, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 32, + date: "24.02.2025", + }, + }, + { + date: "24.02.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZz4CO40CbhdnL3MTLkVXYuAjL54CMukjL1UTLsxWY3hSI", + value: "!(wall-55.9.0.9.0.aud-37.wal-88.3e)!", + result: { + word: "wall", + correct: 9, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "24.02.2025", + }, + }, + { + date: "24.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpU2MtwWY35SOh1CbhhmL1QTLsFmZuQWMy0CbhNmL2QWLsF2ZuAjZtwWYi5CZ2ETLsFWbuITLh9GbuIzMtMXdh5CMuYTMuEjL0IjL1UTLsxWY3hSI", + value: + "!(wall-55.24.1.16.0.aus-32.loa-2.mal-16d.bal-f0.gal-d6.cal-21d.fal-45.hal-a9.wal-3e)!", + result: { + word: "wall", + correct: 24, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 41, + date: "24.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/no-nie-powiem-ze-latwe-09-05-2025-diffle-diffleen-grywebowe-34-letters-in-5-word" +] = [ + { + date: "09.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkzMtMWZu5COz0ibpxmL1MTLlh2YuMTOtQWZt5iN40SYlJnLw4CMx4CMuQjMukjMx0SZulGbrNWZuhSI", + value: "!(neckline-129.24.0.10.0.rea-86.med-93.che-35.lin-38.nec-39)!", + result: { + word: "neckline", + correct: 24, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "09.05.2025", + }, + }, + { + date: "09.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkzMtMWZu5SZzITLjVGZuAjL34CMuMTMukjMx0SZulGbrNWZuhSI", + value: "!(neckline-129.13.0.7.0.dec-23e.nec-39)!", + result: { + word: "neckline", + correct: 13, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "09.05.2025", + }, + }, + { + date: "09.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOz0yYl5mLiFTLlV2duMTLrlGbugDZz0CajNjL40CbllnLlNTMtMmbp5iM00ibpZmLmFTLulWbuQmNtU3bw5SMy0SZoNmLw4COx4CNuEzMukjMx0SZulGbrNWZuhSI", + value: + "!(neckline-129.31.4.18.0.che-21.pou-6d.min-1f.fin-42.inc-13e.yel-8.3ch-3d8.lik-3.wee-1b.nec-39)!", + result: { + word: "neckline", + correct: 31, + position: 4, + incorrect: 18, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 53, + date: "09.05.2025", + }, + }, + { + date: "09.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOz0yYl5mLzEDNuIGZz0CajNjLxUjMtMWZk5iY30SasNmL4MTLulGbuIGN00CajNjLlJTLuVGcucTLs92duUWY20CajNjLlFTLuVnYuUWL2l2YuIWNtgGdl5iM20SbhdmLx4CMy4SNuEDNukjMx0SZulGbrNWZuhSI", + value: + "!(neckline-129.41.5.20.1.gam-62.eth-5b.civ-e.bun-1e.3ch-6ae.wol-7.pen-2e.3ch-44b.lin-38.cli-7b.dec-251.3ch-3db.413.nec-39)!", + result: { + word: "neckline", + correct: 41, + position: 5, + incorrect: 20, + knownIncorrect: 1, + totalWords: 14, + totalLetters: 66, + date: "09.05.2025", + }, + }, + { + date: "09.05.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkzMtMWZu5yNx0yY1RmLidTLpx2YucjMtMWas5iMh1ybyBnLw4CMx4CNuAjMukjMx0SZulGbrNWZuhSI", + value: "!(neckline-129.20.4.10.0.pro-a2.lic-27.cli-7b.duc-17.nec-39)!", + result: { + word: "neckline", + correct: 20, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "09.05.2025", + }, + }, + { + date: "09.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOz0yYl5mLmJWMt0WZo5SNy0CblZmLzMTLsV2duIzNx0Cd4VmLw4yNx4SMuUjMukjMx0SZulGbrNWZuhSI", + value: "!(neckline-129.25.1.17.0.ext-172.wel-33.fel-25.hem-1bf.nec-39)!", + result: { + word: "neckline", + correct: 25, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 43, + date: "09.05.2025", + }, + }, + { + date: "09.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOz0yYl5mLlRWMtMWZy5iZx0yYlBnLxQTLpxWZuEWL1VmZuAjL54CMuQjMukjMx0SZulGbrNWZuhSI", + value: "!(neckline-129.24.0.9.0.feu-a.eli-41.pec-1f.rec-1de.nec-39)!", + result: { + word: "neckline", + correct: 24, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "09.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/no-tak-kij-mi-w-oko-21-01-2025-diffle-diffleen-grywebowe-29-letters-in-4-words-l" +] = [ + { + date: "21.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkVWLt1WauUTYx0icv1mL4UWLy9GcuQDNtMWZz5CMucjLx4SMy4SMy0CbhRncv1WbphSI", + value: "!(immortal-21.21.1.7.0.sec-44.por-e8.mor-1a5.imm-ed)!", + result: { + word: "immortal", + correct: 21, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "21.01.2025", + }, + }, + { + date: "21.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZl5iNm5CNk1SbtlmLzE2MtEGbw5CMucjL14yMy4SMy0CbhRncv1WbphSI", + value: "!(immortal-21.23.5.7.0.pla-3a3.imm-d4.f6.ed)!", + result: { + word: "immortal", + correct: 23, + position: 5, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "21.01.2025", + }, + }, + { + date: "21.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZl1SbtlmLlNmMtIXYuEWNtQXat5SY40ichRmLj1CbvJnLiFzNtg2Yz4yNx0SY0NnLxITLlh2YuAjL0EjL44yNy4SMy0CbhRncv1WbphSI", + value: + "!(immortal-21.27.8.14.0.che-21.sta-17.3ch-71b.rol-c.dar-8a.mit-5a.ar-2ce.imm-ed)!", + result: { + word: "immortal", + correct: 27, + position: 8, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 49, + date: "21.01.2025", + }, + }, + { + date: "21.01.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkVWLt1WauQWLy9WbuIjNt0WYn5CMuIjLx4SNx4SMy0CbhRncv1WbphSI", + value: "!(immortal-21.15.1.2.0.gam-62.mor-d.imm-ed)!", + result: { + word: "immortal", + correct: 15, + position: 1, + incorrect: 2, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "21.01.2025", + }, + }, + { + date: "21.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZl1SbtlmL5ETLiJ3buMzNtQXYy5iMy0SayRnLhNTMtEWZy5iYtIXa25SMtQWas5SZ4cTLiV3cuIjL1EjL54SMz4SMy0CbhRncv1WbphSI", + value: + "!(immortal-21.31.9.15.2.sub-78e.lid-1.vir-b.rea-13a.tri-22.rat-73.orb-19.imm-ed)!", + result: { + word: "immortal", + correct: 31, + position: 9, + incorrect: 15, + knownIncorrect: 2, + totalWords: 8, + totalLetters: 55, + date: "21.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/o-zesz-jak-moglem-zapomniec-o-tym-slowie-naprawde-latwe-i-mialem-wszystko-na-tac" +] = [ + { + date: "11.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5ITLyFGauMDMx4SNmdTLoN2MuM2Y00ichBnL4cTLtJXYuYDOtEWZy5CMuMTMuEjL5EjLxATMtI3biJXYohSI", + value: "!(harbor-101.19.1.13.0.rea-86.arm-78.par-4cc.3ch-7f5.103.har-29)!", + result: { + word: "harbor", + correct: 19, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "11.04.2025", + }, + }, + { + date: "11.04.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOy0ichhmL4gTNtg2Yz4CNuIDNuYjYx4SY2ETLyFGauEjMtUGaj5CMuQTMuAjLyIjLxATMtI3biJXYohSI", + value: "!(harbor-101.22.0.14.0.che-21.har-16a.1b6.42.4.3ch-588.har-29)!", + result: { + word: "harbor", + correct: 22, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 36, + date: "11.04.2025", + }, + }, + { + date: "11.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5ITLyFmL40SYvhmL0EWLpJnZuImMt4WYy5COmFTLy9WbuEDNtUWZr5CMugTMuQjL2EjLxATMtI3biJXYohSI", + value: "!(harbor-101.16.4.18.0.kee-41.mor-1f8.ran-2b.fri-a4.hoa-8.ar-29)!", + result: { + word: "harbor", + correct: 16, + position: 4, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "11.04.2025", + }, + }, + { + date: "11.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkjMtIXYo5COx0SahpmLhJmMtEGdz5iM20SbhdmLw4COuAjLzEjLxATMtI3biJXYohSI", + value: "!(harbor-101.13.0.8.0.gam-62.sta-2ba.jai-18.har-29)!", + result: { + word: "harbor", + correct: 13, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "11.04.2025", + }, + }, + { + date: "11.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOy0ichhmL3IWLoN2MuMTOtIXY35iY4QTLyFGcuIzMtMXdh5CMuETMuEjL0EjLxATMtI3biJXYohSI", + value: "!(harbor-101.14.1.11.0.aus-32.par-48b.war-93.3ch-b7.har-29)!", + result: { + word: "harbor", + correct: 14, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "11.04.2025", + }, + }, + { + date: "11.04.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkjMtIXYo5yNi1icyFmLxYTNtUmcw5CMuITMuIjLxEjLxATMtI3biJXYohSI", + value: "!(harbor-101.11.2.12.0.pre-561.arr-b7.har-29)!", + result: { + word: "harbor", + correct: 11, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "11.04.2025", + }, + }, + { + date: "11.04.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOy0ichhmLilTL19mYuITYt8mcw5CMuETMuIjLxEjLxATMtI3biJXYohSI", + value: "!(harbor-101.11.2.11.0.pro-a2.bou-9b.har-29)!", + result: { + word: "harbor", + correct: 11, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "11.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/o-zesz-ty-slightly-smiling-face-08-02-2025-diffle-diffleen-grywebowe-41-letters-" +] = [ + { + date: "08.02.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY04iZtkWYo5SNx0CajNjL5QTLn5WYuYjZy0CajNjLjRWLhVGauYmYtEWZy5SM50ycvBnLw4SMx4yMucjMukzMtIXZ5JHZylWYohSI", + value: + "!(hairdryer-39.27.3.11.0.pos-91.rea-bf.hea-dc.3ch-2f6.ang-49.3ch-15.hai-f.4a)!", + result: { + word: "hairdryer", + correct: 27, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 41, + date: "08.02.2025", + }, + }, + { + date: "08.02.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEGNtkmL2QTLw5CO30ichhmLxITLlh2YuAjL24SMuIjMukzMtIXZ5JHZylWYohSI", + value: "!(hairdryer-39.22.1.6.0.che-21.har-78.p-46.i-4a)!", + result: { + word: "hairdryer", + correct: 22, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "08.02.2025", + }, + }, + { + date: "08.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEGNuMTNtkWYo5CMzMjLhNTLoN2MuEDNtUWZk5CMtYXam5yMj1SYsJmLhVWLzFGcuEDOt4WYj5iM20SbhdmLw4SNx4CMuYzMukzMtIXZ5JHZylWYohSI", + value: + "!(hairdryer-39.36.0.15.0.gam-62.can-81.pas-ea.bla-c3.fiv-0.dee-41.3ch-3a.330.hai-53.4a)!", + result: { + word: "hairdryer", + correct: 36, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 51, + date: "08.02.2025", + }, + }, + { + date: "08.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhRTLpFGauYzMtkWYm5iNtcnbp5iMh1ybyBnLw4CMx4yMucTMukzMtIXZ5JHZylWYohSI", + value: "!(hairdryer-39.17.3.10.0.pro-a2.inw-6.fai-36.hai-4a)!", + result: { + word: "hairdryer", + correct: 17, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "08.02.2025", + }, + }, + { + date: "08.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY00SahhmLwQTLoN2MuUDNtAnLkFWLyFGauIjZy4iNmJTLoN2MuMWL6VnZuYWLyl2ZuMTMtIXai5iN4ITLyR3cuUWMtQWa35iZx0ybpZnLw4COx4SMuEDNukzMtIXZ5JHZylWYohSI", + value: + "!(hairdryer-39.41.1.18.0.vio-1f.wid-1e.str-286.bir-13.gir-f.fuz-c.3ch-2f6.2f2.har-ad.p-45.3ch-40.hai-4a)!", + result: { + word: "hairdryer", + correct: 41, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 12, + totalLetters: 60, + date: "08.02.2025", + }, + }, + { + date: "08.02.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhRTLpFGauUTLpFmcuMmMtkGZh5iNzITLzVGZuAjL44CNukTMukzMtIXZ5JHZylWYohSI", + value: "!(hairdryer-39.19.4.8.0.des-236.adi-2c.rai-5.hai-4a)!", + result: { + word: "hairdryer", + correct: 19, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "08.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/oczywiscie-slowa-nie-znalem-bo-i-skad-ale-slowo-fajne-bo-da-sie-po-trochu-zdobyc" +] = [ + { + date: "07.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgjMtMWam5SN10ibvRnLiJTLp9GcuI2Mtw2b05yN5ETLvN2cukTOy0SYoNmLw4CMx4SNugTMucTLu9Wa0NWamhSI", + value: + "!(fiction-7.18.5.10.0.cha-299.sco-197.tol-3b.poi-2b.ton-55.fic-28)!", + result: { + word: "fiction", + correct: 18, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "07.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/otwarcie-po-prostu-przepiekne-man-facepalming-17-01-2025-diffle-diffleen-grywebo" +] = [ + { + date: "17.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMmNt0Wdy5yYh1SdsBnLm1CalRmLw4iMx4SMucjL3ETLw1WdyhSI", + value: "!(rump-17.7.1.12.0.deh-f.plu-ac.rum-6c)!", + result: { + word: "rump", + correct: 7, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "17.01.2025", + }, + }, + { + date: "17.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyY20Sb1JnLhRzYt8mcw5SMy0SZoNmLw4SMx4SMuUjL3ETLw1WdyhSI", + value: "!(rump-17.5.1.11.0.che-21.pro-c4a.rum-6c)!", + result: { + word: "rump", + correct: 5, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "17.01.2025", + }, + }, + { + date: "17.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjZTLtVncuQDOtUnc05iYx0Sb1BnLlZTL1x2cuMTOt4WYw5CMuITMuEjL2EjL3ETLw1WdyhSI", + value: "!(rump-17.16.1.12.0.pan-93.slu-6e.pum-1b.tru-84.rum-6c)!", + result: { + word: "rump", + correct: 16, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "17.01.2025", + }, + }, + { + date: "17.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyY20Sb1JnLzIWL1J3YuYTNx0ic1RnL1gzMugzMz0CajNjLiFTLyVHcuQzMtIWYm5CMuUTMuMjLyEjL3ETLw1WdyhSI", + value: + "!(rump-17.12.3.15.0.fab-34.pur-1b.3ch-338.385.tur-156.cru-b3.rum-6c)!", + result: { + word: "rump", + correct: 12, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 30, + date: "17.01.2025", + }, + }, + { + date: "17.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyY20Sb1JnL2cTL1J3ZuMGOtUncj5COz0SdyRmL5ATMtUmcm5CMuQTMuAjL2EjL3ETLw1WdyhSI", + value: "!(rump-17.16.0.14.0.fre-109.dru-38.cru-8c.gru-76.rum-6c)!", + result: { + word: "rump", + correct: 16, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "17.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/oud-oud-oud-03-01-2025-diffle-diffleen-grywebowe-25-letters-in-4-words-11-2-12-0" +] = [ + { + date: "03.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpATMtEmch5SO1ETLyFmYuMWNtIXat5iY1ETLph2duAjLyEjLy4SMx4yMtMWaiFmchhSI", + value: "!(arabic-3.11.2.12.0.whi-15b.mir-5c.bar-159.ara-10)!", + result: { + word: "arabic", + correct: 11, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "03.01.2025", + }, + }, + { + date: "03.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwETLhJXYugTLylmYucjMtIXZn5SO30iY1JnLxQTLy9WbuAjLyEjLx4COx4yMtMWaiFmchhSI", + value: "!(arabic-3.18.1.12.0.mor-41.rub-79.ger-27.bir-8.ara-10)!", + result: { + word: "arabic", + correct: 18, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "03.01.2025", + }, + }, + { + date: "03.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwETLhJXYuATLjlWbuczMtMWZ05CMuATMuEjL54yMtMWaiFmchhSI", + value: "!(arabic-3.9.1.10.0.tec-37.mic-0.ara-10)!", + result: { + word: "arabic", + correct: 9, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "03.01.2025", + }, + }, + { + date: "03.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpATMtEmch5yNtE2bi5CM44yN30CajNjLx0iZ3FmL3ETLoN2MuIjMtkWbh5SY00ychBnLxITLlh2YuAjL3EjLy4SMy4yMtMWaiFmchhSI", + value: + "!(arabic-3.21.2.17.0.che-21.pas-4a.ami-22.3ch-17.awf-1.3ch-77.80.boa-7.ara-10)!", + result: { + word: "arabic", + correct: 21, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 40, + date: "03.01.2025", + }, + }, + { + date: "03.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpATMtEmch5yNi1CajNjLhRWLzFGcuMmNtEmcm5CMugjLx4yMx4yMtMWaiFmchhSI", + value: "!(arabic-3.13.1.8.0.fra-6c.pas-da.3ch-b7.ara-10)!", + result: { + word: "arabic", + correct: 13, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "03.01.2025", + }, + }, + { + date: "03.01.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMx0SYuUDNx0CdyFmLyQTLyFGauIjNt0WYn5CMucjLw4iMx4yMtMWaiFmchhSI", + value: "!(arabic-3.12.0.7.0.gam-62.har-42.art-145.a-10)!", + result: { + word: "arabic", + correct: 12, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 19, + date: "03.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/piekna-sprawa-to-tajne-slowo-tag-sie-sam-wpisuje-do-wyniku-i-juz-nie-zapomne-dif" +] = []; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/po-prawdzie-nie-mialem-tyle-farta-jak-z-pl-06-01-2025-diffle-diffleen-grywebowe-" +] = [ + { + date: "06.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIGMx0SYyZmLjhTLuFmcuEWMtEmc35COlFTLhJnYuEjN10SZyBnLw4iNx4CMuAjMuYTL5x2auFmcmhSI", + value: "!(frankly-6.20.0.16.0.pre-561.bra-1e8.wra-1a.ran-8c.fra-10b)!", + result: { + word: "frankly", + correct: 20, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "06.01.2025", + }, + }, + { + date: "06.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiBTMtEmcm5yYj1ibhJnL0QTLjV2cuAjL24iMuMTMuYTL5x2auFmcmhSI", + value: "!(frankly-6.13.2.6.0.sec-44.ran-cc.fra-10b)!", + result: { + word: "frankly", + correct: 13, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "06.01.2025", + }, + }, + { + date: "06.01.2025", + nick: "koszotorobur", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiBTMtEmcm5yNtwWYy5CO50CcvNmLw4CMx4SMuQTMuYTL5x2auFmcmhSI", + value: "!(frankly-6.14.1.10.0.cop-98.ral-7.fra-10b)!", + result: { + word: "frankly", + correct: 14, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "06.01.2025", + }, + }, + { + date: "06.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIGMx0SYyZmL4YjMtg2Yz4iYyETLn5WYuYGNtQWYz5iZmFTLuFWbuM2Yx0ibhNmLjlTLu5WYuM2Mx0CbhBnLy4COx4iMuEzMuYTL5x2auFmcmhSI", + value: + "!(frankly-6.31.2.18.2.pal-13c.ann-9c.can-1cc.man-1ff.sad-4f.ang-12b.3ch-268.fra-10b)!", + result: { + word: "frankly", + correct: 31, + position: 2, + incorrect: 18, + knownIncorrect: 2, + totalWords: 8, + totalLetters: 51, + date: "06.01.2025", + }, + }, + { + date: "06.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYwETLh5CNxETLvJnL5ETLjVnZuAjL34SMuITMuYTL5x2auFmcmhSI", + value: "!(frankly-6.12.1.7.0.fuc-19.ro-114.a-10b)!", + result: { + word: "frankly", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "06.01.2025", + }, + }, + { + date: "06.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIGMx0SYyZmLmVWMtEmcn5yMxMTLhJnYuATMtUXYy5yY30CdhBnLw4iMx4SMuIjMuYTL5x2auFmcmhSI", + value: "!(frankly-6.22.1.12.0.pat-7c.rau-10.bra-313.gra-1ef.fra-10b)!", + result: { + word: "frankly", + correct: 22, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "06.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/poleglem-a-wcale-nie-trudne-wlasciwie-21-03-2025-diffle-diffleen-grywebowe-40-le" +] = [ + { + date: "21.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYz4yNy0Sa3NnLlNmNuQDM30CajNjLzUTLp12cuImMtUHbw5SYwYTLzlWbuYDOtEWZy5CMukjL04yNy4CM40CdpV3ctl2dzhSI", + value: + "!(swimsuit-80.27.4.9.0.rea-86.mis-60a.plu-2b.smi-53.3ch-704.6ce.swi-27.3a)!", + result: { + word: "swimsuit", + correct: 27, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 40, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYz0Sa35yMwETLpR3cucDM20CajNjL1MTMtkGaj5iNjZTLoN2MukjMtUXbz5iM10Sdv1mLyYTLtF2ZuAjLyEjLx4CNy4CM40CdpV3ctl2dzhSI", + value: + "!(swimsuit-80.24.1.12.0.gam-62.mou-52.smu-29.3ch-6c6.chi-135.3ch-607.sti-103.wi-3a)!", + result: { + word: "swimsuit", + correct: 24, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 37, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYz0Sa3NnL2MmNuQDM30CajNjLiJTLt9GZuEjMtkWduQGZx0Sdx5iZl1CbwNnLxITLlh2YuAjLzEjLy4iNy4CM40CdpV3ctl2dzhSI", + value: + "!(swimsuit-80.26.2.13.0.che-21.spl-ef.qu-1dd.ui-21.dom-2b.3ch-704.6c6.swi-3a)!", + result: { + word: "swimsuit", + correct: 26, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 41, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhNTLpdnLwITMtkGduMjNt0Wdz5SYj1ybyZmLzQTLwFGauAjL2EjLy4SMy4CM40CdpV3ctl2dzhSI", + value: "!(swimsuit-80.21.2.16.0.hap-43.fro-ca.sum-63.ti-120.wi-3a)!", + result: { + word: "swimsuit", + correct: 21, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhNTLpdnLzYTLtV3cuYzNx0ibp1mLyEWLvJHcuAjLxEjLy4yNx4CM40CdpV3ctl2dzhSI", + value: "!(swimsuit-80.17.2.11.0.pro-a2.min-176.sum-63.wi-3a)!", + result: { + word: "swimsuit", + correct: 17, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "21.03.2025", + }, + }, + { + date: "21.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYz0Sa3NnLxYGNtg2Yz4CN00SbpNnL2QTLp5WYuAjLyEjLx4iNx4CM40CdpV3ctl2dzhSI", + value: "!(swimsuit-80.16.1.12.0.ani-46.sim-44.3ch-4f1.swi-3a)!", + result: { + word: "swimsuit", + correct: 16, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "21.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/porazka-31-03-2025-diffle-diffleen-grywebowe-38-letters-in-7-words-large-green-c" +] = [ + { + date: "31.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMxETL2VmcuQjY10CajNjLiVTL3VmcugDM40CajNjL1ATMtImLlJTLp5iN40SYlJnLw4SNx4SMuIjMuATOtcXZpZXZyhSI", + value: + "!(review-90.22.1.15.0.rea-86.i-2e.b-105.3ch-808.rew-5b.3ch-5b4.rev-112)!", + result: { + word: "review", + correct: 22, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 38, + date: "31.03.2025", + }, + }, + { + date: "31.03.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITMx0idukTOtYmLllTMtMmLxYTMtAnLwQzMtMXZy5iM20SbhdmLw4iMx4SMucTMuATOtcXZpZXZyhSI", + value: "!(review-90.17.1.12.0.gam-62.res-340.p-161.c-19e.f-99.v-112)!", + result: { + word: "review", + correct: 17, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "31.03.2025", + }, + }, + { + date: "31.03.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITMx0iduIWNtcnLjJWMtMXZy5iMh1ybyBnLw4SMx4SMuYTMuATOtcXZpZXZyhSI", + value: "!(review-90.16.1.11.0.pro-a2.res-1bc.w-5b.v-112)!", + result: { + word: "review", + correct: 16, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "31.03.2025", + }, + }, + { + date: "31.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyETMtYXZy5SNtYXaq5CMtAXa35yM40iZuAjMy0ycukjNy0CZl5CO00ybvJnLw4CMy4iMuEjMuATOtcXZpZXZyhSI", + value: + "!(review-90.21.2.20.0.roo-48.ed-269.s-220.f-83.wip-0.jiv-5.rev-112)!", + result: { + word: "review", + correct: 21, + position: 2, + incorrect: 20, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 43, + date: "31.03.2025", + }, + }, + { + date: "31.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMxETL2VmcuAjMtc3bw5yM00yYhZmLw4iMx4iMuATMuATOtcXZpZXZyhSI", + value: "!(review-90.10.2.12.0.fac-43.pow-20.rev-112)!", + result: { + word: "review", + correct: 10, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "31.03.2025", + }, + }, + { + date: "31.03.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyETMugTMx0idl5CZx0idpJnLwETLylWbuEzNy0ycvBnLw4iNx4iMugTMuATOtcXZpZXZyhSI", + value: "!(review-90.18.2.16.0.pos-271.mir-10.riv-1d.ev-118.112)!", + result: { + word: "review", + correct: 18, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "31.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/poszlo-gladko-chociaz-raz-mnie-zmylilo-18-03-2025-diffle-diffleen-grywebowe-19-l" +] = [ + { + date: "18.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKw0SYlJmLxITLhVGcuYDOtEWZy5CMucjLw4iMx4yN30CajFWZihSI", + value: "!(beach-77.12.0.7.0.rea-86.pea-21.bea-0)!", + result: { + word: "beach", + correct: 12, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMtEWZi5iMh1ybyBnLw4yNuAjL54yN30CajFWZihSI", + value: "!(beach-77.9.0.7.0.pro-a2.bea-0)!", + result: { + word: "beach", + correct: 9, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKw4SO00SYlJmLzcTMtM2Yh5SNkNTLu9mbuAjL1EjLy4SMx4yN30CajFWZihSI", + value: "!(beach-77.11.2.15.0.non-3d5.acc-173.bea-49.0)!", + result: { + word: "beach", + correct: 11, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKw0SYlJmLx0yYhVmL1UTLhVmcuEjMtUGaj5CMuUjLy4SNx4yN30CajFWZihSI", + value: "!(beach-77.15.2.5.0.che-21.rea-55.eac-1.bea-0)!", + result: { + word: "beach", + correct: 15, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMtEWZi5SMy0SYlBnLjNWLhVGbuIjNt0WYn5CMucjLx4iMx4yN30CajFWZihSI", + value: "!(beach-77.12.1.7.0.gam-62.lea-cc.pea-21.bea-0)!", + result: { + word: "beach", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKw0SYlJmLx0yYhVmLxITLhVGcuU2MtEWZt5iM3ETL0hXZuAjL1EjLw4yNx4yN30CajFWZihSI", + value: "!(beach-77.17.0.15.0.ext-172.mea-3e.pea-21.eac-1.bea-0)!", + result: { + word: "beach", + correct: 17, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "18.03.2025", + }, + }, + { + date: "18.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMtEWZi5SMtMWYl5yY40ychNmLwITL0xWYuAjLwEjLz4yMx4yN30CajFWZihSI", + value: "!(beach-77.13.3.10.0.alt-20.cas-8c.eac-1.bea-0)!", + result: { + word: "beach", + correct: 13, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "18.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/powinno-byc-w-czterech-04-06-2025-diffle-diffleen-grywebowe-28-letters-in-5-word" +] = [ + { + date: "04.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNtUnbr5CO4ITLoN2MuUTNy0yYuVnL1QTLulHZuYDOtEWZy5CMukjL04SNx4SN1ETLlx2ajVnbrhSI", + value: "!(knuckle-155.15.4.9.0.rea-86.dyn-45.unc-255.3ch-288.knu-6)!", + result: { + word: "knuckle", + correct: 15, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "04.06.2025", + }, + }, + { + date: "04.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK20SdutmLhlTLlh2YuUDNx0ibl1mLmRTLjVnbuEmYt4Wdm5iM3ETL0hXZuAjL4EjL14SOx4SN1ETLlx2ajVnbrhSI", + value: + "!(knuckle-155.19.5.18.0.ext-172.fun-ba.nuc-4f.men-145.che-9a.knu-6)!", + result: { + word: "knuckle", + correct: 19, + position: 5, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 42, + date: "04.06.2025", + }, + }, + { + date: "04.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK20SdutmLmRTLjVnbuMWMt4Wds5iMkNTLu9mbuAjLzEjLz4COx4SN1ETLlx2ajVnbrhSI", + value: "!(knuckle-155.18.3.13.0.non-3d2.lun-1c.nuc-4f.knu-6)!", + result: { + word: "knuckle", + correct: 18, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "04.06.2025", + }, + }, + { + date: "04.06.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYTL152auYWMtMWZu5iM30yY1JmLzgDNtg2Yz4SM5ETLoNmMuAzYx0CbuVnLx0yY1pmL3ATMtg2Yz4SZ10Cb1ZmLjBjNtg2Yz4SN50SdvJnLxITLlh2YuEjL5EjL24iMz4SN1ETLlx2ajVnbrhSI", + value: + "!(knuckle-155.32.6.19.1.che-21.rou-95.3ch-60c.ful-5e.3ch-107.juc-1.unl-1c0.2ch-191.3ch-483.buc-72.nec-1f.knu-6)!", + result: { + word: "knuckle", + correct: 32, + position: 6, + incorrect: 19, + knownIncorrect: 1, + totalWords: 12, + totalLetters: 57, + date: "04.06.2025", + }, + }, + { + date: "04.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYTL152auUTNy0yYuVnL20CbvRmLiVTLoRXZuIjNt0WYn5CMukjLz4SNx4SN1ETLlx2ajVnbrhSI", + value: "!(knuckle-155.15.3.9.0.gam-62.eth-5b.dol-6.unc-255.knu-6)!", + result: { + word: "knuckle", + correct: 15, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "04.06.2025", + }, + }, + { + date: "04.06.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK20SdutmL1UjMtMmb15CZx0CajNnLyEWLvJHcuAjLyEjLz4iNx4SN1ETLlx2ajVnbrhSI", + value: "!(knuckle-155.16.3.12.0.pro-a2.sch-1d.unc-255.knu-6)!", + result: { + word: "knuckle", + correct: 16, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "04.06.2025", + }, + }, + { + date: "04.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNtUnbr5SN1ITLj5WduITLsVncuETLlVHcuEWL1VmZuAjLwEjLz4COx4SN1ETLlx2ajVnbrhSI", + value: "!(knuckle-155.18.3.10.0.feu-a.pue-1.rul-2.unc-255.knu-6)!", + result: { + word: "knuckle", + correct: 18, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "04.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/powinno-byc-w-czterech-przeciez-mialem-juz-wszystko-29-04-2025-diffle-diffleen-g" +] = [ + { + date: "29.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMi5SZ50yYhBnLmNTLjFGbuMzNtMWYt5iN40SYlJnLw4SOuEjLxIjL5ETMtQXZrNWYwhSI", + value: "!(packet-119.21.1.9.0.rea-86.mac-73.lac-3f.pac-9e.b1)!", + result: { + word: "packet", + correct: 21, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "29.04.2025", + }, + }, + { + date: "29.04.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxImLmRWLjFGcuImMtU3bt5SYl1ic0NnLlhTLlNWYuEjMtUGaj5CMuYTMuMjL4EjL5ETMtQXZrNWYwhSI", + value: "!(packet-119.18.3.16.0.che-21.ace-8e.str-ea.mou-2b.pac-df.b1)!", + result: { + word: "packet", + correct: 18, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "29.04.2025", + }, + }, + { + date: "29.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMi1yYugTNtQnLyETMtwWYw5iM20SbhdmLw4iNuAjL1EjL5ETMtQXZrNWYwhSI", + value: "!(packet-119.15.0.6.0.gam-62.pal-112.t-58.c-b1)!", + result: { + word: "packet", + correct: 15, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "29.04.2025", + }, + }, + { + date: "29.04.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMi1yYhBnL1ITLjNWYuQTYx0SZoRnLw4SOuMjLxEjL5ETMtQXZrNWYwhSI", + value: "!(packet-119.11.3.9.0.the-1a4.acc-25.pac-b1)!", + result: { + word: "packet", + correct: 11, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "29.04.2025", + }, + }, + { + date: "29.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEjYuYWLjFGcuczMtM2YukTNtUGbuQzNtUmbh5CMuATMuEjLwIjL5ETMtQXZrNWYwhSI", + value: "!(packet-119.20.1.10.0.ane-74.le-59.cc-37.pac-f.b1)!", + result: { + word: "packet", + correct: 20, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "29.04.2025", + }, + }, + { + date: "29.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEjYtMWYuYTNtU2bw5SYtUXZm5CMuATMuEjLwEjL5ETMtQXZrNWYwhSI", + value: "!(packet-119.10.1.10.0.feu-a.poe-56.ac-b1)!", + result: { + word: "packet", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "29.04.2025", + }, + }, + { + date: "29.04.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxIWLjFmLyEWLvJHcuAjL24iMukjL5ETMtQXZrNWYwhSI", + value: "!(packet-119.9.2.6.0.pro-a2.ac-b1)!", + result: { + word: "packet", + correct: 9, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "29.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/prawie-caly-alfabet-zuzylem-zanim-trafilem-pierwsza-spolgloske-22-04-2025-diffle" +] = [ + { + date: "22.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEDZtwWZi5yYy0SZlZmLwEzMtg2Yz4yMtsWdw5yYmdjLzEmMtg2Yz4iN40SYlJnLw4SOx4CMuITMuITMx0SesxWZihSI", + value: + "!(belly-112.12.0.19.0.rea-86.3ch-2a3.7fc.puk-3.3ch-310.fee-2c.bel-d1)!", + result: { + word: "belly", + correct: 12, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 31, + date: "22.04.2025", + }, + }, + { + date: "22.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxQWLsVmYukTLsVmauIzNtwWZj5CM00CblZmL1QTLsVmduQTMx0CblhmLx4CNx4CMuEjMuITMx0SesxWZihSI", + value: "!(belly-112.21.0.14.1.hel-114.vel-45.fel-40.cel-72.jel-9.bel-d1)!", + result: { + word: "belly", + correct: 21, + position: 0, + incorrect: 14, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 35, + date: "22.04.2025", + }, + }, + { + date: "22.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxQmLmZTLsVmYuADNtYXZs5SOhFTLlB3cuIWNtgGdl5iM20SbhdmLw4yMx4SMuQTMuITMx0SesxWZihSI", + value: "!(belly-112.14.1.13.0.gam-62.eth-5b.spe-1a9.lev-40.bel-6f.d1)!", + result: { + word: "belly", + correct: 14, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 28, + date: "22.04.2025", + }, + }, + { + date: "22.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxQWLsVmYukTLsVmauMGNtwWZ35iN10SZvBnLh1SdlZmLw4yMx4CMucTMuITMx0SesxWZihSI", + value: "!(belly-112.17.0.13.0.feu-a.poe-56.wel-4c.jel-9.bel-d1)!", + result: { + word: "belly", + correct: 17, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "22.04.2025", + }, + }, + { + date: "22.04.2025", + nick: "dzek", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxQmLkFWLsVmYuQzNtw2bw5SZyETLyVGduAjL54SMuETMuITMx0SesxWZihSI", + value: "!(belly-112.11.1.9.0.ter-12e.pol-74.bel-ad.d1)!", + result: { + word: "belly", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "22.04.2025", + }, + }, + { + date: "22.04.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMk1CblJmLldTMtwWZ05CO1ETLsVWbugDOx0CcwFmLw4SNx4CMuMTMuITMx0SesxWZihSI", + value: "!(belly-112.13.0.15.0.app-188.mel-158.tel-17e.bel-d1)!", + result: { + word: "belly", + correct: 13, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "22.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/prosciotkie-28-01-2025-diffle-diffleen-grywebowe-20-letters-in-4-words-large-gre" +] = [ + { + date: "28.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYy0Cbp5CZx0Cb15SZ10ych1mLllTMtUGa05CMuATMuAjLwEjL4ITLlxWathSI", + value: "!(mile-28.10.0.10.0.the-19e.mas-5e.ul-1d.il-2b)!", + result: { + word: "mile", + correct: 10, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "28.01.2025", + }, + }, + { + date: "28.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYy0Cbp1mLxMTLslmYuMWZtYWZk5iNtwWa25iYtUWdw5CNx0Sa4VmL5ATMtM3ch5iMuAjMuAjLxIjL4ITLlxWathSI", + value: + "!(mile-28.21.0.20.2.ass-109.exi-14.pue-b.vil-6.def-ec.bil-31.mil-2b)!", + result: { + word: "mile", + correct: 21, + position: 0, + incorrect: 20, + knownIncorrect: 2, + totalWords: 7, + totalLetters: 41, + date: "28.01.2025", + }, + }, + { + date: "28.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYy4SOi1Cbp1mLzcTLt1WauEjMtUGaj5CMuETMuIjLxEjL4ITLlxWathSI", + value: "!(mile-28.11.2.11.0.che-21.imm-73.mil-b9.2b)!", + result: { + word: "mile", + correct: 11, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "28.01.2025", + }, + }, + { + date: "28.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiJTLslWbuIWMtkWbz5SY10yY1xmLw4yNuEjLwEjL4ITLlxWathSI", + value: "!(mile-28.10.1.7.0.luc-5a.smi-1b.mil-2b)!", + result: { + word: "mile", + correct: 10, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "28.01.2025", + }, + }, + { + date: "28.01.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiJTLs5yN00ibp5CZ20yc15iNtY3bt5iM20SbhdmLw4COuAjLzEjL4ITLlxWathSI", + value: "!(mile-28.13.0.8.0.gam-62.mov-6.us-6d.in-47.l-2b)!", + result: { + word: "mile", + correct: 13, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 21, + date: "28.01.2025", + }, + }, + { + date: "28.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpImMtwWat5iZ40SbpRmL4gTMtwWZ05CNz0iYhZmLw4yMx4yMukjL4ITLlxWathSI", + value: "!(mile-28.9.3.13.0.fab-34.tel-188.dim-8f.mil-2b)!", + result: { + word: "mile", + correct: 9, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "28.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/proste-ino-trzeba-trafic-24-04-2025-diffle-diffleen-grywebowe-bowe-31-letters-in" +] = [ + { + date: "24.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNx0CdhZmL0MTL0FGauImYx0SYwNnL1QTL0FWbuMDZtU3by5SOmFTLhxmYuAjL1EjLw4iNx4CNxETLlRXYmhSI", + value: "!(fate-114.16.0.15.0.bla-1f9.rou-d3.mat-45.spa-1bb.hat-34.fat-16)!", + result: { + word: "fate", + correct: 16, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYTMtQXYm5iZzITLoN2MuYjNt0Wds5iYx0CdhRmL2gTLhVmcuAjLyEjLx4SMx4CNxETLlRXYmhSI", + value: "!(fate-114.11.1.12.0.rea-86.dat-1b.lum-66.3ch-23f.fat-16)!", + result: { + word: "fate", + correct: 11, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYTMtQXYm5CMmRTLoN2MuIjNy0ybyJmL1ETL0FGbuEjMtUGaj5CMuQTMuEjL54CNxETLlRXYmhSI", + value: "!(fate-114.9.1.14.0.che-21.lat-15.bro-262.3ch-4f0.fat-16)!", + result: { + word: "fate", + correct: 9, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2ETL0FmZugTMtQXYi5COtsWY05SZx0CajFmLhRWLuF2cuITMx0CbhBnLyYTLtF2ZuAjLxEjLx4yNx4CNxETLlRXYmhSI", + value: + "!(fate-114.17.1.11.0.gam-62.pal-112.san-da.ach-1e.tak-8.bat-18.fat-16)!", + result: { + word: "fate", + correct: 17, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 29, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNx0CdhZmL0MTL0FGauUTMtQXYs5yMtQXYn5SZz0CdhBnLyQTLk9WbuAjLxEjLx4yNx4CNxETLlRXYmhSI", + value: "!(fate-114.17.1.11.0.mod-42.pat-3e.gat-3.lat-15.hat-34.fat-16)!", + result: { + word: "fate", + correct: 17, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 29, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNx0CdhZmL1QTL0FWbuATL1x2YuEWMtQXYn5iM3ETL0hXZuAjL3EjLy4SMx4CNxETLlRXYmhSI", + value: "!(fate-114.11.2.17.0.ext-172.gat-1a.clu-0.mat-45.fat-16)!", + result: { + word: "fate", + correct: 11, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "24.04.2025", + }, + }, + { + date: "24.04.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNx0CdhZmL1QTL0FWbuMGNx0SdsZmL3EWL0VGcuAjLwEjLy4SMx4CNxETLlRXYmhSI", + value: "!(fate-114.11.2.10.0.pet-a7.flu-14c.mat-45.fat-16)!", + result: { + word: "fate", + correct: 11, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "24.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/proste-latwe-i-niestety-ja-nie-lapie-sie-na-takie-12-04-2025-diffle-diffleen-gry" +] = [ + { + date: "12.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY10CbptmL1YWLhJ3ZuUWLpFmcuUGOtcmcv5CM20icvdmL5MTLpJ3bukTNtU3bt5SMuETMuITMuUjMuIDMx0SbhJ3ZvxWarhSI", + value: + "!(kilogram-102.25.12.11.1.mou-59.ori-39.gor-60.org-8e.rai-e.gra-f5.kil-5a)!", + result: { + word: "kilogram", + correct: 25, + position: 12, + incorrect: 11, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 48, + date: "12.04.2025", + }, + }, + { + date: "12.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY10CbptmLhNTLwlGbuczYx4iMlJjL3QWLoN2MuYTOtIXam5iN40SYlJnLw4SMx4yMuQjMuIDMx0SbhJ3ZvxWarhSI", + value: + "!(kilogram-102.24.3.11.0.rea-86.fir-96.3ch-d7.2e2.1c7.lip-3a.kil-5a)!", + result: { + word: "kilogram", + correct: 24, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 38, + date: "12.04.2025", + }, + }, + { + date: "12.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEWNtwWar5CN30yZulmLyYTLtF2ZuAjLy4SMuYTMuIDMx0SbhJ3ZvxWarhSI", + value: "!(kilogram-102.16.1.2.0.gam-62.ing-74.kil-5a)!", + result: { + word: "kilogram", + correct: 16, + position: 1, + incorrect: 2, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "12.04.2025", + }, + }, + { + date: "12.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEWNtwWar5yMtk2bm5SM00yZpJnLyMTLzVXYuAjL54CNuMTMuIDMx0SbhJ3ZvxWarhSI", + value: "!(kilogram-102.13.4.9.0.aus-32.rig-41.foi-3.kil-5a)!", + result: { + word: "kilogram", + correct: 13, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "12.04.2025", + }, + }, + { + date: "12.04.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEWNtwWar5iZ10ybpRmLyEWLvJHcuAjL34CNuUTMuIDMx0SbhJ3ZvxWarhSI", + value: "!(kilogram-102.15.4.7.0.pro-a2.dio-5f.kil-5a)!", + result: { + word: "kilogram", + correct: 15, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "12.04.2025", + }, + }, + { + date: "12.04.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEWNtwWar5SOhFTLtVGZuAjL24iMuITMuIDMx0SbhJ3ZvxWarhSI", + value: "!(kilogram-102.12.2.6.0.dem-1a9.kil-5a)!", + result: { + word: "kilogram", + correct: 12, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "12.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/proste-powinienem-byl-zgadnac-w-trzech-06-05-2025-diffle-diffleen-grywebowe-25-l" +] = [ + { + date: "06.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYTL55WYuEmYtEGbw5CNtcWei5iN40SYlJnLw4SOuEjL1EjL2ITMtUmbvlnbhhSI", + value: "!(anyone-126.15.1.9.0.rea-86.byg-4.pla-ba.any-6)!", + result: { + word: "anyone", + correct: 15, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "06.05.2025", + }, + }, + { + date: "06.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK20SeugzNt8mbh5CMtY3b35yY00SdvBnLzQTMtEmLzQTLu5WYuEjMtUGaj5CMugTMuIjL1IjL2ITMtUmbvlnbhhSI", + value: + "!(anyone-126.25.2.18.0.che-21.ann-43.a-143.pou-4c.wov-0.ano-78.y-6)!", + result: { + word: "anyone", + correct: 25, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "06.05.2025", + }, + }, + { + date: "06.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYTL55WYuITO30ibv5mL4ImMt42bj5CZ00ibvJmLiJTLu92ZuQWLu9meuYjN10CajNjLw0Cdm9mLkRjMtAXbp5CMuITMuEjL5IjL2ITMtUmbvlnbhhSI", + value: + "!(anyone-126.29.1.12.0.imp-24d.oft-0.3ch-566.zon-d.gon-2b.bon-4d.con-2b8.non-792.any-6)!", + result: { + word: "anyone", + correct: 29, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 42, + date: "06.05.2025", + }, + }, + { + date: "06.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK20SeuFmL5ADOuITZz4CN2ITLoN2MuATNtQnbh5yNx0ibhtmLyETLuFGZucTMtMXYi5iMxETLsFGcuIjNt0WYn5CMucTMuEjLzIjL2ITMtUmbvlnbhhSI", + value: + "!(anyone-126.23.1.17.0.gam-62.pal-112.bas-17.dan-12.kan-17.ant-50.3ch-264.3e2.809.any-6)!", + result: { + word: "anyone", + correct: 23, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 41, + date: "06.05.2025", + }, + }, + { + date: "06.05.2025", + nick: "Romanzholandii", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKkRWMuM2Yx4CZz0CcuITYt42buYzYtwWd05CMtI2bu5SOxYTLs92auYWNz0SbhNnLhdDOtoncn5COuYjMuIjLyMjL2ITMtUWauVWauB3b0hSI", + value: + "!(topnienie-126.32.2.26.8.grz-87a.sam-35f.kol-619.nob-0.tul-c6.on-a2.p-3d.1cc.1dd)!", + result: { + word: "topnienie", + correct: 32, + position: 2, + incorrect: 26, + knownIncorrect: 8, + totalWords: 9, + totalLetters: 60, + date: "06.05.2025", + }, + }, + { + date: "06.05.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYTL55WYuAzMtMXdo5yN20ibuIWLv5WYuITYt8mcw5CMuMTMuIjL2EjL2ITMtUmbvlnbhhSI", + value: "!(anyone-126.16.2.13.0.pro-a2.ano-b.n-67.hus-30.any-6)!", + result: { + word: "anyone", + correct: 16, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "06.05.2025", + }, + }, + { + date: "06.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNuYWL55WYucjNtg2Yz4iMz0yc1FmLw4COuIjL1EjL2ITMtUmbvlnbhhSI", + value: "!(anyone-126.15.2.8.0.aus-32.3ch-67.any-f.6)!", + result: { + word: "anyone", + correct: 15, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "06.05.2025", + }, + }, + { + date: "06.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYTL55mL4kTL0NXYuEmYtUXZu5CMuATMuIjLyEjL2ITMtUmbvlnbhhSI", + value: "!(anyone-126.12.2.10.0.neu-ba.ast-98.ny-6)!", + result: { + word: "anyone", + correct: 12, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "06.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/proste-szkoda-16-01-2025-diffle-diffleen-grywebowe-19-letters-in-2-words-large-g" +] = [ + { + date: "16.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2ETLklmcuEjMy0yclRmLw4iMx4SMuYjL2ETLlRWayhSI", + value: "!(ride-16.6.1.12.0.des-221.rid-16)!", + result: { + word: "ride", + correct: 6, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "16.01.2025", + }, + }, + { + date: "16.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNx0CZpJnL1ITLklmYuMWLjl2duY2Nt0Waz5CMuETMuIjLxEjL2ETLlRWayhSI", + value: "!(ride-16.11.2.11.0.sim-7f.wic-c.bid-25.rid-16)!", + result: { + word: "ride", + correct: 11, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "16.01.2025", + }, + }, + { + date: "16.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNx0CZpJnL40iZpRmLxITLlh2YuAjL44yMucjL2ETLlRWayhSI", + value: "!(ride-16.7.3.8.0.che-21.dif-8.rid-16)!", + result: { + word: "ride", + correct: 7, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "16.01.2025", + }, + }, + { + date: "16.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYTMtQWay5SO40SdvNnLwgTLhJ3YuAjL54CMucjL2ETLlRWayhSI", + value: "!(ride-16.7.0.9.0.cra-80.sou-89.rid-16)!", + result: { + word: "ride", + correct: 7, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 16, + date: "16.01.2025", + }, + }, + { + date: "16.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2ETLklmcuEjN10SZyBnLw4CMx4SMucjL2ETLlRWayhSI", + value: "!(ride-16.7.1.10.0.pre-561.rid-16)!", + result: { + word: "ride", + correct: 7, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "16.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/proste-wink-01-04-2025-diffle-diffleen-grywebowe-23-letters-in-4-words-frog-17-b" +] = [ + { + date: "01.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4YjMuIDNy0ibhNmLhFTMtg2Yz4iN40SYlJnLw4CNuIjL3EjLxkTLuVWZ05WYjhSI", + value: "!(canteen-91.17.2.4.0.rea-86.3ch-11a.can-242.268)!", + result: { + word: "canteen", + correct: 17, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "01.04.2025", + }, + }, + { + date: "01.04.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgjNy0ibhNmLxMTLlVGduMTMy0Cdl1mLiZWMt4mL3QDNtIXYuEjMtUGaj5CMuETMuMjL1IjLxkTLuVWZ05WYjhSI", + value: + "!(canteen-91.25.3.11.0.che-21.ar-447.n-1fb.met-213.tee-31.can-268)!", + result: { + word: "canteen", + correct: 25, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "01.04.2025", + }, + }, + { + date: "01.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgjNy0ibhNmLkFTLjFmZucTMtMXYi5SOxETLwBXYuIjNt0WYn5CMuETMuIjL1EjLxkTLuVWZ05WYjhSI", + value: "!(canteen-91.15.2.11.0.gam-62.app-119.bas-17.fac-1d.can-268)!", + result: { + word: "canteen", + correct: 15, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "01.04.2025", + }, + }, + { + date: "01.04.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCO2ITLuF2YukzNtMWZk5iMh1ybyBnLw4COuMjLzEjLxkTLuVWZ05WYjhSI", + value: "!(canteen-91.13.3.8.0.pro-a2.dec-79.can-268)!", + result: { + word: "canteen", + correct: 13, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "01.04.2025", + }, + }, + { + date: "01.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4YjMt4WYj5SO10Sdv1mLw4COuEjLyEjLxkTLuVWZ05WYjhSI", + value: "!(canteen-91.12.1.8.0.mou-59.can-268)!", + result: { + word: "canteen", + correct: 12, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "01.04.2025", + }, + }, + { + date: "01.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCO2ITLuF2YugTNy0ibhBnL1ETL0FGbuIzMtMXdh5CMuATMuAjL4EjLxkTLuVWZ05WYjhSI", + value: "!(canteen-91.18.0.10.0.aus-32.lat-15.pan-258.can-268)!", + result: { + word: "canteen", + correct: 18, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "01.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/prostsze-niz-myslalem-bardziej-wymagajace-nizbym-mogl-wpisac-jako-pierwsze-18-04" +] = [ + { + date: "18.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3Y2MuIWZz4yM3MTLhR3cuETLmVnYuUzYtUWdx5SOtkWdq5SNyQjLjljL1QTMtEGduAzYx0SYoNnL2kTLuFGbuAjLyIjLz4CM04COwETLlRXd0FGdzhSI", + value: + "!(statute-108.40.3.22.0.lan-96.sha-1c0.ta-145.9c.425.jui-9.que-c5.buf-1.sta-373.3eb.3f7)!", + result: { + word: "statute", + correct: 40, + position: 3, + incorrect: 22, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 65, + date: "18.04.2025", + }, + }, + { + date: "18.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3Y2MuITZz0SY05SY1ITLhhmLxIWMtEGcugjYtUXcz5CN5YTLoN2MugzMt0Wdm5COi1SYs5yYk1SYlNnL2gTLhVmcuAjLzEjL04SNz4COwETLlRXd0FGdzhSI", + value: + "!(statute-108.35.4.13.0.rea-86.sea-dc.la-b8.fum-38.3ch-694.squ-b8.pa-1b1.ha-25a.ta-3e2.3f7)!", + result: { + word: "statute", + correct: 35, + position: 4, + incorrect: 13, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 52, + date: "18.04.2025", + }, + }, + { + date: "18.04.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcjZz4iMlNjL2czMuMTLhRnLlRTLh12cuQzMz0SYsBnLxITLlh2YuAjLyEjLz4CMz4COwETLlRXd0FGdzhSI", + value: "!(statute-108.30.3.12.0.che-21.pla-334.sma-4e.ta-3.376.3e2.3f7)!", + result: { + word: "statute", + correct: 30, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "18.04.2025", + }, + }, + { + date: "18.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNmNjLyU2MtEGdz5CMlFTLoN2MuUmZtE2dz5yN1MTLoN2MuIWMtE2aukzNy0SYo5SYk1ibhNnL2UWLyFmYuITMx0CbhBnLyYTLtF2ZuEjL3EjLw4yMz4COwETLlRXd0FGdzhSI", + value: + "!(statute-108.33.0.17.1.gam-62.pal-112.bar-e6.san-da.ha-279.ka-1b.3ch-357.swa-fe.3ch-1e0.sta-3e2.3f7)!", + result: { + word: "statute", + correct: 33, + position: 0, + incorrect: 17, + knownIncorrect: 1, + totalWords: 11, + totalLetters: 50, + date: "18.04.2025", + }, + }, + { + date: "18.04.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcjZz0SY0NnLmhTL0RXYuUzNtEGa35yMkFTLtVGZuAjL0EjLz4SNx4COwETLlRXd0FGdzhSI", + value: "!(statute-108.15.3.14.0.dem-1d3.wha-75.att-8f.sta-3f7)!", + result: { + word: "statute", + correct: 15, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "18.04.2025", + }, + }, + { + date: "18.04.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNmNjLiV2MuITZz0SY05CO50yY1NnL2ATMtQXYi5iYx0CdhRmLkJTL0F2ZuAjLzEjLw4iMz4COwETLlRXd0FGdzhSI", + value: + "!(statute-108.32.0.13.0.gat-2d.dat-1b.bat-106.suc-98.ta-3e2.3eb.3f7)!", + result: { + word: "statute", + correct: 32, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "18.04.2025", + }, + }, + { + date: "18.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNmNjLiV2MuMmNz0SY0NnL2QTL0FGdugDOtQXYt5CMukjLx4SNy4COwETLlRXd0FGdzhSI", + value: "!(statute-108.25.1.9.0.mat-88.tat-46.sta-36c.3eb.3f7)!", + result: { + word: "statute", + correct: 25, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "18.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/przekombinowalem-31-05-2025-diffle-diffleen-grywebowe-35-letters-in-6-words-larg" +] = [ + { + date: "31.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3ImLlBjMukTMy0SZo5CMtQWeugDZtUGbj5iN40SYlJnLw4iMx4iMuEjMuETNx0iclVGajhSI", + value: "!(cheer-151.21.2.12.0.rea-86.cle-d8.yd-0.he-219.20e.b7)!", + result: { + word: "cheer", + correct: 21, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "31.05.2025", + }, + }, + { + date: "31.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3IWLlh2YuIjYtUGaz5CMz0SZlhmLyIWLlh2duIzNx0Cd4VmLw4yMx4SMugTMuETNx0iclVGajhSI", + value: "!(cheer-151.18.1.13.0.ext-172.whe-b2.hee-30.she-b2.che-b7)!", + result: { + word: "cheer", + correct: 18, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "31.05.2025", + }, + }, + { + date: "31.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3IWLlh2YuMGN40CajNjL40SZlpmL30SZlZnLiVTLlVmYuYmMtUWZw5CM00SZ1FnL0kTLuV2cuATL0VmZugTNx0Cbl1mLw4CMy4CMuQjMuETNx0iclVGajhSI", + value: + "!(cheer-151.24.0.20.0.mel-158.fet-0.sen-94.que-40.pee-2f.bee-5b.vee-7.jee-8.3ch-84c.che-b7)!", + result: { + word: "cheer", + correct: 24, + position: 0, + incorrect: 20, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 44, + date: "31.05.2025", + }, + }, + { + date: "31.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNi1SZoNmLwMTLlVGauEDNtUWZk5iYz0SZlZmLiVTLlVmYuYmMtUWZw5SY0ITLlR3cuEWMt42bs5iM20SbhdmLw4iMx4CMucjMuETNx0iclVGajhSI", + value: + "!(cheer-151.27.0.12.0.gam-62.lon-1a.ste-24a.pee-2f.bee-5b.fee-3b.dee-41.hee-30.che-b7)!", + result: { + word: "cheer", + correct: 27, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 39, + date: "31.05.2025", + }, + }, + { + date: "31.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcjYtUGaj5SM00SZlRmLyITLlVGbuUTMtc3bw5iMz0yc1FmLw4iMx4CMuUTMuETNx0iclVGajhSI", + value: "!(cheer-151.15.0.12.0.aus-32.pow-15.lee-22.dee-41.che-b7)!", + result: { + word: "cheer", + correct: 15, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "31.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/pyk-pyk-i-po-temacie-slightly-smiling-face-08-04-2025-diffle-diffleen-grywebowe-" +] = [ + { + date: "08.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZi5iN40SYlJnLw4iNuAjL44CO50SekFWZyhSI", + value: "!(ready-98.8.0.6.0.rea-86.bf)!", + result: { + word: "ready", + correct: 8, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "08.04.2025", + }, + }, + { + date: "08.04.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmJmL4ImLilTLhVmcuYzNtEWZw5yMy0SYl1mLxITLlh2YuAjLxEjLx4SOx4CO50SekFWZyhSI", + value: "!(ready-98.19.1.11.0.che-21.mea-23.pea-76.rea-9b.b8.bf)!", + result: { + word: "ready", + correct: 19, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "08.04.2025", + }, + }, + { + date: "08.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmJWLhVmcuUWMtUmcj5COtIWdh5CMugjLx4SMx4CO50SekFWZyhSI", + value: "!(ready-98.11.1.8.0.aub-8.cre-1e.rea-bf)!", + result: { + word: "ready", + correct: 11, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "08.04.2025", + }, + }, + { + date: "08.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZi5iY50SYlJnL1ETL39GcugTL0NXZuAjL0EjLx4iMx4CO50SekFWZyhSI", + value: "!(ready-98.12.1.14.0.est-8.pow-15.rea-9b.bf)!", + result: { + word: "ready", + correct: 12, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "08.04.2025", + }, + }, + { + date: "08.04.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZi1SYlJnLy0SZydmLyEWLvJHcuAjLxEjLw4SMx4CO50SekFWZyhSI", + value: "!(ready-98.11.0.11.0.pro-a2.gre-2.rea-bf)!", + result: { + word: "ready", + correct: 11, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "08.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/raczej-trudne-03-05-2025-diffle-diffleen-grywebowe-31-letters-in-4-words-large-g" +] = [ + { + date: "03.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMzYtkmLyYTMtEmci5iZtIXZh5iN40SYlJnLw4yNuMjLxIjLzITMtIXZpRWYnlmcihSI", + value: "!(brigadier-123.21.3.7.0.rea-86.aer-f.bra-162.i-c3)!", + result: { + word: "brigadier", + correct: 21, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "03.05.2025", + }, + }, + { + date: "03.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzMWLpJnYuETNtkmcw5SO40yZlJnLiZTLyJXauU2NtkWZy5CMuMTMuQjL1IjLzITMtIXZpRWYnlmcihSI", + value: "!(brigadier-123.25.4.13.0.rei-7e.irr-6b.reg-89.pri-51.bri-c3)!", + result: { + word: "brigadier", + correct: 25, + position: 4, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 42, + date: "03.05.2025", + }, + }, + { + date: "03.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzMWLpJnYuQDZtg2Yz4COtw2buYGNx0ych5yMt4Wdi5iM20SbhdmLw4SOuAjLxIjLzITMtIXZpRWYnlmcihSI", + value: "!(brigadier-123.21.0.9.0.gam-62.bun-3.as-14f.ol-8.3ch-d4.bri-c3)!", + result: { + word: "brigadier", + correct: 21, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "03.05.2025", + }, + }, + { + date: "03.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMj1SayJmLiZTLyJXauM2Yz0yclJnLw4SOuQjL2EjLzITMtIXZpRWYnlmcihSI", + value: "!(brigadier-123.16.4.9.0.res-3cc.irr-6b.bri-c3)!", + result: { + word: "brigadier", + correct: 16, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "03.05.2025", + }, + }, + { + date: "03.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzMWLpJnYuEWNtEmcn5yYx0CZhNmLh1SdlZmLw4SOuMjLwIjLzITMtIXZpRWYnlmcihSI", + value: "!(brigadier-123.20.3.9.0.feu-a.cad-1c.gra-5a.bri-c3)!", + result: { + word: "brigadier", + correct: 20, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "03.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/rzadzi-25-06-2025-diffle-diffleen-grywebowe-24-letters-in-4-words-large-green-ci" +] = [ + { + date: "25.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOyETLpJHcugTLjlmcuQDNtkmcj5CZx0CZphmLw4COuEjL1EjL2cTMtU2YulmcwhSI", + value: "!(prince-176.15.1.8.0.hid-1d.cri-44.ric-8.pri-128)!", + result: { + word: "prince", + correct: 15, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "25.06.2025", + }, + }, + { + date: "25.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgjMx0SayBnL2gTLhVmcuAjL04iMukjL2cTMtU2YulmcwhSI", + value: "!(prince-176.9.2.4.0.rea-86.pri-128)!", + result: { + word: "prince", + correct: 9, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "25.06.2025", + }, + }, + { + date: "25.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4ITMugTMtkmcw5CO50CcvNmLw4COuEjL1EjL2cTMtU2YulmcwhSI", + value: "!(prince-176.15.1.8.0.cop-98.pri-18.128)!", + result: { + word: "prince", + correct: 15, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "25.06.2025", + }, + }, + { + date: "25.06.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4ITMtkmcw5yMy0ibpNnLmFTLulWbuEjMtUGaj5CMuATMuMjL2EjL2cTMtU2YulmcwhSI", + value: "!(prince-176.16.3.10.0.che-21.min-1f.sin-23.pri-128)!", + result: { + word: "prince", + correct: 16, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "25.06.2025", + }, + }, + { + date: "25.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOyEjL4ETLpJHcuIDZtI3bj5iMtwWdy5iM20SbhdmLw4iNuIjL2EjL2cTMtU2YulmcwhSI", + value: "!(prince-176.16.2.6.0.gam-62.rul-2.cor-d2.pri-18.128)!", + result: { + word: "prince", + correct: 16, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "25.06.2025", + }, + }, + { + date: "25.06.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOyEjL4ETLp5iMh1ybyBnLw4iNuEjL1EjL2cTMtU2YulmcwhSI", + value: "!(prince-176.15.1.6.0.pro-a2.i-18.128)!", + result: { + word: "prince", + correct: 15, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "25.06.2025", + }, + }, + { + date: "25.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4ITMugTMuETNtkmcw5iMz0yc1FmLw4yNuEjL3EjL2cTMtU2YulmcwhSI", + value: "!(prince-176.17.1.7.0.aus-32.pri-51.18.128)!", + result: { + word: "prince", + correct: 17, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "25.06.2025", + }, + }, + { + date: "25.06.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgjMx0SayBnL40yYpJnL3ETLhJnYuMjMtQ3bt5CMuETMuAjL2EjL2cTMtU2YulmcwhSI", + value: "!(prince-176.16.0.11.0.mot-23.bra-17.ric-8.pri-128)!", + result: { + word: "prince", + correct: 16, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "25.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/siadlo-20-03-2025-diffle-diffleen-grywebowe-17-letters-in-2-words-large-green-ci" +] = [ + { + date: "20.03.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxQTLjhXZuITYt8mcw5CMucjLy4COukzNtQHclNGelhSI", + value: "!(except-79.8.2.7.0.pro-a2.exc-41)!", + result: { + word: "except", + correct: 8, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEDNtMGel5iNx0SdsBnL2gTLhVmcuAjL54CMuATMukzNtQHclNGelhSI", + value: "!(except-79.10.0.9.0.rea-86.plu-16.exc-41)!", + result: { + word: "except", + correct: 10, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxQTLjhXZuEjMx0CclRmLiFTMtUnc05yY40CbhZmLw4yMx4CMuATMukzNtQHclNGelhSI", + value: "!(except-79.10.0.13.0.fal-8c.tru-11b.dep-121.exc-41)!", + result: { + word: "except", + correct: 10, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxQTLjhXZukTOm1SZyBnLhJTLjVXbugjNtQ3Yv5SMy0SZoNmLw4CNx4SMuUTMukzNtQHclNGelhSI", + value: "!(except-79.15.1.14.0.che-21.oct-68.muc-2a.pre-f99.exc-41)!", + result: { + word: "except", + correct: 15, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxQTLjhnLh1SZs5CM50yYz5iY10Ca0VmLyYTLtF2ZuAjL54iMuUTMukzNtQHclNGelhSI", + value: "!(except-79.15.2.9.0.gam-62.eth-5b.sc-90.le-a.xc-41)!", + result: { + word: "except", + correct: 15, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxQTLj5yM00Cc4VmLiFWLlB3cuAjL54yMuMTMukzNtQHclNGelhSI", + value: "!(except-79.13.3.9.0.spe-ab.exp-43.c-41)!", + result: { + word: "except", + correct: 13, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "20.03.2025", + }, + }, + { + date: "20.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEDNtMGel5SNz0SZoNmLz0SZlpmLl1ibpJmLhJTLsV2duITMtU2bw5SZj1ichZmLw4yNx4SMuQTMukzNtQHclNGelhSI", + value: + "!(except-79.14.1.17.0.far-ce.poe-12.wel-2a.bin-e.jee-3.che-35.exc-41)!", + result: { + word: "except", + correct: 14, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 32, + date: "20.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/skladalem-z-kawalkow-ale-fajne-slowo-11-01-2025-diffle-diffleen-grywebowe-27-let" +] = [ + { + date: "11.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYGNx0yYuVmL4MWLoN2MukTLuVHcuQjMtI3bs5iYy0iah1mLw4CNx4CMuMTMuETMtUmcvNmblhSI", + value: "!(encore-11.13.0.14.0.maj-2b.lor-24.pun-9.3ch-c8.enc-14f)!", + result: { + word: "encore", + correct: 13, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "11.01.2025", + }, + }, + { + date: "11.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYGNx0yYuVmLx0ib19mLxITLlh2YuAjL34iMuETMuETMtUmcvNmblhSI", + value: "!(encore-11.11.2.7.0.che-21.oun-1.enc-14f)!", + result: { + word: "encore", + correct: 11, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "11.01.2025", + }, + }, + { + date: "11.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYGNx0yYuVmLiNTL19GcuQzMy0CbvNmLmFTLjVmbuYzMx0SYoNnLw4SNx4yMuYTMuETMtUmcvNmblhSI", + value: "!(encore-11.16.3.15.0.sha-136.nec-1f.col-234.pou-3b.enc-14f)!", + result: { + word: "encore", + correct: 16, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "11.01.2025", + }, + }, + { + date: "11.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZ0ETLj5WZuUDNt42Zp5CN20ybuNnLygTMt8Gbm5SNyMTLuFWbuAjL54SMukTMuETMtUmcvNmblhSI", + value: "!(encore-11.19.1.9.0.man-325.flo-182.sno-64.ign-45.enc-14f)!", + result: { + word: "encore", + correct: 19, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "11.01.2025", + }, + }, + { + date: "11.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmRTMtMmLwQTLy5WZuQGNtIXZu5yN2ETLk5WauYWMx0SYoBnLw4CNx4yMuYTMuETMtUmcvNmblhSI", + value: "!(encore-11.16.3.14.0.pha-11f.ind-167.ner-4d.enr-40.c-14f)!", + result: { + word: "encore", + correct: 16, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "11.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/strasznie-sie-krecilem-w-miejscu-dzisiaj-09-04-2025-diffle-diffleen-grywebowe-60" +] = [ + { + date: "09.04.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEzYtYXak5SMx0SavZnLmNmNuQWYx0CajNjLxQTLulmZuEDZ40ycpRmL0EWLu9mYucTMt4Wa35SO50SbpRmL50ibvBnL5cTMtw2bz5SMy0SdvlnLxITLlh2YuAjLwIjL34yMz4SO50ibvl2cpZXakhSI", + value: + "!(division-99.33.7.20.0.che-21.you-21.sol-179.pon-9.dim-99.win-17.bon-a4.dis-8d1.fin-41.3ch-1ad.6cf.voi-11.div-c1)!", + result: { + word: "division", + correct: 33, + position: 7, + incorrect: 20, + knownIncorrect: 0, + totalWords: 13, + totalLetters: 60, + date: "09.04.2025", + }, + }, + { + date: "09.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEzYtYXak5yY20ycpZnL2gTLpN2cuQTYx0ibp1mLyUmMtg2Yz4CZt82dz5iMlZTLoN2MukDM3ETLu9mbuAjLwIjLx4COy4SO50ibvl2cpZXakhSI", + value: + "!(division-99.28.1.20.0.non-1709.3ch-6e2.swo-d.3ch-2e2.min-1a4.sci-86.vis-6c.div-c1)!", + result: { + word: "division", + correct: 28, + position: 1, + incorrect: 20, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 49, + date: "09.04.2025", + }, + }, + { + date: "09.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxMWL25SZxETLw5CMjRTLzlmL2ETLzVHZuIjNt0WYn5CMukjLw4iNx4SO50ibvl2cpZXakhSI", + value: "!(division-99.16.0.9.0.gam-62.dus-16.is-4c0.p-11e.v-c1)!", + result: { + word: "division", + correct: 16, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "09.04.2025", + }, + }, + { + date: "09.04.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMj1iduYDOt4Wak5CMz0CZpdnLyEWLvJHcuAjLxEjLz4CNx4SO50ibvl2cpZXakhSI", + value: "!(division-99.14.3.11.0.pro-a2.wid-30.din-86.v-c1)!", + result: { + word: "division", + correct: 14, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "09.04.2025", + }, + }, + { + date: "09.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMj1idpRmLjZTLzlmduETOz0CbvBnLyMTLzVXYuAjLwEjLx4COx4SO50ibvl2cpZXakhSI", + value: "!(division-99.18.1.10.0.aus-32.pol-391.vis-6c.div-c1)!", + result: { + word: "division", + correct: 18, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "09.04.2025", + }, + }, + { + date: "09.04.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMj1idpRmLlNTLkFWbuYDNtI3bi5CMugjLx4iNx4SO50ibvl2cpZXakhSI", + value: "!(division-99.16.1.8.0.bor-46.mad-3e.div-c1)!", + result: { + word: "division", + correct: 16, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "09.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/szkoda-ze-nie-udalo-sie-zgadnac-o-jedna-mniej-09-03-2025-diffle-diffleen-grywebo" +] = [ + { + date: "09.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMDNtU2d05SMl1SZsBnL2gTLhVmcuAjL44SMuITMugjNtkHduV2d0hSI", + value: "!(twenty-68.12.1.8.0.rea-86.ple-e1.twe-43)!", + result: { + word: "twenty", + correct: 12, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzQTLldHdugDNtU2dz5iMh1ybyBnLw4SMx4CMuETMugjNtkHduV2d0hSI", + value: "!(twenty-68.11.0.11.0.pro-a2.swe-48.twe-43)!", + result: { + word: "twenty", + correct: 11, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMDNtU2d05CZm1iblBnLx4SOx0SZ3RnLkdzNtg2Yz4yYtc3bu5CM00ibp1mLx4yNx4iMuAjMugjNtkHduV2d0hSI", + value: + "!(twenty-68.20.2.17.1.min-40.now-c.3ch-77d.twe-19.1.pen-fd.twe-43)!", + result: { + word: "twenty", + correct: 20, + position: 2, + incorrect: 17, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 39, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM00SZ35yN4ETLuVGdugjZt4WZi5SNzETLuVGZuETZtUGbw5CMwETLuV2cuIWNtgGdl5iM20SbhdmLw4iMx4CMukjMugjNtkHduV2d0hSI", + value: + "!(twenty-68.29.0.12.0.gam-62.eth-5b.sen-100.ple-e1.den-135.ben-f8.ten-187.we-43)!", + result: { + word: "twenty", + correct: 29, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 41, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzQTLldnL3gTMt4WZ05yM3ETLuVGcuMDNtQnbl5SNy0Cdl5mLxITLlh2YuAjL54iMuEjMugjNtkHduV2d0hSI", + value: "!(twenty-68.21.2.9.0.che-21.net-25.ent-43.pen-173.ten-187.we-43)!", + result: { + word: "twenty", + correct: 21, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM00SZ3RnLyMTLzVXYuAjL14CMuATMugjNtkHduV2d0hSI", + value: "!(twenty-68.10.0.5.0.aus-32.twe-43)!", + result: { + word: "twenty", + correct: 10, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "09.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMDNtU2ducDOx0iblRnL4gTL0FWbuAjL04CMuYTMugjNtkHduV2d0hSI", + value: "!(twenty-68.16.0.4.0.mat-88.ten-187.we-43)!", + result: { + word: "twenty", + correct: 16, + position: 0, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "09.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/tak-proste-ze-az-trudne-18-05-2025-diffle-diffleen-grywebowe-28-letters-in-6-wor" +] = [ + { + date: "18.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpAzNtEGa35COwgTLoN2MugTOy0SY1FnLxYWMtwWYt5yNx0iZhRmL2gTLhVmcuAjL0EjLw4CNx4COzETL0FGa3hSI", + value: + "!(what-138.14.0.14.0.rea-86.daf-17.mal-1f1.qua-298.3ch-808.wha-70)!", + result: { + word: "what", + correct: 14, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 28, + date: "18.05.2025", + }, + }, + { + date: "18.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM30SYodnLjVWMtEGaw5SMtk2bq5iZj1SYoRnLiZmMtg2Yz4iNyITLhN2cuMGOx0SYsZmLjNTL1JHZuAjL2EjLw4SOx4COzETL0FGa3hSI", + value: + "!(what-138.19.0.16.0.dru-3c.fla-18c.sca-226.3ch-2fb.tha-cf.joi-1.pha-1ec.wha-70)!", + result: { + word: "what", + correct: 19, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 35, + date: "18.05.2025", + }, + }, + { + date: "18.05.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwcTLhh2duMTMtg2Yy4iMh1ybyBnLw4SOuAjL44COzETL0FGa3hSI", + value: "!(what-138.8.0.9.0.pro-a2.2ch-13.wha-70)!", + result: { + word: "what", + correct: 8, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "18.05.2025", + }, + }, + { + date: "18.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpAzNtEGa35SMy0SZoNmLw4SNuAjL34COzETL0FGa3hSI", + value: "!(what-138.7.0.5.0.che-21.wha-70)!", + result: { + word: "what", + correct: 7, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 12, + date: "18.05.2025", + }, + }, + { + date: "18.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwcTLhh2ducDZ00SYoNmLhRWLzFGcuIjNt0WYn5CMucjLw4CMx4COzETL0FGa3hSI", + value: "!(what-138.10.0.7.0.gam-62.pas-da.cha-4d7.wha-70)!", + result: { + word: "what", + correct: 10, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 17, + date: "18.05.2025", + }, + }, + { + date: "18.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpAzNtEGa35yNmdjLmhTMugTOy4COzQjLklTNuUWO04SOi5iN0ITLoN2MuMTMtg2Yy4iNwITL05WauAjL3EjLw4CNy4COzETL0FGa3hSI", + value: + "!(what-138.24.0.17.0.int-206.2ch-13.3ch-246.b9.49e.59d.438.298.18f.7f7.wha-70)!", + result: { + word: "what", + correct: 24, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 41, + date: "18.05.2025", + }, + }, + { + date: "18.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM30SYodnLmNWLhhGduImZy0CajNjLzETLoNmMuMTZtIXZ05SZ50yYhBnL1MTLiFmZuEjL5EjLw4SNx4COzETL0FGa3hSI", + value: + "!(what-138.15.0.19.1.fab-35.pac-9e.ter-e3.2ch-13.3ch-2fb.tha-cf.wha-70)!", + result: { + word: "what", + correct: 15, + position: 0, + incorrect: 19, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 34, + date: "18.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/takie-latwe-ze-az-trudne-04-04-2025-diffle-diffleen-grywebowe-21-letters-in-4-wo" +] = [ + { + date: "04.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpATOugTOtMWduQWNtU3Yz5iN40SYlJnLw4SOuIjLwEjL0kTLoNWdzhSI", + value: "!(such-94.10.2.9.0.rea-86.scu-5d.uc-98.90)!", + result: { + word: "such", + correct: 10, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "04.04.2025", + }, + }, + { + date: "04.04.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpATOtMWdz5SYx0icvBnLxITLlh2YuAjL54CMugjL0kTLoNWdzhSI", + value: "!(such-94.8.0.9.0.che-21.por-1a.suc-90)!", + result: { + word: "such", + correct: 8, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "04.04.2025", + }, + }, + { + date: "04.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwkTLjVnL1UWLpx2cuQTYt42bi5iM20SbhdmLw4iMx4CMuUjL0kTLoNWdzhSI", + value: "!(such-94.5.0.12.0.gam-62.bon-a4.sli-e5.uc-90)!", + result: { + word: "such", + correct: 5, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 17, + date: "04.04.2025", + }, + }, + { + date: "04.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpATOugTOtMmLygTNtAXdz5SYtUXZm5CMuMTMuEjLwEjL0kTLoNWdzhSI", + value: "!(such-94.10.1.13.0.feu-a.sup-582.c-98.90)!", + result: { + word: "such", + correct: 10, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "04.04.2025", + }, + }, + { + date: "04.04.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwkTLjV3cuYTMtMWdm5iMh1ybyBnLw4iMx4CMucjL0kTLoNWdzhSI", + value: "!(such-94.7.0.12.0.pro-a2.fuc-16.suc-90)!", + result: { + word: "such", + correct: 7, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "04.04.2025", + }, + }, + { + date: "04.04.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwkTLjV3cuQDM30CajNjL1IWLhdnLxUTL1R3cucTMtUXZy5CMuMTMuEjLwEjL0kTLoNWdzhSI", + value: "!(such-94.10.1.13.0.reu-17.stu-51.wa-b5.3ch-704.suc-90)!", + result: { + word: "such", + correct: 10, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "04.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/takie-nieszczegolne-nie-porywajace-03-03-2025-diffle-diffleen-grywebowe-28-lette" +] = [ + { + date: "03.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3ImMuMmZy0SawVmLy0CcldnLmRGNt02bj5SMuETMuEjL2EjLyYTLoBXY0lGclhSI", + value: "!(epitaph-62.16.1.11.1.com-4df.wep-2.epi-2fc.2b7)!", + result: { + word: "epitaph", + correct: 16, + position: 1, + incorrect: 11, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 28, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcjYy4CNx0SawVmLlVTLwV2cucTMtQWZw5iM20SbhdmLw4yNuIjL3EjLyYTLoBXY0lGclhSI", + value: "!(epitaph-62.17.2.7.0.gam-62.ped-17.sep-5e.epi-14.2b7)!", + result: { + word: "epitaph", + correct: 17, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNiJTLpBXZugjNx0SYsBnL3ITLpRmLlZWL1FnL0QTLphXZuQTLlRXauYDOtEWZy5CMuMTMuMjLyIjLyYTLoBXY0lGclhSI", + value: + "!(epitaph-62.22.3.13.0.rea-86.ite-4.exi-44.qu-fe.di-27.pla-168.epi-2b7)!", + result: { + word: "epitaph", + correct: 22, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 38, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcjYy0SawVmL5cTL19GcuQWL0FWZuATL2lmZucDMx0SayJmLiFTLzFmLzQTLhhXZuEjMtUGaj5CMuUTMucjLwIjLyYTLoBXY0lGclhSI", + value: + "!(epitaph-62.20.7.15.0.che-21.exa-43.as-1b.bri-107.fiv-0.eat-d.pou-79.epi-2b7)!", + result: { + word: "epitaph", + correct: 20, + position: 7, + incorrect: 15, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 42, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcjYy0SawVmLyEWLvJHcuAjL24yMukjLyYTLoBXY0lGclhSI", + value: "!(epitaph-62.9.3.6.0.pro-a2.epi-2b7)!", + result: { + word: "epitaph", + correct: 9, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "03.03.2025", + }, + }, + { + date: "03.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNiJTLpBXZuUmNtkWYm5SNtkGbl5iMz0yc1FmLw4SOuIjL2EjLyYTLoBXY0lGclhSI", + value: "!(epitaph-62.16.2.9.0.aus-32.eli-5.fai-6e.epi-2b7)!", + result: { + word: "epitaph", + correct: 16, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "03.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/tez-fajne-blush-26-05-2025-diffle-diffleen-grywebowe-24-letters-in-4-words-15-4-" +] = [ + { + date: "26.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0UTLwVnL1ITLp1WZuYWMy0CajNjL2gTLhVmcuAjL14CNuUTMuYDNx0SYpJ3boBXdlhSI", + value: "!(euphoria-146.15.4.5.0.rea-86.3ch-21f.emi-25.up-54)!", + result: { + word: "euphoria", + correct: 15, + position: 4, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "26.05.2025", + }, + }, + { + date: "26.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTNtAXdl5SZz0icvdnL1ETL19mduEmNtYmZh5SNy0SahBnL5UWMtUGa05CMhFTLzVGZuUjYtIncp5CMukTMuETMuMjMuYDNx0SYpJ3boBXdlhSI", + value: + "!(euphoria-146.23.11.19.0.irr-b5.des-1a0.the-1e9.pai-25.aff-6a.vou-15.wor-3e.eup-54)!", + result: { + word: "euphoria", + correct: 23, + position: 11, + incorrect: 19, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 53, + date: "26.05.2025", + }, + }, + { + date: "26.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTNtAnL5UTLyVXZuQmZx0CajNjL5YTLoNmMukDOy0CajNjLlRWLtlGbuIWLw9GZuQTZx0CclJnLhJTMtkGa35SMy0SZoNmLw4SNx4SOuUjMuYDNx0SYpJ3boBXdlhSI", + value: + "!(euphoria-146.25.9.15.0.che-21.whi-12a.rep-1e4.dop-b.lim-de.3ch-289.2ch-69.3ch-1fd.eur-59.p-54)!", + result: { + word: "euphoria", + correct: 25, + position: 9, + incorrect: 15, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 49, + date: "26.05.2025", + }, + }, + { + date: "26.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCN10CcuAjNtIXdl5SY30SYlBnL5QTLtF2ZuAjLz4SNuUTMuYDNx0SYpJ3boBXdlhSI", + value: "!(euphoria-146.15.5.3.0.gam-49.pea-7a.eur-60.p-54)!", + result: { + word: "euphoria", + correct: 15, + position: 5, + incorrect: 3, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "26.05.2025", + }, + }, + { + date: "26.05.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0UTLwVnLjVWMtkGcl5iY40CawNnLyEWLvJHcuAjL44SNuAjMuYDNx0SYpJ3boBXdlhSI", + value: "!(euphoria-146.20.5.8.0.pro-a2.sph-8b.epi-1ec.up-54)!", + result: { + word: "euphoria", + correct: 20, + position: 5, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "26.05.2025", + }, + }, + { + date: "26.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTNtAXdl5COz0SblxmLyMTLzVXYuAjL24iMuYTMuYDNx0SYpJ3boBXdlhSI", + value: "!(euphoria-146.16.2.6.0.aus-32.lem-38.eup-54)!", + result: { + word: "euphoria", + correct: 16, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "26.05.2025", + }, + }, + { + date: "26.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0UTLwVXZuQjNx0CclJnLzMWLvB3cuAjL44yMuUTMuYDNx0SYpJ3boBXdlhSI", + value: "!(euphoria-146.15.3.8.0.spo-c3.rep-164.eup-54)!", + result: { + word: "euphoria", + correct: 15, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "26.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/thats-how-the-world-ends-not-with-a-bang-but-with-a-whimper-05-03-2025-diffle-di" +] = [ + { + date: "05.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYm5yMz0Sdx5CZ50yY1NnLy0yc1dnL5gjMtg2Yz4iNx0yZ1FmLw4yNx4iMugTMuQjNtsWYlVXczhSI", + value: "!(squeak-64.18.2.17.0.aug-16.3ch-289.wus-2.suc-9d.qu-33.fa)!", + result: { + word: "squeak", + correct: 18, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEmZtUXcz5iNiZTLoN2MuI2MtEWZz5iN40SYlJnLw4SMx4iMuITMuQjNtsWYlVXczhSI", + value: "!(squeak-64.12.2.11.0.rea-86.sea-3b.3ch-6b6.squ-fa)!", + result: { + word: "squeak", + correct: 12, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYm1SdxNnLyEWL19mYuADNtEWZuATLlBnLlVTLhV2cugTNtEWZs5SMy0SZoNmLw4CNx4SMuIjMuQjNtsWYlVXczhSI", + value: + "!(squeak-64.22.1.14.0.che-21.lea-58.sea-5e.pe-0.ea-40.bou-a2.squ-fa)!", + result: { + word: "squeak", + correct: 22, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 37, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEmZtUXcuATL1NmL2ETL1hmLl1Sdt5yM30SdvNnL1AzNtg2Yz4iMz0yc1FmLw4iNx4iMuAjMuQjNtsWYlVXczhSI", + value: + "!(squeak-64.20.2.16.0.aus-32.3ch-705.sou-73.mu-e.hu-16.cu-0.qu-fa)!", + result: { + word: "squeak", + correct: 20, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 38, + date: "05.03.2025", + }, + }, + { + date: "05.03.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEmZtUXcuADNtEWZz5iMlNTLoN2MuATLhV2duYTMtMWdm5CMtUGaz5iYx0ychVmLkdTLhVmYucTMtQWZw5iM20SbhdmLw4iNx4iMuUjMuQjNtsWYlVXczhSI", + value: + "!(squeak-64.25.2.16.0.gam-62.ped-17.bea-7d.eas-1b.she-0.fuc-16.wea-0.3ch-3e2.sea-40.qu-fa)!", + result: { + word: "squeak", + correct: 25, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 43, + date: "05.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/to-nie-to-slowo-ktorego-szukacie-24-05-2025-diffle-diffleen-grywebowe-58-letters" +] = [ + { + date: "24.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYjMtknL0UTLptmLwUTLpxmLxgjLxcTLph2cuETNtwWao5CN0UTLwVnL00Sa35SM3ETLph2cuIDZx0CdhNmLy4yNx4SOuIzMuQDNx0CdodWasl3azhSI", + value: + "!(skylight-144.32.9.17.2.cat-1d2.shi-171.wi-4.up-544.hil-51.shi-71.81.li-50.ki-54.y-26)!", + result: { + word: "skylight", + correct: 32, + position: 9, + incorrect: 17, + knownIncorrect: 2, + totalWords: 10, + totalLetters: 58, + date: "24.05.2025", + }, + }, + { + date: "24.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYjMtk3az5SMkZjL4ADOtg2Yz4iYy0SdsBnLlNmNtg2Yz4iN40SYlJnLw4CMx4yMucTMuQDNx0CdodWasl3azhSI", + value: + "!(skylight-144.17.3.10.0.rea-86.3ch-6ce.plu-2b.3ch-808.6d1.sky-26)!", + result: { + word: "skylight", + correct: 17, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "24.05.2025", + }, + }, + { + date: "24.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNy0Ser5yYi1CbpNnL0YjMuYjY20CajNjLlNTLpx2cuQjMtcWas5COl1SaoNmLhFTLnVnYuYDNt42bw5iM20SbhdmLw4SNx4iNugjMuQDNx0CdodWasl3azhSI", + value: + "!(skylight-144.28.6.15.0.gam-62.pon-46.bug-1a.chi-e8.lig-24.sli-3e.3ch-6b6.264.sil-bc.ky-26)!", + result: { + word: "skylight", + correct: 28, + position: 6, + incorrect: 15, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 49, + date: "24.05.2025", + }, + }, + { + date: "24.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNy0Ser5SZz0SasNnL1QWNtg2Yz4CMx0yZpZmLh1yZp1mLxITLlh2YuAjL34CNuUjMuQDNx0CdodWasl3azhSI", + value: "!(skylight-144.25.4.7.0.che-21.mig-a.fig-10.3ch-5d5.sli-3e.ky-26)!", + result: { + word: "skylight", + correct: 25, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "24.05.2025", + }, + }, + { + date: "24.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2ITL5t2cuEWLnlWbuIzNx0Cd4VmLw4SMx4yMuMTMuQDNx0CdodWasl3azhSI", + value: "!(skylight-144.13.3.11.0.ext-172.mig-a.sky-26)!", + result: { + word: "skylight", + correct: 13, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "24.05.2025", + }, + }, + { + date: "24.05.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYjMtk3auU2MtkGbz5yM10SasZmL3YDNtg2Yz4iMh1ybyBnLw4CMx4SMuIjMuQDNx0CdodWasl3azhSI", + value: "!(skylight-144.22.1.10.0.pro-a2.3ch-467.fli-53.sli-3e.ky-26)!", + result: { + word: "skylight", + correct: 22, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "24.05.2025", + }, + }, + { + date: "24.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNy0SerNnLxQmNuQDZ24iNiZTLoN2MuITMt0Wez5iMz0yc1FmLw4CMx4yMuIjMuQDNx0CdodWasl3azhSI", + value: "!(skylight-144.22.3.10.0.aus-32.sym-12.3ch-6b6.6d4.6d1.sky-26)!", + result: { + word: "skylight", + correct: 22, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "24.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/trafilem-jak-rzadko-14-04-2025-diffle-diffleen-grywebowe-22-letters-in-3-words-l" +] = [ + { + date: "14.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZz0ybuFmLjJTLuFmZuYDOtEWZy5CMugjLx4yMx4CNwETL5xWYt9mbhhSI", + value: "!(anomaly-104.13.1.8.0.rea-86.fan-2c.ano-3e)!", + result: { + word: "anomaly", + correct: 13, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "14.04.2025", + }, + }, + { + date: "14.04.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZz0ybuFmLmZWMt4WYt5iNyITLhxGcuEjMtUGaj5CMugjLy4SNx4CNwETL5xWYt9mbhhSI", + value: "!(anomaly-104.15.2.8.0.che-21.pla-226.man-1ff.ano-3e)!", + result: { + word: "anomaly", + correct: 15, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "14.04.2025", + }, + }, + { + date: "14.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpU2Mt8mbh5SOtE2bt5yYyUTLoN2MuYTL3VmbuEjLwEjLy4yMx4CNwETL5xWYt9mbhhSI", + value: "!(anomaly-104.13.2.10.1.new-6.3ch-52c.moa-9.ano-3e)!", + result: { + word: "anomaly", + correct: 13, + position: 2, + incorrect: 10, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 25, + date: "14.04.2025", + }, + }, + { + date: "14.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZz0ybuFmLyYWMtwWYt5CO3ITLsFGcuIjNt0WYn5CMuUjLy4CNx4CNwETL5xWYt9mbhhSI", + value: "!(anomaly-104.14.2.5.0.gam-62.pal-278.mal-1f2.ano-3e)!", + result: { + word: "anomaly", + correct: 14, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "14.04.2025", + }, + }, + { + date: "14.04.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlNTLv5WYuQzMtI3bu5SNkJTLjVGZuAjLxEjLx4CNx4CNwETL5xWYt9mbhhSI", + value: "!(anomaly-104.14.1.11.0.dec-2d5.nor-34.ano-3e)!", + result: { + word: "anomaly", + correct: 14, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "14.04.2025", + }, + }, + { + date: "14.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZz0ybuFmLmFTLt92duIDNtcWYt5CMuUjLy4iNx4CNwETL5xWYt9mbhhSI", + value: "!(anomaly-104.16.2.5.0.mag-42.wom-1f.ano-3e)!", + result: { + word: "anomaly", + correct: 16, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "14.04.2025", + }, + }, + { + date: "14.04.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlNTLv5WYuEWMx0CbhNnLzIWLlh2duAjLwEjLy4SMx4CNwETL5xWYt9mbhhSI", + value: "!(anomaly-104.11.2.10.0.whe-b3.sal-11a.ano-3e)!", + result: { + word: "anomaly", + correct: 11, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "14.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/troche-przekombinowalem-moglo-byc-w-trzech-05-06-2025-diffle-diffleen-grywebowe-" +] = [ + { + date: "05.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCN50yZh1mLyEWMtEGbw5CN10iblNmL2gTLhVmcuAjL14SNukTMuYTNx0yYpRXZudWYthSI", + value: "!(magnetic-156.19.5.5.0.rea-86.cen-54.pla-1a2.mag-94)!", + result: { + word: "magnetic", + correct: 19, + position: 5, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "05.06.2025", + }, + }, + { + date: "05.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTOtcWYt5SOt4Wdh5SY0ETLsVGduAjL34yMuQTMuYTNx0yYpRXZudWYthSI", + value: "!(magnetic-156.14.3.7.0.tel-14a.aun-9.mag-94)!", + result: { + word: "magnetic", + correct: 14, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "05.06.2025", + }, + }, + { + date: "05.06.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCN50yZh1mLxITLlh2YuAjLx4CNuETMuYTNx0yYpRXZudWYthSI", + value: "!(magnetic-156.11.4.1.0.che-21.mag-94)!", + result: { + word: "magnetic", + correct: 11, + position: 4, + incorrect: 1, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "05.06.2025", + }, + }, + { + date: "05.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCN54iM54CZx0yZh1mLyYTLtF2ZuAjLx4iMuAjMuYTNx0yYpRXZudWYthSI", + value: "!(magnetic-156.20.2.1.0.gam-62.mag-1d.92.94)!", + result: { + word: "magnetic", + correct: 20, + position: 2, + incorrect: 1, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "05.06.2025", + }, + }, + { + date: "05.06.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTOtcmL50iah1mLyEWLvJHcuAjL34SMukTMuYTNx0yYpRXZudWYthSI", + value: "!(magnetic-156.19.1.7.0.pro-a2.maj-9.g-94)!", + result: { + word: "magnetic", + correct: 19, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "05.06.2025", + }, + }, + { + date: "05.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0kTLn5SYy0yah1mLxIWLh1WYuUWLtVmcuEWL1VmZuAjL54iNukTMuYTNx0yYpRXZudWYthSI", + value: "!(magnetic-156.19.6.9.0.feu-a.rem-e.ama-b1.mak-2a.g-94)!", + result: { + word: "magnetic", + correct: 19, + position: 6, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "05.06.2025", + }, + }, + { + date: "05.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0kTLnFmL00SZu5yN20ibl1mL0ETLpBXZuImMy0SZoNmLw4CMx4iMuIjMuYTNx0yYpRXZudWYthSI", + value: "!(magnetic-156.22.2.10.0.che-22b.epi-14.men-67.ne-4.ag-94)!", + result: { + word: "magnetic", + correct: 22, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "05.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/trudne-bo-znow-duzo-pasowalo-07-02-2025-diffle-diffleen-grywebowe-60-letters-in-" +] = [ + { + date: "07.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiJmMtMWat5SMtoXYk5SZ10yYp5SZl1yYh1mL1ETLoN2MucjNx0SY1FnLxEWLhJnZuIWLnVmcuEWLylGcuY2Yy0ichJmLx4CMy4CNuYzMugzMtUmdhd3byNWathSI", + value: + "!(microwave-38.36.4.20.1.bar-2cf.pir-a.reg-b.fra-a1.qua-167.3ch-15.mac-ee.ic-5e.daz-1.mic-2bb)!", + result: { + word: "microwave", + correct: 36, + position: 4, + incorrect: 20, + knownIncorrect: 1, + totalWords: 10, + totalLetters: 60, + date: "07.02.2025", + }, + }, + { + date: "07.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYiJTLjlmL1ETL29WbuETYtkmcw5SYy0SbhJnLyYTLtF2ZuAjL14SNuAjMugzMtUmdhd3byNWathSI", + value: "!(microwave-38.20.5.5.0.gam-62.ram-2a.pri-a1.mov-15.ic-2bb)!", + result: { + word: "microwave", + correct: 20, + position: 5, + incorrect: 5, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "07.02.2025", + }, + }, + { + date: "07.02.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpImYy0yYp1mLykjMuIDNy4SOi1CajNjLlVTLjlWbuIjNx0CajNjL30yYhJnLm1ic1BnLw4iMx4iMuUjMugzMtUmdhd3byNWathSI", + value: + "!(microwave-38.25.2.12.0.pur-f.rac-7.3ch-162.mic-5e.3ch-b9.242.292.mic-2bb)!", + result: { + word: "microwave", + correct: 25, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 39, + date: "07.02.2025", + }, + }, + { + date: "07.02.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYiJTLjlWbuMDNtIXY35SY10SbhNmLiN2Mtg2Yz4iZx0yYvRmLlFTL19WeuMGNtIXYm5yY00SY4VmLzUTLy9mYuUWNuETMtMWat5iNy0CctlmLlVTLlNWYuEjMtUGaj5CMuUTMuMTMukzMugzMtUmdhd3byNWathSI", + value: + "!(microwave-38.39.13.15.0.che-21.ace-5e.imp-26.mic-11.5e.bor-53.exa-4c.far-4c.you-1e.doc-1f.3ch-3cb.cam-5a.war-43.mic-2bb)!", + result: { + word: "microwave", + correct: 39, + position: 13, + incorrect: 15, + knownIncorrect: 0, + totalWords: 14, + totalLetters: 67, + date: "07.02.2025", + }, + }, + { + date: "07.02.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYiJjL3cTLjlmLxITLlFWbuIjZx0SblRmLw4CMx4yMuAjMugzMtUmdhd3byNWathSI", + value: "!(microwave-38.20.3.10.0.dem-1f2.mae-21.ic-77.2bb)!", + result: { + word: "microwave", + correct: 20, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "07.02.2025", + }, + }, + { + date: "07.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiJmMuczNtMWat5iMk1icvNmL3ITLjlGZuIWL1VGauAjL34CNuMjMugzMtUmdhd3byNWathSI", + value: "!(microwave-38.23.4.7.0.heu-b.dic-27.cor-d2.mic-77.2bb)!", + result: { + word: "microwave", + correct: 23, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "07.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/trudne-tego-slowa-tez-nie-znalem-14-01-2025-it-diffle-diffleit-grywebowe-66-lett" +] = [ + { + date: "14.01.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpEGNtE2Yz5iMx0yYulmLh1yZhNmL3ITLnFmduQ2NtcWYy5iNtw2Zh5SOtoXaw5CN50icv1mLy4CNx4CNugDNuQTMtUmchlGbnF2YzhSI", + value: + "!(scagliare-14.48.4.14.2.mor-94.piz-9.agl-6.rag-7d.vag-27.cag-a.inc-12.sca-4a)!", + result: { + word: "scagliare", + correct: 48, + position: 4, + incorrect: 14, + knownIncorrect: 2, + totalWords: 8, + totalLetters: 66, + date: "14.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/tym-razem-bylem-madrzejszy-i-nie-strzelalem-na-oslep-01-06-2025-diffle-diffleen-" +] = [ + { + date: "01.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEmNt0Wdz5iYy0SdsBnLyUmNtg2Yz4iN40SYlJnLw4COuEjLzEjLyUTMt42bt1WdzhSI", + value: "!(summon-152.13.1.8.0.rea-86.3ch-6e2.plu-2b.sum-6a)!", + result: { + word: "summon", + correct: 13, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "01.06.2025", + }, + }, + { + date: "01.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhZTLtV3cugDMx0ycp1mLw4SOuEjLwEjLyUTMt42bt1WdzhSI", + value: "!(summon-152.10.1.9.0.mis-108.sum-6a)!", + result: { + word: "summon", + correct: 10, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "01.06.2025", + }, + }, + { + date: "01.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY20Sb1NnL3AjNtg2Yz4CM10SbpNnL4IGNt42bt5iM20SbhdmLw4SOuAjL1EjLyUTMt42bt1WdzhSI", + value: "!(summon-152.15.0.9.0.gam-62.mon-4b8.sim-50.3ch-607.sum-6a)!", + result: { + word: "summon", + correct: 15, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "01.06.2025", + }, + }, + { + date: "01.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY24SY34CZ30Sb1NnLh1SdlZmLw4yNuEjL1EjLyUTMt42bt1WdzhSI", + value: "!(summon-152.15.1.7.0.feu-a.sum-7d.7a.6a)!", + result: { + word: "summon", + correct: 15, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "01.06.2025", + }, + }, + { + date: "01.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhZTLtVnL3ATMtIXZuUWZt8Gcz5iMlZTLoN2MuMmNtEGaz5CMuATMuAjL5EjLyUTMt42bt1WdzhSI", + value: "!(summon-152.19.0.10.0.sha-6c.3ch-6e2.spo-ee.er-107.um-6a)!", + result: { + word: "summon", + correct: 19, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "01.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/uch-jakie-wredne-12-03-2025-diffle-diffleen-grywebowe-42-letters-in-7-words-larg" +] = [ + { + date: "12.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZ00CZvJmLyETLy92duYWMtQ2bi5iMm1CajNjLjFWMt8mci5CNx0SevpmLyIWLlx2YuAjLzEjL04SNy4SM30yay92d5R2bihSI", + value: + "!(bodywork-71.25.4.13.0.cle-b2.joy-14.bro-1ac.3ch-f2.bod-1f.wor-12.bod-4e)!", + result: { + word: "bodywork", + correct: 25, + position: 4, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlRTLk5SMz0ybvJmL3AjNtg2Yz4CMx0icvxmL2gTLhVmcuAjLwEjLy4yNx4SM30yay92d5R2bihSI", + value: "!(bodywork-71.17.2.10.0.rea-86.lor-10.3ch-607.boo-31.d-4e)!", + result: { + word: "bodywork", + correct: 17, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlRTLk9mYuU2MtI3b35SMz0ybvJmLz0icvdnLhNWLy9mYuMGNt8mcm5iM50ybsBnLxITLlh2YuAjL0EjL04SNy4SM30yay92d5R2bihSI", + value: + "!(bodywork-71.25.4.14.0.che-21.plo-92.fro-4c.bor-ca.wor-3.boo-31.wor-3e.bod-4e)!", + result: { + word: "bodywork", + correct: 25, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 43, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUGNuYWMtQ2bi5iNl1icvdnL0ETL0lGcuMzMtI3b35CM30SdvJnLyYTLtF2ZuAjLzEjLz4SMy4SM30yay92d5R2bihSI", + value: + "!(bodywork-71.21.3.13.0.gam-62.rou-70.wor-33.pit-14.wor-e6.bod-1f.4e)!", + result: { + word: "bodywork", + correct: 21, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 37, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZ00CZvJmLjVWLoN2MuMTLtVnbucjNt8GZv5iM30ybyRmL1MWMtE2Yz5CMugjLy4SOx4SM30yay92d5R2bihSI", + value: "!(bodywork-71.19.2.8.0.sca-1c5.dro-72.odo-67.num-3.3ch-ec.bod-4e)!", + result: { + word: "bodywork", + correct: 19, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 29, + date: "12.03.2025", + }, + }, + { + date: "12.03.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUGNtQmLxMTLv5iY50SdvJmLyEWLvJHcuAjLxEjLz4iNx4SM30yay92d5R2bihSI", + value: "!(bodywork-71.16.3.11.0.pro-a2.bou-9b.o-31.d-4e)!", + result: { + word: "bodywork", + correct: 16, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "12.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/udalo-sie-trafic-chyba-tylko-dzieki-opatrznosci-22-05-2025-diffle-diffleen-grywe" +] = [ + { + date: "22.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMtE2cw5iN4YTLoN2MuYDOtEWZy5CMugjLx4COuIDNx0SbsF2cwhSI", + value: "!(psalm-142.8.1.8.0.rea-86.3ch-686.psa-2)!", + result: { + word: "psalm", + correct: 8, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "22.05.2025", + }, + }, + { + date: "22.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMtE2cw5yY1ITLpVXcuEWMx4CN00CbhNnLh1SeiFmLw4SNx4CMuYTMuIDNx0SbsF2cwhSI", + value: "!(psalm-142.16.0.15.0.aby-a.sal-44.11a.qui-25c.psa-2)!", + result: { + word: "psalm", + correct: 16, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "22.05.2025", + }, + }, + { + date: "22.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMtE2cugzNy0CbhBnL40yb0FmLyYTLtF2ZuAjL14CMuMTMuIDNx0SbsF2cwhSI", + value: "!(psalm-142.13.0.5.0.gam-62.ato-8.pal-278.sa-2)!", + result: { + word: "psalm", + correct: 13, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 18, + date: "22.05.2025", + }, + }, + { + date: "22.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKy0SYz5CZ20SdvBnLxITLlh2YuAjLwEjLw4COuIDNx0SbsF2cwhSI", + value: "!(psalm-142.8.0.10.0.che-21.pou-6d.sa-2)!", + result: { + word: "psalm", + correct: 8, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "22.05.2025", + }, + }, + { + date: "22.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITLhNHcugzMtEGbz5CNz0ychdnLjFTLjhXZuAjL0EjLy4SOuIDNx0SbsF2cwhSI", + value: "!(psalm-142.9.2.14.0.exc-1c.was-34.sla-38.psa-2)!", + result: { + word: "psalm", + correct: 9, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "22.05.2025", + }, + }, + { + date: "22.05.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKy0SYz5CO3ITLsFmLyEWLvJHcuAjL34SMuITMuIDNx0SbsF2cwhSI", + value: "!(psalm-142.12.1.7.0.pro-a2.al-278.sa-2)!", + result: { + word: "psalm", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "22.05.2025", + }, + }, + { + date: "22.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMtE2cw5CNkZTLoN2MuUzMtc2bj5CMucjLw4COuIDNx0SbsF2cwhSI", + value: "!(psalm-142.8.0.7.0.cog-35.3ch-6d4.psa-2)!", + result: { + word: "psalm", + correct: 8, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 15, + date: "22.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/uh-oh-nasty-06-03-2025-diffle-diffleen-grywebowe-40-letters-in-8-words-large-gre" +] = [ + { + date: "06.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOx4SMtEGauQGZtE2YuATLm9mLz0yZ15CZ20idh5iNxITLhB3cuYWL4VGduAjLwIjLx4SOx4SN20yajFGazhSI", + value: "!(shack-65.19.1.20.0.tex-f.spa-216.av-6d.ug-3.of-0.ca-dd.ha-1.19)!", + result: { + word: "shack", + correct: 19, + position: 1, + incorrect: 20, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 40, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOx0SYoNnLx0SYodnLwETLjFGauUWOtMWYw5yMtU3bs5CNy0iehhmLxITLlh2YuAjLzEjLx4CMy4SN20yajFGazhSI", + value: + "!(shack-65.20.1.13.0.che-21.haz-24.lou-3.pac-9e.hac-10.wha-1.sha-19)!", + result: { + word: "shack", + correct: 20, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 34, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTMtEGauUmNx0ibhNnLhRWLzFGcuIjNt0WYn5CMucjLx4CMx4SN20yajFGazhSI", + value: "!(shack-65.10.1.7.0.gam-62.pas-da.san-16e.ha-19)!", + result: { + word: "shack", + correct: 10, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 18, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5ETLhhmLxIWMtEGcuATLhFmLy0SZ3NnL0MTLiFmZuAjLzEjLx4iMx4SN20yajFGazhSI", + value: "!(shack-65.12.1.13.0.fab-34.swe-2.aa-0.pa-1b1.ha-19)!", + result: { + word: "shack", + correct: 12, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOx0SYo5SMtEWbuQGOtMWYuQmMtEGcuYjZy0SY0NnL0cTLv52auAjL1EjLx4SMy4SN20yajFGazhSI", + value: "!(shack-65.21.1.15.0.kno-74.sta-2f6.pa-2d.ac-8d.ma-1.ha-19)!", + result: { + word: "shack", + correct: 21, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "06.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ultra-omega-proste-zzz-tylko-nie-dla-mnie-13-01-2025-diffle-diffleen-grywebowe-2" +] = [ + { + date: "13.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpATLylmL4EjMtkmL0UzYt8mcw5iZz0iclRmLw4SMx4SMuQTMuMTMtk3YhJXawhSI", + value: "!(piracy-13.14.1.11.0.der-3f.pro-c54.i-218.ir-0)!", + result: { + word: "piracy", + correct: 14, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "13.01.2025", + }, + }, + { + date: "13.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKw0icpBnLlFjMtUGcz5iMx0ib1ZmLw4CMx4SMuETMuMTMtk3YhJXawhSI", + value: "!(piracy-13.11.1.10.0.fun-12.spe-21e.pir-0)!", + result: { + word: "piracy", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "13.01.2025", + }, + }, + { + date: "13.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKw0icp5SY50SYyBnLi1SasNnLxITLlh2YuAjL44iMuMTMuMTMtk3YhJXawhSI", + value: "!(piracy-13.13.2.8.0.che-21.sli-b.pra-9a.ir-0)!", + result: { + word: "piracy", + correct: 13, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "13.01.2025", + }, + }, + { + date: "13.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpATLylmLwQTLpJHcuETZ10CajNjLyMTLzVXYuAjL54yMuMTMuMTMtk3YhJXawhSI", + value: "!(piracy-13.13.3.9.0.aus-32.3ch-5e1.pri-40.ir-0)!", + result: { + word: "piracy", + correct: 13, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "13.01.2025", + }, + }, + { + date: "13.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpATLylGcuIGOtEWZy5CMugjLx4SOuMTMtk3YhJXawhSI", + value: "!(piracy-13.9.1.8.0.rea-8b.pir-0)!", + result: { + word: "piracy", + correct: 9, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "13.01.2025", + }, + }, + { + date: "13.01.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKw0icpBnLhZTLjFmcuIjMtEmci5SYtEmcm5iZ30ichNmL4ETLhJ3buQzMt4WYy5iM20SbhdmLw4yMx4iMuMjMuMTMtk3YhJXawhSI", + value: + "!(piracy-13.23.2.13.0.gam-62.ran-34.ora-18.car-7f.fra-a.bra-22.rac-6a.pir-0)!", + result: { + word: "piracy", + correct: 23, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 38, + date: "13.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ultraproste-ale-jakze-symboliczne-05-05-2025-diffle-diffleen-grywebowe-25-letter" +] = [ + { + date: "05.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMTMtAnL40yah5SZtE2buEGMy0SYyRnL2ETLuVHbuAjLyEjLx4iMx4SNyETLlBXY0hSI", + value: "!(tape-125.12.1.12.0.lun-16.tra-20a.oa-e.ak-8.p-13)!", + result: { + word: "tape", + correct: 12, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "05.05.2025", + }, + }, + { + date: "05.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMTMtAXY05iN40SYlJnLw4iNuIjL14SNyETLlBXY0hSI", + value: "!(tape-125.5.2.6.0.rea-86.tap-13)!", + result: { + word: "tape", + correct: 5, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "05.05.2025", + }, + }, + { + date: "05.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMTMuQzMtAXYuYWLlJHduEjMtUGaj5CMugjLz4SMx4SNyETLlBXY0hSI", + value: "!(tape-125.11.3.8.0.che-21.tre-f.ap-34.13)!", + result: { + word: "tape", + correct: 11, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "05.05.2025", + }, + }, + { + date: "05.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzETLwFGduQGZtMXYw5iM20SbhdmLw4CNuIjL44SNyETLlBXY0hSI", + value: "!(tape-125.8.2.4.0.gam-62.pas-dd.tap-13)!", + result: { + word: "tape", + correct: 8, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 14, + date: "05.05.2025", + }, + }, + { + date: "05.05.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMTMtAXY05iMh1ybyBnLw4yNuIjL24SNyETLlBXY0hSI", + value: "!(tape-125.6.2.7.0.pro-a2.tap-13)!", + result: { + word: "tape", + correct: 6, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "05.05.2025", + }, + }, + { + date: "05.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMx0CcuImMtwWY05iMz0yc1FmLw4yNuEjL54SNyETLlBXY0hSI", + value: "!(tape-125.9.1.7.0.aus-32.tal-2b.p-13)!", + result: { + word: "tape", + correct: 9, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "05.05.2025", + }, + }, + { + date: "05.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMTMtAnLiNTLsFGduU2MtIXZn5CMuATMuIjL44SNyETLlBXY0hSI", + value: "!(tape-125.8.2.10.0.ger-3e.tal-3b.p-13)!", + result: { + word: "tape", + correct: 8, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "05.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/w-sam-raz-09-02-2025-diffle-diffleen-grywebowe-21-letters-in-3-words-large-green" +] = [ + { + date: "09.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOzETLj92YuQWLpFGduMjYtUnci5CMuUjLx4SNx4CM00CbpFGdrN2bjhSI", + value: "!(cocktail-40.15.1.5.0.bru-b3.tai-d.coc-139)!", + result: { + word: "cocktail", + correct: 15, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "09.02.2025", + }, + }, + { + date: "09.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5MTMtM2bj5yNh1yYhRnLiNTLjlmduMmNtwWY05yMh1SYwNnLyYTLtF2ZuAjLxEjL04yNx4CM00CbpFGdrN2bjhSI", + value: + "!(cocktail-40.17.4.11.0.gam-62.spa-a3.tal-6c.vic-3b.tac-a7.coc-139)!", + result: { + word: "cocktail", + correct: 17, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "09.02.2025", + }, + }, + { + date: "09.02.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOzETLj92YuQWLpFGdukTOtEmLmNzMtw2bj5CO3QTLoN2MuATLt5CM4ITL19mLiFTNtIXYuEjMtUGaj5CMukjLz4SMz4CM00CbpFGdrN2bjhSI0ds", + value: + "±Ý\bJ\u0018ÛØÚÝ\u0018Z[\u000bM\f\u000bŒÌKŒËŽKŒ\u000b˜Ú\u0019KLŒK˜\\‹MLX‹›ÝKLŽ\f\u000b›KL\u000bŒØÚ\u000bM\rÎ\u000b˜ÛÛ\u000bLÌً˜KNNK\u0018ZKY\u000b˜ÛØËLLÎJH", + result: { + word: "±Ý\bJ\u0018ÛØÚÝ\u0018Z[\u000bM\f\u000bŒÌKŒËŽKŒ\u000b˜Ú\u0019KLŒK˜\\‹MLX‹›ÝKLŽ\f\u000b›KL\u000bŒØÚ\u000bM\rÎ\u000b˜ÛÛ\u000bLÌً˜KNNK\u0018ZKY\u000b˜ÛØËLLÎJH", + correct: null, + position: null, + incorrect: null, + knownIncorrect: null, + totalWords: 0, + totalLetters: null, + date: "09.02.2025", + }, + }, + { + date: "09.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5MTMtM2bj5SZx0CbhdnLhRWLy9GcuETMtMnbp5CMucjLy4yMx4CM00CbpFGdrN2bjhSI", + value: "!(cocktail-40.13.2.7.0.ins-11.por-da.wal-1e.coc-139)!", + result: { + word: "cocktail", + correct: 13, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "09.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/w-sumie-nietrudne-27-05-2025-diffle-diffleen-grywebowe-23-letters-in-4-words-lar" +] = [ + { + date: "27.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIzNtAXeuQjYtUHa05SYtQXdn5iN40SYlJnLw4COuEjL0EjL3QTMtMXdoBXe0hSI", + value: "!(typhus-147.14.1.8.0.rea-86.gut-a.thu-b4.yp-72)!", + result: { + word: "typhus", + correct: 14, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "27.05.2025", + }, + }, + { + date: "27.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiM30Cc55CNi1SdoRnL1MzMtg2Yz4iNz0CauVnLkhTMtkGaj5CMuITMuEjL0EjL3QTMtMXdoBXe0hSI", + value: "!(typhus-147.14.1.12.0.chi-18d.unh-36.3ch-335.thu-b4.yp-72)!", + result: { + word: "typhus", + correct: 14, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "27.05.2025", + }, + }, + { + date: "27.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiM30Cc55iYz0Sb15iY1ETLyhGduEjMtUGaj5CMuETMuIjLxEjL3QTMtMXdoBXe0hSI", + value: "!(typhus-147.11.2.11.0.che-21.thr-15b.um-3b.yp-72)!", + result: { + word: "typhus", + correct: 11, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "27.05.2025", + }, + }, + { + date: "27.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIzNtAXe05SN30Se0NnLycTMtQHel5CMuMTMuAjLyEjL3QTMtMXdoBXe0hSI", + value: "!(typhus-147.12.0.13.0.ext-172.sty-75.typ-72)!", + result: { + word: "typhus", + correct: 12, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "27.05.2025", + }, + }, + { + date: "27.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKycTLwlnL0IWL1hGduMTMtQXdo5yMt4Wdi5iM20SbhdmLw4COuIjL0EjL3QTMtMXdoBXe0hSI", + value: "!(typhus-147.14.2.8.0.gam-62.bun-3.hut-13.thu-b4.yp-72)!", + result: { + word: "typhus", + correct: 14, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "27.05.2025", + }, + }, + { + date: "27.05.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIzNtAXe05yYtQXdk5iMh1ybyBnLw4CMx4iMukjL3QTMtMXdoBXe0hSI", + value: "!(typhus-147.9.2.10.0.pro-a2.dut-c.typ-72)!", + result: { + word: "typhus", + correct: 9, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "27.05.2025", + }, + }, + { + date: "27.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKycTLwlnLxQzMtUGa05SZ00ibv1mLw4SOuEjLxEjL3QTMtMXdoBXe0hSI", + value: "!(typhus-147.11.1.9.0.mon-4e.the-341.yp-72)!", + result: { + word: "typhus", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "27.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/w-trzecim-slowie-wszystkie-zielone-10-04-2025-diffle-diffleen-grywebowe-27-lette" +] = [ + { + date: "10.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUTMt4WYt5SO00yZuFmL5MTLyF2ZuYDOtEWZy5CMuYjL14iNx4CMwETLyV2Zh5WYthSI", + value: "!(manager-100.16.5.6.0.rea-86.gar-39.ang-49.man-15)!", + result: { + word: "manager", + correct: 16, + position: 5, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "10.04.2025", + }, + }, + { + date: "10.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUTMuQzYt4mLwIWLyFWbuQDZh1SZyBnL0YTLzVnYuAjLxEjL04COx4CMwETLyV2Zh5WYthSI", + value: "!(manager-100.18.4.11.0.bus-64.pre-ad4.mar-b0.n-c4.15)!", + result: { + word: "manager", + correct: 18, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "10.04.2025", + }, + }, + { + date: "10.04.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNx0ibh1mL5UWLhJHduImMtsmbh5yY5ITLhh2YuAjLwEjLx4SNx4CMwETLyV2Zh5WYthSI", + value: "!(manager-100.15.1.10.0.cha-29c.ank-2b.tra-e9.man-15)!", + result: { + word: "manager", + correct: 15, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "10.04.2025", + }, + }, + { + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1ETLuFWbuIjNt0WYn5CMuAjLy4CMx4CMwETLyV2Zh5WYthSI", + value: "!(manager-100.10.2.0.0.gam-62.man-15)!", + result: { + word: "manager", + correct: 10, + position: 2, + incorrect: 0, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 12, + }, + }, + { + date: "10.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUTMuMTMy0ibuIzMx0Cdh1mL1ETL39GcuEWL1VmZuAjLyEjLy4SOx4CMwETLyV2Zh5WYthSI", + value: "!(manager-100.19.2.12.0.feu-a.pow-15.mat-132.n-213.15)!", + result: { + word: "manager", + correct: 19, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "10.04.2025", + }, + }, + { + date: "10.04.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUTMuMTMy0ibuYDOx0ich1mLyEWLvJHcuAjLwEjLy4COx4CMwETLyV2Zh5WYthSI", + value: "!(manager-100.18.2.10.0.pro-a2.mar-186.n-213.15)!", + result: { + word: "manager", + correct: 18, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "10.04.2025", + }, + }, + { + date: "10.04.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUTMt4WYuUWLulWbuATOtUGaw5CMugjLy4CNx4CMwETLyV2Zh5WYthSI", + value: "!(manager-100.14.2.8.0.phe-90.min-e.an-15)!", + result: { + word: "manager", + correct: 14, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "10.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/warto-bylo-troche-dluzej-pokombinowac-25-01-2025-diffle-diffleen-grywebowe-20-le" +] = [ + { + date: "25.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOy0ichZnLkNWMtIXYi5CN00yYlNnLw4yNuEjLyEjL1ITL05WYpJXY2hSI", + value: "!(variant-25.12.1.7.0.sec-44.bar-1cd.var-28)!", + result: { + word: "variant", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "25.01.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgjMtIXY25SMk1icwNnL0IWMtkmci5SY1YTLoN2MuUTLpJXauMjMtQ3bt5CMuYTMuEjLwIjL1ITL05WYpJXY2hSI", + value: + "!(variant-25.20.1.16.0.mot-23.iri-5.3ch-65a.bri-1b4.spr-d1.var-28)!", + result: { + word: "variant", + correct: 20, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + }, + }, + { + date: "25.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgjMuUjMtIXY25CM10idhJnLw4iNuIjL2EjL1ITL05WYpJXY2hSI", + value: "!(variant-25.16.2.6.0.rav-50.var-25.28)!", + result: { + word: "variant", + correct: 16, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "25.01.2025", + }, + }, + { + date: "25.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgjMuYmMtIXY25CO40SYlJnLw4yNuMjL3EjL1ITL05WYpJXY2hSI", + value: "!(variant-25.17.3.7.0.rea-88.var-2f.28)!", + result: { + word: "variant", + correct: 17, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "25.01.2025", + }, + }, + { + date: "25.01.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOy0ichZnLxMTLph2cuQzMtIXY55SM20ib1JmLkFWNtIXYw5iNyUTLyF2YuIjNt0WYn5CMuQTMuAjLxIjL1ITL05WYpJXY2hSI", + value: + "!(variant-25.21.0.14.0.gam-62.car-526.par-5ad.bun-61.yar-34.shi-31.var-28)!", + result: { + word: "variant", + correct: 21, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 35, + date: "25.01.2025", + }, + }, + { + date: "25.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgjMtIXY25iZtIXZh5CZy0SbvNmLw4yNuAjL1EjL1ITL05WYpJXY2hSI", + value: "!(variant-25.15.0.7.0.com-2d.aer-f.var-28)!", + result: { + word: "variant", + correct: 15, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "25.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/wcale-nie-takie-latwe-ale-tym-razem-strzal-byl-dobry-20-04-2025-diffle-diffleen-" +] = [ + { + date: "20.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlVWLt5SOx0SavNmL2gTLhVmcuAjL34SMuATMuATMx0yYp12bjhSI", + value: "!(comic-110.10.1.7.0.rea-86.coi-19.m-ee)!", + result: { + word: "comic", + correct: 10, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "20.04.2025", + }, + }, + { + date: "20.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZl1SbvNmLiFTLvxGcugjY00ibv1mLyYTLtF2ZuAjLwEjLx4SOuATMx0yYp12bjhSI", + value: "!(comic-110.9.1.10.0.gam-62.mon-4b8.plo-1b.com-ee)!", + result: { + word: "comic", + correct: 9, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "20.04.2025", + }, + }, + { + date: "20.04.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZl1Sbv5iNtYXaugjMtIWdugzNtkGaj5yY30CdhBnLw4SNx4CMuUTMuATMx0yYp12bjhSI", + value: "!(comic-110.15.0.15.0.pat-7c.chi-78.ub-28.iv-6.om-ee)!", + result: { + word: "comic", + correct: 15, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "20.04.2025", + }, + }, + { + date: "20.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZl1SbuM2Ntw2bj5CMt8Gcl5CMh1ib1NnLw4CMx4CMuITMuATMx0yYp12bjhSI", + value: "!(comic-110.12.0.10.0.sun-a0.epo-0.col-7c.m-ee)!", + result: { + word: "comic", + correct: 12, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "20.04.2025", + }, + }, + { + date: "20.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlVWLt92YuYWLp12buUGNx0ibp1mLh1SdlZmLw4CMx4iMuETMuATMx0yYp12bjhSI", + value: "!(comic-110.11.2.10.0.feu-a.min-14e.omi-f.com-ee)!", + result: { + word: "comic", + correct: 11, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "20.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/wkurzajace-strasznie-02-03-2025-diffle-diffleen-grywebowe-35-letters-in-5-words-" +] = [ + { + date: "02.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0EmLhlTLphmL4ITLiVnLy0yZpNmL1QmMtMWZk5CMuYTMuEjL4EjLxYTL5xmZllGajhSI", + value: "!(chiefly-61.18.1.16.0.dec-2d5.cig-2.ub-28.hi-9a.a4)!", + result: { + word: "chiefly", + correct: 18, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "02.03.2025", + }, + }, + { + date: "02.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTYtkGaj5COy0Sb1ZmLlBTMtkGaj5iN40SYlJnLw4COuMjL0EjLxYTL5xmZllGajhSI", + value: "!(chiefly-61.14.3.8.0.rea-86.chi-10e.fum-28.chi-a4)!", + result: { + word: "chiefly", + correct: 14, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "02.03.2025", + }, + }, + { + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0EmLzImLhlTLph2YuIWNtgGdl5iM20SbhdmLx4iNuIjLxIjLxYTL5xmZllGajhSI", + value: "!(chiefly-61.21.2.6.1.gam-62.eth-5b.chi-9a.b3.a4)!", + result: { + word: "chiefly", + correct: 21, + position: 2, + incorrect: 6, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 29, + }, + }, + { + date: "02.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNh1SaoNmLw0idvRmLkNTMtkGaj5CN10iY1JnLzYmMuUTNuEWYx0SauEjMtUGaj5CMuYTMuEjL4IjLxYTL5xmZllGajhSI", + value: + "!(chiefly-61.28.1.16.0.che-21.i-1aa.55.2f3.rub-54.chi-13d.dov-0.chi-a4)!", + result: { + word: "chiefly", + correct: 28, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 45, + date: "02.03.2025", + }, + }, + { + date: "02.03.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNh5SY50SaoNmLi1iZpRmLw4iNuIjL0EjLxYTL5xmZllGajhSI", + value: "!(chiefly-61.14.2.6.0.dif-b.chi-9a.a4)!", + result: { + word: "chiefly", + correct: 14, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "02.03.2025", + }, + }, + { + date: "02.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNh1SaoNmL1QWNtg2Yz4iZiFTLt92YuATLllmbuMTLjlGbuIzMtMXdh5CMuITMuQjL4EjLxYTL5xmZllGajhSI", + value: "!(chiefly-61.18.4.12.0.aus-32.lic-3.nie-0.com-1bf.3ch-5d5.chi-a4)!", + result: { + word: "chiefly", + correct: 18, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "02.03.2025", + }, + }, + { + date: "02.03.2025", + nick: "ulsterboy", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTYuQjYugzMx0SauEWOtUGaj5SNwETLlJHduATLhVmYuYTNt02bz5CMuQTMuQjL0IjLxYTL5xmZllGajhSI", + value: "!(chiefly-61.24.4.14.0.som-56.bea-0.tre-105.che-9a.i-138.b4.a4)!", + result: { + word: "chiefly", + correct: 24, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "02.03.2025", + }, + }, + { + date: "02.03.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTYuEjZuEzNuQWOx0SaoNmLkFTLwlHauQjYtUGa35CMuUTMuIjL0IjLxYTL5xmZllGajhSI", + value: "!(chiefly-61.24.2.15.0.whe-b4.hyp-1d.chi-19d.71.f1.a4)!", + result: { + word: "chiefly", + correct: 24, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 41, + date: "02.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/wredne-blush-16-02-2025-diffle-diffleen-grywebowe-31-letters-in-4-words-large-gr" +] = [ + { + date: "16.02.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxYWLhxmYuIjMtIWYs5yMi1SYsBnL2gTLhVmcuAjL54iMuAjMucDNtM3clxWZtFGbihSI", + value: "!(blameless-47.20.2.9.0.rea-86.pla-b3.lab-22.bla-f1)!", + result: { + word: "blameless", + correct: 20, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "16.02.2025", + }, + }, + { + date: "16.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEjZtEGbi5SOh1SbhNmL3QTMtEGaz5CNt0WYm5SOz0SZtFmLyYTLtF2ZuAjL34SMuUjMucDNtM3clxWZtFGbihSI", + value: + "!(blameless-47.25.1.7.0.gam-62.ame-39.fam-4.sha-147.cam-a9.bla-f1)!", + result: { + word: "blameless", + correct: 25, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "16.02.2025", + }, + }, + { + date: "16.02.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEjZtEGbi5COt0WYm5iM1ETLhh2cuMWLrFWbuIzNx0Cd4VmLw4SNx4iMuYjMucDNtM3clxWZtFGbihSI", + value: "!(blameless-47.26.2.15.0.ext-172.mak-c.sha-152.fam-8.bla-f1)!", + result: { + word: "blameless", + correct: 26, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 43, + date: "16.02.2025", + }, + }, + { + date: "16.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEjZukTZtEGbi5CMtUWbh5COjFTLtVGZuAjL24yMugTMucDNtM3clxWZtFGbihSI", + value: "!(blameless-47.18.3.6.0.dem-1c8.ame-0.bla-e9.f1)!", + result: { + word: "blameless", + correct: 18, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "16.02.2025", + }, + }, + { + date: "16.02.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxYmL2YWLhxmL4cTLhVmLklTMtwWYi5CZ20yc11mLiFTLv9GcuUDNtMXYi5yNtYWYz5SZtInch5SMy0SZoNmLw4iNx4iNuQzMucDNtM3clxWZtFGbihSI", + value: + "!(blameless-47.34.6.16.0.che-21.arr-e.saf-7.bas-45.poo-1b.mus-6d.bal-19d.ea-78.la-f6.f1)!", + result: { + word: "blameless", + correct: 34, + position: 6, + incorrect: 16, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 56, + date: "16.02.2025", + }, + }, + { + date: "16.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEjZtEGbi5CZ00SbhxmLjFTLy9WbuAjL14SMuUTMucDNtM3clxWZtFGbihSI", + value: "!(blameless-47.15.1.5.0.mor-1c.lam-4d.bla-f1)!", + result: { + word: "blameless", + correct: 15, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "16.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/wymagajace-11-05-2025-diffle-diffleen-grywebowe-42-letters-in-8-words-large-gree" +] = [ + { + date: "11.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1gjL10CbpdnL30SevpmLyUTLsl2duEWNtkmcn5yYh1SawNnL5QTLsl2auYzYtMmbp5CMuYTMuEjL1IjLxMTMtc3bsxWa3hSI", + value: + "!(willow-131.25.1.16.0.inc-c6.kil-49.spi-ac.gri-5a.wil-52.joy-7.wil-5.85)!", + result: { + word: "willow", + correct: 25, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 42, + date: "11.05.2025", + }, + }, + { + date: "11.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUDOtwWa35SO00CbptmL5UTLnlGcuYDOtEWZy5CMuITMuAjLyEjLxMTMtc3bsxWa3hSI", + value: "!(willow-131.12.0.12.0.rea-86.pig-59.kil-49.wil-85)!", + result: { + word: "willow", + correct: 12, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "11.05.2025", + }, + }, + { + date: "11.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUDOtwWa35iY50CbpJmLz0SavZmLkZTL19GcuEjMtUGaj5CMuQTMuEjLzEjLxMTMtc3bsxWa3hSI", + value: "!(willow-131.13.1.14.0.che-21.pou-6d.foi-3.bil-9b.wil-85)!", + result: { + word: "willow", + correct: 13, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "11.05.2025", + }, + }, + { + date: "11.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1gjL10CbpdnLhZjMtg2Yz4iNz0ybvxmLycTLvx2cuMTLuVnYuIjNt0WYn5CMuYTMuAjL1EjLxMTMtc3bsxWa3hSI", + value: + "!(willow-131.15.0.16.0.gam-62.bun-3.slo-72.loo-36.3ch-26a.wil-5.85)!", + result: { + word: "willow", + correct: 15, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 31, + date: "11.05.2025", + }, + }, + { + date: "11.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUDOtwWa35iY50CbpBnL4UWLph2YucDZuUWNy0CajNjL5YWLulWbuIzMtMXdh5CMukTMuAjL5EjLxMTMtc3bsxWa3hSI", + value: + "!(willow-131.19.0.19.0.aus-32.min-f9.3ch-25e.d7.chi-e8.pil-9b.wil-85)!", + result: { + word: "willow", + correct: 19, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 38, + date: "11.05.2025", + }, + }, + { + date: "11.05.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSN40CbpdnL0MTLsl2auIzMtwWak5SNk1CbpNnLmFWLulGbuITYt8mcw5CMuYTMuMjL5EjLxMTMtc3bsxWa3hSI", + value: "!(willow-131.19.3.16.0.pro-a2.lin-af.sil-d5.dil-32.kil-34.wil-85)!", + result: { + word: "willow", + correct: 19, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "11.05.2025", + }, + }, + { + date: "11.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSN40CbpdnLmhTMtwWat5SMtw2Zp5yMz0CcphmL20ybptmLycTMtQHel5CMuAjMuEjL3EjLxMTMtc3bsxWa3hSI", + value: "!(willow-131.17.1.20.0.ext-172.kio-6.hip-33.igl-1.mil-18f.wil-85)!", + result: { + word: "willow", + correct: 17, + position: 1, + incorrect: 20, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "11.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/za-duzo-slow-sie-konczy-tak-samo-24-03-2025-diffle-diffleen-grywebowe-35-letters" +] = [ + { + date: "24.03.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZ30ybyBnL0ETLuJ3bukDMx0SYyRnL2gTLhVmcuAjL34SMucjMuMDOt42bpRXYi9mcwhSI", + value: "!(probation-83.27.1.7.0.rea-86.tra-109.orn-14.pro-7d)!", + result: { + word: "probation", + correct: 27, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "24.03.2025", + }, + }, + { + date: "24.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQ2Nt8mLhNTMtEmcw5CM30CdhJnLlF2MtEGdz5SNz0Cdh5mLxITLlh2YuAjL44CMuMzMuMDOt42bpRXYi9mcwhSI", + value: + "!(probation-83.33.0.8.0.che-21.nat-35.sta-3ae.rat-70.pra-13a.o-7d)!", + result: { + word: "probation", + correct: 33, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 41, + date: "24.03.2025", + }, + }, + { + date: "24.03.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkdjLyEWLvJHcuAjL04CMuYTMuMDOt42bpRXYi9mcwhSI", + value: "!(probation-83.16.0.4.0.pro-a2.7d)!", + result: { + word: "probation", + correct: 16, + position: 0, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "24.03.2025", + }, + }, + { + date: "24.03.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZ34iMzETLv5iYl1SYyBnLyYTLtF2ZuAjL24SMuAjMuMDOt42bpRXYi9mcwhSI", + value: "!(probation-83.20.1.6.0.gam-62.pra-eb.o-132.7d)!", + result: { + word: "probation", + correct: 20, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "24.03.2025", + }, + }, + { + date: "24.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZ30ybyBnLx0iYv5CZtkHa05CMt8WYi5CNz0iYhZmLw4CNx4iMukTMuMDOt42bpRXYi9mcwhSI", + value: "!(probation-83.19.2.14.0.fab-34.bao-0.thy-d.ob-1.pro-7d)!", + result: { + word: "probation", + correct: 19, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "24.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/za-proste-18-01-2025-diffle-diffleen-grywebowe-41-letters-in-9-words-large-green" +] = [ + { + date: "18.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiY2ITLhx2YuE2M00CajNjLjRjLkBTMucTMuQDOx0SYsNmLkdTLjFGbuETLhZ3bukzYtwWat5CMuYTMuIjLzIjL4ETL3FGbjhSI", + value: + "!(claw-18.23.2.16.0.mil-c9.ova-1.lac-7d.cla-184.17.10d.4c.3ch-43a.cla-26b)!", + result: { + word: "claw", + correct: 23, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 41, + date: "18.01.2025", + }, + }, + { + date: "18.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiY2ITLh5CMtUHbj5iZz0ib5dmLw4iMx4CMugjL4ETL3FGbjhSI", + value: "!(claw-18.8.0.12.0.gyn-3f.clu-0.a-26b)!", + result: { + word: "claw", + correct: 8, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "18.01.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpImNy0SYuATZtkGbj5yMy0Cdv1mLw4CNx4CMucjL4ETL3FGbjhSI", + value: "!(claw-18.7.0.14.0.mot-23.cli-e0.a-26b)!", + result: { + word: "claw", + correct: 7, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + }, + }, + { + date: "18.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiZjMtEGbj5iN4YTLoN2MuITOtEGbj5SYi1SYsBnLihTMtcWZy5CMuMTMuAjLyEjL4ETL3FGbjhSI", + value: "!(claw-18.12.0.13.0.reg-18b.pla-ba.cla-92.3ch-686.cla-26b)!", + result: { + word: "claw", + correct: 12, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "18.01.2025", + }, + }, + { + date: "18.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpImNy0SYs5CNjFTLvJnL2gTMt0WYuEjMtUGaj5CMuMTMuEjLwEjL4ETL3FGbjhSI", + value: "!(claw-18.10.1.13.0.che-21.am-186.ro-1c4.la-26b)!", + result: { + word: "claw", + correct: 10, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "18.01.2025", + }, + }, + { + date: "18.01.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiY2IjLycjMtEGbj5CMtwWa25SOz0ibhxmLhRWLzFGcuIjNt0WYn5CMuITMuAjL0EjL4ETL3FGbjhSI", + value: "!(claw-18.14.0.12.0.gam-62.pas-da.lan-39.vil-0.cla-272.26b)!", + result: { + word: "claw", + correct: 14, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 26, + date: "18.01.2025", + }, + }, + { + date: "18.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpImNy0SYsNmLw0idhxmL50CbvBnLh1SdlZmLw4iMx4SMukjL4ETL3FGbjhSI", + value: "!(claw-18.9.1.12.0.feu-a.pol-9.lav-0.cla-26b)!", + result: { + word: "claw", + correct: 9, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "18.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/za-proste-30-04-2025-diffle-diffleen-grywebowe-20-letters-in-3-words-large-green" +] = [ + { + date: "30.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiY04iNz0SahdnL4MWLw1WZuAjLwEjLw4CMx4CMyETL0lWY3hSI", + value: "!(wait-120.10.0.10.0.emp-c8.wai-36.4b)!", + result: { + word: "wait", + correct: 10, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "30.04.2025", + }, + }, + { + date: "30.04.2025", + nick: "Kronos", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjNjZtA3bw5iN5YTLpB3buMzNi1CcvRmLw0Cc1dmLiJjMtUmc05yM0MTMtwWe35CMucTMuAjLzIjLwITMtcDOlQzQlEmapB3bwhSI", + value: + "!(popijać-120.23.0.17.0.wyl-1343.tre-22b.gup-0.dop-b73.opi-696.pop-f3c)!", + result: { + word: "popijać", + correct: 23, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "30.04.2025", + }, + }, + { + date: "30.04.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiRTLp5yNl1CdhdnL3QjMuAzYz0CajNjLlFTL19WeuQmYtkWbh5yNm1CbwNnLxITLlh2YuAjL5EjLx4iNx4CMyETL0lWY3hSI", + value: + "!(wait-120.16.1.19.0.che-21.spl-f7.ami-bd.you-1e.3ch-3c0.247.wat-e7.i-4b)!", + result: { + word: "wait", + correct: 16, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 36, + date: "30.04.2025", + }, + }, + { + date: "30.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiY00SahdnLhFTLkRWYuATNx0CbhhmLhRWLzFGcuQDMx0ibhJmLyYTLtF2ZuAjL0EjLw4yMx4CMyETL0lWY3hSI", + value: "!(wait-120.13.0.14.0.gam-62.ban-104.pas-da.hal-150.add-1a.wai-4b)!", + result: { + word: "wait", + correct: 13, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 27, + date: "30.04.2025", + }, + }, + { + date: "30.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiY00SahdnL5MTLpF2ZucTNtkWYi5SZ20SahZmLyMTLzVXYuAjLwEjLw4iNx4CMyETL0lWY3hSI", + value: "!(wait-120.16.0.10.0.aus-32.fai-6e.bai-57.gai-39.wai-4b)!", + result: { + word: "wait", + correct: 16, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "30.04.2025", + }, + }, + { + date: "30.04.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIGNtkWY35iMh1ybyBnLw4COuEjL24CMyETL0lWY3hSI", + value: "!(wait-120.6.1.8.0.pro-a2.wai-4b)!", + result: { + word: "wait", + correct: 6, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "30.04.2025", + }, + }, + { + date: "30.04.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIGNtkWY35CNxgTLoN2MuEGN20ycp1mLmlTLk5WauAjL1EjLw4SMx4CMyETL0lWY3hSI", + value: "!(wait-120.11.0.15.0.ind-9f.mis-64a.3ch-814.wai-4b)!", + result: { + word: "wait", + correct: 11, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "30.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zapomnialem-o-tym-slowie-man-facepalming-09-01-2025-diffle-diffleen-grywebowe-41" +] = [ + { + date: "09.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3ITLulGauQzMt4Wam5yNx0ibpdnLyMTLulWbuYTMx0yculmLjJTLzlGbuQWLpJ2buAjLyEjLx4COy4SOtQHanl2ck5WaohSI", + value: + "!(hindsight-9.28.1.12.0.obi-d.lis-2c.ins-116.min-32.win-17.fin-34.hin-27)!", + result: { + word: "hindsight", + correct: 28, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "09.01.2025", + }, + }, + { + date: "09.01.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNy4yY00ibuETLhlGauYWMz0CajNjLzITL09WbuAjLxEjLx4SMy4SOtQHanl2ck5WaohSI", + value: "!(hindsight-9.21.1.11.0.mot-23.3ch-31f.hia-1.n-4c.27)!", + result: { + word: "hindsight", + correct: 21, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "09.01.2025", + }, + }, + { + date: "09.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcjMt4Wao5yNl1yculmL2EWLnl2cuU2Mh1ycp5SNkJTLjVGZuAjLxEjL24iNy4SOtQHanl2ck5WaohSI", + value: "!(hindsight-9.26.6.11.0.dec-2d5.is-a3e.sig-a6.ins-e7.hin-27)!", + result: { + word: "hindsight", + correct: 26, + position: 6, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 43, + date: "09.01.2025", + }, + }, + { + date: "09.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNy0ibphmLmFTLulmYuQmMt4Waz5iN40CZv1mLxATMtAHch5yNl1yculmL4EWLulGducTMx0ibpNnL5ETLjVnZuAjL1EjL04SNz4SOtQHanl2ck5WaohSI", + value: + "!(hindsight-9.35.4.15.0.fuc-19.sin-117.tin-a8.ins-e7.app-101.mod-86.sin-2d.bin-1f.hin-27)!", + result: { + word: "hindsight", + correct: 35, + position: 4, + incorrect: 15, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 54, + date: "09.01.2025", + }, + }, + { + date: "09.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcjMt4Wao5SZxMTLoN2MuMjMtk3cw5iZ00SatNnL0MTLiFmZuAjLzEjLx4COx4SOtQHanl2ck5WaohSI", + value: "!(hindsight-9.18.1.13.0.fab-34.smi-4f.psy-23.3ch-31e.hin-27)!", + result: { + word: "hindsight", + correct: 18, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "09.01.2025", + }, + }, + { + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3ITLulGauUWL0VnYucjNx0CZulmLzgTLul2auIjNt0WYn5CMukjLx4SOx4SOtQHanl2ck5WaohSI", + value: "!(hindsight-9.19.1.9.0.gam-62.kin-83.ind-167.but-e.hin-27)!", + result: { + word: "hindsight", + correct: 19, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + }, + }, + { + date: "09.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcjMt4Wao5yYt4Way5CNz0ibpZmL5MTLul2auQDNt4Wat5iZ50ibpdnLlNTLpxmYugzMtkWdz5iNzITLzVGZuAjL0EjLy4SOz4SOtQHanl2ck5WaohSI", + value: + "!(hindsight-9.39.2.14.0.des-236.sui-38.bli-3e.win-9f.min-44.kin-39.fin-34.rin-c.hin-27)!", + result: { + word: "hindsight", + correct: 39, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 55, + date: "09.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zarabiscie-proste-ale-przy-tylu-mozliwosciach-17-02-2025-diffle-diffleen-grywebo" +] = [ + { + date: "17.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkjMtYnLy0yZuUjMtMmLy0iZhNmLm1yYhBnLj1yah1mLjdTLhV2duczNtQ3by5CMucTMuEjL5EjL4QTLlZXYjhSI", + value: + "!(cave-48.19.1.17.0.rot-77.wea-7c.mak-c.pac-f.caf-2.c-25.g-2.v-29)!", + result: { + word: "cave", + correct: 19, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 37, + date: "17.02.2025", + }, + }, + { + date: "17.02.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5ITL25iY5UTLy5iM00ych5SMy0SZoNmLw4COuEjLzEjL4QTLlZXYjhSI", + value: "!(cave-48.13.1.8.0.che-21.as-42.r-59b.v-29)!", + result: { + word: "cave", + correct: 13, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "17.02.2025", + }, + }, + { + date: "17.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOy0idhNmLm1yYhBnL0QWLuFGbucTMtMXYi5iM20SbhdmLw4COuEjLyEjL4QTLlZXYjhSI", + value: "!(cave-48.12.1.8.0.gam-62.bas-17.lan-d4.pac-f.cav-29)!", + result: { + word: "cave", + correct: 12, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 21, + date: "17.02.2025", + }, + }, + { + date: "17.02.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOy0iducjMtAXYuATMtEGaj5yNtYWYz5iNtsWYi5SZz0CdhdnLyYWMt0WZk5CMukTMuAjL3EjL4QTLlZXYjhSI", + value: "!(cave-48.17.0.19.0.dem-1f2.wat-3e.bak-6.saf-7.cha-10.ap-27.v-29)!", + result: { + word: "cave", + correct: 17, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 36, + date: "17.02.2025", + }, + }, + { + date: "17.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5ITL2F2YuEmMt4WY25iMz0CdhJmL40yahdnLyITLnFGcugzNtg2Yz4SYtUXZm5CMuYTMuIjL1EjL4QTLlZXYjhSI", + value: + "!(cave-48.15.2.16.0.feu-a.3ch-78.pag-22.wak-8.bat-32.van-2a.cav-29)!", + result: { + word: "cave", + correct: 15, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 33, + date: "17.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zasadniczo-latwe-12-05-2025-diffle-diffleen-grywebowe-24-letters-in-4-words-larg" +] = [ + { + date: "12.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITNt0mLmJTL19mL5MTLvh2cuYDOtEWZy5CMugjLy4CNx4iMzETL5FGZl12bzhSI", + value: "!(someday-132.14.2.8.0.rea-86.sho-39.ou-2f.m-52)!", + result: { + word: "someday", + correct: 14, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "12.05.2025", + }, + }, + { + date: "12.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITNt02bz5yNx0SYl5yNx0ieh1mLmdTLhVmLx0SYt5iM5ETLhB3cuYTMx0SdyRnL3QTLnl2ZuEjLyIjL14yMy4iMzETL5FGZl12bzhSI", + value: + "!(someday-132.23.5.22.1.gig-47.tru-116.spa-192.ma-1.ea-7f.maz-17.ea-17.som-52)!", + result: { + word: "someday", + correct: 23, + position: 5, + incorrect: 22, + knownIncorrect: 1, + totalWords: 8, + totalLetters: 50, + date: "12.05.2025", + }, + }, + { + date: "12.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITNt02buYDZt8GcuUWNtEWZz5iZi1idlJnLxITLlh2YuAjL0EjLy4yNx4iMzETL5FGZl12bzhSI", + value: "!(someday-132.17.2.14.0.che-21.rev-bf.sea-5e.po-d6.om-52)!", + result: { + word: "someday", + correct: 17, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "12.05.2025", + }, + }, + { + date: "12.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiM10SbvNnLmFTLk9mYuMGOtkGbz5SO40SdoNmLw0Cdl1mLyYTLtF2ZuAjLyEjLx4iNx4iMzETL5FGZl12bzhSI", + value: "!(someday-132.16.1.12.0.gam-62.met-0.chu-89.sli-8c.bod-1f.som-52)!", + result: { + word: "someday", + correct: 16, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 29, + date: "12.05.2025", + }, + }, + { + date: "12.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyUTLt9mLzYWLhVmL3ETLmF2cuIzMtMXdh5CMukjLy4yNx4iMzETL5FGZl12bzhSI", + value: "!(someday-132.17.2.9.0.aus-32.saf-17.ea-f3.om-52)!", + result: { + word: "someday", + correct: 17, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "12.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zbyt-proste-26-01-2025-diffle-diffleen-grywebowe-25-letters-in-5-words-large-gre" +] = [ + { + date: "26.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM44CM54yMz0Cb1BnLwQTLi9mcuEjMtUGaj5CMuQTMuAjLxEjL2ITLwxWdwhSI", + value: "!(pulp-26.11.0.14.0.che-21.rob-40.pul-33.90.80)!", + result: { + word: "pulp", + correct: 11, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "26.01.2025", + }, + }, + { + date: "26.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM44yMz0Cb1BnLmdTMtUHbm5yM00SdoNmLxITLuVHZuMGZtMXdt5CZtkmYv5CMukTMuEjLyEjL2ITLwxWdwhSI", + value: "!(pulp-26.12.1.19.0.obi-d.mus-dc.dun-21.chu-43.flu-17f.pul-33.80)!", + result: { + word: "pulp", + correct: 12, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 32, + date: "26.01.2025", + }, + }, + { + date: "26.01.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM44COx4SMz4yMz0Cb15CZyETL1xmLiJTLp9GcuIjNt0WYn5CMuQTMuEjL2EjL2ITLwxWdwhSI", + value: "!(pulp-26.16.1.14.0.gam-62.poi-2b.lu-12d.ul-33.31.18.80)!", + result: { + word: "pulp", + correct: 16, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 31, + date: "26.01.2025", + }, + }, + { + date: "26.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM40Cb1BnL1UTLsV3YuIGNtwWdn5CMxgTLoN2MuQmMtwWdk5SM2ITL0VWbuQzMtIWYm5CMugTMuAjL0EjL2ITLwxWdwhSI", + value: + "!(pulp-26.14.0.18.0.fab-34.met-261.dul-2d.3ch-810.gul-4b.cul-55.pul-80)!", + result: { + word: "pulp", + correct: 14, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 32, + date: "26.01.2025", + }, + }, + { + date: "26.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwgTLsVnL2ETL1xGcuQWNtMWas5iYwYTLoN2MuMzMtwmL2MTLzVnLwYTMtIXZw5CMucTMuEjL2EjL2ITLwxWdwhSI", + value: + "!(pulp-26.16.1.17.0.per-160.us-36.l-33.3ch-60b.lic-5d.plu-16.ul-80)!", + result: { + word: "pulp", + correct: 16, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 34, + date: "26.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zbyt-proste-by-dalo-sie-szybko-17-06-2025-diffle-diffleen-grywebowe-45-letters-i" +] = [ + { + date: "17.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjZTLzlmdugDNt4Waq5iZh1CbpJmL4MTLzVnZuITZ20CajNjL0ETLk9mbuQjZtIHaj5CMuIjMuIjLxIjL4YTMt42bpNXa2hSI", + value: + "!(vision-168.21.2.22.0.chr-f4.nod-14.3ch-6e2.fus-38.bil-af.jin-48.vis-6c)!", + result: { + word: "vision", + correct: 21, + position: 2, + incorrect: 22, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "17.06.2025", + }, + }, + { + date: "17.06.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjZTLzlmduM2Yt4Waz5iZjZTLoN2MuQWNt4mbp5iZkNTLoN2MukjMtA3bt5SZ10Cb1ZmLzMTLy92duEjMtUGaj5CMuEjMuMjL4EjL4YTMt42bpNXa2hSI", + value: + "!(vision-168.18.3.21.0.che-21.wor-33.ful-5e.mop-29.3ch-3df.inn-5d.3ch-6cf.sin-cc.vis-6c)!", + result: { + word: "vision", + correct: 18, + position: 3, + incorrect: 21, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 42, + date: "17.06.2025", + }, + }, + { + date: "17.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyY20ycpZnLzEWNtMXat5iN40SYlJnLw4yNuEjL0EjL4YTMt42bpNXa2hSI", + value: "!(vision-168.14.1.7.0.rea-86.mis-5a3.vis-6c)!", + result: { + word: "vision", + correct: 14, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "17.06.2025", + }, + }, + { + date: "17.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMmNtMXa25SYi1iclRmLw4iMx4SMugjL4YTMt42bpNXa2hSI", + value: "!(vision-168.8.1.12.0.der-ba.vis-6c)!", + result: { + word: "vision", + correct: 8, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "17.06.2025", + }, + }, + { + date: "17.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyY20ycpZnLjhTLzlmYuUTMt82bz5CN00SdvBnLwMTL09mbuIjNt0WYn5CMuMTMuEjL2EjL4YTMt42bpNXa2hSI", + value: "!(vision-168.16.1.13.0.gam-62.not-30.pou-44.soo-15.bis-8c.vis-6c)!", + result: { + word: "vision", + correct: 16, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "17.06.2025", + }, + }, + { + date: "17.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyY20ycpZnL1U2Ntg2Yz4CNx0idvdmLw4SOuEjLxEjL4YTMt42bpNXa2hSI", + value: "!(vision-168.11.1.9.0.gov-14.3ch-7e5.vis-6c)!", + result: { + word: "vision", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "17.06.2025", + }, + }, + { + date: "17.06.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjZTLzlmduEzYtYXak5COz0yc1ZmL0UWLul2auATL6l2ZuITYt8mcw5SMucTMuIjLxIjL4YTMt42bpNXa2hSI", + value: "!(vision-168.21.2.17.1.pro-a2.giz-0.kin-e4.fus-38.div-c1.vis-6c)!", + result: { + word: "vision", + correct: 21, + position: 2, + incorrect: 17, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 40, + date: "17.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zdecydowanie-moglem-lepiej-12-01-2025-diffle-diffleen-grywebowe-30-letters-in-5-" +] = [ + { + date: "12.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhFWLs5mLk1SZzVnL5QTL1x2cuYTMtY3bu5SMy0SZoNmLw4SMx4CNuUTMuITMtM3clxmb1hSI", + value: "!(unless-12.15.4.11.0.che-21.nov-16.slu-49.use-d.nl-aa)!", + result: { + word: "unless", + correct: 15, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "12.01.2025", + }, + }, + { + date: "12.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYh1CbuVnLiJTL1xGcuYDOtEWZy5CMugjLy4SOuITMtM3clxmb1hSI", + value: "!(unless-12.9.2.8.0.rea-86.plu-2b.unl-aa)!", + result: { + word: "unless", + correct: 9, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "12.01.2025", + }, + }, + { + date: "12.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhFWLs5WduUTMtMXZs5yMy0SdvZmLlJTLlV3ZugTNt4Wdo5iNz0yYhpmLw4yMx4SMuQjMuITMtM3clxmb1hSI", + value: "!(unless-12.24.1.13.0.jac-36.hun-58.gue-2e.fou-23.les-15.unl-aa)!", + result: { + word: "unless", + correct: 24, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "12.01.2025", + }, + }, + { + date: "12.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYh1CbuVnLkNWLsVHcuEWL1VmZuAjL24iMuITMuITMtM3clxmb1hSI", + value: "!(unless-12.12.2.6.0.feu-a.pul-cd.unl-aa)!", + result: { + word: "unless", + correct: 12, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "12.01.2025", + }, + }, + { + date: "12.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYh1CbuVnLh1Cb1JnL50yc1xmLi1ybwFmLw4yMx4iMuMTMuITMtM3clxmb1hSI", + value: "!(unless-12.13.2.13.0.apo-b.lus-9.rul-a.unl-aa)!", + result: { + word: "unless", + correct: 13, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "12.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zdecydowanie-za-latwe-25-05-2025-diffle-diffleen-grywebowe-26-letters-in-3-words" +] = [ + { + date: "25.05.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYx0SZuVmLz0icl5mLmJ2MtAXbp5CMuQTMuEjLxEjL1QTMtk3ZyVmblhSI", + value: "!(energy-145.11.1.14.0.imp-3bf.ner-3.ene-1a)!", + result: { + word: "energy", + correct: 11, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "25.05.2025", + }, + }, + { + date: "25.05.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhFTLl5WZuATMt4WZn5iN40SYlJnLw4yNuIjLyEjL1QTMtk3ZyVmblhSI", + value: "!(energy-145.12.2.7.0.rea-86.gen-10.ene-1a)!", + result: { + word: "energy", + correct: 12, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "25.05.2025", + }, + }, + { + date: "25.05.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESK0QWNtQnL5EjNtsmeuQmM00icwNnLw4CMx4iMuATMuUDNx0ycvRnezhSI", + value: "!(sztos-145.10.2.10.0.spr-42d.zk-619.t-5d4)!", + result: { + word: "sztos", + correct: 10, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "25.05.2025", + }, + }, + { + date: "25.05.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEWMtUmbl5SMtw2Z15SMy0SZoNmLw4yNuAjLxEjL1QTMtk3ZyVmblhSI", + value: "!(energy-145.11.0.7.0.che-21.ugl-1.ene-1a)!", + result: { + word: "energy", + correct: 11, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "25.05.2025", + }, + }, + { + date: "25.05.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYx0SZuVmLh1idl5mLiVTLlVmYuUGNt42bt5CMuATMuEjL0EjL1QTMtk3ZyVmblhSI", + value: "!(energy-145.14.1.10.0.mon-4e.bee-5b.nev-a.ene-1a)!", + result: { + word: "energy", + correct: 14, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "25.05.2025", + }, + }, + { + date: "25.05.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYx0SZuVmLyUTMt4Wez5iN5ETLk5WduITYt8mcw5CMuMTMuEjL1EjL1QTMtk3ZyVmblhSI", + value: "!(energy-145.15.1.13.0.pro-a2.und-196.syn-152.ene-1a)!", + result: { + word: "energy", + correct: 15, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "25.05.2025", + }, + }, + { + date: "25.05.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhFTLl5WZuMTLuVnYukTMtcmcl5iM20SbhdmLw4yNuEjLyEjL1QTMtk3ZyVmblhSI", + value: "!(energy-145.12.1.7.0.gam-62.erg-19.bun-3.ene-1a)!", + result: { + word: "energy", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "25.05.2025", + }, + }, + { + date: "25.05.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYx0SZuVmLihTLhVmcuAjL54SMugjL1QTMtk3ZyVmblhSI", + value: "!(energy-145.8.1.9.0.rea-8b.ene-1a)!", + result: { + word: "energy", + correct: 8, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "25.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zgadlem-ale-moze-byc-zdradliwe-24-01-2025-diffle-diffleen-grywebowe-23-letters-i" +] = [ + { + date: "24.01.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkjMuUWOtQXZy5CO1ITLvJHcuAjL44CMuUTMuQjMtUGdhlGbhRXZyhSI", + value: "!(retaliate-24.15.0.8.0.pro-258.ret-9e.29)!", + result: { + word: "retaliate", + correct: 15, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "24.01.2025", + }, + }, + { + date: "24.01.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkjMtQnL2YTMtEmL3ITLj5iYtcWZuETL59mcuYGMx0ichhmLw4CNx4SMuIzMuQjMtUGdhlGbhRXZyhSI", + value: "!(retaliate-24.32.1.14.0.har-10f.roy-1.eg-b.c-27.a-166.t-29)!", + result: { + word: "retaliate", + correct: 32, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 47, + date: "24.01.2025", + }, + }, + { + date: "24.01.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5ITL05iZzETLp5SZkFTLmVmcuAjL44SMuEjMuQjMtUGdhlGbhRXZyhSI", + value: "!(retaliate-24.21.1.8.0.ref-1de.i-13f.t-29)!", + result: { + word: "retaliate", + correct: 21, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "24.01.2025", + }, + }, + { + date: "24.01.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkjMtQXZucTMtQ3bucjMtQXYy5iNl1ichJmLyYTLtF2ZuAjL04iMuIjMuQjMtUGdhlGbhRXZyhSI", + value: "!(retaliate-24.22.2.4.0.gam-62.bar-e6.rat-27.ot-17.et-29)!", + result: { + word: "retaliate", + correct: 22, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "24.01.2025", + }, + }, + { + date: "24.01.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5ITL05CZ1ETLhVmcuEWMtUGdp5CZ40CZuADNz0ycuMWNtwmL4ITLwVmcuEjMtUGdp5SMy0SZoNmLw4CNx4yNuADNuQjMtUGdhlGbhRXZyhSI", + value: + "!(retaliate-24.40.7.14.0.che-21.ite-21.rep-28.l-5c.s-340.d-8d.ite-1a.rea-15d.t-29)!", + result: { + word: "retaliate", + correct: 40, + position: 7, + incorrect: 14, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 61, + date: "24.01.2025", + }, + }, + { + date: "24.01.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkjMtQnL3UTMtwWZugzYtQXYy5iZ1ETL0FWbuAjL04yMuIjMuQjMtUGdhlGbhRXZyhSI", + value: "!(retaliate-24.22.3.4.0.mat-15f.rat-c8.el-157.t-29)!", + result: { + word: "retaliate", + correct: 22, + position: 3, + incorrect: 4, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "24.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zlosliwe-bardzo-zlosliwe-doceniam-19-02-2025-diffle-diffleen-grywebowe-30-letter" +] = [ + { + date: "19.02.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5ITLnJXYuADO20ichBnLmZTLyJXauAjL44yMukTMuATNtUmbpRnbldmchhSI", + value: "!(argentine-50.19.3.8.0.irr-6f.par-680.arg-29)!", + result: { + word: "argentine", + correct: 19, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "19.02.2025", + }, + }, + { + date: "19.02.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOy4COy0yZuYWLkJXYuUWZtQnL2gTLhVmcuAjL14iMuIzMuATNtUmbpRnbldmchhSI", + value: "!(argentine-50.32.2.5.0.rea-86.t-ee.ard-f.g-28.29)!", + result: { + word: "argentine", + correct: 32, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "19.02.2025", + }, + }, + { + date: "19.02.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOy4iZ24yM50yZyFmLyYTLtF2ZuAjLz4iMuAjMuATNtUmbpRnbldmchhSI", + value: "!(argentine-50.20.2.3.0.gam-62.arg-93.6f.29)!", + result: { + word: "argentine", + correct: 20, + position: 2, + incorrect: 3, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "19.02.2025", + }, + }, + { + date: "19.02.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5IjLxMjL3IjL4ITLnJnL30yZ1FmLxITLlh2YuAjL14yMuADNuATNtUmbpRnbldmchhSI", + value: "!(argentine-50.40.3.5.0.che-21.aug-7.rg-28.27.31.29)!", + result: { + word: "argentine", + correct: 40, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 48, + date: "19.02.2025", + }, + }, + { + date: "19.02.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5ITLnJXYugjMt4Wa05iNm1Cdy5yMi1Cd0FmLkRjMtkmc05iMjJTLw1WauAjL24CNucjMuATNtUmbpRnbldmchhSI", + value: + "!(argentine-50.27.4.6.0.imp-2c2.tri-24d.att-b3.rt-f6.tin-28.arg-29)!", + result: { + word: "argentine", + correct: 27, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "19.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/znane-ale-technicznie-dosc-trudne-powodzenia-ze-zgadywaniem-koncowek-slightly-sm" +] = [ + { + date: "21.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIjMt0WZm5iM1ITLoN2MuMzMtUWZm5SMx0SalZnL2gTLhVmcuAjL54CMuIjMuETMx0Sbzlmbp1WZmhSI", + value: "!(feminism-111.22.0.9.0.rea-86.vei-11.fee-33.3ch-252.fem-22)!", + result: { + word: "feminism", + correct: 22, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "21.04.2025", + }, + }, + { + date: "21.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIjMt0WZuImNtkGbm5iZtoXak5iZ50ycpZnLxYTLuVnYuQTYx0SZoNmLxUTLtV2cuczMtkWbl5iM20SbhdmLw4yNx4yMuUjMuETMx0Sbzlmbp1WZmhSI", + value: + "!(feminism-111.25.3.17.0.gam-62.emi-37.sem-51.che-1a4.bun-61.vis-9f.diz-f.fli-6b.em-22)!", + result: { + word: "feminism", + correct: 25, + position: 3, + incorrect: 17, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 45, + date: "21.04.2025", + }, + }, + { + date: "21.04.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyITLtVmZuIWM14iM1IjL4UjMuMTNy0CajNjLxUTLzlmdugDNt4Waq5iM00ibpZmLmlTLul2duIWLllnYuMDNtMXdm5SY00Sbv5mL5IWLpJHcuIWMtUmbr5SMy0SZoNmLx4yMy4SNuMDNuETMx0Sbzlmbp1WZmhSI", + value: + "!(feminism-111.43.5.23.1.che-21.kne-1b.pri-b9.nom-4a.fus-43.bye-b.win-9f.fin-42.jin-48.vis-51.3ch-253.258.252.51b.fem-22)!", + result: { + word: "feminism", + correct: 43, + position: 5, + incorrect: 23, + knownIncorrect: 1, + totalWords: 15, + totalLetters: 71, + date: "21.04.2025", + }, + }, + { + date: "21.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMy0SblZmL1QTLtVmbuQWZtgGcz5SMtk2bq5yMxQTLoN2MucTMt4Wa35CNy0SalZnLxETMt4WZz5yYiFTLzVmcuU2Nx0ycuVnLy4iMy4SNuMzMuETMx0Sbzlmbp1WZmhSI", + value: + "!(feminism-111.33.5.22.2.uns-17e.res-1bc.sen-111.vei-24.win-17.3ch-413.joi-1.sph-ed.nem-45.fem-22)!", + result: { + word: "feminism", + correct: 33, + position: 5, + incorrect: 22, + knownIncorrect: 2, + totalWords: 10, + totalLetters: 60, + date: "21.04.2025", + }, + }, + { + date: "21.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMy0SblZmL5UTLph2duEjYx0CajNjL20SasNmLmdzMtg2Yz4SY10Sdv1mLw4iNx4SMugTMuETMx0Sbzlmbp1WZmhSI", + value: + "!(feminism-111.18.1.16.0.mou-5a.3ch-37f.cli-6.3ch-1b1.whi-59.fem-22)!", + result: { + word: "feminism", + correct: 18, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "21.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/znow-proste-a-jednak-01-03-2025-diffle-diffleen-grywebowe-45-letters-in-7-words-" +] = [ + { + date: "01.03.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpY2Yx0Cd1FmLyUTL19WbuATLu9mYuETLu9mZuUWLvdWYuMWMtQXew5CNhdTLu92YuAjL0EjL24SNy4CM20Set9mbvRXdhhSI", + value: + "!(autonomy-60.25.6.14.0.con-7a4.pyt-1c.ago-e.fon-1.bon-0.mou-52.aut-1cf)!", + result: { + word: "autonomy", + correct: 25, + position: 6, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "01.03.2025", + }, + }, + { + date: "01.03.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZjFTL0VXYuEWNx0ych1mLiVTMt8mcw5CMukjL04iNx4CM20Set9mbvRXdhhSI", + value: "!(autonomy-60.16.4.9.0.pro-15b.mas-15a.aut-1cf)!", + result: { + word: "autonomy", + correct: 16, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "01.03.2025", + }, + }, + { + date: "01.03.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZjFTL0VnLxYjMtEmbugTLvRXYuIjNt0WYn5CMuQjLx4SOx4CM20Set9mbvRXdhhSI", + value: "!(autonomy-60.19.1.4.0.gam-62.ato-8.na-261.ut-1cf)!", + result: { + word: "autonomy", + correct: 19, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "01.03.2025", + }, + }, + { + date: "01.03.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpY2Yx0Cd1FmLhVmLhZTLoN2MuMWLvRnLhdTLv1WYucTOy0ibh1mLzMWLuVnZuQTNtU3bs5CMkJTLph2YuAjL0EjL34iNy4CM20Set9mbvRXdhhSI", + value: + "!(autonomy-60.26.7.14.0.chi-2d0.lou-54.fun-c3.man-297.amo-7a.to-c.3ch-6a.ea.aut-1cf)!", + result: { + word: "autonomy", + correct: 26, + position: 7, + incorrect: 14, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 47, + date: "01.03.2025", + }, + }, + { + date: "01.03.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZjFTL0VXYuIDNtUXYu5yYx0idhJnL1MTLiFmZuAjLxEjLx4yNx4CM20Set9mbvRXdhhSI", + value: "!(autonomy-60.17.1.11.0.fab-35.rav-1c.nau-42.aut-1cf)!", + result: { + word: "autonomy", + correct: 17, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "01.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/znowu-strzelalem-wszedzie-dookola-tylko-nie-w-cel-25-04-2025-diffle-diffleen-gry" +] = [ + { + date: "25.04.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZ1IjL0QjMuMmZy0ycuYDOtEWZy5CMucjLx4SMy4SNxETLlZHbvNXZyhSI", + value: "!(resolve-115.21.1.7.0.rea-86.s-2fc.244.25f)!", + result: { + word: "resolve", + correct: 21, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "25.04.2025", + }, + }, + { + date: "25.04.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmVjMtMXZy5SZy0yb2VmLxETL39mduUDZtQ3Yh5CMukjL04SNx4SNxETLlZHbvNXZyhSI", + value: "!(resolve-115.15.4.9.0.act-d5.vow-11.evo-2e.res-25f)!", + result: { + word: "resolve", + correct: 15, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "25.04.2025", + }, + }, + { + date: "25.04.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmVjMuETMz4CM0MTLzVmcuIjNt0WYn5CMucjLx4iNx4SNxETLlZHbvNXZyhSI", + value: "!(resolve-115.16.1.7.0.gam-62.res-340.311.25f)!", + result: { + word: "resolve", + correct: 16, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "25.04.2025", + }, + }, + { + date: "25.04.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYWNy0ycuITZtYXZy5iM3ETL0hXZuEjLxEjLz4yMx4SNxETLlZHbvNXZyhSI", + value: "!(resolve-115.13.3.11.1.ext-172.rev-e2.s-25f)!", + result: { + word: "resolve", + correct: 13, + position: 3, + incorrect: 11, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 27, + date: "25.04.2025", + }, + }, + { + date: "25.04.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmVjMuAjNy0ycuQ2Yx0idlJnLyEWLvJHcuAjLwEjLw4CNy4SNxETLlZHbvNXZyhSI", + value: "!(resolve-115.24.0.10.0.pro-a2.rev-1cd.s-260.25f)!", + result: { + word: "resolve", + correct: 24, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "25.04.2025", + }, + }, + { + date: "25.04.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmVjMtMXZy5CN4ETLlJHduETLzxWZucTYtwWZz5SYtUXZm5CMukjLz4SOx4SNxETLlZHbvNXZyhSI", + value: "!(resolve-115.19.3.9.0.feu-a.sel-a7.els-1.tre-184.res-25f)!", + result: { + word: "resolve", + correct: 19, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "25.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/znowu-takie-cus-nie-lubie-20-06-2025-diffle-diffleen-grywebowe-32-letters-in-6-w" +] = [ + { + date: "20.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3UTLuV2auETLrlHZuImMtUHbw5SYl1iblJmL0ETNtg2Yz4iN40SYlJnLw4CMx4CNugTMuEzNx0SerNWd05WZrhSI", + value: + "!(kentucky-171.18.4.10.0.rea-86.3ch-514.ben-ea.plu-2b.dyk-1.ken-57)!", + result: { + word: "kentucky", + correct: 18, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "20.06.2025", + }, + }, + { + date: "20.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyN14iY00ibltmL4QTLuVHZucjMtMXZw5iY10Ca0VmLyYTLtF2ZuAjL54SMuAjMuEzNx0SerNWd05WZrhSI", + value: "!(kentucky-171.20.1.9.0.gam-62.eth-5b.pes-27.dun-48.ken-4b.57)!", + result: { + word: "kentucky", + correct: 20, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "20.06.2025", + }, + }, + { + date: "20.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcTNt4WZr5iYtMWd05yNy0ibldnL1UWLuVmduETMtU3bo5CNz0yY4VmLzcTMt4WZw5iM50SayRnLw4yNx4yMucjMuEzNx0SerNWd05WZrhSI", + value: + "!(kentucky-171.27.3.17.0.tri-92.pen-173.exc-34.hou-11.ven-e5.wen-27.tuc-b.ken-57)!", + result: { + word: "kentucky", + correct: 27, + position: 3, + incorrect: 17, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 47, + date: "20.06.2025", + }, + }, + { + date: "20.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3UTLuV2auQzYtUHbi5yM00CduVmL3ITLuV2duYzMy0CZulmLw4CNx4SMukTMuEzNx0SerNWd05WZrhSI", + value: "!(kentucky-171.19.1.14.0.ind-236.wen-27.ent-43.blu-c4.ken-57)!", + result: { + word: "kentucky", + correct: 19, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "20.06.2025", + }, + }, + { + date: "20.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcTNt4WZr5COx0Sbl5CO50CcvNmLw4iMx4yMuMTMuEzNx0SerNWd05WZrhSI", + value: "!(kentucky-171.13.3.12.0.cop-98.em-18.ken-57)!", + result: { + word: "kentucky", + correct: 13, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "20.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zwodnicze-10-06-2025-diffle-diffleen-grywebowe-31-letters-in-4-words-large-green" +] = [ + { + date: "10.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjFTLp1WauIzNtkmbh5yMt0Wdk5iN40SYlJnLw4SOuAjLyIjLxYTMt42bpRXY0lWbphSI", + value: "!(imitation-161.22.0.9.0.rea-86.dum-3.ani-72.imi-1c)!", + result: { + word: "imitation", + correct: 22, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "10.06.2025", + }, + }, + { + date: "10.06.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyYx0SatlmL3QTLt92duEWYt4Wdm5SNtQXak5yNtQXas5CMiNTLhR3cuEjMtUGaj5CMuUTMuEjL1MjLxYTMt42bpRXY0lWbphSI", + value: + "!(imitation-161.35.1.15.0.che-21.sta-3b0.lit-7.dit-5.fun-aa.wom-47.imi-1c)!", + result: { + word: "imitation", + correct: 35, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 51, + date: "10.06.2025", + }, + }, + { + date: "10.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyYx0SatlmLkRTL09WbuITZz0CajNjLlZTMt4Wat5iM40CbptmLz0ib1JmL5ETLwFWbuIjNt0WYn5CMuQTMuIjL0IjLxYTMt42bpRXY0lWbphSI", + value: + "!(imitation-161.24.2.14.0.gam-62.map-19.bun-3.kil-82.min-16e.3ch-3e2.mot-4d.imi-1c)!", + result: { + word: "imitation", + correct: 24, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 40, + date: "10.06.2025", + }, + }, + { + date: "10.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMWMtkWbp5SMtI3b05iZ10Sah1mLh1SdlZmLw4COuIjL3EjLxYTMt42bpRXY0lWbphSI", + value: "!(imitation-161.17.2.8.0.feu-a.mai-5f.tor-1.imi-1c)!", + result: { + word: "imitation", + correct: 17, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "10.06.2025", + }, + }, + { + date: "10.06.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjFTLp1WauIzNtkmbh5SNz0Cdh5mL1QWL192cuITYt8mcw5SMuITMuIjL2IjLxYTMt42bpRXY0lWbphSI", + value: "!(imitation-161.26.2.12.1.pro-a2.sou-d5.nat-35.ani-72.imi-1c)!", + result: { + word: "imitation", + correct: 26, + position: 2, + incorrect: 12, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 40, + date: "10.06.2025", + }, + }, + { + date: "10.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjFTLp1WauIWNtwWa05iZy0ichZnL1MTL0FmbuMjMtQHdh5CMx0SYv1mLm1SbvRnLyETL0R3buE2YtU3bt5iMuUTMucjLyQjLxYTMt42bpRXY0lWbphSI", + value: + "!(imitation-161.42.7.15.2.mou-ca.ott-12.tom-f.moa-10.att-23.nat-35.var-2f.til-5b.imi-1c)!", + result: { + word: "imitation", + correct: 42, + position: 7, + incorrect: 15, + knownIncorrect: 2, + totalWords: 9, + totalLetters: 64, + date: "10.06.2025", + }, + }, + { + date: "10.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjFTLp1WauUzMt8Wdx5SMx0yYhZnLyMWMtMXZk5CMuITMuAjL1IjLxYTMt42bpRXY0lWbphSI", + value: "!(imitation-161.25.0.12.0.des-1c2.vac-11.quo-35.imi-1c)!", + result: { + word: "imitation", + correct: 25, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "10.06.2025", + }, + }, +]; diff --git a/scripts/hejto/parts-2025/part-6.ts b/scripts/hejto/parts-2025/part-6.ts new file mode 100644 index 000000000..b56b6c598 --- /dev/null +++ b/scripts/hejto/parts-2025/part-6.ts @@ -0,0 +1,23870 @@ +import { ParsedHejtoResult } from "../hejto-types"; + +export const results: { + resultsBySource: { + [url: string]: ParsedHejtoResult[]; + }; +} = { + resultsBySource: {}, +}; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/01-09-2025-diffle-diffleen-grywebowe-35-letters-in-5-words-large-green-circle-23" +] = [ + { + date: "01.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMh5yN10SZy5iMy0SahZmLzQTLlJ3ZuEGMx0CclNnLw4CMx4iMuMjMuQDNy0yZulmelVmcmhSI", + value: "!(freezing-244.23.2.10.0.sep-10a.gre-43.fai-22.re-57.a2)!", + result: { + word: "freezing", + correct: 23, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "01.09.2025", + }, + }, + { + date: "01.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITYtUmcm5SOygTLlJHcukTMtkmL2gTLhVmcuAjL34iMukTMuQDNy0yZulmelVmcmhSI", + value: "!(freezing-244.19.2.7.0.rea-86.i-19.pre-829.fre-a2)!", + result: { + word: "freezing", + correct: 19, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "01.09.2025", + }, + }, + { + date: "01.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyEmL3UTLlJnLw0ydlZmLzYWMtUGa05SNwITMtUmcw5SOx0SalJnL20yY4VmLw4iNx4CNuEzMuQDNy0yZulmelVmcmhSI", + value: + "!(freezing-244.31.4.16.0.exc-6.rei-19.pre-1205.the-1f3.few-0.re-57.a2)!", + result: { + word: "freezing", + correct: 31, + position: 4, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 51, + date: "01.09.2025", + }, + }, + { + date: "01.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMh1SZyZmLllTLlJHZukTMtkWZy5iMh1ybyBnLw4SMx4SMuAjMuQDNy0yZulmelVmcmhSI", + value: "!(freezing-244.20.1.11.0.pro-a2.rei-19.dre-9e.fre-a2)!", + result: { + word: "freezing", + correct: 20, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "01.09.2025", + }, + }, + { + date: "01.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyEmL3UTLlJnZuQDZtUmci5CMzkTLlJHcuATYz0yclJnLyYTLtF2ZuAjL44iMuIzMuQDNy0yZulmelVmcmhSI", + value: "!(freezing-244.32.2.8.0.gam-62.res-3a0.pre-930.bre-d4.fre-57.a2)!", + result: { + word: "freezing", + correct: 32, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 42, + date: "01.09.2025", + }, + }, + { + date: "01.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMh5yN10SZyZmLhNWMtMXZy5CO50CcvNmLw4CMx4SMuMjMuQDNy0yZulmelVmcmhSI", + value: "!(freezing-244.23.1.10.0.cop-98.res-1ca.fre-57.a2)!", + result: { + word: "freezing", + correct: 23, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "01.09.2025", + }, + }, + { + date: "01.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMh5yN14iZh1SZuYDNtkmcm5iNk1iYtFmLw4CMx4iMuUjMuQDNy0yZulmelVmcmhSI", + value: "!(freezing-244.25.2.10.0.amb-d6.fri-46.e-af.57.a2)!", + result: { + word: "freezing", + correct: 25, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "01.09.2025", + }, + }, + { + date: "01.09.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMh1SZyZmLwUmMtInb15yY1ETLlJnYukTMtkWZy5SZx0SZyNmLw4CMx4SMuQjMuQDNy0yZulmelVmcmhSI", + value: "!(freezing-244.24.1.10.0.cre-1e.rei-19.bre-15c.unr-2e0.fre-a2)!", + result: { + word: "freezing", + correct: 24, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "01.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/02-07-25-gb-diffle-diffleen-grywebowe-24-letters-in-3-words-large-green-circle-1" +] = [ + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgDMz0SblNnLy0iblRmLzITL09WbuAjLwEjLx4yMx4yM4ETLyFmbp1WZzhSI", + value: "!(seminar-183.13.1.10.0.mot-23.den-2.sem-308)!", + result: { + word: "seminar", + correct: 13, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + }, + }, + { + date: "02.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4AzMt0mLiFWLyV2cuYDOtEWZy5CMuMjL14CNx4yM4ETLyFmbp1WZzhSI", + value: "!(seminar-183.14.5.3.0.rea-86.ser-ab.m-308)!", + result: { + word: "seminar", + correct: 14, + position: 5, + incorrect: 3, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "02.07.2025", + }, + }, + { + date: "02.07.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOwMTLtV2cuITYt8mcw5CMuYjLy4CMx4yM4ETLyFmbp1WZzhSI", + value: "!(seminar-183.10.2.6.0.pro-a2.sem-308)!", + result: { + word: "seminar", + correct: 10, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "02.07.2025", + }, + }, + { + date: "02.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgDMz0SblNnLhZDNtQnbp5SO0ETLpJnYukjNtQWYt5CMugjLz4SNx4yM4ETLyFmbp1WZzhSI", + value: "!(seminar-183.15.3.8.0.mad-69.bri-149.int-46a.sem-308)!", + result: { + word: "seminar", + correct: 15, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "02.07.2025", + }, + }, + { + date: "02.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgDMz0SblNnLk1ibp1mL0ATMt4Was5yMt4Wdi5CN00SYl1mLxMTLk5WYuIjNt0WYn5CMukjL14SMy4yM4ETLyFmbp1WZzhSI", + value: + "!(seminar-183.21.5.9.0.gam-62.and-31.mea-44.bun-3.lin-104.min-d.sem-308)!", + result: { + word: "seminar", + correct: 21, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 35, + date: "02.07.2025", + }, + }, + { + date: "02.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgDMz0SblNnL00icpZmL4kTLw92YuAjLxEjL04iMx4yM4ETLyFmbp1WZzhSI", + value: "!(seminar-183.12.4.11.0.cop-98.fir-4.sem-308)!", + result: { + word: "seminar", + correct: 12, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "02.07.2025", + }, + }, + { + date: "02.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOwMTLtV2cukTMx4yMwUTLoN2MuETNt0WZz5SYtUXZm5CMuYjLz4yNx4yM4ETLyFmbp1WZzhSI", + value: "!(seminar-183.17.3.6.0.feu-a.sem-51.3ch-503.119.sem-308)!", + result: { + word: "seminar", + correct: 17, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "02.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/02-09-2025-diffle-diffleen-27-letters-in-4-words-large-green-circle-15-large-yel" +] = [ + { + date: "02.09.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITZtQ3bw5iZtcXZq5iN00SZpZmLlFTLlJ3YuAjLxEjLx4SNx4SN0ITL5JXZ0R3bwhSI", + value: "!(pottery-245.15.1.11.0.cre-1e.fie-46.jew-f.pot-e2)!", + result: { + word: "pottery", + correct: 15, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "02.09.2025", + }, + }, + { + date: "02.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMl1Cdv5CZilTLvJnLldjMt4WZw5CMukjLy4iNx4SN0ITL5JXZ0R3bwhSI", + value: "!(pottery-245.16.2.9.0.pen-27e.ro-9bd.ot-e2)!", + result: { + word: "pottery", + correct: 16, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "02.09.2025", + }, + }, + { + date: "02.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyUWL09GcuMjMtQ3bs5SZ5ETLlhGduYDOtEWZy5CMucjL04COx4SN0ITL5JXZ0R3bwhSI", + value: "!(pottery-245.18.4.7.0.rea-86.the-19e.lot-23.pot-e2)!", + result: { + word: "pottery", + correct: 18, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "02.09.2025", + }, + }, + { + date: "02.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyUWL09GcuMjMtQ3bs5CZtQHdv5iYx0ibvRnL0ITLvJXZuIjNt0WYn5CMugjLz4SNy4SN0ITL5JXZ0R3bwhSI", + value: "!(pottery-245.25.3.8.0.gam-62.ero-24.ton-1b.ott-d.lot-23.pot-e2)!", + result: { + word: "pottery", + correct: 25, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "02.09.2025", + }, + }, + { + date: "02.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITZuQGZtQ3buITYt8mcw5CMuYjLy4iNx4SN0ITL5JXZ0R3bwhSI", + value: "!(pottery-245.16.2.6.0.pro-a2.ot-dd.e2)!", + result: { + word: "pottery", + correct: 16, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "02.09.2025", + }, + }, + { + date: "02.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyUWL09GcugDZt8mc05COjFTLyVmduYTLjhXZuAjLxEjLy4yMx4SN0ITL5JXZ0R3bwhSI", + value: "!(pottery-245.13.2.11.0.exc-6.ver-1c8.tro-d8.pot-e2)!", + result: { + word: "pottery", + correct: 13, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "02.09.2025", + }, + }, + { + date: "02.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMl1CduMTMx0icvBnLiJTLu92ZuEWL1VmZuAjLxEjLw4SNx4SN0ITL5JXZ0R3bwhSI", + value: "!(pottery-245.15.0.11.0.feu-a.gon-2b.por-113.t-e2)!", + result: { + word: "pottery", + correct: 15, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "02.09.2025", + }, + }, + { + date: "02.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITZtQ3buMjMi1ybyBnL4kTLw92YuAjLwEjL14SNx4SN0ITL5JXZ0R3bwhSI", + value: "!(pottery-245.15.5.10.0.cop-98.pro-b23.ot-e2)!", + result: { + word: "pottery", + correct: 15, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "02.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/03-07-25-gb-diffle-diffleen-grywebowe-32-letters-in-4-words-large-green-circle-1" +] = [ + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEmNx0CbhJmLhFTMtwWYz5iYh1ybwFmLzITL09WbuAjL1EjLx4iNx4CN4ETLu92bsxWYihSI", + value: "!(balloon-184.16.1.15.0.mot-23.apo-ab.sal-11a.bal-16a)!", + result: { + word: "balloon", + correct: 16, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + }, + }, + { + date: "03.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY2EjLxYTMuAzYx0CbhJmLmRTLnF2duYDOtEWZy5CMugjLw4CNy4CN4ETLu92bsxWYihSI", + value: "!(balloon-184.24.0.8.0.rea-86.wag-4f.bal-1c0.161.16a)!", + result: { + word: "balloon", + correct: 24, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "03.07.2025", + }, + }, + { + date: "03.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhZTMuAjZtwWYi5CZ2ETLsFWbuUDNtwWYm5iN10ybsFmLlJTLh9GbuITOt8Gbw5SO20ibuFmLxITLlh2YuAjL1EjLy4SOy4CN4ETLu92bsxWYihSI", + value: + "!(balloon-184.29.2.15.0.che-21.ann-69.plo-92.loa-2e.alo-56.fal-45.mal-16d.bal-f0.16a)!", + result: { + word: "balloon", + correct: 29, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 46, + date: "03.07.2025", + }, + }, + { + date: "03.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhZTMtwWYi5CO50CcvNmLw4SOuIjL54CN4ETLu92bsxWYihSI", + value: "!(balloon-184.9.2.9.0.cop-98.bal-16a)!", + result: { + word: "balloon", + correct: 9, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "03.07.2025", + }, + }, + { + date: "03.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhZTMtwWYi5iNm1SZyRnLkRWLvh2cuAjLxEjLw4CMx4CN4ETLu92bsxWYihSI", + value: "!(balloon-184.10.0.11.0.sho-dd.tre-f6.bal-16a)!", + result: { + word: "balloon", + correct: 10, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "03.07.2025", + }, + }, + { + date: "03.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhZTMuEjNx0CbhJmL5ETLsFmZukzMt4WYs5SYk1ychBnLyYTLtF2ZuAjLwEjLx4SMy4CN4ETLu92bsxWYihSI", + value: "!(balloon-184.21.1.10.0.gam-62.pas-da.lan-39.fal-19.bal-161.16a)!", + result: { + word: "balloon", + correct: 21, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "03.07.2025", + }, + }, + { + date: "03.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhZTMtwWYi5yY2ETLsF2ZuU2MtwWY35CZ30yYvxmLwETMtwWYo5iMtE2bs5yYzMTLhxGcuAjL0EjLy4CNy4CN4ETLu92bsxWYihSI", + value: + "!(balloon-184.24.2.14.0.pla-33c.loa-2.hal-110.loc-7d.wal-3e.gal-16c.bal-16a)!", + result: { + word: "balloon", + correct: 24, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "03.07.2025", + }, + }, + { + date: "03.07.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhZTMtwWYi5iMh1ybyBnLw4yNuIjL54CN4ETLu92bsxWYihSI", + value: "!(balloon-184.9.2.7.0.pro-a2.bal-16a)!", + result: { + word: "balloon", + correct: 9, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "03.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/04-07-2025-diffle-diffleen-grywebowe-24-letters-in-3-words-large-green-circle-15" +] = [ + { + date: "04.07.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNtsmLmNTLpFmLyEWLvJHcuAjL34iMuUTMuUDOx0ibhR3cptWYwhSI", + value: "!(pakistan-185.15.2.7.0.pro-a2.ai-3f.k-6)!", + result: { + word: "pakistan", + correct: 15, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "04.07.2025", + }, + }, + { + date: "04.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK24yNtsWYw5SN10ychxmL2gTLhVmcuAjL34yMuMjMuUDOx0ibhR3cptWYwhSI", + value: "!(pakistan-185.23.3.7.0.rea-86.las-55.pak-7.6)!", + result: { + word: "pakistan", + correct: 23, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "04.07.2025", + }, + }, + { + date: "04.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK20yauMzNt4mLiRWLzFmL4IjMtEGbw5COmVTLoN2MuIWNx0Sa0NnLkRWLulGcuImMtQXa05SMy0SZoNmLw4CMx4yNuMzMuUDOx0ibhR3cptWYwhSI", + value: + "!(pakistan-185.33.7.10.0.che-21.tit-2b.pin-dd.sti-15b.3ch-5f8.pla-228.as-db.n-73.k-6)!", + result: { + word: "pakistan", + correct: 33, + position: 7, + incorrect: 10, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 50, + date: "04.07.2025", + }, + }, + { + date: "04.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNucTLr5iZz0SahBnL0gTLpdHduYWLzl2ZucTOtQWat5yY20icvZmLw4iNx4SMukjMuUDOx0ibhR3cptWYwhSI", + value: "!(pakistan-185.29.1.16.0.for-6c.mid-97.gis-f.twi-84.pai-3f.k-7.6)!", + result: { + word: "pakistan", + correct: 29, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 46, + date: "04.07.2025", + }, + }, + { + date: "04.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYTLrFGcuEjNt4Wdi5SY50yYuEGZtMXYw5iM20SbhdmLw4CMx4SMukTMuUDOx0ibhR3cptWYwhSI", + value: "!(pakistan-185.19.1.10.0.gam-62.pas-da.c-9a.bun-61.pak-6)!", + result: { + word: "pakistan", + correct: 19, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "04.07.2025", + }, + }, + { + date: "04.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYTLrFmLw0CdpBnL4kTLw92YuAjL54CMuYTMuUDOx0ibhR3cptWYwhSI", + value: "!(pakistan-185.16.0.9.0.cop-98.pit-0.ak-6)!", + result: { + word: "pakistan", + correct: 16, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "04.07.2025", + }, + }, + { + date: "04.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNtsmL3kTLj5SYk1ychBnLyMTLzVXYuAjL44SMuAjMuUDOx0ibhR3cptWYwhSI", + value: "!(pakistan-185.20.1.8.0.aus-32.pas-da.c-97.k-6)!", + result: { + word: "pakistan", + correct: 20, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "04.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/04-10-2025-diffle-diffleen-grywebowe-37-letters-in-6-words-21-1-15-0" +] = [ + { + date: "04.10.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYm1iZl5iNtk2dukTOtYXak5SZhFTLoN2MuIWLkl2cugTOtA3bj5CMuUTMuEjLxIjL3cjMtUmbpZWZkhSI", + value: "!(define-277.21.1.15.0.cop-98.sid-b.3ch-1ae.div-99.wi-6.ef-fa)!", + result: { + word: "define", + correct: 21, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "04.10.2025", + }, + }, + { + date: "04.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEmZtYWZukTOtYXak5SMj1ibpdnLzMTLulGauMWLp9mbuUWMtUmcj5CMuITMuEjL5EjL3cjMtUmbpZWZkhSI", + value: "!(define-277.19.1.12.0.cre-1e.noi-c.hin-33.win-c1.div-99.ef-fa)!", + result: { + word: "define", + correct: 19, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "04.10.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhZmLjVWLmVGZuMjMtQ3bt5CMuATMuAjL0EjL3cjMtUmbpZWZkhSI", + value: "!(define-277.14.0.10.0.mot-23.def-ec.fa)!", + result: { + word: "define", + correct: 14, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + }, + }, + { + date: "04.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEmZtYWZk5iMtkWZm5iN40SYlJnLw4yNuEjLyEjL3cjMtUmbpZWZkhSI", + value: "!(define-277.12.1.7.0.rea-86.fei-2.def-fa)!", + result: { + word: "define", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "04.10.2025", + }, + }, + { + date: "04.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYm1iZuUWOt4mL3MTLw5CNwETLuVGZuQWMt4WZz5iNtMGel5CMuITMuMjL5EjL3cjMtUmbpZWZkhSI", + value: "!(define-277.19.3.12.0.exc-6.sen-1d.den-104.p-37.n-9e.f-fa)!", + result: { + word: "define", + correct: 19, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "04.10.2025", + }, + }, + { + date: "04.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEmZtYWZk5SYj1iZulmLh1SdlZmLx4yNuQjLxEjL3cjMtUmbpZWZkhSI", + value: "!(define-277.11.4.7.1.feu-a.inf-ca.def-fa)!", + result: { + word: "define", + correct: 11, + position: 4, + incorrect: 7, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 22, + date: "04.10.2025", + }, + }, + { + date: "04.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYm1iZuMWOt4mLhRWLzVGZuITYt8mcw5SMuQTMuAjL2EjL3cjMtUmbpZWZkhSI", + value: "!(define-277.16.0.14.1.pro-a2.des-da.n-9c.f-fa)!", + result: { + word: "define", + correct: 16, + position: 0, + incorrect: 14, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 30, + date: "04.10.2025", + }, + }, + { + date: "04.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhZWLmVGZuEzYt4Wa35SO5ETLulGcuYDNt02by5CMuMTMuEjLyEjL3cjMtUmbpZWZkhSI", + value: "!(define-277.12.1.13.0.rom-46.pin-199.win-c1.def-fa)!", + result: { + word: "define", + correct: 12, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "04.10.2025", + }, + }, + { + date: "04.10.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYm1iZuIGOt4mLxcTL25iYi1yclRmLiVTLoRXZuIjNt0WYn5CMuETMuEjL5EjL3cjMtUmbpZWZkhSI", + value: "!(define-277.19.1.11.0.gam-62.eth-5b.des-bb.v-71.n-8b.f-fa)!", + result: { + word: "define", + correct: 19, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "04.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/07-11-2025-diffle-diffleen-16-letters-in-2-words-large-green-circle-7-large-yell" +] = [ + { + date: "07.11.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpAjMt42bs5yNl1SYsNnLw4SOuAjL34SMxMTLn52bshSI", + value: "!(long-311.7.0.9.0.sla-e7.lon-20)!", + result: { + word: "long", + correct: 7, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "07.11.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpAjMt4mLk1ycvxmL20CbvBnLzITL09WbuAjL2EjLx4SMx4SMxMTLn52bshSI", + value: "!(long-311.11.1.16.0.mot-23.pol-6.los-d.n-20)!", + result: { + word: "long", + correct: 11, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + }, + }, + { + date: "07.11.2025", + nick: "Endrevoir", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMy0ibvxmLjZTMt8Gbj5iMl1idlRmLiJTLy9GauAjLyEjLx4SMx4SMxMTLn52bshSI", + value: "!(long-311.11.1.12.0.hor-2b.dev-e2.clo-16c.lon-20)!", + result: { + word: "long", + correct: 11, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "07.11.2025", + }, + }, + { + date: "07.11.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMy0ibvxmL5ETLp9mYuMTLvh2ZuUWMtUmcj5CMuITMuIjL44SMxMTLn52bshSI", + value: "!(long-311.8.2.12.0.cre-1e.gho-3.boi-19.lon-20)!", + result: { + word: "long", + correct: 8, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "07.11.2025", + }, + }, + { + date: "07.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpAjMt42bs5CZx0Sb1pmLhRTLvxmYuYDOtEWZy5CMuMTMuAjL54SMxMTLn52bshSI", + value: "!(long-311.9.0.13.0.rea-86.blo-4a.jum-1d.lon-20)!", + result: { + word: "long", + correct: 9, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "07.11.2025", + }, + }, + { + date: "07.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwITLu5iZy0ybuMTL15yNx0SYvxmLxcTLjlmcuAjL0EjLw4iMx4SMxMTLn52bshSI", + value: "!(long-311.12.0.14.0.ric-71.loa-17.u-3.o-2f.n-20)!", + result: { + word: "long", + correct: 12, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "07.11.2025", + }, + }, + { + date: "07.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwITLu5iZy0yduUjMt8mLhFTLz9GbuYTLjhXZuAjL1EjLw4SMx4SMxMTLn52bshSI", + value: "!(long-311.11.0.15.0.exc-6.los-1a.o-25.w-2f.n-20)!", + result: { + word: "long", + correct: 11, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "07.11.2025", + }, + }, + { + date: "07.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwITLu9GbuIWNt42bo5iNy0ibvNnL4cTLu9mYuIzMt42bk5iNt42br5iN00ibvBnLyYTLtF2ZuAjLwEjLw4yMy4SMxMTLn52bshSI", + value: + "!(long-311.23.0.10.0.gam-62.pon-46.kon-6.don-32.bon-78.son-26.hon-5b.lon-20)!", + result: { + word: "long", + correct: 23, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 33, + date: "07.11.2025", + }, + }, + { + date: "07.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpAjMt42bs5CMjJTLu9WbugTOtA3bj5CMuMTMuIjL54SMxMTLn52bshSI", + value: "!(long-311.9.2.13.0.cop-98.mon-2c0.lon-20)!", + result: { + word: "long", + correct: 9, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "07.11.2025", + }, + }, + { + date: "07.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwITLu5iN10yYuYWNt82bs5iZ4QTLs9GcuEWL1VmZuAjL0EjLx4CMx4SMxMTLn52bshSI", + value: "!(long-311.10.1.14.0.feu-a.pol-48f.loo-5f.c-56.n-20)!", + result: { + word: "long", + correct: 10, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "07.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/09-11-2025-diffle-diffleen-grywebowe-19-letters-in-3-words-large-green-circle-11" +] = [ + { + date: "09.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUWOx0yb0NnL10ybvRnLhZWLy92YuAjL24iMuETMuMTMz0Cbv9GdzhSI", + value: "!(stool-313.11.2.6.0.cor-fa.too-5.sto-19e)!", + result: { + word: "stool", + correct: 11, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "09.11.2025", + }, + }, + { + date: "09.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKllTMt8Gdz5SNt82b05CO50CcvNmLw4CMx4SMuETMuMTMz0Cbv9GdzhSI", + value: "!(stool-313.11.1.10.0.cop-98.too-5.sto-19e)!", + result: { + word: "stool", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "09.11.2025", + }, + }, + { + date: "09.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKllTMt8Gdz5iN10SdsdmL3IWMt8Gdz5iN40SYlJnLw4CMx4SMuETMuMTMz0Cbv9GdzhSI", + value: "!(stool-313.11.1.10.0.rea-86.sto-1b7.glu-56.sto-19e)!", + result: { + word: "stool", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "09.11.2025", + }, + }, + { + date: "09.11.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKllTMt8GducTZtEGbz5CMukjLx4yNuMTMz0Cbv9GdzhSI", + value: "!(stool-313.7.1.9.0.sla-e7.to-19e)!", + result: { + word: "stool", + correct: 7, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "09.11.2025", + }, + }, + { + date: "09.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUWOx0yb0NnL4ETLvh2ZuYTLjhXZuAjLxEjLx4SOuMTMz0Cbv9GdzhSI", + value: "!(stool-313.9.1.11.0.exc-6.gho-18.sto-19e)!", + result: { + word: "stool", + correct: 9, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "09.11.2025", + }, + }, + { + date: "09.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUWOx0yb0NnLh1CbvRnLwMTL09mbuIjNt0WYn5CMukjLx4SOuMTMz0Cbv9GdzhSI", + value: "!(stool-313.9.1.9.0.gam-62.not-30.tol-a.sto-19e)!", + result: { + word: "stool", + correct: 9, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 19, + date: "09.11.2025", + }, + }, + { + date: "09.11.2025", + nick: "Endrevoir", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUWOx0yb0NnL10ybvRnLiJTLy9GauAjL24SMuITMuMTMz0Cbv9GdzhSI", + value: "!(stool-313.12.1.6.0.hor-2b.too-5.sto-19e)!", + result: { + word: "stool", + correct: 12, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "09.11.2025", + }, + }, + { + date: "09.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKllTMt8GduM2Nx0CajNnLxUmNtg2Yz4CN00ybsNnLh1SdlZmLw4CMx4iMuUTMuMTMz0Cbv9GdzhSI", + value: "!(stool-313.15.2.10.0.feu-a.slo-44.3ch-6e1.sch-17c.to-19e)!", + result: { + word: "stool", + correct: 15, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "09.11.2025", + }, + }, + { + date: "09.11.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUWOx0yb0NnLiFWLs9mduMTYx0ybsZmLz0Sa1JmLlFTLlJ3YuAjL0EjLz4SOuMTMz0Cbv9GdzhSI", + value: "!(stool-313.9.3.14.0.cre-1e.bui-3.flo-1a3.vol-ab.sto-19e)!", + result: { + word: "stool", + correct: 9, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "09.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/10-07-2025-diffle-diffleen-grywebowe-20-letters-in-3-words-large-green-circle-10" +] = [ + { + date: "10.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNt4WZo5yY20SZ1FnL2gTLhVmcuAjL44iMuATMuETOx0SZj5WZohSI", + value: "!(hence-191.10.2.8.0.rea-86.que-6c.hen-6)!", + result: { + word: "hence", + correct: 10, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "10.07.2025", + }, + }, + { + date: "10.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYjLk1iblhmL1ITLlVXcugTMt4WZ25CO0gjL1ETNukDMz4yM1ITLoN2MugTMtg3bi5SYh1yYpRmL0YjMt0mLjNTLuVGauIDZtUGa05iNx0yZ1pmL04SOy4SMuMzMuETOx0SZj5WZohSI", + value: + "!(hence-191.33.1.29.4.jug-16.the-d2.hen-3c.m-264.dic-aa.box-18.3ch-253.309.515.848.ven-18.que-25.hen-d.6)!", + result: { + word: "hence", + correct: 33, + position: 1, + incorrect: 29, + knownIncorrect: 4, + totalWords: 14, + totalLetters: 63, + date: "10.07.2025", + }, + }, + { + date: "10.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNt4WZo5CZt4WZ35iNiZTLoN2MuIWMt4Wds5CNh1ibvJmLzETLjVGcuIWNtgGdl5iM20SbhdmLw4iNx4yMuYTMuETOx0SZj5WZohSI", + value: + "!(hence-191.16.3.16.0.gam-62.eth-5b.pec-13.bon-a4.lun-1b.3ch-6b6.wen-d.hen-6)!", + result: { + word: "hence", + correct: 16, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 35, + date: "10.07.2025", + }, + }, + { + date: "10.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYTLuVGauEjMtUGaj5CMuQjLx4COuETOx0SZj5WZohSI", + value: "!(hence-191.8.1.4.0.che-21.hen-6)!", + result: { + word: "hence", + correct: 8, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "10.07.2025", + }, + }, + { + date: "10.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK20iblhmL4kTLw92YuAjLwEjLx4yNuETOx0SZj5WZohSI", + value: "!(hence-191.7.1.10.0.cop-98.hen-6)!", + result: { + word: "hence", + correct: 7, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "10.07.2025", + }, + }, + { + date: "10.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK20iblhmL2ETLuV2ZuIWMtUWZ35iN10SZvBnLh1SdlZmLw4iNx4CMuITMuETOx0SZj5WZohSI", + value: "!(hence-191.12.0.16.0.feu-a.poe-56.wee-1b.gen-16.hen-6)!", + result: { + word: "hence", + correct: 12, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "10.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/10-09-25-gb-diffle-grywebowe-diffleen-20-letters-in-2-words-large-green-circle-1" +] = [ + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZh1SdoRnLzITL09WbuAjL44CMuITMuMTNy0SehR2cyVHa0hSI", + value: "!(thursday-253.12.0.8.0.mot-23.thu-af)!", + result: { + word: "thursday", + correct: 12, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + }, + }, + { + date: "10.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYWYtUHa05CO2ITLoN2MuEDOx0icugTL1hmL1ETLzVHdukDZtIHdz5iN40SYlJnLw4SMx4CNuQjMuMTNy0SehR2cyVHa0hSI", + value: + "!(thursday-253.24.4.11.0.rea-86.str-d9.tus-15.hu-8.r-181.3ch-268.thu-af)!", + result: { + word: "thursday", + correct: 24, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "10.09.2025", + }, + }, + { + date: "10.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYWYuQjYtUHa05yNkJTLuFGcuATLzJXduYTLjhXZuAjL44iMuAjMuMTNy0SehR2cyVHa0hSI", + value: "!(thursday-253.20.2.8.0.exc-6.urs-0.pan-2d7.thu-b4.af)!", + result: { + word: "thursday", + correct: 20, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "10.09.2025", + }, + }, + { + date: "10.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZh1SdoRnL1MjLjRTLyVHauY2Mz0CajNjLz4COtUHa05CZ30Sb1NnLlJTLuVnZuQjYtUnLxUWLyhGduYWZz0SYoNmLw4CNx4CNugzMuMTNy0SehR2cyVHa0hSI", + value: + "!(thursday-253.38.4.14.0.cha-3ef.thr-e1.u-b4.fun-2e.sum-7d.thu-8.3.3ch-33f.hur-4c.35.thu-af)!", + result: { + word: "thursday", + correct: 38, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 56, + date: "10.09.2025", + }, + }, + { + date: "10.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZh1SdoRnLjJTLuV3cuEWL1VmZuAjL24iMuUTMuMTNy0SehR2cyVHa0hSI", + value: "!(thursday-253.15.2.6.0.feu-a.sun-2c.thu-af)!", + result: { + word: "thursday", + correct: 15, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "10.09.2025", + }, + }, + { + date: "10.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmFWL1hGduETMtUncw5CNz0ibhJnLyYTLtF2ZuAjL14yMuQTMuMTNy0SehR2cyVHa0hSI", + value: "!(thursday-253.14.3.5.0.gam-62.ran-34.pru-11.thu-af)!", + result: { + word: "thursday", + correct: 14, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "10.09.2025", + }, + }, + { + date: "10.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYWYtUnL2ETLyhmLkhjMtEmc05iMh1ybyBnLw4CMx4yMucTMuMTNy0SehR2cyVHa0hSI", + value: "!(thursday-253.17.3.10.0.pro-a2.tra-28d.hr-16.u-af)!", + result: { + word: "thursday", + correct: 17, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "10.09.2025", + }, + }, + { + date: "10.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZh1SdoRnL4kTLw92YuAjL44yMuATMuMTNy0SehR2cyVHa0hSI", + value: "!(thursday-253.10.3.8.0.cop-98.thu-af)!", + result: { + word: "thursday", + correct: 10, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "10.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/10-10-2025-diffle-diffleen-grywebowe-21-letters-in-3-words-large-green-circle-11" +] = [ + { + date: "10.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiN1ETLuF2cuIGNtkWY35iMh1ybyBnLw4SOuEjLxEjLzgjMtkHdp5WYzhSI", + value: "!(sanity-283.11.1.9.0.pro-a2.wai-4b.san-156)!", + result: { + word: "sanity", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "10.10.2025", + }, + }, + { + date: "10.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYTNx0ibhNnL0UTLuFmduAjL14SMukjLzgjMtkHdp5WYzhSI", + value: "!(sanity-283.9.1.5.0.van-54.san-156)!", + result: { + word: "sanity", + correct: 9, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "10.10.2025", + }, + }, + { + date: "10.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYTNx0ibhNnL1QWMtMnbp5iN40SYlJnLw4iNuQjLyEjLzgjMtkHdp5WYzhSI", + value: "!(sanity-283.12.4.6.0.rea-86.ins-1d5.san-156)!", + result: { + word: "sanity", + correct: 12, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "10.10.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYTNx0ibh5SNwITLhR3cuMjMtQ3bt5CMuITMuEjLwEjLzgjMtkHdp5WYzhSI", + value: "!(sanity-283.10.1.12.0.mot-23.sta-205.an-156)!", + result: { + word: "sanity", + correct: 10, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + }, + }, + { + date: "10.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2UTMt4WYuAjZtEGaz5iNtMGel5CMuATMuEjLxEjLzgjMtkHdp5WYzhSI", + value: "!(sanity-283.11.1.10.0.exc-6.sha-f0.an-156)!", + result: { + word: "sanity", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "10.10.2025", + }, + }, + { + date: "10.10.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2UTMt4WYz5SO0YTLzlWbugTOtA3bj5CMuATMuMjLxEjLzgjMtkHdp5WYzhSI", + value: "!(sanity-283.11.3.10.0.cop-98.mis-649.san-156)!", + result: { + word: "sanity", + correct: 11, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "10.10.2025", + }, + }, + { + date: "10.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2UTMt4WYz5SMk1yczFmLh1SdlZmLw4COuMjLwEjLzgjMtkHdp5WYzhSI", + value: "!(sanity-283.10.3.8.0.feu-a.ass-d1.san-156)!", + result: { + word: "sanity", + correct: 10, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "10.10.2025", + }, + }, + { + date: "10.10.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYTNx0ibuEWNtkmL3QTL0F2cuEGZtMXYw5iM20SbhdmLw4iNuQjL2EjLzgjMtkHdp5WYzhSI", + value: "!(sanity-283.16.4.6.0.gam-62.pas-da.sat-47.i-5a.n-156)!", + result: { + word: "sanity", + correct: 16, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "10.10.2025", + }, + }, + { + date: "10.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiN1ETLuF2cugTNt4WYo5CZxETLhxmZuUWLvdWYuUWMtUmcj5CMuETMuAjL3EjLzgjMtkHdp5WYzhSI", + value: "!(sanity-283.17.0.11.0.cre-1e.ago-e.fla-11d.han-58.san-156)!", + result: { + word: "sanity", + correct: 17, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "10.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/10-12-2025-diffle-diffleen-25-letters-in-5-words-large-green-circle-16-large-yel" +] = [ + { + date: "10.12.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUGNtUnLjRTLv5yMtM3bs5CN30CbvBnLlFTLlJ3YuAjL34iMuYTMuQDNz0SZzV3bshSI", + value: "!(louse-344.16.2.7.0.cre-1e.pol-74.los-3.o-4c.u-4e)!", + result: { + word: "louse", + correct: 16, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "10.12.2025", + }, + }, + { + date: "10.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZ04yMtUnLm1iYuMWMt4mLjRTLv5SOtM3bs5iN40CbhZmLx4CNx4SMuUjMuQDNz0SZzV3bshSI", + value: "!(louse-344.25.1.14.1.fal-86.los-9.o-4c.n-1c.b-f.u-3.4e)!", + result: { + word: "louse", + correct: 25, + position: 1, + incorrect: 14, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 40, + date: "10.12.2025", + }, + }, + { + date: "10.12.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZ00SduMGNt82bs5CO50CcvNmLw4SMx4SMuETMuQDNz0SZzV3bshSI", + value: "!(louse-344.11.1.11.0.cop-98.loo-4c.u-4e)!", + result: { + word: "louse", + correct: 11, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "10.12.2025", + }, + }, + { + date: "10.12.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZ00SdvxmL10ycvRmLhNWMtUGcz5SMy0SZoNmLw4SMx4CMuETMuQDNz0SZzV3bshSI", + value: "!(louse-344.11.0.11.0.che-21.spe-1ca.dos-5.lou-4e)!", + result: { + word: "louse", + correct: 11, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "10.12.2025", + }, + }, + { + date: "10.12.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUGNtU3bs5SZ10Cb1ZmL50ycvJmLw0yc39mL30ycvBnLkFTLuV2cuIWNtgGdl5iM20SbhdmLw4iNx4SMukTMuQDNz0SZzV3bshSI", + value: + "!(louse-344.19.1.16.0.gam-62.eth-5b.sen-1d.pos-7.ows-0.bos-9.ful-5e.lou-4e)!", + result: { + word: "louse", + correct: 19, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 36, + date: "10.12.2025", + }, + }, + { + date: "10.12.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlRTL19GbucTZtEGbz5CMugjLx4COuQDNz0SZzV3bshSI", + value: "!(louse-344.8.1.8.0.sla-e7.lou-4e)!", + result: { + word: "louse", + correct: 8, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "10.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/11-11-2025-diffle-diffleen-grywebowe-52-letters-in-10-words-large-green-circle-3" +] = [ + { + date: "11.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMtYWas5SOi1CajNjLw0iZuEDNt0Was5yMm1SYlJmLjJTLzlGbuEjMtIWai5SY1QTLoN2MuITLhlGbuYTLjhXZuAjL54COuUzMuUTMz0Cdh9mYlZWashSI", + value: + "!(lifeboat-315.35.8.9.0.exc-6.lia-2.3ch-45a.bib-21.lis-2c.bea-f3.lim-41.f-0.3ch-b9.lif-2)!", + result: { + word: "lifeboat", + correct: 35, + position: 8, + incorrect: 9, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 52, + date: "11.11.2025", + }, + }, + { + date: "11.11.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITLmlGbuYGNtwWam5yM00CcpJmL3UWLhx2cuAjL54SNuYTMuUTMz0Cdh9mYlZWashSI", + value: "!(lifeboat-315.16.5.9.0.sla-e7.bip-43.fil-4f.lif-2)!", + result: { + word: "lifeboat", + correct: 16, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "11.11.2025", + }, + }, + { + date: "11.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMuATLmlGbuUWMtwWaw5CNy0SYvdmL2gTLhVmcuAjL24yMuAjMuUTMz0Cdh9mYlZWashSI", + value: "!(lifeboat-315.20.3.6.0.rea-86.goa-24.pil-1e.lif-0.2)!", + result: { + word: "lifeboat", + correct: 20, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "11.11.2025", + }, + }, + { + date: "11.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMtYWas5iM2QTLoN2MuETLvxmZuETNtQXZuUTLh9GbuMTOy0ich1mLw4iNx4yMuIjMuUTMz0Cdh9mYlZWashSI", + value: "!(lifeboat-315.22.3.16.0.mar-293.loa-5.et-51.flo-1.3ch-462.lif-2)!", + result: { + word: "lifeboat", + correct: 22, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 41, + date: "11.11.2025", + }, + }, + { + date: "11.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMtYWas5yNk5SYjdjLyIzNuImZ30CajNjL3ETLhlmZucDOtM3bw5CNx0yY1RmLhVDNtg2Yz4iMtIWZuEjMtI2buEmNtEWZs5iM20SbhdmLw4iNx4yNuMzMuUTMz0Cdh9mYlZWashSI", + value: + "!(lifeboat-315.33.7.16.0.gam-62.lea-6a.ob-21.eb-2.3ch-45a.duc-14.pos-87.fia-17.3ch-7fb.722.7ca.d7.lif-2)!", + result: { + word: "lifeboat", + correct: 33, + position: 7, + incorrect: 16, + knownIncorrect: 0, + totalWords: 13, + totalLetters: 56, + date: "11.11.2025", + }, + }, + { + date: "11.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKy0iZpxmL4kTLw92YuAjL24SNuATMuUTMz0Cdh9mYlZWashSI", + value: "!(lifeboat-315.10.5.6.0.cop-98.lif-2)!", + result: { + word: "lifeboat", + correct: 10, + position: 5, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "11.11.2025", + }, + }, + { + date: "11.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITLmlGbuEWL1VmZuAjL04iMuETMuUTMz0Cdh9mYlZWashSI", + value: "!(lifeboat-315.11.2.4.0.feu-a.lif-2)!", + result: { + word: "lifeboat", + correct: 11, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "11.11.2025", + }, + }, + { + date: "11.11.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMtYWas5iMz0iZlRmLw0CdlBnLlFTLlJ3YuAjL34CNuUTMuUTMz0Cdh9mYlZWashSI", + value: "!(lifeboat-315.15.4.7.0.cre-1e.pet-0.def-32.lif-2)!", + result: { + word: "lifeboat", + correct: 15, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "11.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/12-10-2025-diffle-diffleen-23-letters-in-3-words-large-green-circle-18-large-yel" +] = [ + { + date: "12.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiM4cTLiV3cuETNtMXZk5SZx0SZyNmLw4SNuAjL4EjL1gjMtUmYpJ3YzJWdzhSI", + value: "!(subscribe-285.18.0.5.0.cre-1e.des-51.sub-782)!", + result: { + word: "subscribe", + correct: 18, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "12.10.2025", + }, + }, + { + date: "12.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKygzNtIWduQmMx0icjNnLiNmNtg2Yz4iN40SYlJnLw4CNuQjL5EjL1gjMtUmYpJ3YzJWdzhSI", + value: "!(subscribe-285.19.4.4.0.rea-86.3ch-6cb.scr-12d.ub-782)!", + result: { + word: "subscribe", + correct: 19, + position: 4, + incorrect: 4, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "12.10.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIDO30iY1NnLzETLjVnbuMjMtQ3bt5CMuETMuIjL1EjL1gjMtUmYpJ3YzJWdzhSI", + value: "!(subscribe-285.15.2.11.0.mot-23.nuc-13.sub-782)!", + result: { + word: "subscribe", + correct: 15, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + }, + }, + { + date: "12.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiM4cTLiVnLmJTMtI3Yz5iMh1ybyBnLw4yNuIjL4EjL1gjMtUmYpJ3YzJWdzhSI", + value: "!(subscribe-285.18.2.7.0.pro-a2.scr-12f.ub-782)!", + result: { + word: "subscribe", + correct: 18, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "12.10.2025", + }, + }, + { + date: "12.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiM4cTLiV3cuATLilmduATLpVnauAjNtMXduQmMtMWauYmYtMmL3MTLy5CM4YTLw5iNtYWdz5yNjJTLz5WaukjNtUGay5SMuAjMugjLyQjL1gjMtUmYpJ3YzJWdzhSI", + value: + "!(subscribe-285.42.8.20.1.rhe-69.ins-2c7.suf-6.p-680.r-37.c-bf.ic-2d.us-60.jui-0.vib-0.sub-782)!", + result: { + word: "subscribe", + correct: 42, + position: 8, + incorrect: 20, + knownIncorrect: 1, + totalWords: 11, + totalLetters: 70, + date: "12.10.2025", + }, + }, + { + date: "12.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKygzNtIWduQmMx0icjNnLjRTLp5SN10Sdy5CMxETLyV3YuEjNtU3bw5iNtMGel5CMuATMucjLzMjL1gjMtUmYpJ3YzJWdzhSI", + value: + "!(subscribe-285.33.7.10.0.exc-6.pou-61.cur-110.ru-55.i-4c.scr-12d.ub-782)!", + result: { + word: "subscribe", + correct: 33, + position: 7, + incorrect: 10, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 50, + date: "12.10.2025", + }, + }, + { + date: "12.10.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKygzNuUmY34SOmlTLi5COm1ic1NnL5YTMtkmci5CM0MTLzVmcuIjNt0WYn5CMuETMuYjLzMjL1gjMtUmYpJ3YzJWdzhSI", + value: + "!(subscribe-285.33.6.11.0.gam-62.res-340.bri-169.sur-f8.b-9f9.7be.782)!", + result: { + word: "subscribe", + correct: 33, + position: 6, + incorrect: 11, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 50, + date: "12.10.2025", + }, + }, + { + date: "12.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKygzNtIWducTLi92cuMWOtIWdy5SOtIWdw5yY00ib1ZmLh1ielJmLw4COuMjLyIjL1gjMtUmYpJ3YzJWdzhSI", + value: "!(subscribe-285.22.3.8.0.bez-a.fun-4c.pub-9.rub-9c.sob-7.ub-782)!", + result: { + word: "subscribe", + correct: 22, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "12.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/12-11-2025-diffle-diffleen-grywebowe-25-letters-in-3-words-large-green-circle-15" +] = [ + { + date: "12.11.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyITMt8mLkdTLhBnL3UWLhx2cuAjL44iMuUTMuYTMz0yYpRWYy9GczhSI", + value: "!(sporadic-316.15.2.8.0.sla-e7.pa-7d.o-122)!", + result: { + word: "sporadic", + correct: 15, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "12.11.2025", + }, + }, + { + date: "12.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIjMx0ybwNnLjNTLh9mcucTOtMWak5iZj1iZulmLw4CMx4iMuUTMuYTMz0yYpRWYy9GczhSI", + value: "!(sporadic-316.15.2.10.0.inf-cf.dic-97.roa-3c.spo-122)!", + result: { + word: "sporadic", + correct: 15, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "12.11.2025", + }, + }, + { + date: "12.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyITMt8Gcz5CMh1ycpZnL2gTLhVmcuAjL04CNuQTMuYTMz0yYpRWYy9GczhSI", + value: "!(sporadic-316.14.4.4.0.rea-86.vis-a0.spo-122)!", + result: { + word: "sporadic", + correct: 14, + position: 4, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "12.11.2025", + }, + }, + { + date: "12.11.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyITMt8Gcz5CZi1yciFmLlFTLlJ3YuAjL34SMuQTMuYTMz0yYpRWYy9GczhSI", + value: "!(sporadic-316.14.1.7.0.cre-1e.abs-bd.spo-122)!", + result: { + word: "sporadic", + correct: 14, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "12.11.2025", + }, + }, + { + date: "12.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIjMx0ybwNnLzMmMtIXYw5SY30yYhJnL20yY4VmLw4CMx4CNugTMuYTMz0yYpRWYy9GczhSI", + value: "!(sporadic-316.18.4.10.0.exc-6.rac-7a.par-2c3.spo-122)!", + result: { + word: "sporadic", + correct: 18, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "12.11.2025", + }, + }, + { + date: "12.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIjMx0ybw5iM10SYo5SO00CZhNnLh1SdlZmLw4CMx4iMugTMuYTMz0yYpRWYy9GczhSI", + value: "!(sporadic-316.18.2.10.0.feu-a.sad-49.ha-52.po-122)!", + result: { + word: "sporadic", + correct: 18, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "12.11.2025", + }, + }, + { + date: "12.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIjMx0ybwNnLwETLp1WYuATLhlmL4kTLw92YuAjL44iNuUTMuYTMz0yYpRWYy9GczhSI", + value: "!(sporadic-316.15.6.8.0.cop-98.ia-0.ami-10.spo-122)!", + result: { + word: "sporadic", + correct: 15, + position: 6, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "12.11.2025", + }, + }, + { + date: "12.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMyETLvB3cuUzMtEmc35yYm1Cbv5CMx0ic0NnLm1ibhJnLyYTLtF2ZuAjL54CNuEjMuYTMz0yYpRWYy9GczhSI", + value: "!(sporadic-316.21.4.9.0.gam-62.ran-f.str-10.ol-fc.wra-35.spo-122)!", + result: { + word: "sporadic", + correct: 21, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "12.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/14-09-2025-diffle-diffleen-grywebowe-33-letters-in-5-words-large-green-circle-19" +] = [ + { + date: "14.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1ITL1JnZuITLnVncugTLydWYukTLh52ZuITYt8mcw5CMuETMuMjL5EjL3UjMtwWYnVncmhSI", + value: "!(frugal-257.19.3.11.0.pro-a2.gna-9.agr-8.rug-2.fru-25)!", + result: { + word: "frugal", + correct: 19, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "14.09.2025", + }, + }, + { + date: "14.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUjMtUncm5CMtIXdy5yMi1SdyJmLw4iNuAjL0EjL3UjMtwWYnVncmhSI", + value: "!(frugal-257.14.0.6.0.bru-b3.rur-0.fru-25)!", + result: { + word: "frugal", + correct: 14, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "14.09.2025", + }, + }, + { + date: "14.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNy0SdyZmLiJTL1xGcuY2Ny0CajNjLlVTLhJHZuYDOtEWZy5CMuETMuIjLzEjL3UjMtwWYnVncmhSI", + value: "!(frugal-257.13.2.11.0.rea-86.dra-5e.3ch-27f.plu-2b.fru-25)!", + result: { + word: "frugal", + correct: 13, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "14.09.2025", + }, + }, + { + date: "14.09.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNy0SdyZmLz0yZy9mLw0ybydmL5ITLiFmcuUWMtUmcj5iMuITMuEjL1EjL3UjMtwWYnVncmhSI", + value: "!(frugal-257.15.1.12.2.cre-1e.rab-29.gro-0.org-3.fru-25)!", + result: { + word: "frugal", + correct: 15, + position: 1, + incorrect: 12, + knownIncorrect: 2, + totalWords: 5, + totalLetters: 28, + date: "14.09.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUjMtUnLzYTMtEmcm5yMy0Cdv1mLw4SOuIjLxEjL3UjMtwWYnVncmhSI", + value: "!(frugal-257.11.2.9.0.mot-23.fra-163.u-25)!", + result: { + word: "frugal", + correct: 11, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + }, + }, + { + date: "14.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1ITL15yYl1SYyZmLkBTMtIXYo5yNl1SdyRnL3QWMtAHch5CMtIXdy5iNtMGel5CMugTMuQjLzIjL3UjMtwWYnVncmhSI", + value: + "!(frugal-257.23.4.18.0.exc-6.rur-0.app-1d7.tru-e7.har-10d.fra-ec.u-25)!", + result: { + word: "frugal", + correct: 23, + position: 4, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "14.09.2025", + }, + }, + { + date: "14.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUjMtUncm5CO50CcvNmLw4SOuAjLwEjL3UjMtwWYnVncmhSI", + value: "!(frugal-257.10.0.9.0.cop-98.fru-25)!", + result: { + word: "frugal", + correct: 10, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "14.09.2025", + }, + }, + { + date: "14.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNy0Sdy5iZ3ETL1xmZuEmMtQ3bk5iZhFTLph2YuATLnVncuIjNt0WYn5CMuETMuIjL0EjL3UjMtwWYnVncmhSI", + value: "!(frugal-257.14.2.11.0.gam-62.rug-0.chi-1af.dot-2a.flu-17f.ru-25)!", + result: { + word: "frugal", + correct: 14, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 27, + date: "14.09.2025", + }, + }, + { + date: "14.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1ITL1JnLh1SdlZmLw4SNuAjLwEjL3UjMtwWYnVncmhSI", + value: "!(frugal-257.10.0.5.0.feu-a.ru-25)!", + result: { + word: "frugal", + correct: 10, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "14.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/14-10-2025-diffle-diffleen-20-letters-in-3-words-large-green-circle-13-large-yel" +] = [ + { + date: "14.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNtwWao5SOtw2bw5SZx0SZyNmLw4SNuIjLzEjL3gjMtMXdvlmchxWaohSI", + value: "!(hilarious-287.13.2.5.0.cre-1e.pol-9.hil-5)!", + result: { + word: "hilarious", + correct: 13, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "14.10.2025", + }, + }, + { + date: "14.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNtwWao5COwgTLoN2MuMTOtIXY25iN40SYlJnLw4yNuEjLwIjL3gjMtMXdvlmchxWaohSI", + value: "!(hilarious-287.20.1.7.0.rea-86.var-93.3ch-808.hil-5)!", + result: { + word: "hilarious", + correct: 20, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "14.10.2025", + }, + }, + { + date: "14.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNtwWao5SNk1CbpNnL1MTLyVHauUWLs9WbuYGMz0SYyJmLkVjYt8mcw5SMuYTMuUjLxIjL3gjMtMXdvlmchxWaohSI", + value: + "!(hilarious-287.21.5.16.1.pro-b5d.bra-30f.mol-e.hur-35.sil-d5.hil-5)!", + result: { + word: "hilarious", + correct: 21, + position: 5, + incorrect: 16, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 42, + date: "14.10.2025", + }, + }, + { + date: "14.10.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNtwWao5yMy0Cdv1mLw4COuEjLyEjL3gjMtMXdvlmchxWaohSI", + value: "!(hilarious-287.12.1.8.0.mot-23.hil-5)!", + result: { + word: "hilarious", + correct: 12, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "14.10.2025", + }, + }, + { + date: "14.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUTLslGauIjZt8Gbm5iMh1ybyBnLw4SOuUjL1EjL3gjMtMXdvlmchxWaohSI", + value: "!(hilarious-287.15.5.9.0.pro-a2.flo-f2.hil-5)!", + result: { + word: "hilarious", + correct: 15, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "14.10.2025", + }, + }, + { + date: "14.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUTLs5CMtMXauQjMtU3buImNtkWYo5iZtkWYuUmYtU3bz5SO00CbptmLl1ic19mLl1SahJnLx0SahZnLhRzYt8mcw5CZ10ybvRmL5EWMtkGdz5iZl1ich1mLldTLhJnZuYTLjhXZuAjLwIjL1EjL5QjL3gjMtMXdvlmchxWaohSI", + value: + "!(hilarious-287.49.15.20.0.exc-6.fra-7e.mar-ef.sti-1a9.doo-5d.pro-c4a.vai-1.rai-e.our-e.kil-49.sou-be.ai-f.hai-6b.ou-24.is-0.l-5)!", + result: { + word: "hilarious", + correct: 49, + position: 15, + incorrect: 20, + knownIncorrect: 0, + totalWords: 16, + totalLetters: 84, + date: "14.10.2025", + }, + }, + { + date: "14.10.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK10Cbp5iNtwWdo5yY00SaodnLmFWLyFmZuI2Nx0icvBnLxYjMtIXYj5iYwITLyFmYuIjNt0WYn5CMuMTMuIjL4IjL3gjMtMXdvlmchxWaohSI", + value: + "!(hilarious-287.28.2.13.0.gam-62.bar-20b.car-261.por-17b.far-af.whi-4c.hul-6.il-5)!", + result: { + word: "hilarious", + correct: 28, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 43, + date: "14.10.2025", + }, + }, + { + date: "14.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK10CbphmLzkTLyFmduQDNy0CajNjL3MTMtQWYy5iMz0yc1FmLw4yNuMjL0IjL3gjMtMXdvlmchxWaohSI", + value: "!(hilarious-287.24.3.7.0.aus-32.rad-137.3ch-244.var-93.hil-5)!", + result: { + word: "hilarious", + correct: 24, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "14.10.2025", + }, + }, + { + date: "14.10.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNtwWao5CO50CcvNmLw4yNuQjLxEjL3gjMtMXdvlmchxWaohSI", + value: "!(hilarious-287.11.4.7.0.cop-98.hil-5)!", + result: { + word: "hilarious", + correct: 11, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "14.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/17-07-2025-diffle-diffleen-22-letters-in-4-words-large-green-circle-11-large-yel" +] = [ + { + date: "17.07.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZx4iN1ITLhJHduAzMtAXYy5CM40yZyFmLw4CMx4SMuETMugTOx0SZjFmc0hSI", + value: "!(trace-198.11.1.10.0.arg-80.rap-30.tra-256.1f)!", + result: { + word: "trace", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "17.07.2025", + }, + }, + { + date: "17.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYWMtEmcuUmMx0iclRnL2gTLhVmcuAjL24iMuMTMugTOx0SZjFmc0hSI", + value: "!(trace-198.13.2.6.0.rea-86.ter-12e.ra-1f)!", + result: { + word: "trace", + correct: 13, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "17.07.2025", + }, + }, + { + date: "17.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYWMtEmcuITYtMWY05SYj1SYsNmL1QTMtEGdz5SMy0SZoNmLw4CMx4yMuQTMugTOx0SZjFmc0hSI", + value: "!(trace-198.14.3.10.0.che-21.sta-145.cla-ca.tac-a2.ra-1f)!", + result: { + word: "trace", + correct: 14, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "17.07.2025", + }, + }, + { + date: "17.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmFTLhJHduImZtEmcj5yYtAXYy5iNl1ichJmLyYTLtF2ZuAjL14yMuUTMugTOx0SZjFmc0hSI", + value: "!(trace-198.15.3.5.0.gam-62.bar-e6.rap-c.cra-fb.tra-1f)!", + result: { + word: "trace", + correct: 15, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 23, + date: "17.07.2025", + }, + }, + { + date: "17.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmFjL0EWLhJHduIjYtMWYy5SMx0SY3RmLx4iMx4iMuUTMugTOx0SZjFmc0hSI", + value: "!(trace-198.15.2.12.1.dwa-11.rac-b2.tra-a4.1f)!", + result: { + word: "trace", + correct: 15, + position: 2, + incorrect: 12, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 29, + date: "17.07.2025", + }, + }, + { + date: "17.07.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYWMtEmc05SN30SYlJnLyEWLvJHcuAjL24CNuETMugTOx0SZjFmc0hSI", + value: "!(trace-198.11.4.6.0.pro-a2.rea-75.tra-1f)!", + result: { + word: "trace", + correct: 11, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "17.07.2025", + }, + }, + { + date: "17.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmFTLhJHdugTOtA3bj5CMugjLy4COugTOx0SZjFmc0hSI", + value: "!(trace-198.8.2.8.0.cop-98.tra-1f)!", + result: { + word: "trace", + correct: 8, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "17.07.2025", + }, + }, + { + date: "17.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZx4SOl1SYy5yM20ichRnLyMTLzVXYuAjL24yMuQTMugTOx0SZjFmc0hSI", + value: "!(trace-198.14.3.6.0.aus-32.tar-63.ra-e9.1f)!", + result: { + word: "trace", + correct: 14, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "17.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/19-10-2025-diffle-diffleen-grywebowe-26-letters-in-3-words-large-green-circle-20" +] = [ + { + date: "19.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKm5SZt0WZy5iMh1ybyBnLw4iNuAjLwIjLykjMtIXZk5Wah1WZyhSI", + value: "!(remainder-292.20.0.6.0.pro-a2.rem-e.f)!", + result: { + word: "remainder", + correct: 20, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "19.10.2025", + }, + }, + { + date: "19.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYmLhFTLtVmcuATNtIXam5SZx0SZyNmLw4CNuIjLzIjLykjMtIXZk5Wah1WZyhSI", + value: "!(remainder-292.23.2.4.0.cre-1e.fir-50.rem-1a.f)!", + result: { + word: "remainder", + correct: 23, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "19.10.2025", + }, + }, + { + date: "19.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKm5iYk5yNx0SbuATLn5iN40SYlJnLw4SNuEjL0MjLykjMtIXZk5Wah1WZyhSI", + value: "!(remainder-292.34.1.5.0.rea-86.g-0.m-17.db.f)!", + result: { + word: "remainder", + correct: 34, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "19.10.2025", + }, + }, + { + date: "19.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYWLtVmcuUDNtEWZt5yMz0SYvJmLw4SOuEjL4EjLykjMtIXZk5Wah1WZyhSI", + value: "!(remainder-292.18.1.9.0.boa-33.mea-45.rem-f)!", + result: { + word: "remainder", + correct: 18, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "19.10.2025", + }, + }, + { + date: "19.10.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYmLiRmLilTLtVmcuMjMtQ3bt5CMuATMuIjL1IjLykjMtIXZk5Wah1WZyhSI", + value: "!(remainder-292.25.2.10.0.mot-23.rem-9b.db.f)!", + result: { + word: "remainder", + correct: 25, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 37, + date: "19.10.2025", + }, + }, + { + date: "19.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKm1SblJnLlJWLhJHZuYWNtkWYt5SY20SY3NnL5QTLpFGcugTNtEWZt5iNtMGel5CMuETMuMjLxMjLykjMtIXZk5Wah1WZyhSI", + value: + "!(remainder-292.31.3.11.0.exc-6.mea-58.pai-49.swa-6a.mai-5f.dra-be.rem-f)!", + result: { + word: "remainder", + correct: 31, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "19.10.2025", + }, + }, + { + date: "19.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZt0WZy5yNuQTNuMTLpFmL30SYl1mLh1SdlZmLw4yNuUjL4IjLykjMtIXZk5Wah1WZyhSI", + value: "!(remainder-292.28.5.7.0.feu-a.mea-7.ai-3.54.7.rem-f)!", + result: { + word: "remainder", + correct: 28, + position: 5, + incorrect: 7, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "19.10.2025", + }, + }, + { + date: "19.10.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYWLtVmcuEGMx0icl1mLmNTLtJXYugTOtA3bj5CMuETMuMjLxIjLykjMtIXZk5Wah1WZyhSI", + value: "!(remainder-292.21.3.11.0.cop-98.arm-3f.mer-10a.rem-f)!", + result: { + word: "remainder", + correct: 21, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 35, + date: "19.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/20-07-2025-diffle-diffleen-grywebowe-z-czego-3-proby-to-chrzanienie-sie-z-1-lite" +] = [ + { + date: "20.07.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyETMuMDMx4yY0ETL5hmLhJWLzFmLwMWMtM3bw5CMugjLx4iNy4SMwITLzNWazlHawhSI", + value: "!(physics-201.26.1.8.0.pos-1c0.as-ba.hy-14c.103.112)!", + result: { + word: "physics", + correct: 26, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "20.07.2025", + }, + }, + { + date: "20.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMxETL5hmLwYWLjlGcuYDOtEWZy5CMuYjLx4yMx4SMwITLzNWazlHawhSI", + value: "!(physics-201.13.1.6.0.rea-86.pic-f0.hy-112)!", + result: { + word: "physics", + correct: 13, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "20.07.2025", + }, + }, + { + date: "20.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMxETL5hGcuYTLjlGauEjMtUGaj5CMucjLy4iMx4SMwITLzNWazlHawhSI", + value: "!(physics-201.12.2.7.0.che-21.hic-6.phy-112)!", + result: { + word: "physics", + correct: 12, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "20.07.2025", + }, + }, + { + date: "20.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyETMucTZtkHaw5iNtMWao5CMz0Cdv5mLyYTLtF2ZuAjLwEjLy4yNx4SMwITLzNWazlHawhSI", + value: "!(physics-201.17.2.10.0.gam-62.not-30.hic-6.phy-e7.112)!", + result: { + word: "physics", + correct: 17, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "20.07.2025", + }, + }, + { + date: "20.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMxETL5hGcuQmMtMWaucjMtk2dz5SZzITLhVXcuAjL0EjLw4yMx4SMwITLzNWazlHawhSI", + value: "!(physics-201.13.0.14.0.qua-23e.swi-27.ic-2d.phy-112)!", + result: { + word: "physics", + correct: 13, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "20.07.2025", + }, + }, + { + date: "20.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMxETL5hmLzITL5NHcugTOtA3bj5CMukjL04CNx4SMwITLzNWazlHawhSI", + value: "!(physics-201.14.4.9.0.cop-98.psy-23.hy-112)!", + result: { + word: "physics", + correct: 14, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "20.07.2025", + }, + }, + { + date: "20.07.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyETMtkHauYDNtMWauITYt8mcw5CMukjLw4yMx4SMwITLzNWazlHawhSI", + value: "!(physics-201.13.0.9.0.pro-a2.ic-46.hy-112)!", + result: { + word: "physics", + correct: 13, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "20.07.2025", + }, + }, + { + date: "20.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMxETL5hmLzITL5NHcuIzMtMXdh5CMucjLz4yMx4SMwITLzNWazlHawhSI", + value: "!(physics-201.13.3.7.0.aus-32.psy-23.hy-112)!", + result: { + word: "physics", + correct: 13, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "20.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/20-12-2025-diffle-diffleen-grywebowe-20-letters-in-3-words-large-green-circle-10" +] = [ + { + date: "20.12.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxcTL25CM50iclRmLxITLlh2YuAjL54SMuATMuQTNz0CbpZXZkhSI", + value: "!(devil-354.10.1.9.0.che-21.der-90.v-71)!", + result: { + word: "devil", + correct: 10, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "20.12.2025", + }, + }, + { + date: "20.12.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSM30idlRmL0ATMtg2Yz4yYl1iZuIGOt0WZk5iN40SYlJnLw4yMx4CMuQTMuQTNz0CbpZXZkhSI", + value: "!(devil-354.14.0.13.0.rea-86.dem-8b.f-ec.3ch-104.dev-71)!", + result: { + word: "devil", + correct: 14, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "20.12.2025", + }, + }, + { + date: "20.12.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEzNtYXZk5COx0Sa2VmLx0SalZnL3UWLhx2cuAjL54iMuQTMuQTNz0CbpZXZkhSI", + value: "!(devil-354.14.2.9.0.sla-e7.vei-1.evi-18.dev-71)!", + result: { + word: "devil", + correct: 14, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "20.12.2025", + }, + }, + { + date: "20.12.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSM30iduQWMx0CblRmLzAjMtg2Yz4iMtkXZs5yMy0Cdv1mLw4SNx4SMuITMuQTNz0CbpZXZkhSI", + value: "!(devil-354.12.1.15.0.mot-23.ley-2.3ch-203.del-11d.v-71)!", + result: { + word: "devil", + correct: 12, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "20.12.2025", + }, + }, + { + date: "20.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSM30iduMGMx0CbuEDNx0SblRmLw4CNx4iMuETMuQTNz0CbpZXZkhSI", + value: "!(devil-354.11.2.14.0.dem-141.l-10c.v-71)!", + result: { + word: "devil", + correct: 11, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "20.12.2025", + }, + }, + { + date: "20.12.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSM30idlRmLj1SalZmL5IWLuVGcuIWNtgGdl5iM20SbhdmLw4SMx4CMuMTMuQTNz0CbpZXZkhSI", + value: "!(devil-354.13.0.11.0.gam-62.eth-5b.pen-b9.fei-c.dev-71)!", + result: { + word: "devil", + correct: 13, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "20.12.2025", + }, + }, + { + date: "20.12.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxcTL2VGZuM2MtwWam5SO10SZvBnLlFTLlJ3YuAjLwEjLy4SOuQTNz0CbpZXZkhSI", + value: "!(devil-354.9.2.10.0.cre-1e.poe-59.fil-3c.dev-71)!", + result: { + word: "devil", + correct: 9, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "20.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/22-10-2025-diffle-diffleen-18-letters-in-2-words-large-green-circle-9-large-yell" +] = [ + { + date: "22.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZx0yYuFmL3UWLhx2cuAjL44SMukjL1kjMtI3boNmbhhSI", + value: "!(anchor-295.9.1.8.0.sla-e7.anc-1f)!", + result: { + word: "anchor", + correct: 9, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "22.10.2025", + }, + }, + { + date: "22.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZx0yYuFmLlVTMtMXak5SZx0SZyNmLw4yNuIjLwEjL1kjMtI3boNmbhhSI", + value: "!(anchor-295.10.2.7.0.cre-1e.dis-15e.anc-1f)!", + result: { + word: "anchor", + correct: 10, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "22.10.2025", + }, + }, + { + date: "22.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYWMtMmbh5SZxETLyh2YucTMtIXYu5iN40SYlJnLw4iNuUjL1EjL1kjMtI3boNmbhhSI", + value: "!(anchor-295.15.5.6.0.rea-86.nar-17.chr-11e.anc-1f)!", + result: { + word: "anchor", + correct: 15, + position: 5, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "22.10.2025", + }, + }, + { + date: "22.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmFTLj5WYuUDNt8Gaj5COx0yY1ZmLw4SNuAjLyEjL1kjMtI3boNmbhhSI", + value: "!(anchor-295.12.0.5.0.fuc-18.cho-45.anc-1f)!", + result: { + word: "anchor", + correct: 12, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "22.10.2025", + }, + }, + { + date: "22.10.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmFTLj5WYuUDNt8Gaj5yMy0Cdv1mLw4SOuIjLyEjL1kjMtI3boNmbhhSI", + value: "!(anchor-295.12.2.9.0.mot-23.cho-45.anc-1f)!", + result: { + word: "anchor", + correct: 12, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "22.10.2025", + }, + }, + { + date: "22.10.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZx0yYuFmL4kTLw92YuAjL44iMukjL1kjMtI3boNmbhhSI", + value: "!(anchor-295.9.2.8.0.cop-98.anc-1f)!", + result: { + word: "anchor", + correct: 9, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "22.10.2025", + }, + }, + { + date: "22.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYWMuQDOtMmLxMTLk5CN0ETLh5CMh1ybuFmLlRTMt4WYz5iMuMTMuAjL1IjL1kjMtI3boNmbhhSI", + value: "!(anchor-295.25.0.13.2.san-14e.ano-a0.a-144.d-31.c-84.1f)!", + result: { + word: "anchor", + correct: 25, + position: 0, + incorrect: 13, + knownIncorrect: 2, + totalWords: 6, + totalLetters: 38, + date: "22.10.2025", + }, + }, + { + date: "22.10.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYWMtMmbh5SN00ybukDOtUHaj5iM3ITLsFGcuQWMtYXYm5CN50iYhRnLlNTLh92cuIjNt0WYn5CMuQTMuIjL1IjL1kjMtI3boNmbhhSI", + value: + "!(anchor-295.25.2.14.0.gam-62.soa-3e.tab-94.fav-1d.pal-272.chu-89.o-45.anc-1f)!", + result: { + word: "anchor", + correct: 25, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 41, + date: "22.10.2025", + }, + }, + { + date: "22.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZx0yYu5SNiFTLjJXYuITMtQXYi5SYtUXZm5CMuATMuIjL0EjL1kjMtI3boNmbhhSI", + value: "!(anchor-295.14.2.10.0.feu-a.bat-12.arc-1b5.nc-1f)!", + result: { + word: "anchor", + correct: 14, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "22.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/23-10-2025-diffle-diffleen-grywebowe-22-letters-in-4-words-large-green-circle-10" +] = [ + { + date: "23.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITLmVGbuATN00CajNjL5ETLzVGbuYTLjhXZuAjLxEjLx4CMx4iN5ITL0ZWZshSI", + value: "!(left-296.10.1.11.0.exc-6.les-19.3ch-450.lef-2)!", + result: { + word: "left", + correct: 10, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "23.10.2025", + }, + }, + { + date: "23.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITLm5COz0SZlxmLwUDNtg2Yz4iY10iblxmLh1Se1dmLyEWLvJHcuAjL0EjLw4iNx4iN5ITL0ZWZshSI", + value: "!(left-296.16.0.14.0.pro-a2.guy-a.len-5b.3ch-450.lee-38.f-2)!", + result: { + word: "left", + correct: 16, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "23.10.2025", + }, + }, + { + date: "23.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKy0iZlxmL0cTL1xGcuYDOtEWZy5CMuATMuAjL54iN5ITL0ZWZshSI", + value: "!(left-296.9.0.10.0.rea-86.plu-74.lef-2)!", + result: { + word: "left", + correct: 9, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "23.10.2025", + }, + }, + { + date: "23.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKy0iZlxmL5QDNtg2Yz4iM5ITLyVGcuMWMtM2ch5SMugTMuEjL44iN5ITL0ZWZshSI", + value: "!(left-296.8.1.18.1.asc-1c.per-292.3ch-449.lef-2)!", + result: { + word: "left", + correct: 8, + position: 1, + incorrect: 18, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 27, + date: "23.10.2025", + }, + }, + { + date: "23.10.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITLmVGbugTOtA3bj5CMuATMuEjL24iN5ITL0ZWZshSI", + value: "!(left-296.6.1.10.0.cop-98.lef-2)!", + result: { + word: "left", + correct: 6, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "23.10.2025", + }, + }, + { + date: "23.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKy0iZlxmLh1SdlZmLw4iNuIjL14iN5ITL0ZWZshSI", + value: "!(left-296.5.2.6.0.feu-a.lef-2)!", + result: { + word: "left", + correct: 5, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "23.10.2025", + }, + }, + { + date: "23.10.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITLm5SZz0idlxmLxITLl9GcuYGOtMWZz5CO1ETLsVmYuQDMx0iblRmLyYTLtF2ZuAjLzEjLx4iNx4iN5ITL0ZWZshSI", + value: + "!(left-296.16.1.13.0.gam-62.den-104.bel-158.sec-8f.poe-21.lev-3e.f-2)!", + result: { + word: "left", + correct: 16, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 30, + date: "23.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/24-08-2025-diffle-diffleen-grywebowe-34-letters-in-6-words-large-green-circle-24" +] = [ + { + date: "24.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2ITLhJ3buUjNt4WYy5SMtInbl5SMh1SYyZmLzQWMtEmcj5iYy0SYyVmLx4SOuEjL0IjL2MjMtU2ZuFmcvhSI", + value: "!(orange-236.24.1.9.1.era-2b.cra-1d3.fra-a1.enr-1.ran-65.ora-26)!", + result: { + word: "orange", + correct: 24, + position: 1, + incorrect: 9, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 34, + date: "24.08.2025", + }, + }, + { + date: "24.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2ITLhJ3buATMtI3br5iN40SYlJnLw4SNuMjLzEjL2MjMtU2ZuFmcvhSI", + value: "!(orange-236.13.3.5.0.rea-86.kor-10.ora-26)!", + result: { + word: "orange", + correct: 13, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "24.08.2025", + }, + }, + { + date: "24.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYjMtEmcv5iYx0iclRmLwIWLyR3cuUjNt4WYy5iM20SbhdmLw4SNuIjLzIjL2MjMtU2ZuFmcvhSI", + value: "!(orange-236.23.2.5.0.gam-62.ran-65.str-b0.der-1b.ora-26)!", + result: { + word: "orange", + correct: 23, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "24.08.2025", + }, + }, + { + date: "24.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNy0SYy9mLj1yZhJnL20yY4VmLw4iNuIjLxEjL2MjMtU2ZuFmcvhSI", + value: "!(orange-236.11.2.6.0.exc-6.rag-c.ora-26)!", + result: { + word: "orange", + correct: 11, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "24.08.2025", + }, + }, + { + date: "24.08.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYjMtEmcv5CO50CcvNmLw4COuEjLwEjL2MjMtU2ZuFmcvhSI", + value: "!(orange-236.10.1.8.0.cop-98.ora-26)!", + result: { + word: "orange", + correct: 10, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "24.08.2025", + }, + }, + { + date: "24.08.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNy0SYy9mLx0icvZmLiRTLvRWYuITYt8mcw5CMuATMuMjL2EjL2MjMtU2ZuFmcvhSI", + value: "!(orange-236.16.3.10.0.pro-a2.ado-4b.for-1.ora-26)!", + result: { + word: "orange", + correct: 16, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "24.08.2025", + }, + }, + { + date: "24.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2ITLhJ3buIWMtIXZk5yYtcWYy5iMz0yc1FmLw4COuEjL3EjL2MjMtU2ZuFmcvhSI", + value: "!(orange-236.17.1.8.0.aus-32.rag-c.der-1b.ora-26)!", + result: { + word: "orange", + correct: 17, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "24.08.2025", + }, + }, + { + date: "24.08.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNy0SYy9mLxgTNtI3bm5iYtIXah5SYzETLhVmcuUWMtUmcj5CMuETMuQjL4EjL2MjMtU2ZuFmcvhSI", + value: "!(orange-236.18.4.11.0.cre-1e.rea-13a.air-b.for-581.ora-26)!", + result: { + word: "orange", + correct: 18, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "24.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/24-09-2025-diffle-diffleen-grywebowe-31-letters-in-6-words-15-2-14-0" +] = [ + { + date: "24.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxETL35CO00SbhRmLhhTMuQjNtg2Yz4iY00ibhNnL4kTLw92YuAjL0EjLy4SNx4yN2ITLudXYkhSI", + value: "!(dawn-267.15.2.14.0.cop-98.san-4b.3ch-64.18a.dam-48.w-11)!", + result: { + word: "dawn", + correct: 15, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "24.09.2025", + }, + }, + { + date: "24.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMx0ydh5yMt0Wdk5SY2ETLhxGcuYDOtEWZy5CMuITMuAjL54yN2ITLudXYkhSI", + value: "!(dawn-267.9.0.12.0.rea-86.pla-16a.dum-3.aw-11)!", + result: { + word: "dawn", + correct: 9, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "24.09.2025", + }, + }, + { + date: "24.09.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxETL3FGZuQ2NtIWYi5SOxcTLoN2MucDMx0SYsBnLlFTLlJ3YuAjLzEjLw4SMx4yN2ITLudXYkhSI", + value: "!(dawn-267.11.0.13.0.cre-1e.pla-107.3ch-719.bab-7d.daw-11)!", + result: { + word: "dawn", + correct: 11, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "24.09.2025", + }, + }, + { + date: "24.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETMtcXYk5yYtcXY55CMz0ydhxmLkZTNtIXYj5iMxITLuFWbuAjL1EjLw4CNx4yN2ITLudXYkhSI", + value: "!(dawn-267.14.0.15.0.man-212.car-56d.law-30.yaw-c.daw-11)!", + result: { + word: "dawn", + correct: 14, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "24.09.2025", + }, + }, + { + date: "24.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxETL3FGZuETMtcXYw5iN30ibhRnLygTLh1WYuYTLjhXZuAjL2EjLw4SMx4yN2ITLudXYkhSI", + value: "!(dawn-267.11.0.16.0.exc-6.ama-82.tan-76.paw-11.daw-11)!", + result: { + word: "dawn", + correct: 11, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "24.09.2025", + }, + }, + { + date: "24.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMx0ydhRmLzITLuFmYuADNtUXYs5SYk1ychBnLyYTLtF2ZuAjLyEjLx4CMx4yN2ITLudXYkhSI", + value: "!(dawn-267.10.1.12.0.gam-62.pas-da.lau-40.ban-23.daw-11)!", + result: { + word: "dawn", + correct: 10, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 23, + date: "24.09.2025", + }, + }, + { + date: "24.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETMtcnLmVTLu5yNtonL00ychRmLyEWLvJHcuAjL1EjLw4iMx4yN2ITLudXYkhSI", + value: "!(dawn-267.12.0.15.0.pro-a2.das-4.z-7.n-5f.w-11)!", + result: { + word: "dawn", + correct: 12, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "24.09.2025", + }, + }, + { + date: "24.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxETL3FGZukTO14iN4ETLoN2MuYWNt4mLkNTLyFGZuEWL1VmZuAjLyEjLw4SNx4yN2ITLudXYkhSI", + value: "!(dawn-267.15.0.12.0.feu-a.dar-3d.n-5f.3ch-186.599.daw-11)!", + result: { + word: "dawn", + correct: 15, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 27, + date: "24.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/24-10-2025-diffle-diffleen-25-letters-in-3-words-large-green-circle-14-large-yel" +] = [ + { + date: "24.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmVTLyVHcugTNtU3b05yNl1SYsNnLw4SOuIjL0EjL3kjMtQ3cpJXdwhSI", + value: "!(purist-297.14.2.9.0.sla-e7.tou-58.pur-5f)!", + result: { + word: "purist", + correct: 14, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "24.10.2025", + }, + }, + { + date: "24.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYWNtIXdw5yNl1SdyRnL5UTLzVncuUzMtQXY35SMuATMuMjLzEjL3kjMtQ3cpJXdwhSI", + value: "!(purist-297.13.3.10.1.wat-35.rus-59.tru-e7.pur-5f)!", + result: { + word: "purist", + correct: 13, + position: 3, + incorrect: 10, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 26, + date: "24.10.2025", + }, + }, + { + date: "24.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYWNtIXdw5SNkVTLoN2MuQzMtIXdq5iN40SYlJnLw4COuEjL1EjL3kjMtQ3cpJXdwhSI", + value: "!(purist-297.15.1.8.0.rea-86.jur-34.3ch-5d5.pur-5f)!", + result: { + word: "purist", + correct: 15, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "24.10.2025", + }, + }, + { + date: "24.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmVTLyVHcuIWMx0SdyRnLh1SdlZmLw4COuEjLxEjL3kjMtQ3cpJXdwhSI", + value: "!(purist-297.11.1.8.0.feu-a.tru-11b.pur-5f)!", + result: { + word: "purist", + correct: 11, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "24.10.2025", + }, + }, + { + date: "24.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmVTLyVHcugTNtU3b05iZz0ycpJnLlhTLyh2YuMmYtIXam5SOhFTLpR3cuQmZtMXYt5CMuATMuUjL2IjL3kjMtQ3cpJXdwhSI", + value: + "!(purist-297.26.5.10.0.mas-fd.sti-1a9.fir-bc.chr-8e.ris-3f.tou-58.pur-5f)!", + result: { + word: "purist", + correct: 26, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "24.10.2025", + }, + }, + { + date: "24.10.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZ10ic1BnLxQWLyB3cugTOtA3bj5CMuATMuEjL0EjL3kjMtQ3cpJXdwhSI", + value: "!(purist-297.14.1.10.0.cop-98.spr-d1.pur-5f)!", + result: { + word: "purist", + correct: 14, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "24.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/25-09-2025-diffle-diffleen-grywebowe-18-letters-in-4-words-large-green-circle-10" +] = [ + { + date: "25.09.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIWMx0SdyRnLmdjNtg2Yz4yMx0SavNnLlFTLlJ3YuAjL44CMuATMugjNy0Ca0Vnc0hSI", + value: "!(truth-268.10.0.8.0.cre-1e.soi-13.3ch-67f.tru-11b)!", + result: { + word: "truth", + correct: 10, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 18, + date: "25.09.2025", + }, + }, + { + date: "25.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiFTMtUnc05iZm1SdyNmLjJTLvh2ZuQTNtIWdy5yYy0Sb1NnLw4SNx4iMuMTMugjNy0Ca0Vnc0hSI", + value: "!(truth-268.13.2.15.0.sum-2c.rub-54.gho-2c.cru-ff.tru-11b)!", + result: { + word: "truth", + correct: 13, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "25.09.2025", + }, + }, + { + date: "25.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiFTMtUnc05iZ00ibvBnL1UTLzVncuYTLjhXZuAjLyEjLx4SOugjNy0Ca0Vnc0hSI", + value: "!(truth-268.9.1.12.0.exc-6.rus-55.pon-4f.tru-11b)!", + result: { + word: "truth", + correct: 9, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "25.09.2025", + }, + }, + { + date: "25.09.2025", + nick: "nxo", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=ESKjR2MtkmY65yYjRTLy92ZuQmM00icwNnLw4CMx4yMuMTMugjNy0Se6NmcvlmY6hSI", + value: "!(zbiorczy-268.13.3.10.0.spr-42d.gor-4cc.zbi-3dc)!", + result: { + word: "zbiorczy", + correct: 13, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "25.09.2025", + }, + }, + { + date: "25.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYxETL1JnL1QTL0VHduITNtQXdu5SO30SdvBnLh1SdlZmLw4yMx4SMuMTMugjNy0Ca0Vnc0hSI", + value: "!(truth-268.13.1.13.0.feu-a.pou-79.nut-52.tut-45.ru-11b)!", + result: { + word: "truth", + correct: 13, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "25.09.2025", + }, + }, + { + date: "25.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiFTMtUnc05CM10SdyZmLkRWL1J3YuAzNtU3by5iM20SbhdmLw4iMx4CMuQTMugjNy0Ca0Vnc0hSI", + value: "!(truth-268.14.0.12.0.gam-62.rou-70.cru-dd.fru-50.tru-11b)!", + result: { + word: "truth", + correct: 14, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "25.09.2025", + }, + }, + { + date: "25.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIWMx0SdyRnL3kTL1J3ZukTNtMXdy5iMh1ybyBnLw4yMx4CMuMTMugjNy0Ca0Vnc0hSI", + value: "!(truth-268.13.0.13.0.pro-a2.rus-59.gru-97.tru-11b)!", + result: { + word: "truth", + correct: 13, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "25.09.2025", + }, + }, + { + date: "25.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIWMx0SdyRnL4kTLw92YuAjLwEjLx4yNugjNy0Ca0Vnc0hSI", + value: "!(truth-268.7.1.10.0.cop-98.tru-11b)!", + result: { + word: "truth", + correct: 7, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "25.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/27-08-2025-diffle-diffleen-22-letters-in-4-words-large-green-circle-10-large-yel" +] = [ + { + date: "27.08.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZ20ibvhmL3QTLpJ3buAzNtU3by5SZx0SZyNmLw4CMx4iMuATMukzMy0icv52bohSI", + value: "!(honor-239.10.2.10.0.cre-1e.rou-70.ori-47.hon-6f)!", + result: { + word: "honor", + correct: 10, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "27.08.2025", + }, + }, + { + date: "27.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZ24SM50ibvhmL2gTLhVmcuAjL34SMuITMukzMy0icv52bohSI", + value: "!(honor-239.12.1.7.0.rea-86.hon-91.6f)!", + result: { + word: "honor", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "27.08.2025", + }, + }, + { + date: "27.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmZTLu9GauQTLu9maugTNtU3bw5iMy0iZpRmLw4CNx4SMuATMukzMy0icv52bohSI", + value: "!(honor-239.10.1.14.0.dif-22.pou-58.jon-4.hon-6f)!", + result: { + word: "honor", + correct: 10, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "27.08.2025", + }, + }, + { + date: "27.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZ20ibvhmLmJTLvh2duQTNx0yboNnL20yY4VmLw4iMx4CMuETMukzMy0icv52bohSI", + value: "!(honor-239.11.0.12.0.exc-6.sho-154.who-2f.hon-6f)!", + result: { + word: "honor", + correct: 11, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "27.08.2025", + }, + }, + { + date: "27.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZ20ibvhmLzEjNt42bj5SM20ibvRmLyYTLtF2ZuAjL24CMuQTMukzMy0icv52bohSI", + value: "!(honor-239.14.0.6.0.gam-62.don-61.con-613.hon-6f)!", + result: { + word: "honor", + correct: 14, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "27.08.2025", + }, + }, + { + date: "27.08.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYmNt42bo5CZ10ybvRmLyEWLvJHcuAjLxEjLx4SOukzMy0icv52bohSI", + value: "!(honor-239.9.1.11.0.pro-a2.doo-5d.hon-6f)!", + result: { + word: "honor", + correct: 9, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "27.08.2025", + }, + }, + { + date: "27.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZ20ibvhmLhJTNtg2Yz4iZk1icvdnLmhTMtI3bj5SYk1icvBnLh1SdlZmLw4CNx4SMuQTMukzMy0icv52bohSI", + value: "!(honor-239.14.1.14.0.feu-a.por-da.cor-18f.wor-df.3ch-52a.hon-6f)!", + result: { + word: "honor", + correct: 14, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 29, + date: "27.08.2025", + }, + }, + { + date: "27.08.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZ20ibuMTNtI3bo5CO50CcvNmLw4CMx4iMuATMukzMy0icv52bohSI", + value: "!(honor-239.10.2.10.0.cop-98.hor-53.n-6f)!", + result: { + word: "honor", + correct: 10, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "27.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/27-09-2025-diffle-diffleen-grywebowe-36-letters-in-5-words-large-green-circle-19" +] = [ + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZ40yY4VmL4IWMtMWZk5CN0ETLuVmYuUTLhVGcuMjMtQ3bt5CMucTMuAjL5EjLwcjMtU2cpNGelhSI", + value: "!(excise-270.19.0.17.0.mot-23.pea-5.ben-144.dec-1b8.exc-8d)!", + result: { + word: "excise", + correct: 19, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + }, + }, + { + date: "27.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQGOtMGel5SOwETLyV2YuMzYz0ycpRmLw4COuMjLzEjLwcjMtU2cpNGelhSI", + value: "!(excise-270.13.3.8.0.dis-3c3.cer-109.exc-8d)!", + result: { + word: "excise", + correct: 13, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "27.09.2025", + }, + }, + { + date: "27.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkhjL5EmL20yY4VmLw4iNuAjL1EjLwcjMtU2cpNGelhSI", + value: "!(excise-270.15.0.6.0.exc-6.a9.8d)!", + result: { + word: "excise", + correct: 15, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "27.09.2025", + }, + }, + { + date: "27.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQGOtMGel5SOtMXa35CM2ITLoN2MuYTMtMXdk5CM1ITLvh2YuQWMx0CblJmLxETLzVGcuIjNt0WYn5CMugTMuAjL5EjLwcjMtU2cpNGelhSI", + value: + "!(excise-270.19.0.18.0.gam-62.pes-11.bel-11d.cho-250.dus-16.3ch-260.wis-9.exc-8d)!", + result: { + word: "excise", + correct: 19, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 37, + date: "27.09.2025", + }, + }, + { + date: "27.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZ40yY4VmL3ITLpN2cugTOtA3bj5CMuITMuIjLyEjLwcjMtU2cpNGelhSI", + value: "!(excise-270.12.2.12.0.cop-98.sci-27.exc-8d)!", + result: { + word: "excise", + correct: 12, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "27.09.2025", + }, + }, + { + date: "27.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQGOtMGel5CM10CZlNnL2UTLlh2YuITYt8mcw5CMuYTMuIjL1EjLwcjMtU2cpNGelhSI", + value: "!(excise-270.15.2.16.0.pro-a2.che-56.sed-50.exc-8d)!", + result: { + word: "excise", + correct: 15, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "27.09.2025", + }, + }, + { + date: "27.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZ40yY4VmL5YTLoNmMuMTLlVmaucTNy4yMk1CajNjL2UTL1x2ZukTOx0yYlRmL1MTLlh2YuYDOtEWZy5CMuAjMuAjLyIjLwcjMtU2cpNGelhSI", + value: + "!(excise-270.22.0.20.0.rea-86.che-35.dec-199.glu-56.3ch-d3.257.jee-3.2ch-69.exc-8d)!", + result: { + word: "excise", + correct: 22, + position: 0, + incorrect: 20, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 42, + date: "27.09.2025", + }, + }, + { + date: "27.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkhTLjhnLh1ybnVmLwI2MtIXZw5SYtUXZm5CMuITMuAjL1EjLwcjMtU2cpNGelhSI", + value: "!(excise-270.15.0.12.0.feu-a.per-3b0.ego-a.xc-8d)!", + result: { + word: "excise", + correct: 15, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "27.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/27-10-2025-diffle-diffleen-22-letters-in-3-words-large-green-circle-9-large-yell" +] = [ + { + date: "27.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMzQTLt92YuMzNt8Gbw5yNl1SYsNnLw4iMx4SMukjLwAzMtkHbw12bjhSI", + value: "!(comply-300.9.1.12.0.sla-e7.plo-73.com-430)!", + result: { + word: "comply", + correct: 9, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "27.10.2025", + }, + }, + { + date: "27.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwMDNt0mLhJTLs9mL3cTMt8Gaj5iN40SYlJnLw4SOuAjL0EjLwAzMtkHbw12bjhSI", + value: "!(comply-300.14.0.9.0.rea-86.cho-177.ol-2a.m-430)!", + result: { + word: "comply", + correct: 14, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "27.10.2025", + }, + }, + { + date: "27.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMzQTLt9mLlFTLlJ3YuAjLz4CMukjLwAzMtkHbw12bjhSI", + value: "!(comply-300.9.0.3.0.cre-1e.om-430)!", + result: { + word: "comply", + correct: 9, + position: 0, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 12, + date: "27.10.2025", + }, + }, + { + date: "27.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpAzM00SbuEGNz0CbvNmL20yY4VmLw4SOuAjLxEjLwAzMtkHbw12bjhSI", + value: "!(comply-300.11.0.9.0.exc-6.col-34a.m-430)!", + result: { + word: "comply", + correct: 11, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "27.10.2025", + }, + }, + { + date: "27.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwMDNuADZt0mL2gTLw92YucjYtIXdw5CMuITMuEjL2EjLwAzMtkHbw12bjhSI", + value: "!(comply-300.16.1.12.0.pur-b7.cop-86.m-d0.430)!", + result: { + word: "comply", + correct: 16, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "27.10.2025", + }, + }, + { + date: "27.10.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMzQTLt5CO50CcvNmLw4COuEjLwEjLwAzMtkHbw12bjhSI", + value: "!(comply-300.10.1.8.0.cop-98.m-430)!", + result: { + word: "comply", + correct: 10, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "27.10.2025", + }, + }, + { + date: "27.10.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwMDNuQmZugjMt02bj5COiRTLu9WbuIjNt0WYn5CMuETMuEjL0EjLwAzMtkHbw12bjhSI", + value: "!(comply-300.14.1.11.0.gam-62.mon-4b8.com-28.fd.430)!", + result: { + word: "comply", + correct: 14, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "27.10.2025", + }, + }, + { + date: "27.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpAzM04CO0ITLt92YugDOtw2bt5SYtUXZm5CMuETMuIjL1EjLwAzMtkHbw12bjhSI", + value: "!(comply-300.15.2.11.0.feu-a.mol-88.com-248.430)!", + result: { + word: "comply", + correct: 15, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "27.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/27-11-2025-diffle-diffleen-grywebowe-20-letters-in-3-words-large-green-circle-11" +] = [ + { + date: "27.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZtkWZm5CMx0Cd1xmL2gTLhVmcuAjL34iMuETMuEzMz0CdulWZmhSI", + value: "!(feint-331.11.2.7.0.rea-86.lut-10.fei-f)!", + result: { + word: "feint", + correct: 11, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "27.11.2025", + }, + }, + { + date: "27.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKm1SalZmLkZWLuVGZuEDNtkGbl5yMm1icoNmLw4yNx4SMuITMuEzMz0CdulWZmhSI", + value: "!(feint-331.12.1.17.0.chr-f3.eli-41.den-fd.fei-f)!", + result: { + word: "feint", + correct: 12, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "27.11.2025", + }, + }, + { + date: "27.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZtkmL4ITLtVmZucDZx0yclRmL20yY4VmLw4CNx4CMuUTMuEzMz0CdulWZmhSI", + value: "!(feint-331.15.0.14.0.exc-6.des-1d7.fem-28.i-f)!", + result: { + word: "feint", + correct: 15, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "27.11.2025", + }, + }, + { + date: "27.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKm1SalZmLjVTLuV2cuIGNt4Wdk5CO50CcvNmLw4SNx4yMuETMuEzMz0CdulWZmhSI", + value: "!(feint-331.11.3.15.0.cop-98.dun-4b.sen-5c.fei-f)!", + result: { + word: "feint", + correct: 11, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "27.11.2025", + }, + }, + { + date: "27.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZtkWZm5SMy0Sal5mLxYTLuVnYuIWNtgGdl5iM20SbhdmLw4CMx4iMuETMuEzMz0CdulWZmhSI", + value: "!(feint-331.11.2.10.0.gam-62.eth-5b.bun-61.nei-21.fei-f)!", + result: { + word: "feint", + correct: 11, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 23, + date: "27.11.2025", + }, + }, + { + date: "27.11.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYWLpVmZuUjZy0Cdl1mL3UWLhx2cuAjL54iMuETMuEzMz0CdulWZmhSI", + value: "!(feint-331.11.2.9.0.sla-e7.met-2f5.fei-f)!", + result: { + word: "feint", + correct: 11, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "27.11.2025", + }, + }, + { + date: "27.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYmLy0SauEWL1VmZuAjL34CMuITMuEzMz0CdulWZmhSI", + value: "!(feint-331.12.0.7.0.feu-a.i-2.f)!", + result: { + word: "feint", + correct: 12, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "27.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/28-09-2025-diffle-diffleen-grywebowe-22-letters-in-3-words-large-green-circle-12" +] = [ + { + date: "28.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZtU2c15yM10iblxmLyEWLvJHcuAjLwEjLw4iMx4SM3ITLzNXZsV2c1hSI", + value: "!(useless-271.12.0.10.0.pro-a2.len-53.use-d)!", + result: { + word: "useless", + correct: 12, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "28.09.2025", + }, + }, + { + date: "28.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQWLlNXduUTMtMXZs5SY10SZ1FnLhJTLsV2duYmNtwWZ25iZx0Sd4VmLyEmMtg2Yz4CO00Cb1ZmLxITLl52auYTLsVnauIWNtU3bs5SMy0SYyJmLi1SdlRmLzITLwVXZuQjL4IjL04COz4SM3ITLzNXZsV2c1hSI", + value: + "!(useless-271.38.4.28.4.eup-23.deu-b.bra-21.lou-5b.jul-6.kne-21.ful-48.3ch-2a2.exu-1f.vel-6f.wel-2a.que-5a.les-15.use-d)!", + result: { + word: "useless", + correct: 38, + position: 4, + incorrect: 28, + knownIncorrect: 4, + totalWords: 14, + totalLetters: 70, + date: "28.09.2025", + }, + }, + { + date: "28.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQWLlNXdukDM20CajNjL4MTLtVnZuUTMtMXZs5SOi1SZsJmL2gTLhVmcuAjLzEjLw4SOx4SM3ITLzNXZsV2c1hSI", + value: + "!(useless-271.19.0.13.0.rea-86.ble-b9.les-15.fum-38.3ch-609.use-d)!", + result: { + word: "useless", + correct: 19, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "28.09.2025", + }, + }, + { + date: "28.09.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQWLlNXduEWMtwWaz5yN00CbvBnLlFTLlJ3YuAjLwEjLw4yMx4SM3ITLzNXZsV2c1hSI", + value: "!(useless-271.13.0.10.0.cre-1e.pol-47.sil-1a.use-d)!", + result: { + word: "useless", + correct: 13, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "28.09.2025", + }, + }, + { + date: "28.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKk1SZzVnLjFTLkVnauUTMtMXZs5SOi1SZsJmL0ITLzVGbuETMtMXZw5iY10Ca0VmLyYTLtF2ZuAjL2EjLw4SNy4SM3ITLzNXZsV2c1hSI", + value: + "!(useless-271.25.0.16.0.gam-62.eth-5b.pes-11.les-24.ble-b9.les-15.jud-1c.use-d)!", + result: { + word: "useless", + correct: 25, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 41, + date: "28.09.2025", + }, + }, + { + date: "28.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKk1SZzVnL1MjMtg2Yz4SYy0CbldnLjJTNtg2Yz4CNx0SZzVnL20yc1BnLmJTLtVHZuMTLlVnZuYTLjhXZuAjL5EjLx4yMy4SM3ITLzNXZsV2c1hSI", + value: + "!(useless-271.23.1.19.0.exc-6.fue-3.dum-2f.pus-6.use-14.3ch-52c.wel-2a.3ch-235.use-d)!", + result: { + word: "useless", + correct: 23, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 43, + date: "28.09.2025", + }, + }, + { + date: "28.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZtU2c15yYtUGbz5iYj1SZsZmL4kTLw92YuAjL0EjLw4CNx4SM3ITLzNXZsV2c1hSI", + value: "!(useless-271.14.0.14.0.cop-98.fle-cb.sle-c.use-d)!", + result: { + word: "useless", + correct: 14, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "28.09.2025", + }, + }, + { + date: "28.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQWLlNXduUGO10CajNjLx0SdrVnLzkzNuUmY30CajNjL1UjMtMmbuQTLwBXduEWL1VmZuAjL4EjLx4CNy4SM3ITLzNXZsV2c1hSI", + value: + "!(useless-271.24.1.18.0.feu-a.upp-4.nc-255.3ch-7be.793.uku-1.3ch-58e.use-d)!", + result: { + word: "useless", + correct: 24, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 43, + date: "28.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/28-10-2025-diffle-diffleen-20-letters-in-2-words-large-green-circle-12-large-yel" +] = [ + { + date: "28.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMx0CZ1FmL3UWLhx2cuAjL34SMuITMuEDMz0SZj5WZpRWdhhSI", + value: "!(audience-301.12.1.7.0.sla-e7.aud-10)!", + result: { + word: "audience", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "28.10.2025", + }, + }, + { + date: "28.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpATMtQWdh5iMx0ibhRmLz0CbhBnLlFTLlJ3YuAjL24iMucTMuEDMz0SZj5WZpRWdhhSI", + value: "!(audience-301.17.2.6.0.cre-1e.pal-3.dan-12.aud-10)!", + result: { + word: "audience", + correct: 17, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "28.10.2025", + }, + }, + { + date: "28.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpATMtQWduQWOtAHcuIjMtkWbh5CZ10iYhNmL2gTLhVmcuAjL54iNukTMuEDMz0SZj5WZpRWdhhSI", + value: "!(audience-301.19.6.9.0.rea-86.cab-5d.ami-22.pp-9d.ud-10)!", + result: { + word: "audience", + correct: 19, + position: 6, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "28.10.2025", + }, + }, + { + date: "28.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwETLkVXYuITMt4WYk5iNtQWdu5yYy0SdhZmLlJTLuV3ZuYzMtUXYk5yYy0ib1NnL50Sb1BnL20yY4VmLw4iMx4COuEzMuEDMz0SZj5WZpRWdhhSI", + value: + "!(audience-301.31.8.12.0.exc-6.pum-9.sun-2c.dau-36.gun-2e.fau-2c.nud-6.dan-12.aud-10)!", + result: { + word: "audience", + correct: 31, + position: 8, + incorrect: 12, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 51, + date: "28.10.2025", + }, + }, + { + date: "28.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMx4CNtQWduU2MtUmbh5SYz0CajNjLhFTLvVmLk1CZkFmL0YjLxYzMtg2Yz4yNtoXYq5iYx0SZldnLxgzMtkmb15CM00SZw5yM00yci5SO00iZm5iZy0Sa25SNtEGZuYTMtk2Yh5SZi1ibhNmL4QTMtIXYt5SMyETLhR3cuMTMuMDNuATMuQjNuEDMz0SZj5WZpRWdhhSI", + value: + "!(audience-301.64.10.43.13.sta-121.mar-148.can-be.aci-16.da-5.vi-2f.ff-49.bs-43.pe-40.uni-381.wee-1b.jaz-7.3ch-361.64.add-d.eo-1a.3ch-3a.ane-3e.ud-4.10)!", + result: { + word: "audience", + correct: 64, + position: 10, + incorrect: 43, + knownIncorrect: 13, + totalWords: 20, + totalLetters: 117, + date: "28.10.2025", + }, + }, + { + date: "28.10.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpATMtQWduETL2RWYucTLuVmZuMWLl5WYuITNt4WYk5yNx0ychJmLyETMtwWYw5iM20SbhdmLw4iMx4yMuAzMuEDMz0SZj5WZpRWdhhSI", + value: + "!(audience-301.30.3.12.0.gam-62.pal-112.bas-17.dan-52.ane-c.fen-7.adv-1.ud-10)!", + result: { + word: "audience", + correct: 30, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 45, + date: "28.10.2025", + }, + }, + { + date: "28.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwEjL4MTLkVXYuEWL1VmZuAjL24iMuYTMuEDMz0SZj5WZpRWdhhSI", + value: "!(audience-301.16.2.6.0.feu-a.aud-38.10)!", + result: { + word: "audience", + correct: 16, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "28.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/31-10-2025-diffle-diffleen-25-letters-in-4-words-large-green-circle-17-large-yel" +] = [ + { + date: "31.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNm5iYl5CZzETLhxGcuUWMtUmcj5CMugjLw4yNx4CNwMTLn5Wa5FGbwhSI", + value: "!(playing-304.17.0.8.0.cre-1e.pla-13d.eb.f7)!", + result: { + word: "playing", + correct: 17, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "31.10.2025", + }, + }, + { + date: "31.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3YWLhxmL1ITLpFGcuYDOtEWZy5CMuYjLw4CNx4CNwMTLn5Wa5FGbwhSI", + value: "!(playing-304.14.0.6.0.rea-86.pai-25.la-f7)!", + result: { + word: "playing", + correct: 14, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "31.10.2025", + }, + }, + { + date: "31.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcjZuMDMy0SYsBnL5YTLwFGbuYTLpFmZuETMtAXds5yNx0yZpdnL1EWLilmLmdTLj9GbuAjL4EjL14SMz4CNwMTLn5Wa5FGbwhSI", + value: + "!(playing-304.31.5.18.0.loc-7f.ib-a5.wig-17.lup-11.fai-6.lap-69.pla-203.f7)!", + result: { + word: "playing", + correct: 31, + position: 5, + incorrect: 18, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 54, + date: "31.10.2025", + }, + }, + { + date: "31.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3YWLhxGcuQTMtkXYs5SNl1SYsZmLlNTLhx2cuYTLjhXZuAjLwEjLx4CNy4CNwMTLn5Wa5FGbwhSI", + value: "!(playing-304.24.1.10.0.exc-6.sla-3e.fla-e5.lay-14.pla-f7)!", + result: { + word: "playing", + correct: 24, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "31.10.2025", + }, + }, + { + date: "31.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNm5yMwITLhxGcucTZtEGbz5CMukjLw4COx4CNwMTLn5Wa5FGbwhSI", + value: "!(playing-304.18.0.9.0.sla-e7.pla-203.f7)!", + result: { + word: "playing", + correct: 18, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "31.10.2025", + }, + }, + { + date: "31.10.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3YWLhxGcuYGZz0CajNjL4gzMuEDZx0SYsBnLjFWLhxmZuEzNtEGbz5CM00yZhxmLyYTLtF2ZuEjLyEjLx4iMz4CNwMTLn5Wa5FGbwhSI", + value: + "!(playing-304.32.1.12.1.gam-62.lag-40.sla-71.fla-ac.pla-1d1.388.3ch-3df.pla-f7)!", + result: { + word: "playing", + correct: 32, + position: 1, + incorrect: 12, + knownIncorrect: 1, + totalWords: 8, + totalLetters: 45, + date: "31.10.2025", + }, + }, + { + date: "31.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNm1SYs5SN50Cbp5SY2EjLkRTLhxmLyETLpFGcuEWL1VmZuAjLxEjLz4yMy4CNwMTLn5Wa5FGbwhSI", + value: "!(playing-304.23.3.11.0.feu-a.pai-12.la-4d.16a.il-95.la-f7)!", + result: { + word: "playing", + correct: 23, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "31.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/a-wrecz-przeciwnie-slightly-smiling-face-06-11-2025-diffle-diffleen-grywebowe-24" +] = [ + { + date: "06.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQGM20ycpRmLkFTLsNXaukTLzl2duYDOtEWZy5CMucjLx4iNx4CMxMTLltWasNXakhSI", + value: "!(dislike-310.16.1.7.0.rea-86.wis-9.isl-1d.dis-60d)!", + result: { + word: "dislike", + correct: 16, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "06.11.2025", + }, + }, + { + date: "06.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkBjNtMXak5CMtIWa25CZy0yZuVmL3MzNuEDZ40ycpRmLyMTLzVHduYWLhVGbuUGOtMGel5SY0ITLtVGauIjLyIjL14COy4CMxMTLltWasNXakhSI", + value: + "!(dislike-310.28.5.22.2.hem-24a.exc-8e.lea-f.tus-32.dis-8d1.737.eng-2d.vib-0.dis-60d)!", + result: { + word: "dislike", + correct: 28, + position: 5, + incorrect: 22, + knownIncorrect: 2, + totalWords: 9, + totalLetters: 55, + date: "06.11.2025", + }, + }, + { + date: "06.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkBjNtMXak5CNy0ycptmLw0CbppmL3MWLlxmZuATLplHZuQWMtA3bo5yYm1SasNnLxQTLtlGbuYTLjhXZuAjLxIjLy4COy4CMxMTLltWasNXakhSI", + value: + "!(dislike-310.28.2.21.0.exc-6.lim-41.sli-fc.hop-1d.dyi-0.fle-c7.jil-0.kis-24.dis-60d)!", + result: { + word: "dislike", + correct: 28, + position: 2, + incorrect: 21, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 51, + date: "06.11.2025", + }, + }, + { + date: "06.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZwYTLzlGZukDOtwWauYjMtkGbz5yYy0CZptmLw0CbklmL10CbpdnL3MTLslmZukzNtM3bw5CMtwWau5iY10Ca0VmLyYTLtF2ZuAjL0EjL44iMz4CMxMTLltWasNXakhSI", + value: + "!(dislike-310.32.8.14.0.gam-62.eth-5b.nil-0.pos-79.fil-37.wil-5.idl-0.kid-2c.sli-26.il-89.dis-60d)!", + result: { + word: "dislike", + correct: 32, + position: 8, + incorrect: 14, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 54, + date: "06.11.2025", + }, + }, + { + date: "06.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQGM20ycuEmYtYXak5iNx0CZp1mL4kTLw92YuAjLzEjLy4yNx4CMxMTLltWasNXakhSI", + value: "!(dislike-310.17.2.13.0.cop-98.mid-16.div-ba.s-60d)!", + result: { + word: "dislike", + correct: 17, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "06.11.2025", + }, + }, + { + date: "06.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQGM20ycp5SNtM3bk5SYtUXZm5CMuUjLy4yMx4CMxMTLltWasNXakhSI", + value: "!(dislike-310.13.2.5.0.feu-a.dos-5.is-60d)!", + result: { + word: "dislike", + correct: 13, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "06.11.2025", + }, + }, + { + date: "06.11.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZwYTLzlGZuYjMtkGbz5COmNTLs9GcuUWMtUmcj5CMugjLx4SNx4CMxMTLltWasNXakhSI", + value: "!(dislike-310.15.1.8.0.cre-1e.pol-3f8.sli-26.dis-60d)!", + result: { + word: "dislike", + correct: 15, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "06.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/aj-literowka-24-11-2025-diffle-diffleen-34-letters-in-5-words-large-green-circle" +] = [ + { + date: "24.11.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM04yM20CcwFmLz0CZl1mLhhTLsFmducTZtEGbz5CMuQTMuIjL4EjL4IzMtwWYlBHchhSI", + value: "!(appeal-328.18.2.14.0.sla-e7.val-8a.med-3.app-63.43)!", + result: { + word: "appeal", + correct: 18, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "24.11.2025", + }, + }, + { + date: "24.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMDNtAHch5SO20SYl5iNx0SdsBnLxYTLhVmYuYDOtEWZy5CMuETMuAjL2EjL4IzMtwWYlBHchhSI", + value: "!(appeal-328.16.0.11.0.rea-86.bea-61.plu-16.ea-69.app-43)!", + result: { + word: "appeal", + correct: 16, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "24.11.2025", + }, + }, + { + date: "24.11.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM00CcwFmL5YTLhVGcuMDNtEWZz5iZ30SYlRmLkdTLhVmYuMjMtQ3bt5CMuUTMuAjL5EjL4IzMtwWYlBHchhSI", + value: "!(appeal-328.19.0.15.0.mot-23.bea-7d.dea-7f.sea-43.pea-69.app-43)!", + result: { + word: "appeal", + correct: 19, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "24.11.2025", + }, + }, + { + date: "24.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzQTLwBXYukjNuIWNtEWZw5SYhVTLoN2MuIWLiBXduQzMtcmbl5CMuMTMuAjLwIjL4IzMtwWYlBHchhSI", + value: "!(appeal-328.20.0.13.0.eng-34.upb-b.3ch-5aa.pea-5b.69.app-43)!", + result: { + word: "appeal", + correct: 20, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "24.11.2025", + }, + }, + { + date: "24.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzQTLwBXYukjNtEWZw5iZ30SYlRmLzITLhVWbuMWMtUGdz5iNtMGel5CMuATMuAjLyIjL4IzMtwWYlBHchhSI", + value: "!(appeal-328.22.0.10.0.exc-6.ste-1c.mea-23.dea-7f.pea-69.app-43)!", + result: { + word: "appeal", + correct: 22, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "24.11.2025", + }, + }, + { + date: "24.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMDNtAHch5iNx0SZwNnL5YTLhVGcuUTLhVmZugTOtA3bj5CMuETMuEjLwIjL4IzMtwWYlBHchhSI", + value: "!(appeal-328.20.1.11.0.cop-98.fea-5.pea-69.spe-16.app-43)!", + result: { + word: "appeal", + correct: 20, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "24.11.2025", + }, + }, + { + date: "24.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM00CcwFmL10SYl5iM30ychBnL0IWLuFmYuIjNt0WYn5CMuATMuEjL1EjL4IzMtwWYlBHchhSI", + value: "!(appeal-328.15.1.10.0.gam-62.ban-b4.pas-72.ea-5.app-43)!", + result: { + word: "appeal", + correct: 15, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "24.11.2025", + }, + }, + { + date: "24.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM00CcwFmL0IWNuUDZ34yYlFTLoN2MuUWZt4WZy5SYtUXZm5CMuQTMuAjL2EjL4IzMtwWYlBHchhSI", + value: "!(appeal-328.16.0.14.0.feu-a.ren-ee.3ch-1ec.7d5.5b4.app-43)!", + result: { + word: "appeal", + correct: 16, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "24.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-dzisiaj-wchodzi-17-09-2025-diffle-diffleen-18-letters-in-3-words-large-green" +] = [ + { + date: "17.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwYDNtEGauYjM10ichNmL2gTLhVmcuAjL14iMuETMuAjNy0CdyFGajhSI", + value: "!(chart-260.11.2.5.0.rea-86.car-526.ha-460)!", + result: { + word: "chart", + correct: 11, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "17.09.2025", + }, + }, + { + date: "17.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwYDNtEGauYjM10ich5iY2cTLu92YuAjL54SMuETMuAjNy0CdyFGajhSI", + value: "!(chart-260.11.1.9.0.con-76b.ar-526.ha-460)!", + result: { + word: "chart", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "17.09.2025", + }, + }, + { + date: "17.09.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpAjN00SYo5iNyUTLyFmLlFTLlJ3YuAjLz4SMuETMuAjNy0CdyFGajhSI", + value: "!(chart-260.11.1.3.0.cre-1e.ar-526.ha-460)!", + result: { + word: "chart", + correct: 11, + position: 1, + incorrect: 3, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 15, + date: "17.09.2025", + }, + }, + { + date: "17.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwYDNtEGaj5iNtMGel5CMuYjLw4COuAjNy0CdyFGajhSI", + value: "!(chart-260.8.0.6.0.exc-6.cha-460)!", + result: { + word: "chart", + correct: 8, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "17.09.2025", + }, + }, + { + date: "17.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwYDNtEGauYjM10ichNmLyEWLvJHcuAjL34iMuETMuAjNy0CdyFGajhSI", + value: "!(chart-260.11.2.7.0.pro-a2.car-526.ha-460)!", + result: { + word: "chart", + correct: 11, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "17.09.2025", + }, + }, + { + date: "17.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwYDNtEGauE2N10ichNmLyYTLtF2ZuAjL04CMuETMuAjNy0CdyFGajhSI", + value: "!(chart-260.11.0.4.0.gam-62.car-57a.ha-460)!", + result: { + word: "chart", + correct: 11, + position: 0, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 15, + date: "17.09.2025", + }, + }, + { + date: "17.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwYDNtEGauYjM10ichNmL4YWNtIXYw5iMk1ichRnLh1SdlZmLw4SMx4CMuYTMuAjNy0CdyFGajhSI", + value: "!(chart-260.16.0.11.0.feu-a.tar-d2.par-5f8.car-526.ha-460)!", + result: { + word: "chart", + correct: 16, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "17.09.2025", + }, + }, + { + date: "17.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwYDNtEGaugTOtA3bj5CMugjLy4COuAjNy0CdyFGajhSI", + value: "!(chart-260.8.2.8.0.cop-98.ha-460)!", + result: { + word: "chart", + correct: 8, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "17.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-mam-dobra-serie-trzeci-raz-z-rzedu-lt-20-liter-nastepny-pewnie-dla-rownowagi" +] = [ + { + date: "18.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwETLm92cucDOtM3bw5iN40SYlJnLw4yNuMjL34SM5ITL0Z2bzhSI", + value: "!(soft-291.7.3.7.0.rea-86.pos-87.sof-10)!", + result: { + word: "soft", + correct: 7, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "18.10.2025", + }, + }, + { + date: "18.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwETLm9mL5cjMt8GduQTNx0yboNnLyEWLvJHcuAjLyEjLw4iMx4SM5ITL0Z2bzhSI", + value: "!(soft-291.12.0.12.0.pro-a2.sho-154.to-279.of-10)!", + result: { + word: "soft", + correct: 12, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "18.10.2025", + }, + }, + { + date: "18.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpATMtY2buEGZx0yboNnLyMTLpV3ZuUWMtUmcj5CMuQTMuAjL24SM5ITL0Z2bzhSI", + value: "!(soft-291.6.0.14.0.cre-1e.gui-32.sho-1da.of-10)!", + result: { + word: "soft", + correct: 6, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "18.10.2025", + }, + }, + { + date: "18.10.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMx0iZvNnL4MTLv9mZugTOtA3bj5CMuITMuEjL44SM5ITL0Z2bzhSI", + value: "!(soft-291.8.1.12.0.cop-98.foo-38.sof-10)!", + result: { + word: "soft", + correct: 8, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "18.10.2025", + }, + }, + { + date: "18.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMx0iZv5CN1ETLvhmL3IWMt8Gdz5iNtMGel5CMuETMuEjL54SM5ITL0Z2bzhSI", + value: "!(soft-291.9.1.11.0.exc-6.sto-1b7.ho-154.of-10)!", + result: { + word: "soft", + correct: 9, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "18.10.2025", + }, + }, + { + date: "18.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMx0iZvNnLh1SdlZmLw4yNuEjL14SM5ITL0Z2bzhSI", + value: "!(soft-291.5.1.7.0.feu-a.sof-10)!", + result: { + word: "soft", + correct: 5, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "18.10.2025", + }, + }, + { + date: "18.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpATMtY2buQTNx0ybo5CNm1icwNnL0MTLphXZuAjLzEjLw4iMx4SM5ITL0Z2bzhSI", + value: "!(soft-291.12.0.13.0.exi-34.spr-f4.ho-154.of-10)!", + result: { + word: "soft", + correct: 12, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "18.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-mam-dzisiaj-dzien-21-08-2025-diffle-diffleen-grywebowe-16-letters-in-2-words" +] = [ + { + date: "21.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5QWL1F2YuYDOtEWZy5CMuMjLx4iMx4yMzITLu9Wa0VXYjhSI", + value: "!(caution-233.12.1.3.0.rea-86.cau-d9)!", + result: { + word: "caution", + correct: 12, + position: 1, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "21.08.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkDZtUXYj5yMy0Cdv1mLw4COuMjL44yMzITLu9Wa0VXYjhSI", + value: "!(caution-233.8.3.8.0.mot-23.cau-d9)!", + result: { + word: "caution", + correct: 8, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + }, + }, + { + date: "21.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5QWL15iM1UTLy5yY30idugjNy0CdhNmL4ETLj5WauAjLyEjL04iMy4yMzITLu9Wa0VXYjhSI", + value: "!(caution-233.22.4.12.0.inc-18.cat-268.v-7c.r-552.u-d9)!", + result: { + word: "caution", + correct: 22, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "21.08.2025", + }, + }, + { + date: "21.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkDZuMWYtUXYj5iNtMGel5CMucjLx4SNx4yMzITLu9Wa0VXYjhSI", + value: "!(caution-233.15.1.7.0.exc-6.cau-ac.d9)!", + result: { + word: "caution", + correct: 15, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "21.08.2025", + }, + }, + { + date: "21.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOk1SdugjYy0ibuQTMx0CdhNmLhRWLzFGcuIjNt0WYn5CMukjLx4yNx4yMzITLu9Wa0VXYjhSI", + value: "!(caution-233.17.1.9.0.gam-62.pas-da.cat-114.n-2b8.u-d9)!", + result: { + word: "caution", + correct: 17, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "21.08.2025", + }, + }, + { + date: "21.08.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOk1SduIGNy0CdhNmLlhTL0NWYuITYt8mcw5CMuYjLz4SMy4yMzITLu9Wa0VXYjhSI", + value: "!(caution-233.21.3.6.0.pro-a2.act-8e.cat-24b.u-d9)!", + result: { + word: "caution", + correct: 21, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "21.08.2025", + }, + }, + { + date: "21.08.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOk1Sdh5CO50CcvNmLw4COuMjL54yMzITLu9Wa0VXYjhSI", + value: "!(caution-233.9.3.8.0.cop-98.au-d9)!", + result: { + word: "caution", + correct: 9, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "21.08.2025", + }, + }, + { + date: "21.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5QWL1F2YucjNtQXdh5SYtUXZm5CMuYjLx4yMx4yMzITLu9Wa0VXYjhSI", + value: "!(caution-233.13.1.6.0.feu-a.aut-67.cau-d9)!", + result: { + word: "caution", + correct: 13, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "21.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-mialem-zacmenie-08-12-2025-diffle-diffleen-grywebowe-33-letters-in-6-words-l" +] = [ + { + date: "08.12.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2QjLw0SYldnLmRTLu9mL0YTLvhmLiNTL1xGcuYDOtEWZy5CMuITMuEjLwIjLyQzMt42bwFWZ3hSI", + value: "!(weapon-342.20.1.12.0.rea-86.plu-3b.ho-64.on-4f.wea-0.46)!", + result: { + word: "weapon", + correct: 20, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "08.12.2025", + }, + }, + { + date: "08.12.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2QTLhV2duUTNtEWZw5iN00SYlJmLy0Ca4FmLiFTLzFWZuUWMtUmcj5CMuUTMuEjL2EjLyQzMt42bwFWZ3hSI", + value: "!(weapon-342.16.1.15.0.cre-1e.eas-1b.axh-2.bea-46.pea-55.wea-46)!", + result: { + word: "weapon", + correct: 16, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "08.12.2025", + }, + }, + { + date: "08.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2QTLhV2duUDZy0yYlRmLw4SOuAjLwEjLyQzMt42bwFWZ3hSI", + value: "!(weapon-342.10.0.9.0.dec-2d5.wea-46)!", + result: { + word: "weapon", + correct: 10, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "08.12.2025", + }, + }, + { + date: "08.12.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiN00SYldnLiJTLu92ZuATLr9maugTLz9GcuATLhVWeuITOtEWZt5iNtMGel5CMuYTMuMjL3EjLyQzMt42bwFWZ3hSI", + value: + "!(weapon-342.17.3.16.0.exc-6.mea-92.yea-0.pos-8.jok-0.gon-2b.wea-46)!", + result: { + word: "weapon", + correct: 17, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 36, + date: "08.12.2025", + }, + }, + { + date: "08.12.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2QTLhV2duEWLuBXYugTOtA3bj5CMuATMuUjLwEjLyQzMt42bwFWZ3hSI", + value: "!(weapon-342.10.5.10.0.cop-98.apn-a.wea-46)!", + result: { + word: "weapon", + correct: 10, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "08.12.2025", + }, + }, + { + date: "08.12.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiN00SYldnLxkTLhVGbuIWYtEWZw5CMtQXZi5iM20SbhdmLw4yNuIjL0EjLyQzMt42bwFWZ3hSI", + value: "!(weapon-342.14.2.7.0.gam-62.bet-0.pea-ab.lea-91.wea-46)!", + result: { + word: "weapon", + correct: 14, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 23, + date: "08.12.2025", + }, + }, + { + date: "08.12.2025", + nick: "User", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2QTLhVmL1cTLhh2duAjL14SMugjLyQzMt42bwFWZ3hSI", + value: "!(weapon-342.8.1.5.0.wha-75.ea-46)!", + result: { + word: "weapon", + correct: 8, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "08.12.2025", + }, + }, + { + date: "08.12.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2QTLhV2duUjMtM2bw5CZ30SYlJmLyUTLuFGZucTZtEGbz5CMuQTMuIjL1EjLyQzMt42bwFWZ3hSI", + value: "!(weapon-342.15.2.14.0.sla-e7.dan-52.bea-7d.poc-25.wea-46)!", + result: { + word: "weapon", + correct: 15, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "08.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-proste-dzisiaj-04-09-2025-diffle-diffleen-grywebowe-24-letters-in-4-words-la" +] = [ + { + date: "04.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQGZugTOt4Waw5yYz0ibp1mL2gTLhVmcuAjLzEjLw4SMx4yN0ITLr5WawhSI", + value: "!(pink-247.11.0.13.0.rea-86.min-3c.pin-98.dd)!", + result: { + word: "pink", + correct: 11, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "04.09.2025", + }, + }, + { + date: "04.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkRWLulGcuczY10CajNjL5kTMt4Waw5iN2MTLy9mZuAjLwEjLw4iMx4yN0ITLr5WawhSI", + value: "!(pink-247.12.0.10.0.for-366.pin-199.3ch-5c7.pin-dd)!", + result: { + word: "pink", + correct: 12, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "04.09.2025", + }, + }, + { + date: "04.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZk1ibpBnL3MWLpB3cugTOtA3bj5CMuITMuAjL54yN0ITLr5WawhSI", + value: "!(pink-247.9.0.12.0.cop-98.spi-c7.pin-dd)!", + result: { + word: "pink", + correct: 9, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "04.09.2025", + }, + }, + { + date: "04.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZk1ibp5iMh1ybyBnLw4SOuAjL24yN0ITLr5WawhSI", + value: "!(pink-247.6.0.9.0.pro-a2.in-dd)!", + result: { + word: "pink", + correct: 6, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "04.09.2025", + }, + }, + { + date: "04.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQGZt4Waw5SO00SasJmLwMTL09mbuIjNt0WYn5CMuETMuAjL44yN0ITLr5WawhSI", + value: "!(pink-247.8.0.11.0.gam-62.not-30.bli-49.pin-dd)!", + result: { + word: "pink", + correct: 8, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 19, + date: "04.09.2025", + }, + }, + { + date: "04.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkRWLulGcuQWNt4Way5iZhFTLph2YukTO30CdulmLhJTLulmYuEWL1VmZuAjL1EjLw4CNx4yN0ITLr5WawhSI", + value: "!(pink-247.14.0.15.0.feu-a.bin-2a.int-799.chi-1af.rin-5d.pin-dd)!", + result: { + word: "pink", + correct: 14, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 29, + date: "04.09.2025", + }, + }, + { + date: "04.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZk1ibpBnL5QjNtMXat5iNtMGel5CMuITMuAjL24yN0ITLr5WawhSI", + value: "!(pink-247.6.0.12.0.exc-6.mis-649.pin-dd)!", + result: { + word: "pink", + correct: 6, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "04.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-przeczolgalo-25-10-2025-diffle-diffleen-47-letters-in-7-words-large-green-ci" +] = [ + { + date: "25.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUTOz0SY05SYtEGcz5CMm1CajJjL0ITLzFmYuIWMtE2auIWMtY2bucTZtEGbz5CMuUTMuEjLxMjL4kjMt4WYtNXZ0FGdzhSI", + value: + "!(statesman-298.31.1.15.0.sla-e7.of-1b.ka-1b.bas-24.2ch-f0.spa-a.ta-395)!", + result: { + word: "statesman", + correct: 31, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 47, + date: "25.10.2025", + }, + }, + { + date: "25.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUTOz4yM3MjLlFWLhR3cucDM24COwgTLoN2MukjYtUGdz5yYhZTLoN2MuYDOtEWZy5CMuMTMuMjLyMjL4kjMt4WYtNXZ0FGdzhSI", + value: + "!(statesman-298.32.3.13.0.rea-86.3ch-6ac.ste-b9.3ch-808.607.sta-ae.373.395)!", + result: { + word: "statesman", + correct: 32, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 48, + date: "25.10.2025", + }, + }, + { + date: "25.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSN5MTLhR3cucTYtQXYi5SYtEWbl5SZx0SZyNmLw4iNuEjL5EjL4kjMt4WYtNXZ0FGdzhSI", + value: "!(statesman-298.19.1.6.0.cre-1e.ema-a.bat-a7.sta-395)!", + result: { + word: "statesman", + correct: 19, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "25.10.2025", + }, + }, + { + date: "25.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1kzMtEGdz5SO5QTLoN2MuMWOtEGdz5SZtE2bm5iN0ETLhR3cuQjYtEWZw5iNtMGel5CMuQTMuMjL4IjL4kjMt4WYtNXZ0FGdzhSI", + value: + "!(statesman-298.28.3.14.0.exc-6.pea-b4.sta-146.foa-e.sta-9c.3ch-499.sta-395)!", + result: { + word: "statesman", + correct: 28, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "25.10.2025", + }, + }, + { + date: "25.10.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUTOz0SYuUzMtUGdz5iYy0CdzVmL1ITLlh2YuUWNtM3ch5iM20SbhdmLw4SOuUjL1IjL4kjMt4WYtNXZ0FGdzhSI", + value: + "!(statesman-298.25.5.9.0.gam-62.ass-5e.che-25.est-2b.ste-35.a-395)!", + result: { + word: "statesman", + correct: 25, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "25.10.2025", + }, + }, + { + date: "25.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1kzMtEGduMzYtQXYukTMtEGauYWNtEWZz5iZtQWZt5CMuATMuMjL0IjL4kjMt4WYtNXZ0FGdzhSI", + value: "!(statesman-298.24.3.10.0.med-f.sea-5f.ha-19.at-c3.ta-395)!", + result: { + word: "statesman", + correct: 24, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "25.10.2025", + }, + }, + { + date: "25.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSN5MTLhR3cuMTL0F2ZucTMtU2b05CZtMXZ35SOj1ibhBnLh1SdlZmLw4SOuMjLyIjL4kjMt4WYtNXZ0FGdzhSI", + value: "!(statesman-298.22.3.9.0.feu-a.pan-c9.wes-d.toe-17.gat-3.sta-395)!", + result: { + word: "statesman", + correct: 22, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "25.10.2025", + }, + }, + { + date: "25.10.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1kzMuUjM00SY0NnLjFTLuFGdugTOtA3bj5CMuITMuEjLwIjL4kjMt4WYtNXZ0FGdzhSI", + value: "!(statesman-298.20.1.12.0.cop-98.tan-1c.sta-425.395)!", + result: { + word: "statesman", + correct: 20, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "25.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-sie-wyglupilem-z-drugim-slowem-13-07-2025-diffle-diffleen-grywebowe-17-lette" +] = [ + { + date: "13.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYWLhVmbukzMtIXYl5iN40SYlJnLw4SNuMjL54CN5ETLyFWZuhSI", + value: "!(near-194.9.3.5.0.rea-86.ear-39.nea-f)!", + result: { + word: "near", + correct: 9, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "13.07.2025", + }, + }, + { + date: "13.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYWLhVmbugTOtA3bj5CMuATMuIjL14CN5ETLyFWZuhSI", + value: "!(near-194.5.2.10.0.cop-98.nea-f)!", + result: { + word: "near", + correct: 5, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "13.07.2025", + }, + }, + { + date: "13.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKm1SYl5mLw0yYlBnLh1SdlZmLw4SOuEjL44CN5ETLyFWZuhSI", + value: "!(near-194.8.1.9.0.feu-a.pec-0.nea-f)!", + result: { + word: "near", + correct: 8, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "13.07.2025", + }, + }, + { + date: "13.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZtEWZu5yNtUmbz5SZx0ibuFmLxITLlh2YuAjLxEjLx4iMx4CN5ETLyFWZuhSI", + value: "!(near-194.12.1.11.0.che-21.ann-1e.sne-7.nea-f)!", + result: { + word: "near", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "13.07.2025", + }, + }, + { + date: "13.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZtEWZu5CMtAXa35COx0SZyRmLkFTLvxmYuAjL2EjLw4CMx4CN5ETLyFWZuhSI", + value: "!(near-194.10.0.16.0.blo-1d.dre-18.wip-0.nea-f)!", + result: { + word: "near", + correct: 10, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "13.07.2025", + }, + }, + { + date: "13.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKm1SYl5mLhRWLhVGauYmYtEWZk5yYx0SZwNnLmlTLhVmYuQzYx0SZsVmLyYTLtF2ZuAjLyEjLx4SMy4CN5ETLyFWZuhSI", + value: + "!(near-194.21.1.12.0.gam-62.ele-1c4.bea-9f.spe-1c.dea-bf.hea-da.nea-f)!", + result: { + word: "near", + correct: 21, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 34, + date: "13.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/alez-irytujace-0-trafien-w-startowym-25-08-2025-diffle-diffleen-grywebowe-25-let" +] = [ + { + date: "25.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4QTLsVnZuEmMtwWdk5iY00Cb1JmLiJTL1xGcuYDOtEWZy5CMuUTMuEjL54yNzITLsxWdmhSI", + value: "!(full-237.9.1.15.0.rea-86.plu-2b.bul-4b.dul-2a.ful-48)!", + result: { + word: "full", + correct: 9, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "25.08.2025", + }, + }, + { + date: "25.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgDNtwWdm5yNtwWds5iNtwWdq5COz0SdhNmLkJWLyVGcuAjL0EjLw4SMx4yNzITLsxWdmhSI", + value: "!(full-237.11.0.14.0.per-bd.cau-38.jul-6.lul-7.ful-48)!", + result: { + word: "full", + correct: 11, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "25.08.2025", + }, + }, + { + date: "25.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4QTLsVnZuMzMtwWdw5SNy0Cb1dmLk1SdvxmLhVTLuVHauYTLjhXZuAjL2EjLy4CNx4yNzITLsxWdmhSI", + value: "!(full-237.14.2.16.0.exc-6.hun-5a.lou-d.gul-25.pul-33.ful-48)!", + result: { + word: "full", + correct: 14, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "25.08.2025", + }, + }, + { + date: "25.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4QTLsVnZuMzMtwWdw5iN00yY1xmLyITLu9mYuIjNt0WYn5CMuITMuEjL44yNzITLsxWdmhSI", + value: "!(full-237.8.1.12.0.gam-62.bon-22.luc-46.pul-33.ful-48)!", + result: { + word: "full", + correct: 8, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 21, + date: "25.08.2025", + }, + }, + { + date: "25.08.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4QTLsVnZuATLsVnbuYTLzVHbuITYt8mcw5CMuMTMuEjL54yNzITLsxWdmhSI", + value: "!(full-237.9.1.13.0.pro-a2.lus-6.nul-0.ful-48)!", + result: { + word: "full", + correct: 9, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "25.08.2025", + }, + }, + { + date: "25.08.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCO00Cb15yNzETL1xmZugTOtA3bj5CMuQTMuEjL34yNzITLsxWdmhSI", + value: "!(full-237.7.1.14.0.cop-98.flu-137.ul-48)!", + result: { + word: "full", + correct: 7, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "25.08.2025", + }, + }, + { + date: "25.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgDNtwWdm5CN4QTLoN2MuETL1h2YuIjZ00CajNjL0QTL19GcuIzMtMXdh5CMugTMuEjL54yNzITLsxWdmhSI", + value: "!(full-237.9.1.18.0.aus-32.pou-44.3ch-4f2.chu-1.3ch-484.ful-48)!", + result: { + word: "full", + correct: 9, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 28, + date: "25.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/angielskie-dosc-proste-08-08-2025-diffle-diffleen-grywebowe-26-letters-in-3-word" +] = [ + { + date: "08.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxETL15CNz0SZsNnL0AjMt02bo5CMuMTMuIjLxEjLwIjMtU2ZkVHbzhSI", + value: "!(sludge-220.11.2.13.0.hom-204.sle-34.u-11)!", + result: { + word: "sludge", + correct: 11, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "08.08.2025", + }, + }, + { + date: "08.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMx0Sds5SZx0iYlNnL2gTLhVmcuAjL54iMukjLwIjMtU2ZkVHbzhSI", + value: "!(sludge-220.9.2.9.0.rea-86.seb-1e.lu-11)!", + result: { + word: "sludge", + correct: 9, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "08.08.2025", + }, + }, + { + date: "08.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxETL1xmL3gTLyV3cuMWNt0WZn5SMy0SZoNmLw4COuIjLzEjLwIjMtU2ZkVHbzhSI", + value: "!(sludge-220.13.2.8.0.che-21.gem-5c.sur-87.lu-11)!", + result: { + word: "sludge", + correct: 13, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "08.08.2025", + }, + }, + { + date: "08.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMx0SdsNnLwETL1xmYuQWMtc2bs5iM20SbhdmLw4iNuEjL2EjLwIjMtU2ZkVHbzhSI", + value: "!(sludge-220.16.1.6.0.gam-62.log-1d.blu-10.slu-11)!", + result: { + word: "sludge", + correct: 16, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "08.08.2025", + }, + }, + { + date: "08.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxETL1x2cuEWL1VmZuAjL04yMugjLwIjMtU2ZkVHbzhSI", + value: "!(sludge-220.8.3.4.0.feu-a.slu-11)!", + result: { + word: "sludge", + correct: 8, + position: 3, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "08.08.2025", + }, + }, + { + date: "08.08.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETMtUHbz5CO50CcvNmLw4CMx4SMugjLwIjMtU2ZkVHbzhSI", + value: "!(sludge-220.8.1.10.0.cop-98.slu-11)!", + result: { + word: "sludge", + correct: 8, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "08.08.2025", + }, + }, + { + date: "08.08.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETMtUnLzETLlx2cuQWZtwWZw5SZx0SZyNmLw4SOuIjLzEjLwIjMtU2ZkVHbzhSI", + value: "!(sludge-220.13.2.9.0.cre-1e.pel-ed.sle-13.u-11)!", + result: { + word: "sludge", + correct: 13, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "08.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/angielskie-jest-natomiast-upokarzajaco-proste-29-07-2025-diffle-diffleen-grywebo" +] = [ + { + date: "29.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiM34yM50ybyRmLyYTLvV2ZuAjLyEjLx4CMx4CMxITLw9mckhSI", + value: "!(drop-210.10.1.12.0.geo-62.dro-93.72)!", + result: { + word: "drop", + correct: 10, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "29.07.2025", + }, + }, + { + date: "29.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiM30ybyRmLiVGNt8mcw5iN40SYlJnLw4COuEjL44CMxITLw9mckhSI", + value: "!(drop-210.8.1.8.0.rea-86.pro-4eb.dro-72)!", + result: { + word: "drop", + correct: 8, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "29.07.2025", + }, + }, + { + date: "29.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKycTLvJHZugTOtA3bj5CMuATMuEjL24CMxITLw9mckhSI", + value: "!(drop-210.6.1.10.0.cop-98.dro-72)!", + result: { + word: "drop", + correct: 6, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "29.07.2025", + }, + }, + { + date: "29.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiM30ybyRmLkZTL19GcuEjMtUGaj5CMuATMuIjL14CMxITLw9mckhSI", + value: "!(drop-210.5.2.10.0.che-21.pou-6d.dro-72)!", + result: { + word: "drop", + correct: 5, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "29.07.2025", + }, + }, + { + date: "29.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIzNt8mck5SM30SbvJnL0UTLy9GcuIzMtMXdh5CMuATMuIjL54CMxITLw9mckhSI", + value: "!(drop-210.9.2.10.0.aus-32.por-54.rom-71.dro-72)!", + result: { + word: "drop", + correct: 9, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "29.07.2025", + }, + }, + { + date: "29.07.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIzNt8mck5iMh1ybyBnLw4COuEjL24CMxITLw9mckhSI", + value: "!(drop-210.6.1.8.0.pro-a2.dro-72)!", + result: { + word: "drop", + correct: 6, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "29.07.2025", + }, + }, + { + date: "29.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKycTLvJHZuAzNtU3by5iM20SbhdmLw4iNuEjL34CMxITLw9mckhSI", + value: "!(drop-210.7.1.6.0.gam-62.rou-70.dro-72)!", + result: { + word: "drop", + correct: 7, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 14, + date: "29.07.2025", + }, + }, + { + date: "29.07.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKycjLwUWLv5iYz0SayRmLlJTL2RWYuAjLxEjLw4SMx4CMxITLw9mckhSI", + value: "!(drop-210.11.0.11.0.adv-2e.dri-3b.o-e0.72)!", + result: { + word: "drop", + correct: 11, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "29.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/angielskie-latwe-dla-odtrucia-po-polskim-02-08-2025-diffle-diffleen-grywebowe-19" +] = [ + { + date: "02.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSM04iZk1SbpxmLiRWMtI3Yz5CMukjLw4CMx4CNxITLl1WashSI", + value: "!(lime-214.10.0.9.0.scr-1db.lim-df.41)!", + result: { + word: "lime", + correct: 10, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "02.08.2025", + }, + }, + { + date: "02.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxQTLtlGbuImMtwWat5yNtUWam5iN40SYlJnLw4SOuQjL54CNxITLl1WashSI", + value: "!(lime-214.9.4.9.0.rea-86.fie-7.mil-2b.lim-41)!", + result: { + word: "lime", + correct: 9, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "02.08.2025", + }, + }, + { + date: "02.08.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEDNt0Was5yM5UTLzlWbuITYt8mcw5CMuATMuQjL44CNxITLl1WashSI", + value: "!(lime-214.8.4.10.0.pro-a2.mis-593.lim-41)!", + result: { + word: "lime", + correct: 8, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "02.08.2025", + }, + }, + { + date: "02.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEDNt0Was5iNt0Wat5iZt02bk5iM3ITL0VWbuIjNt0WYn5CMugjLw4yMx4CNxITLl1WashSI", + value: "!(lime-214.13.0.8.0.gam-62.met-272.dom-f.mim-6.lim-41)!", + result: { + word: "lime", + correct: 13, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 21, + date: "02.08.2025", + }, + }, + { + date: "02.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSM00SbpxmL4QTLsVnZuQ2NtI3bt5CN10ycpBnLxITLlh2YuAjL1EjLx4CMx4CNxITLl1WashSI", + value: "!(lime-214.10.1.15.0.che-21.pis-54.mor-7d.ful-48.lim-41)!", + result: { + word: "lime", + correct: 10, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "02.08.2025", + }, + }, + { + date: "02.08.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEDNt0Was5SY1QTLoN2MuQTL25COz0ibpxmL4kTLw92YuAjLyEjLx4SNx4CNxITLl1WashSI", + value: "!(lime-214.15.1.12.0.cop-98.lin-38.v-4.3ch-45a.lim-41)!", + result: { + word: "lime", + correct: 15, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "02.08.2025", + }, + }, + { + date: "02.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEDNt0Was5yN00CbvBnLy0ie5JmLw4SOuAjL44CNxITLl1WashSI", + value: "!(lime-214.8.0.9.0.byz-2.pol-47.lim-41)!", + result: { + word: "lime", + correct: 8, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "02.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/angielskie-tez-mnie-wyrolowalo-slightly-smiling-face-18-07-2025-diffle-diffleen-" +] = [ + { + date: "18.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMz0SbvRmLmVWLoNmMuMTMtM2bk5iYx0SavNmL2gTLhVmcuAjL14CNuIjMukTOx0SZsl2Yp12bkhSI", + value: "!(domicile-199.22.4.5.0.rea-86.coi-1b.doc-13.2ch-ef.dom-31)!", + result: { + word: "domicile", + correct: 22, + position: 4, + incorrect: 5, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "18.07.2025", + }, + }, + { + date: "18.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEzMt02bk5CN0gTLoN2MuATMtwWZ35yNldTLoN2MuYzMtMWat5iMlNjL0cTMtg2Yz4SNtw2by5yM00SZsZmLm1SbvRmL1UWLvB3cuETMtMWat5SMy0SZoNmLw4CMy4SNuQzMukTOx0SZsl2Yp12bkhSI", + value: + "!(domicile-199.34.5.20.0.che-21.mic-11.spo-e5.dom-f.fle-43.rol-5.3ch-174.3e2.mic-36.3ch-7e7.wel-10.3ch-844.dom-31)!", + result: { + word: "domicile", + correct: 34, + position: 5, + incorrect: 20, + knownIncorrect: 0, + totalWords: 13, + totalLetters: 59, + date: "18.07.2025", + }, + }, + { + date: "18.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMz0SbuMTMtMmL10SdvRmL50ybodnLw4iMx4SMuEjMukTOx0SZsl2Yp12bkhSI", + value: "!(domicile-199.21.1.12.0.who-9.dou-5.c-13.m-31)!", + result: { + word: "domicile", + correct: 21, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "18.07.2025", + }, + }, + { + date: "18.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxMTLt9GZuIzYt02bo5yN50ibv1mLyYTLtF2ZuAjL24iMugTMukTOx0SZsl2Yp12bkhSI", + value: "!(domicile-199.18.2.6.0.gam-62.mon-97.hom-c2.dom-31)!", + result: { + word: "domicile", + correct: 18, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "18.07.2025", + }, + }, + { + date: "18.07.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEzMt02bk5iMj1SbvhmLyEWLvJHcuAjL24yMugTMukTOx0SZsl2Yp12bkhSI", + value: "!(domicile-199.18.3.6.0.pro-a2.hom-c2.dom-31)!", + result: { + word: "domicile", + correct: 18, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "18.07.2025", + }, + }, + { + date: "18.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxMjLm1SbvRmL30ycvBnLykTL0FmbuAjL34CMuUTMukTOx0SZsl2Yp12bkhSI", + value: "!(domicile-199.15.0.7.0.nat-92.pos-7.dom-f.31)!", + result: { + word: "domicile", + correct: 15, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "18.07.2025", + }, + }, + { + date: "19.07.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM0EjLkNTMtIXZj5iMy0SbvBnLw4iNuEjLwIjLwAjMtkHbulWY0JXZjhSI", + value: "!(certainly-200.20.1.6.0.pom-22.cer-13d.140)!", + result: { + word: "certainly", + correct: 20, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "19.07.2025", + }, + }, + { + date: "18.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMz0SbvRmL4kTLw92YuAjL44SMuITMukTOx0SZsl2Yp12bkhSI", + value: "!(domicile-199.12.1.8.0.cop-98.dom-31)!", + result: { + word: "domicile", + correct: 12, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "18.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/banalne-06-12-2025-diffle-diffleen-grywebowe-21-letters-in-3-words-15-2-white-ci" +] = [ + { + date: "06.12.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxQTLlBnL2UTLhJ3buYDOtEWZy5CMuQjLy4SNx4CM0MTLlRXYyVGcvhSI", + value: "!(operate-340.15.2.4.0.rea-86.ora-56.pe-41)!", + result: { + word: "operate", + correct: 15, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "06.12.2025", + }, + }, + { + date: "06.12.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSM00SZw9mLzETMtEmcw5yYyUTLhJHduUGO00ichBnL3kTMtEWZy5iNtMGel5CMukjL14SMy4CM0MTLlRXYyVGcvhSI", + value: + "!(operate-340.21.5.9.0.exc-6.rea-197.par-48e.tra-52c.pra-113.ope-41)!", + result: { + word: "operate", + correct: 21, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "06.12.2025", + }, + }, + { + date: "06.12.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxQTLlBnLmVWLlZnLw0yc59mLzITL09WbuAjLyEjLy4SOx4CM0MTLlRXYyVGcvhSI", + value: "!(operate-340.19.2.12.0.mot-23.oys-0.ve-ef.pe-41)!", + result: { + word: "operate", + correct: 19, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "06.12.2025", + }, + }, + { + date: "06.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxQjL4UTLlB3buYzYtQXZw5CM0ETLtVGZuAjLwEjLy4COx4CM0MTLlRXYyVGcvhSI", + value: "!(operate-340.18.2.10.0.dem-140.pet-c6.ope-58.41)!", + result: { + word: "operate", + correct: 18, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "06.12.2025", + }, + }, + { + date: "06.12.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSM00SZw5iY20ybk5iN0QTL0V3buImYt8Gbm5yYx0iciFmLlFTLlJ3YuAjLyEjLy4SNy4CM0MTLlRXYyVGcvhSI", + value: "!(operate-340.25.2.12.0.cre-1e.abr-1c.flo-bb.out-446.do-6b.pe-41)!", + result: { + word: "operate", + correct: 25, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "06.12.2025", + }, + }, + { + date: "06.12.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEDNuEGNtUGcv5yM5QTLyVGcuIjNt0WYn5CMuYjLx4SOx4CM0MTLlRXYyVGcvhSI", + value: "!(operate-340.19.1.6.0.gam-62.per-493.ope-4a.41)!", + result: { + word: "operate", + correct: 19, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "06.12.2025", + }, + }, + { + date: "06.12.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxQTLlB3bugTOtA3bj5CMucjLx4iMx4CM0MTLlRXYyVGcvhSI", + value: "!(operate-340.12.1.7.0.cop-98.ope-41)!", + result: { + word: "operate", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "06.12.2025", + }, + }, + { + date: "06.12.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSM00SZw9mLiRWNtg2Yz4iZz0SZyNmL3UWLhx2cuAjLwEjLz4SNx4CM0MTLlRXYyVGcvhSI", + value: "!(operate-340.15.3.10.0.sla-e7.cre-3f.3ch-5db.ope-41)!", + result: { + word: "operate", + correct: 15, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "06.12.2025", + }, + }, + { + date: "06.12.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSM04CO14iYy0SZw9mLkRTLwBXYuATLjVGcuEWL1VmZuAjLzEjLx4iNy4CM0MTLlRXYyVGcvhSI", + value: "!(operate-340.26.1.13.0.feu-a.pec-0.app-4d.ope-2b.58.41)!", + result: { + word: "operate", + correct: 26, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "06.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/banalne-jak-polskie-13-11-2025-diffle-diffleen-grywebowe-26-letters-in-4-words-l" +] = [ + { + date: "13.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgTLj5iYtwWdt5SO30Sb1hmLzITLt9GcuAjL0EjLy4CMx4yNxMTLoNWdthSI", + value: "!(much-317.10.2.14.0.pom-23.hum-79.mul-b.c-8)!", + result: { + word: "much", + correct: 10, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "13.11.2025", + }, + }, + { + date: "13.11.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOtMWdt5SZx0SZyNmLw4CNuEjL14yNxMTLoNWdthSI", + value: "!(much-317.5.1.4.0.cre-1e.muc-8)!", + result: { + word: "much", + correct: 5, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 10, + date: "13.11.2025", + }, + }, + { + date: "13.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK40yY11mLhRTLjVHbuYDOtEWZy5CMuETMuAjL34yNxMTLoNWdthSI", + value: "!(much-317.7.0.11.0.rea-86.luc-4a.muc-8)!", + result: { + word: "much", + correct: 7, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "13.11.2025", + }, + }, + { + date: "13.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgTLjVXbuEDZx0SYoNmLw4yNuEjL24yNxMTLoNWdthSI", + value: "!(much-317.6.1.7.0.cha-1d1.muc-8)!", + result: { + word: "much", + correct: 6, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "13.11.2025", + }, + }, + { + date: "13.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgTLjVXbukDOtUHaugTOtA3bj5CMuMTMuEjL44yNxMTLoNWdthSI", + value: "!(much-317.8.1.13.0.cop-98.hu-89.muc-8)!", + result: { + word: "much", + correct: 8, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "13.11.2025", + }, + }, + { + date: "13.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgTLj5iN40yc15COiRTLu9WbuIjNt0WYn5CMugjLw4CMx4yNxMTLoNWdthSI", + value: "!(much-317.10.0.8.0.gam-62.mon-4b8.us-86.c-8)!", + result: { + word: "much", + correct: 10, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 18, + date: "13.11.2025", + }, + }, + { + date: "13.11.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgTLjVXbucTZtEGbz5CMuATMuAjL24yNxMTLoNWdthSI", + value: "!(much-317.6.0.10.0.sla-e7.muc-8)!", + result: { + word: "much", + correct: 6, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "13.11.2025", + }, + }, + { + date: "13.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOtMmLy0ib11mLh1SdlZmLw4COuEjL54yNxMTLoNWdthSI", + value: "!(much-317.9.1.8.0.feu-a.mun-2.c-8)!", + result: { + word: "much", + correct: 9, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "13.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/bardzo-ladne-duzy-kontrast-do-polskiego-19-08-2025-diffle-diffleen-grywebowe-27-" +] = [ + { + date: "19.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcTNtIXZz5CZ20SdsJmLyIWL2VmcugzYtUmc05CMuITMuIjLzEjLxMjMtUmblJXZzhSI", + value: "!(serene-231.13.2.12.0.tre-c8.rev-b2.blu-6d.ser-57)!", + result: { + word: "serene", + correct: 13, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "19.08.2025", + }, + }, + { + date: "19.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyN10icl5yNz0ic15yMtIXez5iN40SYlJnLw4yNuEjL2EjLxMjMtUmblJXZzhSI", + value: "!(serene-231.16.1.7.0.rea-86.syr-3.ur-37.er-57)!", + result: { + word: "serene", + correct: 16, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "19.08.2025", + }, + }, + { + date: "19.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3UTLyV2cuADMx4iZ40CajJjL4ETLyVmaucTNy0CajNjL5ATMtQXZw5SOtQ2bt5CM04SY30iclNnL4MWMtIXZ25iNtMGel5CMuEjMuEjL3IjLxMjMtUmblJXZzhSI", + value: + "!(serene-231.27.1.21.0.exc-6.ver-1c8.ser-7a.40.mod-9.pet-109.3ch-257.jer-18.2ch-8f.100.ser-57)!", + result: { + word: "serene", + correct: 27, + position: 1, + incorrect: 21, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 49, + date: "19.08.2025", + }, + }, + { + date: "19.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyN10icl5yY20SZoNnL4ATMtMXZy5SYtUXZm5CMuATMuIjLzEjLxMjMtUmblJXZzhSI", + value: "!(serene-231.13.2.10.0.feu-a.res-108.she-6c.er-57)!", + result: { + word: "serene", + correct: 13, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "19.08.2025", + }, + }, + { + date: "19.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcTNtIXZz5CO0gTLoN2MugTYtUmcm5iYmdTLoN2MuUWMy0iclNnL30Cb1hmLlVWLuVGZuE2Y10iclBnL0ITLvJXZuIjNt0WYn5CMuAjMuMjL0IjLxMjMtUmblJXZzhSI", + value: + "!(serene-231.24.3.20.0.gam-62.ero-24.per-5ca.den-ee.hul-7.ser-21e.3ch-7fb.fre-a8.3ch-848.ser-57)!", + result: { + word: "serene", + correct: 24, + position: 3, + incorrect: 20, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 47, + date: "19.08.2025", + }, + }, + { + date: "19.08.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyN14CM04SYxITLyVmL3MTLyV3cugTOtA3bj5CMuMTMuAjL5EjLxMjMtUmblJXZzhSI", + value: "!(serene-231.19.0.13.0.cop-98.sur-37.er-21a.40.57)!", + result: { + word: "serene", + correct: 19, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "19.08.2025", + }, + }, + { + date: "19.08.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyN10icl5yNz0ic1NnLxkTLlJHZuITYt8mcw5CMuITMuEjLzEjLxMjMtUmblJXZzhSI", + value: "!(serene-231.13.1.12.0.pro-a2.dre-91.sur-37.er-57)!", + result: { + word: "serene", + correct: 13, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "19.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/bardzo-proste-ale-raczej-nielatwe-27-06-2025-diffle-diffleen-grywebowe-25-letter" +] = [ + { + date: "27.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0ETLlVGZuIzMt0WZm5yNi1iYtVmLiVTLtV3cuEjLyEjLz4CMx4CO3ETLtVWZkhSI", + value: "!(deem-178.10.3.12.1.sum-5b.emb-b7.fem-32.dee-14)!", + result: { + word: "deem", + correct: 10, + position: 3, + incorrect: 12, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 25, + date: "27.06.2025", + }, + }, + { + date: "27.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTMtUWZk5yMhJjLyQ2MuADM00CajNjL4ITLtVnZuAjNx0CblhmL2gTLhVmcuAjL3EjLx4iMx4CO3ETLtVWZkhSI", + value: + "!(deem-178.12.1.17.0.rea-86.hel-160.fum-28.3ch-400.3d2.2a3.dee-14)!", + result: { + word: "deem", + correct: 12, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 30, + date: "27.06.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTMtUWZk5SNtUGZl5yM00SblNnLzITL09WbuAjLyEjLz4SMx4CO3ETLtVWZkhSI", + value: "!(deem-178.11.3.12.0.mot-23.sem-43.ede-5.dee-14)!", + result: { + word: "deem", + correct: 11, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + }, + }, + { + date: "27.06.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNx4CNy0SZlRmLwETLlVGbuUWMy0iclNnLxITLlh2YuAjLzEjLx4iMx4CO3ETLtVWZkhSI", + value: "!(deem-178.12.1.13.0.che-21.ser-21e.lee-10.dee-24.14)!", + result: { + word: "deem", + correct: 12, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "27.06.2025", + }, + }, + { + date: "27.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTMtUWZk5SYhRjLyEjMuIWY00CajNjL4kTLw92YuAjL1EjLx4CMx4CO3ETLtVWZkhSI", + value: "!(deem-178.10.1.15.0.cop-98.3ch-4ab.212.4aa.dee-14)!", + result: { + word: "deem", + correct: 10, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "27.06.2025", + }, + }, + { + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNx0SZuQTMx0yYlRmLwADNtg2Yz4iNk1SZsJmL20yc1BnLiJWMt0WZk5yNz0SatVmLyYTLtF2ZuAjL3EjLx4iNx4CO3ETLtVWZkhSI", + value: + "!(deem-178.16.1.17.0.gam-62.emi-37.dem-1bb.pus-6.ble-d6.3ch-400.dec-114.e-14)!", + result: { + word: "deem", + correct: 16, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 34, + }, + }, + { + date: "27.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTMuQjMuETLlVGZuATYx0CajNjL00SZ1RmL1UTLyR3cuAjL5EjLw4SNx4CO3ETLtVWZkhSI", + value: "!(deem-178.15.0.19.0.str-55.due-4.3ch-1a0.dee-1.24.14)!", + result: { + word: "deem", + correct: 15, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "27.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/bardzo-proste-tylko-trzeba-trafic-mnie-sie-udalo-zuzyc-prawie-caly-alfabet-19-11" +] = [ + { + date: "19.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIWNtUWZi5yYj1CajNjLiJTLyVmdugTMtIXZq5COwgTLoN2MuITMtUHbw5SY00icldmL2gTLhVmcuAjL5EjLy4CNx4yMyMTLyVWZihSI", + value: + "!(beer-323.14.2.19.0.rea-86.ger-4a.plu-12.3ch-808.jer-18.ver-2b.3ch-cc.bee-5b)!", + result: { + word: "beer", + correct: 14, + position: 2, + incorrect: 19, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 35, + date: "19.11.2025", + }, + }, + { + date: "19.11.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIWNtUmLwETL2VmYugDNtcWau5CM00CbvBnLlFTLlJ3YuAjL0EjLx4yMx4yMyMTLyVWZihSI", + value: "!(beer-323.13.1.14.0.cre-1e.pol-40.nig-48.bev-10.e-5b)!", + result: { + word: "beer", + correct: 13, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "19.11.2025", + }, + }, + { + date: "19.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiY10SZlJmLmJTLlVGcuUWM10CZuVnLw4COuEjL54yMyMTLyVWZihSI", + value: "!(beer-323.9.1.8.0.und-51e.pee-2f.bee-5b)!", + result: { + word: "beer", + correct: 9, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "19.11.2025", + }, + }, + { + date: "19.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIWNtUWZi5COtUWZq5CM10SZldnLmJTLlVGcuYTMtUWZt5CMtYXZm5SNz0SZoNmLmFWL0NXYuAjLyIjLw4CMy4yMyMTLyVWZihSI", + value: + "!(beer-323.20.0.22.0.ast-af.che-35.fev-0.mee-16.pee-2f.wee-50.jee-8.bee-5b)!", + result: { + word: "beer", + correct: 20, + position: 0, + incorrect: 22, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 42, + date: "19.11.2025", + }, + }, + { + date: "19.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiVTLlVmYugTOtA3bj5CMuATMuEjL24yMyMTLyVWZihSI", + value: "!(beer-323.6.1.10.0.cop-98.bee-5b)!", + result: { + word: "beer", + correct: 6, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "19.11.2025", + }, + }, + { + date: "19.11.2025", + nick: "User", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIWNtUWZi5SM00SZlRmL3MTLlV2auUzNtEGa35CMukjLw4yMx4yMyMTLyVWZihSI", + value: "!(beer-323.13.0.9.0.wha-75.kee-37.dee-41.bee-5b)!", + result: { + word: "beer", + correct: 13, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "19.11.2025", + }, + }, + { + date: "19.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiY10SZl5SOx0Cdp5yM20ib1JmLk1ycvBnLyYTLtF2ZuAjLxEjLw4CNx4yMyMTLyVWZihSI", + value: "!(beer-323.14.0.11.0.gam-62.pos-d.bun-63.it-19.ee-5b)!", + result: { + word: "beer", + correct: 14, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "19.11.2025", + }, + }, + { + date: "19.11.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiVTLlVmYuYWLr9mauEDNtUWZk5iZy0SZlBnL3UWLhx2cuAjL2EjLw4iMx4yMyMTLyVWZihSI", + value: "!(beer-323.12.0.16.0.sla-e7.pee-2f.dee-41.jok-f.bee-5b)!", + result: { + word: "beer", + correct: 12, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "19.11.2025", + }, + }, + { + date: "19.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiY10SZlJmLwkTLyVGauYTNtU2bw5SYtUXZm5CMuMTMuEjL54yMyMTLyVWZihSI", + value: "!(beer-323.9.1.13.0.feu-a.poe-56.her-90.bee-5b)!", + result: { + word: "beer", + correct: 9, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "19.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/bez-sensu-tej-quot-kategorii-quot-wyrazow-nie-powinno-chyba-byc-w-grach-slownych" +] = [ + { + date: "15.09.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCN3QjL0gjNtIXYuE2Mx0SYyBnLlFTLlJ3YuAjL24CMuEjMugTNy0ibhl2cpJXYwhSI", + value: "!(parisian-258.21.0.6.0.cre-1e.pra-13a.ar-684.474)!", + result: { + word: "parisian", + correct: 21, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "15.09.2025", + }, + }, + { + date: "15.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQzN00ich5iYy0SdsBnLhdTLpFmcuI2Y20CajNjL2gTLhVmcuAjL34CNukTMugTNy0ibhl2cpJXYwhSI", + value: "!(parisian-258.19.4.7.0.rea-86.3ch-6cb.rai-7a.plu-2b.ar-474)!", + result: { + word: "parisian", + correct: 19, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "15.09.2025", + }, + }, + { + date: "15.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0cDNtIXYw5yNjdTLoN2MuIjZt4Wam5CMuYDZ00ich5iYl1SYyBnLzQTLw9GauUTM10SayRnL30SahJnL20yY4VmLw4SNx4CNuUzMugTNy0ibhl2cpJXYwhSI", + value: + "!(parisian-258.35.4.15.0.exc-6.rai-7.tri-515.hop-43.pra-eb.ar-4d6.0.fin-f2.3ch-7c7.par-474)!", + result: { + word: "parisian", + correct: 35, + position: 4, + incorrect: 15, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 54, + date: "15.09.2025", + }, + }, + { + date: "15.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCN3QjL2YDNtIXYw5yYxcTLoN2MuEWL1VmZuAjL34CMugTMugTNy0ibhl2cpJXYwhSI", + value: "!(parisian-258.18.0.7.0.feu-a.3ch-71c.par-466.474)!", + result: { + word: "parisian", + correct: 18, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "15.09.2025", + }, + }, + { + date: "15.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0cDNtIXYuEWLylmLyEWLvJHcuAjL44yMuUTMugTNy0ibhl2cpJXYwhSI", + value: "!(parisian-258.15.3.8.0.pro-a2.ir-a.ar-474)!", + result: { + word: "parisian", + correct: 15, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "15.09.2025", + }, + }, + { + date: "15.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCN3QjLmNDNtIXYuEWOtkmcw5CO50CcvNmLw4CMx4CMuIjMugTNy0ibhl2cpJXYwhSI", + value: "!(parisian-258.22.0.10.0.cop-98.pri-9a.ar-43f.474)!", + result: { + word: "parisian", + correct: 22, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "15.09.2025", + }, + }, + { + date: "15.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0cDNtIXYuUmZtIXduMDO20ybyBnLw4SMx4CMucTMugTNy0ibhl2cpJXYwhSI", + value: "!(parisian-258.17.0.11.0.pro-683.ur-fe.ar-474)!", + result: { + word: "parisian", + correct: 17, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "15.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/bez-wysilania-sie-11-08-2025-diffle-diffleen-grywebowe-27-letters-in-4-words-lar" +] = [ + { + date: "11.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETM04SZwQTLyR3cuAzN30CajNjL2gTLhVmcuAjL34yMucTMuMjMy0SZsd2Z1JHdzhSI", + value: "!(struggle-223.17.3.7.0.rea-86.3ch-770.str-40e.411)!", + result: { + word: "struggle", + correct: 17, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "11.08.2025", + }, + }, + { + date: "11.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxEDNtIHdz5iNx0yZvRnLxITLlh2YuAjL24SMuUTMuMjMy0SZsd2Z1JHdzhSI", + value: "!(struggle-223.15.1.6.0.che-21.tog-16.str-411)!", + result: { + word: "struggle", + correct: 15, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "11.08.2025", + }, + }, + { + date: "11.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETM00icuImMz0SY05SM40ybtNnLw4SMx4SMuYTMuMjMy0SZsd2Z1JHdzhSI", + value: "!(struggle-223.16.1.11.0.smo-81.ta-32b.r-411)!", + result: { + word: "struggle", + correct: 16, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "11.08.2025", + }, + }, + { + date: "11.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxEDNtIHdz5yN20Cb1NmL0ATMt4Was5yYi1ico5yN40ic1NnLm1SdvJnLyYTLtF2ZuAjL54yMuUjMuMjMy0SZsd2Z1JHdzhSI", + value: + "!(struggle-223.25.3.9.0.gam-62.rou-f.sur-87.hr-bc.lin-104.cul-67.str-411)!", + result: { + word: "struggle", + correct: 25, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 37, + date: "11.08.2025", + }, + }, + { + date: "11.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETM04CZwQTLyR3cuEjZ30ibvNmLyMTLzVXYuAjL44iMuEjMuMjMy0SZsd2Z1JHdzhSI", + value: "!(struggle-223.21.2.8.0.aus-32.con-7f1.str-40d.411)!", + result: { + word: "struggle", + correct: 21, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "11.08.2025", + }, + }, + { + date: "11.08.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETM00ic0NnL4kTLw92YuAjL44SMuITMuMjMy0SZsd2Z1JHdzhSI", + value: "!(struggle-223.12.1.8.0.cop-98.str-411)!", + result: { + word: "struggle", + correct: 12, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "11.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/bylo-do-zgadniecia-w-czterech-09-09-2025-diffle-diffleen-grywebowe-32-letters-in" +] = [ + { + date: "09.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYy0SbhdmL5ITLsJWYuUjMx0CbhJmLyITLyFWZuYDOtEWZy5CMugjL14SOx4iM1ITLyVGbi1WYnhSI", + value: "!(gambler-252.19.5.8.0.rea-86.ear-22.bal-125.abl-29.gam-2a)!", + result: { + word: "gambler", + correct: 19, + position: 5, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "09.09.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhJTLtF2ZuYjMtIWbh5iZy0SbhpmL50CcppnLzITL09WbuAjL1EjLw4SMy4iM1ITLyVGbi1WYnhSI", + value: "!(gambler-252.21.0.15.0.mot-23.zip-9.jam-2f.amb-26.gam-2a)!", + result: { + word: "gambler", + correct: 21, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + }, + }, + { + date: "09.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhJTLtF2ZuQmMtEGdz5iNtMGel5CMuYjLy4SNx4iM1ITLyVGbi1WYnhSI", + value: "!(gambler-252.15.2.6.0.exc-6.sta-2d.gam-2a)!", + result: { + word: "gambler", + correct: 15, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "09.09.2025", + }, + }, + { + date: "09.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEmMt0WYn5SNz0ic0NnLkJTLnxmL1QWLjJXYuAjLyEjL14yNx4iM1ITLyVGbi1WYnhSI", + value: "!(gambler-252.17.5.12.0.arc-d5.lg-2d.str-35.gam-2a)!", + result: { + word: "gambler", + correct: 17, + position: 5, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "09.09.2025", + }, + }, + { + date: "09.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhJTLtF2ZugTOtA3bj5CMucjLx4iMx4iM1ITLyVGbi1WYnhSI", + value: "!(gambler-252.12.1.7.0.cop-98.gam-2a)!", + result: { + word: "gambler", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "09.09.2025", + }, + }, + { + date: "09.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEmMuQTYuIjNt0WYn5CMuEjLw4yNx4iM1ITLyVGbi1WYnhSI", + value: "!(gambler-252.17.0.1.0.gam-62.a4.2a)!", + result: { + word: "gambler", + correct: 17, + position: 0, + incorrect: 1, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "09.09.2025", + }, + }, + { + date: "09.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYy0SbhdmLiRTLyFWbuITYt8mcw5CMuUjL14CNx4iM1ITLyVGbi1WYnhSI", + value: "!(gambler-252.14.5.5.0.pro-a2.mar-4b.gam-2a)!", + result: { + word: "gambler", + correct: 14, + position: 5, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "09.09.2025", + }, + }, + { + date: "09.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYy0SbhdmL0ETLtFmcuMzMx0CctFmLyUTLtFGauczYtwWYt5SYtUXZm5CMugjL04SNy4iM1ITLyVGbi1WYnhSI", + value: "!(gambler-252.25.4.8.0.feu-a.mal-c7.ham-52.amp-133.ram-14.gam-2a)!", + result: { + word: "gambler", + correct: 25, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "09.09.2025", + }, + }, + { + date: "09.09.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhJTLtF2ZuETNx0CctFmL1YTLtFGduUWMtUmcj5CMucjLy4COx4iM1ITLyVGbi1WYnhSI", + value: "!(gambler-252.18.2.7.0.cre-1e.tam-65.amp-151.gam-2a)!", + result: { + word: "gambler", + correct: 18, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "09.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/caly-czas-mialem-to-przed-soba-laughing-26-09-2025-diffle-diffleen-grywebowe-24-" +] = [ + { + date: "26.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUzMtk2bw5CZwMTL05WauYDOtEWZy5CMuUjL14CNx4SO2ITLyVGdul2bwhSI", + value: "!(pointer-269.14.5.5.0.rea-86.int-30d.poi-35)!", + result: { + word: "pointer", + correct: 14, + position: 5, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "26.09.2025", + }, + }, + { + date: "26.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1MTLp9mLidjNt8mcw5CMuUjLy4SMx4SO2ITLyVGdul2bwhSI", + value: "!(pointer-269.11.2.5.0.pro-67b.oi-35)!", + result: { + word: "pointer", + correct: 11, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "26.09.2025", + }, + }, + { + date: "26.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUzMtk2buUzNx0SayBnL4YTMt4Wa35iZyYTLzlWbuYTLjhXZuAjLwEjLx4CNy4SO2ITLyVGdul2bwhSI", + value: "!(pointer-269.24.1.10.0.exc-6.mis-62f.win-168.pri-175.oi-35)!", + result: { + word: "pointer", + correct: 24, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "26.09.2025", + }, + }, + { + date: "26.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNz0Sav5CNt8Waw5iN20ibvJmLwITLv52cuIjNt0WYn5CMugjLy4SMy4SO2ITLyVGdul2bwhSI", + value: "!(pointer-269.21.2.8.0.gam-62.sno-20.bon-66.pio-4.oi-35)!", + result: { + word: "pointer", + correct: 21, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "26.09.2025", + }, + }, + { + date: "26.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUzMtkmLzETMtI3buITYt8mcw5CMuYjLz4SNx4SO2ITLyVGdul2bwhSI", + value: "!(pointer-269.15.3.6.0.pro-a2.or-113.i-35)!", + result: { + word: "pointer", + correct: 15, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "26.09.2025", + }, + }, + { + date: "26.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNz0SavBnLh1SdlZmLw4yNuEjL44SO2ITLyVGdul2bwhSI", + value: "!(pointer-269.8.1.7.0.feu-a.poi-35)!", + result: { + word: "pointer", + correct: 8, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "26.09.2025", + }, + }, + { + date: "26.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1MTLp9GcugTOtA3bj5CMucjLy4SMx4SO2ITLyVGdul2bwhSI", + value: "!(pointer-269.11.2.7.0.cop-98.poi-35)!", + result: { + word: "pointer", + correct: 11, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "26.09.2025", + }, + }, + { + date: "26.09.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUzMtk2bw5iMkZTLzlGZuUTMtUWa05yNy0icldmLlFTLlJ3YuAjLxEjL04iNx4SO2ITLyVGdul2bwhSI", + value: "!(pointer-269.16.4.11.0.cre-1e.ger-27.tie-15.dis-6d2.poi-35)!", + result: { + word: "pointer", + correct: 16, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "26.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/cos-dzisiaj-ciezko-mi-idzie-23-08-2025-diffle-diffleen-grywebowe-33-letters-in-6" +] = [ + { + date: "23.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZjFTLwF2YuUDMx4SYxEjLlNzNtg2Yz4iY20Ca0FmL2gTLhVmcuAjLwEjL04SOx4SNzITLlZXa0BXYjhSI", + value: "!(captive-235.19.4.10.0.rea-86.ath-6b.3ch-73e.11a.105.cap-1cd)!", + result: { + word: "captive", + correct: 19, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "23.08.2025", + }, + }, + { + date: "23.08.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQ2Yx0Cch5SN1MTLhh2YuEjMtw2Yl5SO00SZjNnLyEWLvJHcuMjLyEjL14yMy4SNzITLlZXa0BXYjhSI", + value: "!(captive-235.23.5.12.3.pro-a2.sce-49.ecl-21.cha-355.ap-1cd)!", + result: { + word: "captive", + correct: 23, + position: 5, + incorrect: 12, + knownIncorrect: 3, + totalWords: 5, + totalLetters: 40, + date: "23.08.2025", + }, + }, + { + date: "23.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQ2Yx0CchNmLw0iZpdnL5ITLzVHaugTLs9mYuAjYucjMtAXYj5SOj1ibhBnLyYTLtF2ZuAjL0EjLy4iMy4SNzITLlZXa0BXYjhSI", + value: + "!(captive-235.22.2.14.0.gam-62.pan-c9.cap-27.b0.bol-8.hus-29.wif-0.cap-1cd)!", + result: { + word: "captive", + correct: 22, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 38, + date: "23.08.2025", + }, + }, + { + date: "23.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkNWMtAXYj5iNtA3bt5CN2ETLzF2YuYTLjhXZuAjLxEjLx4iNx4SNzITLlZXa0BXYjhSI", + value: "!(captive-235.16.1.11.0.exc-6.cas-164.mop-6.cap-1cd)!", + result: { + word: "captive", + correct: 16, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "23.08.2025", + }, + }, + { + date: "23.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQ2Yx0CchNmL4EWL0NWYuIGMx0CduVmL3YTLiVHduAjLwEjL04yNx4SNzITLlZXa0BXYjhSI", + value: "!(captive-235.17.4.10.0.tub-67.ent-10b.act-a8.cap-1cd)!", + result: { + word: "captive", + correct: 17, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "23.08.2025", + }, + }, + { + date: "23.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkNWMtAXYj5SNxETL0FGbuIWM30CajNjL4ATMtcWYt5iZz0SahBnLyMTLzVXYuEjLwEjL14iMy4SNzITLlZXa0BXYjhSI", + value: + "!(captive-235.22.5.10.1.aus-32.pai-3f.mag-108.3ch-71b.lat-115.cap-1cd)!", + result: { + word: "captive", + correct: 22, + position: 5, + incorrect: 10, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 37, + date: "23.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/czwarte-slowo-wlasciwie-niepotrzebne-wystarczylo-pomyslec-11-09-2025-diffle-diff" +] = [ + { + date: "11.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhNTLnlmZugDM40CajNjLiJTL1xGcuYTLylGZuYDOtEWZy5CMuMTMuEjLyEjL0UjMtUmc1dWamhSI", + value: "!(figure-254.12.1.13.0.rea-86.dir-6.plu-2b.3ch-808.fig-3a)!", + result: { + word: "figure", + correct: 12, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "11.09.2025", + }, + }, + { + date: "11.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpE2MtcWam5CMtkWdq5iNtIXak5iZhNTLw1WauIWNtQXai5CMuQTMuEjL3EjL0UjMtUmc1dWamhSI", + value: "!(figure-254.17.1.14.0.bit-5b.imp-3af.dir-6.jui-0.fig-3a)!", + result: { + word: "figure", + correct: 17, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "11.09.2025", + }, + }, + { + date: "11.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhNTLn5iMtIXam5yMk1Sdv1mL1UTLzlGcuMWMtombp5iNtMGel5CMuYTMuEjLwIjL0UjMtUmc1dWamhSI", + value: "!(figure-254.20.1.16.0.exc-6.inj-1c.pis-55.mou-d3.fir-2.g-3a)!", + result: { + word: "figure", + correct: 20, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "11.09.2025", + }, + }, + { + date: "11.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYz0yZpZmL1IWLnlGbukzMtcWdi5iZtU3by5iM20SbhdmLw4SNuQjL4EjL0UjMtUmc1dWamhSI", + value: "!(figure-254.18.4.5.0.gam-62.rou-f.bug-39.lig-b5.fig-3a)!", + result: { + word: "figure", + correct: 18, + position: 4, + incorrect: 5, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "11.09.2025", + }, + }, + { + date: "11.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpE2MtcWam5CNtIXaz5iMh1ybyBnLw4SOuEjLxEjL0UjMtUmc1dWamhSI", + value: "!(figure-254.11.1.9.0.pro-a2.sir-4.fig-3a)!", + result: { + word: "figure", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "11.09.2025", + }, + }, + { + date: "11.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYz0yZpZmL4kTLw92YuAjL54SMukjL0UjMtUmc1dWamhSI", + value: "!(figure-254.9.1.9.0.cop-98.fig-3a)!", + result: { + word: "figure", + correct: 9, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "11.09.2025", + }, + }, + { + date: "11.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhNTLnlmLlNWLyVnLh1SdlZmLw4yNuMjLyEjL0UjMtUmc1dWamhSI", + value: "!(figure-254.12.3.7.0.feu-a.ur-ce.ig-3a)!", + result: { + word: "figure", + correct: 12, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "11.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dalem-sie-nabrac-05-08-2025-diffle-diffleen-grywebowe-20-letters-in-4-words-larg" +] = [ + { + date: "05.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgzM00ichNmL5ETMtg2Yz4SMiFTLyF2YuYDOtEWZy5CMucjLy4SMx4yNxITLwJXYjhSI", + value: "!(carp-217.11.2.7.0.rea-86.car-1b1.3ch-119.car-438)!", + result: { + word: "carp", + correct: 11, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "05.08.2025", + }, + }, + { + date: "05.08.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgzM00ich5CO50CcvNmLw4SOuIjL24yNxITLwJXYjhSI", + value: "!(carp-217.6.2.9.0.cop-98.ar-438)!", + result: { + word: "carp", + correct: 6, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "05.08.2025", + }, + }, + { + date: "05.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgzM00icuYDOx0Sbh5SMy0SZoNmLw4COuAjL54yNxITLwJXYjhSI", + value: "!(carp-217.9.0.8.0.che-21.am-186.r-438)!", + result: { + word: "carp", + correct: 9, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "05.08.2025", + }, + }, + { + date: "05.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOzQTLyF2YuITMtIXY65yNyITLhh2cukzYtIXY35CZyYTLyFGcuIjNt0WYn5CMukjLx4yNx4yNxITLwJXYjhSI", + value: "!(carp-217.17.1.9.0.gam-62.par-62d.war-c9.sha-227.zar-12.car-438)!", + result: { + word: "carp", + correct: 17, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 27, + date: "05.08.2025", + }, + }, + { + date: "05.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgzM00ichNmL20SdydmLkVWLt5yNy0CchNmLyITLuF2cuAjL5EjLw4yMx4yNxITLwJXYjhSI", + value: "!(carp-217.13.0.19.0.san-22.cap-27.m-ed.gru-6.car-438)!", + result: { + word: "carp", + correct: 13, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "05.08.2025", + }, + }, + { + date: "05.08.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4MDNuYjM14COjJjLxIWMtIXYuUWMtUmcj5CMucjLx4SNx4yNxITLwJXYjhSI", + value: "!(carp-217.15.1.7.0.cre-1e.ar-1b1.2c8.526.438)!", + result: { + word: "carp", + correct: 15, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 23, + date: "05.08.2025", + }, + }, + { + date: "05.08.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4MDNtIXYj5iMh1ybyBnLw4yNuMjL14yNxITLwJXYjhSI", + value: "!(carp-217.5.3.7.0.pro-a2.car-438)!", + result: { + word: "carp", + correct: 5, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "05.08.2025", + }, + }, + { + date: "05.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgzM00ichNmL3ITLhJ3dukTZtQ3bw5SYtUXZm5CMuMTMuEjL44yNxITLwJXYjhSI", + value: "!(carp-217.8.1.13.0.feu-a.pot-e9.wra-27.car-438)!", + result: { + word: "carp", + correct: 8, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "05.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/difflelog-diffle-diffleen-grywebowe-od-jutra-wygrywajace-slowa-w-diffle-w-jezyku" +] = []; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dobre-30-11-2025-diffle-diffleen-grywebowe-48-letters-in-9-words-large-green-cir" +] = [ + { + date: "30.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3ETLulmbuYWLpVmZuYmZz0CajNjL5cTL19GcuczMtkWbl5COm1iclZnLzEWMtkGa35SYh1yY4VmL20yclRnLw4COx4CNuYjMuQzMz0iblVGdl5WauhSI", + value: + "!(nineteen-334.26.4.18.0.tes-6.exc-aa.whi-1a3.ver-f8.emi-37.pou-79.3ch-3ff.fei-f.nin-17)!", + result: { + word: "nineteen", + correct: 26, + position: 4, + incorrect: 18, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 48, + date: "30.11.2025", + }, + }, + { + date: "30.11.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3ETLulmbuIGZt4WZ05yMy0Cdv1mLw4iMx4SMuYTMuQzMz0iblVGdl5WauhSI", + value: "!(nineteen-334.16.1.12.0.mot-23.ten-db.nin-17)!", + result: { + word: "nineteen", + correct: 16, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "30.11.2025", + }, + }, + { + date: "30.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcTMt4Wau5CMx0SZlRnLzQTL0l2auUDZz4iZkdTLoN2MuETLmVnYugDM40CajNjL3QTLklWbuUWMtwWaw5iN40SYlJnLw4iMy4SMucjMuQzMz0iblVGdl5WauhSI", + value: + "!(nineteen-334.27.1.22.0.rea-86.pil-1e.mid-47.3ch-808.buf-1.3ch-7df.3d5.kit-43.tee-10.nin-17)!", + result: { + word: "nineteen", + correct: 27, + position: 1, + incorrect: 22, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 50, + date: "30.11.2025", + }, + }, + { + date: "30.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcTMt4Wau5SNxUTLoN2MukjNtQXaw5SMtYWdi5COz0ibpxmL3QTLulWbucjMtkmbp5yNj1ibpRnLmVzMtIHdz5SMy0SZoNmLw4CMy4SMuAzMuQzMz0iblVGdl5WauhSI", + value: + "!(nineteen-334.30.1.20.0.che-21.str-35f.tin-c7.ini-27.min-47.lin-38.buf-1.pit-69.3ch-515.nin-17)!", + result: { + word: "nineteen", + correct: 30, + position: 1, + incorrect: 20, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 51, + date: "30.11.2025", + }, + }, + { + date: "30.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNx0ibp5mLyMzMtkmb15iYtQXaz5CO50CcvNmLw4SNx4CMukTMuQzMz0iblVGdl5WauhSI", + value: "!(nineteen-334.19.0.15.0.cop-98.sit-b.uni-332.nin-17)!", + result: { + word: "nineteen", + correct: 19, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "30.11.2025", + }, + }, + { + date: "30.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcTMuQWMt4Wau5iM10CbpZmLyQTLllGZuIWNtgGdl5iM20SbhdmLw4SMx4SMuIjMuQzMz0iblVGdl5WauhSI", + value: "!(nineteen-334.22.1.11.0.gam-62.eth-5b.die-42.fil-52.nin-1d.17)!", + result: { + word: "nineteen", + correct: 22, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "30.11.2025", + }, + }, + { + date: "30.11.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcTMt4Wau5yMj1CdulmL5IWLuVGcukjMt8Gbl5SZx0SZyNmLw4SMx4SMugTMuQzMz0iblVGdl5WauhSI", + value: "!(nineteen-334.18.1.11.0.cre-1e.elo-29.pen-b9.int-c3.nin-17)!", + result: { + word: "nineteen", + correct: 18, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "30.11.2025", + }, + }, + { + date: "30.11.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNx0ibp5mL0YjMtg2Yz4yM00CcpJmLwETLlVGduMDNtQXar5yNl1SYsNnLw4iNx4SMuEjMuQzMz0iblVGdl5WauhSI", + value: + "!(nineteen-334.21.1.16.0.sla-e7.kit-43.tee-10.bip-43.3ch-264.nin-17)!", + result: { + word: "nineteen", + correct: 21, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "30.11.2025", + }, + }, + { + date: "30.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3ETLu5iYz0yZp5mL0QTL0lmYucTLylGduEzY10CajNjLh1SdlZmLw4yMx4iMuAjMuQzMz0iblVGdl5WauhSI", + value: "!(nineteen-334.20.2.13.0.feu-a.3ch-5c1.tir-7.bit-44.nig-3b.n-17)!", + result: { + word: "nineteen", + correct: 20, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "30.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dobry-poczatek-ale-potem-chyba-wszystkie-litery-wykluczylem-zanim-trafilem-na-te" +] = [ + { + date: "30.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiN20idulmL1UWLuVmduUDM04CMkNjL3QDNuMjY14COwgTLoN2MuMTLtVHZuYDOtEWZy5CMugTMuAjLzIjLzcjMt42bpRnblZnbphSI", + value: + "!(invention-273.23.0.18.0.rea-86.dum-3.3ch-808.5b3.447.3d0.405.ven-e5.inv-66)!", + result: { + word: "invention", + correct: 23, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 41, + date: "30.09.2025", + }, + }, + { + date: "30.09.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYjNtYnL2MWL05WauUmMtkGZuMTLvRXZuATLvVGcuYjN10CajNjLjFTLlR3cuMjMtQ3bt5CMuUTMuUjLzMjLzcjMt42bpRnblZnbphSI", + value: + "!(invention-273.33.5.15.0.mot-23.ste-1c.3ch-566.peo-0.eto-3.di-2e.int-c6.v-66)!", + result: { + word: "invention", + correct: 33, + position: 5, + incorrect: 15, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 53, + date: "30.09.2025", + }, + }, + { + date: "30.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYjNtYnbp5SMtUmdv5SY50ibpZnLwcjMtg2Yz4CMts2bq5SZ40yboBnLykTMt4WZ05SYyETLuVWbuITOtUGdz5iNtMGel5CMukTMuQjL0MjLzcjMt42bpRnblZnbphSI", + value: + "!(invention-273.34.4.19.0.exc-6.ste-92.men-12a.ten-192.pho-8e.jok-0.3ch-270.vin-9a.ove-1.inv-66)!", + result: { + word: "invention", + correct: 34, + position: 4, + incorrect: 19, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 57, + date: "30.09.2025", + }, + }, + { + date: "30.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2YTL25WauMTNx0iclNmL1MTLpB3bukjZt4Wat5SZzETLul2cuUWMtg3bi5CMucTMuMjL5IjLzcjMt42bpRnblZnbphSI", + value: + "!(invention-273.29.3.17.0.box-1e.sin-13e.min-f9.opi-35.cer-153.inv-66)!", + result: { + word: "invention", + correct: 29, + position: 3, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 49, + date: "30.09.2025", + }, + }, + { + date: "30.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2YTL25WauUmMtkGZl5iMh1ybyBnLw4COuIjL3EjLzcjMt42bpRnblZnbphSI", + value: "!(invention-273.17.2.8.0.pro-a2.edi-2e.inv-66)!", + result: { + word: "invention", + correct: 17, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "30.09.2025", + }, + }, + { + date: "30.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2YTL25WauYDOtwWak5SZx0yclZmLiVTLoRXZuIjNt0WYn5CMuETMuAjLyIjLzcjMt42bpRnblZnbphSI", + value: "!(invention-273.22.0.11.0.gam-62.eth-5b.fes-1e.dil-86.inv-66)!", + result: { + word: "invention", + correct: 22, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "30.09.2025", + }, + }, + { + date: "30.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYjNtYnbp5iMx0SZpRnLzITLp9WbugTOtA3bj5CMuITMuMjL4EjLzcjMt42bpRnblZnbphSI", + value: "!(invention-273.18.3.12.0.cop-98.moi-23.tie-12.inv-66)!", + result: { + word: "invention", + correct: 18, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "30.09.2025", + }, + }, + { + date: "30.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2YjL1YTL25WauEGNx0SawVmL1ITL0VmZuIzMtMXdh5CMuQTMuEjL2IjLzcjMt42bpRnblZnbphSI", + value: "!(invention-273.26.1.14.0.aus-32.fet-25.epi-14a.inv-65.66)!", + result: { + word: "invention", + correct: 26, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "30.09.2025", + }, + }, + { + date: "30.09.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYjNtYnLxITLs5WauMTMt4Wak5SZx0SZyNmLw4yNuAjL3EjLzcjMt42bpRnblZnbphSI", + value: "!(invention-273.17.0.7.0.cre-1e.din-13.inl-21.v-66)!", + result: { + word: "invention", + correct: 17, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "30.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dobry-wieczor-wszystkim-milosnikom-difflee-29-10-2025-diffle-diffleen-grywebowe-" +] = [ + { + date: "29.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIWMx0CblhmLj1SdodnL4UTMtwWZt5iN40SYlJnLw4yMx4CMuETMuIDMz0ybsxWZohSI", + value: "!(hello-302.11.0.13.0.rea-86.mel-158.whu-c.hel-11b)!", + result: { + word: "hello", + correct: 11, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "29.10.2025", + }, + }, + { + date: "29.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYxETLsVGaugTL29GbuE2N00CajNjLxETLv9mZuYGZz4SMkRTLoN2MuMDOtU3bw5yN10SayRmLw4CMy4iMuMTMuIDMz0ybsxWZohSI", + value: + "!(hello-302.13.2.20.0.dri-57.pou-83.3ch-4d1.3df.foo-11.3ch-47a.lov-8.hel-11b)!", + result: { + word: "hello", + correct: 13, + position: 2, + incorrect: 20, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 35, + date: "29.10.2025", + }, + }, + { + date: "29.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIWMx0CblhmLxITLsVmauMzMtYXZk5yMt8WZi5SZx0SZyNmLw4CNx4SMuUTMuIDMz0ybsxWZohSI", + value: "!(hello-302.15.1.14.0.cre-1e.beo-3.dev-33.jel-21.hel-11b)!", + result: { + word: "hello", + correct: 15, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "29.10.2025", + }, + }, + { + date: "29.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIWMx4yYj1CblhmL3UWLhx2cuAjL54SMuETMuIDMz0ybsxWZohSI", + value: "!(hello-302.11.1.9.0.sla-e7.hel-cc.11b)!", + result: { + word: "hello", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "29.10.2025", + }, + }, + { + date: "29.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiFTMtwWZo5iY4ETLvh2cuYTLjhXZuAjL54SMuATMuIDMz0ybsxWZohSI", + value: "!(hello-302.10.1.9.0.exc-6.sho-18b.hel-11b)!", + result: { + word: "hello", + correct: 10, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "29.10.2025", + }, + }, + { + date: "29.10.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYxETLsVGaugTOtA3bj5CMukjLy4yNuIDMz0ybsxWZohSI", + value: "!(hello-302.7.2.9.0.cop-98.hel-11b)!", + result: { + word: "hello", + correct: 7, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "29.10.2025", + }, + }, + { + date: "29.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIWMx0CblhmLxMTLsVmYukTLsVmauEmMtwWZ35COi1CblBnLh1SdlZmLw4CNx4SMucTMuIDMz0ybsxWZohSI", + value: "!(hello-302.17.1.14.0.feu-a.pel-b8.wel-2a.jel-9.bel-31.hel-11b)!", + result: { + word: "hello", + correct: 17, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "29.10.2025", + }, + }, + { + date: "29.10.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIWMx0CblhmLmR2Mtg2Yz4CO00ib1RmLjBTMuEjMx4yYj5CM2ETLsVGauIWNtgGdl5iM20SbhdmLw4iNx4SMuMjMuIDMz0ybsxWZohSI", + value: + "!(hello-302.23.1.16.0.gam-62.eth-5b.hel-160.cc.121.10c.dun-48.3ch-3df.hel-11b)!", + result: { + word: "hello", + correct: 23, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 40, + date: "29.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dosc-ciezkie-chyba-ze-jestes-kinky-wink-14-11-2025-diffle-diffleen-grywebowe-27-" +] = [ + { + date: "14.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQmMtkGbi5iYy0SdsBnL0MTLulmYuYDOtEWZy5CMuATMuEjL2EjL4EzMtQGbvZGZulGbihSI", + value: "!(blindfold-318.16.1.10.0.rea-86.bin-34.plu-2b.bli-2d)!", + result: { + word: "blindfold", + correct: 16, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "14.11.2025", + }, + }, + { + date: "14.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkJTLpxmYuAjN00CajNjL10CbvZmLygzMtg2Yz4yYx0CbphmL10ybklmLjdzMtg2Yz4CN54iYz0CbvZmL1QWLsl2cuATLmZWaukTOtkmcw5SM5cTLoN2MukzMt82bm5iMuYTMuUjLyQjL4EzMtQGbvZGZulGbihSI", + value: + "!(blindfold-318.42.5.16.2.foo-39.3ch-791.pri-99.iff-0.sil-d5.fol-3b.94.3ch-37c.ido-5.hil-1c.3ch-382.fol-5.3ch-460.bli-2d)!", + result: { + word: "blindfold", + correct: 42, + position: 5, + incorrect: 16, + knownIncorrect: 2, + totalWords: 14, + totalLetters: 63, + date: "14.11.2025", + }, + }, + { + date: "14.11.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZy0Sas5yNx0Seh5yNy0iZpJmLz0ybuMTLz9mZuMjMtQ3bt5CMuYTMuEjL0IjL4EzMtQGbvZGZulGbihSI", + value: "!(blindfold-318.24.1.16.0.mot-23.fos-3.o-3.bif-27.ay-17.li-2d)!", + result: { + word: "blindfold", + correct: 24, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 41, + date: "14.11.2025", + }, + }, + { + date: "14.11.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkJjLmFjL5QTLpxmYuUmMx0ibpxmLlJTLvlmducTZtEGbz5CMuITMuEjL4IjL4EzMtQGbvZGZulGbihSI", + value: "!(blindfold-318.28.1.12.0.sla-e7.vio-2e.lin-12e.bli-49.1f.2d)!", + result: { + word: "blindfold", + correct: 28, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 41, + date: "14.11.2025", + }, + }, + { + date: "14.11.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQmMtkGbi5COy0SautmL0QTL19GcuUWMtUmcj5CMuQTMuIjL0EjL4EzMtQGbvZGZulGbihSI", + value: "!(blindfold-318.14.2.14.0.cre-1e.pou-44.kni-28.bli-2d)!", + result: { + word: "blindfold", + correct: 14, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "14.11.2025", + }, + }, + { + date: "14.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZy4iZx4SZz4SM10SasJmL20yY4VmLw4SOuEjL1IjL4EzMtQGbvZGZulGbihSI", + value: "!(blindfold-318.25.1.9.0.exc-6.bli-51.3e.1f.2d)!", + result: { + word: "blindfold", + correct: 25, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "14.11.2025", + }, + }, + { + date: "14.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkJTLpxmYuYDZtg2Yz4COtw2bi5SYy0CbvNmL4ADOtg2Yz4SMy0ybuNnL0QTL19GcuIjNt0WYn5CMuITMuEjL0IjL4EzMtQGbvZGZulGbihSI", + value: + "!(blindfold-318.24.1.12.0.gam-62.pou-44.sno-21.3ch-808.col-2a.bol-8.3ch-d6.bli-2d)!", + result: { + word: "blindfold", + correct: 24, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 37, + date: "14.11.2025", + }, + }, + { + date: "14.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkJTLpxmYukjMtkGbj5iYz0iZpxmLh1SdlZmLw4SOuIjL5EjL4EzMtQGbvZGZulGbihSI", + value: "!(blindfold-318.19.2.9.0.feu-a.lif-3b.cli-29.bli-2d)!", + result: { + word: "blindfold", + correct: 19, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "14.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dosc-rzadko-spotykane-16-09-2025-diffle-diffleen-grywebowe-20-letters-in-3-words" +] = [ + { + date: "16.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyYx0ybuM2Nx0CajNnL2gTLhVmcuAjL44SMuETMukTNy0CZs92YzhSI", + value: "!(scold-259.11.1.8.0.rea-86.sch-17c.o-1c)!", + result: { + word: "scold", + correct: 11, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "16.09.2025", + }, + }, + { + date: "16.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjFTLvN2cugTLjVnLhJTLs5yYtQ2bj5CM00ibpZnLw4iMx4iMugTMukTNy0CZs92YzhSI", + value: "!(scold-259.18.2.12.0.vin-40.cod-c.l-2a.uc-8.sco-1c)!", + result: { + word: "scold", + correct: 18, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "16.09.2025", + }, + }, + { + date: "16.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjFTLvN2cugTZ20CajNjLmJTL5NHcuY2Mz0CbvNmL20yY4VmLw4iMx4CMuUTMukTNy0CZs92YzhSI", + value: "!(scold-259.15.0.12.0.exc-6.col-33f.psy-2f.3ch-6e8.sco-1c)!", + result: { + word: "scold", + correct: 15, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "16.09.2025", + }, + }, + { + date: "16.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMWMt82Yz5SN0ITLs5CO50CcvNmLw4iMx4CMuETMukTNy0CZs92YzhSI", + value: "!(scold-259.11.0.12.0.cop-98.l-245.sco-1c)!", + result: { + word: "scold", + correct: 11, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "16.09.2025", + }, + }, + { + date: "16.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMWMt8mLjdTMtg2Yz5iMh1ybyBnLw4CMx4SMuETMukTNy0CZs92YzhSI", + value: "!(scold-259.11.1.10.0.pro-a2.sch-17c.o-1c)!", + result: { + word: "scold", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "16.09.2025", + }, + }, + { + date: "16.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyYx0ybjNnL50ibvBnLjFTLpx2YuYDNtMWds5iM20SbhdmLw4iMx4SMuATMukTNy0CZs92YzhSI", + value: "!(scold-259.10.1.12.0.gam-62.luc-46.cli-1c.pon-9.sco-1c)!", + result: { + word: "scold", + correct: 10, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 23, + date: "16.09.2025", + }, + }, + { + date: "16.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMWMt82YuMGNtw2buMTLvx2cuEWL1VmZuAjL34yMuITMukTNy0CZs92YzhSI", + value: "!(scold-259.12.3.7.0.feu-a.slo-3.ol-4c.co-1c)!", + result: { + word: "scold", + correct: 12, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "16.09.2025", + }, + }, + { + date: "16.09.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMWMt82Yz5iZx0Sdj9mL2UTLj9GbuQTMtQXaw5SZx0SZyNmLw4iMx4CNuATMukTNy0CZs92YzhSI", + value: "!(scold-259.10.4.12.0.cre-1e.pit-14.loc-56.ocu-1f.sco-1c)!", + result: { + word: "scold", + correct: 10, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "16.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dosc-trudne-ale-na-czasie-wiec-poszlo-gladko-slightly-smiling-face-08-11-2025-di" +] = [ + { + date: "08.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwkTLyFGdugzMtIHdh5iN40SYlJnLw4yNuMjLxEjLyEzMtYmZpJXY0hSI", + value: "!(tariff-312.11.3.7.0.rea-86.atr-38.tar-90)!", + result: { + word: "tariff", + correct: 11, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "08.11.2025", + }, + }, + { + date: "08.11.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM50ichRnLjFzNuIDOtg2Yz4SZx0SZyNmLw4CNuIjLyEjLyEzMtYmZpJXY0hSI", + value: "!(tariff-312.12.2.4.0.cre-1e.3ch-82.71c.tar-90)!", + result: { + word: "tariff", + correct: 12, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 18, + date: "08.11.2025", + }, + }, + { + date: "08.11.2025", + nick: "Endrevoir", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwkTLyFGdugzMtIHdh5iYy0icvhmLw4COuMjLxEjLyEzMtYmZpJXY0hSI", + value: "!(tariff-312.11.3.8.0.hor-2b.atr-38.tar-90)!", + result: { + word: "tariff", + correct: 11, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "08.11.2025", + }, + }, + { + date: "08.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM54iY54COj1ichRnL2QTMtQnch5SOj1ichdnLwMWLyFmYuIjNt0WYn5CMuETMuEjLxIjLyEzMtYmZpJXY0hSI", + value: "!(tariff-312.21.1.11.0.gam-62.bar-c0.war-c9.art-146.tar-c8.9b.90)!", + result: { + word: "tariff", + correct: 21, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 33, + date: "08.11.2025", + }, + }, + { + date: "08.11.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM50ichRnL3UWLhx2cuAjL44SMukjLyEzMtYmZpJXY0hSI", + value: "!(tariff-312.9.1.8.0.sla-e7.tar-90)!", + result: { + word: "tariff", + correct: 9, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "08.11.2025", + }, + }, + { + date: "08.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM50ichRnL2YDNtIXYw5CMtkmch5yMtkWYy5iNtMGel5CMuATMuIjL2EjLyEzMtYmZpJXY0hSI", + value: "!(tariff-312.16.2.10.0.exc-6.rai-3.ari-0.par-466.tar-90)!", + result: { + word: "tariff", + correct: 16, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "08.11.2025", + }, + }, + { + date: "08.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwkjL0MTMtIXY05yMxcTLoN2MucDNtU3b05iZ4YTLzlWbuQDNtAXZk5CMugTMuEjL2EjLyEzMtYmZpJXY0hSI", + value: "!(tariff-312.16.1.18.0.dep-44.mis-68f.tou-47.3ch-713.tar-134.90)!", + result: { + word: "tariff", + correct: 16, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "08.11.2025", + }, + }, + { + date: "08.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwkTLyFGduEWL1VmZuAjL24SMugjLyEzMtYmZpJXY0hSI", + value: "!(tariff-312.8.1.6.0.feu-a.tar-90)!", + result: { + word: "tariff", + correct: 8, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "08.11.2025", + }, + }, + { + date: "08.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM50ichRnL4MTLyRXYugTOtA3bj5CMuETMuMjLxEjLyEzMtYmZpJXY0hSI", + value: "!(tariff-312.11.3.11.0.cop-98.atr-38.tar-90)!", + result: { + word: "tariff", + correct: 11, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "08.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/duzo-liter-w-startowym-ale-strasznie-wymieszane-drugie-pomoglo-to-uporzadkowac-1" +] = [ + { + date: "12.12.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMh1SYpRmLj1Sav5mL2gTLhVmcuAjLz4CNuUTMuYDNz0SZz9mbnFWakhSI", + value: "!(diagnose-346.15.4.3.0.rea-86.noi-c.dia-a1)!", + result: { + word: "diagnose", + correct: 15, + position: 4, + incorrect: 3, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "12.12.2025", + }, + }, + { + date: "12.12.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMh1SYpRmLwETLlZXYuITOx0SYsBnLlFTLlJ3YuAjL54yMuUTMuYDNz0SZz9mbnFWakhSI", + value: "!(diagnose-346.15.3.9.0.cre-1e.pla-192.ave-10.dia-a1)!", + result: { + word: "diagnose", + correct: 15, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "12.12.2025", + }, + }, + { + date: "12.12.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETYtEWak5yMtM3bu5iMtUWaz5SNz0ibphmLy0iZpRmLykzNt42bu5iN40ibuYWLvlmLhJTLu9GZuQWMtQWa35SM40ibhBnL5YTLzFmbuIDZtMXYt5iNtMGel5CMuAjMuETMuYDNuYDNz0SZz9mbnFWakhSI", + value: + "!(diagnose-346.46.11.20.0.exc-6.mas-d2.nas-69.pan-81.wid-1d.don-2a.io-f.n-86.non-792.dif-2.hin-35.sie-2.nos-3.dia-a1)!", + result: { + word: "diagnose", + correct: 46, + position: 11, + incorrect: 20, + knownIncorrect: 0, + totalWords: 14, + totalLetters: 77, + date: "12.12.2025", + }, + }, + { + date: "12.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxEWLhlGZuIWYx0CajNjLw0ybv5mLhZWLuV2ZuITMtQ2bu5COkhTLk5WdukDMy0ybyJmLx4CNx4CNuYjMuYDNz0SZz9mbnFWakhSI", + value: + "!(diagnose-346.26.4.14.1.bro-209.und-8d8.nod-12.gen-fa.noo-0.3ch-1ab.dia-a1)!", + result: { + word: "diagnose", + correct: 26, + position: 4, + incorrect: 14, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 44, + date: "12.12.2025", + }, + }, + { + date: "12.12.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETYtEWak5yN20yZpNnLiJTLu92ZuEWNx0yboNmLlZmNtg2Yz4SNtk2Zh5iMy0yZhBnLyYTLtF2ZuAjL54SNuQjMuYDNz0SZz9mbnFWakhSI", + value: + "!(diagnose-346.24.5.9.0.gam-62.pag-22.agi-5.3ch-6fe.cho-15a.gon-2b.sig-67.dia-a1)!", + result: { + word: "diagnose", + correct: 24, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 38, + date: "12.12.2025", + }, + }, + { + date: "12.12.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMh1SYpRmLy0ycpZnLh1SYtlmL3UWLhx2cuAjL44SNukTMuYDNz0SZz9mbnFWakhSI", + value: "!(diagnose-346.19.5.8.0.sla-e7.ima-a.vis-2.dia-a1)!", + result: { + word: "diagnose", + correct: 19, + position: 5, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "12.12.2025", + }, + }, + { + date: "12.12.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxEWLhlGZuMTLz9mbuAjZt42bt5iMtUWaz5CO50CcvNmLw4SMx4CNuAjMuYDNz0SZz9mbnFWakhSI", + value: "!(diagnose-346.20.4.11.0.cop-98.sie-2.mon-f0.nos-3.dia-a1)!", + result: { + word: "diagnose", + correct: 20, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "12.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dzisiaj-bjere-wszystko-10-11-2025-diffle-diffleen-grywebowe-29-letters-in-4-word" +] = [ + { + date: "10.11.2025", + nick: "Endrevoir", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY30ybtFmLj1yZpdmLjFWL1xGcuMjMtQ3bt5CMuQTMuIjLzEjL0EzMtQnb19WbhhSI", + value: "!(amount-314.13.2.14.0.mot-23.plu-ac.gig-c.amo-7a)!", + result: { + word: "amount", + correct: 13, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "10.11.2025", + }, + }, + { + date: "10.11.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY30ybt5SZyETLjNWYucTZtEGbz5CMuATMuEjL0EjL0EzMtQnb19WbhhSI", + value: "!(amount-314.14.1.10.0.sla-e7.acc-12e.mo-7a)!", + result: { + word: "amount", + correct: 14, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "10.11.2025", + }, + }, + { + date: "10.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhdTLv1WYuEWOt0WY05iN40SYlJnLw4iNuIjLzEjL0EzMtQnb19WbhhSI", + value: "!(amount-314.13.2.6.0.rea-86.tam-9a.amo-7a)!", + result: { + word: "amount", + correct: 13, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "10.11.2025", + }, + }, + { + date: "10.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY30ybtFmLyUTL19WbuYTO20ycpRmLw4iNuAjL2EjL0EzMtQnb19WbhhSI", + value: "!(amount-314.16.0.6.0.dis-696.mou-52.amo-7a)!", + result: { + word: "amount", + correct: 16, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "10.11.2025", + }, + }, + { + date: "10.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpE2Nt8WbuYWYy0Cd1FmL20yY4VmLw4COuIjLxEjL0EzMtQnb19WbhhSI", + value: "!(amount-314.11.2.8.0.exc-6.aut-2af.mo-7a)!", + result: { + word: "amount", + correct: 11, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "10.11.2025", + }, + }, + { + date: "10.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpE2Nt8Wbh5CO50CcvNmLw4CMx4SMugjL0EzMtQnb19WbhhSI", + value: "!(amount-314.8.1.10.0.cop-98.amo-7a)!", + result: { + word: "amount", + correct: 8, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "10.11.2025", + }, + }, + { + date: "10.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY30ybtFmLhlTLtFGduUTNtEGbz5iM20SbhdmLw4iNuEjL0EjL0EzMtQnb19WbhhSI", + value: "!(amount-314.14.1.6.0.gam-62.sla-55.tam-9a.amo-7a)!", + result: { + word: "amount", + correct: 14, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "10.11.2025", + }, + }, + { + date: "10.11.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY30ybuYzNtAnL2ITLh1WYuUWMtUmcj5CMuMTMuAjLyEjL0EzMtQnb19WbhhSI", + value: "!(amount-314.12.0.13.0.cre-1e.ama-26.p-76.o-7a)!", + result: { + word: "amount", + correct: 12, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "10.11.2025", + }, + }, + { + date: "10.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpE2Nt8Wbh5iN50SbhJnL0QWLtF2ZuQmNtQXdt5SYtUXZm5CMuETMuEjL5EjL0EzMtQnb19WbhhSI", + value: "!(amount-314.19.1.11.0.feu-a.mut-6d.gam-d4.ram-96.amo-7a)!", + result: { + word: "amount", + correct: 19, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "10.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ech-znowu-niepotrzebnie-zaczalem-strzelac-proste-ale-za-duzo-mozliwosci-15-12-20" +] = [ + { + date: "15.12.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUTYt8GauczMt8WbuEzYt8GbuUTZx0ybw5CMx0iZvNnL0QzNtg2Yz4iN40SYlJnLw4SMx4iMuMzMukDNz0yZulGdv9GazhSI", + value: + "!(shooting-349.33.2.11.0.rea-86.3ch-744.sof-10.po-1e5.lo-c1.mo-37.ho-a5)!", + result: { + word: "shooting", + correct: 33, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 46, + date: "15.12.2025", + }, + }, + { + date: "15.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1EmLllTLvh2cuczMtknc05CMlFTLoN2MuIDNtQHcv5iM30CajVmLw4iMx4SMuYjMukDNz0yZulGdv9GazhSI", + value: "!(shooting-349.26.1.12.0.ech-72.opt-42.3ch-1e0.try-37.sho-9e.a5)!", + result: { + word: "shooting", + correct: 26, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "15.12.2025", + }, + }, + { + date: "15.12.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNh5iZjFTLvh2cugzNz0CbvBnLlFTLlJ3YuAjL54SMuYTMukDNz0yZulGdv9GazhSI", + value: "!(shooting-349.16.1.9.0.cre-1e.pol-378.sho-1cf.a5)!", + result: { + word: "shooting", + correct: 16, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "15.12.2025", + }, + }, + { + date: "15.12.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1EWLvhmL2MTLv92cuEWMtM3b05iYz0SavBnL20yY4VmLw4SMx4CNuMjMukDNz0yZulGdv9GazhSI", + value: "!(shooting-349.23.4.11.0.exc-6.poi-3b.tos-1a.soo-36.ho-a5)!", + result: { + word: "shooting", + correct: 23, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "15.12.2025", + }, + }, + { + date: "15.12.2025", + nick: "User", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1EmLiFWLvh2cuMTLvh2ZuYmMz0CajNjL1cTLhh2duAjL34iMuEjMukDNz0yZulGdv9GazhSI", + value: "!(shooting-349.21.2.7.0.wha-75.3ch-32f.gho-3.sho-ab.a5)!", + result: { + word: "shooting", + correct: 21, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "15.12.2025", + }, + }, + { + date: "15.12.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1EWLvhmLlRWMt8GdukTMtc3bz5CZtM3bs5iZ40yZvRmLyYTLtF2ZuAjL54yMuUjMukDNz0yZulGdv9GazhSI", + value: "!(shooting-349.25.3.9.0.gam-62.dog-8f.los-d.sow-19.to-1de.ho-a5)!", + result: { + word: "shooting", + correct: 25, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "15.12.2025", + }, + }, + { + date: "15.12.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1EWLvhmL3UWLhx2cuAjL24CMuQTMukDNz0yZulGdv9GazhSI", + value: "!(shooting-349.14.0.6.0.sla-e7.ho-a5)!", + result: { + word: "shooting", + correct: 14, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "15.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/eh-16-11-2025-diffle-diffleen-grywebowe-25-letters-in-3-words-large-green-circle" +] = [ + { + date: "16.11.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0UjLkRTLyV2ZucTZtEGbz5CMucjLx4yNx4CMyMTL55WYtJXZnhSI", + value: "!(germany-320.17.1.7.0.sla-e7.ger-4d.54)!", + result: { + word: "germany", + correct: 17, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "16.11.2025", + }, + }, + { + date: "16.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0UjLkRTLyV2ZuMjMy0CajNjLwITLyJXYuYDOtEWZy5CMucjL04SMy4CMyMTL55WYtJXZnhSI", + value: "!(germany-320.21.4.7.0.rea-86.arr-20.3ch-223.ger-4d.54)!", + result: { + word: "germany", + correct: 21, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "16.11.2025", + }, + }, + { + date: "16.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0UTLyVmLwETLlJ3ZugTOtA3bj5CMukjL04yMx4CMyMTL55WYtJXZnhSI", + value: "!(germany-320.13.4.9.0.cop-98.gre-10.er-54)!", + result: { + word: "germany", + correct: 13, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "16.11.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTNuczNuQGNtIXZn5CN50iclRmLzITL09WbuAjLxEjLx4SNy4CMyMTL55WYtJXZnhSI", + value: "!(germany-320.25.1.11.0.mot-23.der-94.ger-4d.77.54)!", + result: { + word: "germany", + correct: 25, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + }, + }, + { + date: "16.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTNuQGNtIXZuIjNt0WYn5CMuAjLy4iNx4CMyMTL55WYtJXZnhSI", + value: "!(germany-320.16.2.0.0.gam-62.er-4d.54)!", + result: { + word: "germany", + correct: 16, + position: 2, + incorrect: 0, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "16.11.2025", + }, + }, + { + date: "16.11.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTNuMGOtIXZn5SNhFTLtVGZuUWMtUmcj5CMugjL14CMy4CMyMTL55WYtJXZnhSI", + value: "!(germany-320.20.5.8.0.cre-1e.dem-1a5.ger-8c.54)!", + result: { + word: "germany", + correct: 20, + position: 5, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "16.11.2025", + }, + }, + { + date: "16.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCN10icldmLhFTLl5WZuADOt0WZy5CNlNTLs9GcuIjLwEjL14SNx4CMyMTL55WYtJXZnhSI", + value: "!(germany-320.15.5.10.2.pol-3e4.rem-80.ene-1a.ger-54)!", + result: { + word: "germany", + correct: 15, + position: 5, + incorrect: 10, + knownIncorrect: 2, + totalWords: 4, + totalLetters: 30, + date: "16.11.2025", + }, + }, + { + date: "16.11.2025", + nick: "Endrevoir", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCN14SN14CZ04SY04CNh1icldmLzITL09WbuAjLyEjLx4SOy4CMyMTL55WYtJXZnhSI", + value: "!(germany-320.29.1.12.0.mot-23.ger-a4.4a.4d.55.54)!", + result: { + word: "germany", + correct: 29, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 42, + date: "16.11.2025", + }, + }, + { + date: "16.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0UTLyVmL1YWLhJ3ZuEzMt0WYq5iYhRjLjBzMtg2Yz4CNx0SZ29mLkFWLyVmZuQjMtIXZk5iZ0UWLlJHcuYTLjhXZuAjL5EjL14COy4CMyMTL55WYtJXZnhSI", + value: + "!(germany-320.28.5.19.0.exc-6.pre-e4f.der-24.fer-ad.ove-14.3ch-30c.4ab.jam-31.gra-f5.er-54)!", + result: { + word: "germany", + correct: 28, + position: 5, + incorrect: 19, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 52, + date: "16.11.2025", + }, + }, + { + date: "16.11.2025", + nick: "tosiu", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=hkyY0MjMx4SO0ETL65CMmNWLhJHcuEWYtIXZn5CZjJWMt42br5yMukTMuMjL0IjLwIzMtEGclp3Y5pncwhSI", + value: "!(przyczepa-320.24.3.19.3.kon-1bcd.ger-aa.pra-cf0.z-149.1234c)!", + result: { + word: "przyczepa", + correct: 24, + position: 3, + incorrect: 19, + knownIncorrect: 3, + totalWords: 5, + totalLetters: 46, + date: "16.11.2025", + }, + }, + { + date: "16.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0UjLkRTLyV2ZuIWMtEWZt5SYtUXZm5CMucjLz4COx4CMyMTL55WYtJXZnhSI", + value: "!(germany-320.18.3.7.0.feu-a.mea-1b.ger-4d.54)!", + result: { + word: "germany", + correct: 18, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "16.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/fajne-slowo-slightly-smiling-face-09-10-2025-diffle-diffleen-grywebowe-22-letter" +] = [ + { + date: "09.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMlFmLxMWYtUmcw5iN40SYlJnLw4SNuAjL3EjLygjMtUmc1RXYtVmcwhSI", + value: "!(premature-282.17.0.5.0.rea-86.pre-ac1.ae3)!", + result: { + word: "premature", + correct: 17, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "09.10.2025", + }, + }, + { + date: "09.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMTZh1SZyBnL1QTLtVmcuATNtIXam5SZx0SZyNmLw4iNuEjLxIjLygjMtUmc1RXYtVmcwhSI", + value: "!(premature-282.21.1.6.0.cre-1e.fir-50.rem-45.pre-ae3)!", + result: { + word: "premature", + correct: 21, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "09.10.2025", + }, + }, + { + date: "09.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMlFWLlJnLzATMtEGbw5SN00Cdh5SZ3ITL0VWbuYmYtkGcl5CMuITMuMjL0IjLygjMtUmc1RXYtVmcwhSI", + value: "!(premature-282.24.3.12.0.epi-bf.met-27e.at-45.pla-103.re-ae3)!", + result: { + word: "premature", + correct: 24, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 39, + date: "09.10.2025", + }, + }, + { + date: "09.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzUWYtUmcw5SZx0CclRmL20yY4VmLw4iNuIjL5EjLygjMtUmc1RXYtVmcwhSI", + value: "!(premature-282.19.2.6.0.exc-6.dep-1e.pre-ae3)!", + result: { + word: "premature", + correct: 19, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "09.10.2025", + }, + }, + { + date: "09.10.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMTZh1SZy5SN10SdvBnL00yYuAjYtIXYt5iM20SbhdmLw4COuIjLxIjLygjMtUmc1RXYtVmcwhSI", + value: "!(premature-282.21.2.8.0.gam-62.mar-b0.c-4.pou-55.re-ae3)!", + result: { + word: "premature", + correct: 21, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "09.10.2025", + }, + }, + { + date: "09.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzUWYtUmcw5CO20ic1NmL1ETLtFGcugTMtAXbh5CN00SYl1mLh1SdlZmLw4COucjLzIjLygjMtUmc1RXYtVmcwhSI", + value: + "!(premature-282.23.7.8.0.feu-a.mea-44.amp-18.pam-15.cur-68.pre-ae3)!", + result: { + word: "premature", + correct: 23, + position: 7, + incorrect: 8, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "09.10.2025", + }, + }, + { + date: "09.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMlFWLl5iMh1ybyBnLw4SNuAjL1EjLygjMtUmc1RXYtVmcwhSI", + value: "!(premature-282.15.0.5.0.pro-a2.e-ae3)!", + result: { + word: "premature", + correct: 15, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "09.10.2025", + }, + }, + { + date: "09.10.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzUWYtUmLzETMtEmcw5CO50CcvNmLw4COuEjL4EjLygjMtUmc1RXYtVmcwhSI", + value: "!(premature-282.18.1.8.0.cop-98.pra-113.e-ae3)!", + result: { + word: "premature", + correct: 18, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "09.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/generalnie-latwe-spokojnie-moglem-w-dwoch-30-06-2025-diffle-diffleen-grywebowe-1" +] = [ + { + date: "30.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKy0ycp5SNi1SatFmL2gTLhVmcuAjL34SMuETMuEDOx0SZsNXahhSI", + value: "!(aisle-181.11.1.7.0.rea-86.ami-b5.is-2)!", + result: { + word: "aisle", + correct: 11, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "30.06.2025", + }, + }, + { + date: "30.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKy0ycpFmLkVTLsFWbuIWLkl2cuEWZ40ybyBnLw4CMx4yMuMTMuEDOx0SZsNXahhSI", + value: "!(aisle-181.13.3.10.0.pro-8ea.sid-b.mal-5d.ais-2)!", + result: { + word: "aisle", + correct: 13, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "30.06.2025", + }, + }, + { + date: "30.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMtMXah5CZtYWaz5SMtUHaj5yNy0yauFmLyETMtwWYw5iM20SbhdmLw4iMx4SMuQTMuEDOx0SZsNXahhSI", + value: "!(aisle-181.14.1.12.0.gam-62.pal-112.ank-27.chu-1.sif-d.ais-2)!", + result: { + word: "aisle", + correct: 14, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 27, + date: "30.06.2025", + }, + }, + { + date: "30.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMtMnL20CbpFmL4kTLw92YuAjL54SMuITMuEDOx0SZsNXahhSI", + value: "!(aisle-181.12.1.9.0.cop-98.ail-6.s-2)!", + result: { + word: "aisle", + correct: 12, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "30.06.2025", + }, + }, + { + date: "30.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITLzlmLwETLpNnLyMTLzVXYuAjL24iMuETMuEDOx0SZsNXahhSI", + value: "!(aisle-181.11.2.6.0.aus-32.si-10.is-2)!", + result: { + word: "aisle", + correct: 11, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "30.06.2025", + }, + }, + { + date: "30.06.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITLzlWYuITYt8mcw5CMucjLy4yNuEDOx0SZsNXahhSI", + value: "!(aisle-181.7.2.7.0.pro-a2.ais-2)!", + result: { + word: "aisle", + correct: 7, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "30.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/humorystyczne-06-07-2025-diffle-diffleen-grywebowe-33-letters-in-5-words-large-g" +] = [ + { + date: "06.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEjMtkmc15SO30yZulmL3ITL0FmcuYDN50SZ29mLkdzMtIXYj5CMukjLy4iMy4yN4ETLlRXYulmc1hSI", + value: "!(urinate-187.22.2.9.0.car-37d.ove-946.rat-27.ing-79.uri-21)!", + result: { + word: "urinate", + correct: 22, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "06.07.2025", + }, + }, + { + date: "06.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxITLpJXduQmNtU3bw5CM0ETLm5WauEjMtUGaj5CMugjLz4iNx4yN4ETLlRXYulmc1hSI", + value: "!(urinate-187.16.3.8.0.che-21.inf-140.pou-6d.uri-21)!", + result: { + word: "urinate", + correct: 16, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "06.07.2025", + }, + }, + { + date: "06.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEjMtkmcuATNtgmb15SYtUXZm5CMukjLy4iMx4yN4ETLlRXYulmc1hSI", + value: "!(urinate-187.12.2.9.0.feu-a.unh-50.ri-21)!", + result: { + word: "urinate", + correct: 12, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "06.07.2025", + }, + }, + { + date: "06.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMy0SayVnL4QTLuVHZuY2MtUmcj5CZjhTLvJHcucjMtQXYy5iNl1ichJmLyYTLtF2ZuAjLxEjLy4SNy4yN4ETLlRXYulmc1hSI", + value: + "!(urinate-187.25.2.11.0.gam-62.bar-e6.rat-27.pro-8cd.cre-3f.dun-48.uri-21)!", + result: { + word: "urinate", + correct: 25, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 38, + date: "06.07.2025", + }, + }, + { + date: "06.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxITLpJXdugTOtA3bj5CMugjLx4SMx4yN4ETLlRXYulmc1hSI", + value: "!(urinate-187.11.1.8.0.cop-98.uri-21)!", + result: { + word: "urinate", + correct: 11, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "06.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/i-znowu-pomylka-o-jedna-w-przedostatnim-slightly-smiling-face-30-10-2025-diffle-" +] = [ + { + date: "30.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITYx4iZ5ETLlhmLiZTLyV2cuYDOtEWZy5CMuUjLy4SOx4yMwMTLmZWayVGazhSI", + value: "!(sheriff-303.19.2.5.0.rea-86.ser-6b.he-19f.1a2)!", + result: { + word: "sheriff", + correct: 19, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "30.10.2025", + }, + }, + { + date: "30.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyEWMuYWOx0SZoNnL3ETLvJXZuUWMtUmcj5CMucjLy4yNx4yMwMTLmZWayVGazhSI", + value: "!(sheriff-303.17.2.7.0.cre-1e.ero-17.she-19f.1a2)!", + result: { + word: "sheriff", + correct: 17, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "30.10.2025", + }, + }, + { + date: "30.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMhFjL5QTLlh2cuYmMz0CajNjLhFjMtIXZz5iM5QTLyVGcuIWNx0icl1mL5ETLpVmcuYTLjhXZuAjL4EjLz4iMy4yMwMTLmZWayVGazhSI", + value: + "!(sheriff-303.22.3.18.0.exc-6.rei-19.mer-15b.per-492.ser-21a.3ch-32f.she-49.1a2)!", + result: { + word: "sheriff", + correct: 22, + position: 3, + incorrect: 18, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 43, + date: "30.10.2025", + }, + }, + { + date: "30.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMhFTLl5yNlFTLhh2cucTZtkmci5CMuYjL04iMx4yMwMTLmZWayVGazhSI", + value: "!(sheriff-303.12.4.6.0.bri-e7.sha-1e7.e-1a2)!", + result: { + word: "sheriff", + correct: 12, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "30.10.2025", + }, + }, + { + date: "30.10.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITYx0SZo5iMk1iclNnL0ITLvJXZuIjNt0WYn5CMuYjLw4yNx4yMwMTLmZWayVGazhSI", + value: "!(sheriff-303.17.0.6.0.gam-62.ero-24.ser-d2.he-1a2)!", + result: { + word: "sheriff", + correct: 17, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "30.10.2025", + }, + }, + { + date: "30.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMhFjLmlTMtUmLmFTLyhmLxYTLlBnLmNTL0V2cuEWL1VmZuAjL0EjLz4SNy4yMwMTLmZWayVGazhSI", + value: "!(sheriff-303.25.3.14.0.feu-a.set-3f.pe-61.hr-1f.e-19f.1a2)!", + result: { + word: "sheriff", + correct: 25, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 42, + date: "30.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/irytujace-23-09-2025-diffle-diffleen-grywebowe-38-letters-in-6-words-large-green" +] = [ + { + date: "23.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjVzMtIXZw5COwgTLoN2MuYWMtAXaw5CO30SasZmLmNTLylGZuYDOtEWZy5CMuETMuMjL0IjL2YjMtknclhGcpJXZwhSI", + value: + "!(periphery-266.24.3.11.0.rea-86.dir-3f.fli-78.pip-1f.3ch-808.per-35c)!", + result: { + word: "periphery", + correct: 24, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "23.09.2025", + }, + }, + { + date: "23.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjVzMuEWYz0iclBnLxIWNtg2Yz4SZx0CclBnLz0icpdnL10SZlBnLlJTLnlmYuUzMtk2buQ2MtUWaw5SMx0yYp1mLkVDOtMXak5yMuQjMuEjLyQjL2YjMtknclhGcpJXZwhSI", + value: + "!(periphery-266.42.1.24.3.dis-85d.mic-11.pie-3d.oi-35.big-2e.pee-5.wir-3.pep-1e.3ch-5b1.per-3aa.35c)!", + result: { + word: "periphery", + correct: 42, + position: 1, + incorrect: 24, + knownIncorrect: 3, + totalWords: 11, + totalLetters: 67, + date: "23.09.2025", + }, + }, + { + date: "23.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyY1MTLyVGcuU2MtIXZq5COyITLpJHcuMGMz0CajNjLykTLoNmMukjY10iclBnLxITLwlHauU2Y10CajNjL1ETMtwWZk5COwgTLoN2MuEjNt4Wdi5SOj1iclZmL0ITLvJXZuIjNt0WYn5CMukTMuQjL2QjL2YjMtknclhGcpJXZwhSI", + value: + "!(periphery-266.46.4.19.0.gam-62.ero-24.fer-c9.bun-61.3ch-808.del-115.3ch-5ce.hyp-21.per-5b9.2ch-92.3ch-30c.pri-228.jer-3e.per-35c)!", + result: { + word: "periphery", + correct: 46, + position: 4, + incorrect: 19, + knownIncorrect: 0, + totalWords: 14, + totalLetters: 69, + date: "23.09.2025", + }, + }, + { + date: "23.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMWNz4SO5ETLyVGcuYGNx0SZyJmLmFWNtg2Yz4SYtUXZm5CMuETMuEjLwIjL2YjMtknclhGcpJXZwhSI", + value: "!(periphery-266.20.1.11.0.feu-a.3ch-5af.bre-14f.per-199.35c)!", + result: { + word: "periphery", + correct: 20, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "23.09.2025", + }, + }, + { + date: "23.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyY1MTLyVmL4IjMtkmcw5iYwQTLoN2MuETL1d3cuQ2MtUWauITYt8mcw5CMuUTMuEjLxIjL2YjMtknclhGcpJXZwhSI", + value: + "!(periphery-266.21.1.15.0.pro-a2.ie-3d.swu-1.3ch-40b.pri-228.er-35c)!", + result: { + word: "periphery", + correct: 21, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "23.09.2025", + }, + }, + { + date: "23.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyY1MjL3I2MtIXZw5CO50CcvNmLw4SOuEjLwIjL2YjMtknclhGcpJXZwhSI", + value: "!(periphery-266.20.1.9.0.cop-98.per-3b7.35c)!", + result: { + word: "periphery", + correct: 20, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "23.09.2025", + }, + }, + { + date: "23.09.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyY1MTLyVGcuYWMy0iclNnL5ETLyVmYugDMx0iclRnLxYTLlJnZuUWMtUmcj5CMuETMuEjLwMjL2YjMtknclhGcpJXZwhSI", + value: + "!(periphery-266.30.1.11.0.cre-1e.fre-61.ter-108.ber-19.ser-21f.per-35c)!", + result: { + word: "periphery", + correct: 30, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 42, + date: "23.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/jak-w-polskim-od-drugiego-to-juz-tylko-docieranie-i-szczescie-18-09-2025-diffle-" +] = [ + { + date: "18.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEWOuEzNt4Wdw5yYwYTLoN2MuATLmVHcuATM20CajNjL2UWLjF2cuAjL1EjLw4SNx4SM2ITLr5WdwhSI", + value: "!(punk-261.15.0.15.0.sac-e6.3ch-610.puf-0.3ch-60c.pun-71.9a)!", + result: { + word: "punk", + correct: 15, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "18.09.2025", + }, + }, + { + date: "18.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY50ib1BnLhNTLuVHZuYDOtEWZy5CMuETMuAjL34SM2ITLr5WdwhSI", + value: "!(punk-261.7.0.11.0.rea-86.dun-3a.pun-9a)!", + result: { + word: "punk", + correct: 7, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "18.09.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhlTLuVHcucTOtg2Yz4yM40yc1JmLzITL09WbuAjLzEjLw4CMx4SM2ITLr5WdwhSI", + value: "!(punk-261.10.0.13.0.mot-23.bus-83.3ch-97.pun-9a)!", + result: { + word: "punk", + correct: 10, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + }, + }, + { + date: "18.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY50ib1BnLk1CZ11mLmdTMt8Gaz5iNtMGel5CMuYTMuAjL34SM2ITLr5WdwhSI", + value: "!(punk-261.7.0.16.0.exc-6.sho-17f.mud-d.pun-9a)!", + result: { + word: "punk", + correct: 7, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "18.09.2025", + }, + }, + { + date: "18.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY50ib15SOt42bw5iM20SbhdmLw4yNuAjL24SM2ITLr5WdwhSI", + value: "!(punk-261.6.0.7.0.gam-62.pon-9.un-9a)!", + result: { + word: "punk", + correct: 6, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 13, + date: "18.09.2025", + }, + }, + { + date: "18.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEWOt4WduITYt8mcw5CMuATMuAjL14SM2ITLr5WdwhSI", + value: "!(punk-261.5.0.10.0.pro-a2.un-9a)!", + result: { + word: "punk", + correct: 5, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "18.09.2025", + }, + }, + { + date: "18.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhlTLu5CMtYmLiFTLtVHcugTOtA3bj5CMuYTMuAjL54SM2ITLr5WdwhSI", + value: "!(punk-261.9.0.16.0.cop-98.pum-1b.f-0.n-9a)!", + result: { + word: "punk", + correct: 9, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "18.09.2025", + }, + }, + { + date: "18.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEWOt4mLzETLjVnL5cTL19GcuEWL1VmZuAjLxEjLw4CMx4SM2ITLr5WdwhSI", + value: "!(punk-261.10.0.11.0.feu-a.pou-79.uc-13.n-9a)!", + result: { + word: "punk", + correct: 10, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "18.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/jestem-z-siebie-dumny-ze-to-zgadlem-tak-szybko-26-07-2025-diffle-diffleen-gryweb" +] = [ + { + date: "26.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIGOtcWak5SZ2ETLulWbuYDOtEWZy5CMucjLx4iMx4yNwITL5RXaudWakhSI", + value: "!(dignity-207.12.1.7.0.rea-86.min-16e.dig-8b)!", + result: { + word: "dignity", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "26.07.2025", + }, + }, + { + date: "26.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIGOtcWak5iNy0CZ15mLw0CdpBnL5gTLt92cuAjLxEjLx4CNx4yNwITL5RXaudWakhSI", + value: "!(dignity-207.14.1.11.0.som-89.pit-0.nud-26.dig-8b)!", + result: { + word: "dignity", + correct: 14, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "26.07.2025", + }, + }, + { + date: "26.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKihjLlNTLnlGZucTL0lmYuETNtc2bs5iN20ib1NnLyYTLtF2ZuAjLxEjLy4COx4yNwITL5RXaudWakhSI", + value: "!(dignity-207.18.2.11.0.gam-62.sun-66.log-51.bit-7.dig-3e.8b)!", + result: { + word: "dignity", + correct: 18, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "26.07.2025", + }, + }, + { + date: "26.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiY40yZpRmLxIWMtg2Yz4CO00ibppmLwEDOuMjNy4iYk1CajNjLzATMtkGdz5COwQTLpJHduEmZ00CbvBnLxITLlh2YuAjL5EjL14SNy4yNwITL5RXaudWakhSI", + value: + "!(dignity-207.25.5.19.0.che-21.pol-4fa.tri-408.sti-103.3ch-db.263.810.jin-48.3ch-1b1.dig-8b)!", + result: { + word: "dignity", + correct: 25, + position: 5, + incorrect: 19, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 49, + date: "26.07.2025", + }, + }, + { + date: "26.07.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIGOtcWak5yM10CdptmLzETLmlmZuQWMy0Sa1FnLyEWLvJHcuAjL1EjLx4iNx4yNwITL5RXaudWakhSI", + value: "!(dignity-207.16.1.15.0.pro-a2.qui-21d.fif-13.kit-53.dig-8b)!", + result: { + word: "dignity", + correct: 16, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "26.07.2025", + }, + }, + { + date: "26.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiY44SZz0yZuEWNtQnLyYTLylGZuEWL1VmZuAjLwEjLw4CMy4yNwITL5RXaudWakhSI", + value: "!(dignity-207.20.0.10.0.feu-a.dir-62.t-5a.g-3e.8b)!", + result: { + word: "dignity", + correct: 20, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "26.07.2025", + }, + }, + { + date: "26.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKihTLnlGZugTOtA3bj5CMukjLx4CMx4yNwITL5RXaudWakhSI", + value: "!(dignity-207.10.1.9.0.cop-98.dig-8b)!", + result: { + word: "dignity", + correct: 10, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "26.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/jprdl-20-10-2025-diffle-diffleen-29-letters-in-5-words-large-green-circle-21-lar" +] = [ + { + date: "20.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwYTLk9WbuczMtg3b05CZi1yYvxmLkVTL1N2cuUWMtUmcj5CMugjLw4SMy4yM5ITLtV3YpR2bthSI", + value: "!(modicum-293.21.0.8.0.cre-1e.scu-5d.loc-bd.tox-37.mod-60)!", + result: { + word: "modicum", + correct: 21, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "20.10.2025", + }, + }, + { + date: "20.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpAjNtQ2bt5yYk5yNkdjL0YjMugTZz0CajNjLyETLpVXcuITLjl2duQDZ04CMmRTLoN2MuYWMx0CbvBnL2gTLhVmcuAjLwIjL04SNy4yM5ITLtV3YpR2bthSI", + value: + "!(modicum-293.25.4.20.0.rea-86.pol-11f.3ch-4f0.4d4.wic-2.qui-12.3ch-3e8.264.7d7.dc.mod-60)!", + result: { + word: "modicum", + correct: 25, + position: 4, + incorrect: 20, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 49, + date: "20.10.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM20CZuMjMtQ3bt5CMugjLx4CMx4yM5ITLtV3YpR2bthSI", + value: "!(modicum-293.10.1.8.0.mot-23.d-60)!", + result: { + word: "modicum", + correct: 10, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + }, + }, + { + date: "20.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM20CZv1mLhRGNtg2Yz4SZ00CZp1mLzQGNuUTNx0CajNjLxETLp9mduATLmVHcuEjNtU3bk5yYtMWa05yMwMTL192YuYTLjhXZuAjL5EjL24COy4yM5ITLtV3YpR2bthSI", + value: + "!(modicum-293.28.6.19.0.exc-6.cou-303.tic-c.dou-61.puf-0.voi-11.3ch-155.4d3.mid-4e.3ch-4da.mod-60)!", + result: { + word: "modicum", + correct: 28, + position: 6, + incorrect: 19, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 53, + date: "20.10.2025", + }, + }, + { + date: "20.10.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwYTLk9WbucDM20CajNjLiVjLyYjLjVjL2gTLk5yMx0CbugjY00ibv1mLyYTLtF2ZuAjLzEjLw4COy4yM5ITLtV3YpR2bthSI", + value: + "!(modicum-293.28.0.13.0.gam-62.mon-4b8.l-13.d-86.5c.62.5b.3ch-607.mod-60)!", + result: { + word: "modicum", + correct: 28, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 41, + date: "20.10.2025", + }, + }, + { + date: "20.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwYTLk9WbuAzNt4Wdm5yN50yYpRmLyEWLvJHcuAjLxEjLy4CNx4yM5ITLtV3YpR2bthSI", + value: "!(modicum-293.14.2.11.0.pro-a2.dic-97.fun-70.mod-60)!", + result: { + word: "modicum", + correct: 14, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "20.10.2025", + }, + }, + { + date: "20.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpAjNtQ2bt5iYkVTLoN2MuATMtkGZv5SYtUXZm5CMuYjLx4yNx4yM5ITLtV3YpR2bthSI", + value: "!(modicum-293.17.1.6.0.feu-a.odi-10.3ch-5db.mod-60)!", + result: { + word: "modicum", + correct: 17, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "20.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/kilgore-05-09-2025-diffle-diffleen-grywebowe-22-letters-in-4-words-large-green-c" +] = [ + { + date: "05.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyYmFTLvJHduMTOt8mcn5SYk1icvBnL2gTLhVmcuAjL44iMuITMugDNy0Cd19mc0hSI", + value: "!(trout-248.12.2.8.0.rea-86.por-da.gro-93.tro-1fc)!", + result: { + word: "trout", + correct: 12, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "05.09.2025", + }, + }, + { + date: "05.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyYmFTLvJHduIDZtU3by5SO4UTLoN2MuETZtU3bi5SZz0SdvdmL5cTL19GcuEDOy0yculmLw4SNx4CMuMjMugDNy0Cd19mc0hSI", + value: + "!(trout-248.23.0.15.0.ins-281.pou-79.gou-3e.bou-e1.3ch-589.rou-d2.tro-1fc)!", + result: { + word: "trout", + correct: 23, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 38, + date: "05.09.2025", + }, + }, + { + date: "05.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjZWMt8mc05iYwETLvJ3ZuIDZtU3by5CO10SdvBnLh1SdlZmLw4CMx4SMuYTMugDNy0Cd19mc0hSI", + value: "!(trout-248.16.1.10.0.feu-a.pou-58.rou-d2.gro-10b.tro-1fc)!", + result: { + word: "trout", + correct: 16, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "05.09.2025", + }, + }, + { + date: "05.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyYmFTLvJHduMmNt82by5CO50CcvNmLw4SMx4SMuATMugDNy0Cd19mc0hSI", + value: "!(trout-248.10.1.11.0.cop-98.roo-6c.tro-1fc)!", + result: { + word: "trout", + correct: 10, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "05.09.2025", + }, + }, + { + date: "05.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMmZx0ybuYTMx0SdyRnL20yY4VmLw4yMx4iMuATMugDNy0Cd19mc0hSI", + value: "!(trout-248.10.2.13.0.exc-6.tru-116.o-1fc)!", + result: { + word: "trout", + correct: 10, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "05.09.2025", + }, + }, + { + date: "05.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyYmFTLvJHduQjZtIHcz5CM30SdvJnLyYTLtF2ZuAjL44CMuMTMugDNy0Cd19mc0hSI", + value: "!(trout-248.13.0.8.0.gam-62.rou-70.spr-f4.tro-1fc)!", + result: { + word: "trout", + correct: 13, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "05.09.2025", + }, + }, + { + date: "05.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyYmFTLvJHduUzYt8mck5iMh1ybyBnLw4SMx4CMuITMugDNy0Cd19mc0hSI", + value: "!(trout-248.12.0.11.0.pro-a2.dro-c5.tro-1fc)!", + result: { + word: "trout", + correct: 12, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "05.09.2025", + }, + }, + { + date: "05.09.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjZWMt8mc05iYwETLvJ3ZuYmMtI2by5CZx0SayRmLwkTMt8Gcz5SZx0SZyNmLw4yMx4SMucTMugDNy0Cd19mc0hSI", + value: + "!(trout-248.17.1.13.0.cre-1e.spo-190.dri-1d.rob-2f.gro-10b.tro-1fc)!", + result: { + word: "trout", + correct: 17, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "05.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/kurcze-jakie-to-bylo-oczywiste-w-perspektywie-rzecz-jasna-02-11-2025-diffle-diff" +] = [ + { + date: "02.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5EWLjVmcuIWNtUWZi5CM50yYlJnLlR2MtEGaj5CZz0SZpBnL2UTLpJXauAjL54iMuUjMuYDMz0iclZXalNWZyhSI", + value: + "!(receiver-306.25.2.9.0.iri-56.pie-3d.cha-3de.rec-90.bee-5b.rec-a9)!", + result: { + word: "receiver", + correct: 25, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "02.11.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTYugjMtMWZy5yMy0Cdv1mLw4CMx4SMucTMuYDMz0iclZXalNWZyhSI", + value: "!(receiver-306.17.1.10.0.mot-23.rec-28.a9)!", + result: { + word: "receiver", + correct: 17, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + }, + }, + { + date: "02.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOh1yYlJnL30SZlZnL4ETLyVmauMWMtkmcn5CZtMXZ35CZ5ETLphmL0cTLw92YuETYx0yYlRmL20yY4VmLw4CMy4SMuMzMuYDMz0iclZXalNWZyhSI", + value: + "!(receiver-306.33.1.20.0.exc-6.dec-1a1.cop-74.hi-19d.wes-d.gri-1c.jer-18.vee-7.rec-a9)!", + result: { + word: "receiver", + correct: 33, + position: 1, + incorrect: 20, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 54, + date: "02.11.2025", + }, + }, + { + date: "02.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTYucTYtMWZy5CO50CcvNmLw4CMx4SMugTMuYDMz0iclZXalNWZyhSI", + value: "!(receiver-306.18.1.10.0.cop-98.rec-a7.a9)!", + result: { + word: "receiver", + correct: 18, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "02.11.2025", + }, + }, + { + date: "02.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOh1yYuMWZx0Sal5CZx0idpJnLy0idpdnL00idphmL0ITL2lGZuUWMtYXas5CMx0ibulmLkJTMtM3bw5iM20SbhdmLw4yMx4CMuIDNuYDMz0iclZXalNWZyhSI", + value: + "!(receiver-306.42.0.13.0.gam-62.pos-12d.inn-10.liv-1e.div-24.hiv-4.wiv-2.riv-1d.ei-1ec.c-a9)!", + result: { + word: "receiver", + correct: 42, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 55, + date: "02.11.2025", + }, + }, + { + date: "02.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOh1yYlJnL1QTLvh2YuUmNx0SayBnLh1SdlZmLw4iMx4CMuUTMuYDMz0iclZXalNWZyhSI", + value: "!(receiver-306.15.0.12.0.feu-a.pri-16e.cho-45.rec-a9)!", + result: { + word: "receiver", + correct: 15, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "02.11.2025", + }, + }, + { + date: "02.11.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5EWLjVmcuEWLpVnauQWL0lGZuIjMt8Gbi5iYm1SYyNmLw4yMx4iMuAjMuYDMz0iclZXalNWZyhSI", + value: "!(receiver-306.20.2.13.0.cra-fb.blo-22.dit-d.jui-a.rec-a9)!", + result: { + word: "receiver", + correct: 20, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "02.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ladnie-dzisiaj-siada-01-11-2025-diffle-diffleen-grywebowe-23-letters-in-3-words-" +] = [ + { + date: "01.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKx0icpdmLkFWLhJHcuYDOtEWZy5CMugjLz4iMx4SNwMTLlZmZhJXanhSI", + value: "!(giraffe-305.12.3.8.0.rea-86.pra-ad.gir-1)!", + result: { + word: "giraffe", + correct: 12, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "01.11.2025", + }, + }, + { + date: "01.11.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMtIXan5CMx0iZpJnLzITL09WbuAjLwEjLx4CNx4SNwMTLlZmZhJXanhSI", + value: "!(giraffe-305.14.1.10.0.mot-23.rif-10.gir-1)!", + result: { + word: "giraffe", + correct: 14, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "01.11.2025", + }, + }, + { + date: "01.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKx0icpdmLmFTLylWbuczNtkWYy5SY0ETLwVGZuAjLxEjL04iNx4SNwMTLlZmZhJXanhSI", + value: "!(giraffe-305.16.4.11.0.dep-14a.rai-77.mir-1f.gir-1)!", + result: { + word: "giraffe", + correct: 16, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "01.11.2025", + }, + }, + { + date: "01.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETLyl2ZuMGNtIXah5SZz0icvdnLm1SZuQmMtEWZuQTLylmZuYTLjhXZuAjL1EjL24SOx4SNwMTLlZmZhJXanhSI", + value: + "!(giraffe-305.19.6.15.0.exc-6.fir-4.ea-2d.e-f.wor-3e.air-4c.gir-1)!", + result: { + word: "giraffe", + correct: 19, + position: 6, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "01.11.2025", + }, + }, + { + date: "01.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETLylmL4UzMtEmcuIjNt0WYn5CMuMjLx4CNx4SNwMTLlZmZhJXanhSI", + value: "!(giraffe-305.14.1.3.0.gam-62.ra-358.ir-1)!", + result: { + word: "giraffe", + correct: 14, + position: 1, + incorrect: 3, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "01.11.2025", + }, + }, + { + date: "01.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETLyl2ZugTOtA3bj5CMugjLy4CMx4SNwMTLlZmZhJXanhSI", + value: "!(giraffe-305.10.2.8.0.cop-98.gir-1)!", + result: { + word: "giraffe", + correct: 10, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "01.11.2025", + }, + }, + { + date: "01.11.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETLylmLkRTLhJ3ZuUjNt4WYy5iMwETLhB3cuUWMtUmcj5CMucjLz4COx4SNwMTLlZmZhJXanhSI", + value: "!(giraffe-305.18.3.7.0.cre-1e.spa-102.ran-65.gra-4d.ir-1)!", + result: { + word: "giraffe", + correct: 18, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "01.11.2025", + }, + }, + { + date: "01.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMtIXan5CMtYWa35SYtUXZm5CMuYjLy4iMx4SNwMTLlZmZhJXanhSI", + value: "!(giraffe-305.12.2.6.0.feu-a.wif-0.gir-1)!", + result: { + word: "giraffe", + correct: 12, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "01.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ladnie-dzisiaj-wchodzi-wbrew-haslu-slightly-smiling-face-13-10-2025-diffle-diffl" +] = [ + { + date: "13.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEGOy0ycp1mLiJTLzl2duYWNtUWaw5iN40SYlJnLw4yNuMjL1EjL2gjMtknclNXathSI", + value: "!(misery-286.15.3.7.0.rea-86.pie-5f.wis-2b.mis-28a)!", + result: { + word: "misery", + correct: 15, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "13.10.2025", + }, + }, + { + date: "13.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhhjMtMXat5iYy0ycpdnL50ycpRnLlNjMtMWZk5SMuMTMuEjL1EjL2gjMtknclNXathSI", + value: "!(misery-286.15.1.13.1.dec-23e.tis-9.wis-2b.mis-28a)!", + result: { + word: "misery", + correct: 15, + position: 1, + incorrect: 13, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 29, + date: "13.10.2025", + }, + }, + { + date: "13.10.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEGOy0ycuYTZtwWauMjMtQ3bt5CMuETMuEjLzEjL2gjMtknclNXathSI", + value: "!(misery-286.13.1.11.0.mot-23.il-e6.s-28a)!", + result: { + word: "misery", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "13.10.2025", + }, + }, + { + date: "13.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhhjMtMXat5iN00SZpZmL20yY4VmLw4yNuEjLyEjL2gjMtknclNXathSI", + value: "!(misery-286.12.1.7.0.exc-6.fie-46.mis-28a)!", + result: { + word: "misery", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "13.10.2025", + }, + }, + { + date: "13.10.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhhjMtMXaucjMtIXdt5iM20SbhdmLw4SNuEjLyEjL2gjMtknclNXathSI", + value: "!(misery-286.12.1.5.0.gam-62.mur-27.is-28a)!", + result: { + word: "misery", + correct: 12, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "13.10.2025", + }, + }, + { + date: "13.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY4ITLz5SZ00ibuYmMtIXat5iMh1ybyBnLw4COuMjL1EjL2gjMtknclNXathSI", + value: "!(misery-286.15.3.8.0.pro-a2.mir-2f.n-4e.s-28a)!", + result: { + word: "misery", + correct: 15, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "13.10.2025", + }, + }, + { + date: "13.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhhjMuE2Ny0ycp1mLh1SdlZmLw4SNuIjLzEjL2gjMtknclNXathSI", + value: "!(misery-286.13.2.5.0.feu-a.mis-27a.28a)!", + result: { + word: "misery", + correct: 13, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "13.10.2025", + }, + }, + { + date: "13.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY4ITLzlWbuMWNtQHcv5SZx0SZyNmLw4yNuIjLyEjL2gjMtknclNXathSI", + value: "!(misery-286.12.2.7.0.cre-1e.opt-5c.mis-28a)!", + result: { + word: "misery", + correct: 12, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "13.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/latwe-18-08-2025-diffle-diffleen-grywebowe-27-letters-in-5-words-large-green-cir" +] = [ + { + date: "18.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCN10icvBnL0Q2MtI3bm5iYy0yb1FnLk1icvxmL2gTLhVmcuAjL0EjLx4iMx4CMzITLrJ3bwhSI", + value: "!(pork-230.12.1.14.0.rea-86.lor-d.quo-2b.for-3d4.por-54)!", + result: { + word: "pork", + correct: 12, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "18.08.2025", + }, + }, + { + date: "18.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0UjLlVjLyYWLy5CO10SdvBnLxMTL3VmYuAjL0EjLw4SNx4CMzITLrJ3bwhSI", + value: "!(pork-230.15.0.14.0.bew-31.pou-58.r-f2.5e.54)!", + result: { + word: "pork", + correct: 15, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "18.08.2025", + }, + }, + { + date: "18.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0UjL5MjLwcjLhFTLy9GcuATOx0ybwNnLmRTLtF2ZuAjLxEjLw4iNx4CMzITLrJ3bwhSI", + value: "!(pork-230.16.0.11.0.gam-4f.spo-190.por-1a.70.39.54)!", + result: { + word: "pork", + correct: 16, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 27, + date: "18.08.2025", + }, + }, + { + date: "18.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCN10icv5iYlRTLvJnLykTLvxGcuEjMtUGaj5CMuITMuEjL44CMzITLrJ3bwhSI", + value: "!(pork-230.8.1.12.0.che-21.plo-92.ro-4eb.or-54)!", + result: { + word: "pork", + correct: 8, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "18.08.2025", + }, + }, + { + date: "18.08.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0UjLwcTLy9GcugTOtA3bj5CMuETMuEjL54CMzITLrJ3bwhSI", + value: "!(pork-230.9.1.11.0.cop-98.por-70.54)!", + result: { + word: "pork", + correct: 9, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "18.08.2025", + }, + }, + { + date: "18.08.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0UTLy5CO10Sdv5iMh1ybyBnLw4SOuEjL54CMzITLrJ3bwhSI", + value: "!(pork-230.9.1.9.0.pro-a2.ou-58.r-54)!", + result: { + word: "pork", + correct: 9, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "18.08.2025", + }, + }, + { + date: "18.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTNtI3bw5iMz0yc1FmLw4COuAjL14CMzITLrJ3bwhSI", + value: "!(pork-230.5.0.8.0.aus-32.por-54)!", + result: { + word: "pork", + correct: 5, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "18.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/latwe-ale-duuuzo-mozliwosci-02-12-2025-diffle-diffleen-grywebowe-48-letters-in-1" +] = [ + { + date: "02.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpczMtAXZk5COtwWZo5CMtYWa35CO30CcwFmLkNTLuVGcuQWMt4WZz5SNy0iblJmL3ITLuVmcuQTMy0CajNjL0kjMtQXdv5CMuYTMuEjLxMjL2MzMtQmblBXZkhSI", + value: + "!(depend-336.31.1.16.0.out-294.3ch-214.ren-27.ben-25.sen-1d.pen-3d.app-78.wif-0.hel-8.dep-37)!", + result: { + word: "depend", + correct: 31, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 48, + date: "02.12.2025", + }, + }, + { + date: "02.12.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3MTLwVGZuAjZtg2Yy4SNx0yZ1BnLlVTLlxmYuYDOtEWZy5CMuQTMuAjLyEjL2MzMtQmblBXZkhSI", + value: "!(depend-336.12.0.14.0.rea-86.ble-5e.pug-15.2ch-f0.dep-37)!", + result: { + word: "depend", + correct: 12, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "02.12.2025", + }, + }, + { + date: "02.12.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpczMtAXZk5yYx0SZlBnLxITLpxWYuITL2V2cuMjMtQ3bt5CMuYTMuEjL3EjL2MzMtQmblBXZkhSI", + value: "!(depend-336.17.1.16.0.mot-23.sev-2.ali-21.pee-1c.dep-37)!", + result: { + word: "depend", + correct: 17, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "02.12.2025", + }, + }, + { + date: "02.12.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpczMtAXZk5CZz0iblBnLhRWMt8Gcz5iNtMGel5CMuITMuAjL0EjL2MzMtQmblBXZkhSI", + value: "!(depend-336.14.0.12.0.exc-6.spo-1da.pen-3d.dep-37)!", + result: { + word: "depend", + correct: 14, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "02.12.2025", + }, + }, + { + date: "02.12.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpczMtAXZk5iN0ETLuVGcuIWNtgGdl5iM20SbhdmLw4SOuAjLxEjL2MzMtQmblBXZkhSI", + value: "!(depend-336.11.0.9.0.gam-62.eth-5b.pen-146.dep-37)!", + result: { + word: "depend", + correct: 11, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "02.12.2025", + }, + }, + { + date: "02.12.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3MTLwVGZuMDNtUWZ35CZxETLlB3cugTOtA3bj5CMuQTMuEjL1EjL2MzMtQmblBXZkhSI", + value: "!(depend-336.15.1.14.0.cop-98.spe-11d.wee-43.dep-37)!", + result: { + word: "depend", + correct: 15, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "02.12.2025", + }, + }, + { + date: "02.12.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNz0CclRmLhJTLlV2aucTZtEGbz5CMuETMuAjLxEjL2MzMtQmblBXZkhSI", + value: "!(depend-336.11.0.11.0.sla-e7.kee-2a.dep-37)!", + result: { + word: "depend", + correct: 11, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "02.12.2025", + }, + }, + { + date: "02.12.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNz0CclRmLyEGNtw2bw5SZx0SZyNmLw4COuAjLwEjL2MzMtQmblBXZkhSI", + value: "!(depend-336.10.0.8.0.cre-1e.pol-4a2.dep-37)!", + result: { + word: "depend", + correct: 10, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "02.12.2025", + }, + }, + { + date: "02.12.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNz0CclRmLkNTLuVGcuUWZx0CZlJnLh1SdlZmLw4SOuAjL0EjL2MzMtQmblBXZkhSI", + value: "!(depend-336.14.0.9.0.feu-a.red-1ee.pen-3d.dep-37)!", + result: { + word: "depend", + correct: 14, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "02.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/latwizna-15-11-2025-diffle-diffleen-31-letters-in-6-words-large-green-circle-16-" +] = [ + { + date: "15.11.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5MWMt8Gaz5yNtc3bo5yN20idv5mLwIWLvxmZuMWZtg2Yz4SZx0SZyNmLw4SNx4CMuYTMukTMz0Se39GazhSI", + value: "!(showy-319.16.0.15.0.cre-1e.3ch-ec.flo-b0.nov-67.how-7.sho-1c9)!", + result: { + word: "showy", + correct: 16, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "15.11.2025", + }, + }, + { + date: "15.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkzYx0yboNnL0ImMtg2Yz4iNjFjL0EWMt8Gaz5iN40SYlJnLw4iMx4SMuUTMukTMz0Se39GazhSI", + value: "!(showy-319.15.1.12.0.rea-86.sho-1a4.1c6.3ch-2b4.sho-1c9)!", + result: { + word: "showy", + correct: 15, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "15.11.2025", + }, + }, + { + date: "15.11.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOjFjLhRWLvh2cuQTLi9GauATLvhWYugzMtw2bo5yMy0Cdv1mLw4iNx4SMukTMukTMz0Se39GazhSI", + value: "!(showy-319.19.1.16.0.mot-23.hol-38.aho-0.hob-4.sho-da.1c9)!", + result: { + word: "showy", + correct: 19, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "15.11.2025", + }, + }, + { + date: "15.11.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOjFjLiRWMuQTYx4SNx4yYh1ybo5yNl1SYsNnLw4iNx4CMuEjMukTMz0Se39GazhSI", + value: "!(showy-319.21.0.16.0.sla-e7.ho-ac.15.1a4.1db.1c9)!", + result: { + word: "showy", + correct: 21, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "15.11.2025", + }, + }, + { + date: "15.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkzYx0yboNnL4IzMtg2Yz4CO50CcvNmLw4CMx4SMuATMukTMz0Se39GazhSI", + value: "!(showy-319.10.1.10.0.cop-98.3ch-328.sho-1c9)!", + result: { + word: "showy", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "15.11.2025", + }, + }, + { + date: "15.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5MWMt8GauEzYt8mbz5yN40ycvBnL20yY4VmLw4iMx4SMuATMukTMz0Se39GazhSI", + value: "!(showy-319.10.1.12.0.exc-6.pos-87.sno-c1.ho-1c9)!", + result: { + word: "showy", + correct: 10, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "15.11.2025", + }, + }, + { + date: "15.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5MWMuQTZx4CNhFjLjFWLvh2cuUWLs9GauAzMtQ3bu5iM20SbhdmLw4iMx4SMukTMukTMz0Se39GazhSI", + value: "!(showy-319.19.1.12.0.gam-62.not-30.hol-e.sho-ac.1a4.1e4.1c9)!", + result: { + word: "showy", + correct: 19, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 32, + date: "15.11.2025", + }, + }, + { + date: "15.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkzYx0yboNnLjRTLvxGcuIWLylWYuAjLxEjLx4yNukTMz0Se39GazhSI", + value: "!(showy-319.7.1.11.0.air-b.plo-4c.sho-1c9)!", + result: { + word: "showy", + correct: 7, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "15.11.2025", + }, + }, + { + date: "15.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOjFjL0EWMuUTMugDOt8GauYjMt42buATOx0ybwNnLh1SdlZmLw4iNx4CMuAjMukTMz0Se39GazhSI", + value: "!(showy-319.20.0.16.0.feu-a.spo-190.on-26.ho-88.15.1a4.1c9)!", + result: { + word: "showy", + correct: 20, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 36, + date: "15.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/latwym-bym-tego-nie-nazwal-13-12-2025-diffle-diffleen-grywebowe-37-letters-in-7-" +] = [ + { + date: "13.12.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwQTL3FGauYDNtEGa35SY40ichRmLxYWMtwWYt5SOi1CajNjLkFjMtQXdh5iN40SYlJnLw4CMx4yMuQjMucDNz0iby9Ga0dXYohSI", + value: + "!(hawthorn-347.24.3.10.0.rea-86.aut-21d.3ch-b9.mal-1f1.dar-8a.wha-46.haw-40)!", + result: { + word: "hawthorn", + correct: 24, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 37, + date: "13.12.2025", + }, + }, + { + date: "13.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwQTL3FGaukzNt8Ga05SZmJTLoN2MuUGZuIDNukzYx0ichhmL0MWLuFmcuIjZy0CajNjLmNWLhhGduQzNx0SYoBnLw4SNx4CNuUzMucDNz0iby9Ga0dXYohSI", + value: + "!(hawthorn-347.35.4.15.0.pha-174.tha-cf.3ch-2f2.ran-c4.har-1c9.42.de.3ch-2fe.tho-79.haw-40)!", + result: { + word: "hawthorn", + correct: 35, + position: 4, + incorrect: 15, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 54, + date: "13.12.2025", + }, + }, + { + date: "13.12.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpADNtcnL5MWMtIXYo5iYmJTLoN2MuQDZz0icvZmLxU2Mtg2Yz4yN40CdhBnLwgTNtEmc05SM10ybkFmL1ETLhZ3buIGMy0ich1mL20yY4VmLw4COx4SNuMzMucDNz0iby9Ga0dXYohSI", + value: + "!(hawthorn-347.33.5.18.0.exc-6.mar-20b.ova-15.ado-51.tra-580.pat-87.3ch-3e1.for-3d4.3ch-2fb.har-1c9.w-40)!", + result: { + word: "hawthorn", + correct: 33, + position: 5, + incorrect: 18, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 56, + date: "13.12.2025", + }, + }, + { + date: "13.12.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwQTL3FGauImZy4SMzMTLoN2MukTYtQ3ch5iZk1icvdnL2cTLy9GduMmMt8Gbw5SM20ib1JmL5ITLpF2YukTMtIXY25iM20SbhdmLw4iNx4yMuMzMucDNz0iby9Ga0dXYohSI", + value: + "!(hawthorn-347.33.3.16.0.gam-62.var-19.cai-29.bun-61.plo-2c.tor-76.wor-df.ast-a9.3ch-331.2fb.haw-40)!", + result: { + word: "hawthorn", + correct: 33, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 52, + date: "13.12.2025", + }, + }, + { + date: "13.12.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwQTL3FGauUTMtg2Yy4SOmdTLoN2MuEjMtQWYm5iZwETLoN2MuETLqFGcukzNt8Ga05yNl1SYsNnLw4COx4iMuMjMucDNz0iby9Ga0dXYohSI", + value: + "!(hawthorn-347.23.2.18.0.sla-e7.tho-79.paj-1.3ch-10f.fad-21.3ch-7f9.2ch-15.haw-40)!", + result: { + word: "hawthorn", + correct: 23, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 43, + date: "13.12.2025", + }, + }, + { + date: "13.12.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM00ydhhmL5Y2Ntg2Yz4iYy0CZhZmL5cTLvhGdukTO00CajNjLwYTL0VXYuI2Mt8Ga05CO50CcvNmLw4CNx4CNukjMucDNz0iby9Ga0dXYohSI", + value: + "!(hawthorn-347.29.4.14.0.cop-98.tho-3b.aut-60.3ch-499.tho-79.fad-2b.3ch-7f9.haw-40)!", + result: { + word: "hawthorn", + correct: 29, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 47, + date: "13.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/lubie-wink-07-07-2025-diffle-diffleen-grywebowe-22-letters-in-3-words-large-gree" +] = [ + { + date: "07.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQmNtEGcucTMtcWYz5iN40SYlJnLw4CNuIjL2EjL4gTMtkGd0VGanFGczhSI", + value: "!(spaghetti-188.16.2.4.0.rea-86.sag-17.pa-6d)!", + result: { + word: "spaghetti", + correct: 16, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "07.07.2025", + }, + }, + { + date: "07.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQmNtEGcz5SMy0SZoNmLw4iMuIjLzEjL4gTMtkGd0VGanFGczhSI", + value: "!(spaghetti-188.13.2.2.0.che-21.spa-6d)!", + result: { + word: "spaghetti", + correct: 13, + position: 2, + incorrect: 2, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "07.07.2025", + }, + }, + { + date: "07.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZ20SYw5CN1ETLvh2cuMTLuVnYuIjMtcWYw5iM20SbhdmLw4yNuEjL5EjL4gTMtkGd0VGanFGczhSI", + value: "!(spaghetti-188.19.1.7.0.gam-62.pag-22.bun-3.sho-154.pa-6d)!", + result: { + word: "spaghetti", + correct: 19, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "07.07.2025", + }, + }, + { + date: "07.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZ20SYwNnLwYTLiVGZuEjYx0SYw5CMj1SYlNnLmBTMtwWYt5SMuQTMuEjLyIjL4gTMtkGd0VGanFGczhSI", + value: "!(spaghetti-188.22.1.14.1.mal-10f.sea-c0.pa-1b1.deb-60.spa-6d)!", + result: { + word: "spaghetti", + correct: 22, + position: 1, + incorrect: 14, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 37, + date: "07.07.2025", + }, + }, + { + date: "07.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZ20SYw5yYk1SYl5CZyETLhRnL2UTMt4WYz5SYtUXZm5CMuETMuYjLwIjL4gTMtkGd0VGanFGczhSI", + value: "!(spaghetti-188.20.6.11.0.feu-a.san-156.ta-12d.ea-dc.pa-6d)!", + result: { + word: "spaghetti", + correct: 20, + position: 6, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "07.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/mam-dzisiaj-zacmienie-26-08-2025-diffle-diffleen-grywebowe-29-letters-in-6-words" +] = [ + { + date: "26.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwYTLr5WducDOy4SNwEjL5AjNtg2Yz4iMz0ydvRmL2gTLhVmcuAjL0EjLw4SNx4COzITLud3butmb1hSI", + value: "!(unknown-238.15.0.14.0.rea-86.dow-32.3ch-609.105.287.unk-60)!", + result: { + word: "unknown", + correct: 15, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 29, + date: "26.08.2025", + }, + }, + { + date: "26.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpAjNtsmb15iYx0Sdv5mLwcjMtkGcz5iZyETLsF2YuAjL0EjLx4iMx4COzITLud3butmb1hSI", + value: "!(unknown-238.12.1.14.0.cal-12f.spi-270.nou-1b.unk-60)!", + result: { + word: "unknown", + correct: 12, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "26.08.2025", + }, + }, + { + date: "26.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwYTLr5WduUmMt4Wdn5COwgTLoN2MuYzYy0SbuVnL1UTL19GcuYTLjhXZuAjL3EjLx4COx4COzITLud3butmb1hSI", + value: + "!(unknown-238.18.1.17.0.exc-6.pou-55.unm-2c6.3ch-808.gun-2e.unk-60)!", + result: { + word: "unknown", + correct: 18, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "26.08.2025", + }, + }, + { + date: "26.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM20yauVnLmFDOucTZ30CajNjL3MTLuVHauU2Mt4Wdq5SZh1ib1ZmL3kTLs92YuUjNtQHcv5iMy0ibvJmLyYTLtF2ZuAjL5EjLx4CNy4COzITLud3butmb1hSI", + value: + "!(unknown-238.24.1.19.0.gam-62.bon-22.opt-65.col-97.fun-ae.jun-3e.hun-37.3ch-7e7.81f.unk-60)!", + result: { + word: "unknown", + correct: 24, + position: 1, + incorrect: 19, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 44, + date: "26.08.2025", + }, + }, + { + date: "26.08.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpAjNtsmb15CM10SdvNnL4kTLw92YuAjL0EjLx4CMx4COzITLud3butmb1hSI", + value: "!(unknown-238.10.1.14.0.cop-98.sou-50.unk-60)!", + result: { + word: "unknown", + correct: 10, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "26.08.2025", + }, + }, + { + date: "26.08.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpAjNuYTNtsmb15SZh1ib1ZmLmJTNtg2Yz4SZx0yb3NnLyEWLvJHcuAjL2EjLx4SMy4COzITLud3butmb1hSI", + value: "!(unknown-238.21.1.16.0.pro-a2.swo-1e.3ch-52f.fun-ae.unk-56.60)!", + result: { + word: "unknown", + correct: 21, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "26.08.2025", + }, + }, + { + date: "26.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM20yauVnLkdjNtg2Yz4SZz0yY1JmL5cTL19GcuEWL1VmZuAjLzEjLx4yMx4COzITLud3butmb1hSI", + value: "!(unknown-238.13.1.13.0.feu-a.pou-79.buc-3e.3ch-67d.unk-60)!", + result: { + word: "unknown", + correct: 13, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "26.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/mialem-to-przed-oczami-a-nie-widzialem-03-09-2025-diffle-diffleen-grywebowe-34-l" +] = [ + { + date: "03.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0QTLmZ2buQWLp9mduIWLjl2auITLwl2YuYDOtEWZy5CMukjL14CMy4iN0ITLyV2YpZmZvhSI", + value: "!(officer-246.20.5.9.0.rea-86.cip-2.kic-b.voi-d.off-44)!", + result: { + word: "officer", + correct: 20, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "03.09.2025", + }, + }, + { + date: "03.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0QTLmZ2buMWLvJXauMTNtcWay5CMugjL04SMx4iN0ITLyV2YpZmZvhSI", + value: "!(officer-246.11.4.8.0.rig-53.iro-c.off-44)!", + result: { + word: "officer", + correct: 11, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "03.09.2025", + }, + }, + { + date: "03.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0QTLmZ2bugTOtA3bj5CMugjLy4CMx4iN0ITLyV2YpZmZvhSI", + value: "!(officer-246.10.2.8.0.cop-98.off-44)!", + result: { + word: "officer", + correct: 10, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "03.09.2025", + }, + }, + { + date: "03.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0QTLmZ2buITYt8mcw5CMuYjLy4CMx4iN0ITLyV2YpZmZvhSI", + value: "!(officer-246.10.2.6.0.pro-a2.off-44)!", + result: { + word: "officer", + correct: 10, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "03.09.2025", + }, + }, + { + date: "03.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0QTLmZmLl1CZy5CNx0SZ29mLhFTLu9GbuIjNt0WYn5CMugjLw4COx4iN0ITLyV2YpZmZvhSI", + value: "!(officer-246.18.0.8.0.gam-62.lon-1a.ove-14.rd-e.ff-44)!", + result: { + word: "officer", + correct: 18, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "03.09.2025", + }, + }, + { + date: "03.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQDNtYmZv5iMx0yZp5SYtUXZm5CMukjLx4yMx4iN0ITLyV2YpZmZvhSI", + value: "!(officer-246.13.1.9.0.feu-a.ig-12.off-44)!", + result: { + word: "officer", + correct: 13, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "03.09.2025", + }, + }, + { + date: "03.09.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0QTLmZ2buUGNtMWZs5COwMTLjVGZuUWMtUmcj5CMuYjL14yMx4iN0ITLyV2YpZmZvhSI", + value: "!(officer-246.13.5.6.0.cre-1e.dec-308.lec-4e.off-44)!", + result: { + word: "officer", + correct: 13, + position: 5, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "03.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/musialem-uzyc-slowa-pomocniczego-bo-za-duzo-bylo-mozliwosci-15-08-2025-diffle-di" +] = [ + { + date: "15.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMi1SYs5CMz0Sb1dmLm1ibhxmLmFTLsFmYuYDOtEWZy5CMuATMuIjL5EjL3IjMtU2YuFGbnhSI", + value: "!(glance-227.19.2.10.0.rea-86.bal-1f.lan-f.gum-30.la-b0)!", + result: { + word: "glance", + correct: 19, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "15.08.2025", + }, + }, + { + date: "15.08.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMi1SYsdmL4kTLw92YuAjL44iMukjL3IjMtU2YuFGbnhSI", + value: "!(glance-227.9.2.8.0.cop-98.gla-b0)!", + result: { + word: "glance", + correct: 9, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "15.08.2025", + }, + }, + { + date: "15.08.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwIWLhx2ZuEWL1FmbuQWLjFGbuITYt8mcw5SMuETMuMjL0EjL3IjMtU2YuFGbnhSI", + value: "!(glance-227.14.3.11.1.pro-a2.lac-d.nau-a.gla-b0)!", + result: { + word: "glance", + correct: 14, + position: 3, + incorrect: 11, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 28, + date: "15.08.2025", + }, + }, + { + date: "15.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwIWLhxmLyYTLtF2ZuAjLy4CMukjL3IjMtU2YuFGbnhSI", + value: "!(glance-227.9.0.2.0.gam-62.la-b0)!", + result: { + word: "glance", + correct: 9, + position: 0, + incorrect: 2, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 11, + date: "15.08.2025", + }, + }, + { + date: "15.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwIWLhx2ZuQWLjFGbuMWMtEGbj5iMz0yc1FmLw4COuEjL1EjL3IjMtU2YuFGbnhSI", + value: "!(glance-227.15.1.8.0.aus-32.cla-1c.lac-d.gla-b0)!", + result: { + word: "glance", + correct: 15, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "15.08.2025", + }, + }, + { + date: "15.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpAjYtEGbn5iY50Sah1mLmNTLhx2ZucjMtU3bo5CMuUTMuAjL4EjL3IjMtU2YuFGbnhSI", + value: "!(glance-227.18.0.15.0.hou-27.gla-3f.mai-9b.gla-b0)!", + result: { + word: "glance", + correct: 18, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "15.08.2025", + }, + }, + { + date: "15.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwIWLhx2ZuYDZt8Gaz5iZt4WYs5iNtMGel5CMuETMuMjLzEjL3IjMtU2YuFGbnhSI", + value: "!(glance-227.13.3.11.0.exc-6.lan-f.sho-d6.gla-b0)!", + result: { + word: "glance", + correct: 13, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "15.08.2025", + }, + }, + { + date: "15.08.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMi1SYsdmLyETLuFGZuUWMtg2Yh5SZx0SZyNmLw4SNuEjL1EjL3IjMtU2YuFGbnhSI", + value: "!(glance-227.15.1.5.0.cre-1e.ach-1e.dan-12.gla-b0)!", + result: { + word: "glance", + correct: 15, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "15.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nawet-nie-wiedzialem-ze-to-jest-slowo-29-11-2025-diffle-diffleen-grywebowe-51-le" +] = [ + { + date: "29.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmNTLyVGeuYWMx0CajJjLmJTLsVmZuQTLyVmeukzN10CajNjL4ETLyVmauQWMtc3b05SOj1iclZnLiFTLyJXZuIDNt0Wdi5SMh1SYlNnLw4CNy4yMuQjMuMzMz0CevJXZ4hSI", + value: + "!(xerox-333.24.3.24.0.sea-a1.bum-42.err-1b.ver-c9.tow-1d.jer-18.3ch-579.zer-4.fel-2f.2ch-11f.xer-3f)!", + result: { + word: "xerox", + correct: 24, + position: 3, + incorrect: 24, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 51, + date: "29.11.2025", + }, + }, + { + date: "29.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZz0iclhnL3U2NuQjN20CajNjL4QTLyVmcuYGZz0CajNjL5ETLz9GcuATOtUHbm5SO3ETLyVGauQjMt8mcl5iM20SbhdmLw4SMy4CMuIjMuMzMz0CevJXZ4hSI", + value: + "!(xerox-333.22.0.21.0.gam-62.ero-24.her-179.flu-90.pos-19.3ch-3df.rer-48.3ch-664.7e7.xer-3f)!", + result: { + word: "xerox", + correct: 22, + position: 0, + incorrect: 21, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 43, + date: "29.11.2025", + }, + }, + { + date: "29.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpY2MtIXZ45iZxETLoNmMuIDOx0ybsZmLx0yZvpmL1kTLv9WbuQTMtUmdv5yMtkXdi5CNtIXZ65iMt8mcl5SO3ETLyVGauUWYx0ybyBnLw4iNy4SNucjMuMzMz0CevJXZ4hSI", + value: + "!(xerox-333.27.5.26.0.pro-1ae.her-179.ero-2.zer-4.buy-3.ove-14.moo-95.jog-1.flo-182.2ch-11f.xer-3f)!", + result: { + word: "xerox", + correct: 27, + position: 5, + incorrect: 26, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 58, + date: "29.11.2025", + }, + }, + { + date: "29.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmNTLyVGeuQTLyVmeuITMt8mcl5CO50CcvNmLw4iMx4iMuITMuMzMz0CevJXZ4hSI", + value: "!(xerox-333.12.2.12.0.cop-98.ero-12.zer-4.xer-3f)!", + result: { + word: "xerox", + correct: 12, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "29.11.2025", + }, + }, + { + date: "29.11.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZz0iclhnL40ybyVmL00iclpnL5cTMtIXZo5iY5ETLvxmZuQTMtUmdv5SZx0SZyNmLw4SNx4yMukTMuMzMz0CevJXZ4hSI", + value: + "!(xerox-333.19.3.15.0.cre-1e.ove-14.flo-19b.her-179.zer-4.ero-8.xer-3f)!", + result: { + word: "xerox", + correct: 19, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 37, + date: "29.11.2025", + }, + }, + { + date: "29.11.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpY2MtIXZ45CNtIXZ65yNtU2bk5yNl1SYsNnLw4iMx4SMuITMuMzMz0CevJXZ4hSI", + value: "!(xerox-333.12.1.12.0.sla-e7.doe-7.zer-4.xer-3f)!", + result: { + word: "xerox", + correct: 12, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "29.11.2025", + }, + }, + { + date: "29.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpY2MtIXZ45CNtIXZ65COwgTLoN2MuImMtUHbw5iMt8mcl5iN40SYlJnLw4iNx4SMuMTMuMzMz0CevJXZ4hSI", + value: "!(xerox-333.13.1.16.0.rea-86.ero-2.plu-2b.3ch-808.zer-4.xer-3f)!", + result: { + word: "xerox", + correct: 13, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "29.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nawet-nie-wiem-czy-to-jest-slowo-29-08-2025-diffle-diffleen-grywebowe-27-letters" +] = [ + { + date: "29.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM1ETLsFGauEjZx0Cbh1mL1gTMtwWYz5iZkFTLsxWYuYTLjhXZuAjLzEjLw4CNx4SM0ITL0xWYohSI", + value: "!(halt-241.14.0.13.0.exc-6.all-1df.sal-185.mal-1f1.hal-150)!", + result: { + word: "halt", + correct: 14, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "29.08.2025", + }, + }, + { + date: "29.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM1ETLsFGauAzNtEGa35iN40SYlJnLw4COuAjL54SM0ITL0xWYohSI", + value: "!(halt-241.9.0.8.0.rea-86.wha-70.hal-150)!", + result: { + word: "halt", + correct: 9, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "29.08.2025", + }, + }, + { + date: "29.08.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwUTMtwWYo5CO50CcvNmLw4SOuEjL34SM0ITL0xWYohSI", + value: "!(halt-241.7.1.9.0.cop-98.hal-150)!", + result: { + word: "halt", + correct: 7, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "29.08.2025", + }, + }, + { + date: "29.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM1ETLsFGauYzYtQ3Yh5yN00CdhNnL2YWLyFmYuAjL0EjLx4CMx4SM0ITL0xWYohSI", + value: "!(halt-241.10.1.14.0.bar-f6.sat-47.act-c6.hal-150)!", + result: { + word: "halt", + correct: 10, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "29.08.2025", + }, + }, + { + date: "29.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM1ETLs5SMx0iZhhmLhRWLzFGcuIjNt0WYn5CMucjLw4CMx4SM0ITL0xWYohSI", + value: "!(halt-241.10.0.7.0.gam-62.pas-da.haf-11.l-150)!", + result: { + word: "halt", + correct: 10, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 17, + date: "29.08.2025", + }, + }, + { + date: "29.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM1ETLsFGaucDOtQXYw5iMz0yc1FmLw4COuEjL44SM0ITL0xWYohSI", + value: "!(halt-241.8.1.8.0.aus-32.pat-87.hal-150)!", + result: { + word: "halt", + correct: 8, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "29.08.2025", + }, + }, + { + date: "29.08.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwUTMtwWYo5SZh1ib1ZmL0UTMtwWYz5CO10CajNjLyEWLvJHcuAjL0EjLx4iMx4SM0ITL0xWYohSI", + value: "!(halt-241.12.1.14.0.pro-a2.3ch-58.sal-154.fun-ae.hal-150)!", + result: { + word: "halt", + correct: 12, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "29.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nawet-przyszlo-mi-na-mysl-ale-wybralem-inne-24-07-2025-diffle-diffleen-grywebowe" +] = [ + { + date: "24.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiNTLvVXcuEWL09WbuYDOtEWZy5CMucjLy4SOuUDMy0SZ09WdxhSI", + value: "!(quote-205.9.2.7.0.rea-86.mot-a.quo-3b)!", + result: { + word: "quote", + correct: 9, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "24.07.2025", + }, + }, + { + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYz0yb1FnLw0CdvdnLy0CdvlnL20CdvxmLl1CdvRmLxQTL09GcuYmMtQ3bi5iYtQ3b25yYyETLuVGduIWNtgGdl5iM20SbhdmLw4yNx4SMuAzMuUDMy0SZ09WdxhSI", + value: + "!(quote-205.30.1.17.0.gam-62.eth-5b.ten-12c.vot-b.bot-2f.pot-41.dot-e.lot-6.yot-2.wot-0.quo-3b)!", + result: { + word: "quote", + correct: 30, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 48, + }, + }, + { + date: "24.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYz0yb1FnL0YTL19mcuIGO00iY1NnLw4SMx4iMuATMuUDMy0SZ09WdxhSI", + value: "!(quote-205.10.2.11.0.sub-48b.rou-64.quo-3b)!", + result: { + word: "quote", + correct: 10, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "24.07.2025", + }, + }, + { + date: "24.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiNTLvVXcuIWL09mduU2MtQ3bu5CO50CcvNmLw4iMx4CMuQTMuUDMy0SZ09WdxhSI", + value: "!(quote-205.14.0.12.0.cop-98.not-3e.vot-b.quo-3b)!", + result: { + word: "quote", + correct: 14, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "24.07.2025", + }, + }, + { + date: "24.07.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpI2Mt8Wdx5iY40CZuVmLm1ybyBnLw4CMx4CMuETMuUDMy0SZ09WdxhSI", + value: "!(quote-205.11.0.10.0.pro-f.end-8b.quo-3b)!", + result: { + word: "quote", + correct: 11, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "24.07.2025", + }, + }, + { + date: "24.07.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpI2Mt8Wdx5COtU3bm5iY4ITLvR3cuITMtQ2bu5iMh1ybyBnLw4SNx4yMuMTMuUDMy0SZ09WdxhSI", + value: "!(quote-205.13.3.15.0.pro-a2.nod-12.sto-28b.fou-8.quo-3b)!", + result: { + word: "quote", + correct: 13, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "24.07.2025", + }, + }, + { + date: "24.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiNTLvVXcuMDZtU3bt5SOt42bw5COtQXds5iMz0yc1FmLw4iMx4SMuQTMuUDMy0SZ09WdxhSI", + value: "!(quote-205.14.1.12.0.aus-32.lut-8.pon-9.mou-d3.quo-3b)!", + result: { + word: "quote", + correct: 14, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "24.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/niby-bylem-blisko-ale-bladzilem-17-12-2025-diffle-diffleen-31-letters-in-5-words" +] = [ + { + date: "17.12.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZ50SZy5CMzMTLy9mZuQDNtYmL1QWLsVmcuUWMtUmcj5CMugjLy4SMy4SM1MTLyVmelVmcmhSI", + value: "!(freezer-351.21.2.8.0.cre-1e.rel-d5.f-44.for-330.re-9e)!", + result: { + word: "freezer", + correct: 21, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "17.12.2025", + }, + }, + { + date: "17.12.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUWOuMWOtUmcm5SMmRTLoN2MuEjNuUmMtUmcm5CZj1SZyJmL2gTLhVmcuAjL0EjLw4iNy4SM1MTLyVmelVmcmhSI", + value: + "!(freezer-351.26.0.14.0.rea-86.bre-cd.fre-2e.61.3ch-4f1.fre-9c.9e)!", + result: { + word: "freezer", + correct: 26, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "17.12.2025", + }, + }, + { + date: "17.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZ54SO30SZyZmLk1iY1JnL5QWLhx2YuAjLyEjLw4yNx4SM1MTLyVmelVmcmhSI", + value: "!(freezer-351.17.0.12.0.cla-d9.rub-d.fre-79.9e)!", + result: { + word: "freezer", + correct: 17, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "17.12.2025", + }, + }, + { + date: "17.12.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUWOtUmcm5iMx0SZlJnLlFjMtIXZz5SMzITL0VWbuYTLjhXZuAjLzEjLx4CMy4SM1MTLyVmelVmcmhSI", + value: "!(freezer-351.20.1.13.0.exc-6.met-231.ser-21e.ree-12.fre-9e)!", + result: { + word: "freezer", + correct: 20, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "17.12.2025", + }, + }, + { + date: "17.12.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlljL5cTLlJnZugDM40CajNjLm1yY1RnLw0idl5COz0ibpZmL50ycvxmLyYTLtF2ZuAjL3EjLw4SNy4SM1MTLyVmelVmcmhSI", + value: + "!(freezer-351.25.0.17.0.gam-62.los-9.fin-38.ev-0.tuc-f.3ch-808.fre-79.9e)!", + result: { + word: "freezer", + correct: 25, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 42, + date: "17.12.2025", + }, + }, + { + date: "17.12.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUWOtUmcuEWMtUWZm5iZy0SZlBnL3UWLhx2cuAjLyEjLw4yNx4SM1MTLyVmelVmcmhSI", + value: "!(freezer-351.17.0.12.0.sla-e7.pee-2f.fee-1a.re-9e)!", + result: { + word: "freezer", + correct: 17, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "17.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/niby-proste-22-11-2025-diffle-diffleen-grywebowe-28-letters-in-4-words-large-gre" +] = [ + { + date: "22.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyY50CctVmLx0SZ1BnLzMTL2VGZuYDOtEWZy5CMuITMuIjL0EjL2IzMtk3bsBXblhSI", + value: "!(employ-326.14.2.12.0.rea-86.dev-33.pue-1.emp-9c)!", + result: { + word: "employ", + correct: 14, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "22.11.2025", + }, + }, + { + date: "22.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjlTLw5yNz0SatVmLyYTLtF2ZuAjL14SMukjL2IzMtk3bsBXblhSI", + value: "!(employ-326.9.1.5.0.gam-62.emi-37.p-9c)!", + result: { + word: "employ", + correct: 9, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 15, + date: "22.11.2025", + }, + }, + { + date: "22.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyY50CctVmL4kTLw92YuAjL44yMugjL2IzMtk3bsBXblhSI", + value: "!(employ-326.8.3.8.0.cop-98.emp-9c)!", + result: { + word: "employ", + correct: 8, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "22.11.2025", + }, + }, + { + date: "22.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMWOtAXbl5SNkVjLhBjMtg2Yz4CO40CbuYTL29WbuUWM44SMlNTLoN2MuUjMt82bs5CO2ITLoN2MuQWL5hGduQTMy0CajNjLx0ycs5iNtMGel5CMuEjMuYjL4IjL2IzMtk3bsBXblhSI", + value: + "!(employ-326.28.6.21.0.exc-6.ls-1.3ch-214.thy-d.3ch-268.loo-25.3ch-3e1.81e.mov-6.l-88.3ch-20a.5d5.emp-9c)!", + result: { + word: "employ", + correct: 28, + position: 6, + incorrect: 21, + knownIncorrect: 0, + totalWords: 13, + totalLetters: 55, + date: "22.11.2025", + }, + }, + { + date: "22.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyY50CctVmL3QTL0V2cuAjL34SMugjL2IzMtk3bsBXblhSI", + value: "!(employ-326.8.1.7.0.set-47.emp-9c)!", + result: { + word: "employ", + correct: 8, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "22.11.2025", + }, + }, + { + date: "22.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMWOtAXbl5COy0SbvBnL1ATMt42bt5SYtUXZm5CMuATMuUjLzEjL2IzMtk3bsBXblhSI", + value: "!(employ-326.13.5.10.0.feu-a.mon-105.pom-28.emp-9c)!", + result: { + word: "employ", + correct: 13, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "22.11.2025", + }, + }, + { + date: "22.11.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMWOuUGZtAXbl5SZx0SZyNmLw4CNuAjLzEjL2IzMtk3bsBXblhSI", + value: "!(employ-326.13.0.4.0.cre-1e.emp-de.9c)!", + result: { + word: "employ", + correct: 13, + position: 0, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "22.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-banalne-ale-kto-gra-w-gry-to-bedzie-znal-slightly-smiling-face-07-09-2025-di" +] = [ + { + date: "07.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpM2NuQjNy0SZw5SO30CblNnL2gTLhVmcuAjL34SMucTMuATNy0ibl1WajVGczhSI", + value: "!(specimen-250.17.1.7.0.rea-86.sel-79.pe-264.7c)!", + result: { + word: "specimen", + correct: 17, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "07.09.2025", + }, + }, + { + date: "07.09.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpM2NtUGcucTNtkGdz5SMx0yYp1mLlFTLlJ3YuAjL14CNucTMuATNy0ibl1WajVGczhSI", + value: "!(specimen-250.17.4.5.0.cre-1e.mic-11.sti-57.pe-7c)!", + result: { + word: "specimen", + correct: 17, + position: 4, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "07.09.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyY30SZwNnL10SYlBnLzITL09WbuAjL54SMuUTMuATNy0ibl1WajVGczhSI", + value: "!(specimen-250.15.1.9.0.mot-23.pea-5.spe-7c)!", + result: { + word: "specimen", + correct: 15, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + }, + }, + { + date: "07.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjdjLhVjLmVTLlB3cuYTLjhXZuAjL44CMuIjMuATNy0ibl1WajVG", + value: "\u0019XÚ[Y[‹LL\u000bŒŒ‹Œ\u000bŽ\u000bŒ\u000b™^\u0018ËM‹œÜ\u0019KMY‹XKØÊH", + result: { + word: "\u0019XÚ[Y[‹LL\u000bŒŒ‹Œ\u000bŽ\u000bŒ\u000b™^\u0018ËM‹œÜ\u0019KMY‹XKØÊH", + correct: null, + position: null, + incorrect: null, + knownIncorrect: null, + totalWords: 0, + totalLetters: null, + date: "07.09.2025", + }, + }, + { + date: "07.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjdTLlB3cuMmZy0yYlRmLw4CMx4SMuITMuATNy0ibl1WajVGczhSI", + value: "!(specimen-250.12.1.10.0.dec-2fc.spe-7c)!", + result: { + word: "specimen", + correct: 12, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 23, + date: "07.09.2025", + }, + }, + { + date: "07.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyY30SZwNnLz0ib1JmLm1SbvRmLlJWMtwWZt5iM20SbhdmLw4CMx4SMuUTMuATNy0ibl1WajVGczhSI", + value: "!(specimen-250.15.1.10.0.gam-62.mel-1be.dom-f.bun-3.spe-7c)!", + result: { + word: "specimen", + correct: 15, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "07.09.2025", + }, + }, + { + date: "07.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyY30SZwNnLyEWLvJHcuAjL24iMuETMuATNy0ibl1WajVGczhSI", + value: "!(specimen-250.11.2.6.0.pro-a2.spe-7c)!", + result: { + word: "specimen", + correct: 11, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "07.09.2025", + }, + }, + { + date: "07.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpM2NuIWNtUmLyETLpB3cuAjZtMWaw5CO50CcvNmLw4SMx4CNuMjMuATNy0ibl1WajVGczhSI", + value: "!(specimen-250.23.4.11.0.cop-98.pic-f0.spi-12.e-5b.7c)!", + result: { + word: "specimen", + correct: 23, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "07.09.2025", + }, + }, + { + date: "07.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjdTLlBnLmhTLjV2cuEWL1VmZuAjL24SMuQTMuATNy0ibl1WajVGczhSI", + value: "!(specimen-250.14.1.6.0.feu-a.sec-8f.pe-7c)!", + result: { + word: "specimen", + correct: 14, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "07.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-bede-ukrywal-ze-na-koniec-posluzylem-sie-slownikiem-28-11-2025-diffle-diffle" +] = [ + { + date: "28.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxMjMtUGdz5COwgjLwYGNtg2Yz4iNmFTLlR3cuYDOtEWZy5CMuITMuIjLxEjLyMzMtUGcwVGdzhSI", + value: "!(steppe-332.11.2.12.0.rea-86.ste-1f6.3ch-4f0.808.ste-231)!", + result: { + word: "steppe", + correct: 11, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "28.11.2025", + }, + }, + { + date: "28.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEzMy4yM0IjLiNjMtUGdz5COx0SZldmLy0iZlpmLxETLzVGcuQjY10CajNjLyMTLlZXZuY2YtUGdz5CZxETLz9GcuM2YtUGa05iNtMGel5CMuQjMuUjL0MjLyMzMtUGcwVGdzhSI", + value: + "!(steppe-332.34.5.24.0.exc-6.the-cc.pos-11d.ste-cf.eve-32.3ch-5b4.pes-11.jef-2.gee-18.ste-23b.243.231)!", + result: { + word: "steppe", + correct: 34, + position: 5, + incorrect: 24, + knownIncorrect: 0, + totalWords: 12, + totalLetters: 63, + date: "28.11.2025", + }, + }, + { + date: "28.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMzITLl5CNk1Sd0NnLxQTL09GcuIWNtgGdl5iM20SbhdmLw4SOuIjL0EjLyMzMtUGcwVGdzhSI", + value: "!(steppe-332.14.2.9.0.gam-62.eth-5b.pot-41.stu-d4.e-231)!", + result: { + word: "steppe", + correct: 14, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "28.11.2025", + }, + }, + { + date: "28.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEzMy4iNzIjLiNjMuYjZx0SZ0NnLzITLwVGduUTZtQXZt5SMuITMuEjL0IjLyMzMtUGcwVGdzhSI", + value: "!(steppe-332.24.1.12.1.met-e5.tep-23.ste-1f6.23b.236.231)!", + result: { + word: "steppe", + correct: 24, + position: 1, + incorrect: 12, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 37, + date: "28.11.2025", + }, + }, + { + date: "28.11.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxMjMuEDOz4CZzETLlR3cukjMtQWai5yNycTLoN2MuMjMtQ3bt5CMuUTMuEjLwIjLyMzMtUGcwVGdzhSI", + value: "!(steppe-332.20.1.15.0.mot-23.3ch-727.bid-29.ste-13d.381.231)!", + result: { + word: "steppe", + correct: 20, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "28.11.2025", + }, + }, + { + date: "28.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxMjMtUmL0QWL1R3cugTOtA3bj5CMuETMuEjLyEjLyMzMtUGcwVGdzhSI", + value: "!(steppe-332.12.1.11.0.cop-98.stu-d4.e-231)!", + result: { + word: "steppe", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "28.11.2025", + }, + }, + { + date: "28.11.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxMjMtUGdz5yNhRjL4UjMtg2Yz4iZx0CajJjLlZWMtMWZk5iZzIjL2YWMtUGducTZtEGbz5SMuAjMuAjLxIjLyMzMtUGcwVGdzhSI", + value: + "!(steppe-332.21.0.20.1.sla-e7.te-1f6.23f.dec-1fe.2ch-1f.3ch-258.4a7.ste-231)!", + result: { + word: "steppe", + correct: 21, + position: 0, + incorrect: 20, + knownIncorrect: 1, + totalWords: 8, + totalLetters: 41, + date: "28.11.2025", + }, + }, + { + date: "28.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxMjMuYjZx4yY4MTLl5yMyITLyRnLwATMt4WZz5SYtUXZm5CMuMTMuIjL5EjLyMzMtUGcwVGdzhSI", + value: "!(steppe-332.19.2.13.0.feu-a.sen-100.tr-223.e-38c.1f6.231)!", + result: { + word: "steppe", + correct: 19, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "28.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-takie-proste-mialem-troche-szczescia-08-09-2025-diffle-diffleen-grywebowe-24" +] = [ + { + date: "08.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSN30CchJnLiJTL1xGcucjMtQXYuYDOtEWZy5CMucjLx4iNx4SM1ITLlJXd0BXYyhSI", + value: "!(rapture-251.16.1.7.0.rea-86.at-27.plu-2b.rap-75)!", + result: { + word: "rapture", + correct: 16, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "08.09.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSN30Cch5yMjJTL0VmcuMjMtQ3bt5CMugjLz4CNx4SM1ITLlJXd0BXYyhSI", + value: "!(rapture-251.14.3.8.0.mot-23.ret-2c3.ap-75)!", + result: { + word: "rapture", + correct: 14, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + }, + }, + { + date: "08.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUzNtAXYy5SZx0CclRmL0YTMtMXYw5iZ1ETL0FWbucTL1pXYuYTLjhXZuAjLwEjL04SOy4SM1ITLlJXd0BXYyhSI", + value: + "!(rapture-251.29.4.10.0.exc-6.azu-7.mat-15f.pas-164.dep-1e.rap-75)!", + result: { + word: "rapture", + correct: 29, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "08.09.2025", + }, + }, + { + date: "08.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSN30CchJnLwMTLlBXYugTOtA3bj5CMukjLz4iNx4SM1ITLlJXd0BXYyhSI", + value: "!(rapture-251.16.3.9.0.cop-98.ape-30.rap-75)!", + result: { + word: "rapture", + correct: 16, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "08.09.2025", + }, + }, + { + date: "08.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSN30CchJnLxYmMtEGaj5SYkFTLwBXYuEWL1VmZuAjLxEjLy4CNx4SM1ITLlJXd0BXYyhSI", + value: "!(rapture-251.14.2.11.0.feu-a.app-1da.cha-2f1.rap-75)!", + result: { + word: "rapture", + correct: 14, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "08.09.2025", + }, + }, + { + date: "08.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1cTLwFmcuMzNtIXd05yN20Cb1NmL5YTLwF2cugDNtQWYw5iNl1ichJmLyYTLtF2ZuEjLxEjLz4yMy4SM1ITLlJXd0BXYyhSI", + value: + "!(rapture-251.23.3.11.1.gam-62.bar-e6.pad-48.sap-69.cul-67.tur-73.rap-75)!", + result: { + word: "rapture", + correct: 23, + position: 3, + incorrect: 11, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 37, + date: "08.09.2025", + }, + }, + { + date: "08.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSN30CchJnL1ITLwFGduITYt8mcw5CMuYjL04yMx4SM1ITLlJXd0BXYyhSI", + value: "!(rapture-251.13.4.6.0.pro-a2.tap-25.rap-75)!", + result: { + word: "rapture", + correct: 13, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "08.09.2025", + }, + }, + { + date: "08.09.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1cTLwFmcuMjYtQHdh5CM1ETLhxmZuUWMtUmcj5CMucjLx4iNx4SM1ITLlJXd0BXYyhSI", + value: "!(rapture-251.16.1.7.0.cre-1e.fla-150.att-b3.rap-75)!", + result: { + word: "rapture", + correct: 16, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "08.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-wiem-czemu-nie-moglem-tego-slowa-tak-dlugo-namierzyc-30-07-2025-diffle-diffl" +] = [ + { + date: "30.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNtkWZo5CNwMjLlRDOuImYy4iYk1CajNjLwETLllmduQWMtQXar5CN00Sa4VmL1Q2Mtg2Yz4SO20CdpBnLlNTLlVGdugTLjVXbuAjMt82bm5CMuQjMuUjLwMjLxEjMtQHanlWZohSI", + value: + "!(height-211.30.5.24.0.foo-20.muc-8.tee-3e.pit-69.3ch-3d5.exi-44.kit-1d.vie-10.3ch-db.2bb.84e.304.hei-7)!", + result: { + word: "height", + correct: 30, + position: 5, + incorrect: 24, + knownIncorrect: 0, + totalWords: 13, + totalLetters: 59, + date: "30.07.2025", + }, + }, + { + date: "30.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK30SalhmL50yZpVmLmFTLpV2duITNtkWZk5iN40SYlJnLw4SOuEjLxIjLxEjMtQHanlWZohSI", + value: "!(height-211.21.1.9.0.rea-86.dei-52.wei-1f.eig-9.hei-7)!", + result: { + word: "height", + correct: 21, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "30.07.2025", + }, + }, + { + date: "30.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNtkWZo5CNk1CajNjL0QTLphXZuU2MtU3bn5CM2ETLs5iY30iclhmLjNWLlhGduEjMtUGaj5CMuQTMuIjLzIjLxEjMtQHanlWZohSI", + value: + "!(height-211.23.2.14.0.che-21.the-cc.her-7b.l-160.gou-3e.exi-44.3ch-d4.hei-7)!", + result: { + word: "height", + correct: 23, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 39, + date: "30.07.2025", + }, + }, + { + date: "30.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK30SalhmL3UzMtg2Yz4SYt82Zl5iM20SbhdmLw4yNuIjLxEjLxEjMtQHanlWZohSI", + value: "!(height-211.11.2.7.0.gam-62.ego-a.3ch-357.hei-7)!", + result: { + word: "height", + correct: 11, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "30.07.2025", + }, + }, + { + date: "30.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNtkWZo5iZx0SaldnL50yZpVmLmFWLlJnZukjZtMWZk5SO20SZpBnLyUGNt42bt5CMuYTMuEjL4IjLxEjMtQHanlWZohSI", + value: + "!(height-211.28.1.16.0.mon-4e2.pie-69.dec-f9.fre-af.eig-9.wei-1f.hei-7)!", + result: { + word: "height", + correct: 28, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "30.07.2025", + }, + }, + { + date: "30.07.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcTLpVGaukTLnlWZuYWMtkWZ35iM00SZpRmL5EWL25WauITYt8mcw5CMuMTMuMjLyIjLxEjMtQHanlWZohSI", + value: "!(height-211.22.3.13.0.pro-a2.inv-a9.die-42.wei-1f.eig-9.hei-7)!", + result: { + word: "height", + correct: 22, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "30.07.2025", + }, + }, + { + date: "30.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcTLpVGauYWMtkWZ35SOtcWal5CO50CcvNmLw4SOuEjLwIjLxEjMtQHanlWZohSI", + value: "!(height-211.20.1.9.0.cop-98.eig-9.wei-1f.hei-7)!", + result: { + word: "height", + correct: 20, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "30.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nieco-zlosliwe-01-08-2025-diffle-diffleen-grywebowe-32-letters-in-4-words-large-" +] = [ + { + date: "01.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQmYukjYtUGbuADOtIXZuYWMz0icvNmLw4COuIjLyIjLzEjMt4WYtl3ZyVGbjhSI", + value: "!(clergyman-213.22.2.8.0.cor-31f.er-80.le-b9.bd)!", + result: { + word: "clergyman", + correct: 22, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "01.08.2025", + }, + }, + { + date: "01.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQmYugDZtUGbj5iYy0SdsBnL5EjMtUGauImZtEmcj5iN40SYlJnLw4COuMjL1IjLzEjMt4WYtl3ZyVGbjhSI", + value: "!(clergyman-213.25.3.8.0.rea-86.cra-fb.he-219.plu-2b.cle-d8.bd)!", + result: { + word: "clergyman", + correct: 25, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "01.08.2025", + }, + }, + { + date: "01.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQmYtUGbuEDOt4WYj5yNx0iblxmL4MTMt4WYj5CZ00icldmLiFTMt4WYj5iZy0CajNjL1YWLhJ3ZuIDOtEWZs5SO00yZuFmLw0SYsxmLzkjMucDN00CajNjLkFTLnFWbuEGNtIXZn5CZ00SbhxmLzITLhVWbugTYuczY34iYmFjL5kDNuYzYz4SNmdTLoN2MuUjNt4WYy5SNi5CO1ITLoN2MuYWZx0SYydmL3UTLyVXbuQmMuIGOtUGbuATNy0Sbv5iNyETLtFmLxITLlh2YuAjL1IjL0MjLwkjLzEjMt4WYtl3ZyVGbjhSI", + value: + "!(clergyman-213.90.34.25.0.che-21.am-126.om-250.le-8b.2d.mur-57.gra-1ef.3ch-258.b5.ran-65.3ch-7f5.3c6.499.1fb.7c7.a8.mea-23.lam-4d.ger-4a.mag-1d.3ch-447.293.lla-0.ang-49.lea-82.gra-f5.3ch-2f.can-11b.ger-4d.can-138.len-17.can-81.le-bd)!", + result: { + word: "clergyman", + correct: 90, + position: 34, + incorrect: 25, + knownIncorrect: 0, + totalWords: 33, + totalLetters: 149, + date: "01.08.2025", + }, + }, + { + date: "01.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkJWLlx2YucjMtcmcl5iM20SbhdmLw4yMuUjL1EjLzEjMt4WYtl3ZyVGbjhSI", + value: "!(clergyman-213.15.5.3.0.gam-62.erg-27.cle-bd)!", + result: { + word: "clergyman", + correct: 15, + position: 5, + incorrect: 3, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "01.08.2025", + }, + }, + { + date: "01.08.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQmYuUjMtUGbj5iMh1ybyBnLw4SNuMjL3EjLzEjMt4WYtl3ZyVGbjhSI", + value: "!(clergyman-213.17.3.5.0.pro-a2.cle-25.bd)!", + result: { + word: "clergyman", + correct: 17, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "01.08.2025", + }, + }, + { + date: "01.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkJWLlx2YuIWMtkXYs5CNtsWaw5CN40ibv1mLw4SNuQjL2EjLzEjMt4WYtl3ZyVGbjhSI", + value: "!(clergyman-213.16.4.5.0.mon-84.pik-4.lay-1b.cle-bd)!", + result: { + word: "clergyman", + correct: 16, + position: 4, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "01.08.2025", + }, + }, + { + date: "01.08.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkJWLlx2YuMGMy0SZyBnLw4SNuIjLyEjLzEjMt4WYtl3ZyVGbjhSI", + value: "!(clergyman-213.12.2.5.0.pre-20c.cle-bd)!", + result: { + word: "clergyman", + correct: 12, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "01.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nielatwe-fajne-bylo-ale-nie-tu-31-08-2025-diffle-diffleen-grywebowe-48-letters-i" +] = [ + { + date: "31.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTL05CMh1ibpNmL0ETL0RXYucDZ00SYo5SMyETLzF2YuETZtwWY05SOy0yZhRmLw4COx4yMucjMuMDNy0ibvlGdhRXajhSI", + value: + "!(citation-243.27.3.18.0.dag-29.tal-e1.cas-121.ha-4d7.att-14.cin-a0.t-4)!", + result: { + word: "citation", + correct: 27, + position: 3, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 48, + date: "31.08.2025", + }, + }, + { + date: "31.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK00Cdp5SOk1SdhNmL2gTLhVmcuAjL04SMukTMuMDNy0ibvlGdhRXajhSI", + value: "!(citation-243.19.1.4.0.rea-86.cau-d9.it-4)!", + result: { + word: "citation", + correct: 19, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "31.08.2025", + }, + }, + { + date: "31.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNtQXauYDNx0SYv5iY0ITL0FmL2kTLhhmLyQjMt4WYj5CM30CchxmLyYTLtF2ZuAjL54SMukjMuMDNy0ibvlGdhRXajhSI", + value: + "!(citation-243.29.1.9.0.gam-62.lap-70.can-242.ha-96.at-24b.oa-146.it-4)!", + result: { + word: "citation", + correct: 29, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "31.08.2025", + }, + }, + { + date: "31.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNtQXauIGNy0CdhNmL4YWNtIXYw5iN10SahdnLh1SdlZmLw4SMx4SMuIjMuMDNy0ibvlGdhRXajhSI", + value: "!(citation-243.22.1.11.0.feu-a.wai-56.par-5f8.cat-24b.it-4)!", + result: { + word: "citation", + correct: 22, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "31.08.2025", + }, + }, + { + date: "31.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTL0lmL5EjMtEGauQDNx0SYvNmL20yY4VmLw4CMx4SMuEjMuMDNy0ibvlGdhRXajhSI", + value: "!(citation-243.21.1.10.0.exc-6.coa-144.ha-219.it-4)!", + result: { + word: "citation", + correct: 21, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "31.08.2025", + }, + }, + { + date: "31.08.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNtQXauIGNy0CdhNmLyEWLvJHcuAjL24iMucTMuMDNy0ibvlGdhRXajhSI", + value: "!(citation-243.17.2.6.0.pro-a2.cat-24b.it-4)!", + result: { + word: "citation", + correct: 17, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "31.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nieoczywiste-i-irytujace-22-07-2025-diffle-diffleen-grywebowe-31-letters-in-6-wo" +] = [ + { + date: "22.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTYtMnYuQWL1B3buY2Yx4SMlZTLoN2MuUTOx0icv1mL2gTLhVmcuAjL44SNugTMuMDMy0CdjVnc0NnYvhSI", + value: "!(obstruct-203.18.5.8.0.rea-86.mor-195.3ch-6e1.1cf.opu-d.bs-a9)!", + result: { + word: "obstruct", + correct: 18, + position: 5, + incorrect: 8, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "22.07.2025", + }, + }, + { + date: "22.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOh1yci9mLhZ2MtIHdz5SZx0SdyRnLkdjNtg2Yz4iZwQWLlJHcuAjL54CMuUjMuMDMy0CdjVnc0NnYvhSI", + value: "!(obstruct-203.25.0.9.0.pre-d0f.3ch-67d.tru-1e.str-3fa.obs-a9)!", + result: { + word: "obstruct", + correct: 25, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "22.07.2025", + }, + }, + { + date: "22.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTYtMnYv5iN3UTLoN2MuQmMtI3bi5CO10SdvRnLzIWLyV3cuQDMx0icvRnL0M2Nt8mcw5iM20SbhdmLw4CMx4SOuIjMuMDMy0CdjVnc0NnYvhSI", + value: + "!(obstruct-203.22.9.10.0.gam-62.pro-7c4.tor-104.sur-b3.tou-58.bor-2d.3ch-576.obs-a9)!", + result: { + word: "obstruct", + correct: 22, + position: 9, + incorrect: 10, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 41, + date: "22.07.2025", + }, + }, + { + date: "22.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTYtMnYuM2MtImcv5SMm1ybyRmLx0iZ1JmLiNGNtQXduQ2YtQ3Yv5SMy0SZoNmLw4yMx4SNuMjMuMDMy0CdjVnc0NnYvhSI", + value: + "!(obstruct-203.23.5.13.0.che-21.oct-cd.ut-4cb.buf-1.dro-f1.orb-3c.bs-a9)!", + result: { + word: "obstruct", + correct: 23, + position: 5, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "22.07.2025", + }, + }, + { + date: "22.07.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOh5yMx0yci9mLyEWLvJHcuEjL34yMuYTMuMDMy0CdjVnc0NnYvhSI", + value: "!(obstruct-203.16.3.7.1.pro-a2.obs-13.a9)!", + result: { + word: "obstruct", + correct: 16, + position: 3, + incorrect: 7, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 26, + date: "22.07.2025", + }, + }, + { + date: "22.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOh1yci9mL4QTMtg2Yz4yY50icpJmLzMTLlJWYuAjL34SMuYTMuMDMy0CdjVnc0NnYvhSI", + value: "!(obstruct-203.16.1.7.0.abe-33.bir-9c.3ch-148.obs-a9)!", + result: { + word: "obstruct", + correct: 16, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "22.07.2025", + }, + }, + { + date: "22.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTYtMnYv5SYk1ybvJmL4kTLw92YuAjL54yMuQTMuMDMy0CdjVnc0NnYvhSI", + value: "!(obstruct-203.14.3.9.0.cop-98.boo-da.obs-a9)!", + result: { + word: "obstruct", + correct: 14, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "22.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nietrudne-ale-18-12-2025-diffle-diffleen-grywebowe-38-letters-in-7-words-large-g" +] = [ + { + date: "18.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUWOuEzMtIXai5iZtIXan5SM1YjL0IjNtg2Yz4yNh1icvNnL10SZyRmLw4CMx4yMuUjMuITNz0SehRGa0JXaihSI", + value: + "!(birthday-352.25.3.10.0.dre-5.sor-a7.3ch-624.651.gir-f.bir-31.9e)!", + result: { + word: "birthday", + correct: 25, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 38, + date: "18.12.2025", + }, + }, + { + date: "18.12.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKllTLylmYuIjNtIXak5SN4ETLhJHduEWOtkmcw5iMy0SayRnL2gTLhVmcuAjL44yNuAjMuITNz0SehRGa0JXaihSI", + value: + "!(birthday-352.20.7.8.0.rea-86.tri-22.pri-9a.tra-185.dir-62.bir-9e)!", + result: { + word: "birthday", + correct: 20, + position: 7, + incorrect: 8, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "18.12.2025", + }, + }, + { + date: "18.12.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKllTLylmYuE2Mx0Sa0NnLlFTLlJ3YuAjL24SMuUTMuITNz0SehRGa0JXaihSI", + value: "!(birthday-352.15.1.6.0.cre-1e.sti-13a.bir-9e)!", + result: { + word: "birthday", + correct: 15, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "18.12.2025", + }, + }, + { + date: "18.12.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKllTLylmYugTOx0ichhmL5YTL0lGcukjYt8mcm5SM40icpJmL20yY4VmLw4SMx4yMuIjMuITNz0SehRGa0JXaihSI", + value: + "!(birthday-352.22.3.11.0.exc-6.bir-81.fro-b9.pit-69.har-198.bir-9e)!", + result: { + word: "birthday", + correct: 22, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "18.12.2025", + }, + }, + { + date: "18.12.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKllTLylmYukTLilHauMTMtM3bw5CNz0ibhJnLyYTLtF2ZuAjL34SNuYTMuITNz0SehRGa0JXaihSI", + value: "!(birthday-352.16.5.7.0.gam-62.ran-34.pos-13.hyb-9.bir-9e)!", + result: { + word: "birthday", + correct: 16, + position: 5, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "18.12.2025", + }, + }, + { + date: "18.12.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKllTLylmYuQjMx0ybyRnL0Y2MtEGaj5yNl1SYsNnLw4CMx4COuUTMuITNz0SehRGa0JXaihSI", + value: "!(birthday-352.15.8.10.0.sla-e7.cha-3f4.tro-124.bir-9e)!", + result: { + word: "birthday", + correct: 15, + position: 8, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "18.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nietrudne-ale-ma-troche-mozliwosci-21-12-2025-diffle-diffleen-grywebowe-53-lette" +] = [ + { + date: "21.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUmNucTLuVmcuYmMtIXdi5CMts2bq5CM40iblRmL00iblBnLmhTL0VWbuUWMt4mbh5yM5ITLhh2YuEjLwIjLx4iMz4SN1MTLsF2dl5WZyhSI", + value: + "!(renewal-355.32.1.20.1.cha-293.ann-1e.met-8f.pen-4.den-80.jok-0.bur-2f.ren-7.6e)!", + result: { + word: "renewal", + correct: 32, + position: 1, + incorrect: 20, + knownIncorrect: 1, + totalWords: 9, + totalLetters: 53, + date: "21.12.2025", + }, + }, + { + date: "21.12.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlZjL40ibuYDOtEWZy5CMuYjLy4CNx4SN1MTLsF2dl5WZyhSI", + value: "!(renewal-355.14.2.6.0.rea-86.n-8.6e)!", + result: { + word: "renewal", + correct: 14, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "21.12.2025", + }, + }, + { + date: "21.12.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZ20iblJnLyYTLylWYuImZtEmcj5CMuQjLz4yMx4SN1MTLsF2dl5WZyhSI", + value: "!(renewal-355.13.3.4.0.cra-fb.air-62.ren-6e)!", + result: { + word: "renewal", + correct: 13, + position: 3, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "21.12.2025", + }, + }, + { + date: "21.12.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZ20ibuAzMtYnLyIWLz5iZ00SZlJnLzITL09WbuAjLyEjLx4iMy4SN1MTLsF2dl5WZyhSI", + value: "!(renewal-355.22.1.12.0.mot-23.ree-4f.s-b2.v-30.n-6e)!", + result: { + word: "renewal", + correct: 22, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "21.12.2025", + }, + }, + { + date: "21.12.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlZjLlVWLu5COtcmLhNTMtEmLjVTLsVmcuIjNt0WYn5SMuUjLz4CNy4SN1MTLsF2dl5WZyhSI", + value: "!(renewal-355.24.3.5.1.gam-62.rel-5c.a-13a.g-8.n-ee.6e)!", + result: { + word: "renewal", + correct: 24, + position: 3, + incorrect: 5, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 32, + date: "21.12.2025", + }, + }, + { + date: "21.12.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUmNt4WZy5iNy0ybydnLyYTLk5CZl1ycugTLn5iM3ETLhVmcuYTLjhXZuAjL0EjLy4CMz4SN1MTLsF2dl5WZyhSI", + value: + "!(renewal-355.30.2.14.0.exc-6.rea-172.g-8.s-ed.d-62.wro-26.ren-6e)!", + result: { + word: "renewal", + correct: 30, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 46, + date: "21.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nietrudne-ale-trzeba-trafic-31-07-2025-diffle-diffleen-grywebowe-20-letters-in-3" +] = [ + { + date: "31.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4MmMugTZz0ichNmLykTLhV2duAjL34SMuITMuITMy0ybnJXYjhSI", + value: "!(cargo-212.12.1.7.0.wea-92.car-3e8.2c8)!", + result: { + word: "cargo", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "31.07.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4MmMtIXYucTZt8mcj5yMy0Cdv1mLw4SMx4SMuATMuITMy0ybnJXYjhSI", + value: "!(cargo-212.10.1.11.0.mot-23.cro-e7.ar-2c8)!", + result: { + word: "cargo", + correct: 10, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + }, + }, + { + date: "31.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4MmMtIXYuEjMtUGaj5CMuUjLw4COuITMy0ybnJXYjhSI", + value: "!(cargo-212.8.0.5.0.che-21.ar-2c8)!", + result: { + word: "cargo", + correct: 8, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "31.07.2025", + }, + }, + { + date: "31.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOjJTLyF2YuIjNt0WYn5CMuIjLx4yNuITMy0ybnJXYjhSI", + value: "!(cargo-212.7.1.2.0.gam-62.car-2c8)!", + result: { + word: "cargo", + correct: 7, + position: 1, + incorrect: 2, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 10, + date: "31.07.2025", + }, + }, + { + date: "31.07.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOjJTLyF2YuUjYx0yYyFmLyEWLvJHcuAjL54yMuATMuITMy0ybnJXYjhSI", + value: "!(cargo-212.10.3.9.0.pro-a2.arc-1b5.car-2c8)!", + result: { + word: "cargo", + correct: 10, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "31.07.2025", + }, + }, + { + date: "31.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgzYy0ichNmLlFTLuFmcuIzMtcWYw5CM30iYtFmLw4SMx4yMuETMuITMy0ybnJXYjhSI", + value: "!(cargo-212.11.3.11.0.amb-70.pag-32.ran-1e.car-2c8)!", + result: { + word: "cargo", + correct: 11, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "31.07.2025", + }, + }, + { + date: "31.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4MmMtIXYugTOtA3bj5CMugjLy4COuITMy0ybnJXYjhSI", + value: "!(cargo-212.8.2.8.0.cop-98.ar-2c8)!", + result: { + word: "cargo", + correct: 8, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "31.07.2025", + }, + }, + { + date: "31.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4MmMukzYugTZz0ichNmL2gTLhVmcuAjL24iMuUTMuITMy0ybnJXYjhSI", + value: "!(cargo-212.15.2.6.0.rea-86.car-3e8.c9.2c8)!", + result: { + word: "cargo", + correct: 15, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "31.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nietrudne-ale-z-mozliwosciami-22-09-2025-diffle-diffleen-grywebowe-33-letters-in" +] = [ + { + date: "22.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkFTLvJnL00ybj5yMt42bp5SZ40yboBnLxImMt02bj5CMuATMuIjLxIjL1YjMtMWau9mcphSI", + value: "!(ironic-265.21.2.10.0.com-2b1.pho-8e.ion-3.co-4.ro-1d)!", + result: { + word: "ironic", + correct: 21, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "22.09.2025", + }, + }, + { + date: "22.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZx0ybylmLhlTMtIHaj5iMh1ybyBnLw4SOuAjL1EjL1YjMtMWau9mcphSI", + value: "!(ironic-265.15.0.9.0.pro-a2.chr-19a.iro-1d)!", + result: { + word: "ironic", + correct: 15, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "22.09.2025", + }, + }, + { + date: "22.09.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQWMt8mcp5iMiVTLvJHcuITLs9mcuMjMtQ3bt5CMuMTMuEjL2EjL1YjMtMWau9mcphSI", + value: "!(ironic-265.16.1.13.0.mot-23.rol-2.pro-5b2.iro-1d)!", + result: { + word: "ironic", + correct: 16, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "22.09.2025", + }, + }, + { + date: "22.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZx0ybylmLhlTMtIHaj5iN40SYlJnLw4iNuIjL0EjL1YjMtMWau9mcphSI", + value: "!(ironic-265.14.2.6.0.rea-86.chr-19a.iro-1d)!", + result: { + word: "ironic", + correct: 14, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "22.09.2025", + }, + }, + { + date: "22.09.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQWMt8mcp5iN5QTLvJHcukTMtMWay5SZx0SZyNmLw4COuIjL0EjL1YjMtMWau9mcphSI", + value: "!(ironic-265.14.2.8.0.cre-1e.ric-19.pro-496.iro-1d)!", + result: { + word: "ironic", + correct: 14, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "22.09.2025", + }, + }, + { + date: "22.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQWMt8mcuQTLvNWaukjZt4Wat5COh1ibpRnLxMTLwlmcucTMtMWao5iNtMGel5CMucTMuYjLyIjL1YjMtMWau9mcphSI", + value: + "!(ironic-265.22.6.17.0.exc-6.hic-17.rip-31.tin-a8.min-f9.ico-4.ro-1d)!", + result: { + word: "ironic", + correct: 22, + position: 6, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "22.09.2025", + }, + }, + { + date: "22.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZx0ybylmLy0yYpdnLjhTNt8mcw5yY20ybyZmLwcTL19mcuIjNt0WYn5CMuETMuAjL4EjL1YjMtMWau9mcphSI", + value: "!(ironic-265.18.0.11.0.gam-62.rou-70.fro-6c.pro-58c.wic-2.iro-1d)!", + result: { + word: "ironic", + correct: 18, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 29, + date: "22.09.2025", + }, + }, + { + date: "22.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkFTLvJXauEWOx0icoNmLzQTMt8mcn5iM2YTLoN2MuImMtk2bw5SYtUXZm5CMuUTMuEjL5EjL1YjMtMWau9mcphSI", + value: + "!(ironic-265.19.1.15.0.feu-a.poi-2b.3ch-662.gro-143.chr-19a.iro-1d)!", + result: { + word: "ironic", + correct: 19, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "22.09.2025", + }, + }, + { + date: "22.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQWMt8mcp5yN20SbvJnLjRWLpJnZugTOtA3bj5CMuITMuMjL1EjL1YjMtMWau9mcphSI", + value: "!(ironic-265.15.3.12.0.cop-98.fri-dc.rom-67.iro-1d)!", + result: { + word: "ironic", + correct: 15, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "22.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nietrudne-fajne-niebanalne-18-11-2025-diffle-diffleen-grywebowe-37-letters-in-6-" +] = [ + { + date: "18.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNxETL0hnL1kTLhxWZuEGMy0SYyRnLw0yZhVmLmRTLulGcugTMtMWdm5CMuITMuIjLzIjLyIzMtI3b0NWYyRHelhSI", + value: + "!(extractor-322.23.2.12.0.fuc-18.pin-4f.eag-0.tra-20a.ela-95.xt-117)!", + result: { + word: "extractor", + correct: 23, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "18.11.2025", + }, + }, + { + date: "18.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3ETMtQHel5iMl1CdlRmLwQ2NugDM40CajNjLiNTL1xGcuYDOtEWZy5CMuQTMuEjLzIjLyIzMtI3b0NWYyRHelhSI", + value: + "!(extractor-322.23.1.14.0.rea-86.plu-3b.3ch-808.7d0.det-e2.ext-117)!", + result: { + word: "extractor", + correct: 23, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "18.11.2025", + }, + }, + { + date: "18.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3ETMtQHel5iYi1CdjFmLlFTMtIWbl5SYm1icvNmLw4yNuIjLyIjLyIzMtI3b0NWYyRHelhSI", + value: "!(extractor-322.22.2.7.0.cor-fa.emb-11e.act-bb.ext-117)!", + result: { + word: "extractor", + correct: 22, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "18.11.2025", + }, + }, + { + date: "18.11.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcTMx0CduUWMtEGeuYWLh5WZuYmMtU2Yh5SZx0SZyNmLw4yMuMjL3IjLyIzMtI3b0NWYyRHelhSI", + value: "!(extractor-322.27.3.3.0.cre-1e.ace-2f.ena-f.xa-1e.t-117)!", + result: { + word: "extractor", + correct: 27, + position: 3, + incorrect: 3, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "18.11.2025", + }, + }, + { + date: "18.11.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNxETL0hXZukjMtEmc05yMy0Cdv1mLw4iNuMjL4EjLyIzMtI3b0NWYyRHelhSI", + value: "!(extractor-322.18.3.6.0.mot-23.tra-29.ext-117)!", + result: { + word: "extractor", + correct: 18, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "18.11.2025", + }, + }, + { + date: "18.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNxETL0hnL2QTLk5WZuYWOtEWZi5iM20SbhdmLw4COuEjL4EjLyIzMtI3b0NWYyRHelhSI", + value: "!(extractor-322.18.1.8.0.gam-62.bea-9f.end-46.xt-117)!", + result: { + word: "extractor", + correct: 18, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "18.11.2025", + }, + }, + { + date: "18.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcTMx0Cd4VmL3gTMtQnL0kTLhVmcuEmYtMWZz5CO50CcvNmLw4SOuQjLxMjLyIzMtI3b0NWYyRHelhSI", + value: "!(extractor-322.31.4.9.0.cop-98.sec-ba.rea-94.t-187.ext-117)!", + result: { + word: "extractor", + correct: 31, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 44, + date: "18.11.2025", + }, + }, + { + date: "18.11.2025", + nick: "User", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcTMx0Cd4VmL5kzMtg2Yz4yNtMWYy5SOzUTLyF2YuQmMt0WYs5SN30SYodnLw4SOuYjLyIjLyIzMtI3b0NWYyRHelhSI", + value: + "!(extractor-322.22.6.9.0.wha-75.lam-2d.car-539.rac-7.3ch-399.ext-117)!", + result: { + word: "extractor", + correct: 22, + position: 6, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "18.11.2025", + }, + }, + { + date: "18.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3ETMtQHel5SMx0SZoRnLmNWMtQXYw5SYtUXZm5CMuETMuMjL4EjLyIzMtI3b0NWYyRHelhSI", + value: "!(extractor-322.18.3.11.0.feu-a.pat-1cf.the-11.ext-117)!", + result: { + word: "extractor", + correct: 18, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "18.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/niezle-w-startowym-wszystko-na-szaro-26-06-2025-diffle-diffleen-grywebowe-21-let" +] = [ + { + date: "26.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMx0Cb1dmLx0CbnVnL2ETL1xGcuYDOtEWZy5CMuETMuMjL34yN3ETLmxWdnhSI", + value: "!(gulf-177.7.3.11.0.rea-86.plu-16.ugl-1.gul-12)!", + result: { + word: "gulf", + correct: 7, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "26.06.2025", + }, + }, + { + date: "26.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMx0Cb1dmL30Cb1hmL20Cb1pmLzMTLsVHcucDNtM2Yv5iY0UTLiV3cuAjL4EjLw4yMx4yN3ETLmxWdnhSI", + value: "!(gulf-177.13.0.18.0.sub-54b.occ-47.pul-33.jul-6.hul-7.gul-12)!", + result: { + word: "gulf", + correct: 13, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "26.06.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiMx0Cb1dmL0kTLoN2MuATLmVHcuMjMtQ3bt5CMuMTMuEjL54yN3ETLmxWdnhSI", + value: "!(gulf-177.9.1.13.0.mot-23.puf-0.3ch-94.gul-12)!", + result: { + word: "gulf", + correct: 9, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + }, + }, + { + date: "26.06.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITMuUjMtwWduImNtUHbuYDNx0ybydmLxITLlh2YuAjL0EjLx4SMx4yN3ETLmxWdnhSI", + value: "!(gulf-177.11.1.14.0.che-21.gro-146.lu-6b.ul-25.12)!", + result: { + word: "gulf", + correct: 11, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "26.06.2025", + }, + }, + { + date: "26.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyETLsVnL10Cdv5iM20SbhdmLw4yNuAjL24yN3ETLmxWdnhSI", + value: "!(gulf-177.6.0.7.0.gam-62.ot-5.ul-12)!", + result: { + word: "gulf", + correct: 6, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 13, + date: "26.06.2025", + }, + }, + { + date: "26.06.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITMtwWdn5COyETL1xmZuITYt8mcw5CMuITMuIjL24yN3ETLmxWdnhSI", + value: "!(gulf-177.6.2.12.0.pro-a2.flu-128.gul-12)!", + result: { + word: "gulf", + correct: 6, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "26.06.2025", + }, + }, + { + date: "26.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyETLsV3ZugTOtA3bj5CMuETMuAjL24yN3ETLmxWdnhSI", + value: "!(gulf-177.6.0.11.0.cop-98.gul-12)!", + result: { + word: "gulf", + correct: 6, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "26.06.2025", + }, + }, + { + date: "26.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITMtwWdn5SMtYWdi5yY20yby5SYtUXZm5CMuITMuEjL54yN3ETLmxWdnhSI", + value: "!(gulf-177.9.1.12.0.feu-a.ro-6c.buf-1.gul-12)!", + result: { + word: "gulf", + correct: 9, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "26.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/no-coz-byla-dluga-16-10-2025-diffle-diffleen-grywebowe-38-letters-in-6-words-lar" +] = [ + { + date: "16.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMzMtU3bq5SZi1SdvJmLlZTLy9GaucTYtI3bz5COtI3bm5SY2ETLvJHcuAjLzEjLx4CNy4SO4ITL5VmbyV3bqhSI", + value: + "!(journey-289.24.1.13.0.pro-16a.for-8.sor-a7.hor-6e.bou-be.jou-33)!", + result: { + word: "journey", + correct: 24, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "16.10.2025", + }, + }, + { + date: "16.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMzMtU3bq5iN40SYlJnLw4SNuIjL54SO4ITL5VmbyV3bqhSI", + value: "!(journey-289.9.2.5.0.rea-86.jou-33)!", + result: { + word: "journey", + correct: 9, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "16.10.2025", + }, + }, + { + date: "16.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMz0SdvpmLxIWLoNmMuQjMtU3bo5SO10SdvZmLiFTL19mbuIWY00CajNjLycTMtIXd05SYwETLyVHcuATLnJXduYTLjhXZuAjL4EjLz4SOy4SO4ITL5VmbyV3bqhSI", + value: + "!(journey-289.29.3.18.0.exc-6.urg-0.pur-10a.tur-172.3ch-4ab.nou-1b.fou-59.hou-24.2ch-b1.jou-33)!", + result: { + word: "journey", + correct: 29, + position: 3, + incorrect: 18, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 50, + date: "16.10.2025", + }, + }, + { + date: "16.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMzMtU3bq5iY4EjLmNjL5ITLoNmMuQGMx0ic1RnL4ETLuVncuQTLwBXduEWL1VmZuAjL0EjLz4CMy4SO4ITL5VmbyV3bqhSI", + value: + "!(journey-289.20.3.14.0.feu-a.upp-4.run-18.tur-10d.2ch-29.3f.18b.jou-33)!", + result: { + word: "journey", + correct: 20, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 37, + date: "16.10.2025", + }, + }, + { + date: "16.10.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMzMtU3bq5CNxgTLoN2MugDNt4Wdk5iNtM2bz5iZ40icvJmLllTNt8mcw5iNi1CblJnLyYTLtF2ZuAjL0EjLz4SMy4SO4ITL5VmbyV3bqhSI", + value: + "!(journey-289.21.3.14.0.gam-62.rel-b6.pro-59e.bor-8f.soc-6.dun-48.3ch-814.jou-33)!", + result: { + word: "journey", + correct: 21, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 38, + date: "16.10.2025", + }, + }, + { + date: "16.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzMTL19mauMGMx0icvhmL30iYvJnLlFTLlJ3YuAjLwEjLx4yNx4SO4ITL5VmbyV3bqhSI", + value: "!(journey-289.17.1.10.0.cre-1e.rob-7.hor-10c.jou-33)!", + result: { + word: "journey", + correct: 17, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "16.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/no-latwym-bym-tego-nie-nazwal-04-12-2025-diffle-diffleen-grywebowe-30-letters-in" +] = [ + { + date: "04.12.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY00Cdy9mL4ADOtg2Yz4yMt0Wdk5iZ1ETLy9GcuYDOtEWZy5CMuETMuAjL5EjL4MzMtkHevR2boRncvhSI", + value: "!(orthodoxy-338.19.0.11.0.rea-86.por-15f.dum-3.3ch-808.ort-4a)!", + result: { + word: "orthodoxy", + correct: 19, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "04.12.2025", + }, + }, + { + date: "04.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY04SN00Cdy9mL3MTLv9GZuQWMt82bo5SZy0SYwFmLw4iNuMjL2IjL4MzMtkHevR2boRncvhSI", + value: "!(orthodoxy-338.26.3.6.0.apa-2e.hoo-1d.doo-37.ort-45.4a)!", + result: { + word: "orthodoxy", + correct: 26, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "04.12.2025", + }, + }, + { + date: "04.12.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhRTL0J3buETO10CajNjL2ETLw9GZuQTLs9mauUmMx0icvdnLjNTLv9mLwQTL1hGduEjMtUGaj5CMuYTMuIjL4IjL4MzMtkHevR2boRncvhSI", + value: + "!(orthodoxy-338.28.2.16.0.che-21.thu-40.oo-3c.wor-12e.jol-4.dop-16.3ch-591.ort-4a)!", + result: { + word: "orthodoxy", + correct: 28, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 46, + date: "04.12.2025", + }, + }, + { + date: "04.12.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY00Cdy9mLhJTMtI3b35CMt8mcm5CM3cTLoN2MuYWMtQ2bi5iZl1CbwNnLwcTL19mcuIjNt0WYn5CMuUTMuEjL1IjL4MzMtkHevR2boRncvhSI", + value: + "!(orthodoxy-338.25.1.15.0.gam-62.rou-70.spl-ef.bod-1f.3ch-770.fro-0.wor-12a.ort-4a)!", + result: { + word: "orthodoxy", + correct: 25, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 41, + date: "04.12.2025", + }, + }, + { + date: "04.12.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEGNtQncv5CO50CcvNmLw4COuIjLyEjL4MzMtkHevR2boRncvhSI", + value: "!(orthodoxy-338.12.2.8.0.cop-98.ort-4a)!", + result: { + word: "orthodoxy", + correct: 12, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "04.12.2025", + }, + }, + { + date: "04.12.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEGNuUDNtQncv5iYyUTLy9mZucTZtEGbz5CMuATMuIjLyIjL4MzMtkHevR2boRncvhSI", + value: "!(orthodoxy-338.22.2.10.0.sla-e7.for-52b.ort-45.4a)!", + result: { + word: "orthodoxy", + correct: 22, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "04.12.2025", + }, + }, + { + date: "04.12.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY00Cdy9mL3YTLylGZuQTNtIWdy5SZx0SZyNmLw4yNuEjL2EjL4MzMtkHevR2boRncvhSI", + value: "!(orthodoxy-338.16.1.7.0.cre-1e.rub-54.dir-67.ort-4a)!", + result: { + word: "orthodoxy", + correct: 16, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "04.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/no-nie-robcie-sobie-jaj-07-12-2025-diffle-diffleen-grywebowe-22-letters-in-3-wor" +] = [ + { + date: "07.12.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3UTLuVnZuYWL1VmbuYDOtEWZy5CMuUjLz4CNx4SM0MTLsFmcl5WdmhSI", + value: "!(funeral-341.14.3.5.0.rea-86.neu-f.fun-57)!", + result: { + word: "funeral", + correct: 14, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "07.12.2025", + }, + }, + { + date: "07.12.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3UjLlNTLuVnZuMjMtQ3bt5CMukjLw4iNx4SM0MTLsFmcl5WdmhSI", + value: "!(funeral-341.16.0.9.0.mot-23.fun-3e.57)!", + result: { + word: "funeral", + correct: 16, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "07.12.2025", + }, + }, + { + date: "07.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyN14yMj1ib1ZmL4MWLuVHcuAzNtInb15iYlJTLj5WauAjLwEjLz4CMy4SM0MTLsFmcl5WdmhSI", + value: "!(funeral-341.20.3.10.0.inc-2eb.unr-70.pun-c8.fun-c3.57)!", + result: { + word: "funeral", + correct: 20, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "07.12.2025", + }, + }, + { + date: "07.12.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3UTLuVnZuEjNt4Wdi5SNtIXZm5SNx0SYyVmLxETLyVGauIjNt0WYn5CMuYjLx4CNy4SM0MTLsFmcl5WdmhSI", + value: "!(funeral-341.24.1.6.0.gam-62.her-11.era-15.fer-5.bun-61.fun-57)!", + result: { + word: "funeral", + correct: 24, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "07.12.2025", + }, + }, + { + date: "07.12.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcTNt4Wdm5yN00ibp1mLi1ie1JmLmFjMtg2Yz4iYy0SZw9mLmFTLzFWZuAjLxEjLx4SOx4SM0MTLsFmcl5WdmhSI", + value: + "!(funeral-341.19.1.11.0.eas-1f.ope-2b.3ch-21f.buz-b.min-47.fun-57)!", + result: { + word: "funeral", + correct: 19, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "07.12.2025", + }, + }, + { + date: "07.12.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyN10ib15SNtIXZm5SYzETLhVmcugTOtA3bj5CMukjLy4COx4SM0MTLsFmcl5WdmhSI", + value: "!(funeral-341.18.2.9.0.cop-98.rea-13a.fer-5.un-57)!", + result: { + word: "funeral", + correct: 18, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "07.12.2025", + }, + }, + { + date: "07.12.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyN10ib15SYtUXZm5CMuQjLx4SMx4SM0MTLsFmcl5WdmhSI", + value: "!(funeral-341.11.1.4.0.feu-a.un-57)!", + result: { + word: "funeral", + correct: 11, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "07.12.2025", + }, + }, + { + date: "07.12.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcTNt4WduUTLyVmZuYWMy0CajNjLkRTLhJ3ZuUWMtUmcj5CMuUjLy4SOx4SM0MTLsFmcl5WdmhSI", + value: "!(funeral-341.19.2.5.0.cre-1e.gra-4d.3ch-21f.fer-5.un-57)!", + result: { + word: "funeral", + correct: 19, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "07.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/no-tak-prawidlowa-literke-znalazlem-eliminujac-wszystkie-pozostale-21-07-2025-di" +] = [ + { + date: "21.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYh1icvZmLzUTLy9mYugDM44SO3UTLoN2MuImMtUHbw5yMy0icvdmL2gTLhVmcuAjL1EjLx4SNx4iMwITLlJ3bmhSI", + value: + "!(fore-202.15.1.15.0.rea-86.gor-23.plu-2b.3ch-579.808.bor-53.for-aa)!", + result: { + word: "fore", + correct: 15, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 31, + date: "21.07.2025", + }, + }, + { + date: "21.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEWYtInL2UTLs9mZuMjMtI3bn5yY0UTLoN2MuIjMt02bo5CZlFTLvB3cuAjLyEjLw4yNx4iMwITLlJ3bmhSI", + value: "!(fore-202.17.0.12.0.spo-1ed.hom-22.3ch-54c.gor-23.fol-56.r-aa)!", + result: { + word: "fore", + correct: 17, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 29, + date: "21.07.2025", + }, + }, + { + date: "21.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEWYtI3bm5CN00iZlJnLjFWLlJHZuQTOm1SZyBnLxITLlh2YuAjL0EjLx4SMx4iMwITLlJ3bmhSI", + value: "!(fore-202.11.1.14.0.che-21.pre-f94.dre-ac.ref-44.for-aa)!", + result: { + word: "fore", + correct: 11, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "21.07.2025", + }, + }, + { + date: "21.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEWYtI3buITLylmLjNWLlJnZuUGZx0SZyNmLkNWLlJnYuIDOxETLlJHcuADNz0yclJnLyYTLtF2ZuAjL0EjLx4SOx4iMwITLlJ3bmhSI", + value: + "!(fore-202.19.1.14.0.gam-62.res-340.pre-1182.bre-cd.cre-1de.fre-cc.ir-2.or-aa)!", + result: { + word: "fore", + correct: 19, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 34, + date: "21.07.2025", + }, + }, + { + date: "21.07.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEWYtI3bm5SY20SdyRmLzITLy92ZuQGNt8Ga35yY00icvNnLyEWLvJHcuAjL2EjLx4iNx4iMwITLlJ3bmhSI", + value: "!(fore-202.16.1.16.0.pro-a2.sor-4c.who-4d.gor-23.dru-6a.for-aa)!", + result: { + word: "fore", + correct: 16, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "21.07.2025", + }, + }, + { + date: "21.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhFWLy9mZuQ2MtI3b35SO3UTLoN2MuQ2NtI3bt5yY00icvNnL4kTLw92YuAjLzEjLw4SOx4iMwITLlJ3bmhSI", + value: "!(fore-202.19.0.13.0.cop-98.sor-4c.mor-7d.3ch-579.wor-3d.for-aa)!", + result: { + word: "fore", + correct: 19, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "21.07.2025", + }, + }, + { + date: "21.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEWYtI3bm5CZz0icvdnL5cTNtg2Yz4iMk1icvNmLl1iYvJnLk1ycvBnL4UTLpxWYuAjLzEjLy4COx4iMwITLlJ3bmhSI", + value: + "!(fore-202.18.2.13.0.ali-58.pos-d.rob-e.cor-d2.3ch-579.wor-3d.for-aa)!", + result: { + word: "fore", + correct: 18, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 33, + date: "21.07.2025", + }, + }, + { + date: "21.07.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYh1icvZmLk1iZvRnLhRTLmVmYuEzMy0SbvNmL1cTLwFmcuIjL1EjLw4yNx4iMwITLlJ3bmhSI", + value: "!(fore-202.17.0.15.2.rap-75.com-231.bef-4a.tof-d.for-aa)!", + result: { + word: "fore", + correct: 17, + position: 0, + incorrect: 15, + knownIncorrect: 2, + totalWords: 5, + totalLetters: 32, + date: "21.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/no-to-latwe-nie-jest-14-08-2025-diffle-diffleen-grywebowe-32-letters-in-5-words-" +] = [ + { + date: "14.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1MTLuFmZuUjMz0ibh1mLhRTLn5WYuMzM00CajNjL2gTLhVmcuAjLxEjLy4SOx4iNyITLlJXYm5WYmhSI", + value: "!(fanfare-226.19.2.11.0.rea-86.3ch-433.ang-4a.man-325.fan-35)!", + result: { + word: "fanfare", + correct: 19, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "14.08.2025", + }, + }, + { + date: "14.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1MTLuFmZugzNtg2Yz4iZtEWZu5yMjlTLu92YuAjLwEjLx4iNx4iNyITLlJXYm5WYmhSI", + value: "!(fanfare-226.16.1.10.0.con-9c3.nea-f.3ch-78.fan-35)!", + result: { + word: "fanfare", + correct: 16, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "14.08.2025", + }, + }, + { + date: "14.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUzMt4WYm5iM0ITLoN2MuQDMx0ibhJmL4QWLuFWbuUmNt4WZy5CZ00SdvBnLxITLlh2YuAjL2EjL04SMy4iNyITLlJXYm5WYmhSI", + value: + "!(fanfare-226.21.4.16.0.che-21.pou-4d.ren-6e.man-d8.ban-104.3ch-242.fan-35)!", + result: { + word: "fanfare", + correct: 21, + position: 4, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "14.08.2025", + }, + }, + { + date: "14.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUzMt4WYm5yN0IjL0M2MuQWN30CajNjLllTLph2duUTLzVHZuATNx0SYs5yY00ichZmLhdjMtIXYj5iNl1ichJmLyYTLtF2ZuAjL4EjLx4yNy4iNyITLlJXYm5WYmhSI", + value: + "!(fanfare-226.27.1.18.0.gam-62.bar-e6.car-27a.far-4c.la-150.dus-5.whi-9e.3ch-75d.3c4.247.fan-35)!", + result: { + word: "fanfare", + correct: 27, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 46, + date: "14.08.2025", + }, + }, + { + date: "14.08.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1MTLu5yY00ichZmL4kTLw92YuAjLwEjLx4yMx4iNyITLlJXYm5WYmhSI", + value: "!(fanfare-226.13.1.10.0.cop-98.far-4c.n-35)!", + result: { + word: "fanfare", + correct: 13, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "14.08.2025", + }, + }, + { + date: "14.08.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUzMt4mLjRTLyFmZuImZx0SY1FnL3ETLyFGZuQ2MtE2dz5CZh1ichhmLyEWLvJHcuAjL1EjLx4yMy4iNyITLlJXYm5WYmhSI", + value: + "!(fanfare-226.23.1.15.0.pro-a2.har-ad.swa-3d.dar-17.qua-1fb.far-4c.n-35)!", + result: { + word: "fanfare", + correct: 23, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "14.08.2025", + }, + }, + { + date: "14.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNz0ibuMGNtIXYm5CZh1ichhmL3ETLyFGZuIzMtMXdh5CMugjLx4SOx4iNyITLlJXYm5WYmhSI", + value: "!(fanfare-226.19.1.8.0.aus-32.dar-17.har-ad.far-4c.n-35)!", + result: { + word: "fanfare", + correct: 19, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "14.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/o-ale-fuks-09-08-2025-diffle-diffleen-grywebowe-16-letters-in-2-words-large-gree" +] = [ + { + date: "09.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxITLzFWbuY2Mx0iclRnLw4yMuEjLyEjLxIjMtUmbpxWdjNXYthSI", + value: "!(masculine-221.12.1.3.0.ter-13f.mas-21)!", + result: { + word: "masculine", + correct: 12, + position: 1, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "09.08.2025", + }, + }, + { + date: "09.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMy0ych1mL3kjMtg2Yz4iN40SYlJnLw4CNuIjL1EjLxIjMtUmbpxWdjNXYthSI", + value: "!(masculine-221.15.2.4.0.rea-86.3ch-297.mas-21)!", + result: { + word: "masculine", + correct: 15, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "09.08.2025", + }, + }, + { + date: "09.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEjMtMXYt5COk1CbwNnL4UTLzFWbuYmMtU2Yh5SMy0SZoNmLw4iNuIjLzIjLxIjMtUmbpxWdjNXYthSI", + value: "!(masculine-221.23.2.6.0.che-21.ace-2f.mas-58.spl-d8.mas-21)!", + result: { + word: "masculine", + correct: 23, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "09.08.2025", + }, + }, + { + date: "09.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEjMtMXYt5iZy0SezBnLiZTLp5yM1ETLs5iM20SaugDZt4WYt5iM20SbhdmLw4COuEjL0MjLxIjMtUmbpxWdjNXYthSI", + value: + "!(masculine-221.34.1.8.0.gam-62.man-d8.i-62.l-153.i-6b.psy-2f.mas-21)!", + result: { + word: "masculine", + correct: 34, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 43, + date: "09.08.2025", + }, + }, + { + date: "09.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEjMtMnL5ETLw5iY00icugjNtMWYt5SN10yasFmL0QWLuFGbuIDNtY3bu5CMuATMuIjL4IjLxIjMtUmbpxWdjNXYthSI", + value: + "!(masculine-221.28.2.10.0.nov-42.lan-d4.alk-55.mac-68.r-4b.p-19.s-21)!", + result: { + word: "masculine", + correct: 28, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "09.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/o-szlag-chyba-teraz-bedzie-slownik-czesto-w-uzyciu-01-12-2025-diffle-diffleen-gr" +] = [ + { + date: "01.12.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgTMtMXauUTMtcWdw5iNtkGbz5iN40SYlJnLw4SOuMjLzEjL1MzMtMXZjNXawhSI", + value: "!(pisces-335.13.3.9.0.rea-86.sli-6.pug-15.is-18)!", + result: { + word: "pisces", + correct: 13, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "01.12.2025", + }, + }, + { + date: "01.12.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOx0ycpBnLjFTLlN2cuMjMtQ3bt5CMuITMuAjLxEjL1MzMtMXZjNXawhSI", + value: "!(pisces-335.11.0.12.0.mot-23.sce-1c.pis-18)!", + result: { + word: "pisces", + correct: 11, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "01.12.2025", + }, + }, + { + date: "01.12.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOx0ycuYTMt0mL3UTLjlGcugTOtA3bj5CMuMTMuEjL1EjL1MzMtMXZjNXawhSI", + value: "!(pisces-335.15.1.13.0.cop-98.pic-57.m-16.s-18)!", + result: { + word: "pisces", + correct: 15, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "01.12.2025", + }, + }, + { + date: "01.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOx0ycpBnL0ITLzl2aucjYz0ycp1mLhFTMtUnc05SMucTMuEjL3EjL1MzMtMXZjNXawhSI", + value: "!(pisces-335.17.1.17.1.tru-11a.mis-3b7.kis-24.pis-18)!", + result: { + word: "pisces", + correct: 17, + position: 1, + incorrect: 17, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 35, + date: "01.12.2025", + }, + }, + { + date: "01.12.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgTMuYGNtMXaw5yM30Sa0NnLmJWLj5WauETMtMWat5iNtMGel5CMuMTMuMjLwIjL1MzMtMXZjNXawhSI", + value: "!(pisces-335.20.3.13.0.exc-6.mic-11.inc-bf.sti-73.pis-4f.18)!", + result: { + word: "pisces", + correct: 20, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "01.12.2025", + }, + }, + { + date: "01.12.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4ETLz5CMx0SZpBnLxEWLpB3cuIWNtgGdl5iM20SbhdmLw4SOuIjL3EjL1MzMtMXZjNXawhSI", + value: "!(pisces-335.17.2.9.0.gam-62.eth-5b.spi-a1.pie-10.s-18)!", + result: { + word: "pisces", + correct: 17, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "01.12.2025", + }, + }, + { + date: "01.12.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4ETLz5SM20SZpBnLlZTLzVmYucTZtEGbz5CMuITMuIjL0EjL1MzMtMXZjNXawhSI", + value: "!(pisces-335.14.2.12.0.sla-e7.bes-6e.pie-61.s-18)!", + result: { + word: "pisces", + correct: 14, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "01.12.2025", + }, + }, + { + date: "01.12.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4ETLzlGcuEWL1VmZuAjL24SMugjL1MzMtMXZjNXawhSI", + value: "!(pisces-335.8.1.6.0.feu-a.pis-18)!", + result: { + word: "pisces", + correct: 8, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "01.12.2025", + }, + }, + { + date: "01.12.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOx0ycpBnLkFTLpB3cuMjMtMWai5SZx0SZyNmLw4SNuIjL3EjL1MzMtMXZjNXawhSI", + value: "!(pisces-335.17.2.5.0.cre-1e.bic-23.spi-1d.pis-18)!", + result: { + word: "pisces", + correct: 17, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "01.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/pewnie-dla-wielu-bedzie-latwe-mi-jakos-mozolnie-szlo-20-08-2025-diffle-diffleen-" +] = [ + { + date: "20.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUTMtQmbl5SN0QTLoN2MukDNtcmbh5CZhVjL2AzMuEmM20CajNjL2gTLhVmcuAjL54iMuMjMuIzMy0icldmbhRmblhSI", + value: + "!(endanger-232.23.2.9.0.rea-86.3ch-62a.306.5ad.ang-49.3ch-445.end-15)!", + result: { + word: "endanger", + correct: 23, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 34, + date: "20.08.2025", + }, + }, + { + date: "20.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1ETLk5WZuEjNt4WYk5CNwETLuF2YuAjL34SMucTMuIzMy0icldmbhRmblhSI", + value: "!(endanger-232.17.1.7.0.can-104.dan-61.end-15)!", + result: { + word: "endanger", + correct: 17, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "20.08.2025", + }, + }, + { + date: "20.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNx0CZu5CMtcWYuYTLjhXZuAjL24CMuYTMuIzMy0icldmbhRmblhSI", + value: "!(endanger-232.16.0.6.0.exc-6.ag-0.nd-15)!", + result: { + word: "endanger", + correct: 16, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "20.08.2025", + }, + }, + { + date: "20.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNx0CZuVmL4IWLpxmZucDOtM3bw5SM20ibhRmL2ATMt4WYo5CZy0ibhdnL3MWLuFmYukDNtcmbh5iM20SbhdmLw4iMx4SMuczMuIzMy0icldmbhRmblhSI", + value: + "!(endanger-232.37.1.12.0.gam-62.ang-49.ban-c7.wan-2d.han-106.dan-61.pos-87.fli-b8.end-15)!", + result: { + word: "endanger", + correct: 37, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 50, + date: "20.08.2025", + }, + }, + { + date: "20.08.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNx0CZuVmLzETLlZXYuATLnVHauQ2MtE2dz5COtEWZm5iMh1ybyBnLw4SNx4iMuEjMuIzMy0icldmbhRmblhSI", + value: "!(endanger-232.21.2.15.0.pro-a2.fea-8.swa-3d.hug-0.ave-13.end-15)!", + result: { + word: "endanger", + correct: 21, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "20.08.2025", + }, + }, + { + date: "20.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNx0CZuVmLx0icl5mL1gDNtIXZw5COx0SZoNmLh1SdlZmLw4SMx4SMugTMuIzMy0icldmbhRmblhSI", + value: "!(endanger-232.18.1.11.0.feu-a.che-18.per-485.ner-1.end-15)!", + result: { + word: "endanger", + correct: 18, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "20.08.2025", + }, + }, + { + date: "20.08.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNx0CZu5CMtcWYl5yMy0icnFmL4kTLw92YuAjL54CNugTMuIzMy0icldmbhRmblhSI", + value: "!(endanger-232.18.4.9.0.cop-98.agr-23.eag-0.nd-15)!", + result: { + word: "endanger", + correct: 18, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "20.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/pewnie-dla-wielu-to-proste-slowo-ale-ja-go-nie-uzywam-15-07-2025-diffle-diffleen" +] = [ + { + date: "15.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMtQ3bo5SNj1CajNjLmhTL09mYuMzMt02b05iN40SYlJnLw4SOuQjL2EjL2kTMtQWZiR3bohSI", + value: "!(hotbed-196.16.4.9.0.rea-86.tom-33.bot-8f.3ch-c5.hot-0)!", + result: { + word: "hotbed", + correct: 16, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "15.07.2025", + }, + }, + { + date: "15.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMuEWMuQGNtQnL3MTLt9GauUWNtUHaz5iY1ETLyhGduEjMtUGaj5CMuMTMuIjL1IjL2kTMtQWZiR3bohSI", + value: "!(hotbed-196.25.2.13.0.che-21.thr-15b.shu-5e.hom-37.t-4d.1a.0)!", + result: { + word: "hotbed", + correct: 25, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "15.07.2025", + }, + }, + { + date: "15.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKw0CdvhmLiVWLv9mYuYTLw9WbuITL0lnYuITLlV3cuQzMtUGbj5CMuQTMuIjL4EjL2kTMtQWZiR3bohSI", + value: "!(hotbed-196.18.2.14.0.cle-34.sue-2.byt-2.mop-6.boo-eb.hot-0)!", + result: { + word: "hotbed", + correct: 18, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "15.07.2025", + }, + }, + { + date: "15.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMuQGNtQ3bo5iNx0CcvRmLxYTLuVnYucTNx0yboNnLiVTLoRXZuIjNt0WYn5CMuMTMuMjL5EjL2kTMtQWZiR3bohSI", + value: + "!(hotbed-196.19.3.13.0.gam-62.eth-5b.sho-157.bun-61.dop-16.hot-4d.0)!", + result: { + word: "hotbed", + correct: 19, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 35, + date: "15.07.2025", + }, + }, + { + date: "15.07.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMtQ3bo5yMt8Gan5iMh1ybyBnLw4SOuEjLyEjL2kTMtQWZiR3bohSI", + value: "!(hotbed-196.12.1.9.0.pro-a2.gho-3.hot-0)!", + result: { + word: "hotbed", + correct: 12, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "15.07.2025", + }, + }, + { + date: "15.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKw0CdvhmLwATMt8Gbj5iNlVTLoN2MuIzMtMXdh5CMuATMuEjL0EjL2kTMtQWZiR3bohSI", + value: "!(hotbed-196.14.1.10.0.aus-32.3ch-5e6.clo-100.hot-0)!", + result: { + word: "hotbed", + correct: 14, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "15.07.2025", + }, + }, + { + date: "15.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMtQ3bo5CO50CcvNmLw4COuEjLwEjL2kTMtQWZiR3bohSI", + value: "!(hotbed-196.10.1.8.0.cop-98.hot-0)!", + result: { + word: "hotbed", + correct: 10, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "15.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/piekne-po-prostu-piekne-08-07-2025-diffle-diffleen-grywebowe-35-letters-in-5-wor" +] = [ + { + date: "08.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZ00SduUGNtcnLj1CbucTLh9mYuAzNx0icvNmLw4COuIjL1IjL5gTMtQmchZXZsV3bihSI", + value: "!(boulevard-189.25.2.8.0.cor-170.boa-7.l-c.w-4e.u-4e)!", + result: { + word: "boulevard", + correct: 25, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "08.07.2025", + }, + }, + { + date: "08.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZ00SduYmMtQmLk1SZv5iZ50SYlJmLw0iclhmLwYTLyVXZuYDOtEWZy5CMuATMuYjL5IjL5gTMtQmchZXZsV3bihSI", + value: + "!(boulevard-189.29.6.10.0.rea-86.eur-60.her-0.bea-9f.oe-d.d-2f.u-4e)!", + result: { + word: "boulevard", + correct: 29, + position: 6, + incorrect: 10, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "08.07.2025", + }, + }, + { + date: "08.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlRTL19mYuYWL19mZuQWL19GbuMjY00CajNjLmJWLhVGZuQTLh92cuQTMtUmdv5iZzETLlJHcuEjMtUGaj5CMugTMuYjLxMjL5gTMtQmchZXZsV3bihSI", + value: + "!(boulevard-189.31.6.18.0.che-21.pre-13f.ove-14.soa-4.dea-bf.3ch-4b3.lou-d.fou-f.bou-4e)!", + result: { + word: "boulevard", + correct: 31, + position: 6, + incorrect: 18, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 55, + date: "08.07.2025", + }, + }, + { + date: "08.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUGNtU3buUDZtEWZuYTZtIXYi5iM20SbhdmLw4yMuIjL4EjL5gTMtQmchZXZsV3bihSI", + value: "!(boulevard-189.18.2.3.0.gam-62.bar-e6.ea-d5.ou-4e)!", + result: { + word: "boulevard", + correct: 18, + position: 2, + incorrect: 3, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "08.07.2025", + }, + }, + { + date: "08.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZ00Sdv5CZ20Sds5CMx0Cd1JmL40iY1FmLw4COuMjL5EjL5gTMtQmchZXZsV3bihSI", + value: "!(boulevard-189.19.3.8.0.aub-8.but-10.lu-6d.ou-4e)!", + result: { + word: "boulevard", + correct: 19, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "08.07.2025", + }, + }, + { + date: "08.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZ00SdukTLh9mLwUmMtIXYi5CO50CcvNmLw4COuMjLwIjL5gTMtQmchZXZsV3bihSI", + value: "!(boulevard-189.20.3.8.0.cop-98.bar-2e0.oa-9.u-4e)!", + result: { + word: "boulevard", + correct: 20, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "08.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/pieta-achillesowa-benedicts-cumberbatcha-20-09-2025-diffle-diffleen-grywebowe-36" +] = [ + { + date: "20.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSO50iblBnL0UmMtMmbp5yY30SauVnLlNmNtQnbh5SO3ETLu9WbuAjL3EjL04SNx4yM2ITLulWdn5WZwhSI", + value: "!(penguin-263.15.4.17.0.mon-179.ant-6ce.uni-7c.inc-2e4.pen-99)!", + result: { + word: "penguin", + correct: 15, + position: 4, + incorrect: 17, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "20.09.2025", + }, + }, + { + date: "20.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTOt4WZw5CZhVjL1QWNuMTYy0CajNjLh1SalJmL2gTLhVmcuAjLwEjLy4COx4yM2ITLulWdn5WZwhSI", + value: "!(penguin-263.18.2.10.0.rea-86.bei-a.3ch-2a3.5d5.5ad.pen-99)!", + result: { + word: "penguin", + correct: 18, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "20.09.2025", + }, + }, + { + date: "20.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTOt4WZw5iY3ETLuV2ZukTMtMWdm5CMuQjLy4SNx4yM2ITLulWdn5WZwhSI", + value: "!(penguin-263.15.2.4.0.fuc-19.gen-17b.pen-99)!", + result: { + word: "penguin", + correct: 15, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "20.09.2025", + }, + }, + { + date: "20.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTOt4WZw5CO50CcvNmLw4SOuIjL54yM2ITLulWdn5WZwhSI", + value: "!(penguin-263.9.2.9.0.cop-98.pen-99)!", + result: { + word: "penguin", + correct: 9, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "20.09.2025", + }, + }, + { + date: "20.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTOuUTOt4WZw5SYx0iblxmL0ETLnRWZuIjNt0WYn5CMugjLx4yNx4yM2ITLulWdn5WZwhSI", + value: "!(penguin-263.17.1.8.0.gam-62.edg-14.len-1a.pen-95.99)!", + result: { + word: "penguin", + correct: 17, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "20.09.2025", + }, + }, + { + date: "20.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5kjLyUjL5IWLuVmLyEWLvJHcuAjLwEjLx4SOx4yM2ITLulWdn5WZwhSI", + value: "!(penguin-263.19.1.10.0.pro-a2.en-b9.52.99)!", + result: { + word: "penguin", + correct: 19, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "20.09.2025", + }, + }, + { + date: "20.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5kTLuVGcuYmMt4mbl5SM0ITLlh2YuEWL1VmZuAjLxEjLx4SNx4yM2ITLulWdn5WZwhSI", + value: "!(penguin-263.15.1.11.0.feu-a.che-241.enn-2f.pen-99)!", + result: { + word: "penguin", + correct: 15, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "20.09.2025", + }, + }, + { + date: "20.09.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSO50ibl5SZx0CbpBnLy0ybyVmL2QTLlR3cuAjLwEjLx4SMx4yM2ITLulWdn5WZwhSI", + value: "!(penguin-263.11.1.10.0.ste-46.ero-2.pil-1e.en-99)!", + result: { + word: "penguin", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "20.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/plynnie-poszlo-14-12-2025-diffle-diffleen-grywebowe-21-letters-in-3-words-large-" +] = [ + { + date: "14.12.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlNTL1FnLmlTL0RXYuYDOtEWZy5CMuYjLx4CNx4CO0MTLjlGdhVXchhSI", + value: "!(aquatic-348.14.1.6.0.rea-86.att-9f.qu-3e)!", + result: { + word: "aquatic", + correct: 14, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "14.12.2025", + }, + }, + { + date: "14.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlNTL1FnLzkTMtQXduYWOtQHdh5yM0ETLuFGcuQWLlNWauEjL0EjLx4iMy4CO0MTLjlGdhVXchhSI", + value: "!(aquatic-348.22.1.14.1.ice-d.pan-143.att-9f.ut-193.qu-3e)!", + result: { + word: "aquatic", + correct: 22, + position: 1, + incorrect: 14, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 37, + date: "14.12.2025", + }, + }, + { + date: "14.12.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlNTL1FXYuYTMtMWdm5SOwgTLoN2MuUWNtkmdugTZy0Cdu5iZ50Cd0FmL2YWMtwWYi5SYk1ychBnLyYTLtF2ZuAjL3EjLw4COy4CO0MTLjlGdhVXchhSI", + value: + "!(aquatic-348.28.0.17.0.gam-62.pas-da.bal-1f6.att-9f.nt-2e8.vi-5e.3ch-809.fuc-16.aqu-3e)!", + result: { + word: "aquatic", + correct: 28, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 45, + date: "14.12.2025", + }, + }, + { + date: "14.12.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpU2MtUXch5CO5ITLhVXcuUWLmF2duYDOx0CajNjLw0idhNmLmlTL0RXYugTZz0CajNjLmNjMtkGaj5SZy0Sa0NnL4YTLt1WYuYTLjhXZuAjL0IjL04CMz4CO0MTLjlGdhVXchhSI", + value: + "!(aquatic-348.30.4.24.0.exc-6.amm-68.sti-2e.chi-23f.3ch-3e8.att-9f.cav-0.3ch-186.waf-e.qua-298.aqu-3e)!", + result: { + word: "aquatic", + correct: 30, + position: 4, + incorrect: 24, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 58, + date: "14.12.2025", + }, + }, + { + date: "14.12.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlNTL1FXYucTZtEGbz5CMugjLw4SMx4CO0MTLjlGdhVXchhSI", + value: "!(aquatic-348.11.0.8.0.sla-e7.aqu-3e)!", + result: { + word: "aquatic", + correct: 11, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "14.12.2025", + }, + }, + { + date: "14.12.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpU2MtUXcuATMtkmdugTZy0Cdu5iZ50Cd0FmL30CdhhmLlFTLlJ3YuAjLwEjLx4CNy4CO0MTLjlGdhVXchhSI", + value: "!(aquatic-348.24.1.10.0.cre-1e.hat-7.att-9f.nt-2e8.vi-10.qu-3e)!", + result: { + word: "aquatic", + correct: 24, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "14.12.2025", + }, + }, + { + date: "14.12.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpU2MtUXch5CN3EjLzkzNukDO10CajNjLw0ib1RnLycTLyVHcuEWL1VmZuAjL0EjLz4COx4CO0MTLjlGdhVXchhSI", + value: + "!(aquatic-348.18.3.14.0.feu-a.pur-72.tun-0.3ch-589.793.174.aqu-3e)!", + result: { + word: "aquatic", + correct: 18, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 35, + date: "14.12.2025", + }, + }, + { + date: "14.12.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZz0Sdx5SMx0Cdz5CMx0Sa25yMt02YugTZy0Cdu5iZ50Cd0FmL4kTLw92YuEjL3EjLz4SMz4CO0MTLjlGdhVXchhSI", + value: + "!(aquatic-348.31.3.17.1.cop-98.att-9f.nt-2e8.cm-3.vi-10.st-11.qu-3e)!", + result: { + word: "aquatic", + correct: 31, + position: 3, + incorrect: 17, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 51, + date: "14.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/po-drugim-slowie-mialem-juz-wszystkie-literki-a-dalej-strzelalem-bo-nie-umialem-" +] = [ + { + date: "01.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUDOx0CduVnL4ADOtg2Yz4iYy0SdsBnL2gTLhVmcuAjLxEjLy4COuQzNy0SZpRnb1hSI", + value: "!(untie-274.8.2.11.0.rea-86.plu-2b.3ch-808.unt-185)!", + result: { + word: "untie", + correct: 8, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "01.10.2025", + }, + }, + { + date: "01.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUDOx0CduMDZz0SauVnL1ITMt0Wbp5iZ00ibhRmLw4CMx4yMuITMuQzNy0SZpRnb1hSI", + value: "!(untie-274.12.3.10.0.dan-4f.imm-125.uni-3d3.t-185)!", + result: { + word: "untie", + correct: 12, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "01.10.2025", + }, + }, + { + date: "01.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUDOx0CduVnL2QTLp52auUmYt4Wam5CO0MTLlhGduEjMtU2bw5SZx0SZyNmLw4SNx4CNuUTMuQzNy0SZpRnb1hSI", + value: + "!(untie-274.15.4.15.0.cre-1e.poe-21.the-348.fin-be.kni-46.unt-185)!", + result: { + word: "untie", + correct: 15, + position: 4, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "01.10.2025", + }, + }, + { + date: "01.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSN4ETL05WduEGZtQ3bw5SM4MTLp5WduUjY20ycp1mL20yY4VmLw4SNx4yMuQTMuQzNy0SZpRnb1hSI", + value: "!(untie-274.14.3.15.0.exc-6.mis-6b5.uni-381.pot-da.unt-185)!", + result: { + word: "untie", + correct: 14, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "01.10.2025", + }, + }, + { + date: "01.10.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1gTMtQnLyU2MtkmL2gTMtQnb15SY40ib1JmLjZTLsVGduIWNtgGdl5iM20SbhdmLw4SNx4yMuMjMuQzNy0SZpRnb1hSI", + value: + "!(untie-274.23.3.15.0.gam-62.eth-5b.tel-6c.bun-8a.unt-186.i-3e2.t-185)!", + result: { + word: "untie", + correct: 23, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "01.10.2025", + }, + }, + { + date: "01.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSN4ETL05WduU2M30CajNjLyEWLvJHcuAjL44SMuATMuQzNy0SZpRnb1hSI", + value: "!(untie-274.10.1.8.0.pro-a2.3ch-73e.unt-185)!", + result: { + word: "untie", + correct: 10, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "01.10.2025", + }, + }, + { + date: "01.10.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUDOx0CduVnLlNzNtg2Yz4CO50CcvNmLw4CMx4SMuATMuQzNy0SZpRnb1hSI", + value: "!(untie-274.10.1.10.0.cop-98.3ch-73e.unt-185)!", + result: { + word: "untie", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "01.10.2025", + }, + }, + { + date: "01.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUDOx0CduVnLl1ib1pmLyMTLzVXYuAjL54SMuITMuQzNy0SZpRnb1hSI", + value: "!(untie-274.12.1.9.0.aus-32.jun-e.unt-185)!", + result: { + word: "untie", + correct: 12, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "01.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/po-prostu-05-12-2025-diffle-diffleen-grywebowe-26-letters-in-4-words-large-green" +] = [ + { + date: "05.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMmNuMDOtwWY05yMm1SYlRmLwITNt8mcw5CMuYTMuEjL54SOzMTLrxWY0hSI", + value: "!(talk-339.9.1.16.0.pro-520.dea-f3.tal-83.6c)!", + result: { + word: "talk", + correct: 9, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "05.12.2025", + }, + }, + { + date: "05.12.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjZTLsFGduImMtUHbw5CMxcTLoN2MuYDOtEWZy5CMuETMuEjL44SOzMTLrxWY0hSI", + value: "!(talk-339.8.1.11.0.rea-86.3ch-710.plu-2b.tal-6c)!", + result: { + word: "talk", + correct: 8, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "05.12.2025", + }, + }, + { + date: "05.12.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMmNtwWY05iZz0yZpRmL00Ce1pmLlFTLlJ3YuEjL2EjLw4CMx4SOzMTLrxWY0hSI", + value: "!(talk-339.10.0.16.1.cre-1e.jux-4.dig-3f.tal-6c)!", + result: { + word: "talk", + correct: 10, + position: 0, + incorrect: 16, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 26, + date: "05.12.2025", + }, + }, + { + date: "05.12.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjZjLzcTLsFGduUTOt0Waz5CMuATMuEjL54SOzMTLrxWY0hSI", + value: "!(talk-339.9.1.10.0.sim-95.tal-73.6c)!", + result: { + word: "talk", + correct: 9, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "05.12.2025", + }, + }, + { + date: "05.12.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMmNtwmLklTLuFGduEGZtMXYw5iM20SbhdmLw4yNuEjL54SOzMTLrxWY0hSI", + value: "!(talk-339.9.1.7.0.gam-62.pas-da.tan-9d.l-6c)!", + result: { + word: "talk", + correct: 9, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 17, + date: "05.12.2025", + }, + }, + { + date: "05.12.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjZTLsFGdugTOtA3bj5CMuATMuAjL34SOzMTLrxWY0hSI", + value: "!(talk-339.7.0.10.0.cop-98.tal-6c)!", + result: { + word: "talk", + correct: 7, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "05.12.2025", + }, + }, + { + date: "05.12.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjZjL4ETLsFGduMTNtg2Yz4SYtUXZm5CMukjLw4SMx4SOzMTLrxWY0hSI", + value: "!(talk-339.11.0.9.0.feu-a.3ch-53.tal-18.6c)!", + result: { + word: "talk", + correct: 11, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "05.12.2025", + }, + }, + { + date: "05.12.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyY20Cbh5SZx0CdvRnLx0CdhZmL3UWLhx2cuAjL1EjLy4SMx4SOzMTLrxWY0hSI", + value: "!(talk-339.11.2.15.0.sla-e7.fat-1.tot-1e.al-6c)!", + result: { + word: "talk", + correct: 11, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "05.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/podstepne-12-08-2025-diffle-diffleen-grywebowe-46-letters-in-7-words-large-green" +] = [ + { + date: "12.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTLl52cuEDOz0SauVnL40SYldnLiRTLhVmYuIzNtEWZk5SZx0SYl1mLwMWLsVGduAjL2EjLy4COy4CNyITLyV2ahVmbzhSI", + value: + "!(sneaker-224.28.2.16.0.tel-c0.mea-1e.dea-72.bea-4b.wea-8.uni-381.sne-4)!", + result: { + word: "sneaker", + correct: 28, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 46, + date: "12.08.2025", + }, + }, + { + date: "12.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK00SZuNnL5MTLyFWZuYDOtEWZy5CMuQjL04iMx4CNyITLyV2ahVmbzhSI", + value: "!(sneaker-224.12.4.4.0.rea-86.ear-39.sne-4)!", + result: { + word: "sneaker", + correct: 12, + position: 4, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "12.08.2025", + }, + }, + { + date: "12.08.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNtUmbuYjMtEWZz5yN10SYldnLyEWLvJHcuAjLyEjLx4yNx4CNyITLyV2ahVmbzhSI", + value: "!(sneaker-224.17.1.12.0.pro-a2.wea-57.sea-26.ne-4)!", + result: { + word: "sneaker", + correct: 17, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "12.08.2025", + }, + }, + { + date: "12.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTLl5mLkRTLyBnLkNTLlRnLykTLhV2cuYTLjhXZuAjLxEjLw4CNy4CNyITLyV2ahVmbzhSI", + value: "!(sneaker-224.24.0.11.0.exc-6.sea-92.te-3d.pr-4d.ne-4)!", + result: { + word: "sneaker", + correct: 24, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "12.08.2025", + }, + }, + { + date: "12.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNtUmLxUTLh5mL4ETL1t2cuITNtAXYu5iYzETLuFmYuQjMtQXYm5SZx0CZhxmLyYTLtF2ZuAjLzEjLx4iMz4CNyITLyV2ahVmbzhSI", + value: + "!(sneaker-224.32.1.13.0.gam-62.lad-1e.fat-24.ban-13b.nap-52.sku-18.na-51.e-4)!", + result: { + word: "sneaker", + correct: 32, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 46, + date: "12.08.2025", + }, + }, + { + date: "12.08.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNtUmbz5iZtEWZu5iYy0SZyFmL4kTLw92YuAjLxEjLz4SNx4CNyITLyV2ahVmbzhSI", + value: "!(sneaker-224.15.3.11.0.cop-98.are-2b.nea-f.sne-4)!", + result: { + word: "sneaker", + correct: 15, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "12.08.2025", + }, + }, + { + date: "12.08.2025", + nick: "Greyman", + lang: "pl", + url: "https://deykun.github.io/diffle-lang/pl?r=QIpQDZ50SbvtmLkN2Mtg2Yz4iMycTLy9WbuATL1VmZuAjL44CMuMTMuQjMy0yap5mcv12brhSI", + value: "!(komornik-224.13.0.8.0.feu-0.mor-722.3ch-3cd.kom-9d4)!", + result: { + word: "komornik", + correct: 13, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "12.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/poleglem-prawdopodobnie-to-jest-latwe-slowo-ale-jak-sie-okazalo-nie-dla-mnie-25-" +] = [ + { + date: "25.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzETLzV2YuY2Mx4SNwQjLlVjMuYzMx4COwgTLoN2MuQWMt0Wdq5CMwkTLu92YuUWLjNXZuYDOtEWZy5CMuAjMuMjL2MjL5IzMt42bpRXYzNXZjhSI", + value: + "!(cessation-329.36.3.20.0.rea-86.esc-e.con-900.jum-1d.3ch-808.136.25e.405.13f.ces-13)!", + result: { + word: "cessation", + correct: 36, + position: 3, + incorrect: 20, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 59, + date: "25.11.2025", + }, + }, + { + date: "25.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMTMtMXZj5CN00SahNnLhJTLz5CN10ibl5SYzETLu5SMx0iZhNmLwETLllmduMTLr9maugTNtAnLzcTMt02buEjMtUGaj5iNtMGel5CMuEjMukjL4QjL5IzMt42bpRXYzNXZjhSI", + value: + "!(cessation-329.48.9.21.0.exc-6.che-21.om-173.p-58.jok-3.vie-10.caf-11.n-13a.en-54.s-2a.sai-44.ces-13)!", + result: { + word: "cessation", + correct: 48, + position: 9, + incorrect: 21, + knownIncorrect: 0, + totalWords: 12, + totalLetters: 78, + date: "25.11.2025", + }, + }, + { + date: "25.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzETLzV2YuEDOt4WZucDNtQXYz5iZ50ibpdnLmFTL0FmLjRWLhV2cuATYx0Cd4VmLw4SNuYjLxMjL5IzMt42bpRXYzNXZjhSI", + value: + "!(cessation-329.31.6.5.0.ext-1a0.sea-dc.at-1f.win-9f.sat-47.en-81.ces-13)!", + result: { + word: "cessation", + correct: 31, + position: 6, + incorrect: 5, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "25.11.2025", + }, + }, + { + date: "25.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMTMtMXZj5yN00CdhNnLkR2Ntg2Yz4SM20ib1JmL5MTLsVmL1ITLlhmL0QTLkF2YuIjNt0WYn5CMuMTMuQjL5IjL5IzMt42bpRXYzNXZjhSI", + value: + "!(cessation-329.29.4.13.0.gam-62.cad-44.he-25.el-39.bun-61.3ch-7dd.sat-47.ces-13)!", + result: { + word: "cessation", + correct: 29, + position: 4, + incorrect: 13, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 46, + date: "25.11.2025", + }, + }, + { + date: "25.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMx0yclNmLxgTLu5yMl1SYlNnLh1SdlZmLw4yNuMjL0IjL5IzMt42bpRXYzNXZjhSI", + value: "!(cessation-329.24.3.7.0.feu-a.sea-e3.n-81.ces-13)!", + result: { + word: "cessation", + correct: 24, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "25.11.2025", + }, + }, + { + date: "25.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzETLz5SNt4WZuMGZtUXYugTOtA3bj5CMuATMuUjL0IjL5IzMt42bpRXYzNXZjhSI", + value: "!(cessation-329.24.5.10.0.cop-98.au-dc.en-5.s-13)!", + result: { + word: "cessation", + correct: 24, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 39, + date: "25.11.2025", + }, + }, + { + date: "25.11.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzETLzV2YuYDNtMWaw5yYzITLzVGZuEDOt4WZz5CM4ETLzFmYucTZtEGbz5CMuITMuQjLyMjL5IzMt42bpRXYzNXZjhSI", + value: + "!(cessation-329.32.4.12.0.sla-e7.bas-180.sen-81.des-23c.pic-46.ces-13)!", + result: { + word: "cessation", + correct: 32, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 48, + date: "25.11.2025", + }, + }, + { + date: "25.11.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzETLz5yN00Cbl5SZx0SZyNmLw4SNuEjL1EjL5IzMt42bpRXYzNXZjhSI", + value: "!(cessation-329.15.1.5.0.cre-1e.el-47.s-13)!", + result: { + word: "cessation", + correct: 15, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "25.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/pomylka-o-1-literke-w-przedostatnim-jest-juz-standardem-07-08-2025-diffle-diffle" +] = [ + { + date: "07.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUDOtU2duEzNx0SZw5SO30CblNnL2gTLhVmcuAjL54SMuMTMukTMy0CbsV2dzhSI", + value: "!(swell-219.13.1.9.0.rea-86.sel-79.pe-171.we-85)!", + result: { + word: "swell", + correct: 13, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "07.08.2025", + }, + }, + { + date: "07.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUDOtU2ducTYtwWZuUDMx0SZo5yYyETLlB3cuQTOtU3bt5CZx0icpFmLw4iNx4CMucTMukTMy0CbsV2dzhSI", + value: "!(swell-219.17.0.16.0.air-1d.mou-94.spe-12c.he-105.el-a7.we-85)!", + result: { + word: "swell", + correct: 17, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "07.08.2025", + }, + }, + { + date: "07.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSN40SZ35yNh1Cbl5SM3ETLlBnL5QTLlV2cuEmMtIncl5SMy0SZoNmLw4CNx4SMucTMukTMy0CbsV2dzhSI", + value: "!(swell-219.17.1.14.0.che-21.err-2a.see-49.pe-171.el-a7.we-85)!", + result: { + word: "swell", + correct: 17, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "07.08.2025", + }, + }, + { + date: "07.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSN40SZ35yYtUGbucjMtgXZz5iN0ETLuVGcuIWNtgGdl5iM20SbhdmLw4yMx4iMuITMukTMy0CbsV2dzhSI", + value: "!(swell-219.12.2.13.0.gam-62.eth-5b.pen-146.sex-27.le-c.we-85)!", + result: { + word: "swell", + correct: 12, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 27, + date: "07.08.2025", + }, + }, + { + date: "07.08.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1gTLld3cuETLldHZuEmMtwWZ35CO50CcvNmLw4iMx4SMuQTMukTMy0CbsV2dzhSI", + value: "!(swell-219.14.1.12.0.cop-98.wel-2a.dwe-1.swe-85)!", + result: { + word: "swell", + correct: 14, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "07.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/powiedzialbym-ze-pechowo-03-10-2025-diffle-diffleen-grywebowe-56-letters-in-8-wo" +] = [ + { + date: "03.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5IzMt8mcuIWLlVnLiJzMt8mcw5SO00CbpZmL1kTLvJnYucTMtw2by5SNz0SZj9mL3ITL29GbuEjL3EjLz4iNz4iN3ITLlxWam9mcwhSI", + value: + "!(profile-276.36.3.17.1.lov-27.oce-35.rol-17.bro-95.fil-49.pro-32b.ue-b.ro-329)!", + result: { + word: "profile", + correct: 36, + position: 3, + incorrect: 17, + knownIncorrect: 1, + totalWords: 8, + totalLetters: 56, + date: "03.10.2025", + }, + }, + { + date: "03.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5IzMucTZ10ybyBnLjFTMtYWZy5iNtMGel5CMukjL14iNx4iN3ITLlxWam9mcwhSI", + value: "!(profile-276.16.5.9.0.exc-6.ref-11c.pro-5e7.329)!", + result: { + word: "profile", + correct: 16, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "03.10.2025", + }, + }, + { + date: "03.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5IzMt8mcw5yNz0CbpZmLiFTLmlmcuY2MtYWas5SYtUXZm5CMuYjL24SOx4iN3ITLlxWam9mcwhSI", + value: "!(profile-276.19.6.6.0.feu-a.lif-3f.rif-1b.fil-37.pro-329)!", + result: { + word: "profile", + correct: 19, + position: 6, + incorrect: 6, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "03.10.2025", + }, + }, + { + date: "03.10.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5IzMuYTN04iYhJmLllTNt8mcw5CM0MTLzVmcuIjNt0WYn5CMucjLx4yMy4iN3ITLlxWam9mcwhSI", + value: "!(profile-276.23.1.7.0.gam-62.res-340.pro-59e.bab.456.329)!", + result: { + word: "profile", + correct: 23, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "03.10.2025", + }, + }, + { + date: "03.10.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOyMTLvJHcugTOtA3bj5CMucjLx4iMx4iN3ITLlxWam9mcwhSI", + value: "!(profile-276.12.1.7.0.cop-98.pro-329)!", + result: { + word: "profile", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "03.10.2025", + }, + }, + { + date: "03.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5IzMuITYt8mcw5CMuUjLx4iMx4iN3ITLlxWam9mcwhSI", + value: "!(profile-276.12.1.5.0.pro-a2.329)!", + result: { + word: "profile", + correct: 12, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "03.10.2025", + }, + }, + { + date: "03.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkjMz4iNjRTLvJHcuEGNt8mck5SZ50ybyJmLz0idvJnLlFTLlJ3YuAjLzEjLw4yMy4iN3ITLlxWam9mcwhSI", + value: "!(profile-276.23.0.13.0.cre-1e.rov-3.bro-9e.dro-4a.pro-4c6.329)!", + result: { + word: "profile", + correct: 23, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "03.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/prawie-w-dwoch-29-06-2025-diffle-diffleen-grywebowe-19-letters-in-3-words-large-" +] = [ + { + date: "29.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpU2MuczMtIXdz5iN40SYlJnLw4iNuEjLyEjLwgTMtkHblJXdzhSI", + value: "!(surely-180.12.1.6.0.rea-86.sur-37.3e)!", + result: { + word: "surely", + correct: 12, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "29.06.2025", + }, + }, + { + date: "29.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZz0icuY2YtwmLiNTLu5CN0UTLwV3cuYGNtM2Yv5CMuETMuMjL4EjLwgTMtkHblJXdzhSI", + value: "!(surely-180.18.3.11.0.occ-4f.sup-544.n-3b.l-cf.r-3e)!", + result: { + word: "surely", + correct: 18, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "29.06.2025", + }, + }, + { + date: "29.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZz0ic1NnLxMmMtUmcw5SNhFTL2VmcuIjNt0WYn5CMuATMuIjL0EjLwgTMtkHblJXdzhSI", + value: "!(surely-180.14.2.10.0.gam-62.rev-1a5.pre-2c1.sur-3e)!", + result: { + word: "surely", + correct: 14, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "29.06.2025", + }, + }, + { + date: "29.06.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlNTLyV3cuYGNtUWZy5iMh1ybyBnLw4SOuEjLxEjLwgTMtkHblJXdzhSI", + value: "!(surely-180.11.1.9.0.pro-a2.ree-4f.sur-3e)!", + result: { + word: "surely", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "29.06.2025", + }, + }, + { + date: "29.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZz0ic1NnLyMTLzVXYuAjL04iMukjLwgTMtkHblJXdzhSI", + value: "!(surely-180.9.2.4.0.aus-32.sur-3e)!", + result: { + word: "surely", + correct: 9, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "29.06.2025", + }, + }, + { + date: "29.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlNTLyV3cuYjYtwWZy5CO50CcvNmLw4SOuIjLyEjLwgTMtkHblJXdzhSI", + value: "!(surely-180.12.2.9.0.cop-98.rel-b6.sur-3e)!", + result: { + word: "surely", + correct: 12, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "29.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/proste-10-08-2025-diffle-diffleen-38-letters-in-6-words-large-green-circle-24-la" +] = [ + { + date: "10.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKjFWLhVGcuIWMtMXYl5SO50SYlRnLl1ychVmL2gTLhVGbuMWLxVmcuIjLxEjLz4CNy4iMyITL05WYzFWZwhSI", + value: "!(peasant-222.24.3.11.2.req-c.lea-86.eas-e.tea-99.eas-1b.pea-ac)!", + result: { + word: "peasant", + correct: 24, + position: 3, + incorrect: 11, + knownIncorrect: 2, + totalWords: 6, + totalLetters: 38, + date: "10.08.2025", + }, + }, + { + date: "10.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyYh1SYlBnLiFTLzFWZuYDOtEWZy5CMuQjLy4CNx4iMyITL05WYzFWZwhSI", + value: "!(peasant-222.14.2.4.0.rea-86.eas-1b.pea-ac)!", + result: { + word: "peasant", + correct: 14, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "10.08.2025", + }, + }, + { + date: "10.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMWYtEWZw5yYx0yc1xmLxcTLhVGcuIjNt0WYn5CMuUjLx4CNx4iMyITL05WYzFWZwhSI", + value: "!(peasant-222.14.1.5.0.gam-62.pea-71.lus-1c.pea-ac)!", + result: { + word: "peasant", + correct: 14, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "10.08.2025", + }, + }, + { + date: "10.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMWYtEWZw5SY20SYl1mLwIWLhVGbuEjMtUGaj5CMucjLx4COx4iMyITL05WYzFWZwhSI", + value: "!(peasant-222.18.1.7.0.che-21.lea-b0.mea-6a.pea-ac)!", + result: { + word: "peasant", + correct: 18, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "10.08.2025", + }, + }, + { + date: "10.08.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyYh1SYl5CO10CdhBnL4kTLw92YuAjLwEjLz4yMx4iMyITL05WYzFWZwhSI", + value: "!(peasant-222.13.3.10.0.cop-98.pat-58.ea-ac)!", + result: { + word: "peasant", + correct: 13, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "10.08.2025", + }, + }, + { + date: "10.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMWYtEWZuITLlhGcuIWMtMXYl5SYtUXZm5CMucjLw4SMy4iMyITL05WYzFWZwhSI", + value: "!(peasant-222.21.0.7.0.feu-a.eas-1b.phe-2.ea-ac)!", + result: { + word: "peasant", + correct: 21, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "10.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/proste-16-08-2025-diffle-diffleen-grywebowe-39-letters-in-4-words-large-green-ci" +] = [ + { + date: "16.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTMtAXauQjNtkGaw5SNtkGdp5SZy0SavNmLw4SNx4iMuIjMugjMy0SZulGblBXawhSI", + value: "!(pipeline-228.22.2.15.0.coi-2e.iti-5.phi-64.ip-19)!", + result: { + word: "pipeline", + correct: 22, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 39, + date: "16.08.2025", + }, + }, + { + date: "16.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTMtAXauUTMtUWZw5SMx0SalZnL2gTLhVmcuAjL44SMukTMugjMy0SZulGblBXawhSI", + value: "!(pipeline-228.19.1.8.0.rea-86.vei-11.pee-15.ip-19)!", + result: { + word: "pipeline", + correct: 19, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "16.08.2025", + }, + }, + { + date: "16.08.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTMtAnL3YTLslGcugDZtwGcuEzNtkGbz5iMh1ybyBnLx4CMx4SMuUjMugjMy0SZulGblBXawhSI", + value: "!(pipeline-228.25.1.10.1.pro-a2.sli-71.pl-d8.pil-67.p-19)!", + result: { + word: "pipeline", + correct: 25, + position: 1, + incorrect: 10, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 36, + date: "16.08.2025", + }, + }, + { + date: "16.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTMtAnL00ieuUmNtwWaw5yNjVjLjR2Ntg2Yz4CNy0ibpxmL3YTLslGcuQDMx0ibpxmL0YjMuUzMz0CajNjL0UWLs9mLhFWMtUGbucjMtMXZw5iM20SbhdmLw4CMy4CMuEDNugjMy0SZulGblBXawhSI", + value: + "!(pipeline-228.41.0.20.0.gam-62.pes-27.le-1aa.ol-e4.3ch-335.264.lin-104.pil-67.lin-24.3ch-7dc.5c7.pil-6e.z-4.p-19)!", + result: { + word: "pipeline", + correct: 41, + position: 0, + incorrect: 20, + knownIncorrect: 0, + totalWords: 14, + totalLetters: 61, + date: "16.08.2025", + }, + }, + { + date: "16.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5ETLwlGcuUDN30CajNjL1ITLsVmZukjMtA3bt5SM30CblRmL20yY4VmLw4iMx4CMuIjMugjMy0SZulGblBXawhSI", + value: + "!(pipeline-228.22.0.12.0.exc-6.del-71.mop-29.fel-25.3ch-745.pip-19)!", + result: { + word: "pipeline", + correct: 22, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "16.08.2025", + }, + }, + { + date: "16.08.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOx0CcpBnL1ITLsVmZuEmMtMHc15CO50CcvNmLw4yMx4CMuAjMugjMy0SZulGblBXawhSI", + value: "!(pipeline-228.20.0.13.0.cop-98.ups-2a.fel-25.pip-19)!", + result: { + word: "pipeline", + correct: 20, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "16.08.2025", + }, + }, + { + date: "16.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5ETLwlGcuczY10CajNjLyETLsl2auEmMtwmbp5CO00SZlJmL1ITLsVmZuIWMt82Yl5iMtUWZu5COtkWZ35iMz0yc1FmLw4iMy4iMuYzMugjMy0SZulGblBXawhSI", + value: + "!(pipeline-228.36.2.22.0.aus-32.wei-8.nee-2.eco-1b.fel-25.bee-48.inl-2a.kil-12.3ch-5c7.pip-19)!", + result: { + word: "pipeline", + correct: 36, + position: 2, + incorrect: 22, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 60, + date: "16.08.2025", + }, + }, + { + date: "16.08.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5ETLwlmLh1yblBnLlFTLlJ3YuAjL24SMuMTMugjMy0SZulGblBXawhSI", + value: "!(pipeline-228.13.1.6.0.cre-1e.peo-a.ip-19)!", + result: { + word: "pipeline", + correct: 13, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "16.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/proste-a-ja-jestem-glupi-21-10-2025-diffle-diffleen-grywebowe-33-letters-in-7-wo" +] = [ + { + date: "21.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY10icoRnL1EWMucDNy4iZh5COwgTLoN2MuImMtUHbw5iN40SYlJnLw4iNx4CMucTMuQTOy0iblRXYlJHa0hSI", + value: "!(threaten-294.17.0.16.0.rea-86.plu-2b.3ch-808.af.247.1a5.thr-5a)!", + result: { + word: "threaten", + correct: 17, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 33, + date: "21.10.2025", + }, + }, + { + date: "21.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY10icoRnLhFTLlJ3ZuY2MtUmcj5yM5ETLhVmcuIDNz0CctlmLw4SMx4CMuYjMuQTOy0iblRXYlJHa0hSI", + value: "!(threaten-294.26.0.11.0.imp-342.rea-193.cre-3f.gre-1a.thr-5a)!", + result: { + word: "threaten", + correct: 26, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "21.10.2025", + }, + }, + { + date: "21.10.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhVTLyhGduETYx0SYlhmL3cTMt8Gbm5SO40SdoNmLjVTLwVmcuYTZtIXYi5iM20SbhdmLw4SNx4iMuMjMuQTOy0iblRXYlJHa0hSI", + value: + "!(threaten-294.23.2.15.0.gam-62.bar-e6.rep-5c.chu-89.flo-177.hea-1a1.thr-5a)!", + result: { + word: "threaten", + correct: 23, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 40, + date: "21.10.2025", + }, + }, + { + date: "21.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhVjL4UTLyhmLjJTNtEmcuQzMx0ichRnLyMTLzVXYuAjL14yMuMjMuQTOy0iblRXYlJHa0hSI", + value: "!(threaten-294.23.3.5.0.aus-32.tar-134.ra-52c.hr-58.5a)!", + result: { + word: "threaten", + correct: 23, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "21.10.2025", + }, + }, + { + date: "21.10.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSY10icuETMtUGa05SN30SYodnLxYjMtEGaz5CO50CcvNmLw4iMx4COuUjMuQTOy0iblRXYlJHa0hSI", + value: "!(threaten-294.25.8.12.0.cop-98.sha-261.wha-75.the-11.r-5a)!", + result: { + word: "threaten", + correct: 25, + position: 8, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 45, + date: "21.10.2025", + }, + }, + { + date: "21.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhVTLyhGduY2Yx0CdhBnL3UWLhx2cuAjL34CNuYTMuQTOy0iblRXYlJHa0hSI", + value: "!(threaten-294.16.4.7.0.sla-e7.pat-1cf.thr-5a)!", + result: { + word: "threaten", + correct: 16, + position: 4, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "21.10.2025", + }, + }, + { + date: "21.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEWNukjNuMjNugTNtIHa05yY40SZyJmLlFTLlJ3YuAjL44SMuMzMuQTOy0iblRXYlJHa0hSI", + value: "!(threaten-294.33.1.8.0.cre-1e.bre-8c.thr-58.63.69.5a)!", + result: { + word: "threaten", + correct: 33, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 42, + date: "21.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/proste-a-ja-znowu-mialem-zacmienie-09-12-2025-diffle-diffleen-grywebowe-34-lette" +] = [ + { + date: "09.12.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUmMuMWOtU3bucTLnVHZuAjZ04COwgTLoN2MuMmMt8Gbw5iN40SYlJnLw4iNx4iMuYTMuMDNz0CdiV3bkhSI", + value: "!(doubt-343.16.2.16.0.rea-86.plo-2c.3ch-808.4f0.dug-7.ou-9c.2e)!", + result: { + word: "doubt", + correct: 16, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 34, + date: "09.12.2025", + }, + }, + { + date: "09.12.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlJTL19GZuEmZ00CbvBnLlFTLlJ3YuAjLyEjLw4COuMDNz0CdiV3bkhSI", + value: "!(doubt-343.8.0.12.0.cre-1e.pol-4fa.dou-2e)!", + result: { + word: "doubt", + correct: 8, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "09.12.2025", + }, + }, + { + date: "09.12.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZy0SdvRmL4kTLw92YuAjLwEjLx4yNuMDNz0CdiV3bkhSI", + value: "!(doubt-343.7.1.10.0.cop-98.dou-2e)!", + result: { + word: "doubt", + correct: 7, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "09.12.2025", + }, + }, + { + date: "09.12.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlJTL19GZuImNt8Gbi5CNj1ybyZmL0MTL0FWbuAjL0EjLz4SOuMDNz0CdiV3bkhSI", + value: "!(doubt-343.9.3.14.0.mat-34.fro-c4.blo-6b.dou-2e)!", + result: { + word: "doubt", + correct: 9, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "09.12.2025", + }, + }, + { + date: "09.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlJTL19mL1QTLjVHZukDO10CajNjLyUTL19WbuU2NtU3bw5iZ20icylmLw4yNx4CMukTMuMDNz0CdiV3bkhSI", + value: "!(doubt-343.19.0.17.0.irr-6f.pou-7e.mou-52.3ch-589.duc-45.ou-2e)!", + result: { + word: "doubt", + correct: 19, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "09.12.2025", + }, + }, + { + date: "09.12.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUmMtU3bk5SMl1SdvJmLjFTLs9mauAzMtQ3bu5iM20SbhdmLw4CMx4SMuITMuMDNz0CdiV3bkhSI", + value: "!(doubt-343.12.1.10.0.gam-62.not-30.jol-1c.bou-e1.dou-2e)!", + result: { + word: "doubt", + correct: 12, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 23, + date: "09.12.2025", + }, + }, + { + date: "09.12.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlJTL19mL1QTLjVHZuMTNtQXdw5yNl1SYsNnLw4CNx4CMuITMuMDNz0CdiV3bkhSI", + value: "!(doubt-343.12.0.14.0.sla-e7.put-53.duc-45.ou-2e)!", + result: { + word: "doubt", + correct: 12, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "09.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/proste-aczkolwiek-zwodnicze-19-07-2025-diffle-diffleen-grywebowe-34-letters-in-4" +] = [ + { + date: "19.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM0EjLkNTMtIXZj5SMhZTLyVGcuUDZy0CduFmLw4yNuMjL0IjLwAjMtkHbulWY0JXZjhSI", + value: "!(certainly-200.24.3.7.0.ant-2d5.per-6a1.cer-13d.140)!", + result: { + word: "certainly", + correct: 24, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "19.07.2025", + }, + }, + { + date: "19.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpADNx4CZzEjLmRTMtIXZuEGZx0SYyNmLiVWL0RXYuYDOtEWZy5SMuITMukjLxMjLwAjMtkHbulWY0JXZjhSI", + value: "!(certainly-200.31.9.12.1.rea-86.att-eb.cra-1da.er-14f.13d.140)!", + result: { + word: "certainly", + correct: 31, + position: 9, + incorrect: 12, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 52, + date: "19.07.2025", + }, + }, + { + date: "19.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpADNx0icl5CO50CcvNmLw4SNuMjL0EjLwAjMtkHbulWY0JXZjhSI", + value: "!(certainly-200.14.3.5.0.cop-98.er-140)!", + result: { + word: "certainly", + correct: 14, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 22, + date: "19.07.2025", + }, + }, + { + date: "19.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM0EjLkNTMtInL10Cdl5SMy0SZoNmLw4yMuEjL2IjLwAjMtkHbulWY0JXZjhSI", + value: "!(certainly-200.26.1.3.0.che-21.et-5.r-13d.140)!", + result: { + word: "certainly", + correct: 26, + position: 1, + incorrect: 3, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "19.07.2025", + }, + }, + { + date: "19.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCM0EjLkNTMtIXZj5CNtkmcl5iM20SbhdmLw4iMuMjLxIjLwAjMtkHbulWY0JXZjhSI", + value: "!(certainly-200.21.3.2.0.gam-62.eri-4.cer-13d.140)!", + result: { + word: "certainly", + correct: 21, + position: 3, + incorrect: 2, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "19.07.2025", + }, + }, + { + date: "19.07.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpADNx0icl5CN00SZyNmLllTLh5yNz0SayRnLhdTLp5CZj1CblJnLyEWLvJHcuAjLwEjL5EjL4IjLwAjMtkHbulWY0JXZjhSI", + value: + "!(certainly-200.28.19.10.0.pro-a2.rel-cd.i-7a.tri-37.a-9e.cre-44.er-140)!", + result: { + word: "certainly", + correct: 28, + position: 19, + incorrect: 10, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 57, + date: "19.07.2025", + }, + }, + { + date: "19.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwQTMtIXZj5iMz0yc1FmLw4yMuIjLzEjLwAjMtkHbulWY0JXZjhSI", + value: "!(certainly-200.13.2.3.0.aus-32.cer-140)!", + result: { + word: "certainly", + correct: 13, + position: 2, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "19.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/proste-ale-nie-banalne-22-08-2025-diffle-diffleen-grywebowe-33-letters-in-6-word" +] = [ + { + date: "22.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMx0iZulmLyIWLoN2MuEGOtkHbn5SOk1CZulmL3EWLpVXcuYDOtEWZy5CMuUTMuEjL3EjL0MjMtkXbhZmbphSI", + value: "!(infamy-234.17.1.15.0.rea-86.qui-a7.ind-d9.gly-8a.3ch-b2.inf-10)!", + result: { + word: "infamy", + correct: 17, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "22.08.2025", + }, + }, + { + date: "22.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMx0iZulmL0MTLulmZugDNt4Waq5iN00ib1NmLhJTMtEGaz5iMy0ybtFmL0QWLtFGbuIjNt0WYn5CMuUTMuEjL5EjL0MjMtkXbhZmbphSI", + value: + "!(infamy-234.19.1.15.0.gam-62.lam-d4.amo-22.sha-12a.cun-46.jin-48.fin-34.inf-10)!", + result: { + word: "infamy", + correct: 19, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 35, + date: "22.08.2025", + }, + }, + { + date: "22.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMx0iZulmLlNTLoN2MuM2Nt4Wa25iZ10Sah1mLzgTLul2auImMt4Wau5iMt4WY35SNtoXaw5iZtk2bo5iNtMGel5CMuEjMuUjLzIjL0MjMtkXbhZmbphSI", + value: + "!(infamy-234.23.5.21.0.exc-6.hoi-f.piz-5.wan-2.nin-2b.kin-83.mai-5f.vin-7c.3ch-3e.inf-10)!", + result: { + word: "infamy", + correct: 23, + position: 5, + incorrect: 21, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 49, + date: "22.08.2025", + }, + }, + { + date: "22.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMx0iZugTLp5WauImYtUXcl5CMuATMuIjLxEjL0MjMtkXbhZmbphSI", + value: "!(infamy-234.11.2.10.0.equ-bb.ini-8.f-10)!", + result: { + word: "infamy", + correct: 11, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "22.08.2025", + }, + }, + { + date: "22.08.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwEjL5ETLm5CZk1CZu5yMz0SYtlmLzUTLpFWbuITYt8mcw5iMuYTMuMjLwIjL0MjMtkXbhZmbphSI", + value: "!(infamy-234.20.3.16.2.pro-a2.mai-53.ima-33.nd-dd.f-19.10)!", + result: { + word: "infamy", + correct: 20, + position: 3, + incorrect: 16, + knownIncorrect: 2, + totalWords: 6, + totalLetters: 39, + date: "22.08.2025", + }, + }, + { + date: "22.08.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwETLm5WauIjNt0WYz5CNhFTLulWbugTOtA3bj5CMuMTMuIjLzEjL0MjMtkXbhZmbphSI", + value: "!(infamy-234.13.2.13.0.cop-98.min-1a4.sam-62.inf-10)!", + result: { + word: "infamy", + correct: 13, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "22.08.2025", + }, + }, + { + date: "22.08.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMx0iZulmLlFTLlJ3YuAjLz4CMukjL0MjMtkXbhZmbphSI", + value: "!(infamy-234.9.0.3.0.cre-1e.inf-10)!", + result: { + word: "infamy", + correct: 9, + position: 0, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 12, + date: "22.08.2025", + }, + }, + { + date: "22.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwETLm5WauEWL1VmZuAjL14SMukjL0MjMtkXbhZmbphSI", + value: "!(infamy-234.9.1.5.0.feu-a.inf-10)!", + result: { + word: "infamy", + correct: 9, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "22.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/proste-ale-po-polskim-srednio-idzie-04-08-2025-diffle-diffleen-grywebowe-33-lett" +] = [ + { + date: "04.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYjMt0Wdw5CNz0Sb1NmLjRTLs5SM30ib15iYhRTLyVGcuAjLzEjLw4CMy4iNxITLul2aw1WdwhSI", + value: "!(pumpkin-216.20.0.13.0.per-4ab.un-71.l-4c.cum-34.pum-26)!", + result: { + word: "pumpkin", + correct: 20, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "04.08.2025", + }, + }, + { + date: "04.08.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNy0Sb15yNhFTLpJHcuUTLlRWauAjLwEjLw4CMx4iNxITLul2aw1WdwhSI", + value: "!(pumpkin-216.10.0.10.0.ide-5.pri-1a7.um-26)!", + result: { + word: "pumpkin", + correct: 10, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "04.08.2025", + }, + }, + { + date: "04.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2ITLtVHcucDM20CajNjL4kTLulGcuYDOtEWZy5CMukjLw4CNx4iNxITLul2aw1WdwhSI", + value: "!(pumpkin-216.14.0.9.0.rea-86.pin-98.3ch-607.pum-26)!", + result: { + word: "pumpkin", + correct: 14, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "04.08.2025", + }, + }, + { + date: "04.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2ITLt5SZtYWduYmYx0SayBnL5ITMt8Gbi5iMz0ibp1mLxITLlh2YuAjL1EjLx4SOx4iNxITLul2aw1WdwhSI", + value: "!(pumpkin-216.19.1.15.0.che-21.min-32.blo-129.pri-1bf.uf-e.m-26)!", + result: { + word: "pumpkin", + correct: 19, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "04.08.2025", + }, + }, + { + date: "04.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYjMt0Wdw5SMx0ibptmLl1iZ1BnL3MGNtg2Yz4iYh1yYpBnLjhTLpx2cugjY00ibv1mLyYTLtF2ZuAjL1EjLx4CNy4iNxITLul2aw1WdwhSI", + value: + "!(pumpkin-216.24.1.15.0.gam-62.mon-4b8.sli-8c.pic-ab.3ch-4c7.puf-e.kin-11.pum-26)!", + result: { + word: "pumpkin", + correct: 24, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 40, + date: "04.08.2025", + }, + }, + { + date: "04.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNy0SbugzYt4Wdw5SYtUXZm5CMucjLx4iMx4iNxITLul2aw1WdwhSI", + value: "!(pumpkin-216.12.1.7.0.feu-a.pun-c8.m-26)!", + result: { + word: "pumpkin", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "04.08.2025", + }, + }, + { + date: "04.08.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2ITLtVnL5YTLwlGcuczY10CajNjL4kTLw92YuAjLzEjLw4iNx4iNxITLul2aw1WdwhSI", + value: "!(pumpkin-216.16.0.13.0.cop-98.3ch-5c7.pip-69.um-26)!", + result: { + word: "pumpkin", + correct: 16, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "04.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/proste-ale-trzeba-po-prostu-trafic-25-07-2025-diffle-diffleen-grywebowe-27-lette" +] = [ + { + date: "25.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNy0SahBnLwgjMtU3bj5iZ10Sah1mL50SahdmLyUTLulGauAjLzEjLx4yMx4iNwITLulWYwhSI", + value: "!(pain-206.13.1.13.0.hin-52.gai-9.mai-5f.cou-280.pai-25)!", + result: { + word: "pain", + correct: 13, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "25.07.2025", + }, + }, + { + date: "25.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNy0Sah5yNwETLhxGcuYDOtEWZy5CMucjLw4SMx4iNwITLulWYwhSI", + value: "!(pain-206.11.0.7.0.rea-86.pla-107.ai-25)!", + result: { + word: "pain", + correct: 11, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "25.07.2025", + }, + }, + { + date: "25.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNy0SaukTMtYnLzcTLu5SYk1ychBnLyYTLtF2ZuAjLyEjLw4CNx4iNwITLulWYwhSI", + value: "!(pain-206.14.0.12.0.gam-62.pas-da.n-73.v-19.i-25)!", + result: { + word: "pain", + correct: 14, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "25.07.2025", + }, + }, + { + date: "25.07.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUjMtkWYw5iNxYTL05WYucTLhVHZuQjMt8mdh5CMuQTMuIjL54iNwITLulWYwhSI", + value: "!(pain-206.9.2.14.0.avo-24.dua-7.ant-616.pai-25)!", + result: { + word: "pain", + correct: 9, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "25.07.2025", + }, + }, + { + date: "25.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNy0SahBnLiFTLpFGbuEjMtUGaj5CMuYjLw4CMx4iNwITLulWYwhSI", + value: "!(pain-206.10.0.6.0.che-21.lai-1b.pai-25)!", + result: { + word: "pain", + correct: 10, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 16, + date: "25.07.2025", + }, + }, + { + date: "25.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1ITLpFmLhZTMtEGbuMTMtU2bw5CMuYjLw4CMx4iNwITLulWYwhSI", + value: "!(pain-206.10.0.6.0.poe-13.la-16a.ai-25)!", + result: { + word: "pain", + correct: 10, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 16, + date: "25.07.2025", + }, + }, + { + date: "25.07.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNy0Sah5iMh1ybyBnLw4COuAjL34iNwITLulWYwhSI", + value: "!(pain-206.7.0.8.0.pro-a2.ai-25)!", + result: { + word: "pain", + correct: 7, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "25.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/proste-ale-wymaga-szczescia-06-08-2025-diffle-diffleen-grywebowe-31-letters-in-6" +] = [ + { + date: "06.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETLu9mZuIjMt42bi5yMjJTLoN2MuETMtk2b25yMtU3bs5iYzETLyR3cuAjL3EjLw4CNx4COxITLk52bmhSI", + value: "!(fond-218.14.0.17.0.str-13b.lou-3.voi-11.3ch-2c3.bon-22.fon-1)!", + result: { + word: "fond", + correct: 14, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "06.08.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMt42bm5SZ2ITLoN2MuMTLv5SNtwmLz0ycvZmLzITL09WbuAjL0EjLx4iNx4COxITLk52bmhSI", + value: "!(fond-218.16.1.14.0.mot-23.fos-3.l-5.o-3.3ch-26e.fon-1)!", + result: { + word: "fond", + correct: 16, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + }, + }, + { + date: "06.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKx0ibvZmL50ibvBnLyITLu9mYuYDOtEWZy5CMukjLw4iMx4COxITLk52bmhSI", + value: "!(fond-218.12.0.9.0.rea-86.bon-22.pon-9.fon-1)!", + result: { + word: "fond", + correct: 12, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "06.08.2025", + }, + }, + { + date: "06.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMt42bm5SOt42bw5iYx0Sdv5mLxITLlh2YuAjLwEjLw4CMx4COxITLk52bmhSI", + value: "!(fond-218.10.0.10.0.che-21.nou-1b.pon-9.fon-1)!", + result: { + word: "fond", + correct: 10, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "06.08.2025", + }, + }, + { + date: "06.08.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMt42bm5yN2QTLu9WbugTOtA3bj5CMucTMuAjL34COxITLk52bmhSI", + value: "!(fond-218.7.0.17.0.cop-98.mon-467.fon-1)!", + result: { + word: "fond", + correct: 7, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "06.08.2025", + }, + }, + { + date: "06.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETLu9mZukTLu9GcuMTLvJ3duE2MtQWdh5CMukjLx4SMx4COxITLk52bmhSI", + value: "!(fond-218.11.1.9.0.aud-3a.wro-3.pon-9.fon-1)!", + result: { + word: "fond", + correct: 11, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "06.08.2025", + }, + }, + { + date: "06.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKx0ibugjMtU3bm5SOt42bw5SYx0ycvxmLyYTLtF2ZuAjLwEjLw4SMx4COxITLk52bmhSI", + value: "!(fond-218.11.0.10.0.gam-62.los-1a.pon-9.fou-28.n-1)!", + result: { + word: "fond", + correct: 11, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 21, + date: "06.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/proste-niesatysfakcjonujace-05-10-2025-diffle-diffleen-grywebowe-26-letters-in-4" +] = [ + { + date: "05.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOjdTLvJHcuYjNtM3by5CN4ETLyVGauETNt8mbh5CMukjLx4iNx4CO3ITLjlWYz9mcwhSI", + value: "!(prosaic-278.16.1.9.0.ano-51.her-184.ros-66.pro-7c8)!", + result: { + word: "prosaic", + correct: 16, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "05.10.2025", + }, + }, + { + date: "05.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgzY30ybyBnL4UWNuYGZz4CM3IjL4ADOuAjZ00CajNjLx0SahxmL2gTLhVmcuAjL1EjLz4yNx4CO3ITLjlWYz9mcwhSI", + value: + "!(prosaic-278.17.3.15.0.rea-86.lai-1.3ch-4f0.808.270.3df.5e8.pro-7c8)!", + result: { + word: "prosaic", + correct: 17, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 35, + date: "05.10.2025", + }, + }, + { + date: "05.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgzY30ybyBnL2UWLpJnZuUmMtQ2by5iMyQTLhh2YuETNi1ybyBnLhdTLjFmcuYTLjhXZuAjL1EjL24yMy4CO3ITLjlWYz9mcwhSI", + value: + "!(prosaic-278.23.6.15.0.exc-6.rac-7a.pro-b51.cha-422.rod-2e.fri-e6.pro-7c8)!", + result: { + word: "prosaic", + correct: 23, + position: 6, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 44, + date: "05.10.2025", + }, + }, + { + date: "05.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgzY30ybyBnL5ITMtI3b35CZ40yYhNnL5cTLzF2YuEWL1VmZuAjLwEjL04CNx4CO3ITLjlWYz9mcwhSI", + value: "!(prosaic-278.14.4.10.0.feu-a.cas-79.sac-8d.wor-129.pro-7c8)!", + result: { + word: "prosaic", + correct: 14, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "05.10.2025", + }, + }, + { + date: "05.10.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgzY30ybyBnL4QjMtkGcz5SYi1icvNmLjhTLuFmcuIjNt0WYn5CMukjLz4SNx4CO3ITLjlWYz9mcwhSI", + value: "!(prosaic-278.15.3.9.0.gam-62.ran-8c.cor-ba.spi-248.pro-7c8)!", + result: { + word: "prosaic", + correct: 15, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "05.10.2025", + }, + }, + { + date: "05.10.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOjdTLvJHcugTOtA3bj5CMucjLz4CMx4CO3ITLjlWYz9mcwhSI", + value: "!(prosaic-278.10.3.7.0.cop-98.pro-7c8)!", + result: { + word: "prosaic", + correct: 10, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "05.10.2025", + }, + }, + { + date: "05.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4M2NuITYt8mcw5CMuUjLw4yMx4CO3ITLjlWYz9mcwhSI", + value: "!(prosaic-278.13.0.5.0.pro-a2.7c8)!", + result: { + word: "prosaic", + correct: 13, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "05.10.2025", + }, + }, + { + date: "05.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOjdTLvJHcuYWLuFmcuUWMtUmcj5CMuUjLx4iMx4CO3ITLjlWYz9mcwhSI", + value: "!(prosaic-278.12.1.5.0.cre-1e.ran-f.pro-7c8)!", + result: { + word: "prosaic", + correct: 12, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "05.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/proste-trzeba-troche-fantazji-06-10-2025-diffle-diffleen-grywebowe-36-letters-in" +] = [ + { + date: "06.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIjNuQ2MtUGbi5iZy0iduUjMtUWZs5CZ1gTLzlGZuAjLyEjLw4CNy4SO3ITLyVGZuVGbihSI", + value: "!(blender-279.24.0.12.0.dis-85d.lee-25.v-2f.ble-3d.62)!", + result: { + word: "blender", + correct: 24, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "06.10.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIjNtUGbi5iYtAXZs5SMi1CblNnLzITL09WbuAjLyEjLx4yNx4SO3ITLyVGZuVGbihSI", + value: "!(blender-279.17.1.12.0.mot-23.sel-b1.lep-b.ble-62)!", + result: { + word: "blender", + correct: 17, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + }, + }, + { + date: "06.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIjNtUGbuUjMt4WZi5CNxITLoN2MuIjMtUWZs5yYwUjLwEWMtg2Yz4SMtIXZu5yN0QTLoN2MuImMtUHbw5CN20iclZmL2gTLhVmcuAjLxEjL14iMz4SO3ITLyVGZuVGbihSI", + value: + "!(blender-279.32.5.11.0.rea-86.fer-64.plu-2b.3ch-447.ner-1.3ch-1a0.50c.lee-22.3ch-214.ben-25.le-62)!", + result: { + word: "blender", + correct: 32, + position: 5, + incorrect: 11, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 48, + date: "06.10.2025", + }, + }, + { + date: "06.10.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyYTLl5SMh1Sds5CMx0ibpJmLiFTLu9GduIjNt0WYn5CMucjLw4yMy4SO3ITLyVGZuVGbihSI", + value: "!(blender-279.23.0.7.0.gam-62.ton-1b.bin-10.lu-a1.e-62)!", + result: { + word: "blender", + correct: 23, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "06.10.2025", + }, + }, + { + date: "06.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIjNtUmLwETMt8Gbi5iNtMGel5CMucjLy4yMx4SO3ITLyVGZuVGbihSI", + value: "!(blender-279.13.2.7.0.exc-6.blo-110.e-62)!", + result: { + word: "blender", + correct: 13, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "06.10.2025", + }, + }, + { + date: "06.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKyYjLkNTLlxmYuITYt8mcw5CMugjLx4iNx4SO3ITLyVGZuVGbihSI", + value: "!(blender-279.16.1.8.0.pro-a2.ble-3d.62)!", + result: { + word: "blender", + correct: 16, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "06.10.2025", + }, + }, + { + date: "06.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiM24yYz0SZsJmLwQTL2VGbugDOtUGbw5SYtUXZm5CMukjLy4COx4SO3ITLyVGZuVGbihSI", + value: "!(blender-279.18.2.9.0.feu-a.ple-88.lev-40.ble-3c.62)!", + result: { + word: "blender", + correct: 18, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "06.10.2025", + }, + }, + { + date: "06.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiM20SZsJmLwQTLuVGduMDOtYWZk5SMtIXZu5yNx0ybyVmLlFTLlJ3YuAjLyEjLz4yMy4SO3ITLyVGZuVGbihSI", + value: "!(blender-279.23.3.12.0.cre-1e.ero-17.ner-1.def-83.ten-40.ble-62)!", + result: { + word: "blender", + correct: 23, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "06.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/prostsze-niz-by-sie-wydawalo-nie-09-07-2025-diffle-diffleen-33-letters-in-5-word" +] = [ + { + date: "09.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQ2NtwWauQTNt8GbucjL0ITLh9mYuIGM10ybyBnLw4SOuEjLzIjLwkTMtQmch9mYsxWaihSI", + value: "!(billboard-190.23.1.9.0.pro-50b.boa-24.7.lo-54.il-7d)!", + result: { + word: "billboard", + correct: 23, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "09.07.2025", + }, + }, + { + date: "09.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkdTLslmYuQTLyFWeuQTMtwWat5CMh1ybsdmL0QTLxlGbuYDOtEWZy5CMuATMuUjLzIjLwkTMtQmch9mYsxWaihSI", + value: + "!(billboard-190.23.5.10.0.rea-86.liq-44.glo-a0.mil-14.yar-4.bil-7d)!", + result: { + word: "billboard", + correct: 23, + position: 5, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "09.07.2025", + }, + }, + { + date: "09.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQ2NuQWOukzNtwWai5CMtoXa35SMy0SZoNmLw4SOuEjL4IjLwkTMtQmch9mYsxWaihSI", + value: "!(billboard-190.28.1.9.0.che-21.wiz-0.bil-79.9d.7d)!", + result: { + word: "billboard", + correct: 28, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "09.07.2025", + }, + }, + { + date: "09.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkdTLslmYuYGZz4iYwQjL2YWLoN2MuIDMx0SdoNmLkljL5cTLslmYuYTL35WauYWLhlmZuYjN00ichBnL5ETLyFmduIjNt0WYn5CMugTMuIjLxQjLwkTMtQmch9mYsxWaihSI", + value: + "!(billboard-190.41.2.18.0.gam-62.var-19.par-466.fia-f.inw-6.bil-79.9d.chu-102.3ch-f6.40b.3df.bil-7d)!", + result: { + word: "billboard", + correct: 41, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 12, + totalLetters: 61, + date: "09.07.2025", + }, + }, + { + date: "09.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkdjLl1CbpJmLz0SaslmLh1SdlZmLw4yNuMjL5EjLwkTMtQmch9mYsxWaihSI", + value: "!(billboard-190.19.3.7.0.feu-a.ili-3.bil-e.7d)!", + result: { + word: "billboard", + correct: 19, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "09.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/przeklete-warianty-pisowni-19-12-2025-diffle-diffleen-31-letters-in-4-words-larg" +] = [ + { + date: "19.12.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOy4iM00yYh1mLm1CctlmLlFTLlJ3YuAjL14CNuIjMuMTNz0Sau9mchNWYthSI", + value: "!(macaroni-353.22.4.5.0.cre-1e.imp-f.mac-42.28)!", + result: { + word: "macaroni", + correct: 22, + position: 4, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "19.12.2025", + }, + }, + { + date: "19.12.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOy4yYm1yYh1mL2gTLhVmcuAjLz4iMucTMuMTNz0Sau9mchNWYthSI", + value: "!(macaroni-353.17.2.3.0.rea-86.mac-fc.28)!", + result: { + word: "macaroni", + correct: 17, + position: 2, + incorrect: 3, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "19.12.2025", + }, + }, + { + date: "19.12.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgjMucjMtMmLl1ycuQ2NtIXYt5yYz0SbyFmLyYTLtF2ZuAjL24yMucjMuMTNz0Sau9mchNWYthSI", + value: "!(macaroni-353.27.3.6.0.gam-62.arm-3c.mar-7d.s-e.c-27.28)!", + result: { + word: "macaroni", + correct: 27, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "19.12.2025", + }, + }, + { + date: "19.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4ITLjFWbuYmMt0WZk5iY3QTLu92YuIjL54SNucTMuMTNz0Sau9mchNWYthSI", + value: "!(macaroni-353.17.5.9.2.con-47b.dem-2f.mac-28)!", + result: { + word: "macaroni", + correct: 17, + position: 5, + incorrect: 9, + knownIncorrect: 2, + totalWords: 3, + totalLetters: 31, + date: "19.12.2025", + }, + }, + { + date: "19.12.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4ITLjFWbuEWZ00ichNmL1ITLu92duMTZx0SYjNnL20yY4VmLw4SMx4iMuIjMuMTNz0Sau9mchNWYthSI", + value: "!(macaroni-353.22.2.11.0.exc-6.sca-1e3.won-25.car-4ea.mac-28)!", + result: { + word: "macaroni", + correct: 22, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "19.12.2025", + }, + }, + { + date: "19.12.2025", + nick: "User", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOy0yYh5iMwETLzlWbuIGMy0ichJmLilzMtIXYw5SN30SYodnLw4CMx4SMuAjMuMTNz0Sau9mchNWYthSI", + value: "!(macaroni-353.20.1.10.0.wha-75.par-39b.bar-20b.mis-102.ac-28)!", + result: { + word: "macaroni", + correct: 20, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "19.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/przekombinowalem-bylo-do-pykniecia-w-2-z-tym-co-mialem-po-1-15-10-2025-diffle-di" +] = [ + { + date: "15.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMx0SbhZmL4QTMtAXbh5SZx0SZyNmLw4CNuIjLzEjL4gjMtkHbp1WYmhSI", + value: "!(family-288.13.2.4.0.cre-1e.amp-148.fam-10)!", + result: { + word: "family", + correct: 13, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "15.10.2025", + }, + }, + { + date: "15.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMx0SbhZmLw0Cbp1mLkZTLtlGbuITYt8mcw5CMuATMuQjL0EjL4gjMtkHbp1WYmhSI", + value: "!(family-288.14.4.10.0.pro-a2.lim-6d.mil-0.fam-10)!", + result: { + word: "family", + correct: 14, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "15.10.2025", + }, + }, + { + date: "15.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMx0SbhZmL4QTMtAXbh5CO4ETLhVXcuYDOtEWZy5CMuATMuQjL1EjL4gjMtkHbp1WYmhSI", + value: "!(family-288.15.4.10.0.rea-86.qua-188.amp-148.fam-10)!", + result: { + word: "family", + correct: 15, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "15.10.2025", + }, + }, + { + date: "15.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpATMt0WYm5CMtYmZp5CZ30iZmFmLlJTL2F2dukTLpVnaukjNtQXaw5COtkWZu5SMuIjMuIjL3EjL4gjMtkHbp1WYmhSI", + value: + "!(family-288.17.2.22.1.nei-8.pit-69.jui-9.wav-2e.aff-7d.iff-0.fam-10)!", + result: { + word: "family", + correct: 17, + position: 2, + incorrect: 22, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 41, + date: "15.10.2025", + }, + }, + { + date: "15.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpATMt0mLz0SahZmL20yY4VmLw4iNuEjLyEjL4gjMtkHbp1WYmhSI", + value: "!(family-288.12.1.6.0.exc-6.fai-3.m-10)!", + result: { + word: "family", + correct: 12, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "15.10.2025", + }, + }, + { + date: "15.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwEjLyETLtFmLh1SdlZmLw4yNuIjL0EjL4gjMtkHbp1WYmhSI", + value: "!(family-288.14.2.7.0.feu-a.am-12.10)!", + result: { + word: "family", + correct: 14, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "15.10.2025", + }, + }, + { + date: "15.10.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwETLtFmL10CbvZmLz0ib1JmL0QWLtFGbuIjNt0WYn5CMuETMuEjLyEjL4gjMtkHbp1WYmhSI", + value: "!(family-288.12.1.11.0.gam-62.lam-d4.bun-3.fol-5.am-10)!", + result: { + word: "family", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "15.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/raczej-proste-tylko-trzeba-trafic-03-12-2025-diffle-diffleen-grywebowe-24-letter" +] = [ + { + date: "03.12.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpAjMt4Wek5iYy0SdsBnLiZWLuFmYuYDOtEWZy5CMuETMuIjLxEjL3MzMt8Wbh5WekhSI", + value: "!(dynamo-337.11.2.11.0.rea-86.ban-fb.plu-2b.dyn-20)!", + result: { + word: "dynamo", + correct: 11, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "03.12.2025", + }, + }, + { + date: "03.12.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwITLulHZuMjNt4WYt5CMtc2b55CO20ibvhmL3IWMt8Gdz5iNtMGel5CMuQTMuYjLyEjL3MzMt8Wbh5WekhSI", + value: "!(dynamo-337.12.6.14.0.exc-6.sto-1b7.hon-68.yog-0.man-63.dyn-20)!", + result: { + word: "dynamo", + correct: 12, + position: 6, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "03.12.2025", + }, + }, + { + date: "03.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMy0ib5RmLhZTMtwWYi5yMkFTLuF2YuETYtQnZh5CMucTMuIjLyEjL3MzMt8Wbh5WekhSI", + value: "!(dynamo-337.12.2.17.0.aft-a1.can-1d3.bal-16a.dyn-20)!", + result: { + word: "dynamo", + correct: 12, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "03.12.2025", + }, + }, + { + date: "03.12.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwITLulHZuYzMtk2d05SM20ib1JmLxMTLtFmauUjZx0SYoNmL1UTLhx2cuIjNt0WYn5CMuYTMuEjL2EjL3MzMt8Wbh5WekhSI", + value: + "!(dynamo-337.16.1.16.0.gam-62.sla-55.cha-1f5.jam-31.bun-61.twi-36.dyn-20)!", + result: { + word: "dynamo", + correct: 16, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 33, + date: "03.12.2025", + }, + }, + { + date: "03.12.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKwITLulHZuMWNtQ2bt5CMt42b65CNwETLuFmYucTZtEGbz5CMuMTMuUjLyEjL3MzMt8Wbh5WekhSI", + value: "!(dynamo-337.12.5.13.0.sla-e7.ban-104.zon-0.mod-5c.dyn-20)!", + result: { + word: "dynamo", + correct: 12, + position: 5, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "03.12.2025", + }, + }, + { + date: "03.12.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCMy0ib5RmL2cTLv5WYuATLu9WbuATLhVXeuATL592cugTOtA3bj5CMuMTMugjL2EjL3MzMt8Wbh5WekhSI", + value: "!(dynamo-337.16.8.13.0.cop-98.soy-0.yua-0.mon-0.ano-76.dyn-20)!", + result: { + word: "dynamo", + correct: 16, + position: 8, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "03.12.2025", + }, + }, + { + date: "03.12.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpAjMt4Wek5iMtoWew5SZx0SZyNmLw4yNuEjLxEjL3MzMt8Wbh5WekhSI", + value: "!(dynamo-337.11.1.7.0.cre-1e.pyj-2.dyn-20)!", + result: { + word: "dynamo", + correct: 11, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "03.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/smile-smile-smile-nastrzelalem-sie-jak-kowboj-w-westernie-a-ogolnie-latwe-13-08-" +] = [ + { + date: "13.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmRjLmFjLmNjL3MTLl5CNx0ydugjYtwWZz5CNz0SZ1dmL2gTLhVmcuAjLzEjLy4iM04SNyITLn5WatVWZzhSI", + value: "!(seeming-225.42.2.13.0.rea-86.gue-34.sel-b8.w-14.e-37.3f.1f.4f)!", + result: { + word: "seeming", + correct: 42, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 57, + date: "13.08.2025", + }, + }, + { + date: "13.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYGNtUWZucjNtcWaz5CZhZTLoN2MuYDNtMWaw5CMt0Weo5iMtYnL3EWLs5SM10SblNnLwQTLi1WYuAjL3EjL04yNy4SNyITLn5WatVWZzhSI", + value: + "!(seeming-225.27.4.17.0.amb-40.sem-51.l-a7.v-2.hym-0.pic-46.3ch-6ad.sig-67.ee-4f)!", + result: { + word: "seeming", + correct: 27, + position: 4, + incorrect: 17, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 48, + date: "13.08.2025", + }, + }, + { + date: "13.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYGNtUWZz5SO40SaodnLxcTLvB3cuU2MtkWbuYTLjhXZuAjL1EjLx4CMy4SNyITLn5WatVWZzhSI", + value: "!(seeming-225.20.1.15.0.exc-6.mi-3e.spo-71.whi-89.see-4f)!", + result: { + word: "seeming", + correct: 20, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "13.08.2025", + }, + }, + { + date: "13.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYGNtUWZz5COx0SZlRmLj1SblxmL1ETLv1WZuIjNt0WYn5CMucjLy4CNy4SNyITLn5WatVWZzhSI", + value: "!(seeming-225.24.2.7.0.gam-62.emo-15.lem-c.dee-18.see-4f)!", + result: { + word: "seeming", + correct: 24, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "13.08.2025", + }, + }, + { + date: "13.08.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmRjLmNjL3MTLlVmLy0SZpNnL4kTLw92YuAjLxEjLz4CNy4SNyITLn5WatVWZzhSI", + value: "!(seeming-225.24.3.11.0.cop-98.sie-2.ee-37.3f.4f)!", + result: { + word: "seeming", + correct: 24, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 38, + date: "13.08.2025", + }, + }, + { + date: "13.08.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYGNtUmLxUTLtV2cuITYt8mcw5CMugjLw4CNx4SNyITLn5WatVWZzhSI", + value: "!(seeming-225.14.0.8.0.pro-a2.sem-51.e-4f)!", + result: { + word: "seeming", + correct: 14, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "13.08.2025", + }, + }, + { + date: "13.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZ00SZl5SN50Cbv5SM10Sbl5COk1SZoNnLyMTLzVXYuAjLwEjLw4SMy4SNyITLn5WatVWZzhSI", + value: "!(seeming-225.21.0.10.0.aus-32.she-d8.em-51.ol-95.ee-4f)!", + result: { + word: "seeming", + correct: 21, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "13.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/super-oczywiste-26-10-2025-diffle-diffleen-35-letters-in-6-words-large-green-cir" +] = [ + { + date: "26.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNx0yYp5CZy0SaoRnLhZTLjlGcuMWMtUWZt5SNj1SZ1FnLhZWMtEmcn5CMuQTMuAjLxIjL5kjMtQXZrNWa0hSI", + value: "!(ticket-299.21.0.14.0.gra-1fa.que-c5.mee-1c.pic-6a.thi-2d.ic-15)!", + result: { + word: "ticket", + correct: 21, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "26.10.2025", + }, + }, + { + date: "26.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUTMtMmLxETLklGducTZtEGbz5CMuATMuEjLxEjL5kjMtQXZrNWa0hSI", + value: "!(ticket-299.11.1.10.0.sla-e7.tid-11.c-15)!", + result: { + word: "ticket", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "26.10.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1ETLjlmLxcTLjFGduMjMtQ3bt5CMuATMuAjL0EjL5kjMtQXZrNWa0hSI", + value: "!(ticket-299.14.0.10.0.mot-23.tac-71.ic-15)!", + result: { + word: "ticket", + correct: 14, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + }, + }, + { + date: "26.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1ETLjlGdukzMtkGdz5yYx0SZ4VmLw4yNuIjLzEjL5kjMtQXZrNWa0hSI", + value: "!(ticket-299.13.2.7.0.exe-1c.sti-39.tic-15)!", + result: { + word: "ticket", + correct: 13, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "26.10.2025", + }, + }, + { + date: "26.10.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUTMuATMuUmMuQTLjlGduIWNtgGdl5iM20SbhdmLw4SOuEjL0IjL5kjMtQXZrNWa0hSI", + value: "!(ticket-299.24.1.9.0.gam-62.eth-5b.tic-4.2e.10.15)!", + result: { + word: "ticket", + correct: 24, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "26.10.2025", + }, + }, + { + date: "26.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUTMtMWa05iYx0yYpdnLxUTLjlmcuQTLrlGcuI2MtcWau5SYtUXZm5CMuMTMuEjLyIjL5kjMtQXZrNWa0hSI", + value: "!(ticket-299.22.1.13.0.feu-a.nig-3b.pik-4.ric-51.wic-1b.tic-15)!", + result: { + word: "ticket", + correct: 22, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "26.10.2025", + }, + }, + { + date: "26.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNx4CMx4CNtMWa05COtMWdt5SN0cTLoN2MuYDOtEWZy5CMuATMuIjLwIjL5kjMtQXZrNWa0hSI", + value: "!(ticket-299.20.2.10.0.rea-86.3ch-745.muc-8.tic-4.10.15)!", + result: { + word: "ticket", + correct: 20, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "26.10.2025", + }, + }, + { + date: "26.10.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUTMtMWa05iYx0yYpdnL2ETLulmdugTOtA3bj5CMuMTMuIjL3EjL5kjMtQXZrNWa0hSI", + value: "!(ticket-299.17.2.13.0.cop-98.vin-16.wic-1b.tic-15)!", + result: { + word: "ticket", + correct: 17, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "26.10.2025", + }, + }, + { + date: "26.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1ETLjlGduUTNtMWdi5iNtw2bk5SZx0SZyNmLw4SOuAjL0EjL5kjMtQXZrNWa0hSI", + value: "!(ticket-299.14.0.9.0.cre-1e.dol-6.buc-55.tic-15)!", + result: { + word: "ticket", + correct: 14, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "26.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/szybciej-niz-sadzilem-hmm-ale-i-tak-dobre-03-08-2025-diffle-diffleen-grywebowe-2" +] = [ + { + date: "03.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMGOtwWYm5SO50SYvNmLlhTLul2cuAjLxEjLy4SMx4SNxITL5ZWazxWYmhSI", + value: "!(falsify-215.11.2.11.0.sin-8e.coa-99.fal-8c)!", + result: { + word: "falsify", + correct: 11, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "03.08.2025", + }, + }, + { + date: "03.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyY40CbhZmLhhTLtl2cuUDOy0SY1FnL2gTLhVmcuAjLwEjLy4SNx4SNxITL5ZWazxWYmhSI", + value: "!(falsify-215.15.2.10.0.rea-86.qua-285.sim-8a.fal-8c)!", + result: { + word: "falsify", + correct: 15, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "03.08.2025", + }, + }, + { + date: "03.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMGOtwWYm5SZ10ychdnLhRTMtIXZj5CMuYjLw4iMx4SNxITL5ZWazxWYmhSI", + value: "!(falsify-215.12.0.6.0.cer-14a.was-5e.fal-8c)!", + result: { + word: "falsify", + correct: 12, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "03.08.2025", + }, + }, + { + date: "03.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyY40Cbh5SOtMXam5CZ10yYpxmLhRjMtEGbm5iY3ITLoN2MugTNt4WYo5yMtknYh5SYk1ychBnLyYTLtF2ZuEjL3EjL04yMy4SNxITL5ZWazxWYmhSI", + value: + "!(falsify-215.23.4.17.1.gam-62.pas-da.aby-3.han-58.3ch-27b.fla-24a.lic-5d.fis-9.al-8c)!", + result: { + word: "falsify", + correct: 23, + position: 4, + incorrect: 17, + knownIncorrect: 1, + totalWords: 9, + totalLetters: 44, + date: "03.08.2025", + }, + }, + { + date: "03.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyY40CbhZmL3QjMuYWYtg2Yz4iZmFTLuFWbuQTO10CajNjLyMTLzVXYuAjLyEjLw4COx4SNxITL5ZWazxWYmhSI", + value: "!(falsify-215.18.0.12.0.aus-32.3ch-594.man-1ff.3ch-af.247.fal-8c)!", + result: { + word: "falsify", + correct: 18, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "03.08.2025", + }, + }, + { + date: "03.08.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMGOtwWYm5CO4ETLhVXcugTNtcWau5CM20CbhZnLyEWLvJHcuEjL2EjLx4SOx4SNxITL5ZWazxWYmhSI", + value: "!(falsify-215.19.1.16.1.pro-a2.val-60.nig-58.qua-188.fal-8c)!", + result: { + word: "falsify", + correct: 19, + position: 1, + incorrect: 16, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 36, + date: "03.08.2025", + }, + }, + { + date: "03.08.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyY44iZ10Cbh5COx0ibpZmL4kTLw92YuEjLyEjLz4yNx4SNxITL5ZWazxWYmhSI", + value: "!(falsify-215.17.3.12.1.cop-98.fin-18.al-5f.8c)!", + result: { + word: "falsify", + correct: 17, + position: 3, + incorrect: 12, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 32, + date: "03.08.2025", + }, + }, + { + date: "03.08.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMGOtwWYm5iZ5ETLhx2YuYDNtUGdz5CMuUjLy4iMx4SNxITL5ZWazxWYmhSI", + value: "!(falsify-215.12.2.5.0.ste-46.cla-19f.fal-8c)!", + result: { + word: "falsify", + correct: 12, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "03.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/szybki-strzal-29-09-2025-diffle-diffleen-grywebowe-17-letters-in-2-words-large-g" +] = [ + { + date: "29.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCO10SZw9mL2gTLhVmcuAjL04SMuITMuIzNy0icvRXYyVGcvhSI", + value: "!(operator-272.12.1.4.0.rea-86.ope-58)!", + result: { + word: "operator", + correct: 12, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "29.09.2025", + }, + }, + { + date: "29.09.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCO10SZw9mLkBzMtQnbp5yMy0Cdv1mLw4CMx4iMuYTMuIzNy0icvRXYyVGcvhSI", + value: "!(operator-272.16.2.10.0.mot-23.int-30d.ope-58)!", + result: { + word: "operator", + correct: 16, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "29.09.2025", + }, + }, + { + date: "29.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4UTLlB3buMmMtI3b05SYk1icvBnLyEWLyVGduMTL29mcuQGNtIHcz5SYk1SYlhmL20yY4VmLw4iMx4SNukjMuIzNy0icvRXYyVGcvhSI", + value: + "!(operator-272.29.5.12.0.exc-6.hea-da.spr-4d.rov-3.ter-a2.por-da.tor-2c.ope-58)!", + result: { + word: "operator", + correct: 29, + position: 5, + incorrect: 12, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 46, + date: "29.09.2025", + }, + }, + { + date: "29.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4UTLlB3buMmM10SYyRnL1UTLhVGcuITOtEWZt5CO30iYlRmLxETLhV2ZuUTOy0ichNmLw4CNx4CNuQjMuIzNy0icvRXYyVGcvhSI", + value: + "!(operator-272.24.4.14.0.car-295.gea-11.deb-78.mea-92.pea-55.tra-52c.ope-58)!", + result: { + word: "operator", + correct: 24, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "29.09.2025", + }, + }, + { + date: "29.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgTNtUGcv5CO40CclJnLy0SYltmL3AjNtg2Yz4iN00CdlZmLlNTLjVGaugjMtkWYz5iMt4WZk5iM20SbhdmLw4CNx4yMuEzMuIzNy0icvRXYyVGcvhSI", + value: + "!(operator-272.31.3.14.0.gam-62.den-2.sai-28.hec-3e.fet-46.3ch-607.kea-2.rep-88.ope-58)!", + result: { + word: "operator", + correct: 31, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 48, + date: "29.09.2025", + }, + }, + { + date: "29.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4UTLlB3buY2Nj5COhRTLlJHcuMWNt0WYj5SOm1icwNnLw4iMx4yMuUjMuIzNy0icvRXYyVGcvhSI", + value: "!(operator-272.25.3.12.0.spr-f9.cam-5c.pre-4a8.c7f.ope-58)!", + result: { + word: "operator", + correct: 25, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "29.09.2025", + }, + }, + { + date: "29.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgTNtUGcv5CN4UTLyVGcuMTMtAXY05CMtMWZw5iM20ichVmLh1SdlZmLw4CNx4yMuUjMuIzNy0icvRXYyVGcvhSI", + value: + "!(operator-272.25.3.14.0.feu-a.ear-62.pec-0.tap-13.per-584.ope-58)!", + result: { + word: "operator", + correct: 25, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 42, + date: "29.09.2025", + }, + }, + { + date: "29.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCO14SM00SZw9mL4kTLw92YuAjL44iMugTMuIzNy0icvRXYyVGcvhSI", + value: "!(operator-272.18.2.8.0.cop-98.ope-41.58)!", + result: { + word: "operator", + correct: 18, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "29.09.2025", + }, + }, + { + date: "29.09.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgTNuEGNuImMtUGcv5yYx0SYyVmLlFTLlJ3YuAjL34SMuUjMuIzNy0icvRXYyVGcvhSI", + value: "!(operator-272.25.1.7.0.cre-1e.era-1c.ope-2b.4a.58)!", + result: { + word: "operator", + correct: 25, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "29.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/szybko-to-zakonczylem-21-11-2025-diffle-diffleen-grywebowe-20-letters-in-3-words" +] = [ + { + date: "21.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1UTLvJWYuQWY10ichBnL2gTLhVmcuAjL34yMuATMuUjMz0Cdy9mYhhSI", + value: "!(abort-325.10.3.7.0.rea-86.par-5ad.abo-55)!", + result: { + word: "abort", + correct: 10, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "21.11.2025", + }, + }, + { + date: "21.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSN10ybiFmL4QTLwFmcuMjYx0icv1mL3MTLv9GZucDOt8mc05iZh1ib1NnLx4iNx4yMuYTMuUjMz0Cdy9mYhhSI", + value: "!(abort-325.16.3.16.1.sun-af.tro-87.doo-37.mor-1b3.rap-48.abo-55)!", + result: { + word: "abort", + correct: 16, + position: 3, + incorrect: 16, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 35, + date: "21.11.2025", + }, + }, + { + date: "21.11.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSN14SY00ybiFmLy0iehJmLlFTLlJ3YuAjL34iMuITMuUjMz0Cdy9mYhhSI", + value: "!(abort-325.12.2.7.0.cre-1e.baz-2.abo-4a.55)!", + result: { + word: "abort", + correct: 12, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "21.11.2025", + }, + }, + { + date: "21.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUTNt8mLw0iciFmL20yY4VmLx4CNx4CMuETMuUjMz0Cdy9mYhhSI", + value: "!(abort-325.11.0.14.1.exc-6.abr-0.o-55)!", + result: { + word: "abort", + correct: 11, + position: 0, + incorrect: 14, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 25, + date: "21.11.2025", + }, + }, + { + date: "21.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUTNt8mLidTLzJWYuIGMy0ichJmLyYTLtF2ZuAjL24iMuMTMuUjMz0Cdy9mYhhSI", + value: "!(abort-325.13.2.6.0.gam-62.bar-20b.abs-7b.o-55)!", + result: { + word: "abort", + correct: 13, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "21.11.2025", + }, + }, + { + date: "21.11.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSN10ybiFmLygTLoN2MuQDNtEmck5yNl1SYsNnLw4SMx4iMuITMuUjMz0Cdy9mYhhSI", + value: "!(abort-325.12.2.11.0.sla-e7.dra-44.3ch-82.abo-55)!", + result: { + word: "abort", + correct: 12, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "21.11.2025", + }, + }, + { + date: "21.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1UTLvJWYuYGNtcWY35COmVTLyFGcuQTMx0CdhNmLh1SdlZmLw4iNx4CMuMTMuUjMz0Cdy9mYhhSI", + value: "!(abort-325.13.0.16.0.feu-a.cat-114.par-5f8.wag-4f.abo-55)!", + result: { + word: "abort", + correct: 13, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "21.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/szybko-ulozyl-sie-koniec-ale-bylo-kilka-opcji-i-musialem-uzyc-pomocniczego-zeby-" +] = [ + { + date: "05.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNj1SYuImMtUHbw5iZ20yYhJmL2gTLhVmcuAjL54CMuYTMukDMz0yajFmY5FGbwhSI", + value: "!(playback-309.16.0.9.0.rea-86.bac-6f.plu-2b.a-c4)!", + result: { + word: "playback", + correct: 16, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "05.11.2025", + }, + }, + { + date: "05.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0MmL4MmLhJWLhxGcuAzNy0Cc5hmLw4iMx4SMuAjMukDMz0yajFmY5FGbwhSI", + value: "!(playback-309.20.1.12.0.hyp-270.pla-ba.c8.c4)!", + result: { + word: "playback", + correct: 20, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "05.11.2025", + }, + }, + { + date: "05.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQzYuYGNtEGbw5SN00SbhxmLzITL0FGcuYTLjhXZuAjL54iMuEjMukDMz0yajFmY5FGbwhSI", + value: "!(playback-309.21.2.9.0.exc-6.pat-23.lam-45.pla-4f.c4)!", + result: { + word: "playback", + correct: 21, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "05.11.2025", + }, + }, + { + date: "05.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNj1SYsBnL4kTLw92YuAjL34yMuETMukDMz0yajFmY5FGbwhSI", + value: "!(playback-309.11.3.7.0.cop-98.pla-c4)!", + result: { + word: "playback", + correct: 11, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "05.11.2025", + }, + }, + { + date: "05.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQzYtEGbw5SMtUHaj5SYi1SYsBnLmFTLk9mYuI2Yy4SY2ETLhxmLyETMtwWYw5iM20SbhdmLx4yMx4yMuQjMukDMz0yajFmY5FGbwhSI", + value: + "!(playback-309.24.3.13.1.gam-62.pal-112.la-16a.2cb.bod-1f.pla-ba.chu-1.pla-c4)!", + result: { + word: "playback", + correct: 24, + position: 3, + incorrect: 13, + knownIncorrect: 1, + totalWords: 8, + totalLetters: 40, + date: "05.11.2025", + }, + }, + { + date: "05.11.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK0MWLhxGcuYjMx0SYuFmLlFTLlJ3YuAjL34yMuITMukDMz0yajFmY5FGbwhSI", + value: "!(playback-309.12.3.7.0.cre-1e.ana-126.pla-c4)!", + result: { + word: "playback", + correct: 12, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "05.11.2025", + }, + }, + { + date: "05.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQzYuYGNtEGbw5CNy0ibhtmLh1SdlZmLw4iMx4iMuYTMukDMz0yajFmY5FGbwhSI", + value: "!(playback-309.16.2.12.0.feu-a.kan-24.pla-4f.c4)!", + result: { + word: "playback", + correct: 16, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "05.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/szybko-wpadla-koncowka-ale-potem-strzelanie-bo-kilka-slow-pasowalo-niestety-trad" +] = [ + { + date: "07.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQ2MtUWdn5SNj1SZ1FnL3ATMtg2Yz4CZtMXZ35iN40SYlJnLw4CMx4SMuUTMuADOy0CdzVWdnhSI", + value: "!(guest-280.15.1.10.0.rea-86.wes-d.3ch-107.que-c5.gue-3d)!", + result: { + word: "guest", + correct: 15, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "07.10.2025", + }, + }, + { + date: "07.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQ2MtUWdn5CN20yclZnL4U2MuMGZx0CajNjLlFTLzV3ZuEDZ24yN1IjL2UmMtg2Yz4SYtQXduMTLvh2ZuQjMt4Wd05CZ20yc11mL20yY4VmLw4SOx4iNuAzMuADOy0CdzVWdnhSI", + value: + "!(guest-280.30.6.19.0.exc-6.mus-6d.tun-24.gho-3.ut-a.3ch-2e6.257.6d1.gus-1e.3ch-1dc.3e8.ves-64.gue-3d)!", + result: { + word: "guest", + correct: 30, + position: 6, + incorrect: 19, + knownIncorrect: 0, + totalWords: 13, + totalLetters: 55, + date: "07.10.2025", + }, + }, + { + date: "07.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkNTLlV3ZuUzYtUWdx5iMzETLzVmYuEWNtQXZz5SNzETLyVGauAjL54yMuYTMuADOy0CdzVWdnhSI", + value: "!(guest-280.16.3.9.0.her-135.set-5a.bes-132.que-c5.gue-3d)!", + result: { + word: "guest", + correct: 16, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "07.10.2025", + }, + }, + { + date: "07.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZz0SZ1dmLiBTMtg2Yz4COkFTL05WduQTOm1SZyBnLh1SdlZmLw4iMx4SMuMTMuADOy0CdzVWdnhSI", + value: "!(guest-280.13.1.12.0.feu-a.pre-f94.unt-1d8.3ch-10b.gue-3d)!", + result: { + word: "guest", + correct: 13, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "07.10.2025", + }, + }, + { + date: "07.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZz0SZ1dmLxkTLlxmZukjYt4WZw5SZx0SZyNmLw4SMx4CMuATMuADOy0CdzVWdnhSI", + value: "!(guest-280.10.0.11.0.cre-1e.pen-b9.fle-91.gue-3d)!", + result: { + word: "guest", + correct: 10, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "07.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/tak-blisko-w-drugim-az-nie-moglem-uwierzyc-16-07-2025-diffle-diffleen-grywebowe-" +] = [ + { + date: "16.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMjMtMmch5SNzMjL3cTLoN2MuYDOtEWZy5CMugjLx4CMx4yN5ETLoNmchhSI", + value: "!(arch-197.10.1.8.0.rea-86.3ch-77.335.arc-23)!", + result: { + word: "arch", + correct: 10, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 19, + date: "16.07.2025", + }, + }, + { + date: "16.07.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMjMuE2My0yYy5yNt8Gch5CMuETMuAjL54yN5ETLoNmchhSI", + value: "!(arch-197.9.0.11.0.apo-7.rc-23a.23)!", + result: { + word: "arch", + correct: 9, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "16.07.2025", + }, + }, + { + date: "16.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzITLjJXYuYWLuFmcugTOtA3bj5CMuATMuMjL54yN5ETLoNmchhSI", + value: "!(arch-197.9.3.10.0.cop-98.ran-f.arc-23)!", + result: { + word: "arch", + correct: 9, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "16.07.2025", + }, + }, + { + date: "16.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyMy0yYyFmL5ETMukzYz4SZ0MTLoN2MukjYtIXdi5SZy0CZhZmL2ETLyFGbuMTMtIXY35CZ30ich1mLy0SYvBnLxITLlh2YuAjL4EjLy4SOy4yN5ETLoNmchhSI", + value: + "!(arch-197.29.2.18.0.che-21.poa-2.mar-7d.war-13.lar-16.fad-2e.bur-b9.3ch-34e.3c9.119.arc-23)!", + result: { + word: "arch", + correct: 29, + position: 2, + incorrect: 18, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 49, + date: "16.07.2025", + }, + }, + { + date: "16.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMjMtMmch5yM10SYodnLyQGNtEmc05yYt0WYi5CMuYTMuIjL44yN5ETLoNmchhSI", + value: "!(arch-197.8.2.16.0.bam-c.tra-4d2.wha-53.arc-23)!", + result: { + word: "arch", + correct: 8, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "16.07.2025", + }, + }, + { + date: "16.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMjMuE2My0yYuYTNtMnch5SOx0ichZnLyYTLtF2ZuAjLxEjLw4yMx4yN5ETLoNmchhSI", + value: "!(arch-197.13.0.11.0.gam-62.var-19.ars-56.c-23a.23)!", + result: { + word: "arch", + correct: 13, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "16.07.2025", + }, + }, + { + date: "16.07.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMjMuETMtMmch5yN30CajNjLyEWLvJHcuAjLxEjLx4iMx4yN5ETLoNmchhSI", + value: "!(arch-197.12.1.11.0.pro-a2.3ch-77.arc-11.23)!", + result: { + word: "arch", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "16.07.2025", + }, + }, + { + date: "16.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMjMuETMtMmch5yY30CajNjL3IWLyJnLyMTLzVXYuAjL0EjLw4yMx4yN5ETLoNmchhSI", + value: "!(arch-197.13.0.14.0.aus-32.rr-b7.3ch-7c.arc-11.23)!", + result: { + word: "arch", + correct: 13, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "16.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/tak-sie-sklada-20-11-2025-diffle-diffleen-21-letters-in-3-words-large-green-circ" +] = [ + { + date: "20.11.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSO2ITL05WauYmYl1SZyBnLlFTLlJ3YuAjL14iMuQTMuQjMz0CdzVmclRnbphSI", + value: "!(interest-324.14.2.5.0.cre-1e.pre-ebf.int-269)!", + result: { + word: "interest", + correct: 14, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "20.11.2025", + }, + }, + { + date: "20.11.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkjNy4SY2IjL1YjMtQnbp5SO30iclRnLlZjMtUGdz5yMy0Cdv1mLw4iMx4SMuYzMuQjMz0CdzVmclRnbphSI", + value: "!(interest-324.36.1.12.0.mot-23.ste-26e.ter-79.int-265.26a.269)!", + result: { + word: "interest", + correct: 36, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 49, + date: "20.11.2025", + }, + }, + { + date: "20.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkjNy0CdulmLh1icpNnL2gTLhVmcuAjLz4SNuQTMuQjMz0CdzVmclRnbphSI", + value: "!(interest-324.14.5.3.0.rea-86.sir-a.int-269)!", + result: { + word: "interest", + correct: 14, + position: 5, + incorrect: 3, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "20.11.2025", + }, + }, + { + date: "20.11.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkjNy0CdulmL3UWLhx2cuAjL24yMuETMuQjMz0CdzVmclRnbphSI", + value: "!(interest-324.11.3.6.0.sla-e7.int-269)!", + result: { + word: "interest", + correct: 11, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "20.11.2025", + }, + }, + { + date: "20.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSO2IjLhZDNtQnbp5CO50CcvNmLw4CMx4SMuYTMuQjMz0CdzVmclRnbphSI", + value: "!(interest-324.16.1.10.0.cop-98.int-46a.269)!", + result: { + word: "interest", + correct: 16, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "20.11.2025", + }, + }, + { + date: "20.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSO2ITL05WauYTMx0ibpNnLxITLlh2YuAjL14yMuYTMuQjMz0CdzVmclRnbphSI", + value: "!(interest-324.16.3.5.0.che-21.sin-116.int-269)!", + result: { + word: "interest", + correct: 16, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "20.11.2025", + }, + }, + { + date: "20.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSO2ITL05WauUTLhl2ZuAjLz4CMuMTMuQjMz0CdzVmclRnbphSI", + value: "!(interest-324.13.0.3.0.gia-5.int-269)!", + result: { + word: "interest", + correct: 13, + position: 0, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "20.11.2025", + }, + }, + { + date: "20.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5YjMtQnL5EWL25COz0yZuUWYtMmbp5SZx0ycvBnLh1SdlZmLw4SMx4iMucjMuQjMz0CdzVmclRnbphSI", + value: "!(interest-324.27.2.11.0.feu-a.pos-1e.inc-ae.g-38.v-a9.t-269)!", + result: { + word: "interest", + correct: 27, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "20.11.2025", + }, + }, + { + date: "20.11.2025", + nick: "User", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkjNy4SZ2IjLmdDNtQnbp5yNwETLyVGduMGOtU3bm5SN30SYodnLx4iMx4CNuIzMuQjMz0CdzVmclRnbphSI", + value: "!(interest-324.32.4.12.1.wha-75.fou-8c.ter-107.int-47f.26e.269)!", + result: { + word: "interest", + correct: 32, + position: 4, + incorrect: 12, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 48, + date: "20.11.2025", + }, + }, + { + date: "20.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSO2ITL05iM50iduATMt4mbp5CNkZTLoN2MugDNt4Wdk5iZwQTLyVGcuQjMt8mcl5iM20SbhdmLw4yMx4iMucjMuQjMz0CdzVmclRnbphSI", + value: + "!(interest-324.27.2.13.0.gam-62.ero-24.per-40f.dun-48.3ch-6d4.inn-10.v-92.t-269)!", + result: { + word: "interest", + correct: 27, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 42, + date: "20.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/tak-szybko-chyba-jeszcze-nie-zrobilem-slightly-smiling-face-14-07-2025-diffle-di" +] = [ + { + date: "14.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKx0ybp5iN40SYlJnLw4SNuEjL34SN5ETL09WayhSI", + value: "!(riot-195.7.1.5.0.rea-86.io-1)!", + result: { + word: "riot", + correct: 7, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "14.07.2025", + }, + }, + { + date: "14.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpETLvlmLjZTLv9mL1UTLzVncuIjNt0WYn5CMucjLw4CMx4SN5ETL09WayhSI", + value: "!(riot-195.10.0.7.0.gam-62.rus-55.oo-6c.io-1)!", + result: { + word: "riot", + correct: 10, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 17, + date: "14.07.2025", + }, + }, + { + date: "14.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMt8Way5iN1YTLoN2MucTLv9mcuQTMtU3bi5iZl1CbwNnLxITLlh2YuAjL1EjLx4iMx4SN5ETL09WayhSI", + value: "!(riot-195.12.1.15.0.che-21.spl-ef.bou-14.roo-7.3ch-656.rio-1)!", + result: { + word: "riot", + correct: 12, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 28, + date: "14.07.2025", + }, + }, + { + date: "14.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMt8mLkJTLm5iYx0ycuQWNtcWay5SYmRTLvJHcuAjLzEjLw4CNx4SN5ETL09WayhSI", + value: "!(riot-195.14.0.13.0.pro-4fa.rig-5d.s-1b.f-2d.o-1)!", + result: { + word: "riot", + correct: 14, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "14.07.2025", + }, + }, + { + date: "14.07.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMt8Way5iMh1ybyBnLw4yNuEjL34SN5ETL09WayhSI", + value: "!(riot-195.7.1.7.0.pro-a2.rio-1)!", + result: { + word: "riot", + correct: 7, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 15, + date: "14.07.2025", + }, + }, + { + date: "14.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMt8Way5iMz0yc1FmLw4iNuAjL34SN5ETL09WayhSI", + value: "!(riot-195.7.0.6.0.aus-32.rio-1)!", + result: { + word: "riot", + correct: 7, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "14.07.2025", + }, + }, + { + date: "14.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMt8Way5CO50CcvNmLw4SOuEjL34SN5ETL09WayhSI", + value: "!(riot-195.7.1.9.0.cop-98.rio-1)!", + result: { + word: "riot", + correct: 7, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "14.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/taki-piekny-strzal-dawno-mi-nie-wszedl-slightly-smiling-face-17-10-2025-diffle-d" +] = [ + { + date: "17.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCO30ibh1mL2gTLhVmcuAjL14SMuETMuATOy0ibpJXYk5WYthSI", + value: "!(mandarin-290.11.1.5.0.rea-86.man-78)!", + result: { + word: "mandarin", + correct: 11, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "17.10.2025", + }, + }, + { + date: "17.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgzNt4mLlNWLy5iM40Cbh1mLjZTLv9mYuQWOt0mch5SZx0SZyNmLw4yMx4yMuUjMuATOy0ibpJXYk5WYthSI", + value: "!(mandarin-290.25.3.13.0.cre-1e.arm-9d.boo-6c.mal-82.r-ce.n-78)!", + result: { + word: "mandarin", + correct: 25, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 41, + date: "17.10.2025", + }, + }, + { + date: "17.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCO30ibh1mL1MTLyFGZuMTLpFmcuYTLjhXZuAjL34yMucTMuATOy0ibpJXYk5WYthSI", + value: "!(mandarin-290.17.3.7.0.exc-6.rai-3.dar-35.man-78)!", + result: { + word: "mandarin", + correct: 17, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "17.10.2025", + }, + }, + { + date: "17.10.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4cjLkNWLuFWbuYzNtEWbh5SMtYWYz5CO50CcvNmLw4iMx4iMuYjMuATOy0ibpJXYk5WYthSI", + value: "!(mandarin-290.26.2.12.0.cop-98.saf-1.ama-76.man-cd.78)!", + result: { + word: "mandarin", + correct: 26, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 40, + date: "17.10.2025", + }, + }, + { + date: "17.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCO30ibukTOy0ich1mLyEWLvJHcuAjL44iMuYTMuATOy0ibpJXYk5WYthSI", + value: "!(mandarin-290.16.2.8.0.pro-a2.mar-299.n-78)!", + result: { + word: "mandarin", + correct: 16, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "17.10.2025", + }, + }, + { + date: "17.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCO30ibh5CN40ibv1mLmVTLtFGZuEWL1VmZuAjL44yMukTMuATOy0ibpJXYk5WYthSI", + value: "!(mandarin-290.19.3.8.0.feu-a.dam-5f.mon-84.an-78)!", + result: { + word: "mandarin", + correct: 19, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "17.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/takie-proste-ze-az-trudne-17-11-2025-diffle-diffleen-grywebowe-30-letters-in-6-w" +] = [ + { + date: "17.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5MWLyVmduQWYtIXZm5iY00Cb1JmLhFGNtIXZw5iY30iclhmL2gTLhVmcuAjL3EjLx4iMx4SMyMTL5JXZ2hSI", + value: "!(very-321.12.1.17.0.rea-86.her-7b.per-4aa.bul-4b.fer-ad.ver-c9)!", + result: { + word: "very", + correct: 12, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "17.11.2025", + }, + }, + { + date: "17.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5MWLyVmduMWMtIXZq5CZh1iclZmLyETLzFGbuYWMtAXaw5CZ3MTLk5WduEjL5EjLw4iNx4SMyMTL5JXZ2hSI", + value: "!(very-321.16.0.19.1.und-37d.pip-1f.las-12.fer-ad.jer-1c.ver-c9)!", + result: { + word: "very", + correct: 16, + position: 0, + incorrect: 19, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 35, + date: "17.11.2025", + }, + }, + { + date: "17.11.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOj1iclZnLlZmNtIXZw5iZx0CZv1mL3UWLhx2cuAjL0EjLx4CMx4SMyMTL5JXZ2hSI", + value: "!(very-321.10.1.14.0.sla-e7.mod-1f.per-6fe.ver-c9)!", + result: { + word: "very", + correct: 10, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "17.11.2025", + }, + }, + { + date: "17.11.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5MWLyVmduUTMx0CblRmL0UWLyVmYuUWMtUmcj5CMukjLx4yMx4SMyMTL5JXZ2hSI", + value: "!(very-321.13.1.9.0.cre-1e.ber-e4.del-115.ver-c9)!", + result: { + word: "very", + correct: 13, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "17.11.2025", + }, + }, + { + date: "17.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOj1iclZnL20yY4VmLw4yNuAjL24SMyMTL5JXZ2hSI", + value: "!(very-321.6.0.7.0.exc-6.ver-c9)!", + result: { + word: "very", + correct: 6, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "17.11.2025", + }, + }, + { + date: "17.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOj1iclZnLkFWLyVmZugTOtA3bj5CMuITMuIjL44SMyMTL5JXZ2hSI", + value: "!(very-321.8.2.12.0.cop-98.fer-ad.ver-c9)!", + result: { + word: "very", + correct: 8, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "17.11.2025", + }, + }, + { + date: "17.11.2025", + nick: "User", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkzYtIXZ25SN30SYodnLw4SNuAjL34SMyMTL5JXZ2hSI", + value: "!(very-321.7.0.5.0.wha-75.ver-c9)!", + result: { + word: "very", + correct: 7, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 12, + date: "17.11.2025", + }, + }, + { + date: "17.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5MWLyVmduITLyVWeuMzMx0iclRmLzATMtIXZw5iMi1SZodnL3IjMtg2Yz4CNy0ybyVmLyYTLtF2ZuAjL2EjLx4COx4SMyMTL5JXZ2hSI", + value: + "!(very-321.18.1.16.0.gam-62.ero-24.3ch-227.whe-b2.per-103.der-133.yer-2.ver-c9)!", + result: { + word: "very", + correct: 18, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 35, + date: "17.11.2025", + }, + }, + { + date: "17.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOj1icuU2Mt4WZ25SYzETLw92YuEWL1VmZuAjL1EjLw4CMx4SMyMTL5JXZ2hSI", + value: "!(very-321.10.0.15.0.feu-a.cop-13a.ven-3e.r-c9)!", + result: { + word: "very", + correct: 10, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "17.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/takie-proste-ze-az-trudne-30-08-2025-diffle-diffleen-grywebowe-31-letters-in-7-w" +] = [ + { + date: "30.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM10CbvRmL5QGNugTZ14iNlNTLoN2MuUTNtU3bk5iZx0CZvJmL2gTLhVmcuAjL4EjLx4iMx4iM0ITLsx2bkhSI", + value: "!(doll-242.12.1.18.0.rea-86.bod-1f.dou-55.3ch-3e6.5e8.4d9.dol-53)!", + result: { + word: "doll", + correct: 12, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 31, + date: "30.08.2025", + }, + }, + { + date: "30.08.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzUTLs9GZuIjM10CajNjL30CavtmLlhTNuETZ20CajNjLm1SdvZmLyEWLvJHcuAjL2EjLx4SNx4iM0ITLsx2bkhSI", + value: + "!(doll-242.15.1.16.0.pro-a2.fou-f.3ch-6e1.58e.koh-7.3ch-522.dol-53)!", + result: { + word: "doll", + correct: 15, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 32, + date: "30.08.2025", + }, + }, + { + date: "30.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpMTNtw2bk5SOjFTLoN2MuU2Mt42bk5yNj1ybvdnL0ImMtg2Yz4yNtk2bi5SO10SdvZmL1ETLlh2YuEjL0IjLw4CNx4iM0ITLsx2bkhSI", + value: + "!(doll-242.14.0.24.1.che-15.fou-59.boi-7.3ch-2b4.woo-c7.don-3e.3ch-1c9.dol-53)!", + result: { + word: "doll", + correct: 14, + position: 0, + incorrect: 24, + knownIncorrect: 1, + totalWords: 8, + totalLetters: 38, + date: "30.08.2025", + }, + }, + { + date: "30.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM10CbvRmL4QTLs9mYuY2Ntw2bm5SYx0ycvxmLyYTLtF2ZuAjLwEjLx4SMx4iM0ITLsx2bkhSI", + value: "!(doll-242.11.1.10.0.gam-62.los-1a.fol-7f.bol-48.dol-53)!", + result: { + word: "doll", + correct: 11, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 22, + date: "30.08.2025", + }, + }, + { + date: "30.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzUTLs9GZuYGO00CbvBnL0UTMt8Gaz5iNtMGel5CMuITMuAjL54iM0ITLsx2bkhSI", + value: "!(doll-242.9.0.12.0.exc-6.sho-154.pol-48f.dol-53)!", + result: { + word: "doll", + correct: 9, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "30.08.2025", + }, + }, + { + date: "30.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyM10CbvRmLh1SdlZmLw4yNuAjL24iM0ITLsx2bkhSI", + value: "!(doll-242.6.0.7.0.feu-a.dol-53)!", + result: { + word: "doll", + correct: 6, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "30.08.2025", + }, + }, + { + date: "30.08.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKzUTLs9GZuYGO00CbvBnLiNTLs9GduQTYx0yboNnLlFTLlJ3YuAjLxEjLw4SMx4iM0ITLsx2bkhSI", + value: "!(doll-242.11.0.11.0.cre-1e.sho-1a4.tol-3b.pol-48f.dol-53)!", + result: { + word: "doll", + correct: 11, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 22, + date: "30.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/takie-se-17-08-2025-diffle-diffleen-grywebowe-32-letters-in-6-words-large-green-" +] = [ + { + date: "17.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTNx4iYk5SYk5SY00ych5CO50ibpBnL1ADNt02bj5CMuITMuAjLwIjL5IjMtknc0NXYwhSI", + value: "!(pastry-229.20.0.12.0.com-405.pin-98.as-4a.da.db.159)!", + result: { + word: "pastry", + correct: 20, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "17.08.2025", + }, + }, + { + date: "17.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSO1ETLzFGcuMTNx0ychJmLjJzMtEGdz5iN40SYlJnLw4SOuMjL1EjL5IjMtknc0NXYwhSI", + value: "!(pastry-229.15.3.9.0.rea-86.sta-32c.bas-153.pas-159)!", + result: { + word: "pastry", + correct: 15, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "17.08.2025", + }, + }, + { + date: "17.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5UTMtMXYw5CMk1yYhNnLwUmMtIXYi5iM20SbhdmLw4SNuIjLzEjL5IjMtknc0NXYwhSI", + value: "!(pastry-229.13.2.5.0.gam-62.bar-2e0.sac-d0.pas-159)!", + result: { + word: "pastry", + correct: 13, + position: 2, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "17.08.2025", + }, + }, + { + date: "17.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTNx4yYyEjLhRWLzFGcukzNtMXYj5SYtUXZm5CMuATMuAjL5EjL5IjMtknc0NXYwhSI", + value: "!(pastry-229.19.0.10.0.feu-a.cas-79.pas-da.12c.159)!", + result: { + word: "pastry", + correct: 19, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "17.08.2025", + }, + }, + { + date: "17.08.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5UTMtMnLmNmMt4WYw5COy0idh5mL4YWNtIXYuITYt8mcw5SMuATMuIjL5EjL5IjMtknc0NXYwhSI", + value: "!(pastry-229.19.2.10.1.pro-a2.ar-5f8.nav-28.pan-2cf.s-159)!", + result: { + word: "pastry", + correct: 19, + position: 2, + incorrect: 10, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 31, + date: "17.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/to-poszlo-migiem-26-11-2025-diffle-diffleen-grywebowe-18-letters-in-3-words-larg" +] = [ + { + date: "26.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZ10ychdnL0cjMtEGbw5iN40SYlJnLw4SOuEjL44CMzMTLwNXY3hSI", + value: "!(wasp-330.8.1.9.0.rea-86.pla-274.was-5e)!", + result: { + word: "wasp", + correct: 8, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "26.11.2025", + }, + }, + { + date: "26.11.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUWNtMXY35COi1SYwNnLiFWLslGcuMjMtQ3bt5CMucTMuIjL34CMzMTLwNXY3hSI", + value: "!(wasp-330.7.2.17.0.mot-23.pil-ab.spa-b8.was-5e)!", + result: { + word: "wasp", + correct: 7, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "26.11.2025", + }, + }, + { + date: "26.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUWNtMXY35SZxgTLoN2MuczMtMXYy5SO10ychdmLihTLoN2MuUzNtAXYz5SOlFTLsF2YuAjLzEjLx4COx4CMzMTLwNXY3hSI", + value: + "!(wasp-330.18.1.13.0.cal-1e9.sap-75.3ch-8b.gas-59.ras-37.3ch-81e.was-5e)!", + result: { + word: "wasp", + correct: 18, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 32, + date: "26.11.2025", + }, + }, + { + date: "26.11.2025", + nick: "Endrevoir", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUWNtMXY35iNmdTLoN2MuMWLrFWbuImMtI3bo5CMuITMuAjL54CMzMTLwNXY3hSI", + value: "!(wasp-330.9.0.12.0.hor-2b.mak-c.3ch-7f6.was-5e)!", + result: { + word: "wasp", + correct: 9, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "26.11.2025", + }, + }, + { + date: "26.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlVTLzF2duITOt8Gbw5SMy0SZoNmLw4SOuEjL34CMzMTLwNXY3hSI", + value: "!(wasp-330.7.1.9.0.che-21.plo-92.was-5e)!", + result: { + word: "wasp", + correct: 7, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "26.11.2025", + }, + }, + { + date: "26.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZ10ychdnL3MTLzFGcuYGNx0ychJmLiRTLuF2cuIjNt0WYn5CMukjLy4CMx4CMzMTLwNXY3hSI", + value: "!(wasp-330.10.2.9.0.gam-62.san-4b.bas-14f.pas-37.was-5e)!", + result: { + word: "wasp", + correct: 10, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 21, + date: "26.11.2025", + }, + }, + { + date: "26.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlVTLzF2dugTLhNXYuIWO00CajNjL4kTLw92YuAjLzEjLx4CMx4CMzMTLwNXY3hSI", + value: "!(wasp-330.10.1.13.0.cop-98.3ch-49b.asa-8.was-5e)!", + result: { + word: "wasp", + correct: 10, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "26.11.2025", + }, + }, + { + date: "26.11.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlVTLzF2ducTZtEGbz5CMuATMuEjL14CMzMTLwNXY3hSI", + value: "!(wasp-330.5.1.10.0.sla-e7.was-5e)!", + result: { + word: "wasp", + correct: 5, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "26.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/tradycyjna-pomylka-o-1-literke-w-prtzedostatnim-21-09-2025-diffle-diffleen-grywe" +] = [ + { + date: "21.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEDZtEWZk5iM20ichVmLiJTL1xGcuIDOtg2Yz4iN40SYlJnLw4SOuEjL3EjL0YjMtgGdyFWZkhSI", + value: "!(dearth-264.17.1.9.0.rea-86.3ch-82.plu-2b.ear-62.dea-d1)!", + result: { + word: "dearth", + correct: 17, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "21.09.2025", + }, + }, + { + date: "21.09.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMk1SYlRmL2ETMtEWZo5iM20ichVmL5kTL0VmcuMjMtQ3bt5CMuATMuQjLxIjL0YjMtgGdyFWZkhSI", + value: "!(dearth-264.21.4.10.0.mot-23.ret-99.ear-62.hea-116.dea-d1)!", + result: { + word: "dearth", + correct: 21, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "21.09.2025", + }, + }, + { + date: "21.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxQWLhVGZuIjNtIXYl5CO50CcvNmLw4COuMjLzEjL0YjMtgGdyFWZkhSI", + value: "!(dearth-264.13.3.8.0.cop-98.ear-62.dea-d1)!", + result: { + word: "dearth", + correct: 13, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "21.09.2025", + }, + }, + { + date: "21.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMk1SYlRmLw0CZhZnLz0CZhpmLkJTLhVGauITLlVmbuYmYtI3b35iM20ichVmLjRWLhVGauMTYtEWZw5iNtMGel5CMuYTMukjL4IjL0YjMtgGdyFWZkhSI", + value: + "!(dearth-264.28.9.16.0.exc-6.pea-a3.hea-dc.ear-62.wor-bf.nee-2.hea-2d.jad-3.vad-0.dea-d1)!", + result: { + word: "dearth", + correct: 28, + position: 9, + incorrect: 16, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 53, + date: "21.09.2025", + }, + }, + { + date: "21.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxQWLhVGZuYTMx0SYlhmLyYTLyFWZuYTZtIXYi5iM20SbhdmLw4CNuIjLwIjL0YjMtgGdyFWZkhSI", + value: "!(dearth-264.20.2.4.0.gam-62.bar-e6.ear-62.hea-116.dea-d1)!", + result: { + word: "dearth", + correct: 20, + position: 2, + incorrect: 4, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "21.09.2025", + }, + }, + { + date: "21.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEDZtEWZk5CZtoXYq5SNy0iYuQWLw5SZx0yZlRmL5YTMtwWZt5SMukTMuIjLxIjL0YjMtgGdyFWZkhSI", + value: "!(dearth-264.21.2.19.1.mel-169.deg-1e.p-d.b-25.jaz-d.dea-d1)!", + result: { + word: "dearth", + correct: 21, + position: 2, + incorrect: 19, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 42, + date: "21.09.2025", + }, + }, + { + date: "21.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMk1SYlRmLh1SZuVnLyYTLyFWZuEjZtEWZo5iMh1ybyBnLw4SOuIjLzIjL0YjMtgGdyFWZkhSI", + value: "!(dearth-264.23.2.9.0.pro-a2.hea-f1.ear-62.une-a.dea-d1)!", + result: { + word: "dearth", + correct: 23, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "21.09.2025", + }, + }, + { + date: "21.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSMk5SMi1SYuUzYtMWZk5CNy0CdlBnLh1SdlZmLw4SOuMjL5EjL0YjMtgGdyFWZkhSI", + value: "!(dearth-264.19.3.9.0.feu-a.pet-24.dec-c5.a-b1.d1)!", + result: { + word: "dearth", + correct: 19, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "21.09.2025", + }, + }, + { + date: "21.09.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEDZtEWZk5SYtUmb15iM20ichVmLhRWLhVGauQTNtIXYl5SZx0SZyNmLw4iNuIjL0IjL0YjMtgGdyFWZkhSI", + value: "!(dearth-264.24.2.6.0.cre-1e.ear-54.hea-da.ear-62.une-a.dea-d1)!", + result: { + word: "dearth", + correct: 24, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "21.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/tradycyjna-pomylka-o-1-literke-w-przedostatnim-11-10-2025-diffle-diffleen-gryweb" +] = [ + { + date: "11.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNt82bk5SNt82bw5SMtQ2bs5iN40SYlJnLw4COuIjL1EjL0gjMtUGbk92bkhSI", + value: "!(doodle-284.15.2.8.0.rea-86.lod-1.poo-5.doo-7)!", + result: { + word: "doodle", + correct: 15, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "11.10.2025", + }, + }, + { + date: "11.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkyNt82bk5CMx0CZ1BnLxQTLpxWZuUWMtUmcj5CMuATMuAjLzEjL0gjMtUGbk92bkhSI", + value: "!(doodle-284.13.0.10.0.cre-1e.eli-41.pud-10.doo-7)!", + result: { + word: "doodle", + correct: 13, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "11.10.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcjLjFTLv9GZuEWLz9GcuMjMtQ3bt5CMuUTMuIjL1EjL0gjMtUGbk92bkhSI", + value: "!(doodle-284.15.2.15.0.mot-23.pos-a.doo-1c.7)!", + result: { + word: "doodle", + correct: 15, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + }, + }, + { + date: "11.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcTLv9GZuQGNt82b35iNx0yZvRnL3QTLs9GcukTMtMXZs5iNtMGel5CMucTMuEjL4EjL0gjMtUGbk92bkhSI", + value: "!(doodle-284.18.1.17.0.exc-6.les-19.pol-47.tog-16.woo-4d.doo-7)!", + result: { + word: "doodle", + correct: 18, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "11.10.2025", + }, + }, + { + date: "11.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcTLv9GZugjMtw2bo5iMh1ybyBnLw4SOuAjLyEjL0gjMtUGbk92bkhSI", + value: "!(doodle-284.12.0.9.0.pro-a2.hol-28.doo-7)!", + result: { + word: "doodle", + correct: 12, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "11.10.2025", + }, + }, + { + date: "11.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcTLv9GZuUWM40CajNjLwETLk9GZuYWYx0CajNjLjNWL09WbukzNtw2bz5iZx0SZw9mL1IjMt8mci5CMuAjMuAjLzIjL0gjMtUGbk92bkhSI", + value: + "!(doodle-284.23.0.20.0.bro-225.ope-1f.sol-79.mot-cc.3ch-1af.dod-10.3ch-81e.doo-7)!", + result: { + word: "doodle", + correct: 23, + position: 0, + incorrect: 20, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 43, + date: "11.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/troche-na-farcie-a-troche-latwe-08-10-2025-diffle-diffleen-14-letters-in-3-wor-1" +] = [ + { + date: "08.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKldTLyFmZuQWOt0mch5SZx0SZyNmLw4CNuEjL54SM4ITLtJXYmhSI", + value: "!(farm-281.9.1.4.0.cre-1e.arm-9d.far-7e)!", + result: { + word: "farm", + correct: 9, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 14, + date: "08.10.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZ34iN50ichZmLzITL09WbuAjLyEjLx4CMx4SM4ITLtJXYmhSI", + value: "!(farm-281.10.1.12.0.mot-23.far-96.7e)!", + result: { + word: "farm", + correct: 10, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + }, + }, + { + date: "08.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpU2NtIXYm5iM1ETLhJ3ZuMTOtIXY35SMwETLyFGauMTMt8mch5SY3ETLyFGduYTLjhXZuAjL3EjLx4COx4SM4ITLtJXYmhSI", + value: + "!(farm-281.18.1.17.0.exc-6.tar-17a.aro-13.har-101.war-93.gra-152.far-7e)!", + result: { + word: "farm", + correct: 18, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 36, + date: "08.10.2025", + }, + }, + { + date: "08.10.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKldTLyFmLlFWLuVnZuQ2Ntg2Yz4SNm1SYydmLyEWLvJHcuAjLzEjLy4iMx4SM4ITLtJXYmhSI", + value: "!(farm-281.12.2.13.0.pro-a2.gra-f5.3ch-7d.fun-ae.ar-7e)!", + result: { + word: "farm", + correct: 12, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "08.10.2025", + }, + }, + { + date: "08.10.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKldTLyFmZuMTOtIXY35CZ30CajNjL4kTLw92YuAjLyEjLx4SMx4SM4ITLtJXYmhSI", + value: "!(farm-281.11.1.12.0.cop-98.3ch-7d.war-93.far-7e)!", + result: { + word: "farm", + correct: 11, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "08.10.2025", + }, + }, + { + date: "08.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKldTLy5SM00ibuYjNtMmL0MTLiFmZuAjLwEjLw4CMx4SM4ITLtJXYmhSI", + value: "!(farm-281.10.0.10.0.fab-34.c-66.n-41.r-7e)!", + result: { + word: "farm", + correct: 10, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "08.10.2025", + }, + }, + { + date: "08.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKldTLyFmZuQDZtEmcw5SYt0Wdy5SN50ybv1mLhJTLkV2cuAjLyEjLz4CMx4SM4ITLtJXYmhSI", + value: "!(farm-281.10.3.12.0.sed-2a.moo-95.rum-a.pra-d4.far-7e)!", + result: { + word: "farm", + correct: 10, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "08.10.2025", + }, + }, + { + date: "08.10.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKldTLyFmZuIjM00SYoNmLjNTLtJXYuIjNt0WYn5CMuUjLx4iMx4SM4ITLtJXYmhSI", + value: "!(farm-281.12.1.5.0.gam-62.arm-3c.cha-422.far-7e)!", + result: { + word: "farm", + correct: 12, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 18, + date: "08.10.2025", + }, + }, + { + date: "08.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpU2NtIXYm5iN40SYlJnLw4yNuEjL14SM4ITLtJXYmhSI", + value: "!(farm-281.5.1.7.0.rea-86.far-7e)!", + result: { + word: "farm", + correct: 5, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "08.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/trudne-bylem-na-granicy-poddania-nim-sobie-o-nim-przypomnialem-03-11-2025-diffle" +] = [ + { + date: "03.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1ITMtkGa35SNxgjL5QWLoN2MukTMtMXar5CZy0yYpNnLzMTMtkHaw5SZxMTLoN2MucTOtQWat5iMz0iZuVnLx4iMy4yMuIjMucDMz0yazlGa3hSI", + value: + "!(whisk-307.22.3.22.1.unf-32.mid-97.3ch-31e.phy-133.sic-2d.kis-19.3ch-d9.815.whi-125)!", + result: { + word: "whisk", + correct: 22, + position: 3, + incorrect: 22, + knownIncorrect: 1, + totalWords: 9, + totalLetters: 47, + date: "03.11.2025", + }, + }, + { + date: "03.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNyETLph2duI2MtUHbw5SZz0ycpZmL2gTLhVmcuAjL0EjLx4SOucDMz0yazlGa3hSI", + value: "!(whisk-307.9.1.14.0.rea-86.fis-3e.plu-3b.whi-125)!", + result: { + word: "whisk", + correct: 9, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "03.11.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNyEjL4MTMtkGa35SNtsWao5yMy0Cdv1mLw4CNx4CMuUTMucDMz0yazlGa3hSI", + value: "!(whisk-307.15.0.14.0.mot-23.hik-5.whi-138.125)!", + result: { + word: "whisk", + correct: 15, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + }, + }, + { + date: "03.11.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNyETLph2duMWMtgGc15iM20Cdv5mLlFTLlJ3YuAjL1EjLw4SOucDMz0yazlGa3hSI", + value: "!(whisk-307.9.0.15.0.cre-1e.not-62.uph-1c.whi-125)!", + result: { + word: "whisk", + correct: 9, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "03.11.2025", + }, + }, + { + date: "03.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUjMx0SaodnLlhTLph2cuATMtMXam5SZxETLwlGZuUmMx0Sa0NnL20yY4VmLw4iNx4yMuMTMucDMz0yazlGa3hSI", + value: + "!(whisk-307.13.3.16.0.exc-6.sti-12e.dip-11e.fis-10.shi-8e.whi-125)!", + result: { + word: "whisk", + correct: 13, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "03.11.2025", + }, + }, + { + date: "03.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK1ITMtkGa35CMx0ycpZmL3UWLph2cucTLsVHauAzMtQ3bu5iM20SbhdmLw4yMx4iMuITMucDMz0yazlGa3hSI", + value: "!(whisk-307.12.2.13.0.gam-62.not-30.hul-7.shi-e7.fis-10.whi-125)!", + result: { + word: "whisk", + correct: 12, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 27, + date: "03.11.2025", + }, + }, + { + date: "03.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSNyETLph2duUTMtMXay5CM50ycpBnLh1SdlZmLw4iMx4CMuITMucDMz0yazlGa3hSI", + value: "!(whisk-307.12.0.12.0.feu-a.pis-90.ris-15.whi-125)!", + result: { + word: "whisk", + correct: 12, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "03.11.2025", + }, + }, + { + date: "03.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUjMx4CZxETLph2duEWMtMXao5CO50CcvNmLw4yMx4SMuMTMucDMz0yazlGa3hSI", + value: "!(whisk-307.13.1.13.0.cop-98.his-1a.whi-11d.125)!", + result: { + word: "whisk", + correct: 13, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "03.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ujdzie-11-12-2025-diffle-diffleen-grywebowe-25-letters-in-3-words-large-green-ci" +] = [ + { + date: "11.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlhTLmVGZuIzMtUWam5SZyMTLyFGcuAjLxEjLx4yMx4SN0MTLlNnblZWZkhSI", + value: "!(defense-345.13.1.11.0.par-32e.fie-32.def-8e)!", + result: { + word: "defense", + correct: 13, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "11.12.2025", + }, + }, + { + date: "11.12.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUGOtYmLhVWLuVGZuM2MtUGbi5COwgTLoN2MuIzNx0iblBnL2gTLhVmcuAjL0EjLx4CMy4SN0MTLlNnblZWZkhSI", + value: + "!(defense-345.20.1.14.0.rea-86.pen-172.3ch-808.ble-3c.den-ea.f-8e)!", + result: { + word: "defense", + correct: 20, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "11.12.2025", + }, + }, + { + date: "11.12.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlhTLm5yNz0CcuQDMx0iblRmLh1SalJmLlFTLlJ3YuAjLxEjLw4yNx4SN0MTLlNnblZWZkhSI", + value: "!(defense-345.17.0.11.0.cre-1e.bei-a.den-104.p-37.f-8e)!", + result: { + word: "defense", + correct: 17, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "11.12.2025", + }, + }, + { + date: "11.12.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZ40iZlRmLlBTNtg2Yz4SY10CajJjLlZ2Ntg2Yz4CMtYWZq5COy0Sb1ZmL4kTLw92YuAjL2EjLx4SOx4SN0MTLlNnblZWZkhSI", + value: + "!(defense-345.19.1.16.0.cop-98.fum-28.jef-0.3ch-7fe.2ch-5a.3ch-50e.def-8e)!", + result: { + word: "defense", + correct: 19, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 36, + date: "11.12.2025", + }, + }, + { + date: "11.12.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlhTLm5SYl1iblRmL5QTMt4WZw5CN50ibl5iY4ITLvR3cuYTLjhXZuAjLzEjLw4yMy4SN0MTLlNnblZWZkhSI", + value: "!(defense-345.23.0.13.0.exc-6.sto-28b.en-94.pen-149.den-ea.f-8e)!", + result: { + word: "defense", + correct: 23, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "11.12.2025", + }, + }, + { + date: "11.12.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZ40iZlRmLxUTLuVmZuETMtMXZw5iY10Ca0VmLyYTLtF2ZuAjLxEjLw4SNx4SN0MTLlNnblZWZkhSI", + value: "!(defense-345.15.0.11.0.gam-62.eth-5b.pes-11.fen-51.def-8e)!", + result: { + word: "defense", + correct: 15, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "11.12.2025", + }, + }, + { + date: "11.12.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlhTLm5SYl1iblRmLz0ycv5mL3UWLhx2cuAjLwEjLx4yNx4SN0MTLlNnblZWZkhSI", + value: "!(defense-345.17.1.10.0.sla-e7.nos-3.den-ea.f-8e)!", + result: { + word: "defense", + correct: 17, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "11.12.2025", + }, + }, + { + date: "11.12.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpUGOtYWZk5SYtUXZm5CMuUjLx4CMx4SN0MTLlNnblZWZkhSI", + value: "!(defense-345.10.1.5.0.feu-a.def-8e)!", + result: { + word: "defense", + correct: 10, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 16, + date: "11.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ultra-proste-ale-tez-jedno-z-wielu-27-07-2025-diffle-diffleen-grywebowe-38-lette" +] = [ + { + date: "27.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKykzNt42bu5iYy0ibvdmLwETLu9GbuYjN10CajNjLkRTLu9mYucTOt42bt5iZhFTLvJHcuAjL2EjLw4iMy4COwITLl52buhSI", + value: + "!(none-208.22.0.16.0.pro-1af.mon-97.bon-4d.3ch-566.lon-10.gon-2b.non-792)!", + result: { + word: "none", + correct: 22, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 38, + date: "27.07.2025", + }, + }, + { + date: "27.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITO30ibv5mLk1ibvpnL2YTNugjNy4yYkFTLoN2MuQjNt8Gaw5CZ00ibvJmL2gTLhVmcuAjL2EjLx4COx4COwITLl52buhSI", + value: + "!(none-208.18.1.16.0.rea-86.bon-4d.pho-64.3ch-1dc.268.566.zon-d.non-792)!", + result: { + word: "none", + correct: 18, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 35, + date: "27.07.2025", + }, + }, + { + date: "27.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKykzNt4mL00CcuYTMtYnLm1ycv5mLxITLlh2YuAjLxEjLx4CNx4COwITLl52buhSI", + value: "!(none-208.14.1.11.0.che-21.nos-f.v-16.p-4.n-792)!", + result: { + word: "none", + correct: 14, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "27.07.2025", + }, + }, + { + date: "27.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITO30ibv5mLzITLu92duEjMt42bm5CZ00ibvJmLk1ibvpnLmJTL2VGZuETMtMXZw5iY10Ca0VmLyYTLtF2ZuAjLwIjLw4CMy4COwITLl52buhSI", + value: + "!(none-208.20.0.20.0.gam-62.eth-5b.pes-11.dev-2f.zon-d.bon-4d.fon-21.won-23.non-792)!", + result: { + word: "none", + correct: 20, + position: 0, + incorrect: 20, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 40, + date: "27.07.2025", + }, + }, + { + date: "27.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpITO30ibv5mLk1ibvpnL4ImMt42bj5iZt42bo5iYy0ibvdmLhJTLu9GZuQGNt42bi5iN2UTLoN2MuATMt42bs5iMx0SZvBnLyMTLzVXYuAjL3EjLw4SMz4COwITLl52buhSI", + value: + "!(none-208.31.0.17.0.aus-32.poe-12.lon-10.3ch-566.bon-4d.don-2a.gon-2b.hon-f.con-2b8.zon-d.non-792)!", + result: { + word: "none", + correct: 31, + position: 0, + incorrect: 17, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 48, + date: "27.07.2025", + }, + }, + { + date: "27.07.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKykzNt42bu5iMlJTLoN2MuITMtQmLz0ycv5mLyEWLvJHcuAjL0EjLw4iMx4COwITLl52buhSI", + value: "!(none-208.12.0.14.0.pro-a2.nos-3.d-12.3ch-2e2.non-792)!", + result: { + word: "none", + correct: 12, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "27.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/urocze-02-10-2025-diffle-diffleen-grywebowe-21-letters-in-3-words-large-green-ci" +] = [ + { + date: "02.10.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYTYtwmLwYTLiVGZuYDOtEWZy5CMucjLx4yMx4SN3ITL0h2ZpxWZkhSI", + value: "!(delight-275.13.1.7.0.rea-86.deb-60.l-a6)!", + result: { + word: "delight", + correct: 13, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "02.10.2025", + }, + }, + { + date: "02.10.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2EWLsVGZuIWLpxmYuUTMtcWaz5SNx0CdwVnLmFWLlJnZuYTMtcWal5CZhFTLph2duAjLyEjLy4yMz4SN3ITL0h2ZpxWZkhSI", + value: + "!(delight-275.33.2.12.0.whi-1ad.eig-16.fre-af.upt-15.sig-15.bli-b.del-a6)!", + result: { + word: "delight", + correct: 33, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 47, + date: "02.10.2025", + }, + }, + { + date: "02.10.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYTYtwWZk5COmNTLs9GcuUWMtUmcj5CMucjLx4SMx4SN3ITL0h2ZpxWZkhSI", + value: "!(delight-275.11.1.7.0.cre-1e.pol-3f8.del-a6)!", + result: { + word: "delight", + correct: 11, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "02.10.2025", + }, + }, + { + date: "02.10.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNh5SNl5SMj5yNwETLsVGZuATZx0ybwNnLxcTLsVGZuYTLjhXZuAjL0EjLw4CMz4SN3ITL0h2ZpxWZkhSI", + value: "!(delight-275.30.0.14.0.exc-6.del-71.spo-1e0.del-107.c1.e5.a6)!", + result: { + word: "delight", + correct: 30, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 44, + date: "02.10.2025", + }, + }, + { + date: "02.10.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK2EmL3ATMuIWOuEzNtwWZk5SYtUXZm5CMuYjLx4CNy4SN3ITL0h2ZpxWZkhSI", + value: "!(delight-275.24.1.6.0.feu-a.del-71.9b.107.a6)!", + result: { + word: "delight", + correct: 24, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "02.10.2025", + }, + }, + { + date: "02.10.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiNh1CblRmL0ETLlxWZuIjNt0WYn5CMuYjLy4iMx4SN3ITL0h2ZpxWZkhSI", + value: "!(delight-275.12.2.6.0.gam-62.ele-14.del-a6)!", + result: { + word: "delight", + correct: 12, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "02.10.2025", + }, + }, + { + date: "02.10.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYTYtwWZk5SZx0CbuVmL4kTLw92YuAjLwEjLy4yNx4SN3ITL0h2ZpxWZkhSI", + value: "!(delight-275.17.2.10.0.cop-98.enl-1e.del-a6)!", + result: { + word: "delight", + correct: 17, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 29, + date: "02.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/uwaga-podpowiedz-zlosliwa-ale-nie-moge-sie-powstrzymac-brzmi-ona-doctor-wink-12-" +] = [ + { + date: "12.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlNWMtUGbl5SYx0iblxmLiNTL1x2YuEDNtQWa35iN40CdhJmLw4yMx4CMukTMuUTNy0Ca05WZ2VGblhSI", + value: "!(eleventh-255.19.0.13.0.bat-86.wid-41.clu-3b.len-1a.ele-1ce)!", + result: { + word: "eleventh", + correct: 19, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "12.09.2025", + }, + }, + { + date: "12.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlNWMtUGbl5iY10iblxmLzQTLldHduQTM10CajNjL2gTLhVmcuAjL54iMukTMuUTNy0Ca05WZ2VGblhSI", + value: "!(eleventh-255.19.2.9.0.rea-86.3ch-514.twe-43.len-5b.ele-1ce)!", + result: { + word: "eleventh", + correct: 19, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "12.09.2025", + }, + }, + { + date: "12.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpU2Yx0SZs5SN30Ca05CNtcGZl5yYz0ybsBnL20yY4VmLw4CNx4SMucTMuUTNy0Ca05WZ2VGblhSI", + value: "!(eleventh-255.17.1.14.0.exc-6.plo-3c.edg-4.th-75.le-1ce)!", + result: { + word: "eleventh", + correct: 17, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "12.09.2025", + }, + }, + { + date: "12.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZjFTLlxWZuAjNt4WZs5SM20ib1JmL0QTLvx2cuIWNtgGdl5iM20SbhdmLw4iMx4CMukTMuUTNy0Ca05WZ2VGblhSI", + value: + "!(eleventh-255.19.0.12.0.gam-62.eth-5b.slo-44.bun-61.len-60.ele-1ce)!", + result: { + word: "eleventh", + correct: 19, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "12.09.2025", + }, + }, + { + date: "12.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpU2Yx4COjFTLlxWZugDMy0CajNjL2QTLu9GcugTNx0CblJmLh1SdlZmLw4iMx4CMuIjMuUTNy0Ca05WZ2VGblhSI", + value: + "!(eleventh-255.22.0.12.0.feu-a.bel-158.pon-46.3ch-208.ele-1c8.1ce)!", + result: { + word: "eleventh", + correct: 22, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "12.09.2025", + }, + }, + { + date: "12.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKlNWMtUGbl5SYx0iblxmLyEWLvJHcuAjL54CMuYTMuUTNy0Ca05WZ2VGblhSI", + value: "!(eleventh-255.16.0.9.0.pro-a2.len-1a.ele-1ce)!", + result: { + word: "eleventh", + correct: 16, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "12.09.2025", + }, + }, + { + date: "12.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSZjFjLjVTMtUGbl5iY00CblZmL2EWLsVGZuIDZtEWZs5SMz0SdvhmLw4SMx4yMuYjMuUTNy0Ca05WZ2VGblhSI", + value: "!(eleventh-255.26.3.11.0.hou-31.lea-d2.del-a6.fel-4b.ele-15c.1ce)!", + result: { + word: "eleventh", + correct: 26, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "12.09.2025", + }, + }, + { + date: "12.09.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpU2Yx0SZucTL25SM00Sas5COy0ybwVmLlFTLlJ3YuAjL54SMugTMuUTNy0Ca05WZ2VGblhSI", + value: "!(eleventh-255.18.1.9.0.cre-1e.epo-28.li-41.v-7.e-1ce)!", + result: { + word: "eleventh", + correct: 18, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "12.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/w-polskim-slabo-ale-w-angielskim-piekny-strzal-slightly-smiling-face-06-09-2025-" +] = [ + { + date: "06.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNtIXY55iN40SYlJnLw4yNuEjL14SO0ITLkJXY5hSI", + value: "!(yard-249.5.1.7.0.rea-86.yar-4)!", + result: { + word: "yard", + correct: 5, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "06.09.2025", + }, + }, + { + date: "06.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNtIXY55SOx0ichZnLhdTMtIXYt5yYyMTLhR3cuYTLjhXZuAjLzEjLx4iMx4SO0ITLkJXY5hSI", + value: "!(yard-249.12.1.13.0.exc-6.sta-32c.mar-17a.var-19.yar-4)!", + result: { + word: "yard", + correct: 12, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "06.09.2025", + }, + }, + { + date: "06.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTLyFWeukTLh9mYuQ2MtIXZt5CMuITMuEjL54SO0ITLkJXY5hSI", + value: "!(yard-249.9.1.12.0.mer-3d.boa-9.yar-4)!", + result: { + word: "yard", + correct: 9, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "06.09.2025", + }, + }, + { + date: "06.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCNtIXY55yYx0ichxmL2ETLyF2duYGNtIXYu5CMj1ichJmLxIWMtIXYj5CN4MTLyFGcuUDNx0CdyFmLyYTLtF2ZuAjLxEjLw4iNy4SO0ITLkJXY5hSI", + value: + "!(yard-249.26.0.11.0.gam-62.art-145.par-384.car-1b1.bar-c0.nar-4f.war-16.lar-1c.yar-4)!", + result: { + word: "yard", + correct: 26, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 37, + date: "06.09.2025", + }, + }, + { + date: "06.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTLyFWeuE2MtEGZh5iNx0ichdnLxIWMtIXYj5iM00ichhmLzITLuFmYuATLh92ZuEWL1VmZuAjL3EjLx4CMy4SO0ITLkJXY5hSI", + value: + "!(yard-249.20.1.17.0.feu-a.goa-0.ban-23.har-42.car-1b1.war-16.ada-3a.yar-4)!", + result: { + word: "yard", + correct: 20, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 38, + date: "06.09.2025", + }, + }, + { + date: "06.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTLyFWeugTOtA3bj5CMuATMuEjL24SO0ITLkJXY5hSI", + value: "!(yard-249.6.1.10.0.cop-98.yar-4)!", + result: { + word: "yard", + correct: 6, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "06.09.2025", + }, + }, + { + date: "06.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK00ichlnL5ETLyFmduITYt8mcw5CMuATMuIjL34SO0ITLkJXY5hSI", + value: "!(yard-249.7.2.10.0.pro-a2.var-19.yar-4)!", + result: { + word: "yard", + correct: 7, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "06.09.2025", + }, + }, + { + date: "06.09.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQTLyFWeugDNtkXYk5SZx0SZyNmLw4iNuQjL34SO0ITLkJXY5hSI", + value: "!(yard-249.7.4.6.0.cre-1e.day-48.yar-4)!", + result: { + word: "yard", + correct: 7, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "06.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/w-przedostatnim-mialem-wszystko-co-trzeba-plug-nadmiarowe-litery-23-07-2025-diff" +] = [ + { + date: "23.07.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYiJjLwATNtAXduIzYtUGcz5yN2ITLuFWbuAjL44SMuQjMuQDMy0icvlmclBXdzhSI", + value: "!(superior-204.24.1.8.0.man-267.spe-c2.up-500.2bb)!", + result: { + word: "superior", + correct: 24, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "23.07.2025", + }, + }, + { + date: "23.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpImYy0Cc15SOm1iclNnL2gTLhVmcuAjL34yMuYTMuQDMy0icvlmclBXdzhSI", + value: "!(superior-204.16.3.7.0.rea-86.ser-f9.up-2bb)!", + result: { + word: "superior", + correct: 16, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "23.07.2025", + }, + }, + { + date: "23.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiJmMucTLwVnLxcTMtUGcuQ2MtU2duETNt0WZz5SMy0SZoNmLw4iMx4SMuMjMuQDMy0icvlmclBXdzhSI", + value: "!(superior-204.23.1.12.0.che-21.sem-51.we-3d.pe-171.up-7.2bb)!", + result: { + word: "superior", + correct: 23, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "23.07.2025", + }, + }, + { + date: "23.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiJmMtAXdz5CZyETL1xGcuMTNx0iblRnLyYTLtF2ZuAjL34yMuQTMuQDMy0icvlmclBXdzhSI", + value: "!(superior-204.14.3.7.0.gam-62.ten-153.plu-12d.sup-2bb)!", + result: { + word: "superior", + correct: 14, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "23.07.2025", + }, + }, + { + date: "23.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYiJTLwVnL2kTL1R3cuAjL24CMuETMuQDMy0icvlmclBXdzhSI", + value: "!(superior-204.11.0.6.0.stu-96.up-2bb)!", + result: { + word: "superior", + correct: 11, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "23.07.2025", + }, + }, + { + date: "23.07.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKiJmMuMzM10Cc1NnLyEWLvJHcuAjL54iMucTMuQDMy0icvlmclBXdzhSI", + value: "!(superior-204.17.2.9.0.pro-a2.sup-533.2bb)!", + result: { + word: "superior", + correct: 17, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "23.07.2025", + }, + }, + { + date: "23.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpImYy0Cc1NnLyMTLzVXYuAjL04SMuITMuQDMy0icvlmclBXdzhSI", + value: "!(superior-204.12.1.4.0.aus-32.sup-2bb)!", + result: { + word: "superior", + correct: 12, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "23.07.2025", + }, + }, + { + date: "23.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYiJTLwV3cuYWZy0iclBnL4kTLw92YuAjL54iMuYTMuQDMy0icvlmclBXdzhSI", + value: "!(superior-204.16.2.9.0.cop-98.per-2ef.sup-2bb)!", + result: { + word: "superior", + correct: 16, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "23.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/w-sumie-latwe-13-09-2025-diffle-diffleen-22-letters-in-3-words-large-green-circl" +] = [ + { + date: "13.09.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmF2MtAXbp5yYxETLpJnYuUWMtUmcj5CMucjLy4yMx4iN1ITLlZ3byBXbphSI", + value: "!(improve-256.13.2.7.0.cre-1e.bri-11c.imp-3af)!", + result: { + word: "improve", + correct: 13, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "13.09.2025", + }, + }, + { + date: "13.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZhNTLw1WauMGZi5yMzMTLv5CNwMTLlJHcuAjLxEjL04SOx4iN1ITLlZ3byBXbphSI", + value: "!(improve-256.19.4.11.0.pre-304.o-333.bdc.imp-3af)!", + result: { + word: "improve", + correct: 19, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "13.09.2025", + }, + }, + { + date: "13.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYWYz4CO5MTLw1WauIDZtg2Yz4CO00icpdmLk1Say9mL2gTLhVmcuAjLxEjL04SMy4iN1ITLlZ3byBXbphSI", + value: "!(improve-256.21.4.11.0.rea-86.ori-d.gir-48.3ch-d2.imp-398.3af)!", + result: { + word: "improve", + correct: 21, + position: 4, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "13.09.2025", + }, + }, + { + date: "13.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZhNTLw1WauATOt8mcw5SO20CctVmLjRWNtg2Yz4CMk1SdsBnL0UTMt8Gaz5CZ30icv1mLyYTLtF2ZuAjLxEjLz4SNy4iN1ITLlZ3byBXbphSI", + value: + "!(improve-256.25.3.11.0.gam-62.mor-7d.sho-154.plu-d0.3ch-5dc.emp-69.pro-90.imp-3af)!", + result: { + word: "improve", + correct: 25, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 39, + date: "13.09.2025", + }, + }, + { + date: "13.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYWYz4CO5MTLw1mLlJWMtYmbp5SMzYTLzlWbuYTLylGZuYTLjhXZuEjL1EjL14yMy4iN1ITLlZ3byBXbphSI", + value: "!(improve-256.23.5.15.1.exc-6.dir-6.mis-631.inf-1be.mp-398.3af)!", + result: { + word: "improve", + correct: 23, + position: 5, + incorrect: 15, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 43, + date: "13.09.2025", + }, + }, + { + date: "13.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZhNjL1ATMtAXbp5iN30CctVmL4MGNuQTN20CajNjLllTLph2duMWM10CajNjL5YTLllGcuEWL1VmZuAjL0EjL34SNy4iN1ITLlZ3byBXbphSI", + value: + "!(improve-256.25.7.14.0.feu-a.pie-69.3ch-51c.whi-9e.3ch-654.4c8.emp-76.imp-105.3af)!", + result: { + word: "improve", + correct: 25, + position: 7, + incorrect: 14, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 46, + date: "13.09.2025", + }, + }, + { + date: "13.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZhNjL4M2MtAXbp5SO10SavBnL4kTLw92YuAjLwEjL04CMy4iN1ITLlZ3byBXbphSI", + value: "!(improve-256.20.4.10.0.cop-98.poi-59.imp-3c8.3af)!", + result: { + word: "improve", + correct: 20, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "13.09.2025", + }, + }, + { + date: "13.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpYWYz0CctlmLzITNuITYt8mcw5CMuYjL04SNx4iN1ITLlZ3byBXbphSI", + value: "!(improve-256.15.4.6.0.pro-a2.523.imp-3af)!", + result: { + word: "improve", + correct: 15, + position: 4, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "13.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/w-sumie-proste-11-07-2025-diffle-diffleen-grywebowe-24-letters-in-4-words-large-" +] = [ + { + date: "11.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhZWLuFGauQTLuVHbugjYtIXY35iN40SYlJnLw4SOuIjLzEjLykTMtIXYn5WYohSI", + value: "!(hangar-192.13.2.9.0.rea-86.war-b8.lun-4.han-fa)!", + result: { + word: "hangar", + correct: 13, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "11.07.2025", + }, + }, + { + date: "11.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYm1ibhhmLh1yZh5mL3ETLul2dugTMtU3bj5iM20SbhdmLw4SOuEjL3EjLykTMtIXYn5WYohSI", + value: "!(hangar-192.17.1.9.0.gam-62.cou-18.win-17.nag-a.han-fa)!", + result: { + word: "hangar", + correct: 17, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "11.07.2025", + }, + }, + { + date: "11.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEmZuYjZt4WYuYjNtw2buMTLtVHauEjZtkHaw5CMuMTMuAjL5EjLykTMtIXYn5WYohSI", + value: "!(hangar-192.19.0.13.0.phy-f1.hum-3.ol-66.an-f6.fa)!", + result: { + word: "hangar", + correct: 19, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "11.07.2025", + }, + }, + { + date: "11.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhZWLuFGauATNt4Wds5SMy0SZoNmLw4yNuAjLyEjLykTMtIXYn5WYohSI", + value: "!(hangar-192.12.0.7.0.che-21.lun-50.han-fa)!", + result: { + word: "hangar", + correct: 12, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "11.07.2025", + }, + }, + { + date: "11.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYm1ibhhmL4kTLw92YuAjL54iMugjLykTMtIXYn5WYohSI", + value: "!(hangar-192.8.2.9.0.cop-98.han-fa)!", + result: { + word: "hangar", + correct: 8, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "11.07.2025", + }, + }, + { + date: "11.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYm1ibhhmLmVWMtEmcn5CN0ITLoN2MuATYx0SYjNnLmNTLpFGcuMDNtEmbl5CMuQTMuIjL3EjLykTMtIXYn5WYohSI", + value: + "!(hangar-192.17.2.14.0.ena-43.pai-3f.sca-1a0.3ch-244.gra-1ef.han-fa)!", + result: { + word: "hangar", + correct: 17, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "11.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/wredne-myslalem-ze-to-sie-inaczej-pisze-28-07-2025-diffle-diffleen-grywebowe-34-" +] = [ + { + date: "28.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYz0SY35yNi1SYo5SNx0SdxNnLhVmNtg2Yz4SMj1CbhNnL2gTLhVmcuAjLzEjLy4SOx4SOwITLpxWaoF2dzhSI", + value: "!(swahili-209.19.2.13.0.rea-86.sal-c1.3ch-6ea.squ-15.ha-b7.wa-3a)!", + result: { + word: "swahili", + correct: 19, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "28.07.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYz0SY35CM50ibh5yNl1SaoNnLzITL09WbuAjL1EjLw4iNx4SOwITLpxWaoF2dzhSI", + value: "!(swahili-209.16.0.15.0.mot-23.shi-e7.an-90.wa-3a)!", + result: { + word: "swahili", + correct: 16, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + }, + }, + { + date: "28.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhNTLhdnLxETLh1mL3UWLph2cuEjMtUGaj5CMugjLx4SNx4SOwITLpxWaoF2dzhSI", + value: "!(swahili-209.15.1.8.0.che-21.shi-e7.ma-11.wa-3a)!", + result: { + word: "swahili", + correct: 15, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "28.07.2025", + }, + }, + { + date: "28.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKhNTLhdnLxcTLph2cukDZz0CajNjLwIWLsl2cuIWMtMXay5SNkJTLjVGZuEjL3EjLx4SOx4SOwITLpxWaoF2dzhSI", + value: + "!(swahili-209.19.1.17.1.dec-2d5.ris-1b.sil-b0.3ch-3d9.shi-71.wa-3a)!", + result: { + word: "swahili", + correct: 19, + position: 1, + incorrect: 17, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 37, + date: "28.07.2025", + }, + }, + { + date: "28.07.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpE2MtE2dz5SN4ITLhVXcuIjZ34iYjNTLoN2MuAjNtwWY25yM10SasFmLyEWLvJHcuAjL2EjLz4CMy4SOwITLpxWaoF2dzhSI", + value: + "!(swahili-209.20.3.16.0.pro-a2.ali-53.val-60.3ch-3cb.7f2.qua-285.swa-3a)!", + result: { + word: "swahili", + correct: 20, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "28.07.2025", + }, + }, + { + date: "28.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSYz0SYuQWMtk2dz5iNiZTLoN2MucTLs92dukTMtEGauIGNt4WYz5SYk1ychBnLyYTLtF2ZuAjL0EjLy4SMy4SOwITLpxWaoF2dzhSI", + value: + "!(swahili-209.21.2.14.0.gam-62.pas-da.san-4b.ha-19.wol-7.3ch-6b6.swi-1d.a-3a)!", + result: { + word: "swahili", + correct: 21, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 37, + date: "28.07.2025", + }, + }, + { + date: "28.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpE2MtE2dugTOy0SYo5CM4ETLhNmL00SahNnLyMTLzVXYuAjLxEjLz4COx4SOwITLpxWaoF2dzhSI", + value: "!(swahili-209.18.3.11.0.aus-32.sai-4.ca-180.ha-298.wa-3a)!", + result: { + word: "swahili", + correct: 18, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "28.07.2025", + }, + }, + { + date: "28.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpE2MtE2dz5CM10ibuFmL4kTLw92YuAjLxEjLz4yMx4SOwITLpxWaoF2dzhSI", + value: "!(swahili-209.13.3.11.0.cop-98.ann-50.swa-3a)!", + result: { + word: "swahili", + correct: 13, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "28.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/wyboista-droga-do-celu-23-11-2025-diffle-diffleen-grywebowe-34-letters-in-6-word" +] = [ + { + date: "23.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOz0CduEDNtQWa35SO1QTLoN2MukjMtUHa05iM20icpRmL2gTLhVmcuAjL54SNuAjMucjMz0ydhJHZoRXa3hSI", + value: "!(withdraw-327.20.5.9.0.rea-86.dir-62.thu-29.3ch-459.wid-41.t-38)!", + result: { + word: "withdraw", + correct: 20, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "23.11.2025", + }, + }, + { + date: "23.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOz4iZy0CdpdnL0EDOuIGZuUTM04yM2ITLoN2MukjNtQXaw5SMx0ib1RnL3ITMtEmcuMmYtEWak5CNk1yYjFmLx4yNx4yMuQzMucjMz0ydhJHZoRXa3hSI", + value: + "!(withdraw-327.34.3.17.1.acc-d4.dia-bc.ra-127.tun-11.pit-69.3ch-263.415.db.814.wit-2f.38)!", + result: { + word: "withdraw", + correct: 34, + position: 3, + incorrect: 17, + knownIncorrect: 1, + totalWords: 11, + totalLetters: 54, + date: "23.11.2025", + }, + }, + { + date: "23.11.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4MTL0l2duETNt0GZh5iM3ETL0hXZuAjL54CNuMTMucjMz0ydhJHZoRXa3hSI", + value: "!(withdraw-327.13.4.9.0.ext-172.adm-51.wit-38)!", + result: { + word: "withdraw", + correct: 13, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "23.11.2025", + }, + }, + { + date: "23.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOz0Cdp5SM00SYydnLyIDNtEGaj5SM3ETLy9GcukTYy0CZulmLw4iMx4CNugTMucjMz0ydhJHZoRXa3hSI", + value: "!(withdraw-327.18.4.12.0.ind-2a9.por-171.cha-422.wra-41.it-38)!", + result: { + word: "withdraw", + correct: 18, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "23.11.2025", + }, + }, + { + date: "23.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgzMtQXauEmMx0icvdnLlBTMtwWam5CM50yY1NnLjJTNtEmc05SYiJTLhJnYuMGOt4WYy5iM20SbhdmLw4yMx4yMuMjMucjMz0ydhJHZoRXa3hSI", + value: + "!(withdraw-327.23.3.13.0.gam-62.ran-8c.bra-2ba.tra-52c.suc-90.fil-10e.wor-12a.it-38)!", + result: { + word: "withdraw", + correct: 23, + position: 3, + incorrect: 13, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 39, + date: "23.11.2025", + }, + }, + { + date: "23.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOz0CdpdnL4kTLw92YuAjL44iMuETMucjMz0ydhJHZoRXa3hSI", + value: "!(withdraw-327.11.2.8.0.cop-98.wit-38)!", + result: { + word: "withdraw", + correct: 11, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 21, + date: "23.11.2025", + }, + }, + { + date: "23.11.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpgzMtQXauYTMtIXY35CNx0CdpBnL3UWLhx2cuAjL54SNuUTMucjMz0ydhJHZoRXa3hSI", + value: "!(withdraw-327.15.5.9.0.sla-e7.pit-14.war-16.it-38)!", + result: { + word: "withdraw", + correct: 15, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "23.11.2025", + }, + }, + { + date: "23.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK4MTL0l2duQTM44iYk1CajNjLx0CZhJnLjNWNtg2Yz4yNi1CajJjLmZWMtEWak5iY40icvRnLh1SdlZmLw4yMx4iNuUjMucjMz0ydhJHZoRXa3hSI", + value: + "!(withdraw-327.25.6.13.0.feu-a.tor-8b.dia-1ff.2ch-b7.3ch-5cc.rad-1.3ch-db.814.wit-38)!", + result: { + word: "withdraw", + correct: 25, + position: 6, + incorrect: 13, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 44, + date: "23.11.2025", + }, + }, + { + date: "23.11.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCOz0CdpdnLkhjMtEmc05CO00CchJnLlFTLlJ3YuAjL54SMuUTMucjMz0ydhJHZoRXa3hSI", + value: "!(withdraw-327.15.1.9.0.cre-1e.rap-48.tra-28d.wit-38)!", + result: { + word: "withdraw", + correct: 15, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "23.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zalatwione-28-06-2025-diffle-diffleen-grywebowe-23-letters-in-3-words-large-gree" +] = [ + { + date: "28.06.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkZjL5MTLuFmduETL29WbuAjL54CMuQTMukzNx0CazlWdx5WY2hSI", + value: "!(vanquish-179.14.0.9.0.mov-1.van-39.6d)!", + result: { + word: "vanquish", + correct: 14, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "28.06.2025", + }, + }, + { + date: "28.06.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkZTLuFmduImMtUHbw5yYl1ibhJmL2gTLhVmcuAjL54SMucTMukzNx0CazlWdx5WY2hSI", + value: "!(vanquish-179.17.1.9.0.rea-86.ban-ec.plu-2b.van-6d)!", + result: { + word: "vanquish", + correct: 17, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "28.06.2025", + }, + }, + { + date: "28.06.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkZjLmRTLuFmduYDNtYXYu5SOtkWYn5iMh1ybyBnLw4CMx4yMuEjMukzNx0CazlWdx5WY2hSI", + value: "!(vanquish-179.21.3.10.0.pro-a2.gai-9.nav-46.van-4f.6d)!", + result: { + word: "vanquish", + correct: 21, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "28.06.2025", + }, + }, + { + date: "28.06.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQmNt4WY25yNlFTL1F3cuQTLpVXcuATMtMXam5SYtMXY35CN10icvBnLzUTLoN2MuQTLzFGZuETOtMXdt5SMy0SZoNmLw4yNx4iMuEzMukzNx0CazlWdx5WY2hSI", + value: + "!(vanquish-179.31.2.17.0.che-21.mus-91.das-4.3ch-53.por-54.was-a.fis-10.qui-4.squ-1e7.van-6d)!", + result: { + word: "vanquish", + correct: 31, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 50, + date: "28.06.2025", + }, + }, + { + date: "28.06.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQmNuYGNt4WY25CO50CcvNmLw4CMx4SMuYTMukzNx0CazlWdx5WY2hSI", + value: "!(vanquish-179.16.1.10.0.cop-98.van-4f.6d)!", + result: { + word: "vanquish", + correct: 16, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "28.06.2025", + }, + }, + { + date: "28.06.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkZTLuFmduMGZ30CajNjL2ETLzV3cuczYz4SO20CajNjLlNTLuF2duATMtMXam5iZy0SdoNnL4YWLvh2YugDNt4Wdk5CN5ETLsFmYuEGZtMXYw5iM20SbhdmLw4COx4iNuIzMukzNx0CazlWdx5WY2hSI", + value: + "!(vanquish-179.32.6.18.0.gam-62.pas-da.bal-194.dun-48.cho-f8.shu-2f.fis-10.wan-3e.3ch-69.3c7.sus-16.3ch-7dc.van-6d)!", + result: { + word: "vanquish", + correct: 32, + position: 6, + incorrect: 18, + knownIncorrect: 0, + totalWords: 13, + totalLetters: 56, + date: "28.06.2025", + }, + }, + { + date: "28.06.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkZjLmRTLuFmduM2Mt4WYq5iNx0ydvdmL3ETMtg2Yz4SMiFTLhJHduITL15WYuMGM20CajNjLh1SdlZmLw4CNx4yMuIzMukzNx0CazlWdx5WY2hSI", + value: + "!(vanquish-179.32.3.14.0.feu-a.3ch-60c.anu-2.tra-1b1.3ch-117.gow-16.jan-3c.van-4f.6d)!", + result: { + word: "vanquish", + correct: 32, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 49, + date: "28.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zaskakujaco-nielatwe-dobre-wyzwanie-19-09-2025-diffle-diffleen-39-letters-in-7-w" +] = [ + { + date: "19.09.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmNTL1hmL2MWL1RnL1YTLulnL3YTL1RnLzYTLtVnL0YWMt8Gcz5iZx0SdsJmLw4COx4SMuAjMuIjNy0CduVHazhSI", + value: + "!(shunt-262.20.1.18.0.blu-1f.spo-1f4.um-63.tu-67.yn-65.tu-c6.hu-3f)!", + result: { + word: "shunt", + correct: 20, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "19.09.2025", + }, + }, + { + date: "19.09.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZz0SdoNnL4YjMtg2Yz4iNj1Sd0NnL1AzNtg2Yz4iN40SYlJnLw4CMx4iMuMTMuIjNy0CduVHazhSI", + value: "!(shunt-262.13.2.10.0.rea-86.3ch-705.stu-c6.3ch-268.shu-3f)!", + result: { + word: "shunt", + correct: 13, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "19.09.2025", + }, + }, + { + date: "19.09.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmNTL1h2cucTL1hWYuUTNt4Wdo5yMy0Cdv1mLw4yMx4SMuUTMuIjNy0CduVHazhSI", + value: "!(shunt-262.15.1.13.0.mot-23.hun-55.ahu-7.shu-3f)!", + result: { + word: "shunt", + correct: 15, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + date: "19.09.2025", + }, + }, + { + date: "19.09.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZz0Sdo5iNi1Sd05SNh1ib15iZ30ybwNnL20yY4VmLw4yMx4SMuQTMuIjNy0CduVHazhSI", + value: "!(shunt-262.14.1.13.0.exc-6.spo-7f.un-a5.tu-b6.hu-3f)!", + result: { + word: "shunt", + correct: 14, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "19.09.2025", + }, + }, + { + date: "19.09.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpY2MuYGNtUHaz5CO50CcvNmLw4SMx4CMuETMuIjNy0CduVHazhSI", + value: "!(shunt-262.11.0.11.0.cop-98.shu-4f.3f)!", + result: { + word: "shunt", + correct: 11, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "19.09.2025", + }, + }, + { + date: "19.09.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmNTL1h2cuMGNt4Wao5CMz0Cdv5mLyYTLtF2ZuAjL44SMuATMuIjNy0CduVHazhSI", + value: "!(shunt-262.10.1.8.0.gam-62.not-30.hin-4c.shu-3f)!", + result: { + word: "shunt", + correct: 10, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 19, + date: "19.09.2025", + }, + }, + { + date: "19.09.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKmNjLmRTL1h2cuQjYtUHa05iMh1ybyBnLw4CMx4iMuITMuIjNy0CduVHazhSI", + value: "!(shunt-262.12.2.10.0.pro-a2.thu-b4.shu-4f.3f)!", + result: { + word: "shunt", + correct: 12, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "19.09.2025", + }, + }, + { + date: "19.09.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiZz0Sdo5iYj1ib15COy0Sd0NnLh1SdlZmLw4CMx4iMuITMuIjNy0CduVHazhSI", + value: "!(shunt-262.12.2.10.0.feu-a.stu-28.un-cb.hu-3f)!", + result: { + word: "shunt", + correct: 12, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "19.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zdecydowanie-za-dlugo-bladzilem-latwe-ale-jakos-mi-umykalo-05-07-2025-diffle-dif" +] = [ + { + date: "05.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKi1iauVmL0ImMtg2Yz4SOtYnLwUWMtQmbl5SMtUWdi5iN40SYlJnLw4yNx4SMucTMuYDOx0SevpmblhSI", + value: "!(enjoy-186.17.1.17.0.rea-86.bue-1.end-1e0.v-9.3ch-2b4.enj-b)!", + result: { + word: "enjoy", + correct: 17, + position: 1, + incorrect: 17, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "05.07.2025", + }, + }, + { + date: "05.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYtombuITLvJWZuATLvVGcuQ2Nx0Cbl1mLw4iMx4iMuITMuYDOx0SevpmblhSI", + value: "!(enjoy-186.12.2.12.0.mel-17d.peo-0.ebo-2.nj-b)!", + result: { + word: "enjoy", + correct: 12, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "05.07.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIWLq5CNx0ybu5iNy0SYtVmLw4SNx4CMuITMuYDOx0SevpmblhSI", + value: "!(enjoy-186.12.0.15.0.ema-26.no-14.j-b)!", + result: { + word: "enjoy", + correct: 12, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + }, + }, + { + date: "05.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkiYtombl5CMto3bm5yNldTLoN2MuETLrVHZugjMt8GbugjMt8GcuIWNtgGdl5iM20SbhdmLw4COx4SMuUTMuYDOx0SevpmblhSI", + value: + "!(enjoy-186.15.1.18.0.gam-62.eth-5b.po-28.lo-28.duk-1.3ch-7e7.foz-0.enj-b)!", + result: { + word: "enjoy", + correct: 15, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 34, + date: "05.07.2025", + }, + }, + { + date: "05.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpIWLq5CN40CZuVmLxITLlh2YuAjLxEjLw4SOuYDOx0SevpmblhSI", + value: "!(enjoy-186.9.0.11.0.che-21.end-84.j-b)!", + result: { + word: "enjoy", + correct: 9, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "05.07.2025", + }, + }, + { + date: "05.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKi1iauVmL0MTLuVmYuQmZt4WZw5iMz0yc1FmLw4SMx4CMuMTMuYDOx0SevpmblhSI", + value: "!(enjoy-186.13.0.11.0.aus-32.pen-fd.ben-34.enj-b)!", + result: { + word: "enjoy", + correct: 13, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "05.07.2025", + }, + }, + { + date: "05.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKi1iauYDNtYnbl5yMtU2av5CO50CcvNmLw4iMx4iMuMTMuYDOx0SevpmblhSI", + value: "!(enjoy-186.13.2.12.0.cop-98.oke-3.env-46.j-b)!", + result: { + word: "enjoy", + correct: 13, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "05.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/znow-jakis-rekord-psiakosc-12-07-2025-diffle-diffleen-grywebowe-95-letters-in-18" +] = [ + { + date: "12.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5ETLk5CZy0yZucDNtY3buATOt4Was5CNm1ibpdnL5Q2Mtg2Yz4yYy0ybv5yMt8Was5CM2UTLoN2MuMTNtw2bk5iYy0ybvhmLyETLsl2auMjYx0CajNjL0QTLv5yMtUnL2ETLi5SMx0icvxmL2YTLlVGZuMjL2IjL34iM24yM5ETLn5WanR2bshSI", + value: + "!(lodging-193.62.7.26.3.dee-66.lor-11.b-16.u-3.o-44.3ch-1b3.kil-12.hoo-2b.dol-53.3ch-560.lio-3.oo-2c.3ch-3d9.win-f4.lin-90.ov-47.g-2d.d-19)!", + result: { + word: "lodging", + correct: 62, + position: 7, + incorrect: 26, + knownIncorrect: 3, + totalWords: 18, + totalLetters: 95, + date: "12.07.2025", + }, + }, + { + date: "12.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTMtQmLkJTLn5SM20ibvxmL4kTLw92YuAjLxEjLx4iMy4yM5ETLn5WanR2bshSI", + value: "!(lodging-193.22.1.11.0.cop-98.lon-61.g-2d.d-19)!", + result: { + word: "lodging", + correct: 22, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 34, + date: "12.07.2025", + }, + }, + { + date: "12.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5ETLk9GbuMDMx0CajNjL3QTL25SYy0ybvxmL2gTLhVmcuAjLxEjLx4CMy4yM5ETLn5WanR2bshSI", + value: "!(lodging-193.20.1.11.0.rea-86.loo-2a.v-47.3ch-103.lod-19)!", + result: { + word: "lodging", + correct: 20, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "12.07.2025", + }, + }, + { + date: "12.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTMtQmLkJTLn5SZx0ybuEzMtAnL2ETLi5iNh1yZvxmLyYTLtF2ZuAjLyEjLw4iMz4yM5ETLn5WanR2bshSI", + value: "!(lodging-193.32.0.12.0.gam-62.log-a6.b-16.p-31.o-1e.g-2d.d-19)!", + result: { + word: "lodging", + correct: 32, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 44, + date: "12.07.2025", + }, + }, + { + date: "12.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOx0CZuMTL15iNx0iYuEmMt82bs5iM50ybsBnLxITLlh2YuAjL0EjLw4SNy4yM5ETLn5WanR2bshSI", + value: "!(lodging-193.25.0.14.0.che-21.plo-92.loo-2a.b-16.u-3.d-19)!", + result: { + word: "lodging", + correct: 25, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "12.07.2025", + }, + }, + { + date: "12.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOx0CZuQmMtcmLxYTLu9GbuUGZ10CajNjLyMTLzVXYuAjLxEjLw4iMy4yM5ETLn5WanR2bshSI", + value: "!(lodging-193.22.0.11.0.aus-32.3ch-5de.lon-61.g-2d.d-19)!", + result: { + word: "lodging", + correct: 22, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "12.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/znow-slowo-z-wieloma-mozliwosciami-01-07-2025-diffle-diffleen-grywebowe-29-lette" +] = [ + { + date: "01.07.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOh1ycpZmL2ITLzlGbuEGM20ycp1mL4UWLnlmLhFWLyh2cuAjL1EjLw4CNx4iM4ETL0NXamhSI", + value: "!(fist-182.14.0.15.0.shr-aa.ig-e8.mis-60a.lis-26.fis-a9)!", + result: { + word: "fist", + correct: 14, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "01.07.2025", + }, + }, + { + date: "01.07.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5EWLzlmZuYTMtUHbw5SO0YTLzlWbuYDOtEWZy5CMuITMuEjL54iM4ETL0NXamhSI", + value: "!(fist-182.9.1.12.0.rea-86.mis-649.plu-16.fis-a9)!", + result: { + word: "fist", + correct: 9, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "01.07.2025", + }, + }, + { + date: "01.07.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOh1ycpZmL3QWLyB3cuMTL19GbukDN20ycp1mLxITLlh2YuAjL0EjLy4CMx4iM4ETL0NXamhSI", + value: "!(fist-182.10.2.14.0.che-21.mis-649.lou-3.spr-d7.fis-a9)!", + result: { + word: "fist", + correct: 10, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "01.07.2025", + }, + }, + { + date: "01.07.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTYtMXam5yM2ITLoN2MugTOtA3bj5CMuETMuAjL54iM4ETL0NXamhSI", + value: "!(fist-182.9.0.11.0.cop-98.3ch-263.fis-a9)!", + result: { + word: "fist", + correct: 9, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "01.07.2025", + }, + }, + { + date: "01.07.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpkTYtMXam5iNy0ycpxmL3gTLz9GcuMTLuVnYuIjNt0WYn5CMuMTMuAjL54iM4ETL0NXamhSI", + value: "!(fist-182.9.0.13.0.gam-62.bun-3.pos-87.lis-26.fis-a9)!", + result: { + word: "fist", + correct: 9, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 22, + date: "01.07.2025", + }, + }, + { + date: "01.07.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK5EWLzlmZugTLolmbuU2Y20CajNjLyEWLvJHcuEjL0EjLy4CMx4iM4ETL0NXamhSI", + value: "!(fist-182.10.2.14.1.pro-a2.3ch-6ce.nih-8.fis-a9)!", + result: { + word: "fist", + correct: 10, + position: 2, + incorrect: 14, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 26, + date: "01.07.2025", + }, + }, + { + date: "01.07.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSOh5CMx0ycp5SYtUXZm5CMucjLw4CMx4iM4ETL0NXamhSI", + value: "!(fist-182.10.0.7.0.feu-a.is-10.a9)!", + result: { + word: "fist", + correct: 10, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "01.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/znowu-sie-niepotrzebnie-napalilem-i-zaczalem-strzelac-04-11-2025-diffle-diffleen" +] = [ + { + date: "04.11.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQWN00yclJnLiNTL1xGcugDMx4CM0MTLz5iN40SYlJnLw4SOuIjL4EjL4AzMtQHb1NXZyhSI", + value: "!(result-308.18.2.9.0.rea-86.s-340.108.plu-3b.res-45d)!", + result: { + word: "result", + correct: 18, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "04.11.2025", + }, + }, + { + date: "04.11.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQWN04SM3QjL4ATMtMXZy5iZtMXdq5CZwITLkVmcukzMx0SZyZmLkZDNtEGaj5SMuUTMuIjL1IjL4AzMtQHb1NXZyhSI", + value: + "!(result-308.25.2.15.1.cha-46d.fre-139.red-20d.jus-f.res-108.471.45d)!", + result: { + word: "result", + correct: 25, + position: 2, + incorrect: 15, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 42, + date: "04.11.2025", + }, + }, + { + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQWN04iN1QTLz5SOiJTL0VmcuMjMtQ3bt5CMuETMuMjL2EjL4AzMtQHb1NXZyhSI", + value: "!(result-308.16.3.11.0.mot-23.ret-2b9.s-456.45d)!", + result: { + word: "result", + correct: 16, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + }, + }, + { + date: "04.11.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkVDNtMnL4IzMtAXZy5yYy0SdydmL20yY4VmLw4COuQjL1EjL4AzMtQHb1NXZyhSI", + value: "!(result-308.15.4.8.0.exc-6.gru-2c.rep-328.s-45d)!", + result: { + word: "result", + correct: 15, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "04.11.2025", + }, + }, + { + date: "04.11.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpQWN00yclJnLjNTLlJ3dugTOtA3bj5CMuETMuMjLyEjL4AzMtQHb1NXZyhSI", + value: "!(result-308.12.3.11.0.cop-98.wre-3c.res-45d)!", + result: { + word: "result", + correct: 12, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "04.11.2025", + }, + }, + { + date: "04.11.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKkVDNtMXZy5SZl1yYlNnLh1SdlZmLw4yNuMjLxEjL4AzMtQHb1NXZyhSI", + value: "!(result-308.11.3.7.0.feu-a.sec-ee.res-45d)!", + result: { + word: "result", + correct: 11, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "04.11.2025", + }, + }, + { + date: "04.11.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZ1QjLwYWMuUGNx4COwEjLwQzMtMXZy5iM20SbhdmLw4COuEjLzIjL4AzMtQHb1NXZyhSI", + value: "!(result-308.23.1.8.0.gam-62.res-340.108.14e.1f0.45d)!", + result: { + word: "result", + correct: 23, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "04.11.2025", + }, + }, + { + date: "04.11.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkCZ1QTLz5iY3ETLw5iMxETL2VmcuUWMtUmcj5CMuATMuAjL0EjL4AzMtQHb1NXZyhSI", + value: "!(result-308.14.0.10.0.cre-1e.rev-112.p-17b.s-45d)!", + result: { + word: "result", + correct: 14, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "04.11.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/znowu-zaczalem-strzelac-ale-tym-razem-troche-lepiej-z-celnoscia-28-08-2025-diffl" +] = [ + { + date: "28.08.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSM30SYs5COk1SYw5iY00ibhNnL2gTLhVmcuAjL54SMuMTMuADNy0yZuFGbzhSI", + value: "!(slang-240.13.1.9.0.rea-86.san-4b.pa-d8.la-71)!", + result: { + word: "slang", + correct: 13, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "28.08.2025", + }, + }, + { + date: "28.08.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEzNuImMuATLhxmLhJTMtEGauYjMtUXYuIjMtE2buEjYx0ic0NnLw4iNx4CMuAjMuADNy0yZuFGbzhSI", + value: "!(slang-240.20.0.16.0.str-1b1.oa-22.au-26.ha-12a.la-0.2b.71)!", + result: { + word: "slang", + correct: 20, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 36, + date: "28.08.2025", + }, + }, + { + date: "28.08.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEzNtEGbz5iZy0SYsZmL4kTLw92YuAjLxEjLy4SOuADNy0yZuFGbzhSI", + value: "!(slang-240.9.2.11.0.cop-98.fla-2f.sla-71)!", + result: { + word: "slang", + correct: 9, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "28.08.2025", + }, + }, + { + date: "28.08.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=hkSM30SYsNnLlRWLhx2YuIGZt4WYs5SYx0yZhZmLyYTLtF2ZuAjL34SMuYTMuADNy0yZuFGbzhSI", + value: "!(slang-240.16.1.7.0.gam-62.fag-1a.lan-db.cla-de.sla-71)!", + result: { + word: "slang", + correct: 16, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "28.08.2025", + }, + }, + { + date: "28.08.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxcjL0gTLhx2cuETNy0SYsBnL20yY4VmLw4CMx4iMuMTMuADNy0yZuFGbzhSI", + value: "!(slang-240.13.2.10.0.exc-6.pla-251.sla-84.71)!", + result: { + word: "slang", + correct: 13, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "28.08.2025", + }, + }, + { + date: "28.08.2025", + nick: "Greyman", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpEzNtEGbz5SYtUXZm5CMuYjLy4iNuADNy0yZuFGbzhSI", + value: "!(slang-240.6.2.6.0.feu-a.sla-71)!", + result: { + word: "slang", + correct: 6, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "28.08.2025", + }, + }, + { + date: "28.08.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESKxcjL4MTLhx2cuEWMtMXYs5iMh1ybyBnLw4SMx4SMuITMuADNy0yZuFGbzhSI", + value: "!(slang-240.12.1.11.0.pro-a2.las-1a.sla-38.71)!", + result: { + word: "slang", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "28.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/znowu-zwiodlo-to-nie-jest-ta-najczesciej-uzywana-forma-slightly-smiling-face-16-" +] = [ + { + date: "16.12.2025", + nick: "Kronos", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcjMuMjMt4WauczMtU2Yz5iN40SYlJnLw4CNuYjLyIjLwUzMtkHdpJXZj5WazhSI", + value: "!(sincerity-350.22.6.4.0.rea-86.sce-37.in-23.27)!", + result: { + word: "sincerity", + correct: 22, + position: 6, + incorrect: 4, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "16.12.2025", + }, + }, + { + date: "16.12.2025", + nick: "Heheszki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3ITLul2cuUzNx0ycpRmLjFTLyV2YuMjMtQ3bt5CMuATMuMjLwIjLwUzMtkHdpJXZj5WazhSI", + value: "!(sincerity-350.20.3.10.0.mot-23.cer-1c.dis-175.sin-27)!", + result: { + word: "sincerity", + correct: 20, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "16.12.2025", + }, + }, + { + date: "16.12.2025", + nick: "sebie_juki", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3ITLul2cuIjNx0ibl5SZx0SZyNmLw4yMuMjL2EjLwUzMtkHdpJXZj5WazhSI", + value: "!(sincerity-350.16.3.3.0.cre-1e.en-162.sin-27)!", + result: { + word: "sincerity", + correct: 16, + position: 3, + incorrect: 3, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "16.12.2025", + }, + }, + { + date: "16.12.2025", + nick: "Dzemik_Skrytozerca", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3IjLlRTLul2cuAjYtMnbp5iY00Cdp5SZ00Ccl5mLlJWMtwWYt5SMuITMuQjLwMjLwUzMtkHdpJXZj5WazhSI", + value: "!(sincerity-350.30.4.12.1.mal-1be.nep-4e.it-4b.ins-b0.sin-4e.27)!", + result: { + word: "sincerity", + correct: 30, + position: 4, + incorrect: 12, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 46, + date: "16.12.2025", + }, + }, + { + date: "16.12.2025", + nick: "Felonious_Gru", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcjMt4Waz5SY0ETLyV2YucTYtMWZy5iNtMGel5CMuATMuQjL5EjLwUzMtkHdpJXZj5WazhSI", + value: "!(sincerity-350.19.4.10.0.exc-6.rec-a7.cer-14a.sin-27)!", + result: { + word: "sincerity", + correct: 19, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 33, + date: "16.12.2025", + }, + }, + { + date: "16.12.2025", + nick: "User", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=QIpcjMt4Waz5iY30ibpZmL3YWMtIXZz5SN30SYodnLw4SOuEjLwIjLwUzMtkHdpJXZj5WazhSI", + value: "!(sincerity-350.20.1.9.0.wha-75.ser-1f7.fin-7b.sin-27)!", + result: { + word: "sincerity", + correct: 20, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "16.12.2025", + }, + }, + { + date: "16.12.2025", + nick: "Deykun", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3ITLul2cucTMtMWZu5iN4ITLz5WduQWYx0iclNmL0ITLvJXZuIjNt0WYn5CMuATMuQjL2IjLwUzMtkHdpJXZj5WazhSI", + value: + "!(sincerity-350.26.4.10.0.gam-62.ero-24.cer-1ad.uns-286.nec-17.sin-27)!", + result: { + word: "sincerity", + correct: 26, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "16.12.2025", + }, + }, + { + date: "16.12.2025", + nick: "wihajster", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3ITLul2cuMGOtIXZ25yNl1SYsNnLw4COuMjL3EjLwUzMtkHdpJXZj5WazhSI", + value: "!(sincerity-350.17.3.8.0.sla-e7.ver-8c.sin-27)!", + result: { + word: "sincerity", + correct: 17, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 28, + date: "16.12.2025", + }, + }, + { + date: "16.12.2025", + nick: "kwiecik", + lang: "en", + url: "https://deykun.github.io/diffle-lang/en?r=ESK3ITLulmLyATMtMWZz5CO50CcvNmLw4COuMjL5EjLwUzMtkHdpJXZj5WazhSI", + value: "!(sincerity-350.19.3.8.0.cop-98.sec-102.in-27)!", + result: { + word: "sincerity", + correct: 19, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 30, + date: "16.12.2025", + }, + }, +]; diff --git a/scripts/hejto/utils/results-parser.ts b/scripts/hejto/utils/results-parser.ts index c86d0acfa..2f55ce626 100644 --- a/scripts/hejto/utils/results-parser.ts +++ b/scripts/hejto/utils/results-parser.ts @@ -1,5 +1,5 @@ import { ParsedHejtoResult } from '../hejto-types'; -import { results } from '../parts/part-1'; +import { results } from '../parts-2024/part-1'; const getMedian = (medianData: { [value: number]: number }) => { const { 0: zero, ...medianDataWithouZero } = medianData; From 70eed3678c57d53c960e1c3599badf8d75849b5d Mon Sep 17 00:00:00 2001 From: Szymon Tondowski Date: Sun, 21 Dec 2025 15:04:42 +0100 Subject: [PATCH 2/5] Working summary --- CHANGELOG.md | 5 +- package.json | 6 +- public/year-summary/{ => 2024}/cs-info.json | 0 public/year-summary/{ => 2024}/en-info.json | 0 public/year-summary/{ => 2024}/fr-info.json | 0 public/year-summary/{ => 2024}/it-info.json | 0 public/year-summary/{ => 2024}/pl-info.json | 0 public/year-summary/2025/cs-info.json | 844 + public/year-summary/2025/de-info.json | 2432 ++ public/year-summary/2025/en-info.json | 18519 ++++++++++ public/year-summary/2025/es-info.json | 2076 ++ public/year-summary/2025/fr-info.json | 335 + public/year-summary/2025/it-info.json | 2930 ++ public/year-summary/2025/pl-info.json | 29490 ++++++++++++++++ scripts/hejto/2024-summary-data.ts | 256 +- scripts/hejto/2025-summary-data.ts | 392 + scripts/hejto/parts-2025/part-7.ts | 6819 ++++ src/App.tsx | 3 +- .../Panes/YearSummary/YearSummary.tsx | 13 +- .../Panes/YearSummary/YearSummaryHeader.tsx | 21 +- .../Panes/YearSummary/YearSummaryTable.tsx | 243 +- src/types.d.ts | 3 +- user-scripts/hejto-parser/README.md | 4 - user-scripts/hejto-parser/build.ts | 44 - user-scripts/hejto-parser/dev-script.ts | 32 - user-scripts/hejto-parser/dev.user-srcipt.js | 13 - user-scripts/hejto-parser/dev/constants.js | 30 - user-scripts/hejto-parser/dev/db.js | 22 - user-scripts/hejto-parser/dev/dom.js | 60 - user-scripts/hejto-parser/dev/helpers.js | 60 - user-scripts/hejto-parser/dev/icons.js | 19 - user-scripts/hejto-parser/dev/interface.js | 78 - user-scripts/hejto-parser/dev/parse-hejto.js | 92 - user-scripts/hejto-parser/dev/parse-page.js | 35 - .../hejto-parser/dev/render-app-copy.js | 57 - .../hejto-parser/dev/render-app-open.js | 20 - user-scripts/hejto-parser/dev/render-app.js | 198 - user-scripts/hejto-parser/dev/subscribers.js | 31 - user-scripts/hejto-parser/template.js | 109 - user-scripts/hejto-parser/utils.ts | 3 - yarn.lock | 396 +- 41 files changed, 64200 insertions(+), 1490 deletions(-) rename public/year-summary/{ => 2024}/cs-info.json (100%) rename public/year-summary/{ => 2024}/en-info.json (100%) rename public/year-summary/{ => 2024}/fr-info.json (100%) rename public/year-summary/{ => 2024}/it-info.json (100%) rename public/year-summary/{ => 2024}/pl-info.json (100%) create mode 100644 public/year-summary/2025/cs-info.json create mode 100644 public/year-summary/2025/de-info.json create mode 100644 public/year-summary/2025/en-info.json create mode 100644 public/year-summary/2025/es-info.json create mode 100644 public/year-summary/2025/fr-info.json create mode 100644 public/year-summary/2025/it-info.json create mode 100644 public/year-summary/2025/pl-info.json create mode 100644 scripts/hejto/2025-summary-data.ts create mode 100644 scripts/hejto/parts-2025/part-7.ts delete mode 100644 user-scripts/hejto-parser/README.md delete mode 100644 user-scripts/hejto-parser/build.ts delete mode 100644 user-scripts/hejto-parser/dev-script.ts delete mode 100644 user-scripts/hejto-parser/dev.user-srcipt.js delete mode 100644 user-scripts/hejto-parser/dev/constants.js delete mode 100644 user-scripts/hejto-parser/dev/db.js delete mode 100644 user-scripts/hejto-parser/dev/dom.js delete mode 100644 user-scripts/hejto-parser/dev/helpers.js delete mode 100644 user-scripts/hejto-parser/dev/icons.js delete mode 100644 user-scripts/hejto-parser/dev/interface.js delete mode 100644 user-scripts/hejto-parser/dev/parse-hejto.js delete mode 100644 user-scripts/hejto-parser/dev/parse-page.js delete mode 100644 user-scripts/hejto-parser/dev/render-app-copy.js delete mode 100644 user-scripts/hejto-parser/dev/render-app-open.js delete mode 100644 user-scripts/hejto-parser/dev/render-app.js delete mode 100644 user-scripts/hejto-parser/dev/subscribers.js delete mode 100644 user-scripts/hejto-parser/template.js delete mode 100644 user-scripts/hejto-parser/utils.ts diff --git a/CHANGELOG.md b/CHANGELOG.md index d0454e69c..40f41982a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,10 @@ --- -#### Version 3.40 +#### Version 3.41 +- **New**: 2025 annual summary for hejto.pl users added + +#### Version 3.40 (30.11.2025) - **New**: More English winning words #### Version 3.39.2 (30.11.2025) diff --git a/package.json b/package.json index 9762bf086..94e6e893a 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "slowoku" ], "private": true, - "version": "3.40", + "version": "3.41", "type": "module", "scripts": { "dev": "vite --port 3001", @@ -29,7 +29,7 @@ "build-it": "tsx scripts/build-it-dictionary.ts", "build-pl": "tsx scripts/build-pl-dictionary.ts", "build-langs": "yarn build-cs & yarn build-de & yarn build-en & yarn build-es & yarn build-fi & yarn build-fr & yarn build-it & yarn build-pl", - "build-hejto": "tsx scripts/hejto/2024-summary-data.ts", + "build-hejto": "tsx scripts/hejto/2025-summary-data.ts", "preview": "vite preview", "test": "jest", "test-e2e": "playwright test", @@ -75,11 +75,9 @@ "eslint-plugin-react": "7.28.0", "eslint-plugin-react-hooks": "4.3.0", "eslint-plugin-react-refresh": "^0.4.3", - "express": "^4.21.1", "identity-obj-proxy": "^3.0.0", "jest": "^29.6.2", "jest-environment-jsdom": "^29.6.2", - "nodemon": "^3.1.7", "react": "^18.2.0", "react-dom": "^18.2.0", "react-redux": "^8.1.1", diff --git a/public/year-summary/cs-info.json b/public/year-summary/2024/cs-info.json similarity index 100% rename from public/year-summary/cs-info.json rename to public/year-summary/2024/cs-info.json diff --git a/public/year-summary/en-info.json b/public/year-summary/2024/en-info.json similarity index 100% rename from public/year-summary/en-info.json rename to public/year-summary/2024/en-info.json diff --git a/public/year-summary/fr-info.json b/public/year-summary/2024/fr-info.json similarity index 100% rename from public/year-summary/fr-info.json rename to public/year-summary/2024/fr-info.json diff --git a/public/year-summary/it-info.json b/public/year-summary/2024/it-info.json similarity index 100% rename from public/year-summary/it-info.json rename to public/year-summary/2024/it-info.json diff --git a/public/year-summary/pl-info.json b/public/year-summary/2024/pl-info.json similarity index 100% rename from public/year-summary/pl-info.json rename to public/year-summary/2024/pl-info.json diff --git a/public/year-summary/2025/cs-info.json b/public/year-summary/2025/cs-info.json new file mode 100644 index 000000000..f068fe3f8 --- /dev/null +++ b/public/year-summary/2025/cs-info.json @@ -0,0 +1,844 @@ +{ + "all": { + "best": { + "word": "host", + "letters": 13 + }, + "worst": { + "word": "žaloba", + "letters": 58 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 3, + "5": 4, + "6": 8, + "7": 2, + "8": 2, + "9": 3, + "10": 1, + "11": 1, + "12": 2, + "13": 1 + }, + "totalLetters": { + "13": 2, + "14": 1, + "18": 1, + "19": 1, + "23": 1, + "24": 4, + "28": 1, + "29": 2, + "30": 2, + "31": 1, + "32": 2, + "33": 2, + "34": 2, + "36": 1, + "40": 1, + "41": 1, + "44": 2, + "47": 1, + "53": 1, + "58": 1 + }, + "gamesPlayed": 30, + "medianWords": 5.5, + "medianLetters": 30.5 + }, + "activePlayers": 3, + "byUser": { + "Deykun": { + "results": { + "1": { + "best": { + "word": "brouk", + "letters": 13 + }, + "worst": { + "word": "vynutit", + "letters": 41 + }, + "totalWords": { + "3": 1, + "4": 1, + "6": 3, + "9": 1, + "10": 1 + }, + "totalLetters": { + "13": 1, + "18": 1, + "29": 1, + "33": 1, + "34": 2, + "41": 1 + }, + "gamesPlayed": 7, + "medianWords": 6, + "medianLetters": 33 + }, + "2": { + "best": { + "word": "host", + "letters": 13 + }, + "worst": { + "word": "japonsko", + "letters": 53 + }, + "totalWords": { + "3": 1, + "5": 2, + "6": 3, + "13": 1 + }, + "totalLetters": { + "13": 1, + "24": 2, + "28": 1, + "29": 1, + "30": 1, + "53": 1 + }, + "gamesPlayed": 7, + "medianWords": 6, + "medianLetters": 28 + }, + "year": { + "best": { + "word": "host", + "letters": 13 + }, + "worst": { + "word": "japonsko", + "letters": 53 + }, + "totalWords": { + "3": 2, + "4": 1, + "5": 2, + "6": 6, + "9": 1, + "10": 1, + "13": 1 + }, + "totalLetters": { + "13": 2, + "18": 1, + "24": 2, + "28": 1, + "29": 2, + "30": 1, + "33": 1, + "34": 2, + "41": 1, + "53": 1 + }, + "gamesPlayed": 14, + "medianWords": 5.5, + "medianLetters": 28.5 + } + }, + "dates": { + "1": [ + "10.01.2025", + "11.01.2025", + "23.01.2025", + "21.01.2025" + ], + "2": [ + "07.02.2025", + "12.02.2025", + "19.02.2025", + "20.02.2025", + "21.02.2025", + "26.02.2025" + ], + "year": [ + "07.02.2025", + "10.01.2025", + "11.01.2025", + "12.02.2025", + "19.02.2025", + "20.02.2025", + "21.02.2025", + "23.01.2025", + "26.02.2025", + "21.01.2025" + ] + }, + "worstDates": { + "1": [ + "23.01.2025", + "25.01.2025" + ], + "2": [ + "19.02.2025", + "21.02.2025", + "26.02.2025" + ], + "year": [ + "19.02.2025", + "21.02.2025", + "23.01.2025", + "25.01.2025", + "26.02.2025" + ] + } + }, + "Felonious_Gru": { + "results": { + "1": { + "best": { + "word": "dobro", + "letters": 23 + }, + "worst": { + "word": "žaloba", + "letters": 58 + }, + "totalWords": { + "4": 1, + "8": 1, + "9": 1, + "11": 1, + "12": 2 + }, + "totalLetters": { + "23": 1, + "40": 1, + "44": 2, + "47": 1, + "58": 1 + }, + "gamesPlayed": 6, + "medianWords": 10, + "medianLetters": 42 + }, + "2": { + "best": { + "word": "dieta", + "letters": 30 + }, + "worst": { + "word": "host", + "letters": 32 + }, + "totalWords": { + "7": 1, + "8": 1 + }, + "totalLetters": { + "30": 1, + "32": 1 + }, + "gamesPlayed": 2, + "medianWords": 7.5, + "medianLetters": 31 + }, + "year": { + "best": { + "word": "dobro", + "letters": 23 + }, + "worst": { + "word": "žaloba", + "letters": 58 + }, + "totalWords": { + "4": 1, + "7": 1, + "8": 2, + "9": 1, + "11": 1, + "12": 2 + }, + "totalLetters": { + "23": 1, + "30": 1, + "32": 1, + "40": 1, + "44": 2, + "47": 1, + "58": 1 + }, + "gamesPlayed": 8, + "medianWords": 8.5, + "medianLetters": 42 + } + }, + "dates": { + "1": [ + "19.01.2025" + ], + "year": [ + "19.01.2025" + ] + }, + "worstDates": { + "1": [ + "10.01.2025", + "11.01.2025", + "19.01.2025", + "21.01.2025", + "17.01.2025", + "18.01.2025" + ], + "2": [ + "07.02.2025", + "22.02.2025" + ], + "year": [ + "07.02.2025", + "10.01.2025", + "11.01.2025", + "19.01.2025", + "22.02.2025", + "21.01.2025", + "17.01.2025", + "18.01.2025" + ] + } + }, + "Greyman": { + "results": { + "1": { + "best": { + "word": "brouk", + "letters": 14 + }, + "worst": { + "word": "spravit", + "letters": 31 + }, + "totalWords": { + "2": 1, + "5": 1, + "6": 2 + }, + "totalLetters": { + "14": 1, + "24": 2, + "31": 1 + }, + "gamesPlayed": 4, + "medianWords": 5.5, + "medianLetters": 19 + }, + "2": { + "best": { + "word": "dieta", + "letters": 19 + }, + "worst": { + "word": "tendence", + "letters": 36 + }, + "totalWords": { + "4": 1, + "7": 1, + "9": 1 + }, + "totalLetters": { + "19": 1, + "33": 1, + "36": 1 + }, + "gamesPlayed": 3, + "medianWords": 7, + "medianLetters": 33 + }, + "6": { + "best": { + "word": "napálit", + "letters": 32 + }, + "worst": { + "word": "napálit", + "letters": 32 + }, + "totalWords": { + "5": 1 + }, + "totalLetters": { + "32": 1 + }, + "gamesPlayed": 1, + "medianWords": 5, + "medianLetters": 32 + }, + "year": { + "best": { + "word": "brouk", + "letters": 14 + }, + "worst": { + "word": "tendence", + "letters": 36 + }, + "totalWords": { + "2": 1, + "4": 1, + "5": 2, + "6": 2, + "7": 1, + "9": 1 + }, + "totalLetters": { + "14": 1, + "19": 1, + "24": 2, + "31": 1, + "32": 1, + "33": 1, + "36": 1 + }, + "gamesPlayed": 8, + "medianWords": 5.5, + "medianLetters": 27.5 + } + }, + "dates": { + "1": [ + "25.01.2025", + "17.01.2025", + "18.01.2025" + ], + "2": [ + "22.02.2025" + ], + "6": [ + "12.06.2025" + ], + "year": [ + "22.02.2025", + "25.01.2025", + "12.06.2025", + "17.01.2025", + "18.01.2025" + ] + }, + "worstDates": { + "2": [ + "12.02.2025", + "20.02.2025" + ], + "6": [ + "12.06.2025" + ], + "year": [ + "12.02.2025", + "20.02.2025", + "12.06.2025" + ] + } + } + }, + "wordsByDates": { + "12.06.2025": "napálit", + "26.02.2025": "krotit", + "22.02.2025": "dieta", + "21.02.2025": "japonsko", + "20.02.2025": "dezert", + "19.02.2025": "skladba", + "12.02.2025": "tendence", + "07.02.2025": "host", + "25.01.2025": "spravit", + "23.01.2025": "prohra", + "21.01.2025": "vynutit", + "19.01.2025": "žaloba", + "18.01.2025": "pachatel", + "17.01.2025": "jazyk", + "11.01.2025": "dobro", + "10.01.2025": "brouk" + }, + "datesByWords": { + "napálit": "12.06.2025", + "krotit": "26.02.2025", + "dieta": "22.02.2025", + "japonsko": "21.02.2025", + "dezert": "20.02.2025", + "skladba": "19.02.2025", + "tendence": "12.02.2025", + "host": "07.02.2025", + "spravit": "25.01.2025", + "prohra": "23.01.2025", + "vynutit": "21.01.2025", + "žaloba": "19.01.2025", + "pachatel": "18.01.2025", + "jazyk": "17.01.2025", + "dobro": "11.01.2025", + "brouk": "10.01.2025" + }, + "rankByWords": { + "host": { + "best": { + "word": "host", + "letters": 13 + }, + "worst": { + "word": "host", + "letters": 32 + }, + "totalWords": { + "3": 1, + "8": 1 + }, + "totalLetters": { + "13": 1, + "32": 1 + }, + "gamesPlayed": 2, + "medianWords": 5.5, + "medianLetters": 22.5 + }, + "brouk": { + "best": { + "word": "brouk", + "letters": 13 + }, + "worst": { + "word": "brouk", + "letters": 40 + }, + "totalWords": { + "2": 1, + "3": 1, + "9": 1 + }, + "totalLetters": { + "13": 1, + "14": 1, + "40": 1 + }, + "gamesPlayed": 3, + "medianWords": 3, + "medianLetters": 14 + }, + "dobro": { + "best": { + "word": "dobro", + "letters": 18 + }, + "worst": { + "word": "dobro", + "letters": 23 + }, + "totalWords": { + "4": 2 + }, + "totalLetters": { + "18": 1, + "23": 1 + }, + "gamesPlayed": 2, + "medianWords": 4, + "medianLetters": 20.5 + }, + "tendence": { + "best": { + "word": "tendence", + "letters": 29 + }, + "worst": { + "word": "tendence", + "letters": 36 + }, + "totalWords": { + "6": 1, + "9": 1 + }, + "totalLetters": { + "29": 1, + "36": 1 + }, + "gamesPlayed": 2, + "medianWords": 7.5, + "medianLetters": 32.5 + }, + "žaloba": { + "best": { + "word": "žaloba", + "letters": 58 + }, + "worst": { + "word": "žaloba", + "letters": 58 + }, + "totalWords": { + "12": 1 + }, + "totalLetters": { + "58": 1 + }, + "gamesPlayed": 1, + "medianWords": 12, + "medianLetters": 58 + }, + "skladba": { + "best": { + "word": "skladba", + "letters": 30 + }, + "worst": { + "word": "skladba", + "letters": 30 + }, + "totalWords": { + "6": 1 + }, + "totalLetters": { + "30": 1 + }, + "gamesPlayed": 1, + "medianWords": 6, + "medianLetters": 30 + }, + "dezert": { + "best": { + "word": "dezert", + "letters": 28 + }, + "worst": { + "word": "dezert", + "letters": 33 + }, + "totalWords": { + "6": 1, + "7": 1 + }, + "totalLetters": { + "28": 1, + "33": 1 + }, + "gamesPlayed": 2, + "medianWords": 6.5, + "medianLetters": 30.5 + }, + "japonsko": { + "best": { + "word": "japonsko", + "letters": 53 + }, + "worst": { + "word": "japonsko", + "letters": 53 + }, + "totalWords": { + "13": 1 + }, + "totalLetters": { + "53": 1 + }, + "gamesPlayed": 1, + "medianWords": 13, + "medianLetters": 53 + }, + "dieta": { + "best": { + "word": "dieta", + "letters": 19 + }, + "worst": { + "word": "dieta", + "letters": 30 + }, + "totalWords": { + "4": 1, + "5": 1, + "7": 1 + }, + "totalLetters": { + "19": 1, + "24": 1, + "30": 1 + }, + "gamesPlayed": 3, + "medianWords": 5, + "medianLetters": 24 + }, + "prohra": { + "best": { + "word": "prohra", + "letters": 29 + }, + "worst": { + "word": "prohra", + "letters": 29 + }, + "totalWords": { + "6": 1 + }, + "totalLetters": { + "29": 1 + }, + "gamesPlayed": 1, + "medianWords": 6, + "medianLetters": 29 + }, + "spravit": { + "best": { + "word": "spravit", + "letters": 31 + }, + "worst": { + "word": "spravit", + "letters": 33 + }, + "totalWords": { + "6": 2 + }, + "totalLetters": { + "31": 1, + "33": 1 + }, + "gamesPlayed": 2, + "medianWords": 6, + "medianLetters": 32 + }, + "krotit": { + "best": { + "word": "krotit", + "letters": 24 + }, + "worst": { + "word": "krotit", + "letters": 24 + }, + "totalWords": { + "5": 1 + }, + "totalLetters": { + "24": 1 + }, + "gamesPlayed": 1, + "medianWords": 5, + "medianLetters": 24 + }, + "vynutit": { + "best": { + "word": "vynutit", + "letters": 41 + }, + "worst": { + "word": "vynutit", + "letters": 47 + }, + "totalWords": { + "10": 1, + "12": 1 + }, + "totalLetters": { + "41": 1, + "47": 1 + }, + "gamesPlayed": 2, + "medianWords": 11, + "medianLetters": 44 + }, + "napálit": { + "best": { + "word": "napálit", + "letters": 32 + }, + "worst": { + "word": "napálit", + "letters": 32 + }, + "totalWords": { + "5": 1 + }, + "totalLetters": { + "32": 1 + }, + "gamesPlayed": 1, + "medianWords": 5, + "medianLetters": 32 + }, + "jazyk": { + "best": { + "word": "jazyk", + "letters": 24 + }, + "worst": { + "word": "jazyk", + "letters": 44 + }, + "totalWords": { + "6": 1, + "9": 1, + "11": 1 + }, + "totalLetters": { + "24": 1, + "34": 1, + "44": 1 + }, + "gamesPlayed": 3, + "medianWords": 9, + "medianLetters": 34 + }, + "pachatel": { + "best": { + "word": "pachatel", + "letters": 24 + }, + "worst": { + "word": "pachatel", + "letters": 44 + }, + "totalWords": { + "5": 1, + "6": 1, + "8": 1 + }, + "totalLetters": { + "24": 1, + "34": 1, + "44": 1 + }, + "gamesPlayed": 3, + "medianWords": 6, + "medianLetters": 34 + } + }, + "hardestWords": [ + "žaloba", + "japonsko", + "vynutit", + "jazyk", + "pachatel", + "tendence", + "spravit", + "napálit", + "dezert", + "skladba", + "prohra", + "dieta", + "krotit", + "host", + "dobro", + "brouk" + ], + "bestWords": [ + "brouk", + "dobro", + "host", + "dieta", + "krotit", + "prohra", + "skladba", + "dezert", + "napálit", + "spravit", + "tendence", + "pachatel", + "jazyk", + "vynutit", + "japonsko", + "žaloba" + ] +} \ No newline at end of file diff --git a/public/year-summary/2025/de-info.json b/public/year-summary/2025/de-info.json new file mode 100644 index 000000000..9db0b009d --- /dev/null +++ b/public/year-summary/2025/de-info.json @@ -0,0 +1,2432 @@ +{ + "all": { + "best": { + "word": "buch", + "letters": 17 + }, + "worst": { + "word": "zerstört", + "letters": 107 + }, + "totalWords": { + "2": 7, + "3": 10, + "4": 10, + "5": 14, + "6": 12, + "7": 15, + "8": 5, + "9": 3, + "10": 4, + "13": 1, + "14": 2, + "16": 2, + "18": 2, + "19": 2 + }, + "totalLetters": { + "17": 2, + "18": 1, + "19": 2, + "20": 4, + "21": 2, + "22": 4, + "23": 2, + "24": 1, + "25": 2, + "26": 2, + "27": 3, + "28": 2, + "29": 1, + "30": 4, + "31": 3, + "32": 2, + "33": 2, + "34": 4, + "35": 2, + "36": 1, + "37": 5, + "38": 3, + "40": 3, + "41": 2, + "42": 3, + "43": 1, + "45": 4, + "46": 3, + "47": 1, + "48": 1, + "50": 2, + "52": 3, + "53": 1, + "56": 1, + "63": 1, + "74": 2, + "77": 2, + "82": 1, + "84": 1, + "90": 1, + "96": 1, + "107": 1 + }, + "gamesPlayed": 89, + "medianWords": 6, + "medianLetters": 35 + }, + "activePlayers": 2, + "byUser": { + "Felonious_Gru": { + "hardest50": { + "best": { + "word": "mutter", + "letters": 19 + }, + "worst": { + "word": "zerstört", + "letters": 107 + }, + "totalWords": { + "2": 2, + "3": 7, + "4": 3, + "5": 4, + "6": 5, + "7": 8, + "8": 2, + "9": 2, + "10": 4, + "13": 1, + "14": 2, + "16": 2, + "18": 2, + "19": 2 + }, + "totalLetters": { + "19": 1, + "20": 2, + "21": 1, + "22": 2, + "23": 1, + "25": 2, + "27": 1, + "28": 1, + "30": 2, + "31": 1, + "32": 2, + "33": 1, + "34": 1, + "37": 1, + "38": 2, + "40": 2, + "41": 1, + "42": 1, + "43": 1, + "45": 2, + "46": 1, + "47": 1, + "48": 1, + "50": 2, + "52": 2, + "53": 1, + "63": 1, + "74": 2, + "77": 2, + "82": 1, + "84": 1, + "90": 1, + "96": 1, + "107": 1 + }, + "gamesPlayed": 46, + "medianWords": 6.5, + "medianLetters": 40.5 + }, + "results": { + "1": { + "best": { + "word": "tenor", + "letters": 18 + }, + "worst": { + "word": "zerstört", + "letters": 107 + }, + "totalWords": { + "2": 2, + "3": 1, + "5": 1, + "6": 1, + "7": 4, + "10": 3, + "14": 1, + "19": 1 + }, + "totalLetters": { + "18": 1, + "19": 1, + "22": 1, + "30": 1, + "33": 1, + "37": 1, + "40": 1, + "42": 1, + "45": 2, + "52": 1, + "63": 1, + "74": 1, + "107": 1 + }, + "gamesPlayed": 14, + "medianWords": 6.5, + "medianLetters": 41 + }, + "2": { + "best": { + "word": "bitter", + "letters": 19 + }, + "worst": { + "word": "überführen", + "letters": 90 + }, + "totalWords": { + "2": 1, + "3": 1, + "5": 2, + "6": 1, + "7": 2, + "8": 1, + "14": 1, + "16": 1, + "18": 1 + }, + "totalLetters": { + "19": 1, + "27": 1, + "30": 1, + "31": 1, + "38": 1, + "40": 1, + "48": 1, + "50": 1, + "77": 2, + "90": 1 + }, + "gamesPlayed": 11, + "medianWords": 7, + "medianLetters": 40 + }, + "3": { + "best": { + "word": "spind", + "letters": 22 + }, + "worst": { + "word": "schlecht", + "letters": 52 + }, + "totalWords": { + "3": 1, + "4": 1, + "6": 1, + "9": 1 + }, + "totalLetters": { + "22": 1, + "25": 1, + "38": 1, + "52": 1 + }, + "gamesPlayed": 4, + "medianWords": 5, + "medianLetters": 31.5 + }, + "4": { + "best": { + "word": "ball", + "letters": 21 + }, + "worst": { + "word": "scheidung", + "letters": 41 + }, + "totalWords": { + "3": 1, + "5": 1 + }, + "totalLetters": { + "21": 1, + "41": 1 + }, + "gamesPlayed": 2, + "medianWords": 4, + "medianLetters": 31 + }, + "5": { + "best": { + "word": "buch", + "letters": 17 + }, + "worst": { + "word": "buch", + "letters": 17 + }, + "totalWords": { + "2": 1 + }, + "totalLetters": { + "17": 1 + }, + "gamesPlayed": 1, + "medianWords": 2, + "medianLetters": 17 + }, + "6": { + "best": { + "word": "hintern", + "letters": 20 + }, + "worst": { + "word": "verfassung", + "letters": 74 + }, + "totalWords": { + "2": 1, + "3": 1, + "9": 1, + "13": 1 + }, + "totalLetters": { + "20": 1, + "25": 1, + "53": 1, + "74": 1 + }, + "gamesPlayed": 4, + "medianWords": 6, + "medianLetters": 39 + }, + "7": { + "best": { + "word": "angeln", + "letters": 28 + }, + "worst": { + "word": "dachboden", + "letters": 47 + }, + "totalWords": { + "4": 1, + "6": 1, + "7": 1, + "8": 1 + }, + "totalLetters": { + "28": 1, + "34": 1, + "43": 1, + "47": 1 + }, + "gamesPlayed": 4, + "medianWords": 6.5, + "medianLetters": 38.5 + }, + "8": { + "best": { + "word": "toast", + "letters": 23 + }, + "worst": { + "word": "kompass", + "letters": 46 + }, + "totalWords": { + "3": 1, + "10": 1 + }, + "totalLetters": { + "23": 1, + "46": 1 + }, + "gamesPlayed": 2, + "medianWords": 6.5, + "medianLetters": 34.5 + }, + "9": { + "best": { + "word": "bettelarm", + "letters": 32 + }, + "worst": { + "word": "kopfhörer", + "letters": 96 + }, + "totalWords": { + "4": 1, + "6": 1, + "7": 1, + "19": 1 + }, + "totalLetters": { + "32": 2, + "50": 1, + "96": 1 + }, + "gamesPlayed": 4, + "medianWords": 6.5, + "medianLetters": 41 + }, + "10": { + "best": { + "word": "darm", + "letters": 20 + }, + "worst": { + "word": "reliquie", + "letters": 84 + }, + "totalWords": { + "3": 1, + "18": 1 + }, + "totalLetters": { + "20": 1, + "84": 1 + }, + "gamesPlayed": 2, + "medianWords": 10.5, + "medianLetters": 52 + }, + "12": { + "best": { + "word": "schikane", + "letters": 82 + }, + "worst": { + "word": "schikane", + "letters": 82 + }, + "totalWords": { + "16": 1 + }, + "totalLetters": { + "82": 1 + }, + "gamesPlayed": 1, + "medianWords": 16, + "medianLetters": 82 + }, + "year": { + "best": { + "word": "buch", + "letters": 17 + }, + "worst": { + "word": "zerstört", + "letters": 107 + }, + "totalWords": { + "2": 5, + "3": 7, + "4": 3, + "5": 4, + "6": 5, + "7": 8, + "8": 2, + "9": 2, + "10": 4, + "13": 1, + "14": 2, + "16": 2, + "18": 2, + "19": 2 + }, + "totalLetters": { + "17": 1, + "18": 1, + "19": 2, + "20": 2, + "21": 1, + "22": 2, + "23": 1, + "25": 2, + "27": 1, + "28": 1, + "30": 2, + "31": 1, + "32": 2, + "33": 1, + "34": 1, + "37": 1, + "38": 2, + "40": 2, + "41": 1, + "42": 1, + "43": 1, + "45": 2, + "46": 1, + "47": 1, + "48": 1, + "50": 2, + "52": 2, + "53": 1, + "63": 1, + "74": 2, + "77": 2, + "82": 1, + "84": 1, + "90": 1, + "96": 1, + "107": 1 + }, + "gamesPlayed": 49, + "medianWords": 7, + "medianLetters": 40 + } + }, + "dates": { + "1": [ + "17.01.2025", + "12.01.2025", + "21.01.2025", + "29.01.2025", + "13.01.2025" + ], + "2": [ + "03.02.2025", + "10.02.2025", + "22.02.2025", + "14.02.2025", + "08.02.2025", + "17.02.2025", + "09.02.2025", + "20.12.2025" + ], + "3": [ + "11.03.2025", + "08.03.2025", + "22.03.2025" + ], + "4": [ + "09.04.2025", + "08.04.2025" + ], + "5": [ + "06.05.2025" + ], + "6": [ + "12.06.2025", + "16.06.2025", + "23.06.2025", + "24.06.2025" + ], + "7": [ + "31.07.2025", + "19.07.2025" + ], + "8": [ + "10.08.2025" + ], + "9": [ + "11.09.2025", + "13.09.2025", + "30.09.2025" + ], + "10": [ + "28.10.2025" + ], + "12": [ + "20.12.2025" + ], + "year": [ + "03.02.2025", + "09.04.2025", + "10.02.2025", + "10.08.2025", + "11.03.2025", + "11.09.2025", + "12.06.2025", + "13.09.2025", + "16.06.2025", + "17.01.2025", + "23.06.2025", + "24.06.2025", + "28.10.2025", + "30.09.2025", + "22.02.2025", + "12.01.2025", + "14.02.2025", + "08.02.2025", + "08.04.2025", + "31.07.2025", + "06.05.2025", + "17.02.2025", + "19.07.2025", + "08.03.2025", + "22.03.2025", + "21.01.2025", + "09.02.2025", + "29.01.2025", + "13.01.2025", + "20.12.2025" + ] + }, + "worstDates": { + "1": [ + "11.01.2025", + "15.01.2025", + "27.01.2025", + "31.01.2025", + "12.01.2025", + "14.01.2025", + "26.01.2025", + "28.01.2025", + "21.01.2025", + "19.01.2025", + "18.01.2025" + ], + "2": [ + "03.02.2025", + "22.02.2025", + "12.02.2025", + "05.02.2025", + "09.02.2025", + "15.02.2025", + "04.02.2025", + "20.12.2025" + ], + "3": [ + "06.03.2025", + "08.03.2025" + ], + "4": [ + "09.04.2025" + ], + "5": [ + "06.05.2025" + ], + "6": [ + "12.06.2025", + "16.06.2025", + "23.06.2025" + ], + "7": [ + "10.07.2025", + "31.07.2025", + "08.07.2025" + ], + "8": [ + "11.08.2025" + ], + "9": [ + "11.09.2025", + "30.09.2025", + "12.09.2025" + ], + "10": [ + "04.10.2025" + ], + "12": [ + "20.12.2025" + ], + "year": [ + "03.02.2025", + "06.03.2025", + "09.04.2025", + "10.07.2025", + "11.01.2025", + "11.09.2025", + "12.06.2025", + "15.01.2025", + "16.06.2025", + "23.06.2025", + "27.01.2025", + "30.09.2025", + "31.01.2025", + "22.02.2025", + "12.01.2025", + "12.02.2025", + "14.01.2025", + "31.07.2025", + "08.07.2025", + "05.02.2025", + "06.05.2025", + "11.08.2025", + "04.10.2025", + "26.01.2025", + "08.03.2025", + "28.01.2025", + "21.01.2025", + "19.01.2025", + "09.02.2025", + "12.09.2025", + "15.02.2025", + "04.02.2025", + "18.01.2025", + "20.12.2025" + ] + } + }, + "Greyman": { + "hardest50": { + "best": { + "word": "hintern", + "letters": 20 + }, + "worst": { + "word": "erbringen", + "letters": 56 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 7, + "5": 10, + "6": 7, + "7": 7, + "8": 3, + "9": 1 + }, + "totalLetters": { + "20": 2, + "22": 2, + "23": 1, + "24": 1, + "26": 2, + "27": 2, + "28": 1, + "29": 1, + "30": 2, + "31": 2, + "33": 1, + "34": 3, + "35": 2, + "36": 1, + "37": 4, + "38": 1, + "40": 1, + "41": 1, + "42": 2, + "45": 2, + "46": 2, + "52": 1, + "56": 1 + }, + "gamesPlayed": 38, + "medianWords": 4.5, + "medianLetters": 33.5 + }, + "results": { + "1": { + "best": { + "word": "tenor", + "letters": 21 + }, + "worst": { + "word": "enkelsohn", + "letters": 52 + }, + "totalWords": { + "3": 1, + "4": 1, + "5": 6, + "6": 2, + "7": 1, + "8": 2 + }, + "totalLetters": { + "21": 1, + "22": 1, + "29": 1, + "30": 1, + "31": 1, + "33": 1, + "34": 2, + "37": 2, + "42": 1, + "45": 1, + "52": 1 + }, + "gamesPlayed": 13, + "medianWords": 5, + "medianLetters": 34 + }, + "2": { + "best": { + "word": "wärmen", + "letters": 20 + }, + "worst": { + "word": "erbringen", + "letters": 56 + }, + "totalWords": { + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 3, + "8": 1, + "9": 1 + }, + "totalLetters": { + "20": 1, + "22": 1, + "35": 1, + "36": 1, + "41": 1, + "42": 1, + "45": 1, + "46": 1, + "56": 1 + }, + "gamesPlayed": 9, + "medianWords": 7, + "medianLetters": 41 + }, + "3": { + "best": { + "word": "spind", + "letters": 23 + }, + "worst": { + "word": "stille", + "letters": 34 + }, + "totalWords": { + "4": 2, + "5": 1, + "6": 1 + }, + "totalLetters": { + "23": 1, + "26": 1, + "30": 1, + "34": 1 + }, + "gamesPlayed": 4, + "medianWords": 4.5, + "medianLetters": 28 + }, + "4": { + "best": { + "word": "ball", + "letters": 24 + }, + "worst": { + "word": "ball", + "letters": 24 + }, + "totalWords": { + "5": 1 + }, + "totalLetters": { + "24": 1 + }, + "gamesPlayed": 1, + "medianWords": 5, + "medianLetters": 24 + }, + "5": { + "best": { + "word": "buch", + "letters": 17 + }, + "worst": { + "word": "buch", + "letters": 17 + }, + "totalWords": { + "2": 1 + }, + "totalLetters": { + "17": 1 + }, + "gamesPlayed": 1, + "medianWords": 2, + "medianLetters": 17 + }, + "6": { + "best": { + "word": "hintern", + "letters": 20 + }, + "worst": { + "word": "böschung", + "letters": 37 + }, + "totalWords": { + "2": 1, + "7": 1 + }, + "totalLetters": { + "20": 1, + "37": 1 + }, + "gamesPlayed": 2, + "medianWords": 4.5, + "medianLetters": 28.5 + }, + "7": { + "best": { + "word": "dachboden", + "letters": 26 + }, + "worst": { + "word": "kneifen", + "letters": 40 + }, + "totalWords": { + "3": 1, + "6": 2 + }, + "totalLetters": { + "26": 1, + "35": 1, + "40": 1 + }, + "gamesPlayed": 3, + "medianWords": 6, + "medianLetters": 35 + }, + "8": { + "best": { + "word": "kompass", + "letters": 27 + }, + "worst": { + "word": "toast", + "letters": 38 + }, + "totalWords": { + "4": 2, + "7": 1 + }, + "totalLetters": { + "27": 1, + "31": 1, + "38": 1 + }, + "gamesPlayed": 3, + "medianWords": 4, + "medianLetters": 31 + }, + "9": { + "best": { + "word": "kopfhörer", + "letters": 28 + }, + "worst": { + "word": "bettelarm", + "letters": 37 + }, + "totalWords": { + "4": 1, + "6": 1 + }, + "totalLetters": { + "28": 1, + "37": 1 + }, + "gamesPlayed": 2, + "medianWords": 5, + "medianLetters": 32.5 + }, + "10": { + "best": { + "word": "darm", + "letters": 27 + }, + "worst": { + "word": "reliquie", + "letters": 46 + }, + "totalWords": { + "5": 1, + "7": 1 + }, + "totalLetters": { + "27": 1, + "46": 1 + }, + "gamesPlayed": 2, + "medianWords": 6, + "medianLetters": 36.5 + }, + "year": { + "best": { + "word": "buch", + "letters": 17 + }, + "worst": { + "word": "erbringen", + "letters": 56 + }, + "totalWords": { + "2": 2, + "3": 3, + "4": 7, + "5": 10, + "6": 7, + "7": 7, + "8": 3, + "9": 1 + }, + "totalLetters": { + "17": 1, + "20": 2, + "21": 1, + "22": 2, + "23": 1, + "24": 1, + "26": 2, + "27": 2, + "28": 1, + "29": 1, + "30": 2, + "31": 2, + "33": 1, + "34": 3, + "35": 2, + "36": 1, + "37": 4, + "38": 1, + "40": 1, + "41": 1, + "42": 2, + "45": 2, + "46": 2, + "52": 1, + "56": 1 + }, + "gamesPlayed": 40, + "medianWords": 4.5, + "medianLetters": 33.5 + } + }, + "dates": { + "1": [ + "11.01.2025", + "15.01.2025", + "27.01.2025", + "31.01.2025", + "14.01.2025", + "16.01.2025", + "26.01.2025", + "28.01.2025", + "19.01.2025", + "18.01.2025" + ], + "2": [ + "12.02.2025", + "05.02.2025", + "01.02.2025", + "15.02.2025", + "04.02.2025" + ], + "3": [ + "06.03.2025", + "05.03.2025" + ], + "5": [ + "06.05.2025" + ], + "6": [ + "12.06.2025" + ], + "7": [ + "10.07.2025", + "08.07.2025" + ], + "8": [ + "11.08.2025", + "01.08.2025" + ], + "9": [ + "12.09.2025" + ], + "10": [ + "04.10.2025" + ], + "year": [ + "06.03.2025", + "10.07.2025", + "11.01.2025", + "12.06.2025", + "15.01.2025", + "27.01.2025", + "31.01.2025", + "12.02.2025", + "05.03.2025", + "14.01.2025", + "08.07.2025", + "05.02.2025", + "06.05.2025", + "11.08.2025", + "04.10.2025", + "16.01.2025", + "26.01.2025", + "28.01.2025", + "19.01.2025", + "01.02.2025", + "12.09.2025", + "15.02.2025", + "04.02.2025", + "18.01.2025", + "01.08.2025" + ] + }, + "worstDates": { + "1": [ + "17.01.2025", + "16.01.2025", + "29.01.2025", + "13.01.2025" + ], + "2": [ + "10.02.2025", + "14.02.2025", + "08.02.2025", + "17.02.2025", + "01.02.2025" + ], + "3": [ + "11.03.2025", + "05.03.2025", + "22.03.2025" + ], + "4": [ + "08.04.2025" + ], + "5": [ + "06.05.2025" + ], + "6": [ + "12.06.2025", + "24.06.2025" + ], + "7": [ + "19.07.2025" + ], + "8": [ + "10.08.2025", + "01.08.2025" + ], + "9": [ + "13.09.2025" + ], + "10": [ + "28.10.2025" + ], + "year": [ + "10.02.2025", + "10.08.2025", + "11.03.2025", + "12.06.2025", + "13.09.2025", + "17.01.2025", + "24.06.2025", + "28.10.2025", + "05.03.2025", + "14.02.2025", + "08.02.2025", + "08.04.2025", + "06.05.2025", + "17.02.2025", + "19.07.2025", + "16.01.2025", + "22.03.2025", + "01.02.2025", + "29.01.2025", + "13.01.2025", + "01.08.2025" + ] + } + } + }, + "wordsByDates": { + "20.12.2025": "schikane", + "28.10.2025": "darm", + "04.10.2025": "reliquie", + "30.09.2025": "bein", + "13.09.2025": "bettelarm", + "12.09.2025": "kopfhörer", + "11.09.2025": "tratschen", + "11.08.2025": "kompass", + "10.08.2025": "toast", + "01.08.2025": "afrikaner", + "31.07.2025": "angeln", + "19.07.2025": "feldzug", + "10.07.2025": "kneifen", + "08.07.2025": "dachboden", + "24.06.2025": "böschung", + "23.06.2025": "langfinger", + "16.06.2025": "verfassung", + "12.06.2025": "hintern", + "06.05.2025": "buch", + "09.04.2025": "scheidung", + "08.04.2025": "ball", + "22.03.2025": "spind", + "11.03.2025": "reden", + "08.03.2025": "schlecht", + "06.03.2025": "kabarett", + "05.03.2025": "stille", + "22.02.2025": "hysterisch", + "17.02.2025": "degen", + "15.02.2025": "wärmen", + "14.02.2025": "erbringen", + "12.02.2025": "überführen", + "10.02.2025": "rastplatz", + "09.02.2025": "agent", + "08.02.2025": "gutachter", + "05.02.2025": "japanisch", + "04.02.2025": "stammbaum", + "03.02.2025": "bitter", + "01.02.2025": "türke", + "31.01.2025": "urenkel", + "29.01.2025": "mutter", + "28.01.2025": "zerstört", + "27.01.2025": "feminin", + "26.01.2025": "plump", + "21.01.2025": "holocaust", + "19.01.2025": "beleg", + "18.01.2025": "knirschen", + "17.01.2025": "tenor", + "16.01.2025": "dahinter", + "15.01.2025": "lyrik", + "14.01.2025": "vorahnung", + "13.01.2025": "enkelsohn", + "12.01.2025": "nichts", + "11.01.2025": "zweifach" + }, + "datesByWords": { + "schikane": "20.12.2025", + "darm": "28.10.2025", + "reliquie": "04.10.2025", + "bein": "30.09.2025", + "bettelarm": "13.09.2025", + "kopfhörer": "12.09.2025", + "tratschen": "11.09.2025", + "kompass": "11.08.2025", + "toast": "10.08.2025", + "afrikaner": "01.08.2025", + "angeln": "31.07.2025", + "feldzug": "19.07.2025", + "kneifen": "10.07.2025", + "dachboden": "08.07.2025", + "böschung": "24.06.2025", + "langfinger": "23.06.2025", + "verfassung": "16.06.2025", + "hintern": "12.06.2025", + "buch": "06.05.2025", + "scheidung": "09.04.2025", + "ball": "08.04.2025", + "spind": "22.03.2025", + "reden": "11.03.2025", + "schlecht": "08.03.2025", + "kabarett": "06.03.2025", + "stille": "05.03.2025", + "hysterisch": "22.02.2025", + "degen": "17.02.2025", + "wärmen": "15.02.2025", + "erbringen": "14.02.2025", + "überführen": "12.02.2025", + "rastplatz": "10.02.2025", + "agent": "09.02.2025", + "gutachter": "08.02.2025", + "japanisch": "05.02.2025", + "stammbaum": "04.02.2025", + "bitter": "03.02.2025", + "türke": "01.02.2025", + "urenkel": "31.01.2025", + "mutter": "29.01.2025", + "zerstört": "28.01.2025", + "feminin": "27.01.2025", + "plump": "26.01.2025", + "holocaust": "21.01.2025", + "beleg": "19.01.2025", + "knirschen": "18.01.2025", + "tenor": "17.01.2025", + "dahinter": "16.01.2025", + "lyrik": "15.01.2025", + "vorahnung": "14.01.2025", + "enkelsohn": "13.01.2025", + "nichts": "12.01.2025", + "zweifach": "11.01.2025" + }, + "rankByWords": { + "bitter": { + "best": { + "word": "bitter", + "letters": 19 + }, + "worst": { + "word": "bitter", + "letters": 19 + }, + "totalWords": { + "2": 1 + }, + "totalLetters": { + "19": 1 + }, + "gamesPlayed": 1, + "medianWords": 2, + "medianLetters": 19 + }, + "kabarett": { + "best": { + "word": "kabarett", + "letters": 30 + }, + "worst": { + "word": "kabarett", + "letters": 38 + }, + "totalWords": { + "4": 1, + "6": 1 + }, + "totalLetters": { + "30": 1, + "38": 1 + }, + "gamesPlayed": 2, + "medianWords": 5, + "medianLetters": 34 + }, + "scheidung": { + "best": { + "word": "scheidung", + "letters": 41 + }, + "worst": { + "word": "scheidung", + "letters": 41 + }, + "totalWords": { + "5": 1 + }, + "totalLetters": { + "41": 1 + }, + "gamesPlayed": 1, + "medianWords": 5, + "medianLetters": 41 + }, + "rastplatz": { + "best": { + "word": "rastplatz", + "letters": 40 + }, + "worst": { + "word": "rastplatz", + "letters": 42 + }, + "totalWords": { + "7": 2 + }, + "totalLetters": { + "40": 1, + "42": 1 + }, + "gamesPlayed": 2, + "medianWords": 7, + "medianLetters": 41 + }, + "kneifen": { + "best": { + "word": "kneifen", + "letters": 40 + }, + "worst": { + "word": "kneifen", + "letters": 43 + }, + "totalWords": { + "6": 1, + "8": 1 + }, + "totalLetters": { + "40": 1, + "43": 1 + }, + "gamesPlayed": 2, + "medianWords": 7, + "medianLetters": 41.5 + }, + "toast": { + "best": { + "word": "toast", + "letters": 23 + }, + "worst": { + "word": "toast", + "letters": 38 + }, + "totalWords": { + "3": 1, + "7": 1 + }, + "totalLetters": { + "23": 1, + "38": 1 + }, + "gamesPlayed": 2, + "medianWords": 5, + "medianLetters": 30.5 + }, + "zweifach": { + "best": { + "word": "zweifach", + "letters": 34 + }, + "worst": { + "word": "zweifach", + "letters": 45 + }, + "totalWords": { + "5": 1, + "10": 1 + }, + "totalLetters": { + "34": 1, + "45": 1 + }, + "gamesPlayed": 2, + "medianWords": 7.5, + "medianLetters": 39.5 + }, + "reden": { + "best": { + "word": "reden", + "letters": 25 + }, + "worst": { + "word": "reden", + "letters": 26 + }, + "totalWords": { + "4": 1, + "5": 1 + }, + "totalLetters": { + "25": 1, + "26": 1 + }, + "gamesPlayed": 2, + "medianWords": 4.5, + "medianLetters": 25.5 + }, + "tratschen": { + "best": { + "word": "tratschen", + "letters": 50 + }, + "worst": { + "word": "tratschen", + "letters": 50 + }, + "totalWords": { + "7": 1 + }, + "totalLetters": { + "50": 1 + }, + "gamesPlayed": 1, + "medianWords": 7, + "medianLetters": 50 + }, + "hintern": { + "best": { + "word": "hintern", + "letters": 20 + }, + "worst": { + "word": "hintern", + "letters": 20 + }, + "totalWords": { + "2": 2 + }, + "totalLetters": { + "20": 2 + }, + "gamesPlayed": 2, + "medianWords": 2, + "medianLetters": 20 + }, + "bettelarm": { + "best": { + "word": "bettelarm", + "letters": 32 + }, + "worst": { + "word": "bettelarm", + "letters": 37 + }, + "totalWords": { + "4": 1, + "6": 1 + }, + "totalLetters": { + "32": 1, + "37": 1 + }, + "gamesPlayed": 2, + "medianWords": 5, + "medianLetters": 34.5 + }, + "lyrik": { + "best": { + "word": "lyrik", + "letters": 22 + }, + "worst": { + "word": "lyrik", + "letters": 40 + }, + "totalWords": { + "4": 1, + "7": 1 + }, + "totalLetters": { + "22": 1, + "40": 1 + }, + "gamesPlayed": 2, + "medianWords": 5.5, + "medianLetters": 31 + }, + "verfassung": { + "best": { + "word": "verfassung", + "letters": 74 + }, + "worst": { + "word": "verfassung", + "letters": 74 + }, + "totalWords": { + "13": 1 + }, + "totalLetters": { + "74": 1 + }, + "gamesPlayed": 1, + "medianWords": 13, + "medianLetters": 74 + }, + "tenor": { + "best": { + "word": "tenor", + "letters": 18 + }, + "worst": { + "word": "tenor", + "letters": 21 + }, + "totalWords": { + "2": 1, + "3": 1 + }, + "totalLetters": { + "18": 1, + "21": 1 + }, + "gamesPlayed": 2, + "medianWords": 2.5, + "medianLetters": 19.5 + }, + "langfinger": { + "best": { + "word": "langfinger", + "letters": 53 + }, + "worst": { + "word": "langfinger", + "letters": 53 + }, + "totalWords": { + "9": 1 + }, + "totalLetters": { + "53": 1 + }, + "gamesPlayed": 1, + "medianWords": 9, + "medianLetters": 53 + }, + "böschung": { + "best": { + "word": "böschung", + "letters": 25 + }, + "worst": { + "word": "böschung", + "letters": 37 + }, + "totalWords": { + "3": 1, + "7": 1 + }, + "totalLetters": { + "25": 1, + "37": 1 + }, + "gamesPlayed": 2, + "medianWords": 5, + "medianLetters": 31 + }, + "feminin": { + "best": { + "word": "feminin", + "letters": 29 + }, + "worst": { + "word": "feminin", + "letters": 30 + }, + "totalWords": { + "5": 2 + }, + "totalLetters": { + "29": 1, + "30": 1 + }, + "gamesPlayed": 2, + "medianWords": 5, + "medianLetters": 29.5 + }, + "darm": { + "best": { + "word": "darm", + "letters": 20 + }, + "worst": { + "word": "darm", + "letters": 27 + }, + "totalWords": { + "3": 1, + "5": 1 + }, + "totalLetters": { + "20": 1, + "27": 1 + }, + "gamesPlayed": 2, + "medianWords": 4, + "medianLetters": 23.5 + }, + "bein": { + "best": { + "word": "bein", + "letters": 32 + }, + "worst": { + "word": "bein", + "letters": 32 + }, + "totalWords": { + "6": 1 + }, + "totalLetters": { + "32": 1 + }, + "gamesPlayed": 1, + "medianWords": 6, + "medianLetters": 32 + }, + "urenkel": { + "best": { + "word": "urenkel", + "letters": 31 + }, + "worst": { + "word": "urenkel", + "letters": 52 + }, + "totalWords": { + "5": 1, + "10": 1 + }, + "totalLetters": { + "31": 1, + "52": 1 + }, + "gamesPlayed": 2, + "medianWords": 7.5, + "medianLetters": 41.5 + }, + "hysterisch": { + "best": { + "word": "hysterisch", + "letters": 27 + }, + "worst": { + "word": "hysterisch", + "letters": 27 + }, + "totalWords": { + "3": 1 + }, + "totalLetters": { + "27": 1 + }, + "gamesPlayed": 1, + "medianWords": 3, + "medianLetters": 27 + }, + "nichts": { + "best": { + "word": "nichts", + "letters": 22 + }, + "worst": { + "word": "nichts", + "letters": 22 + }, + "totalWords": { + "3": 1 + }, + "totalLetters": { + "22": 1 + }, + "gamesPlayed": 1, + "medianWords": 3, + "medianLetters": 22 + }, + "überführen": { + "best": { + "word": "überführen", + "letters": 46 + }, + "worst": { + "word": "überführen", + "letters": 90 + }, + "totalWords": { + "9": 1, + "16": 1 + }, + "totalLetters": { + "46": 1, + "90": 1 + }, + "gamesPlayed": 2, + "medianWords": 12.5, + "medianLetters": 68 + }, + "stille": { + "best": { + "word": "stille", + "letters": 34 + }, + "worst": { + "word": "stille", + "letters": 34 + }, + "totalWords": { + "6": 1 + }, + "totalLetters": { + "34": 1 + }, + "gamesPlayed": 1, + "medianWords": 6, + "medianLetters": 34 + }, + "vorahnung": { + "best": { + "word": "vorahnung", + "letters": 42 + }, + "worst": { + "word": "vorahnung", + "letters": 74 + }, + "totalWords": { + "6": 1, + "14": 1 + }, + "totalLetters": { + "42": 1, + "74": 1 + }, + "gamesPlayed": 2, + "medianWords": 10, + "medianLetters": 58 + }, + "erbringen": { + "best": { + "word": "erbringen", + "letters": 50 + }, + "worst": { + "word": "erbringen", + "letters": 56 + }, + "totalWords": { + "8": 2 + }, + "totalLetters": { + "50": 1, + "56": 1 + }, + "gamesPlayed": 2, + "medianWords": 8, + "medianLetters": 53 + }, + "gutachter": { + "best": { + "word": "gutachter", + "letters": 38 + }, + "worst": { + "word": "gutachter", + "letters": 41 + }, + "totalWords": { + "5": 1, + "7": 1 + }, + "totalLetters": { + "38": 1, + "41": 1 + }, + "gamesPlayed": 2, + "medianWords": 6, + "medianLetters": 39.5 + }, + "ball": { + "best": { + "word": "ball", + "letters": 21 + }, + "worst": { + "word": "ball", + "letters": 24 + }, + "totalWords": { + "3": 1, + "5": 1 + }, + "totalLetters": { + "21": 1, + "24": 1 + }, + "gamesPlayed": 2, + "medianWords": 4, + "medianLetters": 22.5 + }, + "angeln": { + "best": { + "word": "angeln", + "letters": 28 + }, + "worst": { + "word": "angeln", + "letters": 28 + }, + "totalWords": { + "4": 1 + }, + "totalLetters": { + "28": 1 + }, + "gamesPlayed": 1, + "medianWords": 4, + "medianLetters": 28 + }, + "dachboden": { + "best": { + "word": "dachboden", + "letters": 26 + }, + "worst": { + "word": "dachboden", + "letters": 47 + }, + "totalWords": { + "3": 1, + "7": 1 + }, + "totalLetters": { + "26": 1, + "47": 1 + }, + "gamesPlayed": 2, + "medianWords": 5, + "medianLetters": 36.5 + }, + "japanisch": { + "best": { + "word": "japanisch", + "letters": 45 + }, + "worst": { + "word": "japanisch", + "letters": 77 + }, + "totalWords": { + "7": 1, + "14": 1 + }, + "totalLetters": { + "45": 1, + "77": 1 + }, + "gamesPlayed": 2, + "medianWords": 10.5, + "medianLetters": 61 + }, + "buch": { + "best": { + "word": "buch", + "letters": 17 + }, + "worst": { + "word": "buch", + "letters": 17 + }, + "totalWords": { + "2": 2 + }, + "totalLetters": { + "17": 2 + }, + "gamesPlayed": 2, + "medianWords": 2, + "medianLetters": 17 + }, + "degen": { + "best": { + "word": "degen", + "letters": 31 + }, + "worst": { + "word": "degen", + "letters": 35 + }, + "totalWords": { + "6": 2 + }, + "totalLetters": { + "31": 1, + "35": 1 + }, + "gamesPlayed": 2, + "medianWords": 6, + "medianLetters": 33 + }, + "kompass": { + "best": { + "word": "kompass", + "letters": 27 + }, + "worst": { + "word": "kompass", + "letters": 46 + }, + "totalWords": { + "4": 1, + "10": 1 + }, + "totalLetters": { + "27": 1, + "46": 1 + }, + "gamesPlayed": 2, + "medianWords": 7, + "medianLetters": 36.5 + }, + "reliquie": { + "best": { + "word": "reliquie", + "letters": 46 + }, + "worst": { + "word": "reliquie", + "letters": 84 + }, + "totalWords": { + "7": 1, + "18": 1 + }, + "totalLetters": { + "46": 1, + "84": 1 + }, + "gamesPlayed": 2, + "medianWords": 12.5, + "medianLetters": 65 + }, + "feldzug": { + "best": { + "word": "feldzug", + "letters": 34 + }, + "worst": { + "word": "feldzug", + "letters": 35 + }, + "totalWords": { + "6": 2 + }, + "totalLetters": { + "34": 1, + "35": 1 + }, + "gamesPlayed": 2, + "medianWords": 6, + "medianLetters": 34.5 + }, + "dahinter": { + "best": { + "word": "dahinter", + "letters": 33 + }, + "worst": { + "word": "dahinter", + "letters": 33 + }, + "totalWords": { + "5": 1 + }, + "totalLetters": { + "33": 1 + }, + "gamesPlayed": 1, + "medianWords": 5, + "medianLetters": 33 + }, + "plump": { + "best": { + "word": "plump", + "letters": 34 + }, + "worst": { + "word": "plump", + "letters": 37 + }, + "totalWords": { + "7": 1, + "8": 1 + }, + "totalLetters": { + "34": 1, + "37": 1 + }, + "gamesPlayed": 2, + "medianWords": 7.5, + "medianLetters": 35.5 + }, + "schlecht": { + "best": { + "word": "schlecht", + "letters": 52 + }, + "worst": { + "word": "schlecht", + "letters": 52 + }, + "totalWords": { + "9": 1 + }, + "totalLetters": { + "52": 1 + }, + "gamesPlayed": 1, + "medianWords": 9, + "medianLetters": 52 + }, + "spind": { + "best": { + "word": "spind", + "letters": 22 + }, + "worst": { + "word": "spind", + "letters": 23 + }, + "totalWords": { + "3": 1, + "4": 1 + }, + "totalLetters": { + "22": 1, + "23": 1 + }, + "gamesPlayed": 2, + "medianWords": 3.5, + "medianLetters": 22.5 + }, + "zerstört": { + "best": { + "word": "zerstört", + "letters": 45 + }, + "worst": { + "word": "zerstört", + "letters": 107 + }, + "totalWords": { + "7": 1, + "19": 1 + }, + "totalLetters": { + "45": 1, + "107": 1 + }, + "gamesPlayed": 2, + "medianWords": 13, + "medianLetters": 76 + }, + "holocaust": { + "best": { + "word": "holocaust", + "letters": 45 + }, + "worst": { + "word": "holocaust", + "letters": 45 + }, + "totalWords": { + "7": 1 + }, + "totalLetters": { + "45": 1 + }, + "gamesPlayed": 1, + "medianWords": 7, + "medianLetters": 45 + }, + "beleg": { + "best": { + "word": "beleg", + "letters": 30 + }, + "worst": { + "word": "beleg", + "letters": 33 + }, + "totalWords": { + "5": 1, + "6": 1 + }, + "totalLetters": { + "30": 1, + "33": 1 + }, + "gamesPlayed": 2, + "medianWords": 5.5, + "medianLetters": 31.5 + }, + "agent": { + "best": { + "word": "agent", + "letters": 30 + }, + "worst": { + "word": "agent", + "letters": 30 + }, + "totalWords": { + "5": 1 + }, + "totalLetters": { + "30": 1 + }, + "gamesPlayed": 1, + "medianWords": 5, + "medianLetters": 30 + }, + "türke": { + "best": { + "word": "türke", + "letters": 22 + }, + "worst": { + "word": "türke", + "letters": 22 + }, + "totalWords": { + "3": 1 + }, + "totalLetters": { + "22": 1 + }, + "gamesPlayed": 1, + "medianWords": 3, + "medianLetters": 22 + }, + "kopfhörer": { + "best": { + "word": "kopfhörer", + "letters": 28 + }, + "worst": { + "word": "kopfhörer", + "letters": 96 + }, + "totalWords": { + "4": 1, + "19": 1 + }, + "totalLetters": { + "28": 1, + "96": 1 + }, + "gamesPlayed": 2, + "medianWords": 11.5, + "medianLetters": 62 + }, + "mutter": { + "best": { + "word": "mutter", + "letters": 19 + }, + "worst": { + "word": "mutter", + "letters": 37 + }, + "totalWords": { + "2": 1, + "5": 1 + }, + "totalLetters": { + "19": 1, + "37": 1 + }, + "gamesPlayed": 2, + "medianWords": 3.5, + "medianLetters": 28 + }, + "wärmen": { + "best": { + "word": "wärmen", + "letters": 20 + }, + "worst": { + "word": "wärmen", + "letters": 48 + }, + "totalWords": { + "4": 1, + "7": 1 + }, + "totalLetters": { + "20": 1, + "48": 1 + }, + "gamesPlayed": 2, + "medianWords": 5.5, + "medianLetters": 34 + }, + "enkelsohn": { + "best": { + "word": "enkelsohn", + "letters": 42 + }, + "worst": { + "word": "enkelsohn", + "letters": 52 + }, + "totalWords": { + "7": 1, + "8": 1 + }, + "totalLetters": { + "42": 1, + "52": 1 + }, + "gamesPlayed": 2, + "medianWords": 7.5, + "medianLetters": 47 + }, + "stammbaum": { + "best": { + "word": "stammbaum", + "letters": 36 + }, + "worst": { + "word": "stammbaum", + "letters": 77 + }, + "totalWords": { + "5": 1, + "18": 1 + }, + "totalLetters": { + "36": 1, + "77": 1 + }, + "gamesPlayed": 2, + "medianWords": 11.5, + "medianLetters": 56.5 + }, + "knirschen": { + "best": { + "word": "knirschen", + "letters": 37 + }, + "worst": { + "word": "knirschen", + "letters": 63 + }, + "totalWords": { + "6": 1, + "10": 1 + }, + "totalLetters": { + "37": 1, + "63": 1 + }, + "gamesPlayed": 2, + "medianWords": 8, + "medianLetters": 50 + }, + "schikane": { + "best": { + "word": "schikane", + "letters": 82 + }, + "worst": { + "word": "schikane", + "letters": 82 + }, + "totalWords": { + "16": 1 + }, + "totalLetters": { + "82": 1 + }, + "gamesPlayed": 1, + "medianWords": 16, + "medianLetters": 82 + }, + "afrikaner": { + "best": { + "word": "afrikaner", + "letters": 31 + }, + "worst": { + "word": "afrikaner", + "letters": 31 + }, + "totalWords": { + "4": 1 + }, + "totalLetters": { + "31": 1 + }, + "gamesPlayed": 1, + "medianWords": 4, + "medianLetters": 31 + } + }, + "hardestWords": [ + "schikane", + "zerstört", + "verfassung", + "überführen", + "reliquie", + "kopfhörer", + "japanisch", + "vorahnung", + "stammbaum", + "langfinger", + "erbringen", + "schlecht", + "knirschen", + "tratschen", + "enkelsohn", + "holocaust", + "urenkel", + "kneifen", + "rastplatz", + "scheidung", + "zweifach", + "gutachter", + "kompass", + "dachboden", + "plump", + "feldzug", + "bettelarm", + "stille", + "wärmen", + "kabarett", + "degen", + "dahinter", + "bein", + "beleg", + "lyrik", + "böschung", + "afrikaner", + "toast", + "agent", + "feminin", + "angeln", + "mutter", + "hysterisch", + "reden", + "darm", + "ball", + "spind", + "nichts", + "türke", + "hintern" + ], + "bestWords": [ + "buch", + "bitter", + "tenor", + "hintern", + "nichts", + "türke", + "spind", + "ball", + "darm", + "reden", + "hysterisch", + "mutter", + "angeln", + "feminin", + "agent", + "toast", + "afrikaner", + "böschung", + "lyrik", + "beleg", + "bein", + "dahinter", + "degen", + "kabarett", + "wärmen", + "stille", + "bettelarm", + "feldzug", + "plump", + "dachboden", + "kompass", + "gutachter", + "zweifach", + "scheidung", + "rastplatz", + "kneifen", + "urenkel", + "holocaust", + "enkelsohn", + "tratschen", + "knirschen", + "schlecht", + "erbringen", + "langfinger", + "stammbaum", + "vorahnung", + "japanisch", + "kopfhörer", + "reliquie", + "überführen" + ] +} \ No newline at end of file diff --git a/public/year-summary/2025/en-info.json b/public/year-summary/2025/en-info.json new file mode 100644 index 000000000..def477633 --- /dev/null +++ b/public/year-summary/2025/en-info.json @@ -0,0 +1,18519 @@ +{ + "all": { + "best": { + "word": "team", + "letters": 9 + }, + "worst": { + "word": "clergyman", + "letters": 149 + }, + "totalWords": { + "2": 188, + "3": 486, + "4": 573, + "5": 427, + "6": 281, + "7": 182, + "8": 104, + "9": 52, + "10": 43, + "11": 26, + "12": 9, + "13": 9, + "14": 9, + "15": 1, + "16": 1, + "18": 2, + "19": 1, + "20": 1, + "22": 1, + "33": 1 + }, + "totalLetters": { + "9": 1, + "10": 2, + "11": 1, + "12": 4, + "13": 18, + "14": 12, + "15": 28, + "16": 29, + "17": 54, + "18": 60, + "19": 63, + "20": 102, + "21": 100, + "22": 112, + "23": 91, + "24": 109, + "25": 115, + "26": 125, + "27": 127, + "28": 96, + "29": 90, + "30": 90, + "31": 85, + "32": 88, + "33": 69, + "34": 76, + "35": 66, + "36": 51, + "37": 57, + "38": 60, + "39": 45, + "40": 40, + "41": 46, + "42": 31, + "43": 31, + "44": 15, + "45": 23, + "46": 19, + "47": 16, + "48": 19, + "49": 19, + "50": 10, + "51": 11, + "52": 7, + "53": 6, + "54": 7, + "55": 10, + "56": 7, + "57": 6, + "58": 4, + "59": 7, + "60": 7, + "61": 5, + "62": 2, + "63": 4, + "64": 2, + "65": 1, + "66": 1, + "67": 2, + "69": 1, + "70": 2, + "71": 1, + "77": 1, + "78": 1, + "84": 1, + "95": 1, + "101": 1, + "112": 2, + "117": 1, + "149": 1 + }, + "gamesPlayed": 2399, + "medianWords": 4, + "medianLetters": 28 + }, + "activePlayers": 22, + "byUser": { + "Dzemik_Skrytozerca": { + "best50": { + "best": { + "word": "greek", + "letters": 14 + }, + "worst": { + "word": "cent", + "letters": 24 + }, + "totalWords": { + "2": 17, + "3": 26, + "4": 7 + }, + "totalLetters": { + "14": 1, + "15": 2, + "16": 3, + "17": 3, + "18": 3, + "19": 6, + "20": 7, + "21": 6, + "22": 6, + "23": 11, + "24": 2 + }, + "gamesPlayed": 50, + "medianWords": 2.5, + "medianLetters": 20.5 + }, + "hardest50": { + "best": { + "word": "slipped", + "letters": 27 + }, + "worst": { + "word": "symbolize", + "letters": 112 + }, + "totalWords": { + "3": 3, + "4": 3, + "5": 10, + "6": 4, + "7": 8, + "8": 4, + "9": 3, + "10": 5, + "11": 4, + "12": 1, + "13": 1, + "14": 2, + "18": 2 + }, + "totalLetters": { + "27": 2, + "28": 1, + "29": 1, + "30": 1, + "33": 1, + "35": 1, + "37": 6, + "38": 2, + "39": 3, + "40": 2, + "42": 3, + "43": 1, + "44": 2, + "46": 2, + "47": 1, + "48": 1, + "49": 1, + "51": 1, + "54": 1, + "55": 1, + "57": 1, + "58": 1, + "59": 4, + "60": 3, + "63": 1, + "64": 1, + "65": 1, + "67": 1, + "70": 1, + "95": 1, + "112": 1 + }, + "gamesPlayed": 50, + "medianWords": 6.5, + "medianLetters": 43.5 + }, + "results": { + "1": { + "best": { + "word": "ride", + "letters": 19 + }, + "worst": { + "word": "symbolize", + "letters": 112 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 5, + "5": 8, + "6": 3, + "7": 2, + "8": 2, + "9": 2, + "10": 1, + "11": 2, + "18": 1 + }, + "totalLetters": { + "19": 1, + "20": 1, + "21": 1, + "23": 1, + "24": 1, + "26": 1, + "27": 1, + "29": 2, + "31": 1, + "34": 4, + "35": 1, + "37": 2, + "38": 2, + "40": 1, + "41": 2, + "43": 2, + "47": 1, + "51": 1, + "55": 2, + "59": 2, + "112": 1 + }, + "gamesPlayed": 31, + "medianWords": 5, + "medianLetters": 37 + }, + "2": { + "best": { + "word": "linen", + "letters": 17 + }, + "worst": { + "word": "hairdryer", + "letters": 60 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 6, + "5": 6, + "6": 1, + "7": 3, + "8": 3, + "10": 1, + "12": 1 + }, + "totalLetters": { + "17": 1, + "21": 3, + "23": 1, + "27": 4, + "29": 1, + "30": 1, + "32": 1, + "34": 1, + "35": 3, + "36": 1, + "37": 3, + "38": 3, + "41": 1, + "46": 1, + "60": 2 + }, + "gamesPlayed": 27, + "medianWords": 5, + "medianLetters": 35 + }, + "3": { + "best": { + "word": "except", + "letters": 23 + }, + "worst": { + "word": "singapore", + "letters": 46 + }, + "totalWords": { + "3": 4, + "4": 7, + "5": 6, + "6": 1, + "7": 10, + "8": 2 + }, + "totalLetters": { + "23": 1, + "24": 1, + "25": 1, + "28": 4, + "29": 2, + "31": 1, + "32": 2, + "33": 1, + "35": 1, + "37": 3, + "39": 2, + "40": 3, + "41": 1, + "42": 2, + "43": 2, + "44": 1, + "45": 1, + "46": 1 + }, + "gamesPlayed": 30, + "medianWords": 4.5, + "medianLetters": 36 + }, + "4": { + "best": { + "word": "greek", + "letters": 14 + }, + "worst": { + "word": "statute", + "letters": 65 + }, + "totalWords": { + "2": 3, + "3": 4, + "4": 6, + "5": 3, + "6": 4, + "7": 6, + "8": 1, + "10": 2, + "11": 1 + }, + "totalLetters": { + "14": 1, + "18": 1, + "19": 1, + "20": 2, + "21": 1, + "22": 1, + "25": 1, + "26": 1, + "28": 2, + "29": 1, + "30": 1, + "31": 2, + "33": 1, + "35": 1, + "38": 1, + "39": 3, + "47": 1, + "48": 3, + "49": 2, + "58": 1, + "60": 1, + "65": 1 + }, + "gamesPlayed": 30, + "medianWords": 4.5, + "medianLetters": 32 + }, + "5": { + "best": { + "word": "suede", + "letters": 15 + }, + "worst": { + "word": "itself", + "letters": 59 + }, + "totalWords": { + "2": 2, + "3": 3, + "4": 4, + "5": 9, + "6": 1, + "7": 2, + "8": 5, + "9": 2, + "10": 3 + }, + "totalLetters": { + "15": 1, + "20": 1, + "23": 2, + "24": 1, + "25": 2, + "26": 2, + "27": 1, + "28": 1, + "29": 1, + "30": 1, + "31": 1, + "32": 1, + "34": 1, + "35": 1, + "36": 1, + "37": 1, + "41": 1, + "42": 3, + "43": 1, + "44": 1, + "47": 1, + "50": 1, + "53": 1, + "57": 1, + "58": 1, + "59": 1 + }, + "gamesPlayed": 31, + "medianWords": 5, + "medianLetters": 34 + }, + "6": { + "best": { + "word": "treason", + "letters": 17 + }, + "worst": { + "word": "imitation", + "letters": 64 + }, + "totalWords": { + "2": 2, + "3": 4, + "4": 7, + "5": 4, + "6": 3, + "7": 4, + "8": 5, + "9": 1 + }, + "totalLetters": { + "17": 1, + "20": 1, + "22": 1, + "23": 1, + "24": 2, + "25": 1, + "26": 1, + "27": 2, + "28": 2, + "29": 2, + "31": 2, + "32": 1, + "34": 1, + "36": 1, + "37": 1, + "41": 1, + "42": 1, + "43": 1, + "44": 1, + "45": 1, + "47": 2, + "48": 1, + "51": 1, + "64": 1 + }, + "gamesPlayed": 30, + "medianWords": 4.5, + "medianLetters": 30 + }, + "7": { + "best": { + "word": "superior", + "letters": 17 + }, + "worst": { + "word": "lodging", + "letters": 95 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 9, + "5": 9, + "6": 3, + "7": 3, + "13": 1, + "14": 1, + "18": 1 + }, + "totalLetters": { + "17": 1, + "20": 1, + "23": 2, + "26": 5, + "27": 3, + "29": 3, + "32": 1, + "33": 2, + "34": 4, + "35": 1, + "37": 2, + "38": 1, + "40": 1, + "46": 1, + "59": 1, + "63": 1, + "95": 1 + }, + "gamesPlayed": 31, + "medianWords": 5, + "medianLetters": 32 + }, + "8": { + "best": { + "word": "masculine", + "letters": 16 + }, + "worst": { + "word": "citation", + "letters": 48 + }, + "totalWords": { + "2": 1, + "3": 6, + "4": 9, + "5": 5, + "6": 5, + "7": 3, + "8": 1, + "9": 1 + }, + "totalLetters": { + "16": 1, + "19": 1, + "23": 1, + "24": 1, + "25": 4, + "26": 1, + "27": 3, + "28": 1, + "29": 1, + "31": 2, + "32": 3, + "33": 3, + "34": 1, + "36": 1, + "38": 3, + "39": 1, + "46": 1, + "48": 2 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 31 + }, + "9": { + "best": { + "word": "pointer", + "letters": 18 + }, + "worst": { + "word": "useless", + "letters": 70 + }, + "totalWords": { + "2": 2, + "3": 7, + "4": 3, + "5": 8, + "6": 3, + "7": 3, + "11": 2, + "14": 1 + }, + "totalLetters": { + "18": 1, + "20": 1, + "21": 1, + "22": 2, + "23": 2, + "24": 1, + "27": 1, + "28": 1, + "29": 1, + "30": 2, + "32": 3, + "33": 1, + "34": 2, + "35": 1, + "36": 1, + "38": 1, + "39": 1, + "42": 2, + "49": 1, + "56": 1, + "67": 1, + "70": 1 + }, + "gamesPlayed": 29, + "medianWords": 5, + "medianLetters": 32 + }, + "10": { + "best": { + "word": "sanity", + "letters": 15 + }, + "worst": { + "word": "audience", + "letters": 117 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 8, + "5": 6, + "6": 4, + "7": 2, + "8": 4, + "11": 1, + "20": 1 + }, + "totalLetters": { + "15": 1, + "22": 1, + "25": 3, + "26": 3, + "27": 1, + "28": 2, + "29": 2, + "35": 2, + "36": 1, + "37": 2, + "38": 2, + "39": 1, + "41": 1, + "42": 1, + "43": 1, + "47": 1, + "54": 1, + "56": 1, + "70": 1, + "117": 1 + }, + "gamesPlayed": 29, + "medianWords": 5, + "medianLetters": 35 + }, + "11": { + "best": { + "word": "employ", + "letters": 16 + }, + "worst": { + "word": "blindfold", + "letters": 63 + }, + "totalWords": { + "2": 2, + "3": 4, + "4": 7, + "5": 1, + "6": 7, + "7": 3, + "9": 3, + "11": 2, + "14": 1 + }, + "totalLetters": { + "16": 2, + "18": 1, + "19": 2, + "22": 1, + "26": 2, + "27": 1, + "30": 2, + "31": 2, + "32": 1, + "33": 2, + "35": 3, + "36": 1, + "37": 1, + "41": 1, + "42": 2, + "47": 1, + "48": 1, + "54": 1, + "55": 1, + "58": 1, + "63": 1 + }, + "gamesPlayed": 30, + "medianWords": 5.5, + "medianLetters": 32.5 + }, + "12": { + "best": { + "word": "weapon", + "letters": 19 + }, + "worst": { + "word": "hawthorn", + "letters": 54 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 5, + "5": 3, + "6": 3, + "7": 3, + "9": 1, + "10": 2 + }, + "totalLetters": { + "19": 1, + "25": 1, + "26": 1, + "27": 1, + "29": 1, + "30": 1, + "31": 2, + "33": 1, + "35": 2, + "36": 1, + "37": 1, + "38": 1, + "39": 1, + "40": 1, + "44": 1, + "46": 1, + "48": 1, + "53": 1, + "54": 1 + }, + "gamesPlayed": 21, + "medianWords": 5, + "medianLetters": 35 + }, + "year": { + "best": { + "word": "greek", + "letters": 14 + }, + "worst": { + "word": "audience", + "letters": 117 + }, + "totalWords": { + "2": 17, + "3": 49, + "4": 76, + "5": 68, + "6": 38, + "7": 44, + "8": 23, + "9": 10, + "10": 9, + "11": 8, + "12": 1, + "13": 1, + "14": 3, + "18": 2, + "20": 1 + }, + "totalLetters": { + "14": 1, + "15": 2, + "16": 3, + "17": 3, + "18": 3, + "19": 6, + "20": 7, + "21": 6, + "22": 6, + "23": 11, + "24": 7, + "25": 13, + "26": 17, + "27": 18, + "28": 13, + "29": 17, + "30": 8, + "31": 13, + "32": 13, + "33": 11, + "34": 14, + "35": 16, + "36": 8, + "37": 16, + "38": 14, + "39": 9, + "40": 6, + "41": 8, + "42": 11, + "43": 7, + "44": 4, + "45": 2, + "46": 5, + "47": 7, + "48": 8, + "49": 3, + "50": 1, + "51": 2, + "53": 2, + "54": 3, + "55": 3, + "56": 2, + "57": 1, + "58": 3, + "59": 4, + "60": 3, + "63": 2, + "64": 1, + "65": 1, + "67": 1, + "70": 2, + "95": 1, + "112": 1, + "117": 1 + }, + "gamesPlayed": 350, + "medianWords": 4.5, + "medianLetters": 32.5 + } + }, + "dates": { + "1": [ + "04.01.2025", + "30.01.2025", + "20.01.2025", + "15.11.2025", + "20.11.2025" + ], + "2": [ + "27.02.2025", + "05.02.2025", + "13.02.2025", + "09.02.2025", + "17.12.2025" + ], + "3": [ + "22.03.2025", + "25.03.2025" + ], + "4": [ + "26.04.2025", + "28.04.2025", + "01.04.2025" + ], + "5": [ + "20.05.2025", + "28.05.2025", + "09.05.2025" + ], + "6": [ + "16.06.2025", + "06.06.2025", + "01.06.2025", + "27.06.2025", + "28.06.2025" + ], + "7": [ + "23.07.2025" + ], + "8": [ + "09.08.2025" + ], + "10": [ + "10.10.2025", + "30.10.2025" + ], + "11": [ + "15.11.2025", + "20.11.2025" + ], + "12": [ + "17.12.2025" + ], + "year": [ + "04.01.2025", + "16.06.2025", + "22.03.2025", + "26.04.2025", + "30.01.2025", + "25.03.2025", + "27.02.2025", + "20.05.2025", + "28.05.2025", + "28.04.2025", + "05.02.2025", + "13.02.2025", + "20.01.2025", + "06.06.2025", + "09.05.2025", + "01.04.2025", + "01.06.2025", + "09.02.2025", + "10.10.2025", + "27.06.2025", + "30.10.2025", + "15.11.2025", + "17.12.2025", + "09.08.2025", + "20.11.2025", + "23.07.2025", + "28.06.2025" + ] + }, + "worstDates": { + "1": [ + "01.01.2025", + "02.01.2025", + "15.01.2025", + "19.01.2025", + "08.01.2025", + "23.01.2025", + "31.01.2025", + "29.01.2025", + "06.01.2025", + "28.01.2025", + "11.01.2025", + "18.01.2025", + "26.01.2025", + "12.01.2025", + "27.11.2025", + "06.11.2025", + "13.11.2025", + "14.11.2025", + "08.11.2025", + "29.11.2025", + "21.11.2025", + "17.11.2025", + "26.11.2025", + "03.11.2025", + "23.11.2025", + "04.11.2025" + ], + "2": [ + "01.02.2025", + "15.02.2025", + "20.02.2025", + "02.02.2025", + "03.02.2025", + "28.02.2025", + "06.02.2025", + "08.02.2025", + "17.02.2025", + "10.12.2025", + "02.12.2025", + "18.12.2025", + "21.12.2025", + "07.12.2025", + "09.12.2025", + "16.12.2025" + ], + "3": [ + "19.03.2025", + "07.03.2025", + "28.03.2025", + "14.03.2025", + "04.03.2025", + "16.03.2025", + "31.03.2025", + "06.03.2025" + ], + "4": [ + "24.04.2025", + "04.04.2025", + "05.04.2025", + "15.04.2025", + "02.04.2025", + "06.04.2025", + "11.04.2025", + "22.04.2025", + "12.04.2025", + "18.04.2025", + "10.04.2025" + ], + "5": [ + "02.05.2025", + "10.05.2025", + "04.05.2025", + "13.05.2025", + "30.05.2025", + "14.05.2025", + "15.05.2025", + "31.05.2025", + "03.05.2025", + "26.05.2025", + "24.05.2025", + "22.05.2025", + "05.05.2025", + "27.05.2025", + "11.05.2025", + "12.05.2025" + ], + "6": [ + "09.06.2025", + "02.06.2025", + "11.06.2025", + "19.06.2025", + "21.06.2025", + "17.06.2025", + "20.06.2025", + "10.06.2025", + "26.06.2025", + "29.06.2025" + ], + "7": [ + "10.07.2025", + "17.07.2025", + "29.07.2025", + "07.07.2025", + "30.07.2025", + "25.07.2025", + "12.07.2025", + "01.07.2025" + ], + "8": [ + "24.08.2025", + "21.08.2025", + "08.08.2025", + "05.08.2025", + "18.08.2025", + "15.08.2025", + "31.08.2025", + "12.08.2025", + "07.08.2025", + "10.08.2025", + "06.08.2025", + "30.08.2025", + "17.08.2025", + "28.08.2025" + ], + "9": [ + "10.09.2025", + "25.09.2025", + "28.09.2025", + "16.09.2025", + "18.09.2025", + "05.09.2025", + "20.09.2025", + "19.09.2025" + ], + "10": [ + "12.10.2025", + "27.10.2025", + "28.10.2025", + "31.10.2025", + "18.10.2025", + "09.10.2025", + "13.10.2025", + "03.10.2025", + "15.10.2025", + "11.10.2025", + "02.10.2025" + ], + "11": [ + "27.11.2025", + "06.11.2025", + "13.11.2025", + "14.11.2025", + "08.11.2025", + "29.11.2025", + "21.11.2025", + "17.11.2025", + "26.11.2025", + "03.11.2025", + "23.11.2025", + "04.11.2025" + ], + "12": [ + "10.12.2025", + "02.12.2025", + "18.12.2025", + "21.12.2025", + "07.12.2025", + "09.12.2025", + "16.12.2025" + ], + "year": [ + "24.04.2025", + "01.01.2025", + "02.01.2025", + "01.02.2025", + "04.04.2025", + "05.04.2025", + "09.06.2025", + "15.02.2025", + "19.03.2025", + "02.06.2025", + "02.05.2025", + "10.05.2025", + "15.01.2025", + "19.01.2025", + "07.03.2025", + "20.02.2025", + "11.06.2025", + "02.02.2025", + "04.05.2025", + "28.03.2025", + "19.06.2025", + "08.01.2025", + "15.04.2025", + "02.04.2025", + "03.02.2025", + "13.05.2025", + "14.03.2025", + "23.01.2025", + "06.04.2025", + "31.01.2025", + "04.03.2025", + "30.05.2025", + "28.02.2025", + "06.02.2025", + "14.05.2025", + "15.05.2025", + "29.01.2025", + "21.06.2025", + "16.03.2025", + "11.04.2025", + "08.02.2025", + "06.01.2025", + "31.03.2025", + "22.04.2025", + "28.01.2025", + "12.04.2025", + "18.04.2025", + "31.05.2025", + "03.05.2025", + "11.01.2025", + "26.05.2025", + "24.05.2025", + "22.05.2025", + "06.03.2025", + "05.05.2025", + "27.05.2025", + "10.04.2025", + "11.05.2025", + "18.01.2025", + "17.02.2025", + "12.05.2025", + "26.01.2025", + "17.06.2025", + "12.01.2025", + "20.06.2025", + "10.06.2025", + "10.07.2025", + "10.09.2025", + "10.12.2025", + "12.10.2025", + "17.07.2025", + "24.08.2025", + "25.09.2025", + "27.10.2025", + "27.11.2025", + "28.09.2025", + "28.10.2025", + "31.10.2025", + "06.11.2025", + "18.10.2025", + "21.08.2025", + "08.08.2025", + "29.07.2025", + "13.11.2025", + "05.08.2025", + "14.11.2025", + "16.09.2025", + "08.11.2025", + "09.10.2025", + "18.09.2025", + "05.09.2025", + "13.10.2025", + "18.08.2025", + "02.12.2025", + "07.07.2025", + "15.08.2025", + "29.11.2025", + "30.07.2025", + "31.08.2025", + "18.12.2025", + "21.12.2025", + "26.06.2025", + "07.12.2025", + "20.09.2025", + "12.08.2025", + "07.08.2025", + "03.10.2025", + "29.06.2025", + "10.08.2025", + "09.12.2025", + "25.07.2025", + "06.08.2025", + "15.10.2025", + "21.11.2025", + "17.11.2025", + "30.08.2025", + "17.08.2025", + "26.11.2025", + "11.10.2025", + "03.11.2025", + "02.10.2025", + "23.11.2025", + "19.09.2025", + "12.07.2025", + "01.07.2025", + "04.11.2025", + "28.08.2025", + "16.12.2025" + ] + } + }, + "Kronos": { + "best50": { + "best": { + "word": "cent", + "letters": 13 + }, + "worst": { + "word": "monkey", + "letters": 20 + }, + "totalWords": { + "2": 18, + "3": 30, + "4": 2 + }, + "totalLetters": { + "13": 5, + "14": 1, + "15": 4, + "16": 4, + "17": 12, + "18": 8, + "19": 10, + "20": 6 + }, + "gamesPlayed": 50, + "medianWords": 2.5, + "medianLetters": 16.5 + }, + "hardest50": { + "best": { + "word": "inject", + "letters": 15 + }, + "worst": { + "word": "cessation", + "letters": 59 + }, + "totalWords": { + "2": 3, + "3": 1, + "4": 10, + "5": 6, + "6": 7, + "7": 8, + "8": 7, + "9": 4, + "10": 2, + "11": 1 + }, + "totalLetters": { + "15": 1, + "16": 1, + "17": 1, + "21": 1, + "23": 1, + "24": 1, + "25": 2, + "27": 2, + "29": 2, + "30": 2, + "31": 3, + "32": 3, + "33": 1, + "35": 2, + "37": 2, + "38": 4, + "39": 3, + "40": 2, + "41": 6, + "43": 2, + "45": 1, + "46": 1, + "48": 2, + "52": 2, + "59": 1 + }, + "gamesPlayed": 49, + "medianWords": 6, + "medianLetters": 37 + }, + "results": { + "1": { + "best": { + "word": "inject", + "letters": 15 + }, + "worst": { + "word": "symbolize", + "letters": 45 + }, + "totalWords": { + "2": 1, + "3": 9, + "4": 8, + "5": 6, + "6": 2, + "7": 4, + "8": 1 + }, + "totalLetters": { + "15": 1, + "18": 1, + "19": 1, + "20": 4, + "21": 2, + "22": 1, + "23": 1, + "24": 2, + "25": 3, + "26": 1, + "27": 1, + "28": 1, + "29": 3, + "31": 1, + "32": 2, + "36": 1, + "38": 2, + "41": 2, + "45": 1 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 25 + }, + "2": { + "best": { + "word": "team", + "letters": 17 + }, + "worst": { + "word": "hairdryer", + "letters": 41 + }, + "totalWords": { + "3": 2, + "4": 7, + "5": 7, + "6": 5, + "7": 2, + "8": 2 + }, + "totalLetters": { + "17": 1, + "20": 1, + "24": 1, + "25": 2, + "26": 3, + "27": 1, + "28": 1, + "29": 1, + "30": 2, + "31": 2, + "32": 1, + "34": 1, + "35": 1, + "36": 1, + "37": 1, + "38": 1, + "39": 3, + "41": 1 + }, + "gamesPlayed": 25, + "medianWords": 5, + "medianLetters": 30 + }, + "3": { + "best": { + "word": "cent", + "letters": 13 + }, + "worst": { + "word": "incentive", + "letters": 43 + }, + "totalWords": { + "2": 1, + "3": 6, + "4": 9, + "5": 5, + "6": 2, + "7": 4, + "8": 2 + }, + "totalLetters": { + "13": 1, + "17": 1, + "19": 4, + "21": 1, + "23": 1, + "25": 3, + "26": 1, + "29": 3, + "31": 1, + "32": 3, + "33": 1, + "35": 2, + "38": 3, + "40": 2, + "41": 1, + "43": 1 + }, + "gamesPlayed": 29, + "medianWords": 4, + "medianLetters": 29 + }, + "4": { + "best": { + "word": "ready", + "letters": 14 + }, + "worst": { + "word": "statute", + "letters": 52 + }, + "totalWords": { + "2": 4, + "3": 5, + "4": 6, + "5": 3, + "6": 2, + "7": 5, + "9": 2, + "10": 1 + }, + "totalLetters": { + "14": 1, + "15": 1, + "17": 2, + "18": 1, + "20": 3, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "25": 1, + "26": 1, + "27": 1, + "29": 1, + "31": 3, + "33": 2, + "36": 1, + "38": 1, + "40": 1, + "41": 2, + "48": 1, + "52": 1 + }, + "gamesPlayed": 28, + "medianWords": 3.5, + "medianLetters": 26.5 + }, + "5": { + "best": { + "word": "tape", + "letters": 13 + }, + "worst": { + "word": "silver", + "letters": 45 + }, + "totalWords": { + "2": 1, + "3": 8, + "4": 11, + "5": 4, + "6": 3, + "7": 1, + "8": 1 + }, + "totalLetters": { + "13": 1, + "17": 2, + "20": 3, + "21": 2, + "22": 1, + "23": 4, + "24": 4, + "25": 1, + "27": 1, + "28": 4, + "30": 1, + "31": 1, + "34": 1, + "35": 1, + "39": 1, + "45": 1 + }, + "gamesPlayed": 29, + "medianWords": 4, + "medianLetters": 24 + }, + "6": { + "best": { + "word": "church", + "letters": 15 + }, + "worst": { + "word": "itinerary", + "letters": 52 + }, + "totalWords": { + "2": 4, + "3": 5, + "4": 8, + "5": 6, + "6": 2, + "7": 1, + "9": 1, + "11": 1 + }, + "totalLetters": { + "15": 2, + "16": 2, + "19": 3, + "21": 1, + "22": 2, + "25": 2, + "26": 2, + "27": 3, + "28": 2, + "29": 1, + "30": 2, + "31": 1, + "32": 1, + "35": 2, + "43": 1, + "52": 1 + }, + "gamesPlayed": 28, + "medianWords": 3.5, + "medianLetters": 26.5 + }, + "7": { + "best": { + "word": "riot", + "letters": 13 + }, + "worst": { + "word": "certainly", + "letters": 52 + }, + "totalWords": { + "2": 1, + "3": 11, + "4": 5, + "5": 5, + "6": 5, + "7": 2, + "8": 1 + }, + "totalLetters": { + "13": 1, + "17": 2, + "18": 2, + "19": 1, + "20": 3, + "21": 1, + "22": 3, + "23": 1, + "24": 1, + "26": 1, + "29": 1, + "31": 4, + "32": 2, + "33": 1, + "34": 1, + "35": 2, + "38": 1, + "45": 1, + "52": 1 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 25 + }, + "8": { + "best": { + "word": "caution", + "letters": 16 + }, + "worst": { + "word": "seeming", + "letters": 57 + }, + "totalWords": { + "2": 1, + "3": 8, + "4": 11, + "5": 4, + "6": 4, + "7": 2, + "8": 1 + }, + "totalLetters": { + "16": 1, + "17": 1, + "20": 5, + "21": 3, + "22": 1, + "23": 3, + "24": 2, + "25": 1, + "27": 4, + "28": 1, + "29": 1, + "31": 2, + "32": 1, + "33": 2, + "34": 1, + "36": 1, + "57": 1 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 24 + }, + "9": { + "best": { + "word": "yard", + "letters": 13 + }, + "worst": { + "word": "excise", + "letters": 42 + }, + "totalWords": { + "2": 2, + "3": 5, + "4": 7, + "5": 8, + "6": 4, + "7": 1, + "9": 2 + }, + "totalLetters": { + "13": 1, + "17": 1, + "18": 2, + "20": 1, + "21": 1, + "22": 2, + "24": 3, + "25": 2, + "26": 2, + "27": 1, + "28": 1, + "29": 1, + "30": 3, + "32": 2, + "34": 1, + "36": 1, + "38": 1, + "39": 1, + "41": 1, + "42": 1 + }, + "gamesPlayed": 29, + "medianWords": 5, + "medianLetters": 26 + }, + "10": { + "best": { + "word": "farm", + "letters": 13 + }, + "worst": { + "word": "modicum", + "letters": 49 + }, + "totalWords": { + "2": 3, + "3": 7, + "4": 11, + "5": 3, + "6": 1, + "7": 1, + "8": 2, + "11": 2 + }, + "totalLetters": { + "13": 1, + "16": 1, + "17": 2, + "19": 1, + "20": 2, + "21": 2, + "22": 2, + "23": 1, + "24": 2, + "25": 2, + "26": 3, + "27": 1, + "28": 1, + "29": 1, + "32": 1, + "33": 1, + "34": 1, + "35": 1, + "40": 1, + "48": 2, + "49": 1 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 24.5 + }, + "11": { + "best": { + "word": "much", + "letters": 18 + }, + "worst": { + "word": "cessation", + "letters": 59 + }, + "totalWords": { + "3": 9, + "4": 7, + "5": 6, + "6": 4, + "8": 1, + "10": 2 + }, + "totalLetters": { + "18": 2, + "20": 2, + "21": 2, + "22": 4, + "23": 1, + "24": 2, + "25": 2, + "27": 2, + "28": 2, + "29": 2, + "30": 2, + "32": 1, + "34": 1, + "35": 1, + "38": 1, + "50": 1, + "59": 1 + }, + "gamesPlayed": 29, + "medianWords": 4, + "medianLetters": 25 + }, + "12": { + "best": { + "word": "talk", + "letters": 20 + }, + "worst": { + "word": "shooting", + "letters": 46 + }, + "totalWords": { + "3": 6, + "4": 4, + "5": 3, + "6": 3, + "7": 4 + }, + "totalLetters": { + "20": 1, + "21": 2, + "22": 4, + "24": 1, + "25": 1, + "26": 1, + "27": 1, + "30": 1, + "32": 1, + "33": 1, + "34": 1, + "35": 2, + "37": 1, + "40": 1, + "46": 1 + }, + "gamesPlayed": 20, + "medianWords": 4.5, + "medianLetters": 26.5 + }, + "year": { + "best": { + "word": "cent", + "letters": 13 + }, + "worst": { + "word": "cessation", + "letters": 59 + }, + "totalWords": { + "2": 18, + "3": 81, + "4": 94, + "5": 60, + "6": 37, + "7": 27, + "8": 11, + "9": 5, + "10": 3, + "11": 3 + }, + "totalLetters": { + "13": 5, + "14": 1, + "15": 4, + "16": 4, + "17": 12, + "18": 8, + "19": 10, + "20": 25, + "21": 18, + "22": 21, + "23": 13, + "24": 19, + "25": 20, + "26": 15, + "27": 16, + "28": 13, + "29": 15, + "30": 11, + "31": 15, + "32": 15, + "33": 8, + "34": 8, + "35": 12, + "36": 5, + "37": 2, + "38": 10, + "39": 5, + "40": 5, + "41": 7, + "42": 1, + "43": 2, + "45": 3, + "46": 1, + "48": 3, + "49": 1, + "50": 1, + "52": 3, + "57": 1, + "59": 1 + }, + "gamesPlayed": 339, + "medianWords": 4, + "medianLetters": 26 + } + }, + "dates": { + "1": [ + "10.01.2025", + "01.01.2025", + "14.01.2025", + "27.01.2025", + "25.01.2025", + "12.01.2025", + "24.01.2025", + "12.11.2025", + "14.11.2025", + "21.11.2025", + "03.11.2025" + ], + "2": [ + "15.02.2025", + "22.02.2025", + "12.12.2025", + "13.12.2025", + "19.12.2025" + ], + "3": [ + "29.03.2025", + "26.03.2025", + "05.03.2025", + "12.03.2025" + ], + "4": [ + "23.04.2025", + "02.04.2025", + "06.04.2025", + "08.04.2025", + "20.04.2025", + "21.04.2025" + ], + "5": [ + "07.05.2025", + "14.05.2025", + "15.05.2025", + "05.05.2025", + "11.05.2025", + "12.05.2025" + ], + "6": [ + "07.06.2025", + "13.06.2025", + "11.06.2025", + "19.06.2025", + "25.06.2025" + ], + "7": [ + "20.07.2025", + "13.07.2025", + "26.07.2025", + "24.07.2025", + "16.07.2025", + "14.07.2025", + "12.07.2025" + ], + "8": [ + "27.08.2025", + "21.08.2025", + "19.08.2025", + "29.08.2025", + "31.08.2025", + "12.08.2025", + "07.08.2025", + "10.08.2025" + ], + "9": [ + "01.09.2025", + "24.09.2025", + "16.09.2025", + "22.09.2025", + "29.09.2025", + "06.09.2025" + ], + "10": [ + "04.10.2025", + "31.10.2025", + "16.10.2025", + "17.10.2025", + "08.10.2025" + ], + "11": [ + "12.11.2025", + "14.11.2025", + "21.11.2025", + "03.11.2025" + ], + "12": [ + "12.12.2025", + "13.12.2025", + "19.12.2025" + ], + "year": [ + "10.01.2025", + "01.01.2025", + "07.06.2025", + "15.02.2025", + "23.04.2025", + "22.02.2025", + "13.06.2025", + "11.06.2025", + "19.06.2025", + "02.04.2025", + "29.03.2025", + "06.04.2025", + "26.03.2025", + "07.05.2025", + "14.01.2025", + "14.05.2025", + "15.05.2025", + "27.01.2025", + "08.04.2025", + "25.06.2025", + "05.03.2025", + "12.03.2025", + "05.05.2025", + "25.01.2025", + "20.04.2025", + "11.05.2025", + "12.05.2025", + "12.01.2025", + "24.01.2025", + "21.04.2025", + "01.09.2025", + "04.10.2025", + "12.11.2025", + "20.07.2025", + "24.09.2025", + "27.08.2025", + "31.10.2025", + "21.08.2025", + "13.07.2025", + "19.08.2025", + "14.11.2025", + "16.09.2025", + "12.12.2025", + "26.07.2025", + "13.12.2025", + "29.08.2025", + "24.07.2025", + "31.08.2025", + "22.09.2025", + "16.10.2025", + "12.08.2025", + "07.08.2025", + "10.08.2025", + "19.12.2025", + "29.09.2025", + "21.11.2025", + "16.07.2025", + "14.07.2025", + "17.10.2025", + "08.10.2025", + "03.11.2025", + "06.09.2025", + "12.07.2025" + ] + }, + "worstDates": { + "1": [ + "30.01.2025", + "16.01.2025" + ], + "2": [ + "04.02.2025", + "13.02.2025", + "15.12.2025" + ], + "4": [ + "16.04.2025", + "28.04.2025" + ], + "5": [ + "19.05.2025" + ], + "7": [ + "05.07.2025" + ], + "8": [ + "13.08.2025" + ], + "9": [ + "27.09.2025", + "03.09.2025" + ], + "10": [ + "25.10.2025", + "06.10.2025" + ], + "12": [ + "15.12.2025" + ], + "year": [ + "16.04.2025", + "30.01.2025", + "19.05.2025", + "04.02.2025", + "28.04.2025", + "13.02.2025", + "16.01.2025", + "27.09.2025", + "25.10.2025", + "15.12.2025", + "03.09.2025", + "06.10.2025", + "13.08.2025", + "05.07.2025" + ] + } + }, + "Felonious_Gru": { + "best50": { + "best": { + "word": "what", + "letters": 12 + }, + "worst": { + "word": "folly", + "letters": 21 + }, + "totalWords": { + "2": 13, + "3": 34, + "4": 3 + }, + "totalLetters": { + "12": 1, + "13": 4, + "14": 3, + "15": 1, + "16": 5, + "17": 8, + "18": 8, + "19": 4, + "20": 11, + "21": 5 + }, + "gamesPlayed": 50, + "medianWords": 2.5, + "medianLetters": 17.5 + }, + "hardest50": { + "best": { + "word": "none", + "letters": 26 + }, + "worst": { + "word": "itinerary", + "letters": 101 + }, + "totalWords": { + "4": 2, + "5": 8, + "6": 4, + "7": 7, + "8": 6, + "9": 6, + "10": 3, + "11": 3, + "12": 3, + "14": 1, + "15": 1, + "19": 1 + }, + "totalLetters": { + "26": 1, + "28": 1, + "29": 1, + "31": 1, + "32": 1, + "33": 1, + "35": 1, + "37": 1, + "38": 2, + "39": 3, + "40": 2, + "41": 1, + "42": 1, + "43": 2, + "44": 2, + "45": 3, + "46": 1, + "47": 3, + "48": 2, + "49": 1, + "50": 1, + "51": 2, + "54": 1, + "56": 1, + "57": 2, + "58": 1, + "60": 1, + "61": 1, + "67": 1, + "71": 1, + "78": 1, + "101": 1 + }, + "gamesPlayed": 45, + "medianWords": 8, + "medianLetters": 45 + }, + "results": { + "1": { + "best": { + "word": "attached", + "letters": 16 + }, + "worst": { + "word": "inject", + "letters": 61 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 7, + "5": 5, + "6": 1, + "8": 2, + "9": 4, + "10": 1, + "12": 1, + "14": 1 + }, + "totalLetters": { + "16": 1, + "17": 1, + "18": 1, + "20": 2, + "21": 2, + "23": 1, + "24": 3, + "25": 1, + "27": 1, + "28": 2, + "30": 1, + "32": 1, + "33": 2, + "40": 1, + "44": 1, + "47": 1, + "49": 1, + "54": 1, + "60": 2, + "61": 2 + }, + "gamesPlayed": 28, + "medianWords": 4.5, + "medianLetters": 27.5 + }, + "2": { + "best": { + "word": "tenor", + "letters": 18 + }, + "worst": { + "word": "microwave", + "letters": 67 + }, + "totalWords": { + "3": 2, + "4": 2, + "5": 6, + "6": 4, + "7": 3, + "8": 1, + "9": 1, + "10": 1, + "11": 2, + "12": 1, + "14": 1 + }, + "totalLetters": { + "18": 1, + "20": 1, + "22": 1, + "24": 1, + "28": 2, + "29": 2, + "30": 1, + "32": 1, + "33": 1, + "38": 1, + "40": 1, + "41": 1, + "42": 1, + "43": 1, + "44": 1, + "47": 2, + "48": 1, + "49": 1, + "56": 1, + "63": 1, + "67": 1 + }, + "gamesPlayed": 24, + "medianWords": 5.5, + "medianLetters": 39 + }, + "3": { + "best": { + "word": "chatter", + "letters": 15 + }, + "worst": { + "word": "aircraft", + "letters": 64 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 4, + "5": 5, + "6": 3, + "7": 4, + "8": 5, + "9": 2, + "13": 1 + }, + "totalLetters": { + "15": 1, + "16": 1, + "18": 1, + "22": 1, + "25": 2, + "29": 1, + "30": 2, + "31": 1, + "32": 1, + "33": 1, + "34": 2, + "36": 1, + "37": 1, + "40": 1, + "41": 2, + "42": 2, + "43": 1, + "45": 1, + "46": 2, + "47": 1, + "64": 1 + }, + "gamesPlayed": 27, + "medianWords": 6, + "medianLetters": 34 + }, + "4": { + "best": { + "word": "genetics", + "letters": 16 + }, + "worst": { + "word": "feminism", + "letters": 71 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 5, + "5": 1, + "6": 5, + "7": 3, + "8": 2, + "13": 1, + "15": 1 + }, + "totalLetters": { + "16": 1, + "17": 1, + "19": 1, + "20": 1, + "23": 1, + "24": 2, + "25": 1, + "26": 1, + "27": 1, + "30": 1, + "31": 1, + "36": 2, + "37": 1, + "38": 1, + "39": 2, + "43": 1, + "45": 1, + "48": 1, + "60": 1, + "71": 1 + }, + "gamesPlayed": 23, + "medianWords": 6, + "medianLetters": 31 + }, + "5": { + "best": { + "word": "what", + "letters": 12 + }, + "worst": { + "word": "oriental", + "letters": 62 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 7, + "5": 6, + "6": 3, + "7": 3, + "8": 1, + "10": 4 + }, + "totalLetters": { + "12": 1, + "17": 1, + "18": 2, + "21": 1, + "22": 3, + "23": 1, + "24": 1, + "25": 1, + "26": 2, + "28": 1, + "29": 1, + "30": 1, + "31": 1, + "33": 2, + "34": 2, + "36": 1, + "38": 1, + "45": 2, + "49": 2, + "53": 1, + "62": 1 + }, + "gamesPlayed": 29, + "medianWords": 5, + "medianLetters": 29 + }, + "6": { + "best": { + "word": "tribe", + "letters": 13 + }, + "worst": { + "word": "itinerary", + "letters": 101 + }, + "totalWords": { + "2": 3, + "3": 2, + "4": 5, + "5": 2, + "6": 1, + "7": 3, + "9": 3, + "10": 1, + "12": 2, + "19": 1 + }, + "totalLetters": { + "13": 1, + "14": 1, + "16": 1, + "18": 1, + "22": 1, + "23": 1, + "26": 3, + "27": 1, + "29": 1, + "33": 1, + "37": 1, + "39": 1, + "42": 1, + "45": 1, + "47": 1, + "49": 1, + "50": 1, + "51": 1, + "57": 2, + "101": 1 + }, + "gamesPlayed": 23, + "medianWords": 5, + "medianLetters": 33 + }, + "7": { + "best": { + "word": "hence", + "letters": 13 + }, + "worst": { + "word": "domicile", + "letters": 59 + }, + "totalWords": { + "2": 3, + "3": 5, + "4": 4, + "5": 5, + "6": 3, + "7": 2, + "8": 1, + "9": 3, + "10": 1, + "11": 1, + "13": 1 + }, + "totalLetters": { + "13": 2, + "16": 1, + "17": 2, + "19": 1, + "20": 1, + "21": 1, + "24": 2, + "26": 3, + "27": 2, + "28": 1, + "30": 1, + "36": 1, + "38": 1, + "39": 2, + "40": 1, + "41": 1, + "46": 1, + "49": 2, + "50": 1, + "55": 1, + "59": 1 + }, + "gamesPlayed": 29, + "medianWords": 5, + "medianLetters": 27 + }, + "8": { + "best": { + "word": "carp", + "letters": 17 + }, + "worst": { + "word": "clergyman", + "letters": 149 + }, + "totalWords": { + "3": 6, + "4": 10, + "5": 5, + "6": 5, + "7": 1, + "10": 1, + "11": 1, + "33": 1 + }, + "totalLetters": { + "17": 1, + "18": 1, + "19": 1, + "20": 1, + "21": 2, + "22": 2, + "23": 3, + "25": 1, + "26": 2, + "27": 2, + "28": 1, + "31": 1, + "32": 3, + "34": 1, + "35": 2, + "36": 2, + "41": 1, + "49": 2, + "149": 1 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 26.5 + }, + "9": { + "best": { + "word": "chart", + "letters": 14 + }, + "worst": { + "word": "invention", + "letters": 57 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 3, + "5": 7, + "6": 3, + "7": 3, + "8": 1, + "9": 1, + "10": 3 + }, + "totalLetters": { + "14": 1, + "18": 1, + "21": 2, + "22": 1, + "23": 2, + "25": 1, + "26": 2, + "27": 2, + "28": 1, + "30": 1, + "32": 1, + "35": 1, + "37": 1, + "43": 3, + "45": 2, + "46": 1, + "51": 1, + "53": 1, + "54": 1, + "57": 1 + }, + "gamesPlayed": 27, + "medianWords": 5, + "medianLetters": 30 + }, + "10": { + "best": { + "word": "anchor", + "letters": 17 + }, + "worst": { + "word": "hilarious", + "letters": 84 + }, + "totalWords": { + "3": 9, + "4": 4, + "5": 2, + "6": 2, + "7": 7, + "8": 1, + "9": 1, + "10": 1, + "11": 1, + "13": 1, + "16": 1 + }, + "totalLetters": { + "17": 1, + "19": 1, + "20": 3, + "21": 1, + "22": 4, + "27": 2, + "30": 1, + "32": 1, + "34": 1, + "35": 1, + "36": 2, + "41": 1, + "43": 1, + "44": 2, + "45": 2, + "50": 2, + "51": 1, + "53": 1, + "55": 1, + "84": 1 + }, + "gamesPlayed": 30, + "medianWords": 5.5, + "medianLetters": 34.5 + }, + "11": { + "best": { + "word": "very", + "letters": 13 + }, + "worst": { + "word": "cessation", + "letters": 78 + }, + "totalWords": { + "2": 2, + "3": 5, + "4": 4, + "5": 5, + "6": 3, + "7": 1, + "8": 1, + "9": 2, + "10": 3, + "11": 1, + "12": 2, + "13": 1 + }, + "totalLetters": { + "13": 1, + "14": 1, + "17": 1, + "21": 2, + "23": 1, + "24": 1, + "25": 1, + "26": 1, + "27": 1, + "28": 1, + "29": 1, + "32": 4, + "34": 1, + "35": 1, + "37": 1, + "40": 1, + "42": 1, + "51": 3, + "52": 2, + "54": 1, + "55": 1, + "63": 1, + "78": 1 + }, + "gamesPlayed": 30, + "medianWords": 4.5, + "medianLetters": 30.5 + }, + "12": { + "best": { + "word": "devil", + "letters": 20 + }, + "worst": { + "word": "diagnose", + "letters": 77 + }, + "totalWords": { + "3": 2, + "4": 4, + "5": 3, + "6": 6, + "7": 2, + "8": 1, + "11": 2, + "14": 1 + }, + "totalLetters": { + "20": 2, + "22": 1, + "26": 2, + "31": 1, + "32": 1, + "33": 1, + "34": 1, + "35": 2, + "36": 4, + "38": 1, + "46": 2, + "56": 1, + "58": 1, + "77": 1 + }, + "gamesPlayed": 21, + "medianWords": 6, + "medianLetters": 35 + }, + "year": { + "best": { + "word": "what", + "letters": 12 + }, + "worst": { + "word": "clergyman", + "letters": 149 + }, + "totalWords": { + "2": 13, + "3": 51, + "4": 59, + "5": 52, + "6": 39, + "7": 32, + "8": 16, + "9": 17, + "10": 16, + "11": 8, + "12": 6, + "13": 5, + "14": 3, + "15": 1, + "16": 1, + "19": 1, + "33": 1 + }, + "totalLetters": { + "12": 1, + "13": 4, + "14": 3, + "15": 1, + "16": 5, + "17": 8, + "18": 8, + "19": 4, + "20": 11, + "21": 11, + "22": 14, + "23": 10, + "24": 10, + "25": 8, + "26": 16, + "27": 12, + "28": 9, + "29": 6, + "30": 9, + "31": 5, + "32": 13, + "33": 8, + "34": 8, + "35": 7, + "36": 13, + "37": 5, + "38": 5, + "39": 5, + "40": 5, + "41": 6, + "42": 5, + "43": 7, + "44": 4, + "45": 9, + "46": 6, + "47": 5, + "48": 2, + "49": 9, + "50": 4, + "51": 6, + "52": 2, + "53": 3, + "54": 3, + "55": 3, + "56": 2, + "57": 3, + "58": 1, + "59": 1, + "60": 3, + "61": 2, + "62": 1, + "63": 2, + "64": 1, + "67": 1, + "71": 1, + "77": 1, + "78": 1, + "84": 1, + "101": 1, + "149": 1 + }, + "gamesPlayed": 321, + "medianWords": 5, + "medianLetters": 32 + } + }, + "dates": { + "1": [ + "30.01.2025", + "08.01.2025", + "23.01.2025", + "14.01.2025", + "17.01.2025", + "06.01.2025", + "11.01.2025", + "26.01.2025" + ], + "2": [ + "08.02.2025", + "20.12.2025" + ], + "3": [ + "19.03.2025", + "10.03.2025", + "11.03.2025", + "14.03.2025", + "08.03.2025" + ], + "4": [ + "16.04.2025", + "15.04.2025", + "17.04.2025", + "04.04.2025" + ], + "5": [ + "02.05.2025", + "13.05.2025", + "18.05.2025", + "25.05.2025" + ], + "6": [ + "09.06.2025", + "23.06.2025", + "14.06.2025", + "24.06.2025", + "05.06.2025" + ], + "7": [ + "10.07.2025", + "07.07.2025", + "21.07.2025", + "27.07.2025", + "11.07.2025", + "28.07.2025", + "05.07.2025" + ], + "8": [ + "24.08.2025", + "23.08.2025", + "20.08.2025", + "06.08.2025", + "03.08.2025" + ], + "9": [ + "27.09.2025", + "17.09.2025" + ], + "10": [ + "22.10.2025", + "06.10.2025", + "15.10.2025", + "26.10.2025" + ], + "12": [ + "20.12.2025" + ], + "year": [ + "09.06.2025", + "16.04.2025", + "19.03.2025", + "23.06.2025", + "30.01.2025", + "02.05.2025", + "10.03.2025", + "11.03.2025", + "08.01.2025", + "15.04.2025", + "13.05.2025", + "14.03.2025", + "23.01.2025", + "08.03.2025", + "14.06.2025", + "14.01.2025", + "17.04.2025", + "24.06.2025", + "08.02.2025", + "17.01.2025", + "06.01.2025", + "11.01.2025", + "18.05.2025", + "04.04.2025", + "05.06.2025", + "26.01.2025", + "25.05.2025", + "10.07.2025", + "20.12.2025", + "22.10.2025", + "24.08.2025", + "27.09.2025", + "17.09.2025", + "23.08.2025", + "07.07.2025", + "21.07.2025", + "20.08.2025", + "06.08.2025", + "06.10.2025", + "15.10.2025", + "26.10.2025", + "03.08.2025", + "27.07.2025", + "11.07.2025", + "28.07.2025", + "05.07.2025" + ] + }, + "worstDates": { + "1": [ + "04.01.2025", + "07.01.2025", + "05.01.2025", + "27.01.2025", + "20.01.2025", + "03.01.2025", + "24.01.2025", + "19.11.2025", + "30.11.2025", + "16.11.2025", + "01.11.2025", + "22.11.2025", + "28.11.2025", + "25.11.2025" + ], + "2": [ + "21.02.2025", + "11.02.2025", + "12.02.2025", + "10.02.2025", + "05.02.2025", + "07.02.2025", + "16.02.2025", + "19.02.2025", + "08.12.2025", + "12.12.2025", + "13.12.2025", + "04.12.2025", + "01.12.2025", + "14.12.2025", + "11.12.2025" + ], + "3": [ + "17.03.2025", + "29.03.2025", + "23.03.2025", + "26.03.2025", + "21.03.2025", + "03.03.2025", + "12.03.2025", + "02.03.2025", + "24.03.2025", + "01.03.2025" + ], + "4": [ + "29.04.2025", + "01.04.2025", + "08.04.2025", + "09.04.2025", + "30.04.2025", + "21.04.2025" + ], + "5": [ + "01.05.2025", + "23.05.2025", + "07.05.2025", + "17.05.2025", + "06.05.2025" + ], + "6": [ + "12.06.2025", + "08.06.2025", + "18.06.2025", + "15.06.2025", + "06.06.2025", + "04.06.2025", + "25.06.2025" + ], + "7": [ + "03.07.2025", + "04.07.2025", + "18.07.2025", + "26.07.2025", + "22.07.2025", + "15.07.2025", + "08.07.2025", + "16.07.2025", + "14.07.2025", + "23.07.2025" + ], + "8": [ + "25.08.2025", + "19.08.2025", + "29.08.2025", + "01.08.2025", + "22.08.2025" + ], + "9": [ + "01.09.2025", + "14.09.2025", + "15.09.2025", + "26.09.2025", + "11.09.2025", + "30.09.2025", + "08.09.2025", + "22.09.2025", + "21.09.2025" + ], + "10": [ + "14.10.2025", + "19.10.2025", + "24.10.2025", + "30.10.2025", + "20.10.2025", + "16.10.2025", + "05.10.2025", + "07.10.2025", + "08.10.2025" + ], + "11": [ + "19.11.2025", + "30.11.2025", + "16.11.2025", + "01.11.2025", + "22.11.2025", + "28.11.2025", + "25.11.2025" + ], + "12": [ + "08.12.2025", + "12.12.2025", + "13.12.2025", + "04.12.2025", + "01.12.2025", + "14.12.2025", + "11.12.2025" + ], + "year": [ + "01.05.2025", + "04.01.2025", + "12.06.2025", + "17.03.2025", + "23.05.2025", + "08.06.2025", + "07.01.2025", + "21.02.2025", + "29.03.2025", + "11.02.2025", + "12.02.2025", + "10.02.2025", + "23.03.2025", + "05.02.2025", + "18.06.2025", + "26.03.2025", + "07.05.2025", + "05.01.2025", + "15.06.2025", + "27.01.2025", + "20.01.2025", + "06.06.2025", + "17.05.2025", + "03.01.2025", + "21.03.2025", + "04.06.2025", + "29.04.2025", + "06.05.2025", + "01.04.2025", + "08.04.2025", + "25.06.2025", + "09.04.2025", + "03.03.2025", + "07.02.2025", + "12.03.2025", + "02.03.2025", + "16.02.2025", + "24.03.2025", + "30.04.2025", + "24.01.2025", + "19.02.2025", + "21.04.2025", + "01.03.2025", + "01.09.2025", + "03.07.2025", + "04.07.2025", + "14.09.2025", + "14.10.2025", + "19.10.2025", + "24.10.2025", + "08.12.2025", + "25.08.2025", + "18.07.2025", + "19.08.2025", + "19.11.2025", + "15.09.2025", + "26.09.2025", + "11.09.2025", + "30.11.2025", + "30.09.2025", + "12.12.2025", + "16.11.2025", + "30.10.2025", + "26.07.2025", + "20.10.2025", + "01.11.2025", + "13.12.2025", + "29.08.2025", + "22.11.2025", + "28.11.2025", + "08.09.2025", + "01.08.2025", + "22.07.2025", + "22.09.2025", + "16.10.2025", + "04.12.2025", + "01.12.2025", + "15.07.2025", + "08.07.2025", + "14.12.2025", + "25.11.2025", + "22.08.2025", + "05.10.2025", + "07.10.2025", + "16.07.2025", + "14.07.2025", + "21.09.2025", + "08.10.2025", + "11.12.2025", + "23.07.2025" + ] + } + }, + "kwiecik": { + "best50": { + "best": { + "word": "burial", + "letters": 14 + }, + "worst": { + "word": "precious", + "letters": 20 + }, + "totalWords": { + "2": 46, + "3": 4 + }, + "totalLetters": { + "14": 1, + "16": 2, + "17": 12, + "18": 16, + "19": 15, + "20": 4 + }, + "gamesPlayed": 50, + "medianWords": 2, + "medianLetters": 17.5 + }, + "hardest50": { + "best": { + "word": "slipped", + "letters": 22 + }, + "worst": { + "word": "hindsight", + "letters": 55 + }, + "totalWords": { + "3": 7, + "4": 14, + "5": 7, + "6": 3, + "7": 3, + "8": 1, + "9": 1 + }, + "totalLetters": { + "22": 1, + "26": 3, + "28": 2, + "29": 1, + "30": 4, + "31": 1, + "32": 1, + "33": 4, + "34": 2, + "37": 3, + "38": 2, + "39": 1, + "40": 3, + "41": 1, + "42": 1, + "45": 2, + "47": 1, + "51": 2, + "55": 1 + }, + "gamesPlayed": 36, + "medianWords": 3.5, + "medianLetters": 33.5 + }, + "results": { + "1": { + "best": { + "word": "mile", + "letters": 18 + }, + "worst": { + "word": "immortal", + "letters": 55 + }, + "totalWords": { + "2": 3, + "3": 9, + "4": 7, + "5": 6, + "6": 2, + "7": 1, + "8": 1, + "9": 1 + }, + "totalLetters": { + "18": 3, + "19": 1, + "20": 1, + "23": 1, + "25": 3, + "26": 1, + "27": 2, + "28": 2, + "29": 1, + "30": 4, + "31": 1, + "32": 2, + "33": 1, + "36": 1, + "37": 1, + "39": 1, + "40": 1, + "45": 1, + "55": 2 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 29.5 + }, + "2": { + "best": { + "word": "team", + "letters": 17 + }, + "worst": { + "word": "blameless", + "letters": 43 + }, + "totalWords": { + "2": 5, + "3": 8, + "4": 4, + "5": 4, + "6": 1, + "7": 2 + }, + "totalLetters": { + "17": 1, + "18": 3, + "20": 1, + "21": 2, + "22": 1, + "23": 2, + "24": 1, + "26": 1, + "27": 2, + "31": 1, + "33": 3, + "36": 2, + "37": 1, + "38": 1, + "40": 1, + "43": 1 + }, + "gamesPlayed": 24, + "medianWords": 2.5, + "medianLetters": 26.5 + }, + "3": { + "best": { + "word": "preface", + "letters": 16 + }, + "worst": { + "word": "drama", + "letters": 46 + }, + "totalWords": { + "2": 1, + "3": 11, + "4": 4, + "5": 2, + "6": 2, + "10": 1 + }, + "totalLetters": { + "16": 1, + "19": 1, + "20": 2, + "22": 1, + "23": 1, + "24": 2, + "25": 2, + "26": 2, + "29": 3, + "31": 1, + "32": 1, + "36": 1, + "37": 1, + "41": 1, + "46": 1 + }, + "gamesPlayed": 21, + "medianWords": 3, + "medianLetters": 26 + }, + "4": { + "best": { + "word": "render", + "letters": 17 + }, + "worst": { + "word": "affinity", + "letters": 42 + }, + "totalWords": { + "2": 4, + "3": 9, + "4": 4, + "5": 5, + "6": 1 + }, + "totalLetters": { + "17": 1, + "19": 1, + "20": 2, + "23": 1, + "24": 2, + "25": 2, + "26": 3, + "27": 2, + "28": 1, + "30": 2, + "31": 1, + "32": 2, + "35": 1, + "41": 1, + "42": 1 + }, + "gamesPlayed": 23, + "medianWords": 3, + "medianLetters": 26 + }, + "5": { + "best": { + "word": "burial", + "letters": 14 + }, + "worst": { + "word": "overpower", + "letters": 51 + }, + "totalWords": { + "2": 3, + "3": 13, + "4": 2, + "5": 3, + "6": 4, + "7": 2, + "11": 1 + }, + "totalLetters": { + "14": 1, + "18": 1, + "20": 1, + "21": 3, + "22": 1, + "23": 2, + "24": 1, + "25": 3, + "26": 1, + "27": 2, + "28": 1, + "29": 1, + "31": 1, + "32": 2, + "33": 1, + "35": 1, + "38": 1, + "39": 1, + "41": 1, + "43": 1, + "51": 1 + }, + "gamesPlayed": 28, + "medianWords": 2.5, + "medianLetters": 26.5 + }, + "6": { + "best": { + "word": "arrow", + "letters": 16 + }, + "worst": { + "word": "glider", + "letters": 56 + }, + "totalWords": { + "2": 7, + "3": 8, + "4": 4, + "5": 6, + "6": 2, + "10": 1 + }, + "totalLetters": { + "16": 1, + "17": 1, + "18": 2, + "19": 1, + "20": 1, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "25": 1, + "26": 2, + "27": 2, + "28": 1, + "29": 1, + "34": 3, + "37": 2, + "38": 2, + "40": 1, + "42": 2, + "56": 1 + }, + "gamesPlayed": 28, + "medianWords": 2.5, + "medianLetters": 26.5 + }, + "7": { + "best": { + "word": "near", + "letters": 17 + }, + "worst": { + "word": "lodging", + "letters": 34 + }, + "totalWords": { + "2": 13, + "3": 8, + "4": 5, + "6": 1 + }, + "totalLetters": { + "17": 3, + "18": 3, + "19": 2, + "20": 4, + "21": 1, + "22": 2, + "25": 1, + "26": 2, + "27": 5, + "30": 1, + "31": 1, + "32": 1, + "34": 1 + }, + "gamesPlayed": 27, + "medianWords": 3, + "medianLetters": 22 + }, + "8": { + "best": { + "word": "carp", + "letters": 17 + }, + "worst": { + "word": "seeming", + "letters": 38 + }, + "totalWords": { + "2": 7, + "3": 8, + "4": 7, + "5": 3 + }, + "totalLetters": { + "17": 2, + "19": 3, + "20": 1, + "21": 2, + "22": 3, + "24": 2, + "25": 1, + "26": 1, + "27": 1, + "28": 2, + "29": 2, + "31": 1, + "32": 2, + "33": 1, + "38": 1 + }, + "gamesPlayed": 25, + "medianWords": 3, + "medianLetters": 24 + }, + "9": { + "best": { + "word": "yard", + "letters": 17 + }, + "worst": { + "word": "eleventh", + "letters": 40 + }, + "totalWords": { + "2": 10, + "3": 10, + "4": 7, + "5": 1, + "6": 2 + }, + "totalLetters": { + "17": 1, + "18": 2, + "19": 2, + "20": 4, + "21": 2, + "22": 2, + "23": 1, + "24": 1, + "25": 1, + "26": 1, + "28": 3, + "30": 3, + "31": 1, + "32": 1, + "33": 1, + "34": 2, + "38": 1, + "40": 1 + }, + "gamesPlayed": 30, + "medianWords": 2.5, + "medianLetters": 24.5 + }, + "10": { + "best": { + "word": "left", + "letters": 17 + }, + "worst": { + "word": "threaten", + "letters": 45 + }, + "totalWords": { + "2": 7, + "3": 6, + "4": 4, + "5": 2, + "6": 1 + }, + "totalLetters": { + "17": 1, + "18": 1, + "19": 2, + "20": 2, + "21": 2, + "22": 1, + "24": 2, + "25": 1, + "27": 1, + "29": 1, + "32": 1, + "33": 1, + "35": 1, + "37": 1, + "40": 1, + "45": 1 + }, + "gamesPlayed": 20, + "medianWords": 2.5, + "medianLetters": 23 + }, + "11": { + "best": { + "word": "beer", + "letters": 17 + }, + "worst": { + "word": "extractor", + "letters": 44 + }, + "totalWords": { + "2": 7, + "3": 11, + "4": 8, + "5": 2 + }, + "totalLetters": { + "17": 1, + "19": 2, + "20": 1, + "21": 4, + "22": 3, + "24": 3, + "25": 1, + "26": 3, + "27": 2, + "29": 3, + "32": 2, + "34": 1, + "39": 1, + "44": 1 + }, + "gamesPlayed": 28, + "medianWords": 2.5, + "medianLetters": 24.5 + }, + "12": { + "best": { + "word": "talk", + "letters": 17 + }, + "worst": { + "word": "aquatic", + "letters": 51 + }, + "totalWords": { + "2": 4, + "3": 3, + "4": 3, + "5": 1, + "6": 1, + "7": 2, + "8": 1 + }, + "totalLetters": { + "17": 1, + "18": 1, + "20": 1, + "22": 1, + "23": 1, + "25": 1, + "29": 2, + "30": 2, + "35": 1, + "36": 1, + "37": 1, + "47": 1, + "51": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 29 + }, + "year": { + "best": { + "word": "burial", + "letters": 14 + }, + "worst": { + "word": "glider", + "letters": 56 + }, + "totalWords": { + "2": 71, + "3": 104, + "4": 59, + "5": 35, + "6": 17, + "7": 7, + "8": 2, + "9": 1, + "10": 2, + "11": 1 + }, + "totalLetters": { + "14": 1, + "16": 2, + "17": 12, + "18": 16, + "19": 15, + "20": 21, + "21": 17, + "22": 16, + "23": 10, + "24": 15, + "25": 17, + "26": 17, + "27": 19, + "28": 10, + "29": 14, + "30": 12, + "31": 8, + "32": 14, + "33": 8, + "34": 7, + "35": 4, + "36": 5, + "37": 7, + "38": 6, + "39": 3, + "40": 5, + "41": 3, + "42": 3, + "43": 2, + "44": 1, + "45": 2, + "46": 1, + "47": 1, + "51": 2, + "55": 2, + "56": 1 + }, + "gamesPlayed": 299, + "medianWords": 3, + "medianLetters": 26 + } + }, + "dates": { + "1": [ + "15.01.2025", + "05.01.2025", + "29.01.2025", + "28.01.2025", + "13.01.2025", + "18.01.2025", + "19.11.2025", + "10.11.2025", + "28.11.2025", + "05.11.2025", + "23.11.2025" + ], + "2": [ + "02.02.2025", + "21.02.2025", + "11.02.2025", + "10.02.2025", + "14.02.2025", + "25.02.2025", + "06.02.2025", + "23.02.2025", + "24.02.2025", + "06.12.2025", + "04.12.2025", + "05.12.2025", + "09.12.2025" + ], + "3": [ + "30.03.2025", + "28.03.2025", + "04.03.2025", + "23.03.2025", + "16.03.2025" + ], + "4": [ + "03.04.2025", + "18.04.2025", + "09.04.2025", + "10.04.2025" + ], + "5": [ + "01.05.2025", + "19.05.2025", + "16.05.2025", + "30.05.2025", + "17.05.2025", + "06.05.2025", + "03.05.2025", + "24.05.2025", + "25.05.2025" + ], + "6": [ + "03.06.2025", + "22.06.2025", + "17.06.2025", + "20.06.2025" + ], + "7": [ + "17.07.2025", + "13.07.2025", + "18.07.2025", + "06.07.2025", + "26.07.2025", + "15.07.2025", + "11.07.2025" + ], + "8": [ + "24.08.2025", + "11.08.2025", + "26.08.2025", + "29.08.2025", + "14.08.2025" + ], + "9": [ + "10.09.2025", + "25.09.2025", + "11.09.2025", + "23.09.2025", + "20.09.2025", + "21.09.2025" + ], + "10": [ + "29.10.2025" + ], + "11": [ + "19.11.2025", + "10.11.2025", + "28.11.2025", + "05.11.2025", + "23.11.2025" + ], + "12": [ + "06.12.2025", + "04.12.2025", + "05.12.2025", + "09.12.2025" + ], + "year": [ + "01.05.2025", + "15.01.2025", + "19.05.2025", + "30.03.2025", + "02.02.2025", + "28.03.2025", + "21.02.2025", + "11.02.2025", + "03.04.2025", + "10.02.2025", + "04.03.2025", + "16.05.2025", + "30.05.2025", + "14.02.2025", + "25.02.2025", + "23.03.2025", + "06.02.2025", + "05.01.2025", + "03.06.2025", + "22.06.2025", + "29.01.2025", + "23.02.2025", + "16.03.2025", + "17.05.2025", + "24.02.2025", + "28.01.2025", + "06.05.2025", + "18.04.2025", + "03.05.2025", + "09.04.2025", + "24.05.2025", + "13.01.2025", + "10.04.2025", + "18.01.2025", + "17.06.2025", + "25.05.2025", + "20.06.2025", + "10.09.2025", + "17.07.2025", + "24.08.2025", + "25.09.2025", + "13.07.2025", + "18.07.2025", + "06.12.2025", + "19.11.2025", + "11.08.2025", + "11.09.2025", + "29.10.2025", + "10.11.2025", + "06.07.2025", + "23.09.2025", + "26.07.2025", + "26.08.2025", + "29.08.2025", + "28.11.2025", + "04.12.2025", + "14.08.2025", + "15.07.2025", + "20.09.2025", + "05.12.2025", + "09.12.2025", + "05.11.2025", + "21.09.2025", + "11.07.2025", + "23.11.2025" + ] + }, + "worstDates": { + "1": [ + "22.01.2025", + "21.01.2025", + "17.01.2025", + "09.01.2025", + "18.11.2025" + ], + "2": [ + "27.02.2025", + "18.02.2025", + "03.12.2025", + "11.12.2025" + ], + "3": [ + "13.03.2025", + "18.03.2025" + ], + "4": [ + "14.04.2025", + "20.04.2025" + ], + "5": [ + "28.05.2025", + "18.05.2025" + ], + "6": [ + "16.06.2025", + "13.06.2025", + "14.06.2025", + "05.06.2025", + "01.06.2025" + ], + "8": [ + "02.08.2025" + ], + "9": [ + "24.09.2025", + "07.09.2025", + "12.09.2025" + ], + "10": [ + "04.10.2025", + "21.10.2025" + ], + "11": [ + "18.11.2025" + ], + "12": [ + "03.12.2025", + "11.12.2025" + ], + "year": [ + "16.06.2025", + "13.06.2025", + "27.02.2025", + "13.03.2025", + "22.01.2025", + "28.05.2025", + "18.02.2025", + "14.06.2025", + "21.01.2025", + "17.01.2025", + "18.03.2025", + "18.05.2025", + "14.04.2025", + "05.06.2025", + "01.06.2025", + "20.04.2025", + "09.01.2025", + "04.10.2025", + "24.09.2025", + "02.08.2025", + "07.09.2025", + "18.11.2025", + "21.10.2025", + "03.12.2025", + "11.12.2025", + "12.09.2025" + ] + } + }, + "Greyman": { + "best50": { + "best": { + "word": "team", + "letters": 9 + }, + "worst": { + "word": "mother", + "letters": 21 + }, + "totalWords": { + "2": 22, + "3": 26, + "4": 2 + }, + "totalLetters": { + "9": 1, + "13": 6, + "14": 1, + "15": 9, + "16": 6, + "17": 6, + "18": 3, + "19": 6, + "20": 10, + "21": 2 + }, + "gamesPlayed": 50, + "medianWords": 2.5, + "medianLetters": 16.5 + }, + "hardest50": { + "best": { + "word": "textbook", + "letters": 22 + }, + "worst": { + "word": "overpower", + "letters": 55 + }, + "totalWords": { + "3": 3, + "4": 8, + "5": 12, + "6": 5, + "7": 9, + "8": 7, + "11": 1, + "12": 1 + }, + "totalLetters": { + "22": 2, + "24": 1, + "26": 1, + "27": 2, + "28": 1, + "29": 2, + "30": 2, + "31": 1, + "32": 2, + "33": 1, + "34": 4, + "35": 3, + "36": 2, + "37": 3, + "38": 4, + "39": 1, + "41": 3, + "42": 1, + "43": 3, + "45": 2, + "48": 2, + "49": 2, + "55": 1 + }, + "gamesPlayed": 46, + "medianWords": 5.5, + "medianLetters": 35.5 + }, + "results": { + "1": { + "best": { + "word": "ride", + "letters": 16 + }, + "worst": { + "word": "reprimand", + "letters": 49 + }, + "totalWords": { + "3": 4, + "4": 6, + "5": 9, + "6": 2, + "7": 6, + "8": 3 + }, + "totalLetters": { + "16": 1, + "20": 1, + "21": 1, + "22": 3, + "25": 2, + "27": 2, + "28": 2, + "29": 2, + "30": 2, + "32": 4, + "34": 1, + "35": 1, + "36": 1, + "37": 1, + "38": 2, + "41": 2, + "48": 1, + "49": 1 + }, + "gamesPlayed": 30, + "medianWords": 4.5, + "medianLetters": 29.5 + }, + "2": { + "best": { + "word": "team", + "letters": 9 + }, + "worst": { + "word": "slipped", + "letters": 49 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 8, + "5": 7, + "6": 4, + "7": 3, + "8": 1, + "9": 1 + }, + "totalLetters": { + "9": 1, + "21": 1, + "22": 2, + "23": 2, + "24": 1, + "25": 3, + "27": 1, + "28": 2, + "29": 2, + "30": 2, + "33": 2, + "34": 1, + "36": 1, + "37": 2, + "38": 1, + "39": 2, + "41": 1, + "49": 1 + }, + "gamesPlayed": 28, + "medianWords": 4.5, + "medianLetters": 28.5 + }, + "3": { + "best": { + "word": "drama", + "letters": 13 + }, + "worst": { + "word": "defector", + "letters": 45 + }, + "totalWords": { + "2": 2, + "3": 5, + "4": 7, + "5": 7, + "6": 3, + "7": 6 + }, + "totalLetters": { + "13": 1, + "15": 1, + "20": 1, + "22": 2, + "23": 1, + "24": 1, + "25": 1, + "26": 2, + "27": 2, + "29": 4, + "31": 1, + "32": 2, + "33": 1, + "34": 1, + "35": 1, + "38": 1, + "39": 4, + "43": 2, + "45": 1 + }, + "gamesPlayed": 30, + "medianWords": 4.5, + "medianLetters": 28 + }, + "4": { + "best": { + "word": "mother", + "letters": 21 + }, + "worst": { + "word": "render", + "letters": 43 + }, + "totalWords": { + "3": 4, + "4": 11, + "5": 8, + "6": 5, + "7": 2 + }, + "totalLetters": { + "21": 2, + "23": 3, + "24": 2, + "25": 2, + "26": 3, + "27": 1, + "28": 2, + "29": 2, + "30": 1, + "31": 2, + "32": 1, + "33": 1, + "34": 1, + "35": 2, + "37": 1, + "38": 1, + "39": 1, + "41": 1, + "43": 1 + }, + "gamesPlayed": 30, + "medianWords": 4.5, + "medianLetters": 28.5 + }, + "5": { + "best": { + "word": "steer", + "letters": 15 + }, + "worst": { + "word": "overpower", + "letters": 55 + }, + "totalWords": { + "2": 1, + "3": 8, + "4": 10, + "5": 3, + "6": 4, + "7": 3, + "12": 1 + }, + "totalLetters": { + "15": 2, + "16": 1, + "17": 1, + "19": 2, + "21": 2, + "24": 1, + "25": 4, + "26": 1, + "27": 1, + "28": 2, + "29": 1, + "31": 2, + "32": 1, + "33": 1, + "34": 4, + "35": 2, + "38": 1, + "55": 1 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 27.5 + }, + "6": { + "best": { + "word": "surely", + "letters": 15 + }, + "worst": { + "word": "vanquish", + "letters": 49 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 9, + "5": 8, + "6": 4, + "8": 1, + "9": 1 + }, + "totalLetters": { + "15": 1, + "19": 3, + "21": 1, + "22": 2, + "23": 1, + "24": 3, + "25": 1, + "26": 1, + "27": 1, + "28": 1, + "30": 3, + "31": 1, + "32": 1, + "34": 3, + "36": 2, + "38": 2, + "43": 1, + "49": 1 + }, + "gamesPlayed": 29, + "medianWords": 4, + "medianLetters": 28 + }, + "7": { + "best": { + "word": "riot", + "letters": 13 + }, + "worst": { + "word": "none", + "letters": 48 + }, + "totalWords": { + "2": 3, + "3": 6, + "4": 10, + "5": 8, + "6": 1, + "7": 2, + "11": 1 + }, + "totalLetters": { + "13": 1, + "16": 1, + "17": 2, + "18": 2, + "21": 2, + "22": 1, + "23": 3, + "24": 2, + "25": 2, + "26": 1, + "27": 2, + "28": 1, + "29": 2, + "30": 2, + "32": 1, + "33": 3, + "37": 1, + "45": 1, + "48": 1 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 25 + }, + "8": { + "best": { + "word": "pork", + "letters": 13 + }, + "worst": { + "word": "pipeline", + "letters": 60 + }, + "totalWords": { + "2": 5, + "3": 4, + "4": 8, + "5": 6, + "6": 4, + "7": 1, + "10": 1 + }, + "totalLetters": { + "13": 2, + "14": 1, + "15": 2, + "17": 2, + "20": 2, + "21": 1, + "22": 1, + "24": 1, + "25": 2, + "26": 1, + "27": 1, + "28": 3, + "29": 2, + "30": 2, + "31": 2, + "34": 1, + "37": 1, + "40": 1, + "60": 1 + }, + "gamesPlayed": 29, + "medianWords": 4, + "medianLetters": 26 + }, + "9": { + "best": { + "word": "frugal", + "letters": 15 + }, + "worst": { + "word": "improve", + "letters": 46 + }, + "totalWords": { + "2": 2, + "3": 4, + "4": 8, + "5": 7, + "6": 6, + "8": 2, + "9": 1 + }, + "totalLetters": { + "15": 1, + "16": 1, + "21": 2, + "22": 2, + "23": 2, + "24": 1, + "25": 1, + "26": 1, + "27": 7, + "29": 1, + "31": 1, + "32": 1, + "34": 1, + "35": 1, + "37": 2, + "38": 1, + "41": 1, + "42": 1, + "43": 1, + "46": 1 + }, + "gamesPlayed": 30, + "medianWords": 4.5, + "medianLetters": 26.5 + }, + "10": { + "best": { + "word": "left", + "letters": 13 + }, + "worst": { + "word": "sheriff", + "letters": 42 + }, + "totalWords": { + "2": 2, + "3": 7, + "4": 5, + "5": 7, + "6": 8, + "8": 1 + }, + "totalLetters": { + "13": 2, + "20": 3, + "21": 1, + "22": 2, + "23": 1, + "24": 2, + "26": 2, + "28": 2, + "29": 1, + "30": 1, + "31": 3, + "32": 1, + "33": 1, + "34": 2, + "36": 1, + "37": 2, + "38": 1, + "40": 1, + "42": 1 + }, + "gamesPlayed": 30, + "medianWords": 4.5, + "medianLetters": 28.5 + }, + "11": { + "best": { + "word": "tariff", + "letters": 15 + }, + "worst": { + "word": "withdraw", + "letters": 44 + }, + "totalWords": { + "2": 2, + "3": 5, + "4": 11, + "5": 4, + "6": 4, + "7": 1, + "9": 1 + }, + "totalLetters": { + "15": 1, + "17": 1, + "18": 1, + "19": 1, + "20": 2, + "21": 1, + "23": 1, + "24": 1, + "25": 2, + "27": 2, + "28": 2, + "29": 1, + "30": 4, + "31": 1, + "32": 1, + "34": 2, + "35": 1, + "36": 1, + "40": 1, + "44": 1 + }, + "gamesPlayed": 28, + "medianWords": 3.5, + "medianLetters": 27.5 + }, + "12": { + "best": { + "word": "pisces", + "letters": 15 + }, + "worst": { + "word": "operate", + "letters": 40 + }, + "totalWords": { + "2": 3, + "4": 2, + "6": 1, + "7": 1 + }, + "totalLetters": { + "15": 1, + "16": 2, + "20": 1, + "23": 1, + "35": 1, + "40": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 20 + }, + "year": { + "best": { + "word": "team", + "letters": 9 + }, + "worst": { + "word": "pipeline", + "letters": 60 + }, + "totalWords": { + "2": 22, + "3": 55, + "4": 95, + "5": 74, + "6": 46, + "7": 25, + "8": 8, + "9": 4, + "10": 1, + "11": 1, + "12": 1 + }, + "totalLetters": { + "9": 1, + "13": 6, + "14": 1, + "15": 9, + "16": 6, + "17": 6, + "18": 3, + "19": 6, + "20": 10, + "21": 14, + "22": 15, + "23": 15, + "24": 15, + "25": 20, + "26": 12, + "27": 20, + "28": 17, + "29": 18, + "30": 17, + "31": 13, + "32": 13, + "33": 9, + "34": 17, + "35": 9, + "36": 6, + "37": 10, + "38": 10, + "39": 7, + "40": 4, + "41": 5, + "42": 2, + "43": 5, + "44": 1, + "45": 2, + "46": 1, + "48": 2, + "49": 3, + "55": 1, + "60": 1 + }, + "gamesPlayed": 332, + "medianWords": 3.5, + "medianLetters": 27.5 + } + }, + "dates": { + "1": [ + "19.01.2025", + "07.01.2025", + "16.01.2025", + "09.01.2025", + "11.11.2025", + "27.11.2025", + "06.11.2025", + "08.11.2025", + "02.11.2025", + "03.11.2025", + "04.11.2025" + ], + "2": [ + "01.02.2025", + "20.02.2025", + "18.02.2025", + "26.02.2025", + "16.02.2025", + "07.12.2025", + "01.12.2025", + "11.12.2025" + ], + "3": [ + "27.03.2025", + "15.03.2025", + "07.03.2025", + "13.03.2025", + "21.03.2025", + "31.03.2025", + "09.03.2025", + "12.03.2025" + ], + "4": [ + "27.04.2025", + "19.04.2025" + ], + "5": [ + "23.05.2025", + "29.05.2025", + "04.05.2025", + "21.05.2025", + "31.05.2025", + "22.05.2025", + "27.05.2025" + ], + "6": [ + "18.06.2025", + "15.06.2025", + "17.06.2025", + "10.06.2025", + "29.06.2025" + ], + "7": [ + "22.07.2025", + "19.07.2025", + "09.07.2025", + "14.07.2025", + "23.07.2025", + "01.07.2025" + ], + "8": [ + "08.08.2025", + "02.08.2025", + "18.08.2025", + "29.08.2025", + "04.08.2025", + "30.08.2025", + "28.08.2025" + ], + "9": [ + "14.09.2025", + "15.09.2025", + "26.09.2025" + ], + "10": [ + "23.10.2025", + "24.10.2025", + "18.10.2025", + "20.10.2025" + ], + "11": [ + "11.11.2025", + "27.11.2025", + "06.11.2025", + "08.11.2025", + "02.11.2025", + "03.11.2025", + "04.11.2025" + ], + "12": [ + "07.12.2025", + "01.12.2025", + "11.12.2025" + ], + "year": [ + "27.04.2025", + "01.02.2025", + "19.04.2025", + "23.05.2025", + "27.03.2025", + "15.03.2025", + "19.01.2025", + "07.03.2025", + "20.02.2025", + "29.05.2025", + "07.01.2025", + "13.03.2025", + "04.05.2025", + "21.05.2025", + "18.02.2025", + "18.06.2025", + "26.02.2025", + "15.06.2025", + "21.03.2025", + "31.03.2025", + "16.01.2025", + "31.05.2025", + "09.03.2025", + "12.03.2025", + "22.05.2025", + "27.05.2025", + "16.02.2025", + "09.01.2025", + "17.06.2025", + "10.06.2025", + "11.11.2025", + "14.09.2025", + "23.10.2025", + "24.10.2025", + "27.11.2025", + "06.11.2025", + "18.10.2025", + "08.08.2025", + "02.08.2025", + "15.09.2025", + "26.09.2025", + "08.11.2025", + "20.10.2025", + "02.11.2025", + "18.08.2025", + "29.08.2025", + "22.07.2025", + "07.12.2025", + "01.12.2025", + "29.06.2025", + "19.07.2025", + "04.08.2025", + "09.07.2025", + "14.07.2025", + "30.08.2025", + "03.11.2025", + "11.12.2025", + "23.07.2025", + "01.07.2025", + "04.11.2025", + "28.08.2025" + ] + }, + "worstDates": { + "1": [ + "10.01.2025", + "14.01.2025", + "17.01.2025", + "09.11.2025", + "10.11.2025" + ], + "2": [ + "03.02.2025", + "14.02.2025", + "04.02.2025", + "25.02.2025", + "24.02.2025", + "06.12.2025" + ], + "3": [ + "25.03.2025", + "10.03.2025", + "20.03.2025" + ], + "4": [ + "23.04.2025", + "26.04.2025", + "13.04.2025", + "10.04.2025" + ], + "5": [ + "08.05.2025" + ], + "6": [ + "22.06.2025", + "05.06.2025", + "27.06.2025" + ], + "7": [ + "07.07.2025", + "31.07.2025", + "27.07.2025", + "11.07.2025" + ], + "8": [ + "27.08.2025" + ], + "9": [ + "17.09.2025", + "04.09.2025", + "09.09.2025", + "06.09.2025", + "13.09.2025" + ], + "10": [ + "26.10.2025" + ], + "11": [ + "09.11.2025", + "10.11.2025" + ], + "12": [ + "06.12.2025" + ], + "year": [ + "10.01.2025", + "23.04.2025", + "26.04.2025", + "25.03.2025", + "10.03.2025", + "03.02.2025", + "13.04.2025", + "14.02.2025", + "04.02.2025", + "25.02.2025", + "14.01.2025", + "08.05.2025", + "22.06.2025", + "24.02.2025", + "17.01.2025", + "20.03.2025", + "05.06.2025", + "10.04.2025", + "09.11.2025", + "27.08.2025", + "17.09.2025", + "04.09.2025", + "06.12.2025", + "27.06.2025", + "09.09.2025", + "10.11.2025", + "07.07.2025", + "31.07.2025", + "26.10.2025", + "27.07.2025", + "06.09.2025", + "13.09.2025", + "11.07.2025" + ] + } + }, + "Deykun": { + "best50": { + "best": { + "word": "cargo", + "letters": 10 + }, + "worst": { + "word": "harbor", + "letters": 21 + }, + "totalWords": { + "2": 2, + "3": 17, + "4": 29, + "5": 2 + }, + "totalLetters": { + "10": 1, + "11": 1, + "13": 3, + "14": 2, + "15": 3, + "16": 1, + "17": 5, + "18": 9, + "19": 9, + "20": 11, + "21": 5 + }, + "gamesPlayed": 50, + "medianWords": 3.5, + "medianLetters": 18.5 + }, + "hardest50": { + "best": { + "word": "expose", + "letters": 20 + }, + "worst": { + "word": "periphery", + "letters": 69 + }, + "totalWords": { + "4": 3, + "5": 3, + "6": 9, + "7": 9, + "8": 8, + "9": 5, + "10": 4, + "11": 2, + "12": 1, + "13": 1, + "14": 1 + }, + "totalLetters": { + "20": 2, + "25": 1, + "26": 1, + "30": 1, + "31": 1, + "32": 2, + "33": 1, + "35": 1, + "36": 2, + "37": 4, + "38": 1, + "39": 3, + "40": 4, + "41": 3, + "43": 5, + "44": 2, + "45": 2, + "46": 2, + "48": 1, + "49": 1, + "50": 1, + "51": 1, + "52": 1, + "61": 1, + "62": 1, + "69": 1 + }, + "gamesPlayed": 46, + "medianWords": 6.5, + "medianLetters": 39.5 + }, + "results": { + "1": { + "best": { + "word": "immortal", + "letters": 18 + }, + "worst": { + "word": "midwife", + "letters": 44 + }, + "totalWords": { + "3": 1, + "4": 4, + "5": 5, + "6": 6, + "7": 4, + "8": 1, + "10": 1 + }, + "totalLetters": { + "18": 1, + "19": 1, + "20": 1, + "21": 1, + "24": 2, + "25": 1, + "26": 1, + "27": 2, + "28": 2, + "30": 1, + "31": 1, + "32": 1, + "35": 1, + "36": 1, + "38": 1, + "39": 1, + "41": 1, + "43": 1, + "44": 1 + }, + "gamesPlayed": 22, + "medianWords": 5.5, + "medianLetters": 27.5 + }, + "2": { + "best": { + "word": "team", + "letters": 13 + }, + "worst": { + "word": "hairdryer", + "letters": 51 + }, + "totalWords": { + "3": 3, + "4": 3, + "5": 7, + "6": 8, + "7": 3, + "9": 2, + "10": 1 + }, + "totalLetters": { + "13": 1, + "15": 1, + "16": 1, + "21": 1, + "22": 2, + "25": 3, + "26": 2, + "27": 1, + "28": 1, + "29": 1, + "30": 3, + "32": 1, + "33": 2, + "35": 1, + "38": 2, + "39": 1, + "42": 1, + "44": 1, + "51": 1 + }, + "gamesPlayed": 27, + "medianWords": 6, + "medianLetters": 29 + }, + "3": { + "best": { + "word": "shack", + "letters": 18 + }, + "worst": { + "word": "parallel", + "letters": 59 + }, + "totalWords": { + "4": 4, + "5": 6, + "6": 7, + "7": 1, + "8": 2, + "9": 1, + "10": 3, + "11": 1 + }, + "totalLetters": { + "18": 1, + "20": 1, + "22": 1, + "24": 1, + "26": 2, + "27": 3, + "28": 1, + "30": 1, + "32": 2, + "33": 1, + "34": 2, + "36": 1, + "37": 2, + "41": 1, + "42": 1, + "43": 2, + "47": 1, + "59": 1 + }, + "gamesPlayed": 25, + "medianWords": 6, + "medianLetters": 32 + }, + "4": { + "best": { + "word": "such", + "letters": 17 + }, + "worst": { + "word": "render", + "letters": 50 + }, + "totalWords": { + "3": 2, + "4": 9, + "5": 4, + "6": 5, + "7": 2, + "8": 1, + "9": 2, + "10": 1, + "11": 1 + }, + "totalLetters": { + "17": 1, + "19": 3, + "20": 2, + "21": 3, + "23": 1, + "24": 2, + "25": 1, + "27": 2, + "28": 2, + "29": 1, + "34": 1, + "35": 1, + "40": 1, + "41": 1, + "45": 1, + "46": 1, + "49": 1, + "50": 2 + }, + "gamesPlayed": 27, + "medianWords": 5, + "medianLetters": 27 + }, + "5": { + "best": { + "word": "tape", + "letters": 14 + }, + "worst": { + "word": "neckline", + "letters": 66 + }, + "totalWords": { + "3": 1, + "4": 7, + "5": 2, + "6": 6, + "7": 5, + "8": 6, + "9": 1, + "10": 2, + "14": 1 + }, + "totalLetters": { + "14": 1, + "17": 1, + "18": 1, + "19": 2, + "20": 1, + "22": 1, + "23": 1, + "24": 1, + "26": 1, + "28": 1, + "29": 2, + "30": 1, + "31": 2, + "32": 1, + "33": 1, + "34": 1, + "35": 2, + "37": 2, + "39": 2, + "40": 1, + "41": 3, + "49": 1, + "66": 1 + }, + "gamesPlayed": 31, + "medianWords": 6, + "medianLetters": 31 + }, + "6": { + "best": { + "word": "gulf", + "letters": 13 + }, + "worst": { + "word": "itinerary", + "letters": 62 + }, + "totalWords": { + "3": 1, + "4": 5, + "5": 8, + "6": 7, + "7": 4, + "8": 1, + "9": 1, + "13": 2 + }, + "totalLetters": { + "13": 1, + "22": 2, + "23": 2, + "24": 2, + "25": 1, + "26": 3, + "27": 3, + "30": 2, + "31": 3, + "32": 2, + "33": 1, + "36": 1, + "39": 2, + "40": 1, + "43": 1, + "56": 1, + "62": 1 + }, + "gamesPlayed": 29, + "medianWords": 6, + "medianLetters": 30 + }, + "7": { + "best": { + "word": "cargo", + "letters": 10 + }, + "worst": { + "word": "billboard", + "letters": 61 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 6, + "5": 8, + "6": 2, + "7": 5, + "8": 5, + "9": 1, + "12": 1 + }, + "totalLetters": { + "10": 1, + "14": 1, + "17": 1, + "20": 1, + "22": 1, + "23": 2, + "24": 2, + "26": 3, + "27": 2, + "29": 1, + "30": 1, + "31": 1, + "32": 1, + "34": 3, + "35": 3, + "37": 1, + "38": 1, + "40": 1, + "41": 1, + "44": 1, + "61": 1 + }, + "gamesPlayed": 30, + "medianWords": 4.5, + "medianLetters": 29.5 + }, + "8": { + "best": { + "word": "glance", + "letters": 11 + }, + "worst": { + "word": "pipeline", + "letters": 61 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 5, + "5": 8, + "6": 3, + "7": 3, + "8": 4, + "9": 2, + "10": 2, + "11": 1, + "14": 1 + }, + "totalLetters": { + "11": 1, + "17": 1, + "20": 3, + "21": 3, + "22": 1, + "23": 2, + "24": 1, + "27": 4, + "30": 1, + "33": 1, + "35": 1, + "37": 1, + "38": 1, + "39": 1, + "40": 1, + "43": 1, + "44": 2, + "46": 2, + "47": 1, + "50": 1, + "61": 1 + }, + "gamesPlayed": 31, + "medianWords": 6, + "medianLetters": 27 + }, + "9": { + "best": { + "word": "punk", + "letters": 13 + }, + "worst": { + "word": "periphery", + "letters": 69 + }, + "totalWords": { + "3": 3, + "4": 4, + "5": 10, + "6": 5, + "7": 1, + "8": 3, + "9": 2, + "14": 1 + }, + "totalLetters": { + "13": 1, + "15": 1, + "18": 1, + "19": 2, + "21": 1, + "22": 1, + "23": 2, + "26": 5, + "27": 2, + "29": 1, + "31": 2, + "33": 1, + "36": 1, + "37": 3, + "39": 1, + "41": 1, + "42": 1, + "48": 1, + "69": 1 + }, + "gamesPlayed": 29, + "medianWords": 5, + "medianLetters": 27 + }, + "10": { + "best": { + "word": "misery", + "letters": 18 + }, + "worst": { + "word": "subscribe", + "letters": 50 + }, + "totalWords": { + "3": 2, + "4": 2, + "5": 6, + "6": 4, + "7": 4, + "8": 5, + "9": 2 + }, + "totalLetters": { + "18": 2, + "20": 1, + "23": 1, + "24": 1, + "26": 2, + "27": 1, + "30": 2, + "31": 3, + "34": 1, + "38": 1, + "39": 1, + "40": 2, + "41": 3, + "43": 1, + "45": 2, + "50": 1 + }, + "gamesPlayed": 25, + "medianWords": 6, + "medianLetters": 31 + }, + "11": { + "best": { + "word": "employ", + "letters": 15 + }, + "worst": { + "word": "lifeboat", + "letters": 56 + }, + "totalWords": { + "3": 3, + "4": 5, + "5": 5, + "6": 4, + "7": 2, + "8": 7, + "10": 2, + "11": 1, + "13": 1 + }, + "totalLetters": { + "15": 1, + "18": 3, + "19": 1, + "21": 3, + "23": 1, + "25": 2, + "26": 1, + "27": 2, + "32": 2, + "33": 2, + "34": 2, + "35": 1, + "37": 1, + "39": 1, + "40": 1, + "42": 1, + "43": 1, + "46": 1, + "54": 1, + "55": 1, + "56": 1 + }, + "gamesPlayed": 30, + "medianWords": 5.5, + "medianLetters": 29.5 + }, + "12": { + "best": { + "word": "talk", + "letters": 17 + }, + "worst": { + "word": "hawthorn", + "letters": 52 + }, + "totalWords": { + "4": 3, + "5": 6, + "6": 5, + "7": 1, + "8": 4, + "9": 1, + "11": 1 + }, + "totalLetters": { + "17": 1, + "20": 1, + "23": 2, + "24": 1, + "26": 2, + "28": 2, + "31": 1, + "32": 1, + "33": 1, + "36": 2, + "37": 1, + "38": 1, + "40": 1, + "41": 1, + "42": 1, + "45": 1, + "52": 1 + }, + "gamesPlayed": 21, + "medianWords": 6, + "medianLetters": 32 + }, + "year": { + "best": { + "word": "cargo", + "letters": 10 + }, + "worst": { + "word": "periphery", + "letters": 69 + }, + "totalWords": { + "2": 2, + "3": 18, + "4": 57, + "5": 75, + "6": 62, + "7": 35, + "8": 39, + "9": 15, + "10": 12, + "11": 5, + "12": 1, + "13": 3, + "14": 3 + }, + "totalLetters": { + "10": 1, + "11": 1, + "13": 3, + "14": 2, + "15": 3, + "16": 1, + "17": 5, + "18": 9, + "19": 9, + "20": 11, + "21": 12, + "22": 9, + "23": 14, + "24": 13, + "25": 8, + "26": 22, + "27": 22, + "28": 9, + "29": 6, + "30": 12, + "31": 13, + "32": 11, + "33": 10, + "34": 10, + "35": 10, + "36": 6, + "37": 11, + "38": 7, + "39": 10, + "40": 9, + "41": 12, + "42": 5, + "43": 7, + "44": 5, + "45": 4, + "46": 4, + "47": 2, + "48": 1, + "49": 2, + "50": 4, + "51": 1, + "52": 1, + "54": 1, + "55": 1, + "56": 2, + "59": 1, + "61": 2, + "62": 1, + "66": 1, + "69": 1 + }, + "gamesPlayed": 327, + "medianWords": 6, + "medianLetters": 30 + } + }, + "dates": { + "1": [ + "22.01.2025", + "31.01.2025", + "21.01.2025", + "03.01.2025", + "24.11.2025", + "16.11.2025", + "01.11.2025", + "22.11.2025", + "18.11.2025" + ], + "2": [ + "03.02.2025", + "12.02.2025", + "28.02.2025", + "04.02.2025", + "07.02.2025", + "17.02.2025", + "19.02.2025", + "05.12.2025" + ], + "3": [ + "06.03.2025", + "01.03.2025" + ], + "4": [ + "05.04.2025", + "13.04.2025", + "11.04.2025", + "12.04.2025", + "09.04.2025", + "04.04.2025", + "14.04.2025", + "25.04.2025" + ], + "5": [ + "04.05.2025", + "08.05.2025", + "26.05.2025" + ], + "6": [ + "02.06.2025", + "08.06.2025", + "04.06.2025", + "26.06.2025" + ], + "7": [ + "29.07.2025", + "30.07.2025", + "31.07.2025", + "08.07.2025" + ], + "8": [ + "27.08.2025", + "25.08.2025", + "15.08.2025", + "29.08.2025", + "10.08.2025", + "17.08.2025" + ], + "9": [ + "09.09.2025", + "18.09.2025", + "05.09.2025", + "19.09.2025" + ], + "10": [ + "13.10.2025" + ], + "11": [ + "24.11.2025", + "16.11.2025", + "01.11.2025", + "22.11.2025", + "18.11.2025" + ], + "12": [ + "05.12.2025" + ], + "year": [ + "05.04.2025", + "02.06.2025", + "08.06.2025", + "04.05.2025", + "22.01.2025", + "03.02.2025", + "12.02.2025", + "31.01.2025", + "13.04.2025", + "28.02.2025", + "04.02.2025", + "08.05.2025", + "21.01.2025", + "11.04.2025", + "03.01.2025", + "04.06.2025", + "12.04.2025", + "09.04.2025", + "04.04.2025", + "26.05.2025", + "14.04.2025", + "07.02.2025", + "06.03.2025", + "17.02.2025", + "19.02.2025", + "01.03.2025", + "25.04.2025", + "27.08.2025", + "24.11.2025", + "25.08.2025", + "29.07.2025", + "09.09.2025", + "16.11.2025", + "18.09.2025", + "05.09.2025", + "01.11.2025", + "13.10.2025", + "15.08.2025", + "29.08.2025", + "22.11.2025", + "30.07.2025", + "31.07.2025", + "18.11.2025", + "26.06.2025", + "08.07.2025", + "05.12.2025", + "10.08.2025", + "17.08.2025", + "19.09.2025" + ] + }, + "worstDates": { + "1": [ + "13.01.2025", + "25.01.2025", + "07.11.2025", + "11.11.2025", + "12.11.2025", + "02.11.2025", + "05.11.2025", + "17.11.2025" + ], + "2": [ + "01.02.2025", + "14.02.2025", + "26.02.2025", + "23.02.2025", + "09.02.2025", + "17.12.2025", + "19.12.2025" + ], + "3": [ + "15.03.2025", + "11.03.2025", + "08.03.2025", + "09.03.2025", + "05.03.2025" + ], + "4": [ + "27.04.2025", + "19.04.2025", + "03.04.2025" + ], + "5": [ + "29.05.2025", + "20.05.2025", + "16.05.2025", + "09.05.2025" + ], + "6": [ + "07.06.2025", + "24.06.2025", + "30.06.2025", + "28.06.2025" + ], + "7": [ + "02.07.2025", + "13.07.2025", + "06.07.2025", + "22.07.2025", + "21.07.2025", + "09.07.2025" + ], + "8": [ + "11.08.2025", + "26.08.2025", + "14.08.2025", + "09.08.2025", + "20.08.2025", + "12.08.2025", + "16.08.2025", + "04.08.2025", + "03.08.2025" + ], + "9": [ + "02.09.2025", + "23.09.2025", + "29.09.2025" + ], + "10": [ + "22.10.2025", + "23.10.2025", + "29.10.2025", + "01.10.2025" + ], + "11": [ + "07.11.2025", + "11.11.2025", + "12.11.2025", + "02.11.2025", + "05.11.2025", + "17.11.2025" + ], + "12": [ + "17.12.2025", + "19.12.2025" + ], + "year": [ + "27.04.2025", + "01.02.2025", + "07.06.2025", + "19.04.2025", + "15.03.2025", + "11.03.2025", + "29.05.2025", + "03.04.2025", + "20.05.2025", + "16.05.2025", + "14.02.2025", + "26.02.2025", + "08.03.2025", + "23.02.2025", + "24.06.2025", + "09.05.2025", + "09.03.2025", + "05.03.2025", + "13.01.2025", + "09.02.2025", + "25.01.2025", + "02.07.2025", + "02.09.2025", + "07.11.2025", + "11.11.2025", + "12.11.2025", + "22.10.2025", + "23.10.2025", + "13.07.2025", + "11.08.2025", + "29.10.2025", + "30.06.2025", + "06.07.2025", + "23.09.2025", + "02.11.2025", + "26.08.2025", + "17.12.2025", + "22.07.2025", + "21.07.2025", + "14.08.2025", + "09.08.2025", + "20.08.2025", + "01.10.2025", + "12.08.2025", + "16.08.2025", + "04.08.2025", + "09.07.2025", + "19.12.2025", + "03.08.2025", + "29.09.2025", + "05.11.2025", + "17.11.2025", + "28.06.2025" + ] + } + }, + "wihajster": { + "best50": { + "best": { + "word": "tape", + "letters": 15 + }, + "worst": { + "word": "wound", + "letters": 21 + }, + "totalWords": { + "2": 36, + "3": 14 + }, + "totalLetters": { + "15": 8, + "16": 8, + "17": 5, + "18": 9, + "19": 6, + "20": 9, + "21": 5 + }, + "gamesPlayed": 50, + "medianWords": 2, + "medianLetters": 17.5 + }, + "results": { + "3": { + "best": { + "word": "beach", + "letters": 16 + }, + "worst": { + "word": "incentive", + "letters": 52 + }, + "totalWords": { + "2": 4, + "3": 10, + "4": 8, + "5": 2, + "6": 2 + }, + "totalLetters": { + "16": 1, + "17": 1, + "18": 1, + "20": 2, + "21": 2, + "22": 3, + "23": 1, + "24": 1, + "25": 1, + "28": 2, + "30": 2, + "31": 3, + "34": 1, + "38": 1, + "39": 1, + "40": 1, + "41": 1, + "52": 1 + }, + "gamesPlayed": 26, + "medianWords": 2.5, + "medianLetters": 26.5 + }, + "4": { + "best": { + "word": "wait", + "letters": 15 + }, + "worst": { + "word": "bullseye", + "letters": 46 + }, + "totalWords": { + "2": 2, + "3": 11, + "4": 6, + "6": 3, + "7": 1, + "8": 1 + }, + "totalLetters": { + "15": 1, + "17": 1, + "19": 1, + "22": 1, + "23": 2, + "24": 4, + "25": 3, + "26": 3, + "28": 1, + "30": 1, + "34": 1, + "36": 2, + "39": 1, + "45": 1, + "46": 1 + }, + "gamesPlayed": 24, + "medianWords": 2.5, + "medianLetters": 24.5 + }, + "5": { + "best": { + "word": "tape", + "letters": 15 + }, + "worst": { + "word": "willow", + "letters": 38 + }, + "totalWords": { + "2": 2, + "3": 5, + "4": 10, + "5": 6, + "6": 1 + }, + "totalLetters": { + "15": 1, + "16": 1, + "17": 1, + "20": 1, + "21": 1, + "23": 3, + "25": 2, + "26": 1, + "28": 3, + "29": 1, + "30": 2, + "31": 2, + "33": 3, + "34": 1, + "38": 1 + }, + "gamesPlayed": 24, + "medianWords": 3.5, + "medianLetters": 27 + }, + "6": { + "best": { + "word": "tribe", + "letters": 16 + }, + "worst": { + "word": "vision", + "letters": 40 + }, + "totalWords": { + "2": 4, + "3": 9, + "4": 7, + "5": 3, + "6": 2 + }, + "totalLetters": { + "16": 3, + "18": 1, + "20": 1, + "21": 1, + "22": 3, + "23": 1, + "24": 1, + "27": 2, + "29": 3, + "30": 1, + "31": 2, + "34": 1, + "35": 1, + "37": 1, + "38": 1, + "40": 2 + }, + "gamesPlayed": 25, + "medianWords": 3, + "medianLetters": 27 + }, + "7": { + "best": { + "word": "drop", + "letters": 15 + }, + "worst": { + "word": "certainly", + "letters": 57 + }, + "totalWords": { + "2": 5, + "3": 8, + "4": 2, + "5": 3, + "6": 2, + "7": 2 + }, + "totalLetters": { + "15": 3, + "18": 2, + "21": 1, + "22": 3, + "24": 2, + "26": 3, + "27": 1, + "28": 1, + "31": 1, + "32": 1, + "33": 1, + "38": 1, + "39": 1, + "57": 1 + }, + "gamesPlayed": 22, + "medianWords": 2.5, + "medianLetters": 25 + }, + "8": { + "best": { + "word": "carp", + "letters": 15 + }, + "worst": { + "word": "captive", + "letters": 40 + }, + "totalWords": { + "2": 1, + "3": 6, + "4": 7, + "5": 5, + "6": 3, + "7": 2 + }, + "totalLetters": { + "15": 1, + "19": 1, + "21": 1, + "22": 2, + "23": 1, + "24": 1, + "25": 2, + "26": 1, + "27": 1, + "28": 1, + "29": 1, + "30": 2, + "31": 1, + "32": 1, + "36": 2, + "38": 2, + "39": 2, + "40": 1 + }, + "gamesPlayed": 24, + "medianWords": 3.5, + "medianLetters": 28.5 + }, + "9": { + "best": { + "word": "pink", + "letters": 15 + }, + "worst": { + "word": "operator", + "letters": 40 + }, + "totalWords": { + "2": 4, + "3": 15, + "4": 6, + "5": 4, + "6": 1 + }, + "totalLetters": { + "15": 2, + "18": 1, + "19": 2, + "20": 1, + "21": 1, + "22": 2, + "23": 2, + "24": 5, + "25": 2, + "26": 2, + "27": 2, + "30": 2, + "32": 1, + "33": 2, + "34": 1, + "37": 1, + "40": 1 + }, + "gamesPlayed": 30, + "medianWords": 2.5, + "medianLetters": 23.5 + }, + "10": { + "best": { + "word": "anchor", + "letters": 18 + }, + "worst": { + "word": "statesman", + "letters": 47 + }, + "totalWords": { + "2": 5, + "3": 14, + "4": 5, + "5": 1, + "6": 1, + "7": 1 + }, + "totalLetters": { + "18": 3, + "19": 1, + "20": 2, + "21": 3, + "22": 2, + "24": 1, + "25": 2, + "26": 3, + "27": 5, + "28": 1, + "29": 1, + "30": 2, + "47": 1 + }, + "gamesPlayed": 27, + "medianWords": 3, + "medianLetters": 25 + }, + "11": { + "best": { + "word": "long", + "letters": 16 + }, + "worst": { + "word": "cessation", + "letters": 48 + }, + "totalWords": { + "2": 6, + "3": 4, + "4": 5, + "5": 2, + "6": 4, + "8": 1 + }, + "totalLetters": { + "16": 3, + "17": 1, + "18": 1, + "20": 1, + "22": 1, + "25": 6, + "28": 1, + "29": 1, + "30": 1, + "34": 1, + "37": 1, + "38": 1, + "41": 2, + "48": 1 + }, + "gamesPlayed": 22, + "medianWords": 3.5, + "medianLetters": 23.5 + }, + "12": { + "best": { + "word": "louse", + "letters": 17 + }, + "worst": { + "word": "hawthorn", + "letters": 43 + }, + "totalWords": { + "2": 3, + "3": 2, + "4": 10, + "5": 2, + "8": 1 + }, + "totalLetters": { + "17": 1, + "19": 1, + "20": 1, + "22": 1, + "25": 1, + "26": 1, + "28": 5, + "29": 1, + "30": 1, + "31": 1, + "32": 1, + "33": 1, + "34": 1, + "43": 1 + }, + "gamesPlayed": 18, + "medianWords": 3.5, + "medianLetters": 27 + }, + "year": { + "best": { + "word": "tape", + "letters": 15 + }, + "worst": { + "word": "certainly", + "letters": 57 + }, + "totalWords": { + "2": 36, + "3": 84, + "4": 66, + "5": 28, + "6": 19, + "7": 6, + "8": 3 + }, + "totalLetters": { + "15": 8, + "16": 8, + "17": 5, + "18": 9, + "19": 6, + "20": 9, + "21": 10, + "22": 18, + "23": 10, + "24": 15, + "25": 19, + "26": 14, + "27": 11, + "28": 15, + "29": 8, + "30": 14, + "31": 10, + "32": 4, + "33": 7, + "34": 7, + "35": 1, + "36": 4, + "37": 3, + "38": 7, + "39": 5, + "40": 5, + "41": 3, + "43": 1, + "45": 1, + "46": 1, + "47": 1, + "48": 1, + "52": 1, + "57": 1 + }, + "gamesPlayed": 242, + "medianWords": 3.5, + "medianLetters": 25.5 + } + }, + "dates": { + "1": [ + "07.11.2025", + "09.11.2025", + "29.11.2025", + "26.11.2025" + ], + "2": [ + "10.12.2025", + "15.12.2025", + "17.12.2025", + "14.12.2025" + ], + "3": [ + "17.03.2025", + "11.03.2025", + "18.03.2025", + "20.03.2025", + "03.03.2025", + "02.03.2025", + "24.03.2025" + ], + "4": [ + "24.04.2025", + "07.04.2025", + "29.04.2025", + "30.04.2025" + ], + "5": [ + "10.05.2025", + "19.05.2025", + "27.05.2025" + ], + "6": [ + "21.06.2025", + "30.06.2025" + ], + "7": [ + "02.07.2025", + "03.07.2025", + "04.07.2025", + "25.07.2025", + "27.07.2025" + ], + "8": [ + "05.08.2025", + "13.08.2025" + ], + "9": [ + "02.09.2025", + "28.09.2025", + "04.09.2025", + "03.09.2025", + "07.09.2025", + "08.09.2025", + "12.09.2025" + ], + "10": [ + "19.10.2025", + "28.10.2025", + "09.10.2025", + "01.10.2025", + "03.10.2025", + "21.10.2025", + "05.10.2025", + "26.10.2025", + "11.10.2025" + ], + "11": [ + "07.11.2025", + "09.11.2025", + "29.11.2025", + "26.11.2025" + ], + "12": [ + "10.12.2025", + "15.12.2025", + "17.12.2025", + "14.12.2025" + ], + "year": [ + "24.04.2025", + "17.03.2025", + "10.05.2025", + "11.03.2025", + "19.05.2025", + "07.04.2025", + "21.06.2025", + "18.03.2025", + "29.04.2025", + "20.03.2025", + "03.03.2025", + "27.05.2025", + "02.03.2025", + "24.03.2025", + "30.04.2025", + "02.07.2025", + "02.09.2025", + "03.07.2025", + "04.07.2025", + "07.11.2025", + "09.11.2025", + "10.12.2025", + "19.10.2025", + "28.09.2025", + "28.10.2025", + "04.09.2025", + "05.08.2025", + "15.12.2025", + "09.10.2025", + "30.06.2025", + "03.09.2025", + "29.11.2025", + "17.12.2025", + "07.09.2025", + "08.09.2025", + "14.12.2025", + "01.10.2025", + "03.10.2025", + "21.10.2025", + "25.07.2025", + "05.10.2025", + "13.08.2025", + "26.10.2025", + "26.11.2025", + "11.10.2025", + "27.07.2025", + "12.09.2025" + ] + }, + "worstDates": { + "1": [ + "24.11.2025", + "15.11.2025" + ], + "2": [ + "05.12.2025" + ], + "3": [ + "22.03.2025", + "27.03.2025", + "30.03.2025" + ], + "4": [ + "26.04.2025", + "28.04.2025", + "17.04.2025", + "25.04.2025" + ], + "5": [ + "21.05.2025", + "25.05.2025" + ], + "6": [ + "03.06.2025" + ], + "7": [ + "24.07.2025", + "19.07.2025", + "28.07.2025" + ], + "8": [ + "23.08.2025", + "29.08.2025" + ], + "10": [ + "23.10.2025" + ], + "11": [ + "24.11.2025", + "15.11.2025" + ], + "12": [ + "05.12.2025" + ], + "year": [ + "22.03.2025", + "26.04.2025", + "27.03.2025", + "30.03.2025", + "21.05.2025", + "28.04.2025", + "17.04.2025", + "03.06.2025", + "25.05.2025", + "25.04.2025", + "23.10.2025", + "24.11.2025", + "23.08.2025", + "15.11.2025", + "29.08.2025", + "24.07.2025", + "05.12.2025", + "19.07.2025", + "28.07.2025" + ] + } + }, + "ChomikowyPedziwiatr": { + "results": { + "1": { + "best": { + "word": "faint", + "letters": 21 + }, + "worst": { + "word": "faint", + "letters": 21 + }, + "totalWords": { + "3": 1 + }, + "totalLetters": { + "21": 1 + }, + "gamesPlayed": 1, + "medianWords": 3, + "medianLetters": 21 + }, + "year": { + "best": { + "word": "faint", + "letters": 21 + }, + "worst": { + "word": "faint", + "letters": 21 + }, + "totalWords": { + "3": 1 + }, + "totalLetters": { + "21": 1 + }, + "gamesPlayed": 1, + "medianWords": 3, + "medianLetters": 21 + } + }, + "dates": { + "year": [] + }, + "worstDates": { + "year": [] + } + }, + "Heheszki": { + "results": { + "1": { + "best": { + "word": "faint", + "letters": 20 + }, + "worst": { + "word": "lecturer", + "letters": 48 + }, + "totalWords": { + "3": 1, + "5": 1, + "6": 1 + }, + "totalLetters": { + "20": 1, + "33": 1, + "48": 1 + }, + "gamesPlayed": 3, + "medianWords": 5, + "medianLetters": 33 + }, + "4": { + "best": { + "word": "greek", + "letters": 17 + }, + "worst": { + "word": "bullseye", + "letters": 31 + }, + "totalWords": { + "2": 1, + "4": 1 + }, + "totalLetters": { + "17": 1, + "31": 1 + }, + "gamesPlayed": 2, + "medianWords": 3, + "medianLetters": 24 + }, + "6": { + "best": { + "word": "leopard", + "letters": 26 + }, + "worst": { + "word": "tribe", + "letters": 31 + }, + "totalWords": { + "3": 1, + "4": 2 + }, + "totalLetters": { + "26": 1, + "27": 1, + "31": 1 + }, + "gamesPlayed": 3, + "medianWords": 4, + "medianLetters": 27 + }, + "9": { + "best": { + "word": "operator", + "letters": 28 + }, + "worst": { + "word": "invention", + "letters": 53 + }, + "totalWords": { + "3": 1, + "4": 2, + "5": 1, + "8": 1 + }, + "totalLetters": { + "28": 1, + "29": 1, + "30": 1, + "35": 1, + "53": 1 + }, + "gamesPlayed": 5, + "medianWords": 4, + "medianLetters": 30 + }, + "10": { + "best": { + "word": "hilarious", + "letters": 21 + }, + "worst": { + "word": "remainder", + "letters": 37 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 1 + }, + "totalLetters": { + "21": 1, + "23": 1, + "25": 1, + "37": 1 + }, + "gamesPlayed": 4, + "medianWords": 2.5, + "medianLetters": 24 + }, + "11": { + "best": { + "word": "giraffe", + "letters": 25 + }, + "worst": { + "word": "interest", + "letters": 49 + }, + "totalWords": { + "3": 4, + "4": 1, + "6": 5 + }, + "totalLetters": { + "25": 1, + "26": 2, + "27": 1, + "29": 1, + "34": 1, + "36": 2, + "41": 1, + "49": 1 + }, + "gamesPlayed": 10, + "medianWords": 5, + "medianLetters": 31.5 + }, + "12": { + "best": { + "word": "pisces", + "letters": 23 + }, + "worst": { + "word": "renewal", + "letters": 35 + }, + "totalWords": { + "3": 2, + "4": 2, + "5": 3 + }, + "totalLetters": { + "23": 1, + "25": 1, + "28": 1, + "33": 2, + "34": 1, + "35": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 33 + }, + "year": { + "best": { + "word": "greek", + "letters": 17 + }, + "worst": { + "word": "invention", + "letters": 53 + }, + "totalWords": { + "2": 2, + "3": 11, + "4": 9, + "5": 5, + "6": 6, + "8": 1 + }, + "totalLetters": { + "17": 1, + "20": 1, + "21": 1, + "23": 2, + "25": 3, + "26": 3, + "27": 2, + "28": 2, + "29": 2, + "30": 1, + "31": 2, + "33": 3, + "34": 2, + "35": 2, + "36": 2, + "37": 1, + "41": 1, + "48": 1, + "49": 1, + "53": 1 + }, + "gamesPlayed": 34, + "medianWords": 3.5, + "medianLetters": 29.5 + } + }, + "dates": { + "1": [ + "02.01.2025", + "30.11.2025", + "18.11.2025" + ], + "11": [ + "30.11.2025", + "18.11.2025" + ], + "year": [ + "02.01.2025", + "30.11.2025", + "18.11.2025" + ] + }, + "worstDates": { + "1": [ + "24.11.2025", + "20.11.2025" + ], + "2": [ + "20.12.2025" + ], + "6": [ + "23.06.2025" + ], + "11": [ + "24.11.2025", + "20.11.2025" + ], + "12": [ + "20.12.2025" + ], + "year": [ + "23.06.2025", + "20.12.2025", + "24.11.2025", + "20.11.2025" + ] + } + }, + "hapaczuri": { + "results": { + "4": { + "best": { + "word": "such", + "letters": 24 + }, + "worst": { + "word": "barricade", + "letters": 112 + }, + "totalWords": { + "5": 1, + "22": 1 + }, + "totalLetters": { + "24": 1, + "112": 1 + }, + "gamesPlayed": 2, + "medianWords": 13.5, + "medianLetters": 68 + }, + "year": { + "best": { + "word": "such", + "letters": 24 + }, + "worst": { + "word": "barricade", + "letters": 112 + }, + "totalWords": { + "5": 1, + "22": 1 + }, + "totalLetters": { + "24": 1, + "112": 1 + }, + "gamesPlayed": 2, + "medianWords": 13.5, + "medianLetters": 68 + } + }, + "dates": { + "year": [] + }, + "worstDates": { + "4": [ + "07.04.2025" + ], + "year": [ + "07.04.2025" + ] + } + }, + "Calypso_Cluster": { + "results": { + "6": { + "best": { + "word": "aquarius", + "letters": 24 + }, + "worst": { + "word": "continuum", + "letters": 30 + }, + "totalWords": { + "3": 1, + "4": 1 + }, + "totalLetters": { + "24": 1, + "30": 1 + }, + "gamesPlayed": 2, + "medianWords": 3.5, + "medianLetters": 27 + }, + "year": { + "best": { + "word": "aquarius", + "letters": 24 + }, + "worst": { + "word": "continuum", + "letters": 30 + }, + "totalWords": { + "3": 1, + "4": 1 + }, + "totalLetters": { + "24": 1, + "30": 1 + }, + "gamesPlayed": 2, + "medianWords": 3.5, + "medianLetters": 27 + } + }, + "dates": { + "6": [ + "12.06.2025" + ], + "year": [ + "12.06.2025" + ] + }, + "worstDates": { + "year": [] + } + }, + "Romanzholandii": { + "results": { + "5": { + "best": { + "word": "mushy", + "letters": 27 + }, + "worst": { + "word": "tall", + "letters": 34 + }, + "totalWords": { + "5": 1, + "7": 1 + }, + "totalLetters": { + "27": 1, + "34": 1 + }, + "gamesPlayed": 2, + "medianWords": 6, + "medianLetters": 30.5 + }, + "year": { + "best": { + "word": "mushy", + "letters": 27 + }, + "worst": { + "word": "tall", + "letters": 34 + }, + "totalWords": { + "5": 1, + "7": 1 + }, + "totalLetters": { + "27": 1, + "34": 1 + }, + "gamesPlayed": 2, + "medianWords": 6, + "medianLetters": 30.5 + } + }, + "dates": { + "year": [] + }, + "worstDates": { + "year": [] + } + }, + "Endrevoir": { + "results": { + "2": { + "best": { + "word": "team", + "letters": 14 + }, + "worst": { + "word": "loathe", + "letters": 35 + }, + "totalWords": { + "2": 1, + "6": 1 + }, + "totalLetters": { + "14": 1, + "35": 1 + }, + "gamesPlayed": 2, + "medianWords": 4, + "medianLetters": 24.5 + }, + "11": { + "best": { + "word": "stool", + "letters": 19 + }, + "worst": { + "word": "germany", + "letters": 42 + }, + "totalWords": { + "3": 2, + "4": 3, + "6": 1 + }, + "totalLetters": { + "19": 1, + "21": 1, + "22": 1, + "24": 1, + "29": 1, + "42": 1 + }, + "gamesPlayed": 6, + "medianWords": 3.5, + "medianLetters": 23 + }, + "year": { + "best": { + "word": "team", + "letters": 14 + }, + "worst": { + "word": "germany", + "letters": 42 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 3, + "6": 2 + }, + "totalLetters": { + "14": 1, + "19": 1, + "21": 1, + "22": 1, + "24": 1, + "29": 1, + "35": 1, + "42": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 23 + } + }, + "dates": { + "year": [] + }, + "worstDates": { + "year": [] + } + }, + "ulsterboy": { + "results": { + "2": { + "best": { + "word": "globe", + "letters": 24 + }, + "worst": { + "word": "freestyle", + "letters": 61 + }, + "totalWords": { + "4": 1, + "5": 1, + "7": 1, + "8": 1 + }, + "totalLetters": { + "24": 1, + "29": 1, + "40": 1, + "61": 1 + }, + "gamesPlayed": 4, + "medianWords": 6, + "medianLetters": 34.5 + }, + "3": { + "best": { + "word": "chiefly", + "letters": 42 + }, + "worst": { + "word": "chiefly", + "letters": 42 + }, + "totalWords": { + "7": 1 + }, + "totalLetters": { + "42": 1 + }, + "gamesPlayed": 1, + "medianWords": 7, + "medianLetters": 42 + }, + "year": { + "best": { + "word": "globe", + "letters": 24 + }, + "worst": { + "word": "freestyle", + "letters": 61 + }, + "totalWords": { + "4": 1, + "5": 1, + "7": 2, + "8": 1 + }, + "totalLetters": { + "24": 1, + "29": 1, + "40": 1, + "42": 1, + "61": 1 + }, + "gamesPlayed": 5, + "medianWords": 7, + "medianLetters": 40 + } + }, + "dates": { + "year": [] + }, + "worstDates": { + "2": [ + "22.02.2025" + ], + "year": [ + "22.02.2025" + ] + } + }, + "Tomekku": { + "results": { + "5": { + "best": { + "word": "herald", + "letters": 27 + }, + "worst": { + "word": "herald", + "letters": 27 + }, + "totalWords": { + "4": 1 + }, + "totalLetters": { + "27": 1 + }, + "gamesPlayed": 1, + "medianWords": 4, + "medianLetters": 27 + }, + "year": { + "best": { + "word": "herald", + "letters": 27 + }, + "worst": { + "word": "herald", + "letters": 27 + }, + "totalWords": { + "4": 1 + }, + "totalLetters": { + "27": 1 + }, + "gamesPlayed": 1, + "medianWords": 4, + "medianLetters": 27 + } + }, + "dates": { + "year": [] + }, + "worstDates": { + "year": [] + } + }, + "sk4ndal": { + "results": { + "2": { + "best": { + "word": "chief", + "letters": 34 + }, + "worst": { + "word": "chief", + "letters": 34 + }, + "totalWords": { + "7": 1 + }, + "totalLetters": { + "34": 1 + }, + "gamesPlayed": 1, + "medianWords": 7, + "medianLetters": 34 + }, + "year": { + "best": { + "word": "chief", + "letters": 34 + }, + "worst": { + "word": "chief", + "letters": 34 + }, + "totalWords": { + "7": 1 + }, + "totalLetters": { + "34": 1 + }, + "gamesPlayed": 1, + "medianWords": 7, + "medianLetters": 34 + } + }, + "dates": { + "year": [] + }, + "worstDates": { + "year": [] + } + }, + "pingWIN": { + "results": { + "2": { + "best": { + "word": "chief", + "letters": 36 + }, + "worst": { + "word": "chief", + "letters": 36 + }, + "totalWords": { + "7": 1 + }, + "totalLetters": { + "36": 1 + }, + "gamesPlayed": 1, + "medianWords": 7, + "medianLetters": 36 + }, + "year": { + "best": { + "word": "chief", + "letters": 36 + }, + "worst": { + "word": "chief", + "letters": 36 + }, + "totalWords": { + "7": 1 + }, + "totalLetters": { + "36": 1 + }, + "gamesPlayed": 1, + "medianWords": 7, + "medianLetters": 36 + } + }, + "dates": { + "year": [] + }, + "worstDates": { + "year": [] + } + }, + "Chrabonszcz": { + "results": { + "3": { + "best": { + "word": "aircraft", + "letters": 32 + }, + "worst": { + "word": "aircraft", + "letters": 32 + }, + "totalWords": { + "4": 1 + }, + "totalLetters": { + "32": 1 + }, + "gamesPlayed": 1, + "medianWords": 4, + "medianLetters": 32 + }, + "year": { + "best": { + "word": "aircraft", + "letters": 32 + }, + "worst": { + "word": "aircraft", + "letters": 32 + }, + "totalWords": { + "4": 1 + }, + "totalLetters": { + "32": 1 + }, + "gamesPlayed": 1, + "medianWords": 4, + "medianLetters": 32 + } + }, + "dates": { + "year": [] + }, + "worstDates": { + "year": [] + } + }, + "koszotorobur": { + "results": { + "1": { + "best": { + "word": "frankly", + "letters": 25 + }, + "worst": { + "word": "frankly", + "letters": 25 + }, + "totalWords": { + "3": 1 + }, + "totalLetters": { + "25": 1 + }, + "gamesPlayed": 1, + "medianWords": 3, + "medianLetters": 25 + }, + "year": { + "best": { + "word": "frankly", + "letters": 25 + }, + "worst": { + "word": "frankly", + "letters": 25 + }, + "totalWords": { + "3": 1 + }, + "totalLetters": { + "25": 1 + }, + "gamesPlayed": 1, + "medianWords": 3, + "medianLetters": 25 + } + }, + "dates": { + "year": [] + }, + "worstDates": { + "year": [] + } + }, + "dzek": { + "results": { + "4": { + "best": { + "word": "belly", + "letters": 21 + }, + "worst": { + "word": "belly", + "letters": 21 + }, + "totalWords": { + "4": 1 + }, + "totalLetters": { + "21": 1 + }, + "gamesPlayed": 1, + "medianWords": 4, + "medianLetters": 21 + }, + "year": { + "best": { + "word": "belly", + "letters": 21 + }, + "worst": { + "word": "belly", + "letters": 21 + }, + "totalWords": { + "4": 1 + }, + "totalLetters": { + "21": 1 + }, + "gamesPlayed": 1, + "medianWords": 4, + "medianLetters": 21 + } + }, + "dates": { + "4": [ + "22.04.2025" + ], + "year": [ + "22.04.2025" + ] + }, + "worstDates": { + "year": [] + } + }, + "sebie_juki": { + "best50": { + "best": { + "word": "much", + "letters": 10 + }, + "worst": { + "word": "dawn", + "letters": 24 + }, + "totalWords": { + "2": 4, + "3": 27, + "4": 16, + "5": 3 + }, + "totalLetters": { + "10": 1, + "12": 2, + "14": 1, + "15": 1, + "17": 2, + "18": 4, + "19": 6, + "20": 7, + "21": 8, + "22": 11, + "23": 6, + "24": 1 + }, + "gamesPlayed": 50, + "medianWords": 2.5, + "medianLetters": 20.5 + }, + "results": { + "7": { + "best": { + "word": "arch", + "letters": 20 + }, + "worst": { + "word": "physics", + "letters": 35 + }, + "totalWords": { + "3": 3, + "4": 4, + "5": 2 + }, + "totalLetters": { + "20": 1, + "21": 1, + "22": 2, + "25": 1, + "27": 1, + "32": 1, + "33": 1, + "35": 1 + }, + "gamesPlayed": 9, + "medianWords": 4, + "medianLetters": 25 + }, + "8": { + "best": { + "word": "infamy", + "letters": 12 + }, + "worst": { + "word": "orange", + "letters": 33 + }, + "totalWords": { + "2": 2, + "3": 3, + "4": 3, + "5": 3 + }, + "totalLetters": { + "12": 1, + "19": 2, + "20": 2, + "21": 1, + "22": 2, + "23": 1, + "24": 1, + "33": 1 + }, + "gamesPlayed": 11, + "medianWords": 4, + "medianLetters": 21 + }, + "9": { + "best": { + "word": "chart", + "letters": 15 + }, + "worst": { + "word": "periphery", + "letters": 42 + }, + "totalWords": { + "3": 3, + "4": 11, + "5": 7, + "6": 3 + }, + "totalLetters": { + "15": 1, + "17": 1, + "18": 1, + "22": 2, + "23": 1, + "24": 5, + "26": 2, + "27": 3, + "28": 2, + "31": 2, + "32": 1, + "33": 1, + "35": 1, + "42": 1 + }, + "gamesPlayed": 24, + "medianWords": 3.5, + "medianLetters": 25 + }, + "10": { + "best": { + "word": "comply", + "letters": 12 + }, + "worst": { + "word": "threaten", + "letters": 42 + }, + "totalWords": { + "2": 1, + "3": 8, + "4": 11, + "5": 3, + "6": 6 + }, + "totalLetters": { + "12": 1, + "14": 1, + "18": 1, + "19": 3, + "20": 2, + "21": 2, + "23": 3, + "25": 2, + "26": 2, + "28": 3, + "29": 2, + "30": 1, + "32": 1, + "34": 1, + "36": 1, + "38": 1, + "41": 1, + "42": 1 + }, + "gamesPlayed": 29, + "medianWords": 4, + "medianLetters": 25 + }, + "11": { + "best": { + "word": "much", + "letters": 10 + }, + "worst": { + "word": "xerox", + "letters": 37 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 12, + "5": 6, + "6": 1, + "7": 1 + }, + "totalLetters": { + "10": 1, + "17": 1, + "18": 1, + "21": 3, + "22": 3, + "23": 1, + "24": 3, + "25": 2, + "26": 2, + "28": 2, + "30": 2, + "31": 1, + "33": 2, + "35": 1, + "37": 1 + }, + "gamesPlayed": 26, + "medianWords": 3.5, + "medianLetters": 24.5 + }, + "12": { + "best": { + "word": "depend", + "letters": 18 + }, + "worst": { + "word": "operate", + "letters": 39 + }, + "totalWords": { + "3": 6, + "4": 7, + "5": 4, + "6": 3 + }, + "totalLetters": { + "18": 1, + "19": 1, + "20": 2, + "21": 1, + "22": 2, + "24": 2, + "25": 1, + "26": 3, + "27": 1, + "28": 1, + "31": 2, + "32": 1, + "35": 1, + "39": 1 + }, + "gamesPlayed": 20, + "medianWords": 3.5, + "medianLetters": 25.5 + }, + "year": { + "best": { + "word": "much", + "letters": 10 + }, + "worst": { + "word": "periphery", + "letters": 42 + }, + "totalWords": { + "2": 4, + "3": 28, + "4": 48, + "5": 25, + "6": 13, + "7": 1 + }, + "totalLetters": { + "10": 1, + "12": 2, + "14": 1, + "15": 1, + "17": 2, + "18": 4, + "19": 6, + "20": 7, + "21": 8, + "22": 11, + "23": 6, + "24": 11, + "25": 6, + "26": 9, + "27": 5, + "28": 8, + "29": 2, + "30": 3, + "31": 5, + "32": 4, + "33": 5, + "34": 1, + "35": 4, + "36": 1, + "37": 1, + "38": 1, + "39": 1, + "41": 1, + "42": 2 + }, + "gamesPlayed": 119, + "medianWords": 4, + "medianLetters": 24 + } + }, + "dates": { + "1": [ + "12.11.2025", + "13.11.2025", + "25.11.2025", + "03.11.2025" + ], + "2": [ + "02.12.2025", + "18.12.2025", + "21.12.2025", + "03.12.2025", + "16.12.2025" + ], + "8": [ + "01.08.2025", + "16.08.2025", + "22.08.2025", + "04.08.2025" + ], + "9": [ + "25.09.2025", + "30.09.2025", + "13.09.2025" + ], + "10": [ + "12.10.2025", + "14.10.2025", + "27.10.2025", + "25.10.2025", + "05.10.2025", + "15.10.2025", + "07.10.2025", + "02.10.2025" + ], + "11": [ + "12.11.2025", + "13.11.2025", + "25.11.2025", + "03.11.2025" + ], + "12": [ + "02.12.2025", + "18.12.2025", + "21.12.2025", + "03.12.2025", + "16.12.2025" + ], + "year": [ + "12.10.2025", + "12.11.2025", + "14.10.2025", + "25.09.2025", + "27.10.2025", + "25.10.2025", + "13.11.2025", + "30.09.2025", + "02.12.2025", + "01.08.2025", + "18.12.2025", + "21.12.2025", + "25.11.2025", + "16.08.2025", + "22.08.2025", + "04.08.2025", + "05.10.2025", + "15.10.2025", + "03.12.2025", + "07.10.2025", + "03.11.2025", + "02.10.2025", + "13.09.2025", + "16.12.2025" + ] + }, + "worstDates": { + "7": [ + "20.07.2025" + ], + "10": [ + "10.10.2025", + "17.10.2025" + ], + "year": [ + "10.10.2025", + "20.07.2025", + "17.10.2025" + ] + } + }, + "User": { + "results": { + "11": { + "best": { + "word": "very", + "letters": 12 + }, + "worst": { + "word": "interest", + "letters": 48 + }, + "totalWords": { + "2": 1, + "4": 1, + "6": 2 + }, + "totalLetters": { + "12": 1, + "22": 1, + "37": 1, + "48": 1 + }, + "gamesPlayed": 4, + "medianWords": 5, + "medianLetters": 29.5 + }, + "12": { + "best": { + "word": "weapon", + "letters": 14 + }, + "worst": { + "word": "macaroni", + "letters": 31 + }, + "totalWords": { + "2": 1, + "4": 1, + "5": 2 + }, + "totalLetters": { + "14": 1, + "30": 2, + "31": 1 + }, + "gamesPlayed": 4, + "medianWords": 4.5, + "medianLetters": 22 + }, + "year": { + "best": { + "word": "very", + "letters": 12 + }, + "worst": { + "word": "interest", + "letters": 48 + }, + "totalWords": { + "2": 2, + "4": 2, + "5": 2, + "6": 2 + }, + "totalLetters": { + "12": 1, + "14": 1, + "22": 1, + "30": 2, + "31": 1, + "37": 1, + "48": 1 + }, + "gamesPlayed": 8, + "medianWords": 4.5, + "medianLetters": 26 + } + }, + "dates": { + "1": [ + "17.11.2025" + ], + "2": [ + "08.12.2025" + ], + "11": [ + "17.11.2025" + ], + "12": [ + "08.12.2025" + ], + "year": [ + "08.12.2025", + "17.11.2025" + ] + }, + "worstDates": { + "year": [] + } + } + }, + "wordsByDates": { + "21.12.2025": "renewal", + "20.12.2025": "devil", + "19.12.2025": "macaroni", + "18.12.2025": "birthday", + "17.12.2025": "freezer", + "16.12.2025": "sincerity", + "15.12.2025": "shooting", + "14.12.2025": "aquatic", + "13.12.2025": "hawthorn", + "12.12.2025": "diagnose", + "11.12.2025": "defense", + "10.12.2025": "louse", + "09.12.2025": "doubt", + "08.12.2025": "weapon", + "07.12.2025": "funeral", + "06.12.2025": "operate", + "05.12.2025": "talk", + "04.12.2025": "orthodoxy", + "03.12.2025": "dynamo", + "02.12.2025": "depend", + "01.12.2025": "pisces", + "30.11.2025": "nineteen", + "29.11.2025": "xerox", + "28.11.2025": "steppe", + "27.11.2025": "feint", + "26.11.2025": "wasp", + "25.11.2025": "cessation", + "24.11.2025": "appeal", + "23.11.2025": "withdraw", + "22.11.2025": "employ", + "21.11.2025": "abort", + "20.11.2025": "interest", + "19.11.2025": "beer", + "18.11.2025": "extractor", + "17.11.2025": "very", + "16.11.2025": "germany", + "15.11.2025": "showy", + "14.11.2025": "blindfold", + "13.11.2025": "much", + "12.11.2025": "sporadic", + "11.11.2025": "lifeboat", + "10.11.2025": "amount", + "09.11.2025": "stool", + "08.11.2025": "tariff", + "07.11.2025": "long", + "06.11.2025": "dislike", + "05.11.2025": "playback", + "04.11.2025": "result", + "03.11.2025": "whisk", + "02.11.2025": "receiver", + "01.11.2025": "giraffe", + "31.10.2025": "playing", + "30.10.2025": "sheriff", + "29.10.2025": "hello", + "28.10.2025": "audience", + "27.10.2025": "comply", + "26.10.2025": "ticket", + "25.10.2025": "statesman", + "24.10.2025": "purist", + "23.10.2025": "left", + "22.10.2025": "anchor", + "21.10.2025": "threaten", + "20.10.2025": "modicum", + "19.10.2025": "remainder", + "18.10.2025": "soft", + "17.10.2025": "mandarin", + "16.10.2025": "journey", + "15.10.2025": "family", + "14.10.2025": "hilarious", + "13.10.2025": "misery", + "12.10.2025": "subscribe", + "11.10.2025": "doodle", + "10.10.2025": "sanity", + "09.10.2025": "premature", + "08.10.2025": "farm", + "07.10.2025": "guest", + "06.10.2025": "blender", + "05.10.2025": "prosaic", + "04.10.2025": "define", + "03.10.2025": "profile", + "02.10.2025": "delight", + "01.10.2025": "untie", + "30.09.2025": "invention", + "29.09.2025": "operator", + "28.09.2025": "useless", + "27.09.2025": "excise", + "26.09.2025": "pointer", + "25.09.2025": "truth", + "24.09.2025": "dawn", + "23.09.2025": "periphery", + "22.09.2025": "ironic", + "21.09.2025": "dearth", + "20.09.2025": "penguin", + "19.09.2025": "shunt", + "18.09.2025": "punk", + "17.09.2025": "chart", + "16.09.2025": "scold", + "15.09.2025": "parisian", + "14.09.2025": "frugal", + "13.09.2025": "improve", + "12.09.2025": "eleventh", + "11.09.2025": "figure", + "10.09.2025": "thursday", + "09.09.2025": "gambler", + "08.09.2025": "rapture", + "07.09.2025": "specimen", + "06.09.2025": "yard", + "05.09.2025": "trout", + "04.09.2025": "pink", + "03.09.2025": "officer", + "02.09.2025": "pottery", + "01.09.2025": "freezing", + "31.08.2025": "citation", + "30.08.2025": "doll", + "29.08.2025": "halt", + "28.08.2025": "slang", + "27.08.2025": "honor", + "26.08.2025": "unknown", + "25.08.2025": "full", + "24.08.2025": "orange", + "23.08.2025": "captive", + "22.08.2025": "infamy", + "21.08.2025": "caution", + "20.08.2025": "endanger", + "19.08.2025": "serene", + "18.08.2025": "pork", + "17.08.2025": "pastry", + "16.08.2025": "pipeline", + "15.08.2025": "glance", + "14.08.2025": "fanfare", + "13.08.2025": "seeming", + "12.08.2025": "sneaker", + "11.08.2025": "struggle", + "10.08.2025": "peasant", + "09.08.2025": "masculine", + "08.08.2025": "sludge", + "07.08.2025": "swell", + "06.08.2025": "fond", + "05.08.2025": "carp", + "04.08.2025": "pumpkin", + "03.08.2025": "falsify", + "02.08.2025": "lime", + "01.08.2025": "clergyman", + "31.07.2025": "cargo", + "30.07.2025": "height", + "29.07.2025": "drop", + "28.07.2025": "swahili", + "27.07.2025": "none", + "26.07.2025": "dignity", + "25.07.2025": "pain", + "24.07.2025": "quote", + "23.07.2025": "superior", + "22.07.2025": "obstruct", + "21.07.2025": "fore", + "20.07.2025": "physics", + "19.07.2025": "certainly", + "18.07.2025": "domicile", + "17.07.2025": "trace", + "16.07.2025": "arch", + "15.07.2025": "hotbed", + "14.07.2025": "riot", + "13.07.2025": "near", + "12.07.2025": "lodging", + "11.07.2025": "hangar", + "10.07.2025": "hence", + "09.07.2025": "billboard", + "08.07.2025": "boulevard", + "07.07.2025": "spaghetti", + "06.07.2025": "urinate", + "05.07.2025": "enjoy", + "04.07.2025": "pakistan", + "03.07.2025": "balloon", + "02.07.2025": "seminar", + "01.07.2025": "fist", + "30.06.2025": "aisle", + "29.06.2025": "surely", + "28.06.2025": "vanquish", + "27.06.2025": "deem", + "26.06.2025": "gulf", + "25.06.2025": "prince", + "24.06.2025": "ghetto", + "23.06.2025": "tribe", + "22.06.2025": "leopard", + "21.06.2025": "bravo", + "20.06.2025": "kentucky", + "19.06.2025": "church", + "18.06.2025": "gibberish", + "17.06.2025": "vision", + "16.06.2025": "diplomat", + "15.06.2025": "collusion", + "14.06.2025": "glider", + "13.06.2025": "continuum", + "12.06.2025": "aquarius", + "11.06.2025": "concert", + "10.06.2025": "imitation", + "09.06.2025": "decrease", + "08.06.2025": "ukrainian", + "07.06.2025": "treason", + "06.06.2025": "itinerary", + "05.06.2025": "magnetic", + "04.06.2025": "knuckle", + "03.06.2025": "arrow", + "02.06.2025": "leper", + "01.06.2025": "summon", + "31.05.2025": "cheer", + "30.05.2025": "vigorous", + "29.05.2025": "aunt", + "28.05.2025": "suede", + "27.05.2025": "typhus", + "26.05.2025": "euphoria", + "25.05.2025": "energy", + "24.05.2025": "skylight", + "23.05.2025": "west", + "22.05.2025": "psalm", + "21.05.2025": "steer", + "20.05.2025": "azure", + "19.05.2025": "silver", + "18.05.2025": "what", + "17.05.2025": "burial", + "16.05.2025": "herald", + "15.05.2025": "itself", + "14.05.2025": "wander", + "13.05.2025": "national", + "12.05.2025": "someday", + "11.05.2025": "willow", + "10.05.2025": "overpower", + "09.05.2025": "neckline", + "08.05.2025": "shore", + "07.05.2025": "advise", + "06.05.2025": "anyone", + "05.05.2025": "tape", + "04.05.2025": "mushy", + "03.05.2025": "brigadier", + "02.05.2025": "tall", + "01.05.2025": "oriental", + "30.04.2025": "wait", + "29.04.2025": "packet", + "28.04.2025": "greek", + "27.04.2025": "disperse", + "26.04.2025": "monkey", + "25.04.2025": "resolve", + "24.04.2025": "fate", + "23.04.2025": "recoil", + "22.04.2025": "belly", + "21.04.2025": "feminism", + "20.04.2025": "comic", + "19.04.2025": "affinity", + "18.04.2025": "statute", + "17.04.2025": "bullseye", + "16.04.2025": "mother", + "15.04.2025": "genetics", + "14.04.2025": "anomaly", + "13.04.2025": "flamingo", + "12.04.2025": "kilogram", + "11.04.2025": "harbor", + "10.04.2025": "manager", + "09.04.2025": "division", + "08.04.2025": "ready", + "07.04.2025": "barricade", + "06.04.2025": "acting", + "05.04.2025": "legalize", + "04.04.2025": "such", + "03.04.2025": "render", + "02.04.2025": "precious", + "01.04.2025": "canteen", + "31.03.2025": "review", + "30.03.2025": "preface", + "29.03.2025": "cent", + "28.03.2025": "singapore", + "27.03.2025": "incentive", + "26.03.2025": "scholar", + "25.03.2025": "defector", + "24.03.2025": "probation", + "23.03.2025": "aircraft", + "22.03.2025": "faceless", + "21.03.2025": "swimsuit", + "20.03.2025": "except", + "19.03.2025": "wound", + "18.03.2025": "beach", + "17.03.2025": "vacation", + "16.03.2025": "perjury", + "15.03.2025": "textbook", + "14.03.2025": "mince", + "13.03.2025": "drama", + "12.03.2025": "bodywork", + "11.03.2025": "announcer", + "10.03.2025": "chatter", + "09.03.2025": "twenty", + "08.03.2025": "parallel", + "07.03.2025": "ambiguous", + "06.03.2025": "shack", + "05.03.2025": "squeak", + "04.03.2025": "marauder", + "03.03.2025": "epitaph", + "02.03.2025": "chiefly", + "01.03.2025": "autonomy", + "28.02.2025": "chief", + "27.02.2025": "globe", + "26.02.2025": "ladle", + "25.02.2025": "slipped", + "24.02.2025": "wall", + "23.02.2025": "virtuoso", + "22.02.2025": "freestyle", + "21.02.2025": "loathe", + "20.02.2025": "team", + "19.02.2025": "argentine", + "18.02.2025": "foolish", + "17.02.2025": "cave", + "16.02.2025": "blameless", + "15.02.2025": "informant", + "14.02.2025": "runway", + "13.02.2025": "linen", + "12.02.2025": "sickness", + "11.02.2025": "aversion", + "10.02.2025": "postcard", + "09.02.2025": "cocktail", + "08.02.2025": "hairdryer", + "07.02.2025": "microwave", + "06.02.2025": "hostess", + "05.02.2025": "rubber", + "04.02.2025": "danger", + "03.02.2025": "tenor", + "02.02.2025": "dream", + "01.02.2025": "wick", + "31.01.2025": "novelist", + "30.01.2025": "folly", + "29.01.2025": "symbolize", + "28.01.2025": "mile", + "27.01.2025": "inject", + "26.01.2025": "pulp", + "25.01.2025": "variant", + "24.01.2025": "retaliate", + "23.01.2025": "octagon", + "22.01.2025": "expose", + "21.01.2025": "immortal", + "20.01.2025": "reprimand", + "19.01.2025": "lecturer", + "18.01.2025": "claw", + "17.01.2025": "rump", + "16.01.2025": "ride", + "15.01.2025": "mythical", + "14.01.2025": "formula", + "13.01.2025": "piracy", + "12.01.2025": "unless", + "11.01.2025": "encore", + "10.01.2025": "seven", + "09.01.2025": "hindsight", + "08.01.2025": "attached", + "07.01.2025": "fiction", + "06.01.2025": "frankly", + "05.01.2025": "seizure", + "04.01.2025": "midwife", + "03.01.2025": "arabic", + "02.01.2025": "faint", + "01.01.2025": "kangaroo" + }, + "datesByWords": { + "renewal": "21.12.2025", + "devil": "20.12.2025", + "macaroni": "19.12.2025", + "birthday": "18.12.2025", + "freezer": "17.12.2025", + "sincerity": "16.12.2025", + "shooting": "15.12.2025", + "aquatic": "14.12.2025", + "hawthorn": "13.12.2025", + "diagnose": "12.12.2025", + "defense": "11.12.2025", + "louse": "10.12.2025", + "doubt": "09.12.2025", + "weapon": "08.12.2025", + "funeral": "07.12.2025", + "operate": "06.12.2025", + "talk": "05.12.2025", + "orthodoxy": "04.12.2025", + "dynamo": "03.12.2025", + "depend": "02.12.2025", + "pisces": "01.12.2025", + "nineteen": "30.11.2025", + "xerox": "29.11.2025", + "steppe": "28.11.2025", + "feint": "27.11.2025", + "wasp": "26.11.2025", + "cessation": "25.11.2025", + "appeal": "24.11.2025", + "withdraw": "23.11.2025", + "employ": "22.11.2025", + "abort": "21.11.2025", + "interest": "20.11.2025", + "beer": "19.11.2025", + "extractor": "18.11.2025", + "very": "17.11.2025", + "germany": "16.11.2025", + "showy": "15.11.2025", + "blindfold": "14.11.2025", + "much": "13.11.2025", + "sporadic": "12.11.2025", + "lifeboat": "11.11.2025", + "amount": "10.11.2025", + "stool": "09.11.2025", + "tariff": "08.11.2025", + "long": "07.11.2025", + "dislike": "06.11.2025", + "playback": "05.11.2025", + "result": "04.11.2025", + "whisk": "03.11.2025", + "receiver": "02.11.2025", + "giraffe": "01.11.2025", + "playing": "31.10.2025", + "sheriff": "30.10.2025", + "hello": "29.10.2025", + "audience": "28.10.2025", + "comply": "27.10.2025", + "ticket": "26.10.2025", + "statesman": "25.10.2025", + "purist": "24.10.2025", + "left": "23.10.2025", + "anchor": "22.10.2025", + "threaten": "21.10.2025", + "modicum": "20.10.2025", + "remainder": "19.10.2025", + "soft": "18.10.2025", + "mandarin": "17.10.2025", + "journey": "16.10.2025", + "family": "15.10.2025", + "hilarious": "14.10.2025", + "misery": "13.10.2025", + "subscribe": "12.10.2025", + "doodle": "11.10.2025", + "sanity": "10.10.2025", + "premature": "09.10.2025", + "farm": "08.10.2025", + "guest": "07.10.2025", + "blender": "06.10.2025", + "prosaic": "05.10.2025", + "define": "04.10.2025", + "profile": "03.10.2025", + "delight": "02.10.2025", + "untie": "01.10.2025", + "invention": "30.09.2025", + "operator": "29.09.2025", + "useless": "28.09.2025", + "excise": "27.09.2025", + "pointer": "26.09.2025", + "truth": "25.09.2025", + "dawn": "24.09.2025", + "periphery": "23.09.2025", + "ironic": "22.09.2025", + "dearth": "21.09.2025", + "penguin": "20.09.2025", + "shunt": "19.09.2025", + "punk": "18.09.2025", + "chart": "17.09.2025", + "scold": "16.09.2025", + "parisian": "15.09.2025", + "frugal": "14.09.2025", + "improve": "13.09.2025", + "eleventh": "12.09.2025", + "figure": "11.09.2025", + "thursday": "10.09.2025", + "gambler": "09.09.2025", + "rapture": "08.09.2025", + "specimen": "07.09.2025", + "yard": "06.09.2025", + "trout": "05.09.2025", + "pink": "04.09.2025", + "officer": "03.09.2025", + "pottery": "02.09.2025", + "freezing": "01.09.2025", + "citation": "31.08.2025", + "doll": "30.08.2025", + "halt": "29.08.2025", + "slang": "28.08.2025", + "honor": "27.08.2025", + "unknown": "26.08.2025", + "full": "25.08.2025", + "orange": "24.08.2025", + "captive": "23.08.2025", + "infamy": "22.08.2025", + "caution": "21.08.2025", + "endanger": "20.08.2025", + "serene": "19.08.2025", + "pork": "18.08.2025", + "pastry": "17.08.2025", + "pipeline": "16.08.2025", + "glance": "15.08.2025", + "fanfare": "14.08.2025", + "seeming": "13.08.2025", + "sneaker": "12.08.2025", + "struggle": "11.08.2025", + "peasant": "10.08.2025", + "masculine": "09.08.2025", + "sludge": "08.08.2025", + "swell": "07.08.2025", + "fond": "06.08.2025", + "carp": "05.08.2025", + "pumpkin": "04.08.2025", + "falsify": "03.08.2025", + "lime": "02.08.2025", + "clergyman": "01.08.2025", + "cargo": "31.07.2025", + "height": "30.07.2025", + "drop": "29.07.2025", + "swahili": "28.07.2025", + "none": "27.07.2025", + "dignity": "26.07.2025", + "pain": "25.07.2025", + "quote": "24.07.2025", + "superior": "23.07.2025", + "obstruct": "22.07.2025", + "fore": "21.07.2025", + "physics": "20.07.2025", + "certainly": "19.07.2025", + "domicile": "18.07.2025", + "trace": "17.07.2025", + "arch": "16.07.2025", + "hotbed": "15.07.2025", + "riot": "14.07.2025", + "near": "13.07.2025", + "lodging": "12.07.2025", + "hangar": "11.07.2025", + "hence": "10.07.2025", + "billboard": "09.07.2025", + "boulevard": "08.07.2025", + "spaghetti": "07.07.2025", + "urinate": "06.07.2025", + "enjoy": "05.07.2025", + "pakistan": "04.07.2025", + "balloon": "03.07.2025", + "seminar": "02.07.2025", + "fist": "01.07.2025", + "aisle": "30.06.2025", + "surely": "29.06.2025", + "vanquish": "28.06.2025", + "deem": "27.06.2025", + "gulf": "26.06.2025", + "prince": "25.06.2025", + "ghetto": "24.06.2025", + "tribe": "23.06.2025", + "leopard": "22.06.2025", + "bravo": "21.06.2025", + "kentucky": "20.06.2025", + "church": "19.06.2025", + "gibberish": "18.06.2025", + "vision": "17.06.2025", + "diplomat": "16.06.2025", + "collusion": "15.06.2025", + "glider": "14.06.2025", + "continuum": "13.06.2025", + "aquarius": "12.06.2025", + "concert": "11.06.2025", + "imitation": "10.06.2025", + "decrease": "09.06.2025", + "ukrainian": "08.06.2025", + "treason": "07.06.2025", + "itinerary": "06.06.2025", + "magnetic": "05.06.2025", + "knuckle": "04.06.2025", + "arrow": "03.06.2025", + "leper": "02.06.2025", + "summon": "01.06.2025", + "cheer": "31.05.2025", + "vigorous": "30.05.2025", + "aunt": "29.05.2025", + "suede": "28.05.2025", + "typhus": "27.05.2025", + "euphoria": "26.05.2025", + "energy": "25.05.2025", + "skylight": "24.05.2025", + "west": "23.05.2025", + "psalm": "22.05.2025", + "steer": "21.05.2025", + "azure": "20.05.2025", + "silver": "19.05.2025", + "what": "18.05.2025", + "burial": "17.05.2025", + "herald": "16.05.2025", + "itself": "15.05.2025", + "wander": "14.05.2025", + "national": "13.05.2025", + "someday": "12.05.2025", + "willow": "11.05.2025", + "overpower": "10.05.2025", + "neckline": "09.05.2025", + "shore": "08.05.2025", + "advise": "07.05.2025", + "anyone": "06.05.2025", + "tape": "05.05.2025", + "mushy": "04.05.2025", + "brigadier": "03.05.2025", + "tall": "02.05.2025", + "oriental": "01.05.2025", + "wait": "30.04.2025", + "packet": "29.04.2025", + "greek": "28.04.2025", + "disperse": "27.04.2025", + "monkey": "26.04.2025", + "resolve": "25.04.2025", + "fate": "24.04.2025", + "recoil": "23.04.2025", + "belly": "22.04.2025", + "feminism": "21.04.2025", + "comic": "20.04.2025", + "affinity": "19.04.2025", + "statute": "18.04.2025", + "bullseye": "17.04.2025", + "mother": "16.04.2025", + "genetics": "15.04.2025", + "anomaly": "14.04.2025", + "flamingo": "13.04.2025", + "kilogram": "12.04.2025", + "harbor": "11.04.2025", + "manager": "10.04.2025", + "division": "09.04.2025", + "ready": "08.04.2025", + "barricade": "07.04.2025", + "acting": "06.04.2025", + "legalize": "05.04.2025", + "such": "04.04.2025", + "render": "03.04.2025", + "precious": "02.04.2025", + "canteen": "01.04.2025", + "review": "31.03.2025", + "preface": "30.03.2025", + "cent": "29.03.2025", + "singapore": "28.03.2025", + "incentive": "27.03.2025", + "scholar": "26.03.2025", + "defector": "25.03.2025", + "probation": "24.03.2025", + "aircraft": "23.03.2025", + "faceless": "22.03.2025", + "swimsuit": "21.03.2025", + "except": "20.03.2025", + "wound": "19.03.2025", + "beach": "18.03.2025", + "vacation": "17.03.2025", + "perjury": "16.03.2025", + "textbook": "15.03.2025", + "mince": "14.03.2025", + "drama": "13.03.2025", + "bodywork": "12.03.2025", + "announcer": "11.03.2025", + "chatter": "10.03.2025", + "twenty": "09.03.2025", + "parallel": "08.03.2025", + "ambiguous": "07.03.2025", + "shack": "06.03.2025", + "squeak": "05.03.2025", + "marauder": "04.03.2025", + "epitaph": "03.03.2025", + "chiefly": "02.03.2025", + "autonomy": "01.03.2025", + "chief": "28.02.2025", + "globe": "27.02.2025", + "ladle": "26.02.2025", + "slipped": "25.02.2025", + "wall": "24.02.2025", + "virtuoso": "23.02.2025", + "freestyle": "22.02.2025", + "loathe": "21.02.2025", + "team": "20.02.2025", + "argentine": "19.02.2025", + "foolish": "18.02.2025", + "cave": "17.02.2025", + "blameless": "16.02.2025", + "informant": "15.02.2025", + "runway": "14.02.2025", + "linen": "13.02.2025", + "sickness": "12.02.2025", + "aversion": "11.02.2025", + "postcard": "10.02.2025", + "cocktail": "09.02.2025", + "hairdryer": "08.02.2025", + "microwave": "07.02.2025", + "hostess": "06.02.2025", + "rubber": "05.02.2025", + "danger": "04.02.2025", + "tenor": "03.02.2025", + "dream": "02.02.2025", + "wick": "01.02.2025", + "novelist": "31.01.2025", + "folly": "30.01.2025", + "symbolize": "29.01.2025", + "mile": "28.01.2025", + "inject": "27.01.2025", + "pulp": "26.01.2025", + "variant": "25.01.2025", + "retaliate": "24.01.2025", + "octagon": "23.01.2025", + "expose": "22.01.2025", + "immortal": "21.01.2025", + "reprimand": "20.01.2025", + "lecturer": "19.01.2025", + "claw": "18.01.2025", + "rump": "17.01.2025", + "ride": "16.01.2025", + "mythical": "15.01.2025", + "formula": "14.01.2025", + "piracy": "13.01.2025", + "unless": "12.01.2025", + "encore": "11.01.2025", + "seven": "10.01.2025", + "hindsight": "09.01.2025", + "attached": "08.01.2025", + "fiction": "07.01.2025", + "frankly": "06.01.2025", + "seizure": "05.01.2025", + "midwife": "04.01.2025", + "arabic": "03.01.2025", + "faint": "02.01.2025", + "kangaroo": "01.01.2025" + }, + "rankByWords": { + "seven": { + "best": { + "word": "seven", + "letters": 18 + }, + "worst": { + "word": "seven", + "letters": 30 + }, + "totalWords": { + "3": 2, + "4": 1, + "5": 2, + "6": 1 + }, + "totalLetters": { + "18": 1, + "20": 1, + "25": 1, + "28": 2, + "30": 1 + }, + "gamesPlayed": 6, + "medianWords": 4.5, + "medianLetters": 26.5 + }, + "oriental": { + "best": { + "word": "oriental", + "letters": 21 + }, + "worst": { + "word": "oriental", + "letters": 62 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 2, + "10": 1 + }, + "totalLetters": { + "21": 1, + "23": 1, + "28": 1, + "31": 1, + "62": 1 + }, + "gamesPlayed": 5, + "medianWords": 4, + "medianLetters": 28 + }, + "disperse": { + "best": { + "word": "disperse", + "letters": 24 + }, + "worst": { + "word": "disperse", + "letters": 46 + }, + "totalWords": { + "3": 1, + "5": 1, + "6": 2, + "7": 2, + "9": 1 + }, + "totalLetters": { + "24": 1, + "39": 3, + "41": 2, + "46": 1 + }, + "gamesPlayed": 7, + "medianWords": 6, + "medianLetters": 39 + }, + "fate": { + "best": { + "word": "fate", + "letters": 23 + }, + "worst": { + "word": "fate", + "letters": 31 + }, + "totalWords": { + "4": 1, + "5": 3, + "6": 2, + "7": 1 + }, + "totalLetters": { + "23": 1, + "24": 2, + "29": 2, + "30": 1, + "31": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 29 + }, + "kangaroo": { + "best": { + "word": "kangaroo", + "letters": 25 + }, + "worst": { + "word": "kangaroo", + "letters": 55 + }, + "totalWords": { + "4": 2, + "6": 1, + "8": 1, + "9": 2 + }, + "totalLetters": { + "25": 1, + "30": 1, + "36": 1, + "41": 1, + "44": 1, + "55": 1 + }, + "gamesPlayed": 6, + "medianWords": 7, + "medianLetters": 38.5 + }, + "faint": { + "best": { + "word": "faint", + "letters": 20 + }, + "worst": { + "word": "faint", + "letters": 34 + }, + "totalWords": { + "3": 2, + "4": 1, + "5": 3, + "6": 1 + }, + "totalLetters": { + "20": 1, + "21": 1, + "24": 1, + "27": 2, + "32": 1, + "34": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 27 + }, + "wick": { + "best": { + "word": "wick", + "letters": 25 + }, + "worst": { + "word": "wick", + "letters": 38 + }, + "totalWords": { + "5": 2, + "6": 1, + "8": 1, + "9": 1 + }, + "totalLetters": { + "25": 1, + "27": 1, + "30": 1, + "38": 2 + }, + "gamesPlayed": 5, + "medianWords": 6, + "medianLetters": 30 + }, + "midwife": { + "best": { + "word": "midwife", + "letters": 23 + }, + "worst": { + "word": "midwife", + "letters": 60 + }, + "totalWords": { + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "10": 1, + "14": 1 + }, + "totalLetters": { + "23": 1, + "28": 1, + "29": 1, + "39": 1, + "44": 1, + "60": 1 + }, + "gamesPlayed": 6, + "medianWords": 5.5, + "medianLetters": 34 + }, + "such": { + "best": { + "word": "such", + "letters": 17 + }, + "worst": { + "word": "such", + "letters": 26 + }, + "totalWords": { + "3": 2, + "4": 4, + "5": 2 + }, + "totalLetters": { + "17": 2, + "19": 1, + "21": 1, + "24": 3, + "26": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 22.5 + }, + "legalize": { + "best": { + "word": "legalize", + "letters": 19 + }, + "worst": { + "word": "legalize", + "letters": 58 + }, + "totalWords": { + "3": 2, + "4": 1, + "6": 2, + "10": 1 + }, + "totalLetters": { + "19": 1, + "25": 1, + "26": 1, + "37": 1, + "38": 1, + "58": 1 + }, + "gamesPlayed": 6, + "medianWords": 5, + "medianLetters": 31.5 + }, + "treason": { + "best": { + "word": "treason", + "letters": 16 + }, + "worst": { + "word": "treason", + "letters": 32 + }, + "totalWords": { + "2": 2, + "3": 3, + "4": 1, + "6": 1 + }, + "totalLetters": { + "16": 1, + "17": 1, + "24": 2, + "27": 2, + "32": 1 + }, + "gamesPlayed": 7, + "medianWords": 3, + "medianLetters": 24 + }, + "decrease": { + "best": { + "word": "decrease", + "letters": 22 + }, + "worst": { + "word": "decrease", + "letters": 42 + }, + "totalWords": { + "3": 2, + "4": 2, + "5": 1, + "7": 2 + }, + "totalLetters": { + "22": 1, + "26": 2, + "29": 1, + "38": 1, + "39": 1, + "42": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 29 + }, + "formula": { + "best": { + "word": "formula", + "letters": 21 + }, + "worst": { + "word": "formula", + "letters": 38 + }, + "totalWords": { + "3": 2, + "4": 1, + "6": 1, + "7": 1 + }, + "totalLetters": { + "21": 2, + "25": 1, + "34": 1, + "38": 1 + }, + "gamesPlayed": 5, + "medianWords": 4, + "medianLetters": 25 + }, + "aquarius": { + "best": { + "word": "aquarius", + "letters": 24 + }, + "worst": { + "word": "aquarius", + "letters": 47 + }, + "totalWords": { + "3": 1, + "5": 1, + "6": 1, + "7": 2, + "9": 1 + }, + "totalLetters": { + "24": 1, + "34": 1, + "38": 1, + "43": 1, + "44": 1, + "47": 1 + }, + "gamesPlayed": 6, + "medianWords": 6.5, + "medianLetters": 40.5 + }, + "informant": { + "best": { + "word": "informant", + "letters": 30 + }, + "worst": { + "word": "informant", + "letters": 46 + }, + "totalWords": { + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 2 + }, + "totalLetters": { + "30": 1, + "33": 1, + "38": 1, + "44": 2, + "46": 1 + }, + "gamesPlayed": 6, + "medianWords": 5.5, + "medianLetters": 41 + }, + "collusion": { + "best": { + "word": "collusion", + "letters": 30 + }, + "worst": { + "word": "collusion", + "letters": 45 + }, + "totalWords": { + "4": 3, + "5": 2, + "6": 2 + }, + "totalLetters": { + "30": 1, + "33": 1, + "34": 1, + "35": 1, + "37": 1, + "43": 1, + "45": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 35 + }, + "mother": { + "best": { + "word": "mother", + "letters": 20 + }, + "worst": { + "word": "mother", + "letters": 41 + }, + "totalWords": { + "3": 2, + "6": 3, + "7": 1 + }, + "totalLetters": { + "20": 1, + "21": 1, + "35": 1, + "36": 1, + "39": 1, + "41": 1 + }, + "gamesPlayed": 6, + "medianWords": 4.5, + "medianLetters": 35.5 + }, + "diplomat": { + "best": { + "word": "diplomat", + "letters": 22 + }, + "worst": { + "word": "diplomat", + "letters": 38 + }, + "totalWords": { + "3": 1, + "4": 2, + "5": 2, + "6": 1, + "7": 1 + }, + "totalLetters": { + "22": 1, + "25": 1, + "28": 2, + "29": 1, + "37": 1, + "38": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 28 + }, + "vacation": { + "best": { + "word": "vacation", + "letters": 25 + }, + "worst": { + "word": "vacation", + "letters": 46 + }, + "totalWords": { + "3": 2, + "4": 2, + "5": 2, + "8": 1 + }, + "totalLetters": { + "25": 1, + "29": 2, + "32": 3, + "46": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 32 + }, + "wound": { + "best": { + "word": "wound", + "letters": 18 + }, + "worst": { + "word": "wound", + "letters": 37 + }, + "totalWords": { + "3": 2, + "4": 1, + "5": 1, + "7": 1 + }, + "totalLetters": { + "18": 1, + "21": 1, + "23": 1, + "26": 1, + "37": 1 + }, + "gamesPlayed": 5, + "medianWords": 4, + "medianLetters": 23 + }, + "affinity": { + "best": { + "word": "affinity", + "letters": 28 + }, + "worst": { + "word": "affinity", + "letters": 49 + }, + "totalWords": { + "4": 2, + "6": 1, + "8": 1, + "9": 1, + "10": 1 + }, + "totalLetters": { + "28": 1, + "29": 1, + "42": 1, + "48": 2, + "49": 1 + }, + "gamesPlayed": 6, + "medianWords": 7, + "medianLetters": 45 + }, + "faceless": { + "best": { + "word": "faceless", + "letters": 25 + }, + "worst": { + "word": "faceless", + "letters": 41 + }, + "totalWords": { + "3": 2, + "5": 3, + "6": 1, + "7": 1 + }, + "totalLetters": { + "25": 1, + "26": 1, + "30": 1, + "33": 1, + "34": 1, + "40": 1, + "41": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 33 + }, + "recoil": { + "best": { + "word": "recoil", + "letters": 15 + }, + "worst": { + "word": "recoil", + "letters": 31 + }, + "totalWords": { + "2": 3, + "4": 2, + "5": 1 + }, + "totalLetters": { + "15": 1, + "18": 1, + "19": 2, + "27": 1, + "31": 1 + }, + "gamesPlayed": 6, + "medianWords": 3, + "medianLetters": 18.5 + }, + "west": { + "best": { + "word": "west", + "letters": 16 + }, + "worst": { + "word": "west", + "letters": 33 + }, + "totalWords": { + "3": 3, + "4": 1, + "5": 1, + "6": 1, + "7": 1 + }, + "totalLetters": { + "16": 1, + "17": 1, + "21": 1, + "25": 1, + "26": 1, + "28": 1, + "33": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 25 + }, + "tribe": { + "best": { + "word": "tribe", + "letters": 13 + }, + "worst": { + "word": "tribe", + "letters": 31 + }, + "totalWords": { + "2": 3, + "4": 3, + "5": 2 + }, + "totalLetters": { + "13": 1, + "16": 1, + "18": 1, + "26": 1, + "27": 1, + "28": 1, + "30": 1, + "31": 1 + }, + "gamesPlayed": 8, + "medianWords": 3, + "medianLetters": 26.5 + }, + "monkey": { + "best": { + "word": "monkey", + "letters": 19 + }, + "worst": { + "word": "monkey", + "letters": 25 + }, + "totalWords": { + "3": 2, + "4": 4 + }, + "totalLetters": { + "19": 1, + "20": 2, + "24": 1, + "25": 2 + }, + "gamesPlayed": 6, + "medianWords": 3.5, + "medianLetters": 22 + }, + "incentive": { + "best": { + "word": "incentive", + "letters": 39 + }, + "worst": { + "word": "incentive", + "letters": 52 + }, + "totalWords": { + "5": 2, + "6": 1, + "7": 1 + }, + "totalLetters": { + "39": 1, + "40": 1, + "43": 1, + "52": 1 + }, + "gamesPlayed": 4, + "medianWords": 5.5, + "medianLetters": 41.5 + }, + "folly": { + "best": { + "word": "folly", + "letters": 21 + }, + "worst": { + "word": "folly", + "letters": 38 + }, + "totalWords": { + "4": 3, + "5": 2, + "7": 1 + }, + "totalLetters": { + "21": 2, + "24": 1, + "27": 1, + "28": 1, + "38": 1 + }, + "gamesPlayed": 6, + "medianWords": 4.5, + "medianLetters": 25.5 + }, + "leper": { + "best": { + "word": "leper", + "letters": 22 + }, + "worst": { + "word": "leper", + "letters": 37 + }, + "totalWords": { + "3": 1, + "4": 1, + "5": 1, + "7": 2 + }, + "totalLetters": { + "22": 1, + "23": 1, + "30": 1, + "33": 1, + "37": 1 + }, + "gamesPlayed": 5, + "medianWords": 5, + "medianLetters": 30 + }, + "tall": { + "best": { + "word": "tall", + "letters": 17 + }, + "worst": { + "word": "tall", + "letters": 36 + }, + "totalWords": { + "3": 1, + "5": 2, + "6": 1, + "7": 3 + }, + "totalLetters": { + "17": 1, + "22": 1, + "28": 1, + "33": 1, + "34": 2, + "36": 1 + }, + "gamesPlayed": 7, + "medianWords": 6, + "medianLetters": 33 + }, + "defector": { + "best": { + "word": "defector", + "letters": 28 + }, + "worst": { + "word": "defector", + "letters": 45 + }, + "totalWords": { + "3": 1, + "4": 1, + "5": 2, + "7": 1 + }, + "totalLetters": { + "28": 1, + "32": 1, + "39": 1, + "40": 1, + "45": 1 + }, + "gamesPlayed": 5, + "medianWords": 5, + "medianLetters": 39 + }, + "overpower": { + "best": { + "word": "overpower", + "letters": 30 + }, + "worst": { + "word": "overpower", + "letters": 57 + }, + "totalWords": { + "4": 2, + "7": 2, + "8": 1, + "10": 1, + "12": 1 + }, + "totalLetters": { + "30": 1, + "31": 1, + "39": 1, + "41": 1, + "51": 1, + "55": 1, + "57": 1 + }, + "gamesPlayed": 7, + "medianWords": 7, + "medianLetters": 41 + }, + "textbook": { + "best": { + "word": "textbook", + "letters": 22 + }, + "worst": { + "word": "textbook", + "letters": 43 + }, + "totalWords": { + "3": 1, + "6": 1, + "8": 2, + "9": 1 + }, + "totalLetters": { + "22": 1, + "38": 2, + "40": 1, + "43": 1 + }, + "gamesPlayed": 5, + "medianWords": 8, + "medianLetters": 38 + }, + "chatter": { + "best": { + "word": "chatter", + "letters": 15 + }, + "worst": { + "word": "chatter", + "letters": 43 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 1, + "5": 1, + "6": 1, + "7": 1 + }, + "totalLetters": { + "15": 1, + "23": 1, + "24": 1, + "31": 1, + "34": 1, + "35": 1, + "43": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 31 + }, + "mythical": { + "best": { + "word": "mythical", + "letters": 26 + }, + "worst": { + "word": "mythical", + "letters": 38 + }, + "totalWords": { + "3": 1, + "4": 2, + "5": 1, + "6": 1 + }, + "totalLetters": { + "26": 1, + "28": 2, + "34": 1, + "38": 1 + }, + "gamesPlayed": 5, + "medianWords": 4, + "medianLetters": 28 + }, + "announcer": { + "best": { + "word": "announcer", + "letters": 31 + }, + "worst": { + "word": "announcer", + "letters": 47 + }, + "totalWords": { + "4": 3, + "5": 2, + "10": 1 + }, + "totalLetters": { + "31": 2, + "32": 2, + "39": 1, + "47": 1 + }, + "gamesPlayed": 6, + "medianWords": 4.5, + "medianLetters": 31.5 + }, + "ukrainian": { + "best": { + "word": "ukrainian", + "letters": 32 + }, + "worst": { + "word": "ukrainian", + "letters": 57 + }, + "totalWords": { + "4": 2, + "6": 1, + "8": 2, + "9": 1, + "12": 1 + }, + "totalLetters": { + "32": 1, + "35": 1, + "37": 1, + "43": 2, + "51": 1, + "57": 1 + }, + "gamesPlayed": 7, + "medianWords": 8, + "medianLetters": 43 + }, + "lecturer": { + "best": { + "word": "lecturer", + "letters": 27 + }, + "worst": { + "word": "lecturer", + "letters": 59 + }, + "totalWords": { + "4": 2, + "5": 2, + "6": 1, + "7": 1, + "10": 1 + }, + "totalLetters": { + "27": 1, + "30": 1, + "32": 1, + "38": 1, + "41": 1, + "48": 1, + "59": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 38 + }, + "silver": { + "best": { + "word": "silver", + "letters": 23 + }, + "worst": { + "word": "silver", + "letters": 45 + }, + "totalWords": { + "3": 2, + "4": 1, + "5": 1, + "6": 1, + "7": 1, + "8": 1 + }, + "totalLetters": { + "23": 2, + "25": 1, + "30": 1, + "34": 2, + "45": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 30 + }, + "ambiguous": { + "best": { + "word": "ambiguous", + "letters": 22 + }, + "worst": { + "word": "ambiguous", + "letters": 44 + }, + "totalWords": { + "3": 1, + "5": 1, + "6": 1, + "7": 1 + }, + "totalLetters": { + "22": 1, + "33": 1, + "41": 1, + "44": 1 + }, + "gamesPlayed": 4, + "medianWords": 5.5, + "medianLetters": 37 + }, + "team": { + "best": { + "word": "team", + "letters": 9 + }, + "worst": { + "word": "team", + "letters": 35 + }, + "totalWords": { + "2": 3, + "3": 2, + "5": 1, + "7": 1 + }, + "totalLetters": { + "9": 1, + "13": 1, + "14": 1, + "17": 2, + "24": 1, + "35": 1 + }, + "gamesPlayed": 7, + "medianWords": 3, + "medianLetters": 17 + }, + "freestyle": { + "best": { + "word": "freestyle", + "letters": 27 + }, + "worst": { + "word": "freestyle", + "letters": 61 + }, + "totalWords": { + "4": 2, + "5": 2, + "6": 1, + "8": 1, + "9": 1 + }, + "totalLetters": { + "27": 1, + "35": 2, + "36": 1, + "40": 1, + "47": 1, + "61": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 36 + }, + "aunt": { + "best": { + "word": "aunt", + "letters": 19 + }, + "worst": { + "word": "aunt", + "letters": 33 + }, + "totalWords": { + "3": 1, + "4": 4, + "7": 1, + "8": 1 + }, + "totalLetters": { + "19": 1, + "20": 1, + "21": 1, + "23": 2, + "32": 1, + "33": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 23 + }, + "continuum": { + "best": { + "word": "continuum", + "letters": 25 + }, + "worst": { + "word": "continuum", + "letters": 42 + }, + "totalWords": { + "3": 2, + "4": 3, + "5": 1, + "6": 2 + }, + "totalLetters": { + "25": 1, + "27": 1, + "29": 1, + "30": 1, + "32": 1, + "36": 1, + "39": 1, + "42": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 31 + }, + "preface": { + "best": { + "word": "preface", + "letters": 16 + }, + "worst": { + "word": "preface", + "letters": 34 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 2, + "5": 1, + "6": 1 + }, + "totalLetters": { + "16": 1, + "19": 1, + "29": 1, + "32": 1, + "33": 1, + "34": 1 + }, + "gamesPlayed": 6, + "medianWords": 3.5, + "medianLetters": 30.5 + }, + "globe": { + "best": { + "word": "globe", + "letters": 21 + }, + "worst": { + "word": "globe", + "letters": 38 + }, + "totalWords": { + "4": 2, + "5": 2, + "6": 2, + "7": 1 + }, + "totalLetters": { + "21": 1, + "24": 1, + "25": 1, + "29": 1, + "31": 1, + "33": 1, + "38": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 29 + }, + "concert": { + "best": { + "word": "concert", + "letters": 16 + }, + "worst": { + "word": "concert", + "letters": 47 + }, + "totalWords": { + "2": 2, + "4": 1, + "6": 1, + "8": 1 + }, + "totalLetters": { + "16": 1, + "18": 1, + "26": 1, + "31": 1, + "47": 1 + }, + "gamesPlayed": 5, + "medianWords": 4, + "medianLetters": 26 + }, + "dream": { + "best": { + "word": "dream", + "letters": 24 + }, + "worst": { + "word": "dream", + "letters": 38 + }, + "totalWords": { + "3": 1, + "5": 2, + "6": 1 + }, + "totalLetters": { + "24": 1, + "28": 1, + "29": 1, + "38": 1 + }, + "gamesPlayed": 4, + "medianWords": 4, + "medianLetters": 28.5 + }, + "fiction": { + "best": { + "word": "fiction", + "letters": 21 + }, + "worst": { + "word": "fiction", + "letters": 33 + }, + "totalWords": { + "3": 3, + "5": 2, + "6": 2 + }, + "totalLetters": { + "21": 1, + "23": 1, + "25": 1, + "27": 1, + "31": 1, + "33": 2 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 27 + }, + "drama": { + "best": { + "word": "drama", + "letters": 13 + }, + "worst": { + "word": "drama", + "letters": 46 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 2, + "6": 2, + "10": 1 + }, + "totalLetters": { + "13": 1, + "22": 1, + "23": 1, + "27": 1, + "29": 2, + "46": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 27 + }, + "mushy": { + "best": { + "word": "mushy", + "letters": 19 + }, + "worst": { + "word": "mushy", + "letters": 32 + }, + "totalWords": { + "3": 1, + "4": 5, + "5": 2 + }, + "totalLetters": { + "19": 2, + "22": 1, + "24": 1, + "25": 1, + "27": 1, + "28": 1, + "32": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 24.5 + }, + "singapore": { + "best": { + "word": "singapore", + "letters": 26 + }, + "worst": { + "word": "singapore", + "letters": 46 + }, + "totalWords": { + "3": 2, + "4": 1, + "6": 1, + "7": 3 + }, + "totalLetters": { + "26": 1, + "29": 1, + "31": 1, + "36": 1, + "42": 1, + "43": 1, + "46": 1 + }, + "gamesPlayed": 7, + "medianWords": 6, + "medianLetters": 36 + }, + "church": { + "best": { + "word": "church", + "letters": 15 + }, + "worst": { + "word": "church", + "letters": 28 + }, + "totalWords": { + "2": 1, + "3": 3, + "5": 2 + }, + "totalLetters": { + "15": 1, + "19": 1, + "22": 1, + "25": 1, + "26": 1, + "28": 1 + }, + "gamesPlayed": 6, + "medianWords": 2.5, + "medianLetters": 23.5 + }, + "attached": { + "best": { + "word": "attached", + "letters": 16 + }, + "worst": { + "word": "attached", + "letters": 40 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 1, + "5": 3 + }, + "totalLetters": { + "16": 1, + "25": 1, + "28": 1, + "30": 1, + "38": 1, + "40": 1 + }, + "gamesPlayed": 6, + "medianWords": 4.5, + "medianLetters": 29 + }, + "expose": { + "best": { + "word": "expose", + "letters": 20 + }, + "worst": { + "word": "expose", + "letters": 45 + }, + "totalWords": { + "4": 1, + "5": 2, + "7": 2 + }, + "totalLetters": { + "20": 1, + "29": 1, + "37": 2, + "45": 1 + }, + "gamesPlayed": 5, + "medianWords": 5, + "medianLetters": 37 + }, + "genetics": { + "best": { + "word": "genetics", + "letters": 16 + }, + "worst": { + "word": "genetics", + "letters": 39 + }, + "totalWords": { + "2": 2, + "3": 2, + "5": 2, + "6": 1 + }, + "totalLetters": { + "16": 1, + "17": 1, + "24": 1, + "27": 1, + "32": 1, + "38": 1, + "39": 1 + }, + "gamesPlayed": 7, + "medianWords": 3, + "medianLetters": 27 + }, + "precious": { + "best": { + "word": "precious", + "letters": 17 + }, + "worst": { + "word": "precious", + "letters": 49 + }, + "totalWords": { + "2": 2, + "3": 1, + "4": 2, + "6": 1, + "7": 1 + }, + "totalLetters": { + "17": 1, + "20": 1, + "26": 1, + "30": 1, + "32": 1, + "41": 1, + "49": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 30 + }, + "steer": { + "best": { + "word": "steer", + "letters": 15 + }, + "worst": { + "word": "steer", + "letters": 33 + }, + "totalWords": { + "2": 1, + "4": 1, + "5": 2, + "6": 1 + }, + "totalLetters": { + "15": 1, + "29": 2, + "32": 1, + "33": 1 + }, + "gamesPlayed": 5, + "medianWords": 5, + "medianLetters": 29 + }, + "loathe": { + "best": { + "word": "loathe", + "letters": 21 + }, + "worst": { + "word": "loathe", + "letters": 42 + }, + "totalWords": { + "3": 1, + "4": 2, + "5": 2, + "6": 1, + "8": 1 + }, + "totalLetters": { + "21": 1, + "25": 2, + "27": 1, + "32": 1, + "35": 1, + "42": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 27 + }, + "cent": { + "best": { + "word": "cent", + "letters": 13 + }, + "worst": { + "word": "cent", + "letters": 25 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 2, + "5": 1 + }, + "totalLetters": { + "13": 1, + "20": 1, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "25": 1 + }, + "gamesPlayed": 7, + "medianWords": 3, + "medianLetters": 22 + }, + "tenor": { + "best": { + "word": "tenor", + "letters": 16 + }, + "worst": { + "word": "tenor", + "letters": 23 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 1 + }, + "totalLetters": { + "16": 1, + "18": 2, + "20": 1, + "23": 2 + }, + "gamesPlayed": 6, + "medianWords": 2.5, + "medianLetters": 19 + }, + "aversion": { + "best": { + "word": "aversion", + "letters": 20 + }, + "worst": { + "word": "aversion", + "letters": 43 + }, + "totalWords": { + "2": 1, + "3": 2, + "5": 1, + "7": 2 + }, + "totalLetters": { + "20": 1, + "24": 1, + "27": 1, + "36": 1, + "38": 1, + "43": 1 + }, + "gamesPlayed": 6, + "medianWords": 4, + "medianLetters": 31.5 + }, + "render": { + "best": { + "word": "render", + "letters": 17 + }, + "worst": { + "word": "render", + "letters": 50 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 1, + "7": 2, + "9": 1 + }, + "totalLetters": { + "17": 1, + "20": 1, + "25": 1, + "43": 1, + "48": 1, + "50": 1 + }, + "gamesPlayed": 6, + "medianWords": 5.5, + "medianLetters": 34 + }, + "sickness": { + "best": { + "word": "sickness", + "letters": 22 + }, + "worst": { + "word": "sickness", + "letters": 63 + }, + "totalWords": { + "4": 2, + "5": 2, + "12": 1 + }, + "totalLetters": { + "22": 1, + "36": 2, + "37": 1, + "63": 1 + }, + "gamesPlayed": 5, + "medianWords": 5, + "medianLetters": 36 + }, + "national": { + "best": { + "word": "national", + "letters": 22 + }, + "worst": { + "word": "national", + "letters": 47 + }, + "totalWords": { + "3": 3, + "4": 1, + "7": 1, + "8": 1 + }, + "totalLetters": { + "22": 1, + "23": 1, + "27": 1, + "28": 1, + "40": 1, + "47": 1 + }, + "gamesPlayed": 6, + "medianWords": 3.5, + "medianLetters": 27.5 + }, + "postcard": { + "best": { + "word": "postcard", + "letters": 23 + }, + "worst": { + "word": "postcard", + "letters": 49 + }, + "totalWords": { + "3": 1, + "4": 1, + "5": 1, + "6": 2, + "11": 1 + }, + "totalLetters": { + "23": 1, + "29": 1, + "33": 1, + "34": 1, + "37": 1, + "49": 1 + }, + "gamesPlayed": 6, + "medianWords": 5.5, + "medianLetters": 33.5 + }, + "mince": { + "best": { + "word": "mince", + "letters": 16 + }, + "worst": { + "word": "mince", + "letters": 33 + }, + "totalWords": { + "3": 4, + "4": 1, + "5": 2 + }, + "totalLetters": { + "16": 1, + "17": 1, + "20": 2, + "25": 1, + "27": 1, + "33": 1 + }, + "gamesPlayed": 7, + "medianWords": 3, + "medianLetters": 20 + }, + "octagon": { + "best": { + "word": "octagon", + "letters": 24 + }, + "worst": { + "word": "octagon", + "letters": 55 + }, + "totalWords": { + "4": 2, + "5": 1, + "6": 1, + "7": 1, + "11": 1 + }, + "totalLetters": { + "24": 1, + "27": 1, + "32": 2, + "36": 1, + "55": 1 + }, + "gamesPlayed": 6, + "medianWords": 5.5, + "medianLetters": 29.5 + }, + "acting": { + "best": { + "word": "acting", + "letters": 20 + }, + "worst": { + "word": "acting", + "letters": 48 + }, + "totalWords": { + "3": 1, + "4": 1, + "5": 1, + "7": 1 + }, + "totalLetters": { + "20": 1, + "24": 1, + "25": 1, + "48": 1 + }, + "gamesPlayed": 4, + "medianWords": 4.5, + "medianLetters": 24.5 + }, + "novelist": { + "best": { + "word": "novelist", + "letters": 24 + }, + "worst": { + "word": "novelist", + "letters": 43 + }, + "totalWords": { + "3": 1, + "4": 2, + "6": 2, + "8": 1 + }, + "totalLetters": { + "24": 1, + "27": 1, + "31": 1, + "32": 1, + "36": 1, + "43": 1 + }, + "gamesPlayed": 6, + "medianWords": 5, + "medianLetters": 31.5 + }, + "flamingo": { + "best": { + "word": "flamingo", + "letters": 23 + }, + "worst": { + "word": "flamingo", + "letters": 39 + }, + "totalWords": { + "3": 3, + "4": 2, + "6": 1 + }, + "totalLetters": { + "23": 1, + "24": 1, + "26": 1, + "28": 1, + "31": 1, + "39": 1 + }, + "gamesPlayed": 6, + "medianWords": 3.5, + "medianLetters": 27 + }, + "azure": { + "best": { + "word": "azure", + "letters": 25 + }, + "worst": { + "word": "azure", + "letters": 41 + }, + "totalWords": { + "3": 1, + "4": 2, + "5": 1, + "6": 2, + "8": 1 + }, + "totalLetters": { + "25": 1, + "26": 1, + "27": 1, + "30": 1, + "34": 1, + "35": 1, + "41": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 30 + }, + "marauder": { + "best": { + "word": "marauder", + "letters": 22 + }, + "worst": { + "word": "marauder", + "letters": 42 + }, + "totalWords": { + "3": 2, + "5": 2, + "7": 1 + }, + "totalLetters": { + "22": 1, + "25": 1, + "33": 1, + "34": 1, + "42": 1 + }, + "gamesPlayed": 5, + "medianWords": 5, + "medianLetters": 33 + }, + "suede": { + "best": { + "word": "suede", + "letters": 15 + }, + "worst": { + "word": "suede", + "letters": 39 + }, + "totalWords": { + "2": 2, + "4": 1, + "5": 1, + "6": 2, + "8": 1 + }, + "totalLetters": { + "15": 1, + "16": 1, + "23": 1, + "26": 1, + "34": 1, + "37": 1, + "39": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 26 + }, + "herald": { + "best": { + "word": "herald", + "letters": 23 + }, + "worst": { + "word": "herald", + "letters": 35 + }, + "totalWords": { + "3": 1, + "4": 4, + "5": 2, + "8": 1 + }, + "totalLetters": { + "23": 1, + "25": 2, + "27": 1, + "28": 2, + "34": 1, + "35": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 27.5 + }, + "vigorous": { + "best": { + "word": "vigorous", + "letters": 21 + }, + "worst": { + "word": "vigorous", + "letters": 43 + }, + "totalWords": { + "3": 2, + "4": 2, + "5": 1, + "7": 1, + "8": 1 + }, + "totalLetters": { + "21": 1, + "22": 1, + "28": 1, + "30": 1, + "31": 1, + "35": 1, + "43": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 30 + }, + "chief": { + "best": { + "word": "chief", + "letters": 15 + }, + "worst": { + "word": "chief", + "letters": 41 + }, + "totalWords": { + "3": 1, + "4": 1, + "6": 2, + "7": 3 + }, + "totalLetters": { + "15": 1, + "24": 1, + "28": 1, + "34": 1, + "36": 1, + "38": 1, + "41": 1 + }, + "gamesPlayed": 7, + "medianWords": 6, + "medianLetters": 34 + }, + "foolish": { + "best": { + "word": "foolish", + "letters": 22 + }, + "worst": { + "word": "foolish", + "letters": 33 + }, + "totalWords": { + "4": 2, + "5": 1, + "6": 1 + }, + "totalLetters": { + "22": 1, + "26": 1, + "30": 1, + "33": 1 + }, + "gamesPlayed": 4, + "medianWords": 4.5, + "medianLetters": 28 + }, + "runway": { + "best": { + "word": "runway", + "letters": 27 + }, + "worst": { + "word": "runway", + "letters": 39 + }, + "totalWords": { + "4": 1, + "5": 3, + "7": 2 + }, + "totalLetters": { + "27": 1, + "30": 1, + "32": 1, + "34": 1, + "39": 2 + }, + "gamesPlayed": 6, + "medianWords": 4.5, + "medianLetters": 33 + }, + "danger": { + "best": { + "word": "danger", + "letters": 27 + }, + "worst": { + "word": "danger", + "letters": 39 + }, + "totalWords": { + "5": 3, + "6": 3 + }, + "totalLetters": { + "27": 1, + "29": 1, + "37": 2, + "39": 2 + }, + "gamesPlayed": 6, + "medianWords": 5.5, + "medianLetters": 33 + }, + "greek": { + "best": { + "word": "greek", + "letters": 14 + }, + "worst": { + "word": "greek", + "letters": 36 + }, + "totalWords": { + "2": 2, + "3": 1, + "4": 2, + "6": 1, + "7": 1 + }, + "totalLetters": { + "14": 1, + "17": 1, + "19": 1, + "23": 1, + "27": 1, + "36": 2 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 23 + }, + "slipped": { + "best": { + "word": "slipped", + "letters": 22 + }, + "worst": { + "word": "slipped", + "letters": 49 + }, + "totalWords": { + "3": 1, + "4": 1, + "5": 1, + "6": 2, + "7": 1, + "8": 1 + }, + "totalLetters": { + "22": 1, + "26": 1, + "27": 1, + "37": 1, + "40": 2, + "49": 1 + }, + "gamesPlayed": 7, + "medianWords": 6, + "medianLetters": 37 + }, + "aircraft": { + "best": { + "word": "aircraft", + "letters": 24 + }, + "worst": { + "word": "aircraft", + "letters": 64 + }, + "totalWords": { + "3": 1, + "4": 3, + "5": 2, + "6": 1, + "13": 1 + }, + "totalLetters": { + "24": 1, + "25": 1, + "31": 1, + "32": 2, + "37": 1, + "40": 1, + "64": 1 + }, + "gamesPlayed": 8, + "medianWords": 4.5, + "medianLetters": 31.5 + }, + "rubber": { + "best": { + "word": "rubber", + "letters": 21 + }, + "worst": { + "word": "rubber", + "letters": 47 + }, + "totalWords": { + "3": 2, + "4": 1, + "5": 2, + "11": 1 + }, + "totalLetters": { + "21": 1, + "25": 1, + "26": 3, + "47": 1 + }, + "gamesPlayed": 6, + "medianWords": 4.5, + "medianLetters": 25.5 + }, + "gibberish": { + "best": { + "word": "gibberish", + "letters": 26 + }, + "worst": { + "word": "gibberish", + "letters": 49 + }, + "totalWords": { + "4": 1, + "5": 2, + "6": 1, + "7": 1, + "8": 1, + "9": 1 + }, + "totalLetters": { + "26": 1, + "31": 1, + "35": 1, + "38": 1, + "39": 1, + "48": 1, + "49": 1 + }, + "gamesPlayed": 7, + "medianWords": 6, + "medianLetters": 38 + }, + "ladle": { + "best": { + "word": "ladle", + "letters": 23 + }, + "worst": { + "word": "ladle", + "letters": 30 + }, + "totalWords": { + "3": 1, + "4": 1, + "5": 3, + "6": 1 + }, + "totalLetters": { + "23": 1, + "28": 2, + "29": 2, + "30": 1 + }, + "gamesPlayed": 6, + "medianWords": 4.5, + "medianLetters": 28.5 + }, + "scholar": { + "best": { + "word": "scholar", + "letters": 19 + }, + "worst": { + "word": "scholar", + "letters": 46 + }, + "totalWords": { + "3": 3, + "4": 2, + "9": 1, + "10": 1 + }, + "totalLetters": { + "19": 1, + "24": 1, + "27": 1, + "28": 1, + "31": 1, + "42": 1, + "46": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 28 + }, + "parallel": { + "best": { + "word": "parallel", + "letters": 25 + }, + "worst": { + "word": "parallel", + "letters": 59 + }, + "totalWords": { + "4": 4, + "6": 1, + "7": 1, + "11": 1 + }, + "totalLetters": { + "25": 1, + "29": 2, + "31": 1, + "39": 1, + "43": 1, + "59": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 31 + }, + "barricade": { + "best": { + "word": "barricade", + "letters": 25 + }, + "worst": { + "word": "barricade", + "letters": 112 + }, + "totalWords": { + "3": 2, + "5": 1, + "7": 3, + "8": 1, + "22": 1 + }, + "totalLetters": { + "25": 1, + "26": 1, + "34": 1, + "40": 2, + "43": 1, + "47": 1, + "112": 1 + }, + "gamesPlayed": 8, + "medianWords": 6, + "medianLetters": 37 + }, + "glider": { + "best": { + "word": "glider", + "letters": 18 + }, + "worst": { + "word": "glider", + "letters": 56 + }, + "totalWords": { + "3": 1, + "4": 4, + "5": 1, + "10": 1 + }, + "totalLetters": { + "18": 1, + "23": 1, + "24": 1, + "27": 1, + "29": 1, + "30": 1, + "56": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 27 + }, + "linen": { + "best": { + "word": "linen", + "letters": 17 + }, + "worst": { + "word": "linen", + "letters": 35 + }, + "totalWords": { + "2": 1, + "3": 1, + "5": 2, + "6": 1, + "7": 1 + }, + "totalLetters": { + "17": 1, + "23": 1, + "28": 2, + "30": 1, + "35": 1 + }, + "gamesPlayed": 6, + "medianWords": 4, + "medianLetters": 25.5 + }, + "advise": { + "best": { + "word": "advise", + "letters": 20 + }, + "worst": { + "word": "advise", + "letters": 49 + }, + "totalWords": { + "3": 2, + "4": 1, + "5": 1, + "6": 2, + "10": 1 + }, + "totalLetters": { + "20": 1, + "25": 1, + "26": 1, + "31": 1, + "35": 1, + "37": 1, + "49": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 31 + }, + "shore": { + "best": { + "word": "shore", + "letters": 19 + }, + "worst": { + "word": "shore", + "letters": 34 + }, + "totalWords": { + "3": 1, + "4": 2, + "5": 3, + "6": 1 + }, + "totalLetters": { + "19": 1, + "22": 1, + "26": 2, + "28": 2, + "34": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 26 + }, + "hostess": { + "best": { + "word": "hostess", + "letters": 18 + }, + "worst": { + "word": "hostess", + "letters": 35 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 2, + "6": 1, + "7": 1 + }, + "totalLetters": { + "18": 1, + "20": 1, + "22": 1, + "26": 1, + "33": 1, + "35": 1 + }, + "gamesPlayed": 6, + "medianWords": 3.5, + "medianLetters": 24 + }, + "wander": { + "best": { + "word": "wander", + "letters": 21 + }, + "worst": { + "word": "wander", + "letters": 41 + }, + "totalWords": { + "3": 1, + "4": 1, + "5": 2, + "6": 1, + "7": 1 + }, + "totalLetters": { + "21": 1, + "23": 1, + "29": 1, + "31": 1, + "39": 1, + "41": 1 + }, + "gamesPlayed": 6, + "medianWords": 4.5, + "medianLetters": 30 + }, + "seizure": { + "best": { + "word": "seizure", + "letters": 19 + }, + "worst": { + "word": "seizure", + "letters": 33 + }, + "totalWords": { + "2": 1, + "4": 2, + "5": 2 + }, + "totalLetters": { + "19": 1, + "26": 1, + "29": 1, + "32": 1, + "33": 1 + }, + "gamesPlayed": 5, + "medianWords": 4, + "medianLetters": 29 + }, + "bullseye": { + "best": { + "word": "bullseye", + "letters": 23 + }, + "worst": { + "word": "bullseye", + "letters": 46 + }, + "totalWords": { + "3": 1, + "4": 2, + "5": 1, + "6": 2, + "7": 1, + "8": 1 + }, + "totalLetters": { + "23": 1, + "30": 1, + "31": 1, + "33": 1, + "34": 1, + "35": 1, + "41": 1, + "46": 1 + }, + "gamesPlayed": 8, + "medianWords": 5.5, + "medianLetters": 33.5 + }, + "itself": { + "best": { + "word": "itself", + "letters": 23 + }, + "worst": { + "word": "itself", + "letters": 59 + }, + "totalWords": { + "4": 2, + "7": 1, + "8": 1, + "9": 1 + }, + "totalLetters": { + "23": 1, + "31": 1, + "37": 1, + "45": 1, + "59": 1 + }, + "gamesPlayed": 5, + "medianWords": 7, + "medianLetters": 37 + }, + "arrow": { + "best": { + "word": "arrow", + "letters": 16 + }, + "worst": { + "word": "arrow", + "letters": 30 + }, + "totalWords": { + "2": 1, + "4": 4, + "5": 2 + }, + "totalLetters": { + "16": 1, + "22": 2, + "23": 1, + "25": 1, + "27": 1, + "30": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 23 + }, + "leopard": { + "best": { + "word": "leopard", + "letters": 20 + }, + "worst": { + "word": "leopard", + "letters": 36 + }, + "totalWords": { + "2": 1, + "3": 2, + "5": 2, + "6": 2 + }, + "totalLetters": { + "20": 1, + "22": 1, + "26": 1, + "27": 1, + "31": 2, + "36": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 27 + }, + "inject": { + "best": { + "word": "inject", + "letters": 15 + }, + "worst": { + "word": "inject", + "letters": 61 + }, + "totalWords": { + "2": 1, + "6": 2, + "7": 1, + "11": 1, + "12": 1 + }, + "totalLetters": { + "15": 1, + "32": 1, + "37": 1, + "41": 1, + "59": 1, + "61": 1 + }, + "gamesPlayed": 6, + "medianWords": 6.5, + "medianLetters": 39 + }, + "symbolize": { + "best": { + "word": "symbolize", + "letters": 29 + }, + "worst": { + "word": "symbolize", + "letters": 112 + }, + "totalWords": { + "3": 1, + "6": 1, + "8": 3, + "18": 1 + }, + "totalLetters": { + "29": 1, + "39": 1, + "45": 1, + "47": 1, + "48": 1, + "112": 1 + }, + "gamesPlayed": 6, + "medianWords": 7, + "medianLetters": 46 + }, + "reprimand": { + "best": { + "word": "reprimand", + "letters": 37 + }, + "worst": { + "word": "reprimand", + "letters": 60 + }, + "totalWords": { + "5": 2, + "7": 2, + "8": 1, + "10": 1 + }, + "totalLetters": { + "37": 1, + "40": 1, + "41": 1, + "43": 1, + "49": 1, + "60": 1 + }, + "gamesPlayed": 6, + "medianWords": 6, + "medianLetters": 42 + }, + "virtuoso": { + "best": { + "word": "virtuoso", + "letters": 21 + }, + "worst": { + "word": "virtuoso", + "letters": 42 + }, + "totalWords": { + "2": 1, + "4": 2, + "5": 1, + "7": 1, + "9": 1 + }, + "totalLetters": { + "21": 1, + "25": 1, + "27": 1, + "38": 1, + "41": 1, + "42": 1 + }, + "gamesPlayed": 6, + "medianWords": 4.5, + "medianLetters": 32.5 + }, + "bravo": { + "best": { + "word": "bravo", + "letters": 16 + }, + "worst": { + "word": "bravo", + "letters": 41 + }, + "totalWords": { + "2": 2, + "4": 1, + "5": 1, + "7": 1, + "8": 1 + }, + "totalLetters": { + "16": 1, + "18": 1, + "24": 1, + "26": 1, + "31": 1, + "41": 1 + }, + "gamesPlayed": 6, + "medianWords": 4.5, + "medianLetters": 25 + }, + "itinerary": { + "best": { + "word": "itinerary", + "letters": 27 + }, + "worst": { + "word": "itinerary", + "letters": 101 + }, + "totalWords": { + "3": 1, + "5": 2, + "6": 1, + "11": 1, + "13": 1, + "19": 1 + }, + "totalLetters": { + "27": 1, + "36": 1, + "38": 1, + "40": 1, + "52": 1, + "62": 1, + "101": 1 + }, + "gamesPlayed": 7, + "medianWords": 6, + "medianLetters": 40 + }, + "perjury": { + "best": { + "word": "perjury", + "letters": 19 + }, + "worst": { + "word": "perjury", + "letters": 41 + }, + "totalWords": { + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 3 + }, + "totalLetters": { + "19": 1, + "28": 2, + "31": 1, + "36": 1, + "39": 1, + "41": 1 + }, + "gamesPlayed": 7, + "medianWords": 6, + "medianLetters": 31 + }, + "ghetto": { + "best": { + "word": "ghetto", + "letters": 14 + }, + "worst": { + "word": "ghetto", + "letters": 36 + }, + "totalWords": { + "2": 2, + "3": 2, + "4": 1, + "9": 1 + }, + "totalLetters": { + "14": 1, + "19": 3, + "29": 1, + "36": 1 + }, + "gamesPlayed": 6, + "medianWords": 2.5, + "medianLetters": 16.5 + }, + "burial": { + "best": { + "word": "burial", + "letters": 14 + }, + "worst": { + "word": "burial", + "letters": 38 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 1, + "6": 1, + "7": 1 + }, + "totalLetters": { + "14": 1, + "20": 1, + "21": 1, + "23": 1, + "24": 1, + "29": 1, + "38": 1 + }, + "gamesPlayed": 7, + "medianWords": 3, + "medianLetters": 23 + }, + "wall": { + "best": { + "word": "wall", + "letters": 18 + }, + "worst": { + "word": "wall", + "letters": 41 + }, + "totalWords": { + "3": 1, + "5": 1, + "7": 2, + "8": 1, + "9": 1 + }, + "totalLetters": { + "18": 1, + "25": 1, + "29": 1, + "32": 1, + "38": 1, + "41": 1 + }, + "gamesPlayed": 6, + "medianWords": 6, + "medianLetters": 30.5 + }, + "neckline": { + "best": { + "word": "neckline", + "letters": 20 + }, + "worst": { + "word": "neckline", + "letters": 66 + }, + "totalWords": { + "2": 1, + "5": 4, + "10": 1, + "14": 1 + }, + "totalLetters": { + "20": 1, + "33": 1, + "34": 2, + "43": 1, + "53": 1, + "66": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 34 + }, + "immortal": { + "best": { + "word": "immortal", + "letters": 18 + }, + "worst": { + "word": "immortal", + "letters": 55 + }, + "totalWords": { + "3": 1, + "4": 2, + "8": 2 + }, + "totalLetters": { + "18": 1, + "29": 1, + "35": 1, + "49": 1, + "55": 1 + }, + "gamesPlayed": 5, + "medianWords": 4, + "medianLetters": 35 + }, + "harbor": { + "best": { + "word": "harbor", + "letters": 21 + }, + "worst": { + "word": "harbor", + "letters": 38 + }, + "totalWords": { + "3": 2, + "4": 1, + "5": 1, + "6": 2, + "7": 1 + }, + "totalLetters": { + "21": 1, + "24": 1, + "25": 1, + "26": 1, + "33": 1, + "36": 1, + "38": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 26 + }, + "hairdryer": { + "best": { + "word": "hairdryer", + "letters": 29 + }, + "worst": { + "word": "hairdryer", + "letters": 60 + }, + "totalWords": { + "4": 3, + "8": 1, + "10": 1, + "12": 1 + }, + "totalLetters": { + "29": 1, + "30": 1, + "31": 1, + "41": 1, + "51": 1, + "60": 1 + }, + "gamesPlayed": 6, + "medianWords": 6, + "medianLetters": 36 + }, + "rump": { + "best": { + "word": "rump", + "letters": 17 + }, + "worst": { + "word": "rump", + "letters": 30 + }, + "totalWords": { + "3": 2, + "5": 2, + "7": 1 + }, + "totalLetters": { + "17": 1, + "20": 1, + "29": 1, + "30": 2 + }, + "gamesPlayed": 5, + "medianWords": 5, + "medianLetters": 29 + }, + "arabic": { + "best": { + "word": "arabic", + "letters": 19 + }, + "worst": { + "word": "arabic", + "letters": 40 + }, + "totalWords": { + "3": 1, + "4": 3, + "5": 1, + "9": 1 + }, + "totalLetters": { + "19": 1, + "20": 1, + "22": 1, + "25": 1, + "31": 1, + "40": 1 + }, + "gamesPlayed": 6, + "medianWords": 3.5, + "medianLetters": 23.5 + }, + "frankly": { + "best": { + "word": "frankly", + "letters": 20 + }, + "worst": { + "word": "frankly", + "letters": 51 + }, + "totalWords": { + "3": 3, + "5": 2, + "8": 1 + }, + "totalLetters": { + "20": 1, + "21": 1, + "25": 1, + "35": 1, + "36": 1, + "51": 1 + }, + "gamesPlayed": 6, + "medianWords": 4, + "medianLetters": 30 + }, + "swimsuit": { + "best": { + "word": "swimsuit", + "letters": 29 + }, + "worst": { + "word": "swimsuit", + "letters": 41 + }, + "totalWords": { + "4": 2, + "5": 1, + "8": 3 + }, + "totalLetters": { + "29": 1, + "30": 1, + "37": 1, + "39": 1, + "40": 1, + "41": 1 + }, + "gamesPlayed": 6, + "medianWords": 6.5, + "medianLetters": 38 + }, + "review": { + "best": { + "word": "review", + "letters": 24 + }, + "worst": { + "word": "review", + "letters": 43 + }, + "totalWords": { + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 2 + }, + "totalLetters": { + "24": 1, + "28": 1, + "30": 1, + "36": 1, + "38": 1, + "43": 1 + }, + "gamesPlayed": 6, + "medianWords": 5.5, + "medianLetters": 33 + }, + "beach": { + "best": { + "word": "beach", + "letters": 16 + }, + "worst": { + "word": "beach", + "letters": 32 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 4, + "5": 1 + }, + "totalLetters": { + "16": 1, + "19": 1, + "20": 1, + "22": 1, + "26": 1, + "28": 1, + "32": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 22 + }, + "knuckle": { + "best": { + "word": "knuckle", + "letters": 27 + }, + "worst": { + "word": "knuckle", + "letters": 57 + }, + "totalWords": { + "4": 2, + "5": 3, + "6": 1, + "12": 1 + }, + "totalLetters": { + "27": 1, + "28": 1, + "31": 2, + "34": 1, + "42": 1, + "57": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 31 + }, + "packet": { + "best": { + "word": "packet", + "letters": 17 + }, + "worst": { + "word": "packet", + "letters": 37 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 1, + "5": 2, + "6": 1 + }, + "totalLetters": { + "17": 1, + "21": 2, + "23": 1, + "31": 2, + "37": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 23 + }, + "belly": { + "best": { + "word": "belly", + "letters": 21 + }, + "worst": { + "word": "belly", + "letters": 35 + }, + "totalWords": { + "4": 2, + "5": 1, + "6": 2, + "7": 1 + }, + "totalLetters": { + "21": 1, + "28": 2, + "30": 1, + "31": 1, + "35": 1 + }, + "gamesPlayed": 6, + "medianWords": 5.5, + "medianLetters": 29 + }, + "mile": { + "best": { + "word": "mile", + "letters": 18 + }, + "worst": { + "word": "mile", + "letters": 41 + }, + "totalWords": { + "3": 1, + "4": 3, + "5": 1, + "7": 1 + }, + "totalLetters": { + "18": 1, + "20": 1, + "21": 1, + "24": 1, + "25": 1, + "41": 1 + }, + "gamesPlayed": 6, + "medianWords": 3.5, + "medianLetters": 22.5 + }, + "kilogram": { + "best": { + "word": "kilogram", + "letters": 19 + }, + "worst": { + "word": "kilogram", + "letters": 48 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 1, + "7": 2 + }, + "totalLetters": { + "19": 1, + "20": 1, + "26": 2, + "38": 1, + "48": 1 + }, + "gamesPlayed": 6, + "medianWords": 3.5, + "medianLetters": 23 + }, + "anyone": { + "best": { + "word": "anyone", + "letters": 24 + }, + "worst": { + "word": "anyone", + "letters": 45 + }, + "totalWords": { + "3": 1, + "4": 2, + "5": 1, + "7": 1, + "9": 1, + "10": 1 + }, + "totalLetters": { + "24": 1, + "25": 2, + "31": 1, + "41": 1, + "42": 1, + "45": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 31 + }, + "ride": { + "best": { + "word": "ride", + "letters": 16 + }, + "worst": { + "word": "ride", + "letters": 24 + }, + "totalWords": { + "2": 2, + "3": 2, + "4": 1 + }, + "totalLetters": { + "16": 1, + "18": 2, + "19": 1, + "24": 1 + }, + "gamesPlayed": 5, + "medianWords": 3, + "medianLetters": 18 + }, + "canteen": { + "best": { + "word": "canteen", + "letters": 21 + }, + "worst": { + "word": "canteen", + "letters": 39 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 2, + "5": 1, + "6": 1 + }, + "totalLetters": { + "21": 1, + "23": 1, + "24": 1, + "28": 2, + "39": 1 + }, + "gamesPlayed": 6, + "medianWords": 3.5, + "medianLetters": 26 + }, + "statute": { + "best": { + "word": "statute", + "letters": 32 + }, + "worst": { + "word": "statute", + "letters": 65 + }, + "totalWords": { + "4": 1, + "5": 1, + "7": 2, + "10": 1, + "11": 2 + }, + "totalLetters": { + "32": 1, + "35": 1, + "45": 2, + "50": 1, + "52": 1, + "65": 1 + }, + "gamesPlayed": 7, + "medianWords": 7, + "medianLetters": 45 + }, + "cheer": { + "best": { + "word": "cheer", + "letters": 27 + }, + "worst": { + "word": "cheer", + "letters": 44 + }, + "totalWords": { + "5": 2, + "6": 1, + "9": 1, + "10": 1 + }, + "totalLetters": { + "27": 1, + "32": 1, + "35": 1, + "39": 1, + "44": 1 + }, + "gamesPlayed": 5, + "medianWords": 6, + "medianLetters": 35 + }, + "ready": { + "best": { + "word": "ready", + "letters": 14 + }, + "worst": { + "word": "ready", + "letters": 31 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 1, + "6": 1 + }, + "totalLetters": { + "14": 1, + "20": 1, + "22": 1, + "27": 1, + "31": 1 + }, + "gamesPlayed": 5, + "medianWords": 3, + "medianLetters": 22 + }, + "brigadier": { + "best": { + "word": "brigadier", + "letters": 29 + }, + "worst": { + "word": "brigadier", + "letters": 42 + }, + "totalWords": { + "3": 1, + "4": 2, + "5": 1, + "6": 1 + }, + "totalLetters": { + "29": 1, + "30": 1, + "31": 1, + "32": 1, + "42": 1 + }, + "gamesPlayed": 5, + "medianWords": 4, + "medianLetters": 31 + }, + "prince": { + "best": { + "word": "prince", + "letters": 15 + }, + "worst": { + "word": "prince", + "letters": 29 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 4, + "5": 1 + }, + "totalLetters": { + "15": 1, + "22": 1, + "24": 3, + "25": 1, + "27": 1, + "29": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 23 + }, + "except": { + "best": { + "word": "except", + "letters": 17 + }, + "worst": { + "word": "except", + "letters": 32 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 1, + "5": 2, + "7": 1 + }, + "totalLetters": { + "17": 1, + "19": 1, + "23": 1, + "25": 1, + "26": 1, + "30": 1, + "32": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 25 + }, + "encore": { + "best": { + "word": "encore", + "letters": 20 + }, + "worst": { + "word": "encore", + "letters": 34 + }, + "totalWords": { + "3": 1, + "5": 4 + }, + "totalLetters": { + "20": 1, + "27": 1, + "29": 1, + "33": 1, + "34": 1 + }, + "gamesPlayed": 5, + "medianWords": 5, + "medianLetters": 29 + }, + "division": { + "best": { + "word": "division", + "letters": 25 + }, + "worst": { + "word": "division", + "letters": 60 + }, + "totalWords": { + "3": 1, + "4": 2, + "5": 1, + "8": 1, + "13": 1 + }, + "totalLetters": { + "25": 2, + "28": 1, + "29": 1, + "49": 1, + "60": 1 + }, + "gamesPlayed": 6, + "medianWords": 4.5, + "medianLetters": 28.5 + }, + "twenty": { + "best": { + "word": "twenty", + "letters": 15 + }, + "worst": { + "word": "twenty", + "letters": 41 + }, + "totalWords": { + "2": 1, + "3": 3, + "6": 1, + "7": 1, + "8": 1 + }, + "totalLetters": { + "15": 1, + "20": 1, + "21": 1, + "22": 1, + "32": 1, + "39": 1, + "41": 1 + }, + "gamesPlayed": 7, + "medianWords": 3, + "medianLetters": 22 + }, + "what": { + "best": { + "word": "what", + "letters": 12 + }, + "worst": { + "word": "what", + "letters": 41 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 1, + "6": 1, + "7": 1, + "8": 1, + "11": 1 + }, + "totalLetters": { + "12": 1, + "17": 2, + "28": 1, + "34": 1, + "35": 1, + "41": 1 + }, + "gamesPlayed": 7, + "medianWords": 6, + "medianLetters": 28 + }, + "epitaph": { + "best": { + "word": "epitaph", + "letters": 18 + }, + "worst": { + "word": "epitaph", + "letters": 42 + }, + "totalWords": { + "2": 1, + "4": 2, + "5": 1, + "7": 1, + "8": 1 + }, + "totalLetters": { + "18": 1, + "26": 1, + "27": 1, + "28": 1, + "38": 1, + "42": 1 + }, + "gamesPlayed": 6, + "medianWords": 4.5, + "medianLetters": 27.5 + }, + "euphoria": { + "best": { + "word": "euphoria", + "letters": 23 + }, + "worst": { + "word": "euphoria", + "letters": 53 + }, + "totalWords": { + "3": 2, + "4": 3, + "8": 1, + "10": 1 + }, + "totalLetters": { + "23": 1, + "24": 2, + "26": 1, + "33": 1, + "49": 1, + "53": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 26 + }, + "squeak": { + "best": { + "word": "squeak", + "letters": 25 + }, + "worst": { + "word": "squeak", + "letters": 43 + }, + "totalWords": { + "4": 1, + "6": 1, + "7": 2, + "10": 1 + }, + "totalLetters": { + "25": 1, + "37": 2, + "38": 1, + "43": 1 + }, + "gamesPlayed": 5, + "medianWords": 7, + "medianLetters": 37 + }, + "skylight": { + "best": { + "word": "skylight", + "letters": 27 + }, + "worst": { + "word": "skylight", + "letters": 58 + }, + "totalWords": { + "3": 1, + "5": 1, + "6": 3, + "10": 2 + }, + "totalLetters": { + "27": 1, + "30": 1, + "33": 1, + "35": 1, + "36": 1, + "49": 1, + "58": 1 + }, + "gamesPlayed": 7, + "medianWords": 6, + "medianLetters": 35 + }, + "anomaly": { + "best": { + "word": "anomaly", + "letters": 21 + }, + "worst": { + "word": "anomaly", + "letters": 26 + }, + "totalWords": { + "3": 4, + "4": 3 + }, + "totalLetters": { + "21": 1, + "22": 1, + "23": 2, + "25": 2, + "26": 1 + }, + "gamesPlayed": 7, + "medianWords": 3, + "medianLetters": 23 + }, + "magnetic": { + "best": { + "word": "magnetic", + "letters": 16 + }, + "worst": { + "word": "magnetic", + "letters": 34 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 2, + "5": 2 + }, + "totalLetters": { + "16": 1, + "23": 1, + "24": 1, + "27": 1, + "29": 1, + "34": 2 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 27 + }, + "microwave": { + "best": { + "word": "microwave", + "letters": 30 + }, + "worst": { + "word": "microwave", + "letters": 67 + }, + "totalWords": { + "4": 1, + "5": 2, + "8": 1, + "10": 1, + "14": 1 + }, + "totalLetters": { + "30": 1, + "33": 1, + "34": 1, + "39": 1, + "60": 1, + "67": 1 + }, + "gamesPlayed": 6, + "medianWords": 6.5, + "medianLetters": 36.5 + }, + "summon": { + "best": { + "word": "summon", + "letters": 20 + }, + "worst": { + "word": "summon", + "letters": 29 + }, + "totalWords": { + "2": 1, + "4": 2, + "5": 2 + }, + "totalLetters": { + "20": 1, + "22": 1, + "23": 1, + "24": 1, + "29": 1 + }, + "gamesPlayed": 5, + "medianWords": 4, + "medianLetters": 23 + }, + "bodywork": { + "best": { + "word": "bodywork", + "letters": 29 + }, + "worst": { + "word": "bodywork", + "letters": 43 + }, + "totalWords": { + "4": 1, + "5": 1, + "6": 1, + "7": 2, + "8": 1 + }, + "totalLetters": { + "29": 2, + "30": 1, + "37": 1, + "42": 1, + "43": 1 + }, + "gamesPlayed": 6, + "medianWords": 6.5, + "medianLetters": 33.5 + }, + "psalm": { + "best": { + "word": "psalm", + "letters": 15 + }, + "worst": { + "word": "psalm", + "letters": 31 + }, + "totalWords": { + "3": 4, + "4": 2, + "5": 1 + }, + "totalLetters": { + "15": 1, + "17": 1, + "18": 2, + "20": 1, + "25": 1, + "31": 1 + }, + "gamesPlayed": 7, + "medianWords": 3, + "medianLetters": 18 + }, + "shack": { + "best": { + "word": "shack", + "letters": 18 + }, + "worst": { + "word": "shack", + "letters": 40 + }, + "totalWords": { + "4": 1, + "5": 1, + "6": 1, + "7": 1, + "8": 1 + }, + "totalLetters": { + "18": 1, + "26": 1, + "34": 1, + "37": 1, + "40": 1 + }, + "gamesPlayed": 5, + "medianWords": 6, + "medianLetters": 34 + }, + "piracy": { + "best": { + "word": "piracy", + "letters": 18 + }, + "worst": { + "word": "piracy", + "letters": 38 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 3, + "8": 1 + }, + "totalLetters": { + "18": 1, + "22": 1, + "23": 1, + "25": 1, + "26": 1, + "38": 1 + }, + "gamesPlayed": 6, + "medianWords": 3.5, + "medianLetters": 24 + }, + "tape": { + "best": { + "word": "tape", + "letters": 13 + }, + "worst": { + "word": "tape", + "letters": 25 + }, + "totalWords": { + "2": 2, + "3": 3, + "4": 1, + "5": 1 + }, + "totalLetters": { + "13": 1, + "14": 1, + "15": 1, + "17": 1, + "20": 1, + "22": 1, + "25": 1 + }, + "gamesPlayed": 7, + "medianWords": 3, + "medianLetters": 17 + }, + "cocktail": { + "best": { + "word": "cocktail", + "letters": 21 + }, + "worst": { + "word": "cocktail", + "letters": 32 + }, + "totalWords": { + "3": 1, + "4": 1, + "6": 1 + }, + "totalLetters": { + "21": 1, + "22": 1, + "32": 1 + }, + "gamesPlayed": 3, + "medianWords": 4, + "medianLetters": 22 + }, + "typhus": { + "best": { + "word": "typhus", + "letters": 21 + }, + "worst": { + "word": "typhus", + "letters": 27 + }, + "totalWords": { + "3": 3, + "4": 2, + "5": 2 + }, + "totalLetters": { + "21": 2, + "23": 1, + "24": 2, + "25": 1, + "27": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 24 + }, + "manager": { + "best": { + "word": "manager", + "letters": 24 + }, + "worst": { + "word": "manager", + "letters": 33 + }, + "totalWords": { + "3": 1, + "4": 3, + "5": 2 + }, + "totalLetters": { + "24": 1, + "26": 1, + "27": 1, + "30": 1, + "33": 2 + }, + "gamesPlayed": 6, + "medianWords": 3.5, + "medianLetters": 28.5 + }, + "variant": { + "best": { + "word": "variant", + "letters": 20 + }, + "worst": { + "word": "variant", + "letters": 35 + }, + "totalWords": { + "3": 4, + "7": 1 + }, + "totalLetters": { + "20": 1, + "22": 1, + "24": 1, + "27": 1, + "35": 1 + }, + "gamesPlayed": 5, + "medianWords": 3, + "medianLetters": 24 + }, + "comic": { + "best": { + "word": "comic", + "letters": 18 + }, + "worst": { + "word": "comic", + "letters": 30 + }, + "totalWords": { + "3": 1, + "4": 3, + "5": 1 + }, + "totalLetters": { + "18": 1, + "20": 1, + "22": 1, + "23": 1, + "30": 1 + }, + "gamesPlayed": 5, + "medianWords": 4, + "medianLetters": 22 + }, + "chiefly": { + "best": { + "word": "chiefly", + "letters": 22 + }, + "worst": { + "word": "chiefly", + "letters": 45 + }, + "totalWords": { + "3": 1, + "4": 1, + "5": 1, + "6": 2, + "7": 1, + "8": 1 + }, + "totalLetters": { + "22": 1, + "25": 1, + "34": 1, + "35": 1, + "41": 1, + "42": 1, + "45": 1 + }, + "gamesPlayed": 7, + "medianWords": 6, + "medianLetters": 35 + }, + "blameless": { + "best": { + "word": "blameless", + "letters": 21 + }, + "worst": { + "word": "blameless", + "letters": 56 + }, + "totalWords": { + "3": 1, + "4": 2, + "5": 1, + "6": 1, + "10": 1 + }, + "totalLetters": { + "21": 1, + "27": 1, + "31": 1, + "33": 1, + "43": 1, + "56": 1 + }, + "gamesPlayed": 6, + "medianWords": 4.5, + "medianLetters": 32 + }, + "willow": { + "best": { + "word": "willow", + "letters": 24 + }, + "worst": { + "word": "willow", + "letters": 42 + }, + "totalWords": { + "4": 1, + "5": 1, + "6": 2, + "7": 2, + "8": 1 + }, + "totalLetters": { + "24": 1, + "28": 1, + "31": 1, + "38": 3, + "42": 1 + }, + "gamesPlayed": 7, + "medianWords": 6, + "medianLetters": 38 + }, + "probation": { + "best": { + "word": "probation", + "letters": 20 + }, + "worst": { + "word": "probation", + "letters": 41 + }, + "totalWords": { + "2": 1, + "4": 2, + "5": 1, + "6": 1 + }, + "totalLetters": { + "20": 1, + "27": 1, + "35": 2, + "41": 1 + }, + "gamesPlayed": 5, + "medianWords": 4, + "medianLetters": 35 + }, + "claw": { + "best": { + "word": "claw", + "letters": 20 + }, + "worst": { + "word": "claw", + "letters": 41 + }, + "totalWords": { + "3": 1, + "4": 2, + "5": 1, + "6": 1, + "9": 1 + }, + "totalLetters": { + "20": 1, + "22": 1, + "24": 1, + "25": 1, + "26": 1, + "41": 1 + }, + "gamesPlayed": 6, + "medianWords": 4.5, + "medianLetters": 24.5 + }, + "wait": { + "best": { + "word": "wait", + "letters": 15 + }, + "worst": { + "word": "wait", + "letters": 36 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "8": 1 + }, + "totalLetters": { + "15": 1, + "20": 1, + "26": 2, + "27": 1, + "36": 1 + }, + "gamesPlayed": 6, + "medianWords": 4.5, + "medianLetters": 23 + }, + "hindsight": { + "best": { + "word": "hindsight", + "letters": 32 + }, + "worst": { + "word": "hindsight", + "letters": 55 + }, + "totalWords": { + "5": 3, + "7": 1, + "9": 2 + }, + "totalLetters": { + "32": 1, + "33": 1, + "41": 1, + "43": 1, + "54": 1, + "55": 1 + }, + "gamesPlayed": 6, + "medianWords": 6, + "medianLetters": 42 + }, + "cave": { + "best": { + "word": "cave", + "letters": 21 + }, + "worst": { + "word": "cave", + "letters": 37 + }, + "totalWords": { + "4": 1, + "5": 1, + "7": 2, + "8": 1 + }, + "totalLetters": { + "21": 1, + "22": 1, + "33": 1, + "36": 1, + "37": 1 + }, + "gamesPlayed": 5, + "medianWords": 7, + "medianLetters": 33 + }, + "someday": { + "best": { + "word": "someday", + "letters": 24 + }, + "worst": { + "word": "someday", + "letters": 50 + }, + "totalWords": { + "4": 2, + "5": 1, + "6": 1, + "8": 1 + }, + "totalLetters": { + "24": 1, + "28": 1, + "29": 1, + "33": 1, + "50": 1 + }, + "gamesPlayed": 5, + "medianWords": 5, + "medianLetters": 29 + }, + "pulp": { + "best": { + "word": "pulp", + "letters": 25 + }, + "worst": { + "word": "pulp", + "letters": 34 + }, + "totalWords": { + "5": 1, + "7": 4 + }, + "totalLetters": { + "25": 1, + "31": 1, + "32": 2, + "34": 1 + }, + "gamesPlayed": 5, + "medianWords": 7, + "medianLetters": 32 + }, + "vision": { + "best": { + "word": "vision", + "letters": 21 + }, + "worst": { + "word": "vision", + "letters": 45 + }, + "totalWords": { + "2": 1, + "3": 2, + "6": 2, + "7": 1, + "9": 1 + }, + "totalLetters": { + "21": 2, + "22": 1, + "30": 1, + "40": 1, + "42": 1, + "45": 1 + }, + "gamesPlayed": 7, + "medianWords": 6, + "medianLetters": 30 + }, + "unless": { + "best": { + "word": "unless", + "letters": 19 + }, + "worst": { + "word": "unless", + "letters": 38 + }, + "totalWords": { + "3": 2, + "4": 1, + "5": 1, + "6": 1 + }, + "totalLetters": { + "19": 1, + "20": 1, + "28": 1, + "30": 1, + "38": 1 + }, + "gamesPlayed": 5, + "medianWords": 4, + "medianLetters": 28 + }, + "energy": { + "best": { + "word": "energy", + "letters": 18 + }, + "worst": { + "word": "energy", + "letters": 29 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 3 + }, + "totalLetters": { + "18": 2, + "20": 1, + "21": 1, + "25": 1, + "26": 1, + "29": 1 + }, + "gamesPlayed": 7, + "medianWords": 3, + "medianLetters": 21 + }, + "retaliate": { + "best": { + "word": "retaliate", + "letters": 23 + }, + "worst": { + "word": "retaliate", + "letters": 61 + }, + "totalWords": { + "3": 2, + "4": 1, + "5": 1, + "6": 1, + "9": 1 + }, + "totalLetters": { + "23": 1, + "28": 1, + "29": 1, + "30": 1, + "47": 1, + "61": 1 + }, + "gamesPlayed": 6, + "medianWords": 4.5, + "medianLetters": 29.5 + }, + "argentine": { + "best": { + "word": "argentine", + "letters": 25 + }, + "worst": { + "word": "argentine", + "letters": 48 + }, + "totalWords": { + "3": 1, + "4": 1, + "5": 1, + "6": 2 + }, + "totalLetters": { + "25": 1, + "30": 1, + "37": 1, + "39": 1, + "48": 1 + }, + "gamesPlayed": 5, + "medianWords": 5, + "medianLetters": 37 + }, + "feminism": { + "best": { + "word": "feminism", + "letters": 31 + }, + "worst": { + "word": "feminism", + "letters": 71 + }, + "totalWords": { + "5": 1, + "6": 1, + "9": 1, + "10": 1, + "15": 1 + }, + "totalLetters": { + "31": 1, + "35": 1, + "45": 1, + "60": 1, + "71": 1 + }, + "gamesPlayed": 5, + "medianWords": 9, + "medianLetters": 45 + }, + "autonomy": { + "best": { + "word": "autonomy", + "letters": 24 + }, + "worst": { + "word": "autonomy", + "letters": 47 + }, + "totalWords": { + "3": 1, + "4": 2, + "7": 1, + "9": 1 + }, + "totalLetters": { + "24": 1, + "29": 2, + "45": 1, + "47": 1 + }, + "gamesPlayed": 5, + "medianWords": 4, + "medianLetters": 29 + }, + "resolve": { + "best": { + "word": "resolve", + "letters": 24 + }, + "worst": { + "word": "resolve", + "letters": 34 + }, + "totalWords": { + "3": 1, + "4": 4, + "5": 1 + }, + "totalLetters": { + "24": 1, + "27": 1, + "28": 1, + "29": 1, + "31": 1, + "34": 1 + }, + "gamesPlayed": 6, + "medianWords": 3.5, + "medianLetters": 28.5 + }, + "kentucky": { + "best": { + "word": "kentucky", + "letters": 28 + }, + "worst": { + "word": "kentucky", + "letters": 47 + }, + "totalWords": { + "3": 1, + "5": 1, + "6": 2, + "8": 1 + }, + "totalLetters": { + "28": 1, + "30": 1, + "32": 1, + "34": 1, + "47": 1 + }, + "gamesPlayed": 5, + "medianWords": 6, + "medianLetters": 32 + }, + "imitation": { + "best": { + "word": "imitation", + "letters": 27 + }, + "worst": { + "word": "imitation", + "letters": 64 + }, + "totalWords": { + "4": 3, + "5": 1, + "7": 1, + "8": 1, + "9": 1 + }, + "totalLetters": { + "27": 1, + "31": 1, + "37": 1, + "40": 2, + "51": 1, + "64": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 40 + }, + "freezing": { + "best": { + "word": "freezing", + "letters": 28 + }, + "worst": { + "word": "freezing", + "letters": 51 + }, + "totalWords": { + "4": 3, + "5": 3, + "6": 1, + "7": 1 + }, + "totalLetters": { + "28": 1, + "32": 1, + "34": 1, + "35": 2, + "37": 1, + "42": 1, + "51": 1 + }, + "gamesPlayed": 8, + "medianWords": 4.5, + "medianLetters": 34.5 + }, + "seminar": { + "best": { + "word": "seminar", + "letters": 18 + }, + "worst": { + "word": "seminar", + "letters": 35 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 1, + "5": 1, + "7": 1 + }, + "totalLetters": { + "18": 1, + "22": 1, + "26": 2, + "27": 1, + "35": 1 + }, + "gamesPlayed": 6, + "medianWords": 3.5, + "medianLetters": 24 + }, + "pottery": { + "best": { + "word": "pottery", + "letters": 24 + }, + "worst": { + "word": "pottery", + "letters": 36 + }, + "totalWords": { + "3": 3, + "4": 4, + "6": 1 + }, + "totalLetters": { + "24": 1, + "26": 2, + "27": 2, + "29": 1, + "30": 1, + "36": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 26.5 + }, + "balloon": { + "best": { + "word": "balloon", + "letters": 18 + }, + "worst": { + "word": "balloon", + "letters": 46 + }, + "totalWords": { + "2": 2, + "3": 1, + "5": 1, + "6": 1, + "7": 1, + "9": 1 + }, + "totalLetters": { + "18": 1, + "20": 1, + "21": 1, + "32": 2, + "40": 1, + "46": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 32 + }, + "pakistan": { + "best": { + "word": "pakistan", + "letters": 24 + }, + "worst": { + "word": "pakistan", + "letters": 50 + }, + "totalWords": { + "3": 2, + "4": 2, + "5": 1, + "7": 1, + "9": 1 + }, + "totalLetters": { + "24": 1, + "25": 1, + "29": 1, + "30": 1, + "33": 1, + "46": 1, + "50": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 30 + }, + "define": { + "best": { + "word": "define", + "letters": 20 + }, + "worst": { + "word": "define", + "letters": 37 + }, + "totalWords": { + "3": 2, + "4": 2, + "6": 4 + }, + "totalLetters": { + "20": 1, + "22": 1, + "26": 1, + "30": 1, + "31": 1, + "32": 1, + "34": 1, + "37": 1 + }, + "gamesPlayed": 8, + "medianWords": 5, + "medianLetters": 30.5 + }, + "long": { + "best": { + "word": "long", + "letters": 16 + }, + "worst": { + "word": "long", + "letters": 33 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 3, + "5": 3, + "8": 1 + }, + "totalLetters": { + "16": 1, + "22": 2, + "24": 2, + "25": 1, + "26": 2, + "33": 1 + }, + "gamesPlayed": 9, + "medianWords": 4, + "medianLetters": 24 + }, + "stool": { + "best": { + "word": "stool", + "letters": 17 + }, + "worst": { + "word": "stool", + "letters": 27 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 2, + "5": 2 + }, + "totalLetters": { + "17": 1, + "19": 3, + "21": 1, + "22": 2, + "26": 1, + "27": 1 + }, + "gamesPlayed": 9, + "medianWords": 3, + "medianLetters": 21 + }, + "hence": { + "best": { + "word": "hence", + "letters": 13 + }, + "worst": { + "word": "hence", + "letters": 63 + }, + "totalWords": { + "2": 2, + "3": 1, + "5": 1, + "8": 1, + "14": 1 + }, + "totalLetters": { + "13": 1, + "18": 1, + "20": 1, + "28": 1, + "35": 1, + "63": 1 + }, + "gamesPlayed": 6, + "medianWords": 4, + "medianLetters": 24 + }, + "thursday": { + "best": { + "word": "thursday", + "letters": 21 + }, + "worst": { + "word": "thursday", + "letters": 56 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 2, + "5": 1, + "7": 1, + "11": 1 + }, + "totalLetters": { + "21": 1, + "22": 1, + "23": 1, + "30": 2, + "39": 1, + "56": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 30 + }, + "sanity": { + "best": { + "word": "sanity", + "letters": 15 + }, + "worst": { + "word": "sanity", + "letters": 28 + }, + "totalWords": { + "2": 1, + "3": 5, + "5": 2 + }, + "totalLetters": { + "15": 1, + "21": 2, + "22": 2, + "24": 1, + "26": 1, + "28": 1 + }, + "gamesPlayed": 8, + "medianWords": 2.5, + "medianLetters": 21.5 + }, + "louse": { + "best": { + "word": "louse", + "letters": 17 + }, + "worst": { + "word": "louse", + "letters": 40 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "7": 1, + "8": 1 + }, + "totalLetters": { + "17": 1, + "22": 1, + "23": 1, + "25": 1, + "36": 1, + "40": 1 + }, + "gamesPlayed": 6, + "medianWords": 4.5, + "medianLetters": 24 + }, + "lifeboat": { + "best": { + "word": "lifeboat", + "letters": 17 + }, + "worst": { + "word": "lifeboat", + "letters": 56 + }, + "totalWords": { + "2": 2, + "4": 2, + "5": 1, + "6": 1, + "10": 1, + "13": 1 + }, + "totalLetters": { + "17": 1, + "21": 1, + "26": 1, + "29": 1, + "30": 1, + "41": 1, + "52": 1, + "56": 1 + }, + "gamesPlayed": 8, + "medianWords": 4.5, + "medianLetters": 29.5 + }, + "subscribe": { + "best": { + "word": "subscribe", + "letters": 23 + }, + "worst": { + "word": "subscribe", + "letters": 70 + }, + "totalWords": { + "3": 2, + "4": 1, + "6": 1, + "7": 2, + "11": 1 + }, + "totalLetters": { + "23": 1, + "27": 2, + "33": 1, + "50": 2, + "70": 1 + }, + "gamesPlayed": 7, + "medianWords": 6, + "medianLetters": 33 + }, + "sporadic": { + "best": { + "word": "sporadic", + "letters": 22 + }, + "worst": { + "word": "sporadic", + "letters": 34 + }, + "totalWords": { + "3": 3, + "4": 4, + "6": 1 + }, + "totalLetters": { + "22": 2, + "25": 1, + "27": 1, + "29": 1, + "30": 1, + "32": 1, + "34": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 28 + }, + "frugal": { + "best": { + "word": "frugal", + "letters": 15 + }, + "worst": { + "word": "frugal", + "letters": 45 + }, + "totalWords": { + "2": 2, + "3": 1, + "5": 3, + "6": 1, + "7": 1 + }, + "totalLetters": { + "15": 1, + "19": 1, + "20": 1, + "26": 1, + "27": 1, + "28": 1, + "33": 1, + "45": 1 + }, + "gamesPlayed": 8, + "medianWords": 4, + "medianLetters": 26.5 + }, + "hilarious": { + "best": { + "word": "hilarious", + "letters": 20 + }, + "worst": { + "word": "hilarious", + "letters": 84 + }, + "totalWords": { + "2": 2, + "3": 2, + "4": 1, + "5": 1, + "6": 1, + "8": 1, + "16": 1 + }, + "totalLetters": { + "20": 1, + "21": 1, + "22": 1, + "28": 1, + "29": 1, + "34": 1, + "42": 1, + "43": 1, + "84": 1 + }, + "gamesPlayed": 9, + "medianWords": 4, + "medianLetters": 29 + }, + "trace": { + "best": { + "word": "trace", + "letters": 18 + }, + "worst": { + "word": "trace", + "letters": 29 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 3, + "5": 2 + }, + "totalLetters": { + "18": 1, + "21": 2, + "22": 1, + "23": 2, + "27": 1, + "29": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 22.5 + }, + "remainder": { + "best": { + "word": "remainder", + "letters": 26 + }, + "worst": { + "word": "remainder", + "letters": 45 + }, + "totalWords": { + "3": 2, + "4": 3, + "5": 1, + "6": 1, + "7": 1 + }, + "totalLetters": { + "26": 1, + "28": 1, + "29": 1, + "35": 1, + "37": 1, + "40": 2, + "45": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 36 + }, + "physics": { + "best": { + "word": "physics", + "letters": 20 + }, + "worst": { + "word": "physics", + "letters": 35 + }, + "totalWords": { + "3": 5, + "4": 1, + "5": 2 + }, + "totalLetters": { + "20": 1, + "21": 1, + "22": 1, + "23": 1, + "27": 2, + "29": 1, + "35": 1 + }, + "gamesPlayed": 8, + "medianWords": 3, + "medianLetters": 25 + }, + "devil": { + "best": { + "word": "devil", + "letters": 20 + }, + "worst": { + "word": "devil", + "letters": 28 + }, + "totalWords": { + "3": 2, + "4": 2, + "5": 3 + }, + "totalLetters": { + "20": 1, + "21": 1, + "24": 1, + "25": 1, + "27": 2, + "28": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 25 + }, + "anchor": { + "best": { + "word": "anchor", + "letters": 17 + }, + "worst": { + "word": "anchor", + "letters": 41 + }, + "totalWords": { + "2": 2, + "3": 3, + "4": 2, + "6": 1, + "8": 1 + }, + "totalLetters": { + "17": 1, + "18": 1, + "19": 2, + "23": 1, + "26": 2, + "38": 1, + "41": 1 + }, + "gamesPlayed": 9, + "medianWords": 3, + "medianLetters": 23 + }, + "left": { + "best": { + "word": "left", + "letters": 13 + }, + "worst": { + "word": "left", + "letters": 30 + }, + "totalWords": { + "2": 2, + "3": 1, + "4": 2, + "6": 1, + "7": 1 + }, + "totalLetters": { + "13": 1, + "17": 1, + "19": 1, + "22": 1, + "27": 1, + "30": 2 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 22 + }, + "orange": { + "best": { + "word": "orange", + "letters": 19 + }, + "worst": { + "word": "orange", + "letters": 34 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 2, + "5": 2, + "6": 1 + }, + "totalLetters": { + "19": 2, + "21": 1, + "26": 1, + "29": 1, + "30": 1, + "33": 1, + "34": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 27.5 + }, + "dawn": { + "best": { + "word": "dawn", + "letters": 21 + }, + "worst": { + "word": "dawn", + "letters": 31 + }, + "totalWords": { + "4": 1, + "5": 5, + "6": 2 + }, + "totalLetters": { + "21": 1, + "23": 1, + "24": 1, + "27": 3, + "29": 1, + "31": 1 + }, + "gamesPlayed": 8, + "medianWords": 4.5, + "medianLetters": 25.5 + }, + "purist": { + "best": { + "word": "purist", + "letters": 20 + }, + "worst": { + "word": "purist", + "letters": 41 + }, + "totalWords": { + "3": 3, + "4": 2, + "7": 1 + }, + "totalLetters": { + "20": 1, + "24": 1, + "25": 2, + "26": 1, + "41": 1 + }, + "gamesPlayed": 6, + "medianWords": 3.5, + "medianLetters": 24.5 + }, + "truth": { + "best": { + "word": "truth", + "letters": 18 + }, + "worst": { + "word": "truth", + "letters": 30 + }, + "totalWords": { + "2": 1, + "4": 3, + "5": 3 + }, + "totalLetters": { + "18": 2, + "22": 1, + "26": 2, + "27": 1, + "30": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 26 + }, + "honor": { + "best": { + "word": "honor", + "letters": 20 + }, + "worst": { + "word": "honor", + "letters": 29 + }, + "totalWords": { + "3": 3, + "4": 4, + "6": 1 + }, + "totalLetters": { + "20": 2, + "21": 1, + "22": 2, + "23": 1, + "25": 1, + "29": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 21.5 + }, + "excise": { + "best": { + "word": "excise", + "letters": 21 + }, + "worst": { + "word": "excise", + "letters": 42 + }, + "totalWords": { + "3": 3, + "4": 2, + "8": 1, + "9": 1 + }, + "totalLetters": { + "21": 1, + "24": 1, + "26": 1, + "27": 1, + "33": 1, + "37": 1, + "42": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 27 + }, + "comply": { + "best": { + "word": "comply", + "letters": 12 + }, + "worst": { + "word": "comply", + "letters": 29 + }, + "totalWords": { + "2": 2, + "3": 2, + "4": 3, + "5": 1 + }, + "totalLetters": { + "12": 1, + "19": 1, + "20": 1, + "22": 1, + "23": 1, + "26": 1, + "28": 1, + "29": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 22.5 + }, + "feint": { + "best": { + "word": "feint", + "letters": 19 + }, + "worst": { + "word": "feint", + "letters": 30 + }, + "totalWords": { + "3": 3, + "4": 3, + "5": 1 + }, + "totalLetters": { + "19": 1, + "20": 1, + "22": 1, + "23": 1, + "29": 2, + "30": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 23 + }, + "useless": { + "best": { + "word": "useless", + "letters": 22 + }, + "worst": { + "word": "useless", + "letters": 70 + }, + "totalWords": { + "3": 1, + "4": 2, + "6": 1, + "8": 2, + "9": 1, + "14": 1 + }, + "totalLetters": { + "22": 1, + "23": 1, + "28": 1, + "32": 1, + "41": 1, + "43": 2, + "70": 1 + }, + "gamesPlayed": 8, + "medianWords": 7, + "medianLetters": 36.5 + }, + "audience": { + "best": { + "word": "audience", + "letters": 20 + }, + "worst": { + "word": "audience", + "letters": 117 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "8": 1, + "9": 1, + "20": 1 + }, + "totalLetters": { + "20": 1, + "24": 1, + "25": 1, + "34": 1, + "45": 1, + "51": 1, + "117": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 34 + }, + "playing": { + "best": { + "word": "playing", + "letters": 20 + }, + "worst": { + "word": "playing", + "letters": 54 + }, + "totalWords": { + "3": 2, + "4": 1, + "5": 1, + "6": 1, + "8": 2 + }, + "totalLetters": { + "20": 1, + "25": 1, + "27": 1, + "35": 1, + "37": 1, + "45": 1, + "54": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 35 + }, + "dislike": { + "best": { + "word": "dislike", + "letters": 20 + }, + "worst": { + "word": "dislike", + "letters": 55 + }, + "totalWords": { + "3": 1, + "4": 3, + "9": 2, + "11": 1 + }, + "totalLetters": { + "20": 1, + "24": 2, + "32": 1, + "51": 1, + "54": 1, + "55": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 32 + }, + "appeal": { + "best": { + "word": "appeal", + "letters": 26 + }, + "worst": { + "word": "appeal", + "letters": 34 + }, + "totalWords": { + "5": 4, + "6": 4 + }, + "totalLetters": { + "26": 1, + "27": 1, + "30": 1, + "32": 2, + "33": 1, + "34": 2 + }, + "gamesPlayed": 8, + "medianWords": 5.5, + "medianLetters": 31 + }, + "chart": { + "best": { + "word": "chart", + "letters": 14 + }, + "worst": { + "word": "chart", + "letters": 27 + }, + "totalWords": { + "2": 2, + "3": 5, + "5": 1 + }, + "totalLetters": { + "14": 1, + "15": 2, + "18": 2, + "20": 1, + "21": 1, + "27": 1 + }, + "gamesPlayed": 8, + "medianWords": 2.5, + "medianLetters": 16.5 + }, + "soft": { + "best": { + "word": "soft", + "letters": 13 + }, + "worst": { + "word": "soft", + "letters": 25 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 4 + }, + "totalLetters": { + "13": 1, + "17": 1, + "20": 1, + "21": 2, + "24": 1, + "25": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 21 + }, + "caution": { + "best": { + "word": "caution", + "letters": 16 + }, + "worst": { + "word": "caution", + "letters": 38 + }, + "totalWords": { + "2": 2, + "3": 2, + "4": 1, + "5": 2 + }, + "totalLetters": { + "16": 1, + "20": 2, + "23": 1, + "27": 1, + "30": 1, + "38": 1 + }, + "gamesPlayed": 7, + "medianWords": 3, + "medianLetters": 23 + }, + "weapon": { + "best": { + "word": "weapon", + "letters": 14 + }, + "worst": { + "word": "weapon", + "letters": 36 + }, + "totalWords": { + "2": 2, + "3": 1, + "5": 2, + "6": 2, + "7": 1 + }, + "totalLetters": { + "14": 1, + "19": 1, + "23": 1, + "25": 1, + "31": 1, + "32": 1, + "33": 1, + "36": 1 + }, + "gamesPlayed": 8, + "medianWords": 4, + "medianLetters": 28 + }, + "pink": { + "best": { + "word": "pink", + "letters": 15 + }, + "worst": { + "word": "pink", + "letters": 29 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 3, + "6": 1 + }, + "totalLetters": { + "15": 1, + "18": 1, + "19": 1, + "21": 1, + "22": 1, + "24": 1, + "29": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 21 + }, + "statesman": { + "best": { + "word": "statesman", + "letters": 26 + }, + "worst": { + "word": "statesman", + "letters": 48 + }, + "totalWords": { + "4": 2, + "5": 1, + "6": 2, + "7": 2, + "8": 1 + }, + "totalLetters": { + "26": 1, + "33": 1, + "34": 1, + "37": 1, + "39": 1, + "45": 1, + "47": 1, + "48": 1 + }, + "gamesPlayed": 8, + "medianWords": 5.5, + "medianLetters": 38 + }, + "near": { + "best": { + "word": "near", + "letters": 17 + }, + "worst": { + "word": "near", + "letters": 34 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 2, + "7": 1 + }, + "totalLetters": { + "17": 2, + "18": 1, + "24": 1, + "26": 1, + "34": 1 + }, + "gamesPlayed": 6, + "medianWords": 3.5, + "medianLetters": 21 + }, + "full": { + "best": { + "word": "full", + "letters": 21 + }, + "worst": { + "word": "full", + "letters": 32 + }, + "totalWords": { + "3": 1, + "4": 1, + "5": 3, + "6": 2 + }, + "totalLetters": { + "21": 1, + "22": 1, + "23": 1, + "25": 2, + "28": 1, + "32": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 25 + }, + "sludge": { + "best": { + "word": "sludge", + "letters": 15 + }, + "worst": { + "word": "sludge", + "letters": 26 + }, + "totalWords": { + "2": 2, + "3": 2, + "4": 3 + }, + "totalLetters": { + "15": 1, + "19": 1, + "20": 1, + "23": 2, + "24": 1, + "26": 1 + }, + "gamesPlayed": 7, + "medianWords": 3, + "medianLetters": 23 + }, + "drop": { + "best": { + "word": "drop", + "letters": 14 + }, + "worst": { + "word": "drop", + "letters": 23 + }, + "totalWords": { + "2": 2, + "3": 4, + "4": 2 + }, + "totalLetters": { + "14": 1, + "15": 1, + "17": 3, + "21": 1, + "22": 1, + "23": 1 + }, + "gamesPlayed": 8, + "medianWords": 2.5, + "medianLetters": 16 + }, + "lime": { + "best": { + "word": "lime", + "letters": 17 + }, + "worst": { + "word": "lime", + "letters": 28 + }, + "totalWords": { + "3": 3, + "4": 1, + "5": 3 + }, + "totalLetters": { + "17": 1, + "19": 1, + "21": 1, + "22": 2, + "26": 1, + "28": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 22 + }, + "domicile": { + "best": { + "word": "domicile", + "letters": 21 + }, + "worst": { + "word": "domicile", + "letters": 59 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 3, + "5": 1, + "13": 1 + }, + "totalLetters": { + "21": 1, + "22": 1, + "26": 1, + "27": 1, + "31": 1, + "34": 1, + "59": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 27 + }, + "certainly": { + "best": { + "word": "certainly", + "letters": 18 + }, + "worst": { + "word": "certainly", + "letters": 57 + }, + "totalWords": { + "2": 2, + "3": 1, + "4": 3, + "6": 1, + "7": 1 + }, + "totalLetters": { + "18": 1, + "22": 1, + "26": 1, + "27": 1, + "30": 1, + "34": 1, + "52": 1, + "57": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 28.5 + }, + "operate": { + "best": { + "word": "operate", + "letters": 20 + }, + "worst": { + "word": "operate", + "letters": 40 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 4, + "6": 3 + }, + "totalLetters": { + "20": 1, + "21": 1, + "26": 1, + "28": 1, + "30": 1, + "33": 1, + "35": 1, + "39": 1, + "40": 1 + }, + "gamesPlayed": 9, + "medianWords": 4, + "medianLetters": 30 + }, + "much": { + "best": { + "word": "much", + "letters": 10 + }, + "worst": { + "word": "much", + "letters": 26 + }, + "totalWords": { + "2": 3, + "3": 3, + "4": 2 + }, + "totalLetters": { + "10": 1, + "14": 1, + "16": 1, + "18": 3, + "22": 1, + "26": 1 + }, + "gamesPlayed": 8, + "medianWords": 2.5, + "medianLetters": 17 + }, + "serene": { + "best": { + "word": "serene", + "letters": 24 + }, + "worst": { + "word": "serene", + "letters": 49 + }, + "totalWords": { + "4": 4, + "5": 1, + "10": 1, + "11": 1 + }, + "totalLetters": { + "24": 1, + "25": 1, + "26": 1, + "27": 1, + "32": 1, + "47": 1, + "49": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 27 + }, + "deem": { + "best": { + "word": "deem", + "letters": 25 + }, + "worst": { + "word": "deem", + "letters": 34 + }, + "totalWords": { + "4": 1, + "5": 2, + "6": 1, + "7": 1 + }, + "totalLetters": { + "25": 1, + "26": 2, + "30": 1, + "34": 1 + }, + "gamesPlayed": 5, + "medianWords": 5, + "medianLetters": 26 + }, + "beer": { + "best": { + "word": "beer", + "letters": 17 + }, + "worst": { + "word": "beer", + "letters": 42 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 2, + "5": 3, + "8": 2 + }, + "totalLetters": { + "17": 1, + "18": 1, + "22": 1, + "23": 1, + "25": 1, + "28": 2, + "35": 1, + "42": 1 + }, + "gamesPlayed": 9, + "medianWords": 5, + "medianLetters": 25 + }, + "parisian": { + "best": { + "word": "parisian", + "letters": 25 + }, + "worst": { + "word": "parisian", + "letters": 54 + }, + "totalWords": { + "3": 2, + "4": 3, + "5": 1, + "10": 1 + }, + "totalLetters": { + "25": 1, + "26": 1, + "27": 1, + "28": 1, + "30": 1, + "32": 1, + "54": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 28 + }, + "struggle": { + "best": { + "word": "struggle", + "letters": 21 + }, + "worst": { + "word": "struggle", + "letters": 37 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 2, + "7": 1 + }, + "totalLetters": { + "21": 1, + "22": 1, + "27": 1, + "28": 1, + "31": 1, + "37": 1 + }, + "gamesPlayed": 6, + "medianWords": 3.5, + "medianLetters": 27.5 + }, + "gambler": { + "best": { + "word": "gambler", + "letters": 18 + }, + "worst": { + "word": "gambler", + "letters": 37 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 2, + "5": 1, + "6": 1 + }, + "totalLetters": { + "18": 1, + "20": 1, + "23": 1, + "24": 1, + "27": 1, + "32": 1, + "34": 1, + "37": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 25.5 + }, + "pointer": { + "best": { + "word": "pointer", + "letters": 16 + }, + "worst": { + "word": "pointer", + "letters": 35 + }, + "totalWords": { + "2": 3, + "3": 2, + "5": 3 + }, + "totalLetters": { + "16": 1, + "18": 1, + "20": 1, + "24": 2, + "31": 2, + "35": 1 + }, + "gamesPlayed": 8, + "medianWords": 2.5, + "medianLetters": 22 + }, + "captive": { + "best": { + "word": "captive", + "letters": 28 + }, + "worst": { + "word": "captive", + "letters": 40 + }, + "totalWords": { + "4": 2, + "5": 1, + "6": 2, + "8": 1 + }, + "totalLetters": { + "28": 1, + "31": 1, + "33": 1, + "37": 1, + "38": 1, + "40": 1 + }, + "gamesPlayed": 6, + "medianWords": 5.5, + "medianLetters": 35 + }, + "figure": { + "best": { + "word": "figure", + "letters": 19 + }, + "worst": { + "word": "figure", + "letters": 37 + }, + "totalWords": { + "2": 1, + "3": 2, + "5": 3, + "6": 1 + }, + "totalLetters": { + "19": 1, + "21": 1, + "22": 1, + "26": 1, + "27": 1, + "32": 1, + "37": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 26 + }, + "carp": { + "best": { + "word": "carp", + "letters": 15 + }, + "worst": { + "word": "carp", + "letters": 32 + }, + "totalWords": { + "2": 2, + "3": 1, + "4": 2, + "5": 2, + "6": 1 + }, + "totalLetters": { + "15": 1, + "17": 2, + "20": 1, + "22": 1, + "23": 1, + "27": 1, + "32": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 21 + }, + "nineteen": { + "best": { + "word": "nineteen", + "letters": 29 + }, + "worst": { + "word": "nineteen", + "letters": 51 + }, + "totalWords": { + "3": 1, + "4": 1, + "5": 1, + "6": 3, + "9": 1, + "10": 2 + }, + "totalLetters": { + "29": 1, + "30": 1, + "34": 2, + "35": 1, + "38": 1, + "48": 1, + "50": 1, + "51": 1 + }, + "gamesPlayed": 9, + "medianWords": 6, + "medianLetters": 35 + }, + "invention": { + "best": { + "word": "invention", + "letters": 24 + }, + "worst": { + "word": "invention", + "letters": 57 + }, + "totalWords": { + "3": 1, + "4": 2, + "5": 2, + "6": 1, + "8": 1, + "9": 1, + "10": 1 + }, + "totalLetters": { + "24": 1, + "27": 1, + "33": 2, + "41": 2, + "49": 1, + "53": 1, + "57": 1 + }, + "gamesPlayed": 9, + "medianWords": 5, + "medianLetters": 41 + }, + "hello": { + "best": { + "word": "hello", + "letters": 18 + }, + "worst": { + "word": "hello", + "letters": 40 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 1, + "5": 1, + "6": 1, + "8": 1, + "9": 1 + }, + "totalLetters": { + "18": 1, + "20": 1, + "21": 1, + "24": 1, + "30": 1, + "32": 1, + "35": 1, + "40": 1 + }, + "gamesPlayed": 8, + "medianWords": 4.5, + "medianLetters": 27 + }, + "blindfold": { + "best": { + "word": "blindfold", + "letters": 27 + }, + "worst": { + "word": "blindfold", + "letters": 63 + }, + "totalWords": { + "4": 3, + "5": 1, + "6": 2, + "8": 1, + "14": 1 + }, + "totalLetters": { + "27": 1, + "30": 2, + "35": 1, + "37": 1, + "41": 2, + "63": 1 + }, + "gamesPlayed": 8, + "medianWords": 5.5, + "medianLetters": 36 + }, + "scold": { + "best": { + "word": "scold", + "letters": 20 + }, + "worst": { + "word": "scold", + "letters": 32 + }, + "totalWords": { + "3": 3, + "4": 1, + "5": 4 + }, + "totalLetters": { + "20": 1, + "22": 2, + "23": 2, + "26": 1, + "27": 1, + "32": 1 + }, + "gamesPlayed": 8, + "medianWords": 4.5, + "medianLetters": 22.5 + }, + "tariff": { + "best": { + "word": "tariff", + "letters": 15 + }, + "worst": { + "word": "tariff", + "letters": 35 + }, + "totalWords": { + "2": 2, + "3": 3, + "4": 1, + "5": 1, + "6": 1, + "7": 1 + }, + "totalLetters": { + "15": 1, + "18": 2, + "21": 1, + "22": 1, + "25": 1, + "28": 1, + "33": 1, + "35": 1 + }, + "gamesPlayed": 9, + "medianWords": 3, + "medianLetters": 22 + }, + "diagnose": { + "best": { + "word": "diagnose", + "letters": 22 + }, + "worst": { + "word": "diagnose", + "letters": 77 + }, + "totalWords": { + "3": 1, + "4": 2, + "5": 1, + "7": 1, + "8": 1, + "14": 1 + }, + "totalLetters": { + "22": 1, + "27": 1, + "32": 1, + "35": 1, + "38": 1, + "44": 1, + "77": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 35 + }, + "amount": { + "best": { + "word": "amount", + "letters": 19 + }, + "worst": { + "word": "amount", + "letters": 31 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 3, + "5": 1 + }, + "totalLetters": { + "19": 1, + "21": 3, + "22": 1, + "25": 2, + "29": 1, + "31": 1 + }, + "gamesPlayed": 9, + "medianWords": 3, + "medianLetters": 22 + }, + "shooting": { + "best": { + "word": "shooting", + "letters": 20 + }, + "worst": { + "word": "shooting", + "letters": 46 + }, + "totalWords": { + "2": 1, + "4": 1, + "5": 2, + "6": 2, + "7": 1 + }, + "totalLetters": { + "20": 1, + "26": 1, + "30": 1, + "37": 1, + "38": 1, + "39": 1, + "46": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 37 + }, + "germany": { + "best": { + "word": "germany", + "letters": 18 + }, + "worst": { + "word": "germany", + "letters": 52 + }, + "totalWords": { + "3": 3, + "4": 3, + "5": 1, + "6": 1, + "10": 1 + }, + "totalLetters": { + "18": 1, + "25": 1, + "26": 1, + "28": 1, + "30": 1, + "32": 1, + "33": 1, + "42": 1, + "52": 1 + }, + "gamesPlayed": 9, + "medianWords": 4, + "medianLetters": 30 + }, + "premature": { + "best": { + "word": "premature", + "letters": 20 + }, + "worst": { + "word": "premature", + "letters": 39 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 1, + "5": 2, + "6": 1 + }, + "totalLetters": { + "20": 1, + "22": 1, + "27": 2, + "28": 1, + "31": 1, + "38": 1, + "39": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 27.5 + }, + "aisle": { + "best": { + "word": "aisle", + "letters": 16 + }, + "worst": { + "word": "aisle", + "letters": 27 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 1, + "6": 1 + }, + "totalLetters": { + "16": 1, + "19": 2, + "22": 1, + "26": 1, + "27": 1 + }, + "gamesPlayed": 6, + "medianWords": 2.5, + "medianLetters": 20.5 + }, + "urinate": { + "best": { + "word": "urinate", + "letters": 20 + }, + "worst": { + "word": "urinate", + "letters": 38 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "7": 1 + }, + "totalLetters": { + "20": 1, + "23": 1, + "27": 1, + "33": 1, + "38": 1 + }, + "gamesPlayed": 5, + "medianWords": 4, + "medianLetters": 27 + }, + "sheriff": { + "best": { + "word": "sheriff", + "letters": 22 + }, + "worst": { + "word": "sheriff", + "letters": 43 + }, + "totalWords": { + "3": 1, + "4": 3, + "6": 1, + "8": 1 + }, + "totalLetters": { + "22": 1, + "23": 1, + "26": 2, + "42": 1, + "43": 1 + }, + "gamesPlayed": 6, + "medianWords": 3.5, + "medianLetters": 24.5 + }, + "periphery": { + "best": { + "word": "periphery", + "letters": 30 + }, + "worst": { + "word": "periphery", + "letters": 69 + }, + "totalWords": { + "3": 1, + "5": 1, + "6": 3, + "11": 1, + "14": 1 + }, + "totalLetters": { + "30": 1, + "32": 1, + "37": 1, + "38": 1, + "42": 1, + "67": 1, + "69": 1 + }, + "gamesPlayed": 7, + "medianWords": 6, + "medianLetters": 38 + }, + "punk": { + "best": { + "word": "punk", + "letters": 13 + }, + "worst": { + "word": "punk", + "letters": 30 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 3, + "6": 1 + }, + "totalLetters": { + "13": 1, + "15": 1, + "18": 1, + "21": 1, + "23": 1, + "25": 1, + "30": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 21 + }, + "dignity": { + "best": { + "word": "dignity", + "letters": 20 + }, + "worst": { + "word": "dignity", + "letters": 49 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 1, + "5": 2, + "6": 1, + "10": 1 + }, + "totalLetters": { + "20": 2, + "26": 1, + "30": 1, + "31": 1, + "32": 1, + "49": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 30 + }, + "modicum": { + "best": { + "word": "modicum", + "letters": 24 + }, + "worst": { + "word": "modicum", + "letters": 53 + }, + "totalWords": { + "4": 2, + "5": 1, + "9": 1, + "11": 2 + }, + "totalLetters": { + "24": 1, + "27": 1, + "29": 1, + "41": 1, + "49": 1, + "53": 1 + }, + "gamesPlayed": 6, + "medianWords": 7, + "medianLetters": 35 + }, + "trout": { + "best": { + "word": "trout", + "letters": 21 + }, + "worst": { + "word": "trout", + "letters": 38 + }, + "totalWords": { + "3": 3, + "4": 2, + "5": 1, + "6": 1, + "7": 1 + }, + "totalLetters": { + "21": 1, + "22": 2, + "23": 1, + "25": 1, + "27": 1, + "31": 1, + "38": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 24 + }, + "receiver": { + "best": { + "word": "receiver", + "letters": 27 + }, + "worst": { + "word": "receiver", + "letters": 55 + }, + "totalWords": { + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "9": 1, + "10": 1 + }, + "totalLetters": { + "27": 1, + "29": 1, + "35": 1, + "36": 1, + "54": 1, + "55": 1 + }, + "gamesPlayed": 6, + "medianWords": 5.5, + "medianLetters": 35.5 + }, + "giraffe": { + "best": { + "word": "giraffe", + "letters": 18 + }, + "worst": { + "word": "giraffe", + "letters": 40 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 1, + "5": 1, + "7": 1 + }, + "totalLetters": { + "18": 1, + "20": 2, + "23": 1, + "25": 1, + "28": 1, + "31": 1, + "40": 1 + }, + "gamesPlayed": 8, + "medianWords": 2.5, + "medianLetters": 24 + }, + "misery": { + "best": { + "word": "misery", + "letters": 18 + }, + "worst": { + "word": "misery", + "letters": 29 + }, + "totalWords": { + "3": 5, + "4": 3 + }, + "totalLetters": { + "18": 1, + "20": 2, + "21": 1, + "25": 2, + "26": 1, + "29": 1 + }, + "gamesPlayed": 8, + "medianWords": 3, + "medianLetters": 23 + }, + "pork": { + "best": { + "word": "pork", + "letters": 13 + }, + "worst": { + "word": "pork", + "letters": 29 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 1, + "5": 2, + "6": 1 + }, + "totalLetters": { + "13": 1, + "19": 1, + "21": 2, + "27": 2, + "29": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 21 + }, + "depend": { + "best": { + "word": "depend", + "letters": 18 + }, + "worst": { + "word": "depend", + "letters": 48 + }, + "totalWords": { + "3": 2, + "4": 4, + "5": 2, + "10": 1 + }, + "totalLetters": { + "18": 1, + "20": 1, + "22": 1, + "23": 1, + "26": 2, + "30": 1, + "34": 1, + "48": 1 + }, + "gamesPlayed": 9, + "medianWords": 4, + "medianLetters": 26 + }, + "showy": { + "best": { + "word": "showy", + "letters": 19 + }, + "worst": { + "word": "showy", + "letters": 37 + }, + "totalWords": { + "3": 2, + "4": 1, + "5": 1, + "6": 3, + "7": 2 + }, + "totalLetters": { + "19": 1, + "21": 1, + "23": 1, + "28": 1, + "31": 1, + "32": 1, + "36": 2, + "37": 1 + }, + "gamesPlayed": 9, + "medianWords": 6, + "medianLetters": 31 + }, + "hawthorn": { + "best": { + "word": "hawthorn", + "letters": 37 + }, + "worst": { + "word": "hawthorn", + "letters": 56 + }, + "totalWords": { + "7": 1, + "8": 2, + "10": 1, + "11": 2 + }, + "totalLetters": { + "37": 1, + "43": 1, + "47": 1, + "52": 1, + "54": 1, + "56": 1 + }, + "gamesPlayed": 6, + "medianWords": 9, + "medianLetters": 49.5 + }, + "spaghetti": { + "best": { + "word": "spaghetti", + "letters": 17 + }, + "worst": { + "word": "spaghetti", + "letters": 37 + }, + "totalWords": { + "2": 1, + "3": 1, + "5": 3 + }, + "totalLetters": { + "17": 1, + "22": 1, + "27": 1, + "37": 2 + }, + "gamesPlayed": 5, + "medianWords": 5, + "medianLetters": 27 + }, + "unknown": { + "best": { + "word": "unknown", + "letters": 25 + }, + "worst": { + "word": "unknown", + "letters": 44 + }, + "totalWords": { + "3": 1, + "4": 1, + "5": 1, + "6": 3, + "10": 1 + }, + "totalLetters": { + "25": 1, + "27": 2, + "29": 1, + "36": 1, + "38": 1, + "44": 1 + }, + "gamesPlayed": 7, + "medianWords": 6, + "medianLetters": 29 + }, + "officer": { + "best": { + "word": "officer", + "letters": 18 + }, + "worst": { + "word": "officer", + "letters": 34 + }, + "totalWords": { + "2": 2, + "3": 2, + "4": 1, + "5": 2 + }, + "totalLetters": { + "18": 1, + "20": 1, + "23": 2, + "24": 1, + "26": 1, + "34": 1 + }, + "gamesPlayed": 7, + "medianWords": 3, + "medianLetters": 23 + }, + "glance": { + "best": { + "word": "glance", + "letters": 11 + }, + "worst": { + "word": "glance", + "letters": 33 + }, + "totalWords": { + "2": 2, + "4": 5, + "5": 1 + }, + "totalLetters": { + "11": 1, + "19": 1, + "21": 1, + "24": 1, + "27": 1, + "28": 1, + "31": 1, + "33": 1 + }, + "gamesPlayed": 8, + "medianWords": 3, + "medianLetters": 25.5 + }, + "xerox": { + "best": { + "word": "xerox", + "letters": 25 + }, + "worst": { + "word": "xerox", + "letters": 58 + }, + "totalWords": { + "4": 2, + "6": 1, + "7": 1, + "10": 1, + "11": 2 + }, + "totalLetters": { + "25": 1, + "26": 1, + "30": 1, + "37": 1, + "43": 1, + "51": 1, + "58": 1 + }, + "gamesPlayed": 7, + "medianWords": 7, + "medianLetters": 37 + }, + "halt": { + "best": { + "word": "halt", + "letters": 17 + }, + "worst": { + "word": "halt", + "letters": 27 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 2, + "5": 2 + }, + "totalLetters": { + "17": 4, + "25": 1, + "27": 2 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 17 + }, + "quote": { + "best": { + "word": "quote", + "letters": 18 + }, + "worst": { + "word": "quote", + "letters": 31 + }, + "totalWords": { + "3": 3, + "4": 1, + "5": 2 + }, + "totalLetters": { + "18": 1, + "21": 1, + "23": 1, + "26": 1, + "27": 1, + "31": 1 + }, + "gamesPlayed": 6, + "medianWords": 3.5, + "medianLetters": 24.5 + }, + "freezer": { + "best": { + "word": "freezer", + "letters": 29 + }, + "worst": { + "word": "freezer", + "letters": 42 + }, + "totalWords": { + "4": 2, + "5": 2, + "7": 1, + "8": 1 + }, + "totalLetters": { + "29": 2, + "31": 1, + "34": 1, + "40": 1, + "42": 1 + }, + "gamesPlayed": 6, + "medianWords": 4.5, + "medianLetters": 32.5 + }, + "employ": { + "best": { + "word": "employ", + "letters": 15 + }, + "worst": { + "word": "employ", + "letters": 55 + }, + "totalWords": { + "2": 2, + "3": 2, + "4": 2, + "13": 1 + }, + "totalLetters": { + "15": 1, + "16": 1, + "17": 1, + "19": 1, + "28": 2, + "55": 1 + }, + "gamesPlayed": 7, + "medianWords": 3, + "medianLetters": 19 + }, + "specimen": { + "best": { + "word": "specimen", + "letters": 19 + }, + "worst": { + "word": "specimen", + "letters": 38 + }, + "totalWords": { + "2": 2, + "3": 1, + "4": 2, + "5": 2 + }, + "totalLetters": { + "19": 1, + "21": 1, + "23": 1, + "25": 1, + "26": 2, + "38": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 25 + }, + "steppe": { + "best": { + "word": "steppe", + "letters": 24 + }, + "worst": { + "word": "steppe", + "letters": 63 + }, + "totalWords": { + "3": 1, + "5": 2, + "6": 3, + "8": 1, + "12": 1 + }, + "totalLetters": { + "24": 1, + "25": 2, + "34": 1, + "36": 1, + "37": 1, + "41": 1, + "63": 1 + }, + "gamesPlayed": 8, + "medianWords": 5.5, + "medianLetters": 35 + }, + "rapture": { + "best": { + "word": "rapture", + "letters": 23 + }, + "worst": { + "word": "rapture", + "letters": 43 + }, + "totalWords": { + "3": 2, + "4": 3, + "6": 1, + "7": 1 + }, + "totalLetters": { + "23": 1, + "24": 2, + "27": 1, + "28": 1, + "37": 1, + "43": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 27 + }, + "height": { + "best": { + "word": "height", + "letters": 20 + }, + "worst": { + "word": "height", + "letters": 59 + }, + "totalWords": { + "4": 2, + "5": 1, + "6": 1, + "7": 1, + "8": 1, + "13": 1 + }, + "totalLetters": { + "20": 1, + "30": 1, + "31": 1, + "38": 1, + "39": 1, + "45": 1, + "59": 1 + }, + "gamesPlayed": 7, + "medianWords": 6, + "medianLetters": 38 + }, + "clergyman": { + "best": { + "word": "clergyman", + "letters": 19 + }, + "worst": { + "word": "clergyman", + "letters": 149 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 2, + "6": 1, + "33": 1 + }, + "totalLetters": { + "19": 1, + "23": 1, + "25": 2, + "32": 1, + "36": 1, + "149": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 25 + }, + "citation": { + "best": { + "word": "citation", + "letters": 24 + }, + "worst": { + "word": "citation", + "letters": 48 + }, + "totalWords": { + "3": 2, + "4": 1, + "5": 1, + "7": 2 + }, + "totalLetters": { + "24": 1, + "25": 1, + "32": 1, + "34": 1, + "39": 1, + "48": 1 + }, + "gamesPlayed": 6, + "medianWords": 4.5, + "medianLetters": 33 + }, + "obstruct": { + "best": { + "word": "obstruct", + "letters": 24 + }, + "worst": { + "word": "obstruct", + "letters": 41 + }, + "totalWords": { + "3": 2, + "4": 1, + "5": 1, + "6": 1, + "7": 1, + "8": 1 + }, + "totalLetters": { + "24": 1, + "26": 2, + "31": 1, + "34": 1, + "41": 2 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 31 + }, + "birthday": { + "best": { + "word": "birthday", + "letters": 22 + }, + "worst": { + "word": "birthday", + "letters": 38 + }, + "totalWords": { + "3": 1, + "4": 1, + "5": 1, + "6": 2, + "7": 1 + }, + "totalLetters": { + "22": 1, + "28": 1, + "33": 1, + "35": 1, + "36": 1, + "38": 1 + }, + "gamesPlayed": 6, + "medianWords": 5.5, + "medianLetters": 34 + }, + "renewal": { + "best": { + "word": "renewal", + "letters": 20 + }, + "worst": { + "word": "renewal", + "letters": 53 + }, + "totalWords": { + "3": 2, + "5": 1, + "6": 1, + "7": 1, + "9": 1 + }, + "totalLetters": { + "20": 1, + "22": 1, + "32": 1, + "35": 1, + "46": 1, + "53": 1 + }, + "gamesPlayed": 6, + "medianWords": 5.5, + "medianLetters": 33.5 + }, + "cargo": { + "best": { + "word": "cargo", + "letters": 10 + }, + "worst": { + "word": "cargo", + "letters": 25 + }, + "totalWords": { + "2": 3, + "3": 2, + "4": 2 + }, + "totalLetters": { + "10": 1, + "13": 1, + "18": 1, + "20": 1, + "22": 1, + "23": 1, + "25": 1 + }, + "gamesPlayed": 7, + "medianWords": 3, + "medianLetters": 20 + }, + "ironic": { + "best": { + "word": "ironic", + "letters": 22 + }, + "worst": { + "word": "ironic", + "letters": 45 + }, + "totalWords": { + "3": 2, + "4": 3, + "5": 1, + "6": 2, + "7": 1 + }, + "totalLetters": { + "22": 1, + "24": 2, + "29": 1, + "30": 2, + "33": 1, + "35": 1, + "45": 1 + }, + "gamesPlayed": 9, + "medianWords": 4, + "medianLetters": 30 + }, + "extractor": { + "best": { + "word": "extractor", + "letters": 27 + }, + "worst": { + "word": "extractor", + "letters": 44 + }, + "totalWords": { + "3": 1, + "4": 3, + "5": 2, + "6": 3 + }, + "totalLetters": { + "27": 2, + "31": 1, + "32": 1, + "33": 1, + "37": 2, + "38": 1, + "44": 1 + }, + "gamesPlayed": 9, + "medianWords": 5, + "medianLetters": 33 + }, + "gulf": { + "best": { + "word": "gulf", + "letters": 13 + }, + "worst": { + "word": "gulf", + "letters": 31 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 2, + "5": 1, + "6": 1 + }, + "totalLetters": { + "13": 1, + "17": 1, + "20": 1, + "21": 1, + "22": 1, + "26": 1, + "31": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 21 + }, + "journey": { + "best": { + "word": "journey", + "letters": 16 + }, + "worst": { + "word": "journey", + "letters": 50 + }, + "totalWords": { + "2": 1, + "4": 1, + "6": 1, + "8": 2, + "10": 1 + }, + "totalLetters": { + "16": 1, + "28": 1, + "37": 1, + "38": 2, + "50": 1 + }, + "gamesPlayed": 6, + "medianWords": 7, + "medianLetters": 37.5 + }, + "orthodoxy": { + "best": { + "word": "orthodoxy", + "letters": 22 + }, + "worst": { + "word": "orthodoxy", + "letters": 46 + }, + "totalWords": { + "2": 1, + "4": 2, + "5": 2, + "8": 2 + }, + "totalLetters": { + "22": 1, + "24": 1, + "30": 1, + "34": 1, + "35": 1, + "41": 1, + "46": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 34 + }, + "funeral": { + "best": { + "word": "funeral", + "letters": 16 + }, + "worst": { + "word": "funeral", + "letters": 33 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 1, + "5": 2, + "6": 2 + }, + "totalLetters": { + "16": 1, + "22": 1, + "25": 1, + "26": 1, + "29": 1, + "31": 2, + "33": 1 + }, + "gamesPlayed": 8, + "medianWords": 4.5, + "medianLetters": 27.5 + }, + "fore": { + "best": { + "word": "fore", + "letters": 26 + }, + "worst": { + "word": "fore", + "letters": 34 + }, + "totalWords": { + "5": 2, + "6": 3, + "7": 2, + "8": 1 + }, + "totalLetters": { + "26": 1, + "29": 1, + "31": 1, + "32": 2, + "33": 2, + "34": 1 + }, + "gamesPlayed": 8, + "medianWords": 5.5, + "medianLetters": 31.5 + }, + "fanfare": { + "best": { + "word": "fanfare", + "letters": 24 + }, + "worst": { + "word": "fanfare", + "letters": 46 + }, + "totalWords": { + "3": 1, + "4": 1, + "5": 2, + "7": 2, + "11": 1 + }, + "totalLetters": { + "24": 1, + "27": 1, + "28": 1, + "32": 1, + "39": 1, + "41": 1, + "46": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 32 + }, + "masculine": { + "best": { + "word": "masculine", + "letters": 16 + }, + "worst": { + "word": "masculine", + "letters": 43 + }, + "totalWords": { + "2": 1, + "3": 1, + "5": 1, + "7": 2 + }, + "totalLetters": { + "16": 1, + "21": 1, + "31": 1, + "40": 1, + "43": 1 + }, + "gamesPlayed": 5, + "medianWords": 5, + "medianLetters": 31 + }, + "pisces": { + "best": { + "word": "pisces", + "letters": 15 + }, + "worst": { + "word": "pisces", + "letters": 36 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 5, + "5": 1, + "6": 1 + }, + "totalLetters": { + "15": 1, + "23": 1, + "24": 1, + "25": 1, + "28": 2, + "29": 1, + "35": 1, + "36": 1 + }, + "gamesPlayed": 9, + "medianWords": 4, + "medianLetters": 28 + }, + "endanger": { + "best": { + "word": "endanger", + "letters": 22 + }, + "worst": { + "word": "endanger", + "letters": 50 + }, + "totalWords": { + "3": 2, + "4": 1, + "5": 1, + "6": 1, + "7": 1, + "9": 1 + }, + "totalLetters": { + "22": 1, + "25": 1, + "30": 1, + "31": 1, + "34": 1, + "38": 1, + "50": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 31 + }, + "hotbed": { + "best": { + "word": "hotbed", + "letters": 19 + }, + "worst": { + "word": "hotbed", + "letters": 40 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1, + "7": 2 + }, + "totalLetters": { + "19": 1, + "22": 1, + "25": 1, + "29": 1, + "34": 1, + "35": 1, + "40": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 29 + }, + "boulevard": { + "best": { + "word": "boulevard", + "letters": 23 + }, + "worst": { + "word": "boulevard", + "letters": 55 + }, + "totalWords": { + "4": 3, + "5": 1, + "7": 1, + "9": 1 + }, + "totalLetters": { + "23": 1, + "30": 1, + "31": 1, + "35": 1, + "45": 1, + "55": 1 + }, + "gamesPlayed": 6, + "medianWords": 4.5, + "medianLetters": 33 + }, + "penguin": { + "best": { + "word": "penguin", + "letters": 20 + }, + "worst": { + "word": "penguin", + "letters": 36 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 3, + "5": 2, + "6": 1 + }, + "totalLetters": { + "20": 1, + "21": 1, + "22": 1, + "26": 1, + "27": 1, + "30": 2, + "36": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 26.5 + }, + "aquatic": { + "best": { + "word": "aquatic", + "letters": 19 + }, + "worst": { + "word": "aquatic", + "letters": 58 + }, + "totalWords": { + "2": 1, + "3": 1, + "5": 1, + "6": 1, + "7": 2, + "9": 1, + "11": 1 + }, + "totalLetters": { + "19": 1, + "21": 1, + "35": 2, + "37": 1, + "45": 1, + "51": 1, + "58": 1 + }, + "gamesPlayed": 8, + "medianWords": 6.5, + "medianLetters": 36 + }, + "untie": { + "best": { + "word": "untie", + "letters": 19 + }, + "worst": { + "word": "untie", + "letters": 41 + }, + "totalWords": { + "3": 3, + "4": 2, + "5": 1, + "6": 1, + "7": 1 + }, + "totalLetters": { + "19": 1, + "21": 2, + "22": 1, + "25": 1, + "32": 1, + "34": 1, + "41": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 23.5 + }, + "talk": { + "best": { + "word": "talk", + "letters": 17 + }, + "worst": { + "word": "talk", + "letters": 28 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 6 + }, + "totalLetters": { + "17": 2, + "20": 3, + "26": 2, + "28": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 18.5 + }, + "sneaker": { + "best": { + "word": "sneaker", + "letters": 20 + }, + "worst": { + "word": "sneaker", + "letters": 46 + }, + "totalWords": { + "3": 1, + "4": 2, + "5": 1, + "7": 1, + "8": 1 + }, + "totalLetters": { + "20": 1, + "29": 1, + "30": 1, + "35": 1, + "46": 2 + }, + "gamesPlayed": 6, + "medianWords": 4.5, + "medianLetters": 32.5 + }, + "cessation": { + "best": { + "word": "cessation", + "letters": 21 + }, + "worst": { + "word": "cessation", + "letters": 78 + }, + "totalWords": { + "3": 1, + "4": 2, + "6": 1, + "7": 1, + "8": 1, + "10": 1, + "12": 1 + }, + "totalLetters": { + "21": 1, + "34": 1, + "39": 1, + "42": 1, + "46": 1, + "48": 1, + "59": 1, + "78": 1 + }, + "gamesPlayed": 8, + "medianWords": 6.5, + "medianLetters": 44 + }, + "swell": { + "best": { + "word": "swell", + "letters": 23 + }, + "worst": { + "word": "swell", + "letters": 33 + }, + "totalWords": { + "4": 2, + "6": 3 + }, + "totalLetters": { + "23": 1, + "27": 2, + "32": 1, + "33": 1 + }, + "gamesPlayed": 5, + "medianWords": 6, + "medianLetters": 27 + }, + "profile": { + "best": { + "word": "profile", + "letters": 18 + }, + "worst": { + "word": "profile", + "letters": 56 + }, + "totalWords": { + "2": 2, + "4": 1, + "5": 1, + "6": 2, + "8": 1 + }, + "totalLetters": { + "18": 1, + "20": 1, + "30": 1, + "31": 2, + "36": 1, + "56": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 31 + }, + "surely": { + "best": { + "word": "surely", + "letters": 15 + }, + "worst": { + "word": "surely", + "letters": 32 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 1, + "5": 1 + }, + "totalLetters": { + "15": 1, + "19": 1, + "21": 1, + "23": 1, + "26": 1, + "32": 1 + }, + "gamesPlayed": 6, + "medianWords": 2.5, + "medianLetters": 22 + }, + "peasant": { + "best": { + "word": "peasant", + "letters": 20 + }, + "worst": { + "word": "peasant", + "letters": 38 + }, + "totalWords": { + "3": 2, + "4": 3, + "6": 1 + }, + "totalLetters": { + "20": 2, + "26": 2, + "28": 1, + "38": 1 + }, + "gamesPlayed": 6, + "medianWords": 3.5, + "medianLetters": 23 + }, + "pipeline": { + "best": { + "word": "pipeline", + "letters": 20 + }, + "worst": { + "word": "pipeline", + "letters": 61 + }, + "totalWords": { + "3": 1, + "4": 3, + "5": 1, + "6": 1, + "10": 1, + "14": 1 + }, + "totalLetters": { + "20": 1, + "28": 1, + "33": 1, + "34": 1, + "36": 1, + "39": 1, + "60": 1, + "61": 1 + }, + "gamesPlayed": 8, + "medianWords": 4.5, + "medianLetters": 35 + }, + "threaten": { + "best": { + "word": "threaten", + "letters": 27 + }, + "worst": { + "word": "threaten", + "letters": 45 + }, + "totalWords": { + "3": 1, + "5": 3, + "6": 1, + "7": 2 + }, + "totalLetters": { + "27": 1, + "31": 1, + "33": 1, + "37": 1, + "40": 1, + "42": 1, + "45": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 37 + }, + "doubt": { + "best": { + "word": "doubt", + "letters": 18 + }, + "worst": { + "word": "doubt", + "letters": 36 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 2, + "5": 1, + "6": 1, + "7": 1 + }, + "totalLetters": { + "18": 1, + "20": 1, + "23": 1, + "26": 2, + "34": 1, + "36": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 26 + }, + "infamy": { + "best": { + "word": "infamy", + "letters": 12 + }, + "worst": { + "word": "infamy", + "letters": 49 + }, + "totalWords": { + "2": 2, + "3": 1, + "4": 1, + "6": 2, + "8": 1, + "10": 1 + }, + "totalLetters": { + "12": 1, + "15": 1, + "23": 1, + "28": 1, + "33": 1, + "35": 1, + "39": 1, + "49": 1 + }, + "gamesPlayed": 8, + "medianWords": 5, + "medianLetters": 30.5 + }, + "pumpkin": { + "best": { + "word": "pumpkin", + "letters": 20 + }, + "worst": { + "word": "pumpkin", + "letters": 40 + }, + "totalWords": { + "3": 2, + "4": 2, + "5": 1, + "6": 1, + "8": 1 + }, + "totalLetters": { + "20": 2, + "23": 1, + "29": 1, + "33": 1, + "35": 1, + "40": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 29 + }, + "pain": { + "best": { + "word": "pain", + "letters": 15 + }, + "worst": { + "word": "pain", + "letters": 27 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 1, + "5": 2 + }, + "totalLetters": { + "15": 1, + "16": 2, + "18": 1, + "25": 1, + "26": 1, + "27": 1 + }, + "gamesPlayed": 7, + "medianWords": 3, + "medianLetters": 18 + }, + "fond": { + "best": { + "word": "fond", + "letters": 20 + }, + "worst": { + "word": "fond", + "letters": 31 + }, + "totalWords": { + "3": 1, + "4": 3, + "5": 1, + "6": 1 + }, + "totalLetters": { + "20": 1, + "21": 3, + "24": 1, + "31": 1 + }, + "gamesPlayed": 6, + "medianWords": 3.5, + "medianLetters": 20.5 + }, + "prosaic": { + "best": { + "word": "prosaic", + "letters": 18 + }, + "worst": { + "word": "prosaic", + "letters": 44 + }, + "totalWords": { + "2": 2, + "3": 1, + "4": 1, + "5": 2, + "7": 1, + "8": 1 + }, + "totalLetters": { + "18": 2, + "20": 1, + "26": 1, + "27": 1, + "28": 1, + "35": 1, + "44": 1 + }, + "gamesPlayed": 8, + "medianWords": 4.5, + "medianLetters": 26.5 + }, + "blender": { + "best": { + "word": "blender", + "letters": 22 + }, + "worst": { + "word": "blender", + "letters": 48 + }, + "totalWords": { + "3": 2, + "5": 3, + "6": 1, + "11": 1 + }, + "totalLetters": { + "22": 1, + "25": 1, + "29": 1, + "30": 1, + "36": 1, + "38": 1, + "48": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 30 + }, + "billboard": { + "best": { + "word": "billboard", + "letters": 29 + }, + "worst": { + "word": "billboard", + "letters": 61 + }, + "totalWords": { + "4": 1, + "5": 2, + "6": 1, + "12": 1 + }, + "totalLetters": { + "29": 1, + "33": 1, + "38": 2, + "61": 1 + }, + "gamesPlayed": 5, + "medianWords": 5, + "medianLetters": 38 + }, + "macaroni": { + "best": { + "word": "macaroni", + "letters": 22 + }, + "worst": { + "word": "macaroni", + "letters": 36 + }, + "totalWords": { + "3": 2, + "4": 1, + "5": 2, + "6": 1 + }, + "totalLetters": { + "22": 1, + "31": 3, + "35": 1, + "36": 1 + }, + "gamesPlayed": 6, + "medianWords": 4.5, + "medianLetters": 26.5 + }, + "family": { + "best": { + "word": "family", + "letters": 19 + }, + "worst": { + "word": "family", + "letters": 41 + }, + "totalWords": { + "3": 3, + "4": 2, + "5": 1, + "7": 1 + }, + "totalLetters": { + "19": 2, + "23": 1, + "24": 1, + "28": 1, + "29": 1, + "41": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 24 + }, + "dynamo": { + "best": { + "word": "dynamo", + "letters": 19 + }, + "worst": { + "word": "dynamo", + "letters": 37 + }, + "totalWords": { + "3": 1, + "4": 2, + "5": 1, + "6": 2, + "7": 1 + }, + "totalLetters": { + "19": 1, + "24": 1, + "30": 1, + "31": 1, + "32": 1, + "33": 1, + "37": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 31 + }, + "seeming": { + "best": { + "word": "seeming", + "letters": 22 + }, + "worst": { + "word": "seeming", + "letters": 57 + }, + "totalWords": { + "3": 1, + "5": 4, + "8": 1, + "9": 1 + }, + "totalLetters": { + "22": 1, + "31": 1, + "33": 1, + "36": 1, + "38": 1, + "48": 1, + "57": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 36 + }, + "ticket": { + "best": { + "word": "ticket", + "letters": 22 + }, + "worst": { + "word": "ticket", + "letters": 36 + }, + "totalWords": { + "3": 2, + "4": 2, + "6": 4 + }, + "totalLetters": { + "22": 2, + "23": 1, + "32": 2, + "34": 1, + "35": 1, + "36": 1 + }, + "gamesPlayed": 8, + "medianWords": 5, + "medianLetters": 27.5 + }, + "falsify": { + "best": { + "word": "falsify", + "letters": 18 + }, + "worst": { + "word": "falsify", + "letters": 44 + }, + "totalWords": { + "3": 3, + "4": 2, + "5": 1, + "6": 1, + "9": 1 + }, + "totalLetters": { + "18": 1, + "19": 1, + "24": 1, + "27": 1, + "30": 1, + "32": 1, + "36": 1, + "44": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 28.5 + }, + "operator": { + "best": { + "word": "operator", + "letters": 17 + }, + "worst": { + "word": "operator", + "letters": 48 + }, + "totalWords": { + "2": 1, + "3": 2, + "5": 2, + "6": 1, + "7": 1, + "8": 1, + "9": 1 + }, + "totalLetters": { + "17": 1, + "28": 2, + "33": 1, + "40": 1, + "42": 2, + "46": 1, + "48": 1 + }, + "gamesPlayed": 9, + "medianWords": 5, + "medianLetters": 40 + }, + "abort": { + "best": { + "word": "abort", + "letters": 20 + }, + "worst": { + "word": "abort", + "letters": 35 + }, + "totalWords": { + "3": 2, + "4": 3, + "5": 1, + "6": 1 + }, + "totalLetters": { + "20": 1, + "21": 2, + "25": 2, + "29": 1, + "35": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 25 + }, + "playback": { + "best": { + "word": "playback", + "letters": 21 + }, + "worst": { + "word": "playback", + "letters": 40 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 3, + "5": 1, + "8": 1 + }, + "totalLetters": { + "21": 1, + "22": 1, + "25": 1, + "30": 1, + "32": 1, + "33": 1, + "40": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 30 + }, + "guest": { + "best": { + "word": "guest", + "letters": 21 + }, + "worst": { + "word": "guest", + "letters": 55 + }, + "totalWords": { + "4": 1, + "5": 3, + "13": 1 + }, + "totalLetters": { + "21": 1, + "26": 2, + "28": 1, + "55": 1 + }, + "gamesPlayed": 5, + "medianWords": 5, + "medianLetters": 26 + }, + "arch": { + "best": { + "word": "arch", + "letters": 19 + }, + "worst": { + "word": "arch", + "letters": 49 + }, + "totalWords": { + "3": 2, + "4": 3, + "5": 2, + "11": 1 + }, + "totalLetters": { + "19": 1, + "20": 1, + "22": 1, + "24": 2, + "26": 1, + "27": 1, + "49": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 23 + }, + "interest": { + "best": { + "word": "interest", + "letters": 16 + }, + "worst": { + "word": "interest", + "letters": 49 + }, + "totalWords": { + "2": 2, + "3": 4, + "6": 3, + "8": 1 + }, + "totalLetters": { + "16": 1, + "20": 1, + "21": 1, + "22": 1, + "24": 1, + "27": 1, + "40": 1, + "42": 1, + "48": 1, + "49": 1 + }, + "gamesPlayed": 10, + "medianWords": 2.5, + "medianLetters": 25.5 + }, + "riot": { + "best": { + "word": "riot", + "letters": 13 + }, + "worst": { + "word": "riot", + "letters": 28 + }, + "totalWords": { + "2": 4, + "4": 1, + "5": 1, + "6": 1 + }, + "totalLetters": { + "13": 2, + "15": 1, + "17": 2, + "27": 1, + "28": 1 + }, + "gamesPlayed": 7, + "medianWords": 2, + "medianLetters": 17 + }, + "mandarin": { + "best": { + "word": "mandarin", + "letters": 17 + }, + "worst": { + "word": "mandarin", + "letters": 41 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 2, + "5": 1, + "6": 1 + }, + "totalLetters": { + "17": 1, + "26": 1, + "27": 1, + "30": 1, + "40": 1, + "41": 1 + }, + "gamesPlayed": 6, + "medianWords": 3.5, + "medianLetters": 28.5 + }, + "very": { + "best": { + "word": "very", + "letters": 12 + }, + "worst": { + "word": "very", + "letters": 35 + }, + "totalWords": { + "2": 2, + "3": 1, + "4": 3, + "6": 2, + "8": 1 + }, + "totalLetters": { + "12": 1, + "13": 1, + "22": 1, + "23": 1, + "25": 2, + "30": 1, + "35": 2 + }, + "gamesPlayed": 9, + "medianWords": 4, + "medianLetters": 25 + }, + "doll": { + "best": { + "word": "doll", + "letters": 13 + }, + "worst": { + "word": "doll", + "letters": 38 + }, + "totalWords": { + "2": 1, + "4": 1, + "5": 2, + "7": 2, + "8": 1 + }, + "totalLetters": { + "13": 1, + "21": 1, + "22": 2, + "31": 1, + "32": 1, + "38": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 22 + }, + "pastry": { + "best": { + "word": "pastry", + "letters": 20 + }, + "worst": { + "word": "pastry", + "letters": 32 + }, + "totalWords": { + "4": 2, + "5": 2, + "6": 1 + }, + "totalLetters": { + "20": 1, + "27": 1, + "29": 1, + "31": 1, + "32": 1 + }, + "gamesPlayed": 5, + "medianWords": 5, + "medianLetters": 29 + }, + "wasp": { + "best": { + "word": "wasp", + "letters": 16 + }, + "worst": { + "word": "wasp", + "letters": 32 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 3, + "5": 1, + "7": 1 + }, + "totalLetters": { + "16": 1, + "17": 1, + "18": 1, + "21": 2, + "24": 1, + "26": 1, + "32": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 19.5 + }, + "dearth": { + "best": { + "word": "dearth", + "letters": 24 + }, + "worst": { + "word": "dearth", + "letters": 53 + }, + "totalWords": { + "3": 1, + "5": 5, + "6": 2, + "10": 1 + }, + "totalLetters": { + "24": 1, + "26": 1, + "27": 1, + "31": 1, + "32": 1, + "34": 1, + "35": 1, + "42": 1, + "53": 1 + }, + "gamesPlayed": 9, + "medianWords": 5, + "medianLetters": 32 + }, + "doodle": { + "best": { + "word": "doodle", + "letters": 21 + }, + "worst": { + "word": "doodle", + "letters": 43 + }, + "totalWords": { + "3": 1, + "4": 2, + "6": 1, + "8": 1 + }, + "totalLetters": { + "21": 1, + "23": 1, + "25": 1, + "36": 1, + "43": 1 + }, + "gamesPlayed": 5, + "medianWords": 4, + "medianLetters": 25 + }, + "farm": { + "best": { + "word": "farm", + "letters": 13 + }, + "worst": { + "word": "farm", + "letters": 36 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 3, + "5": 2, + "7": 1 + }, + "totalLetters": { + "13": 1, + "14": 1, + "18": 1, + "20": 1, + "24": 1, + "25": 1, + "27": 1, + "36": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 22 + }, + "whisk": { + "best": { + "word": "whisk", + "letters": 24 + }, + "worst": { + "word": "whisk", + "letters": 47 + }, + "totalWords": { + "4": 4, + "6": 2, + "9": 1 + }, + "totalLetters": { + "24": 3, + "27": 2, + "32": 1, + "47": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 27 + }, + "defense": { + "best": { + "word": "defense", + "letters": 16 + }, + "worst": { + "word": "defense", + "letters": 36 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 1, + "5": 2, + "6": 2, + "7": 1 + }, + "totalLetters": { + "16": 1, + "25": 1, + "26": 1, + "28": 2, + "35": 1, + "36": 2 + }, + "gamesPlayed": 8, + "medianWords": 4.5, + "medianLetters": 27 + }, + "none": { + "best": { + "word": "none", + "letters": 26 + }, + "worst": { + "word": "none", + "letters": 48 + }, + "totalWords": { + "5": 2, + "7": 1, + "8": 1, + "9": 1, + "11": 1 + }, + "totalLetters": { + "26": 2, + "35": 1, + "38": 1, + "40": 1, + "48": 1 + }, + "gamesPlayed": 6, + "medianWords": 7.5, + "medianLetters": 36.5 + }, + "delight": { + "best": { + "word": "delight", + "letters": 19 + }, + "worst": { + "word": "delight", + "letters": 47 + }, + "totalWords": { + "3": 4, + "5": 1, + "7": 2 + }, + "totalLetters": { + "19": 1, + "20": 1, + "21": 1, + "29": 1, + "31": 1, + "44": 1, + "47": 1 + }, + "gamesPlayed": 7, + "medianWords": 3, + "medianLetters": 29 + }, + "eleventh": { + "best": { + "word": "eleventh", + "letters": 25 + }, + "worst": { + "word": "eleventh", + "letters": 40 + }, + "totalWords": { + "3": 1, + "5": 4, + "6": 3 + }, + "totalLetters": { + "25": 1, + "28": 1, + "30": 1, + "31": 1, + "32": 2, + "34": 1, + "40": 1 + }, + "gamesPlayed": 8, + "medianWords": 4, + "medianLetters": 31.5 + }, + "yard": { + "best": { + "word": "yard", + "letters": 13 + }, + "worst": { + "word": "yard", + "letters": 38 + }, + "totalWords": { + "2": 2, + "3": 3, + "5": 1, + "8": 1, + "9": 1 + }, + "totalLetters": { + "13": 1, + "17": 2, + "19": 1, + "22": 1, + "26": 1, + "37": 1, + "38": 1 + }, + "gamesPlayed": 8, + "medianWords": 2.5, + "medianLetters": 20.5 + }, + "superior": { + "best": { + "word": "superior", + "letters": 17 + }, + "worst": { + "word": "superior", + "letters": 36 + }, + "totalWords": { + "2": 2, + "3": 3, + "4": 2, + "6": 1 + }, + "totalLetters": { + "17": 2, + "24": 1, + "26": 1, + "27": 1, + "28": 1, + "33": 1, + "36": 1 + }, + "gamesPlayed": 8, + "medianWords": 2.5, + "medianLetters": 26.5 + }, + "improve": { + "best": { + "word": "improve", + "letters": 22 + }, + "worst": { + "word": "improve", + "letters": 46 + }, + "totalWords": { + "3": 2, + "4": 2, + "6": 2, + "8": 1, + "9": 1 + }, + "totalLetters": { + "22": 1, + "25": 1, + "34": 2, + "36": 1, + "39": 1, + "43": 1, + "46": 1 + }, + "gamesPlayed": 8, + "medianWords": 5, + "medianLetters": 35 + }, + "hangar": { + "best": { + "word": "hangar", + "letters": 19 + }, + "worst": { + "word": "hangar", + "letters": 33 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 1, + "5": 2, + "6": 1 + }, + "totalLetters": { + "19": 2, + "24": 1, + "27": 1, + "32": 1, + "33": 1 + }, + "gamesPlayed": 6, + "medianWords": 4.5, + "medianLetters": 25.5 + }, + "swahili": { + "best": { + "word": "swahili", + "letters": 24 + }, + "worst": { + "word": "swahili", + "letters": 39 + }, + "totalWords": { + "3": 1, + "4": 1, + "5": 1, + "6": 2, + "7": 1, + "8": 1 + }, + "totalLetters": { + "24": 1, + "27": 1, + "32": 1, + "34": 1, + "37": 2, + "39": 1 + }, + "gamesPlayed": 7, + "medianWords": 6, + "medianLetters": 34 + }, + "withdraw": { + "best": { + "word": "withdraw", + "letters": 21 + }, + "worst": { + "word": "withdraw", + "letters": 54 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 2, + "5": 1, + "6": 1, + "8": 1, + "9": 1, + "11": 1 + }, + "totalLetters": { + "21": 1, + "25": 1, + "26": 1, + "29": 1, + "34": 2, + "39": 1, + "44": 1, + "54": 1 + }, + "gamesPlayed": 9, + "medianWords": 5, + "medianLetters": 34 + }, + "vanquish": { + "best": { + "word": "vanquish", + "letters": 23 + }, + "worst": { + "word": "vanquish", + "letters": 56 + }, + "totalWords": { + "3": 2, + "4": 1, + "5": 1, + "9": 1, + "10": 1, + "13": 1 + }, + "totalLetters": { + "23": 1, + "27": 2, + "34": 1, + "49": 1, + "50": 1, + "56": 1 + }, + "gamesPlayed": 7, + "medianWords": 5, + "medianLetters": 34 + }, + "shunt": { + "best": { + "word": "shunt", + "letters": 19 + }, + "worst": { + "word": "shunt", + "letters": 39 + }, + "totalWords": { + "3": 1, + "4": 4, + "5": 2, + "7": 1 + }, + "totalLetters": { + "19": 1, + "22": 1, + "24": 2, + "25": 1, + "28": 1, + "29": 1, + "39": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 24.5 + }, + "enjoy": { + "best": { + "word": "enjoy", + "letters": 20 + }, + "worst": { + "word": "enjoy", + "letters": 35 + }, + "totalWords": { + "3": 1, + "4": 3, + "6": 1, + "8": 1 + }, + "totalLetters": { + "20": 1, + "24": 1, + "26": 1, + "27": 1, + "34": 1, + "35": 1 + }, + "gamesPlayed": 6, + "medianWords": 3.5, + "medianLetters": 26.5 + }, + "lodging": { + "best": { + "word": "lodging", + "letters": 32 + }, + "worst": { + "word": "lodging", + "letters": 95 + }, + "totalWords": { + "4": 1, + "5": 2, + "6": 1, + "7": 1, + "18": 1 + }, + "totalLetters": { + "32": 1, + "33": 1, + "34": 1, + "39": 1, + "44": 1, + "95": 1 + }, + "gamesPlayed": 6, + "medianWords": 5.5, + "medianLetters": 36.5 + }, + "fist": { + "best": { + "word": "fist", + "letters": 17 + }, + "worst": { + "word": "fist", + "letters": 29 + }, + "totalWords": { + "3": 2, + "4": 2, + "5": 3 + }, + "totalLetters": { + "17": 1, + "20": 1, + "22": 2, + "26": 2, + "29": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 22 + }, + "result": { + "best": { + "word": "result", + "letters": 21 + }, + "worst": { + "word": "result", + "letters": 42 + }, + "totalWords": { + "3": 2, + "4": 2, + "5": 1, + "6": 1, + "7": 1 + }, + "totalLetters": { + "21": 1, + "24": 1, + "26": 1, + "27": 1, + "29": 1, + "32": 1, + "42": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 27 + }, + "slang": { + "best": { + "word": "slang", + "letters": 14 + }, + "worst": { + "word": "slang", + "letters": 36 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 3, + "5": 1, + "7": 1 + }, + "totalLetters": { + "14": 1, + "22": 1, + "23": 1, + "24": 2, + "25": 1, + "36": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 24 + }, + "sincerity": { + "best": { + "word": "sincerity", + "letters": 22 + }, + "worst": { + "word": "sincerity", + "letters": 46 + }, + "totalWords": { + "3": 3, + "4": 4, + "6": 2 + }, + "totalLetters": { + "22": 1, + "28": 1, + "30": 2, + "32": 1, + "33": 2, + "40": 1, + "46": 1 + }, + "gamesPlayed": 9, + "medianWords": 4, + "medianLetters": 32 + } + }, + "hardestWords": [ + "hawthorn", + "symbolize", + "feminism", + "statute", + "affinity", + "cessation", + "ukrainian", + "reprimand", + "hindsight", + "incentive", + "overpower", + "informant", + "invention", + "aquarius", + "itinerary", + "operator", + "imitation", + "inject", + "disperse", + "defector", + "kangaroo", + "textbook", + "swimsuit", + "gibberish", + "willow", + "periphery", + "height", + "statesman", + "lecturer", + "billboard", + "journey", + "xerox", + "itself", + "squeak", + "barricade", + "slipped", + "ambiguous", + "shooting", + "threaten", + "expose", + "argentine", + "none", + "useless", + "microwave", + "lodging", + "aquatic", + "singapore", + "hairdryer", + "blindfold", + "freestyle" + ], + "bestWords": [ + "drop", + "chart", + "ghetto", + "riot", + "much", + "team", + "tape", + "halt", + "psalm", + "pain", + "ride", + "recoil", + "talk", + "tenor", + "employ", + "wasp", + "mince", + "cargo", + "yard", + "aisle", + "fond", + "stool", + "energy", + "carp", + "near", + "soft", + "pink", + "punk", + "pork", + "gulf", + "sanity", + "honor", + "pointer", + "surely", + "tariff", + "amount", + "cent", + "twenty", + "ready", + "farm", + "monkey", + "beach", + "left", + "lime", + "fist", + "comic", + "cocktail", + "doll", + "such", + "trace" + ] +} \ No newline at end of file diff --git a/public/year-summary/2025/es-info.json b/public/year-summary/2025/es-info.json new file mode 100644 index 000000000..92f8f5b94 --- /dev/null +++ b/public/year-summary/2025/es-info.json @@ -0,0 +1,2076 @@ +{ + "all": { + "best": { + "word": "pasta", + "letters": 11 + }, + "worst": { + "word": "reclutar", + "letters": 138 + }, + "totalWords": { + "2": 3, + "3": 3, + "4": 7, + "5": 13, + "6": 8, + "7": 8, + "8": 8, + "9": 6, + "10": 3, + "11": 3, + "13": 2, + "14": 2, + "15": 2, + "19": 1, + "20": 1, + "29": 1 + }, + "totalLetters": { + "11": 1, + "12": 1, + "13": 1, + "16": 2, + "21": 2, + "22": 2, + "23": 1, + "24": 1, + "25": 2, + "26": 3, + "27": 1, + "28": 4, + "29": 3, + "30": 1, + "31": 3, + "32": 2, + "33": 2, + "34": 4, + "35": 1, + "37": 1, + "38": 4, + "39": 4, + "41": 1, + "42": 2, + "43": 2, + "44": 2, + "45": 2, + "47": 1, + "49": 1, + "50": 1, + "52": 2, + "53": 2, + "55": 1, + "65": 1, + "67": 2, + "70": 2, + "79": 1, + "105": 1, + "138": 1 + }, + "gamesPlayed": 73, + "medianWords": 7, + "medianLetters": 34 + }, + "activePlayers": 3, + "byUser": { + "Felonious_Gru": { + "hardest50": { + "best": { + "word": "pasta", + "letters": 11 + }, + "worst": { + "word": "reclutar", + "letters": 138 + }, + "totalWords": { + "2": 3, + "4": 3, + "5": 7, + "6": 4, + "7": 4, + "8": 6, + "9": 5, + "10": 2, + "11": 1, + "13": 2, + "14": 2, + "15": 2, + "19": 1, + "29": 1 + }, + "totalLetters": { + "11": 1, + "12": 1, + "13": 1, + "21": 1, + "22": 2, + "24": 1, + "26": 1, + "28": 2, + "29": 1, + "30": 1, + "31": 3, + "34": 3, + "35": 1, + "37": 1, + "38": 2, + "39": 3, + "42": 1, + "43": 1, + "44": 2, + "45": 1, + "47": 1, + "49": 1, + "50": 1, + "52": 2, + "53": 2, + "65": 1, + "67": 1, + "70": 2, + "79": 1, + "138": 1 + }, + "gamesPlayed": 45, + "medianWords": 8, + "medianLetters": 38 + }, + "results": { + "1": { + "best": { + "word": "pasta", + "letters": 11 + }, + "worst": { + "word": "reclutar", + "letters": 138 + }, + "totalWords": { + "2": 1, + "5": 1, + "7": 2, + "8": 4, + "9": 2, + "11": 1, + "13": 1, + "14": 1, + "29": 1 + }, + "totalLetters": { + "11": 1, + "31": 1, + "34": 1, + "37": 1, + "38": 1, + "43": 1, + "44": 1, + "47": 1, + "49": 1, + "50": 1, + "52": 2, + "53": 1, + "138": 1 + }, + "gamesPlayed": 15, + "medianWords": 7.5, + "medianLetters": 45.5 + }, + "2": { + "best": { + "word": "rosa", + "letters": 12 + }, + "worst": { + "word": "provecho", + "letters": 70 + }, + "totalWords": { + "2": 1, + "5": 2, + "6": 1, + "7": 1, + "8": 1, + "10": 1, + "14": 1, + "15": 1 + }, + "totalLetters": { + "12": 1, + "21": 1, + "28": 1, + "31": 1, + "38": 1, + "44": 1, + "53": 1, + "70": 2 + }, + "gamesPlayed": 9, + "medianWords": 7, + "medianLetters": 38 + }, + "4": { + "best": { + "word": "comino", + "letters": 45 + }, + "worst": { + "word": "comino", + "letters": 45 + }, + "totalWords": { + "9": 1 + }, + "totalLetters": { + "45": 1 + }, + "gamesPlayed": 1, + "medianWords": 9, + "medianLetters": 45 + }, + "5": { + "best": { + "word": "hermana", + "letters": 34 + }, + "worst": { + "word": "hermana", + "letters": 34 + }, + "totalWords": { + "6": 1 + }, + "totalLetters": { + "34": 1 + }, + "gamesPlayed": 1, + "medianWords": 6, + "medianLetters": 34 + }, + "6": { + "best": { + "word": "nicho", + "letters": 22 + }, + "worst": { + "word": "liberal", + "letters": 35 + }, + "totalWords": { + "4": 1, + "5": 1, + "6": 1 + }, + "totalLetters": { + "22": 1, + "29": 1, + "35": 1 + }, + "gamesPlayed": 3, + "medianWords": 5, + "medianLetters": 29 + }, + "7": { + "best": { + "word": "grado", + "letters": 22 + }, + "worst": { + "word": "parrilla", + "letters": 79 + }, + "totalWords": { + "4": 1, + "7": 1, + "8": 1, + "9": 1, + "19": 1 + }, + "totalLetters": { + "22": 1, + "34": 1, + "39": 1, + "42": 1, + "79": 1 + }, + "gamesPlayed": 5, + "medianWords": 8, + "medianLetters": 39 + }, + "8": { + "best": { + "word": "suerte", + "letters": 26 + }, + "worst": { + "word": "paja", + "letters": 39 + }, + "totalWords": { + "5": 1, + "10": 1 + }, + "totalLetters": { + "26": 1, + "39": 1 + }, + "gamesPlayed": 2, + "medianWords": 7.5, + "medianLetters": 32.5 + }, + "9": { + "best": { + "word": "honor", + "letters": 13 + }, + "worst": { + "word": "fundar", + "letters": 39 + }, + "totalWords": { + "2": 1, + "5": 1, + "6": 1, + "9": 1 + }, + "totalLetters": { + "13": 1, + "30": 1, + "31": 1, + "39": 1 + }, + "gamesPlayed": 5, + "medianWords": 5.5, + "medianLetters": 30.5 + }, + "10": { + "best": { + "word": "armario", + "letters": 24 + }, + "worst": { + "word": "navegante", + "letters": 67 + }, + "totalWords": { + "4": 1, + "5": 1, + "13": 1 + }, + "totalLetters": { + "24": 1, + "28": 1, + "67": 1 + }, + "gamesPlayed": 3, + "medianWords": 5, + "medianLetters": 28 + }, + "12": { + "best": { + "word": "toalla", + "letters": 65 + }, + "worst": { + "word": "toalla", + "letters": 65 + }, + "totalWords": { + "15": 1 + }, + "totalLetters": { + "65": 1 + }, + "gamesPlayed": 1, + "medianWords": 15, + "medianLetters": 65 + }, + "year": { + "best": { + "word": "pasta", + "letters": 11 + }, + "worst": { + "word": "reclutar", + "letters": 138 + }, + "totalWords": { + "2": 3, + "4": 3, + "5": 7, + "6": 4, + "7": 4, + "8": 6, + "9": 5, + "10": 2, + "11": 1, + "13": 2, + "14": 2, + "15": 2, + "19": 1, + "29": 1 + }, + "totalLetters": { + "11": 1, + "12": 1, + "13": 1, + "21": 1, + "22": 2, + "24": 1, + "26": 1, + "28": 2, + "29": 1, + "30": 1, + "31": 3, + "34": 3, + "35": 1, + "37": 1, + "38": 2, + "39": 3, + "42": 1, + "43": 1, + "44": 2, + "45": 1, + "47": 1, + "49": 1, + "50": 1, + "52": 2, + "53": 2, + "65": 1, + "67": 1, + "70": 2, + "79": 1, + "138": 1 + }, + "gamesPlayed": 45, + "medianWords": 8, + "medianLetters": 38 + } + }, + "dates": { + "1": [ + "20.01.2025", + "29.01.2025", + "31.01.2025", + "18.01.2025", + "13.01.2025", + "15.01.2025", + "26.01.2025", + "21.01.2025" + ], + "2": [ + "03.02.2025", + "04.02.2025", + "20.12.2025", + "12.02.2025", + "10.02.2025", + "08.02.2025", + "15.02.2025", + "09.02.2025" + ], + "4": [ + "08.04.2025" + ], + "5": [ + "06.05.2025" + ], + "6": [ + "16.06.2025" + ], + "7": [ + "19.07.2025", + "31.07.2025", + "12.07.2025" + ], + "8": [ + "10.08.2025" + ], + "9": [ + "12.09.2025", + "13.09.2025", + "18.09.2025", + "30.09.2025" + ], + "10": [ + "01.10.2025", + "04.10.2025" + ], + "12": [ + "20.12.2025" + ], + "year": [ + "01.10.2025", + "03.02.2025", + "04.02.2025", + "04.10.2025", + "08.04.2025", + "10.08.2025", + "12.09.2025", + "13.09.2025", + "18.09.2025", + "20.01.2025", + "20.12.2025", + "29.01.2025", + "30.09.2025", + "31.01.2025", + "12.02.2025", + "18.01.2025", + "10.02.2025", + "16.06.2025", + "19.07.2025", + "06.05.2025", + "13.01.2025", + "15.01.2025", + "26.01.2025", + "21.01.2025", + "31.07.2025", + "08.02.2025", + "12.07.2025", + "15.02.2025", + "09.02.2025" + ] + }, + "worstDates": { + "1": [ + "11.01.2025", + "17.01.2025", + "28.01.2025", + "29.01.2025", + "31.01.2025", + "19.01.2025", + "27.01.2025", + "13.01.2025", + "15.01.2025", + "26.01.2025", + "21.01.2025", + "12.01.2025" + ], + "2": [ + "03.02.2025", + "20.12.2025", + "14.02.2025", + "10.02.2025", + "22.02.2025", + "09.02.2025" + ], + "4": [ + "08.04.2025" + ], + "6": [ + "12.06.2025", + "24.06.2025" + ], + "7": [ + "08.07.2025", + "10.07.2025", + "19.07.2025", + "31.07.2025" + ], + "8": [ + "20.08.2025" + ], + "9": [ + "12.09.2025", + "13.09.2025", + "18.09.2025", + "30.09.2025" + ], + "10": [ + "01.10.2025", + "04.10.2025", + "28.10.2025" + ], + "12": [ + "20.12.2025" + ], + "year": [ + "01.10.2025", + "03.02.2025", + "04.10.2025", + "08.04.2025", + "08.07.2025", + "10.07.2025", + "11.01.2025", + "12.06.2025", + "12.09.2025", + "13.09.2025", + "17.01.2025", + "18.09.2025", + "20.08.2025", + "20.12.2025", + "28.01.2025", + "28.10.2025", + "29.01.2025", + "30.09.2025", + "31.01.2025", + "14.02.2025", + "24.06.2025", + "10.02.2025", + "19.07.2025", + "19.01.2025", + "27.01.2025", + "13.01.2025", + "15.01.2025", + "22.02.2025", + "26.01.2025", + "21.01.2025", + "31.07.2025", + "12.01.2025", + "09.02.2025" + ] + } + }, + "Greyman": { + "results": { + "1": { + "best": { + "word": "limitado", + "letters": 21 + }, + "worst": { + "word": "alentador", + "letters": 55 + }, + "totalWords": { + "3": 1, + "4": 1, + "5": 1, + "6": 2, + "9": 1, + "10": 1, + "11": 1 + }, + "totalLetters": { + "21": 1, + "25": 1, + "28": 1, + "32": 1, + "41": 1, + "43": 1, + "45": 1, + "55": 1 + }, + "gamesPlayed": 8, + "medianWords": 5.5, + "medianLetters": 36.5 + }, + "2": { + "best": { + "word": "asar", + "letters": 16 + }, + "worst": { + "word": "cochera", + "letters": 67 + }, + "totalWords": { + "3": 2, + "7": 2, + "8": 1, + "11": 1 + }, + "totalLetters": { + "16": 2, + "34": 1, + "38": 1, + "42": 1, + "67": 1 + }, + "gamesPlayed": 6, + "medianWords": 5, + "medianLetters": 36 + }, + "5": { + "best": { + "word": "hermana", + "letters": 38 + }, + "worst": { + "word": "hermana", + "letters": 38 + }, + "totalWords": { + "8": 1 + }, + "totalLetters": { + "38": 1 + }, + "gamesPlayed": 1, + "medianWords": 8, + "medianLetters": 38 + }, + "6": { + "best": { + "word": "rumana", + "letters": 25 + }, + "worst": { + "word": "liberal", + "letters": 32 + }, + "totalWords": { + "5": 3 + }, + "totalLetters": { + "25": 1, + "26": 1, + "32": 1 + }, + "gamesPlayed": 3, + "medianWords": 5, + "medianLetters": 26 + }, + "7": { + "best": { + "word": "grado", + "letters": 23 + }, + "worst": { + "word": "vejez", + "letters": 33 + }, + "totalWords": { + "4": 1, + "6": 2 + }, + "totalLetters": { + "23": 1, + "29": 1, + "33": 1 + }, + "gamesPlayed": 3, + "medianWords": 6, + "medianLetters": 29 + }, + "8": { + "best": { + "word": "suerte", + "letters": 27 + }, + "worst": { + "word": "paja", + "letters": 33 + }, + "totalWords": { + "4": 1, + "7": 1 + }, + "totalLetters": { + "27": 1, + "33": 1 + }, + "gamesPlayed": 2, + "medianWords": 5.5, + "medianLetters": 30 + }, + "9": { + "best": { + "word": "fundar", + "letters": 39 + }, + "worst": { + "word": "fundar", + "letters": 39 + }, + "totalWords": { + "7": 1 + }, + "totalLetters": { + "39": 1 + }, + "gamesPlayed": 1, + "medianWords": 7, + "medianLetters": 39 + }, + "10": { + "best": { + "word": "mapache", + "letters": 26 + }, + "worst": { + "word": "mapache", + "letters": 26 + }, + "totalWords": { + "5": 1 + }, + "totalLetters": { + "26": 1 + }, + "gamesPlayed": 1, + "medianWords": 5, + "medianLetters": 26 + }, + "year": { + "best": { + "word": "asar", + "letters": 16 + }, + "worst": { + "word": "cochera", + "letters": 67 + }, + "totalWords": { + "3": 3, + "4": 3, + "5": 5, + "6": 4, + "7": 4, + "8": 2, + "9": 1, + "10": 1, + "11": 2 + }, + "totalLetters": { + "16": 2, + "21": 1, + "23": 1, + "25": 2, + "26": 2, + "27": 1, + "28": 1, + "29": 1, + "32": 2, + "33": 2, + "34": 1, + "38": 2, + "39": 1, + "41": 1, + "42": 1, + "43": 1, + "45": 1, + "55": 1, + "67": 1 + }, + "gamesPlayed": 25, + "medianWords": 6, + "medianLetters": 32 + } + }, + "dates": { + "1": [ + "11.01.2025", + "17.01.2025", + "28.01.2025", + "19.01.2025", + "27.01.2025", + "12.01.2025" + ], + "2": [ + "14.02.2025", + "22.02.2025" + ], + "6": [ + "12.06.2025", + "24.06.2025" + ], + "7": [ + "08.07.2025", + "10.07.2025" + ], + "8": [ + "20.08.2025" + ], + "9": [ + "13.09.2025" + ], + "10": [ + "28.10.2025" + ], + "year": [ + "08.07.2025", + "10.07.2025", + "11.01.2025", + "12.06.2025", + "13.09.2025", + "17.01.2025", + "20.08.2025", + "28.01.2025", + "28.10.2025", + "14.02.2025", + "24.06.2025", + "19.01.2025", + "27.01.2025", + "22.02.2025", + "12.01.2025" + ] + }, + "worstDates": { + "1": [ + "20.01.2025", + "18.01.2025" + ], + "2": [ + "04.02.2025", + "12.02.2025", + "08.02.2025", + "15.02.2025" + ], + "5": [ + "06.05.2025" + ], + "6": [ + "16.06.2025" + ], + "7": [ + "12.07.2025" + ], + "8": [ + "10.08.2025" + ], + "9": [ + "13.09.2025" + ], + "year": [ + "04.02.2025", + "10.08.2025", + "13.09.2025", + "20.01.2025", + "12.02.2025", + "18.01.2025", + "16.06.2025", + "06.05.2025", + "08.02.2025", + "12.07.2025", + "15.02.2025" + ] + } + }, + "redve": { + "results": { + "6": { + "best": { + "word": "rumana", + "letters": 29 + }, + "worst": { + "word": "rumana", + "letters": 29 + }, + "totalWords": { + "5": 1 + }, + "totalLetters": { + "29": 1 + }, + "gamesPlayed": 1, + "medianWords": 5, + "medianLetters": 29 + }, + "year": { + "best": { + "word": "rumana", + "letters": 29 + }, + "worst": { + "word": "rumana", + "letters": 29 + }, + "totalWords": { + "5": 1 + }, + "totalLetters": { + "29": 1 + }, + "gamesPlayed": 1, + "medianWords": 5, + "medianLetters": 29 + } + }, + "dates": { + "year": [] + }, + "worstDates": { + "6": [ + "13.06.2025" + ], + "year": [ + "13.06.2025" + ] + } + } + }, + "wordsByDates": { + "20.12.2025": "toalla", + "28.10.2025": "mapache", + "04.10.2025": "navegante", + "01.10.2025": "armario", + "30.09.2025": "honor", + "18.09.2025": "optimista", + "13.09.2025": "fundar", + "12.09.2025": "vela", + "11.09.2025": "˜[\u000bLM\u000bŒM\u000bŒ‹ŒM\u000bŒ\u000bš\u0019\\‹L˜X‹›Û\u001b\u000bL\u000b˜KLØKœ\u001d\u000bLÌ˚YËL\u000b›Ú˜KL\nH", + "20.08.2025": "paja", + "10.08.2025": "suerte", + "31.07.2025": "parrilla", + "19.07.2025": "derecho", + "12.07.2025": "grado", + "10.07.2025": "vejez", + "08.07.2025": "bigote", + "24.06.2025": "liberal", + "16.06.2025": "nicho", + "13.06.2025": "rumana", + "12.06.2025": "rumana", + "06.05.2025": "hermana", + "08.04.2025": "comino", + "22.02.2025": "provecho", + "15.02.2025": "lavabo", + "14.02.2025": "asar", + "12.02.2025": "rosa", + "10.02.2025": "inocente", + "09.02.2025": "izquierdo", + "08.02.2025": "boda", + "04.02.2025": "cochera", + "03.02.2025": "adicta", + "31.01.2025": "recibir", + "29.01.2025": "encendido", + "28.01.2025": "hereje", + "27.01.2025": "conducto", + "26.01.2025": "pasta", + "21.01.2025": "iniciar", + "20.01.2025": "ligado", + "19.01.2025": "panal", + "18.01.2025": "alentador", + "17.01.2025": "limitado", + "15.01.2025": "colorido", + "13.01.2025": "centrar", + "12.01.2025": "peludo", + "11.01.2025": "reclutar", + "10.01.2025": "±­HJ\u0018Ý[\u001d\u001bËLL\u000bŒM‹ŒKŒM\u000bŒKš\u0018X‹YŒ\u000bœ\u001bÛ\u000bL̘˙]\\‹X‹›\u001d^\u000bLÌˌØÚ\u000bY˜‹š[\u000bM\f\u000b˜Ý[\u000bLŒYŠH" + }, + "datesByWords": { + "toalla": "20.12.2025", + "mapache": "28.10.2025", + "navegante": "04.10.2025", + "armario": "01.10.2025", + "honor": "30.09.2025", + "optimista": "18.09.2025", + "fundar": "13.09.2025", + "vela": "12.09.2025", + "˜[\u000bLM\u000bŒM\u000bŒ‹ŒM\u000bŒ\u000bš\u0019\\‹L˜X‹›Û\u001b\u000bL\u000b˜KLØKœ\u001d\u000bLÌ˚YËL\u000b›Ú˜KL\nH": "11.09.2025", + "paja": "20.08.2025", + "suerte": "10.08.2025", + "parrilla": "31.07.2025", + "derecho": "19.07.2025", + "grado": "12.07.2025", + "vejez": "10.07.2025", + "bigote": "08.07.2025", + "liberal": "24.06.2025", + "nicho": "16.06.2025", + "rumana": "12.06.2025", + "hermana": "06.05.2025", + "comino": "08.04.2025", + "provecho": "22.02.2025", + "lavabo": "15.02.2025", + "asar": "14.02.2025", + "rosa": "12.02.2025", + "inocente": "10.02.2025", + "izquierdo": "09.02.2025", + "boda": "08.02.2025", + "cochera": "04.02.2025", + "adicta": "03.02.2025", + "recibir": "31.01.2025", + "encendido": "29.01.2025", + "hereje": "28.01.2025", + "conducto": "27.01.2025", + "pasta": "26.01.2025", + "iniciar": "21.01.2025", + "ligado": "20.01.2025", + "panal": "19.01.2025", + "alentador": "18.01.2025", + "limitado": "17.01.2025", + "colorido": "15.01.2025", + "centrar": "13.01.2025", + "peludo": "12.01.2025", + "reclutar": "11.01.2025", + "±­HJ\u0018Ý[\u001d\u001bËLL\u000bŒM‹ŒKŒM\u000bŒKš\u0018X‹YŒ\u000bœ\u001bÛ\u000bL̘˙]\\‹X‹›\u001d^\u000bLÌˌØÚ\u000bY˜‹š[\u000bM\f\u000b˜Ý[\u000bLŒYŠH": "10.01.2025" + }, + "rankByWords": { + "armario": { + "best": { + "word": "armario", + "letters": 24 + }, + "worst": { + "word": "armario", + "letters": 24 + }, + "totalWords": { + "4": 1 + }, + "totalLetters": { + "24": 1 + }, + "gamesPlayed": 1, + "medianWords": 4, + "medianLetters": 24 + }, + "adicta": { + "best": { + "word": "adicta", + "letters": 38 + }, + "worst": { + "word": "adicta", + "letters": 38 + }, + "totalWords": { + "7": 1 + }, + "totalLetters": { + "38": 1 + }, + "gamesPlayed": 1, + "medianWords": 7, + "medianLetters": 38 + }, + "cochera": { + "best": { + "word": "cochera", + "letters": 44 + }, + "worst": { + "word": "cochera", + "letters": 67 + }, + "totalWords": { + "8": 1, + "11": 1 + }, + "totalLetters": { + "44": 1, + "67": 1 + }, + "gamesPlayed": 2, + "medianWords": 9.5, + "medianLetters": 55.5 + }, + "navegante": { + "best": { + "word": "navegante", + "letters": 67 + }, + "worst": { + "word": "navegante", + "letters": 67 + }, + "totalWords": { + "13": 1 + }, + "totalLetters": { + "67": 1 + }, + "gamesPlayed": 1, + "medianWords": 13, + "medianLetters": 67 + }, + "comino": { + "best": { + "word": "comino", + "letters": 45 + }, + "worst": { + "word": "comino", + "letters": 45 + }, + "totalWords": { + "9": 1 + }, + "totalLetters": { + "45": 1 + }, + "gamesPlayed": 1, + "medianWords": 9, + "medianLetters": 45 + }, + "bigote": { + "best": { + "word": "bigote", + "letters": 29 + }, + "worst": { + "word": "bigote", + "letters": 34 + }, + "totalWords": { + "6": 1, + "7": 1 + }, + "totalLetters": { + "29": 1, + "34": 1 + }, + "gamesPlayed": 2, + "medianWords": 6.5, + "medianLetters": 31.5 + }, + "±­HJ\u0018Ý[\u001d\u001bËLL\u000bŒM‹ŒKŒM\u000bŒKš\u0018X‹YŒ\u000bœ\u001bÛ\u000bL̘˙]\\‹X‹›\u001d^\u000bLÌˌØÚ\u000bY˜‹š[\u000bM\f\u000b˜Ý[\u000bLŒYŠH": { + "best": { + "word": "", + "letters": 200 + }, + "worst": { + "word": "", + "letters": 0 + }, + "totalWords": {}, + "totalLetters": {}, + "gamesPlayed": 1, + "medianWords": 0, + "medianLetters": 0 + }, + "vejez": { + "best": { + "word": "vejez", + "letters": 33 + }, + "worst": { + "word": "vejez", + "letters": 39 + }, + "totalWords": { + "6": 1, + "9": 1 + }, + "totalLetters": { + "33": 1, + "39": 1 + }, + "gamesPlayed": 2, + "medianWords": 7.5, + "medianLetters": 36 + }, + "suerte": { + "best": { + "word": "suerte", + "letters": 26 + }, + "worst": { + "word": "suerte", + "letters": 27 + }, + "totalWords": { + "4": 1, + "5": 1 + }, + "totalLetters": { + "26": 1, + "27": 1 + }, + "gamesPlayed": 2, + "medianWords": 4.5, + "medianLetters": 26.5 + }, + "reclutar": { + "best": { + "word": "reclutar", + "letters": 45 + }, + "worst": { + "word": "reclutar", + "letters": 138 + }, + "totalWords": { + "9": 1, + "29": 1 + }, + "totalLetters": { + "45": 1, + "138": 1 + }, + "gamesPlayed": 2, + "medianWords": 19, + "medianLetters": 91.5 + }, + "˜[\u000bLM\u000bŒM\u000bŒ‹ŒM\u000bŒ\u000bš\u0019\\‹L˜X‹›Û\u001b\u000bL\u000b˜KLØKœ\u001d\u000bLÌ˚YËL\u000b›Ú˜KL\nH": { + "best": { + "word": "", + "letters": 200 + }, + "worst": { + "word": "", + "letters": 0 + }, + "totalWords": {}, + "totalLetters": {}, + "gamesPlayed": 1, + "medianWords": 0, + "medianLetters": 0 + }, + "rumana": { + "best": { + "word": "rumana", + "letters": 25 + }, + "worst": { + "word": "rumana", + "letters": 29 + }, + "totalWords": { + "5": 3 + }, + "totalLetters": { + "25": 1, + "29": 2 + }, + "gamesPlayed": 3, + "medianWords": 5, + "medianLetters": 29 + }, + "vela": { + "best": { + "word": "vela", + "letters": 30 + }, + "worst": { + "word": "vela", + "letters": 30 + }, + "totalWords": { + "6": 1 + }, + "totalLetters": { + "30": 1 + }, + "gamesPlayed": 1, + "medianWords": 6, + "medianLetters": 30 + }, + "fundar": { + "best": { + "word": "fundar", + "letters": 39 + }, + "worst": { + "word": "fundar", + "letters": 39 + }, + "totalWords": { + "7": 1, + "9": 1 + }, + "totalLetters": { + "39": 2 + }, + "gamesPlayed": 2, + "medianWords": 8, + "medianLetters": 39 + }, + "limitado": { + "best": { + "word": "limitado", + "letters": 21 + }, + "worst": { + "word": "limitado", + "letters": 43 + }, + "totalWords": { + "3": 1, + "8": 1 + }, + "totalLetters": { + "21": 1, + "43": 1 + }, + "gamesPlayed": 2, + "medianWords": 5.5, + "medianLetters": 32 + }, + "optimista": { + "best": { + "word": "optimista", + "letters": 31 + }, + "worst": { + "word": "optimista", + "letters": 31 + }, + "totalWords": { + "5": 1 + }, + "totalLetters": { + "31": 1 + }, + "gamesPlayed": 1, + "medianWords": 5, + "medianLetters": 31 + }, + "ligado": { + "best": { + "word": "ligado", + "letters": 34 + }, + "worst": { + "word": "ligado", + "letters": 43 + }, + "totalWords": { + "6": 1, + "7": 1 + }, + "totalLetters": { + "34": 1, + "43": 1 + }, + "gamesPlayed": 2, + "medianWords": 6.5, + "medianLetters": 38.5 + }, + "paja": { + "best": { + "word": "paja", + "letters": 33 + }, + "worst": { + "word": "paja", + "letters": 39 + }, + "totalWords": { + "7": 1, + "10": 1 + }, + "totalLetters": { + "33": 1, + "39": 1 + }, + "gamesPlayed": 2, + "medianWords": 8.5, + "medianLetters": 36 + }, + "toalla": { + "best": { + "word": "toalla", + "letters": 65 + }, + "worst": { + "word": "toalla", + "letters": 65 + }, + "totalWords": { + "15": 1 + }, + "totalLetters": { + "65": 1 + }, + "gamesPlayed": 1, + "medianWords": 15, + "medianLetters": 65 + }, + "hereje": { + "best": { + "word": "hereje", + "letters": 41 + }, + "worst": { + "word": "hereje", + "letters": 52 + }, + "totalWords": { + "10": 1, + "13": 1 + }, + "totalLetters": { + "41": 1, + "52": 1 + }, + "gamesPlayed": 2, + "medianWords": 11.5, + "medianLetters": 46.5 + }, + "mapache": { + "best": { + "word": "mapache", + "letters": 26 + }, + "worst": { + "word": "mapache", + "letters": 28 + }, + "totalWords": { + "5": 2 + }, + "totalLetters": { + "26": 1, + "28": 1 + }, + "gamesPlayed": 2, + "medianWords": 5, + "medianLetters": 27 + }, + "encendido": { + "best": { + "word": "encendido", + "letters": 53 + }, + "worst": { + "word": "encendido", + "letters": 53 + }, + "totalWords": { + "9": 1 + }, + "totalLetters": { + "53": 1 + }, + "gamesPlayed": 1, + "medianWords": 9, + "medianLetters": 53 + }, + "honor": { + "best": { + "word": "honor", + "letters": 13 + }, + "worst": { + "word": "honor", + "letters": 13 + }, + "totalWords": { + "2": 1 + }, + "totalLetters": { + "13": 1 + }, + "gamesPlayed": 1, + "medianWords": 2, + "medianLetters": 13 + }, + "recibir": { + "best": { + "word": "recibir", + "letters": 49 + }, + "worst": { + "word": "recibir", + "letters": 49 + }, + "totalWords": { + "14": 1 + }, + "totalLetters": { + "49": 1 + }, + "gamesPlayed": 1, + "medianWords": 14, + "medianLetters": 49 + }, + "asar": { + "best": { + "word": "asar", + "letters": 16 + }, + "worst": { + "word": "asar", + "letters": 21 + }, + "totalWords": { + "3": 1, + "5": 1 + }, + "totalLetters": { + "16": 1, + "21": 1 + }, + "gamesPlayed": 2, + "medianWords": 4, + "medianLetters": 18.5 + }, + "rosa": { + "best": { + "word": "rosa", + "letters": 12 + }, + "worst": { + "word": "rosa", + "letters": 16 + }, + "totalWords": { + "2": 1, + "3": 1 + }, + "totalLetters": { + "12": 1, + "16": 1 + }, + "gamesPlayed": 2, + "medianWords": 2.5, + "medianLetters": 14 + }, + "alentador": { + "best": { + "word": "alentador", + "letters": 50 + }, + "worst": { + "word": "alentador", + "letters": 55 + }, + "totalWords": { + "8": 1, + "11": 1 + }, + "totalLetters": { + "50": 1, + "55": 1 + }, + "gamesPlayed": 2, + "medianWords": 9.5, + "medianLetters": 52.5 + }, + "liberal": { + "best": { + "word": "liberal", + "letters": 32 + }, + "worst": { + "word": "liberal", + "letters": 35 + }, + "totalWords": { + "5": 1, + "6": 1 + }, + "totalLetters": { + "32": 1, + "35": 1 + }, + "gamesPlayed": 2, + "medianWords": 5.5, + "medianLetters": 33.5 + }, + "inocente": { + "best": { + "word": "inocente", + "letters": 53 + }, + "worst": { + "word": "inocente", + "letters": 53 + }, + "totalWords": { + "10": 1 + }, + "totalLetters": { + "53": 1 + }, + "gamesPlayed": 1, + "medianWords": 10, + "medianLetters": 53 + }, + "nicho": { + "best": { + "word": "nicho", + "letters": 22 + }, + "worst": { + "word": "nicho", + "letters": 26 + }, + "totalWords": { + "4": 1, + "5": 1 + }, + "totalLetters": { + "22": 1, + "26": 1 + }, + "gamesPlayed": 2, + "medianWords": 4.5, + "medianLetters": 24 + }, + "derecho": { + "best": { + "word": "derecho", + "letters": 42 + }, + "worst": { + "word": "derecho", + "letters": 42 + }, + "totalWords": { + "8": 1 + }, + "totalLetters": { + "42": 1 + }, + "gamesPlayed": 1, + "medianWords": 8, + "medianLetters": 42 + }, + "panal": { + "best": { + "word": "panal", + "letters": 25 + }, + "worst": { + "word": "panal", + "letters": 38 + }, + "totalWords": { + "4": 1, + "7": 1 + }, + "totalLetters": { + "25": 1, + "38": 1 + }, + "gamesPlayed": 2, + "medianWords": 5.5, + "medianLetters": 31.5 + }, + "conducto": { + "best": { + "word": "conducto", + "letters": 28 + }, + "worst": { + "word": "conducto", + "letters": 47 + }, + "totalWords": { + "5": 1, + "9": 1 + }, + "totalLetters": { + "28": 1, + "47": 1 + }, + "gamesPlayed": 2, + "medianWords": 7, + "medianLetters": 37.5 + }, + "hermana": { + "best": { + "word": "hermana", + "letters": 34 + }, + "worst": { + "word": "hermana", + "letters": 38 + }, + "totalWords": { + "6": 1, + "8": 1 + }, + "totalLetters": { + "34": 1, + "38": 1 + }, + "gamesPlayed": 2, + "medianWords": 7, + "medianLetters": 36 + }, + "centrar": { + "best": { + "word": "centrar", + "letters": 31 + }, + "worst": { + "word": "centrar", + "letters": 31 + }, + "totalWords": { + "5": 1 + }, + "totalLetters": { + "31": 1 + }, + "gamesPlayed": 1, + "medianWords": 5, + "medianLetters": 31 + }, + "colorido": { + "best": { + "word": "colorido", + "letters": 52 + }, + "worst": { + "word": "colorido", + "letters": 52 + }, + "totalWords": { + "11": 1 + }, + "totalLetters": { + "52": 1 + }, + "gamesPlayed": 1, + "medianWords": 11, + "medianLetters": 52 + }, + "provecho": { + "best": { + "word": "provecho", + "letters": 42 + }, + "worst": { + "word": "provecho", + "letters": 70 + }, + "totalWords": { + "7": 1, + "14": 1 + }, + "totalLetters": { + "42": 1, + "70": 1 + }, + "gamesPlayed": 2, + "medianWords": 10.5, + "medianLetters": 56 + }, + "pasta": { + "best": { + "word": "pasta", + "letters": 11 + }, + "worst": { + "word": "pasta", + "letters": 11 + }, + "totalWords": { + "2": 1 + }, + "totalLetters": { + "11": 1 + }, + "gamesPlayed": 1, + "medianWords": 2, + "medianLetters": 11 + }, + "iniciar": { + "best": { + "word": "iniciar", + "letters": 44 + }, + "worst": { + "word": "iniciar", + "letters": 44 + }, + "totalWords": { + "8": 1 + }, + "totalLetters": { + "44": 1 + }, + "gamesPlayed": 1, + "medianWords": 8, + "medianLetters": 44 + }, + "parrilla": { + "best": { + "word": "parrilla", + "letters": 79 + }, + "worst": { + "word": "parrilla", + "letters": 79 + }, + "totalWords": { + "19": 1 + }, + "totalLetters": { + "79": 1 + }, + "gamesPlayed": 1, + "medianWords": 19, + "medianLetters": 79 + }, + "boda": { + "best": { + "word": "boda", + "letters": 31 + }, + "worst": { + "word": "boda", + "letters": 38 + }, + "totalWords": { + "6": 1, + "8": 1 + }, + "totalLetters": { + "31": 1, + "38": 1 + }, + "gamesPlayed": 2, + "medianWords": 7, + "medianLetters": 34.5 + }, + "peludo": { + "best": { + "word": "peludo", + "letters": 32 + }, + "worst": { + "word": "peludo", + "letters": 37 + }, + "totalWords": { + "6": 1, + "8": 1 + }, + "totalLetters": { + "32": 1, + "37": 1 + }, + "gamesPlayed": 2, + "medianWords": 7, + "medianLetters": 34.5 + }, + "grado": { + "best": { + "word": "grado", + "letters": 22 + }, + "worst": { + "word": "grado", + "letters": 23 + }, + "totalWords": { + "4": 2 + }, + "totalLetters": { + "22": 1, + "23": 1 + }, + "gamesPlayed": 2, + "medianWords": 4, + "medianLetters": 22.5 + }, + "lavabo": { + "best": { + "word": "lavabo", + "letters": 28 + }, + "worst": { + "word": "lavabo", + "letters": 34 + }, + "totalWords": { + "5": 1, + "7": 1 + }, + "totalLetters": { + "28": 1, + "34": 1 + }, + "gamesPlayed": 2, + "medianWords": 6, + "medianLetters": 31 + }, + "izquierdo": { + "best": { + "word": "izquierdo", + "letters": 70 + }, + "worst": { + "word": "izquierdo", + "letters": 70 + }, + "totalWords": { + "15": 1 + }, + "totalLetters": { + "70": 1 + }, + "gamesPlayed": 1, + "medianWords": 15, + "medianLetters": 70 + } + }, + "hardestWords": [ + "reclutar", + "parrilla", + "izquierdo", + "navegante", + "toalla", + "provecho", + "cochera", + "inocente", + "encendido", + "alentador", + "colorido", + "recibir", + "hereje", + "comino", + "iniciar", + "derecho", + "fundar", + "ligado", + "adicta", + "conducto", + "paja", + "vejez", + "hermana", + "boda", + "peludo", + "liberal", + "limitado", + "bigote", + "panal", + "lavabo", + "optimista", + "centrar", + "vela", + "rumana", + "mapache", + "suerte", + "nicho", + "armario", + "grado", + "asar", + "rosa", + "honor", + "pasta", + "±­HJ\u0018Ý[\u001d\u001bËLL\u000bŒM‹ŒKŒM\u000bŒKš\u0018X‹YŒ\u000bœ\u001bÛ\u000bL̘˙]\\‹X‹›\u001d^\u000bLÌˌØÚ\u000bY˜‹š[\u000bM\f\u000b˜Ý[\u000bLŒYŠH", + "˜[\u000bLM\u000bŒM\u000bŒ‹ŒM\u000bŒ\u000bš\u0019\\‹L˜X‹›Û\u001b\u000bL\u000b˜KLØKœ\u001d\u000bLÌ˚YËL\u000b›Ú˜KL\nH" + ], + "bestWords": [ + "±­HJ\u0018Ý[\u001d\u001bËLL\u000bŒM‹ŒKŒM\u000bŒKš\u0018X‹YŒ\u000bœ\u001bÛ\u000bL̘˙]\\‹X‹›\u001d^\u000bLÌˌØÚ\u000bY˜‹š[\u000bM\f\u000b˜Ý[\u000bLŒYŠH", + "˜[\u000bLM\u000bŒM\u000bŒ‹ŒM\u000bŒ\u000bš\u0019\\‹L˜X‹›Û\u001b\u000bL\u000b˜KLØKœ\u001d\u000bLÌ˚YËL\u000b›Ú˜KL\nH", + "pasta", + "honor", + "rosa", + "asar", + "grado", + "armario", + "nicho", + "suerte", + "mapache", + "rumana", + "vela", + "optimista", + "centrar", + "lavabo", + "panal", + "bigote", + "limitado", + "liberal", + "boda", + "peludo", + "hermana", + "vejez", + "paja", + "conducto", + "adicta", + "ligado", + "fundar", + "derecho", + "iniciar", + "comino", + "hereje", + "recibir", + "colorido", + "alentador", + "encendido", + "inocente", + "cochera", + "provecho", + "toalla", + "navegante", + "izquierdo", + "parrilla", + "reclutar" + ] +} \ No newline at end of file diff --git a/public/year-summary/2025/fr-info.json b/public/year-summary/2025/fr-info.json new file mode 100644 index 000000000..b770f5516 --- /dev/null +++ b/public/year-summary/2025/fr-info.json @@ -0,0 +1,335 @@ +{ + "all": { + "best": { + "word": "chérubin", + "letters": 20 + }, + "worst": { + "word": "chiffon", + "letters": 58 + }, + "totalWords": { + "3": 1, + "8": 1, + "12": 1, + "18": 1 + }, + "totalLetters": { + "20": 1, + "43": 1, + "55": 1, + "58": 1 + }, + "gamesPlayed": 4, + "medianWords": 10, + "medianLetters": 49 + }, + "activePlayers": 3, + "byUser": { + "Felonious_Gru": { + "results": { + "2": { + "best": { + "word": "chiffon", + "letters": 58 + }, + "worst": { + "word": "chiffon", + "letters": 58 + }, + "totalWords": { + "18": 1 + }, + "totalLetters": { + "58": 1 + }, + "gamesPlayed": 1, + "medianWords": 18, + "medianLetters": 58 + }, + "3": { + "best": { + "word": "fantaisie", + "letters": 55 + }, + "worst": { + "word": "fantaisie", + "letters": 55 + }, + "totalWords": { + "12": 1 + }, + "totalLetters": { + "55": 1 + }, + "gamesPlayed": 1, + "medianWords": 12, + "medianLetters": 55 + }, + "year": { + "best": { + "word": "fantaisie", + "letters": 55 + }, + "worst": { + "word": "chiffon", + "letters": 58 + }, + "totalWords": { + "12": 1, + "18": 1 + }, + "totalLetters": { + "55": 1, + "58": 1 + }, + "gamesPlayed": 2, + "medianWords": 15, + "medianLetters": 56.5 + } + }, + "dates": { + "2": [ + "09.02.2025" + ], + "3": [ + "08.03.2025" + ], + "year": [ + "08.03.2025", + "09.02.2025" + ] + }, + "worstDates": { + "2": [ + "09.02.2025" + ], + "3": [ + "08.03.2025" + ], + "year": [ + "08.03.2025", + "09.02.2025" + ] + } + }, + "nxo": { + "results": { + "3": { + "best": { + "word": "chérubin", + "letters": 20 + }, + "worst": { + "word": "chérubin", + "letters": 20 + }, + "totalWords": { + "3": 1 + }, + "totalLetters": { + "20": 1 + }, + "gamesPlayed": 1, + "medianWords": 3, + "medianLetters": 20 + }, + "year": { + "best": { + "word": "chérubin", + "letters": 20 + }, + "worst": { + "word": "chérubin", + "letters": 20 + }, + "totalWords": { + "3": 1 + }, + "totalLetters": { + "20": 1 + }, + "gamesPlayed": 1, + "medianWords": 3, + "medianLetters": 20 + } + }, + "dates": { + "3": [ + "09.03.2025" + ], + "year": [ + "09.03.2025" + ] + }, + "worstDates": { + "3": [ + "09.03.2025" + ], + "year": [ + "09.03.2025" + ] + } + }, + "kwiecik": { + "results": { + "6": { + "best": { + "word": "carré", + "letters": 43 + }, + "worst": { + "word": "carré", + "letters": 43 + }, + "totalWords": { + "8": 1 + }, + "totalLetters": { + "43": 1 + }, + "gamesPlayed": 1, + "medianWords": 8, + "medianLetters": 43 + }, + "year": { + "best": { + "word": "carré", + "letters": 43 + }, + "worst": { + "word": "carré", + "letters": 43 + }, + "totalWords": { + "8": 1 + }, + "totalLetters": { + "43": 1 + }, + "gamesPlayed": 1, + "medianWords": 8, + "medianLetters": 43 + } + }, + "dates": { + "6": [ + "21.06.2025" + ], + "year": [ + "21.06.2025" + ] + }, + "worstDates": { + "6": [ + "21.06.2025" + ], + "year": [ + "21.06.2025" + ] + } + } + }, + "wordsByDates": { + "21.06.2025": "carré", + "09.03.2025": "chérubin", + "08.03.2025": "fantaisie", + "09.02.2025": "chiffon" + }, + "datesByWords": { + "carré": "21.06.2025", + "chérubin": "09.03.2025", + "fantaisie": "08.03.2025", + "chiffon": "09.02.2025" + }, + "rankByWords": { + "fantaisie": { + "best": { + "word": "fantaisie", + "letters": 55 + }, + "worst": { + "word": "fantaisie", + "letters": 55 + }, + "totalWords": { + "12": 1 + }, + "totalLetters": { + "55": 1 + }, + "gamesPlayed": 1, + "medianWords": 12, + "medianLetters": 55 + }, + "chérubin": { + "best": { + "word": "chérubin", + "letters": 20 + }, + "worst": { + "word": "chérubin", + "letters": 20 + }, + "totalWords": { + "3": 1 + }, + "totalLetters": { + "20": 1 + }, + "gamesPlayed": 1, + "medianWords": 3, + "medianLetters": 20 + }, + "carré": { + "best": { + "word": "carré", + "letters": 43 + }, + "worst": { + "word": "carré", + "letters": 43 + }, + "totalWords": { + "8": 1 + }, + "totalLetters": { + "43": 1 + }, + "gamesPlayed": 1, + "medianWords": 8, + "medianLetters": 43 + }, + "chiffon": { + "best": { + "word": "chiffon", + "letters": 58 + }, + "worst": { + "word": "chiffon", + "letters": 58 + }, + "totalWords": { + "18": 1 + }, + "totalLetters": { + "58": 1 + }, + "gamesPlayed": 1, + "medianWords": 18, + "medianLetters": 58 + } + }, + "hardestWords": [ + "chiffon", + "fantaisie", + "carré", + "chérubin" + ], + "bestWords": [ + "chérubin", + "carré", + "fantaisie", + "chiffon" + ] +} \ No newline at end of file diff --git a/public/year-summary/2025/it-info.json b/public/year-summary/2025/it-info.json new file mode 100644 index 000000000..e870d95b5 --- /dev/null +++ b/public/year-summary/2025/it-info.json @@ -0,0 +1,2930 @@ +{ + "all": { + "best": { + "word": "moro", + "letters": 17 + }, + "worst": { + "word": "ipnotico", + "letters": 100 + }, + "totalWords": { + "3": 11, + "4": 10, + "5": 15, + "6": 11, + "7": 12, + "8": 11, + "9": 8, + "10": 6, + "11": 3, + "12": 6, + "13": 6, + "14": 4, + "15": 1, + "16": 4, + "18": 1, + "19": 3, + "24": 1, + "27": 1 + }, + "totalLetters": { + "17": 1, + "18": 2, + "19": 1, + "21": 1, + "22": 4, + "23": 3, + "24": 2, + "25": 2, + "26": 4, + "28": 3, + "29": 2, + "30": 1, + "31": 4, + "32": 5, + "33": 4, + "34": 2, + "35": 4, + "36": 4, + "37": 3, + "39": 4, + "40": 1, + "41": 5, + "42": 1, + "43": 1, + "44": 7, + "45": 1, + "47": 3, + "48": 3, + "49": 1, + "50": 2, + "51": 2, + "52": 2, + "53": 2, + "54": 2, + "55": 1, + "56": 2, + "57": 3, + "58": 1, + "60": 3, + "63": 1, + "65": 1, + "66": 2, + "67": 3, + "72": 1, + "73": 1, + "82": 1, + "83": 1, + "87": 1, + "91": 1, + "97": 1, + "100": 1 + }, + "gamesPlayed": 114, + "medianWords": 6.5, + "medianLetters": 40.5 + }, + "activePlayers": 2, + "byUser": { + "Felonious_Gru": { + "best50": { + "best": { + "word": "moro", + "letters": 18 + }, + "worst": { + "word": "ozioso", + "letters": 57 + }, + "totalWords": { + "3": 7, + "4": 6, + "5": 8, + "6": 6, + "7": 6, + "8": 4, + "9": 5, + "10": 2, + "11": 1, + "12": 2, + "13": 2, + "16": 1 + }, + "totalLetters": { + "18": 1, + "19": 1, + "22": 4, + "23": 2, + "24": 1, + "25": 2, + "26": 1, + "28": 2, + "29": 1, + "31": 2, + "32": 2, + "33": 2, + "34": 1, + "35": 2, + "36": 2, + "37": 2, + "39": 2, + "40": 1, + "41": 2, + "44": 5, + "47": 1, + "48": 3, + "49": 1, + "51": 1, + "52": 1, + "53": 1, + "54": 1, + "55": 1, + "56": 1, + "57": 1 + }, + "gamesPlayed": 50, + "medianWords": 5.5, + "medianLetters": 35.5 + }, + "hardest50": { + "best": { + "word": "giovanni", + "letters": 22 + }, + "worst": { + "word": "ipnotico", + "letters": 100 + }, + "totalWords": { + "3": 2, + "4": 1, + "5": 4, + "6": 2, + "7": 6, + "8": 5, + "9": 5, + "10": 4, + "11": 1, + "12": 4, + "13": 4, + "14": 3, + "16": 2, + "18": 1, + "19": 3, + "24": 1, + "27": 1 + }, + "totalLetters": { + "22": 1, + "24": 1, + "26": 1, + "29": 1, + "33": 1, + "34": 1, + "35": 1, + "36": 2, + "37": 2, + "39": 2, + "40": 1, + "41": 1, + "44": 5, + "47": 1, + "48": 3, + "49": 1, + "51": 1, + "52": 1, + "53": 1, + "54": 1, + "55": 1, + "56": 1, + "57": 2, + "58": 1, + "60": 1, + "63": 1, + "65": 1, + "66": 2, + "67": 2, + "72": 1, + "73": 1, + "82": 1, + "83": 1, + "87": 1, + "91": 1, + "97": 1, + "100": 1 + }, + "gamesPlayed": 49, + "medianWords": 9, + "medianLetters": 49 + }, + "results": { + "1": { + "best": { + "word": "giovanni", + "letters": 22 + }, + "worst": { + "word": "obliquo", + "letters": 73 + }, + "totalWords": { + "3": 3, + "5": 4, + "7": 3, + "8": 2, + "10": 1, + "12": 1, + "13": 3, + "16": 2, + "19": 1 + }, + "totalLetters": { + "22": 2, + "23": 1, + "24": 1, + "29": 1, + "35": 2, + "36": 1, + "39": 1, + "44": 1, + "48": 1, + "51": 1, + "53": 1, + "57": 1, + "60": 1, + "66": 2, + "67": 1, + "72": 1, + "73": 1 + }, + "gamesPlayed": 20, + "medianWords": 7.5, + "medianLetters": 46 + }, + "2": { + "best": { + "word": "moro", + "letters": 18 + }, + "worst": { + "word": "svizzero", + "letters": 97 + }, + "totalWords": { + "3": 2, + "5": 1, + "6": 1, + "7": 1, + "9": 2, + "10": 1, + "12": 2, + "14": 1, + "24": 1 + }, + "totalLetters": { + "18": 1, + "19": 1, + "31": 1, + "32": 1, + "36": 1, + "44": 1, + "48": 1, + "52": 1, + "57": 1, + "65": 1, + "67": 1, + "97": 1 + }, + "gamesPlayed": 12, + "medianWords": 8, + "medianLetters": 46 + }, + "3": { + "best": { + "word": "volante", + "letters": 33 + }, + "worst": { + "word": "ipnotico", + "letters": 100 + }, + "totalWords": { + "6": 1, + "11": 1, + "13": 1, + "14": 1, + "27": 1 + }, + "totalLetters": { + "33": 1, + "47": 1, + "54": 1, + "82": 1, + "100": 1 + }, + "gamesPlayed": 5, + "medianWords": 13, + "medianLetters": 54 + }, + "4": { + "best": { + "word": "frontale", + "letters": 31 + }, + "worst": { + "word": "assistito", + "letters": 63 + }, + "totalWords": { + "4": 1, + "8": 1, + "14": 1 + }, + "totalLetters": { + "31": 1, + "49": 1, + "63": 1 + }, + "gamesPlayed": 3, + "medianWords": 8, + "medianLetters": 49 + }, + "5": { + "best": { + "word": "cortese", + "letters": 28 + }, + "worst": { + "word": "schedare", + "letters": 44 + }, + "totalWords": { + "4": 1, + "5": 1, + "6": 1, + "7": 1 + }, + "totalLetters": { + "28": 1, + "33": 1, + "37": 1, + "44": 1 + }, + "gamesPlayed": 4, + "medianWords": 5.5, + "medianLetters": 35 + }, + "6": { + "best": { + "word": "medaglia", + "letters": 22 + }, + "worst": { + "word": "assumere", + "letters": 44 + }, + "totalWords": { + "3": 1, + "4": 1, + "6": 1, + "8": 1, + "9": 2 + }, + "totalLetters": { + "22": 1, + "23": 1, + "32": 1, + "37": 1, + "44": 2 + }, + "gamesPlayed": 6, + "medianWords": 7, + "medianLetters": 34.5 + }, + "7": { + "best": { + "word": "premiare", + "letters": 26 + }, + "worst": { + "word": "cariatide", + "letters": 83 + }, + "totalWords": { + "4": 1, + "8": 1, + "10": 2, + "19": 1 + }, + "totalLetters": { + "26": 1, + "40": 1, + "55": 1, + "58": 1, + "83": 1 + }, + "gamesPlayed": 5, + "medianWords": 10, + "medianLetters": 55 + }, + "8": { + "best": { + "word": "regime", + "letters": 25 + }, + "worst": { + "word": "precario", + "letters": 41 + }, + "totalWords": { + "4": 1, + "6": 1, + "7": 1 + }, + "totalLetters": { + "25": 1, + "41": 2 + }, + "gamesPlayed": 3, + "medianWords": 6, + "medianLetters": 41 + }, + "9": { + "best": { + "word": "tanga", + "letters": 25 + }, + "worst": { + "word": "anfratto", + "letters": 87 + }, + "totalWords": { + "4": 1, + "5": 1, + "6": 1, + "12": 1, + "18": 1 + }, + "totalLetters": { + "25": 1, + "28": 1, + "39": 1, + "56": 1, + "87": 1 + }, + "gamesPlayed": 5, + "medianWords": 6, + "medianLetters": 39 + }, + "10": { + "best": { + "word": "merito", + "letters": 22 + }, + "worst": { + "word": "esagitato", + "letters": 91 + }, + "totalWords": { + "3": 1, + "5": 1, + "19": 1 + }, + "totalLetters": { + "22": 1, + "34": 1, + "91": 1 + }, + "gamesPlayed": 3, + "medianWords": 5, + "medianLetters": 34 + }, + "12": { + "best": { + "word": "rotore", + "letters": 48 + }, + "worst": { + "word": "rotore", + "letters": 48 + }, + "totalWords": { + "9": 1 + }, + "totalLetters": { + "48": 1 + }, + "gamesPlayed": 1, + "medianWords": 9, + "medianLetters": 48 + }, + "year": { + "best": { + "word": "moro", + "letters": 18 + }, + "worst": { + "word": "ipnotico", + "letters": 100 + }, + "totalWords": { + "3": 7, + "4": 6, + "5": 8, + "6": 6, + "7": 6, + "8": 5, + "9": 5, + "10": 4, + "11": 1, + "12": 4, + "13": 4, + "14": 3, + "16": 2, + "18": 1, + "19": 3, + "24": 1, + "27": 1 + }, + "totalLetters": { + "18": 1, + "19": 1, + "22": 4, + "23": 2, + "24": 1, + "25": 2, + "26": 1, + "28": 2, + "29": 1, + "31": 2, + "32": 2, + "33": 2, + "34": 1, + "35": 2, + "36": 2, + "37": 2, + "39": 2, + "40": 1, + "41": 2, + "44": 5, + "47": 1, + "48": 3, + "49": 1, + "51": 1, + "52": 1, + "53": 1, + "54": 1, + "55": 1, + "56": 1, + "57": 2, + "58": 1, + "60": 1, + "63": 1, + "65": 1, + "66": 2, + "67": 2, + "72": 1, + "73": 1, + "82": 1, + "83": 1, + "87": 1, + "91": 1, + "97": 1, + "100": 1 + }, + "gamesPlayed": 67, + "medianWords": 8, + "medianLetters": 44 + } + }, + "dates": { + "1": [ + "14.01.2025", + "07.01.2025", + "09.01.2025", + "28.01.2025", + "17.01.2025", + "26.01.2025", + "06.01.2025", + "20.01.2025", + "10.01.2025" + ], + "2": [ + "03.02.2025", + "05.02.2025", + "19.02.2025", + "20.12.2025", + "12.02.2025", + "09.02.2025", + "17.02.2025" + ], + "3": [ + "08.03.2025" + ], + "4": [ + "02.04.2025", + "08.04.2025" + ], + "5": [ + "10.05.2025", + "12.05.2025", + "06.05.2025" + ], + "6": [ + "09.06.2025", + "11.06.2025", + "16.06.2025", + "23.06.2025", + "24.06.2025" + ], + "7": [ + "10.07.2025", + "19.07.2025", + "31.07.2025", + "08.07.2025" + ], + "9": [ + "11.09.2025", + "12.09.2025", + "30.09.2025", + "13.09.2025" + ], + "10": [ + "05.10.2025", + "28.10.2025", + "04.10.2025" + ], + "12": [ + "20.12.2025" + ], + "year": [ + "14.01.2025", + "02.04.2025", + "03.02.2025", + "05.02.2025", + "05.10.2025", + "07.01.2025", + "08.04.2025", + "09.01.2025", + "09.06.2025", + "10.05.2025", + "10.07.2025", + "11.06.2025", + "11.09.2025", + "12.09.2025", + "16.06.2025", + "19.02.2025", + "19.07.2025", + "20.12.2025", + "23.06.2025", + "28.01.2025", + "28.10.2025", + "30.09.2025", + "31.07.2025", + "04.10.2025", + "12.02.2025", + "09.02.2025", + "17.01.2025", + "26.01.2025", + "24.06.2025", + "08.03.2025", + "08.07.2025", + "17.02.2025", + "06.01.2025", + "20.01.2025", + "12.05.2025", + "06.05.2025", + "13.09.2025", + "10.01.2025" + ] + }, + "worstDates": { + "1": [ + "14.01.2025", + "03.01.2025", + "11.01.2025", + "27.01.2025", + "18.01.2025", + "04.01.2025", + "12.01.2025", + "15.01.2025", + "19.01.2025", + "13.01.2025", + "29.01.2025", + "10.01.2025", + "08.01.2025" + ], + "2": [ + "03.02.2025", + "04.02.2025", + "05.02.2025", + "20.12.2025", + "22.02.2025", + "09.02.2025", + "17.02.2025", + "08.02.2025", + "15.02.2025", + "10.02.2025", + "14.02.2025" + ], + "3": [ + "06.03.2025", + "23.03.2025", + "22.03.2025", + "24.03.2025", + "08.03.2025" + ], + "4": [ + "02.04.2025", + "27.04.2025" + ], + "5": [ + "10.05.2025", + "11.05.2025", + "12.05.2025" + ], + "6": [ + "09.06.2025", + "11.06.2025", + "12.06.2025", + "23.06.2025" + ], + "7": [ + "10.07.2025", + "31.07.2025", + "08.07.2025", + "12.07.2025" + ], + "8": [ + "01.08.2025", + "10.08.2025", + "29.08.2025" + ], + "9": [ + "11.09.2025", + "12.09.2025", + "18.09.2025", + "30.09.2025", + "13.09.2025" + ], + "10": [ + "04.10.2025" + ], + "12": [ + "20.12.2025" + ], + "year": [ + "14.01.2025", + "01.08.2025", + "02.04.2025", + "03.01.2025", + "03.02.2025", + "04.02.2025", + "05.02.2025", + "06.03.2025", + "09.06.2025", + "10.05.2025", + "10.07.2025", + "10.08.2025", + "11.01.2025", + "11.05.2025", + "11.06.2025", + "11.09.2025", + "12.06.2025", + "12.09.2025", + "18.09.2025", + "20.12.2025", + "22.02.2025", + "23.03.2025", + "23.06.2025", + "27.04.2025", + "29.08.2025", + "30.09.2025", + "31.07.2025", + "27.01.2025", + "22.03.2025", + "04.10.2025", + "09.02.2025", + "18.01.2025", + "04.01.2025", + "12.01.2025", + "24.03.2025", + "08.03.2025", + "08.07.2025", + "17.02.2025", + "08.02.2025", + "15.02.2025", + "15.01.2025", + "10.02.2025", + "12.05.2025", + "19.01.2025", + "14.02.2025", + "13.09.2025", + "13.01.2025", + "29.01.2025", + "12.07.2025", + "10.01.2025", + "08.01.2025" + ] + } + }, + "Greyman": { + "results": { + "1": { + "best": { + "word": "mongolia", + "letters": 21 + }, + "worst": { + "word": "sozzura", + "letters": 67 + }, + "totalWords": { + "3": 1, + "5": 3, + "6": 1, + "8": 3, + "9": 2, + "10": 2, + "11": 1, + "12": 1, + "13": 2, + "14": 1, + "15": 1, + "16": 1 + }, + "totalLetters": { + "21": 1, + "28": 1, + "29": 1, + "31": 1, + "35": 1, + "36": 1, + "37": 1, + "41": 1, + "44": 1, + "47": 2, + "50": 1, + "51": 1, + "52": 1, + "54": 1, + "56": 1, + "57": 1, + "60": 1, + "67": 1 + }, + "gamesPlayed": 19, + "medianWords": 9, + "medianLetters": 47 + }, + "2": { + "best": { + "word": "moro", + "letters": 17 + }, + "worst": { + "word": "episodico", + "letters": 50 + }, + "totalWords": { + "3": 1, + "4": 2, + "7": 3, + "9": 1, + "11": 1 + }, + "totalLetters": { + "17": 1, + "18": 1, + "26": 1, + "39": 2, + "42": 1, + "44": 1, + "50": 1 + }, + "gamesPlayed": 8, + "medianWords": 5.5, + "medianLetters": 32.5 + }, + "3": { + "best": { + "word": "volante", + "letters": 26 + }, + "worst": { + "word": "praticare", + "letters": 34 + }, + "totalWords": { + "4": 1, + "5": 1, + "6": 2 + }, + "totalLetters": { + "26": 1, + "30": 1, + "32": 1, + "34": 1 + }, + "gamesPlayed": 4, + "medianWords": 5.5, + "medianLetters": 31 + }, + "4": { + "best": { + "word": "dominio", + "letters": 31 + }, + "worst": { + "word": "massetere", + "letters": 43 + }, + "totalWords": { + "4": 1, + "8": 2 + }, + "totalLetters": { + "31": 1, + "36": 1, + "43": 1 + }, + "gamesPlayed": 3, + "medianWords": 8, + "medianLetters": 36 + }, + "5": { + "best": { + "word": "affermare", + "letters": 33 + }, + "worst": { + "word": "torbido", + "letters": 41 + }, + "totalWords": { + "5": 1, + "7": 1 + }, + "totalLetters": { + "33": 1, + "41": 1 + }, + "gamesPlayed": 2, + "medianWords": 6, + "medianLetters": 37 + }, + "6": { + "best": { + "word": "circa", + "letters": 26 + }, + "worst": { + "word": "assumere", + "letters": 60 + }, + "totalWords": { + "5": 1, + "6": 1, + "16": 1 + }, + "totalLetters": { + "26": 1, + "32": 1, + "60": 1 + }, + "gamesPlayed": 3, + "medianWords": 6, + "medianLetters": 32 + }, + "7": { + "best": { + "word": "premiare", + "letters": 45 + }, + "worst": { + "word": "cariatide", + "letters": 53 + }, + "totalWords": { + "8": 1, + "12": 1 + }, + "totalLetters": { + "45": 1, + "53": 1 + }, + "gamesPlayed": 2, + "medianWords": 10, + "medianLetters": 49 + }, + "8": { + "best": { + "word": "regime", + "letters": 23 + }, + "worst": { + "word": "specifico", + "letters": 33 + }, + "totalWords": { + "3": 2, + "5": 1 + }, + "totalLetters": { + "23": 1, + "24": 1, + "33": 1 + }, + "gamesPlayed": 3, + "medianWords": 3, + "medianLetters": 24 + }, + "9": { + "best": { + "word": "gomitolo", + "letters": 35 + }, + "worst": { + "word": "gomitolo", + "letters": 35 + }, + "totalWords": { + "6": 1 + }, + "totalLetters": { + "35": 1 + }, + "gamesPlayed": 1, + "medianWords": 6, + "medianLetters": 35 + }, + "10": { + "best": { + "word": "merito", + "letters": 32 + }, + "worst": { + "word": "mostrare", + "letters": 41 + }, + "totalWords": { + "7": 2 + }, + "totalLetters": { + "32": 1, + "41": 1 + }, + "gamesPlayed": 2, + "medianWords": 7, + "medianLetters": 36.5 + }, + "year": { + "best": { + "word": "moro", + "letters": 17 + }, + "worst": { + "word": "sozzura", + "letters": 67 + }, + "totalWords": { + "3": 4, + "4": 4, + "5": 7, + "6": 5, + "7": 6, + "8": 6, + "9": 3, + "10": 2, + "11": 2, + "12": 2, + "13": 2, + "14": 1, + "15": 1, + "16": 2 + }, + "totalLetters": { + "17": 1, + "18": 1, + "21": 1, + "23": 1, + "24": 1, + "26": 3, + "28": 1, + "29": 1, + "30": 1, + "31": 2, + "32": 3, + "33": 2, + "34": 1, + "35": 2, + "36": 2, + "37": 1, + "39": 2, + "41": 3, + "42": 1, + "43": 1, + "44": 2, + "45": 1, + "47": 2, + "50": 2, + "51": 1, + "52": 1, + "53": 1, + "54": 1, + "56": 1, + "57": 1, + "60": 2, + "67": 1 + }, + "gamesPlayed": 47, + "medianWords": 7, + "medianLetters": 37 + } + }, + "dates": { + "1": [ + "03.01.2025", + "11.01.2025", + "27.01.2025", + "18.01.2025", + "04.01.2025", + "12.01.2025", + "15.01.2025", + "19.01.2025", + "16.01.2025", + "13.01.2025", + "29.01.2025", + "08.01.2025" + ], + "2": [ + "04.02.2025", + "22.02.2025", + "08.02.2025", + "15.02.2025", + "10.02.2025", + "14.02.2025" + ], + "3": [ + "06.03.2025", + "23.03.2025", + "22.03.2025", + "24.03.2025" + ], + "4": [ + "03.04.2025", + "27.04.2025" + ], + "5": [ + "11.05.2025" + ], + "6": [ + "12.06.2025" + ], + "7": [ + "12.07.2025" + ], + "8": [ + "01.08.2025", + "10.08.2025", + "29.08.2025" + ], + "9": [ + "18.09.2025" + ], + "year": [ + "01.08.2025", + "03.01.2025", + "03.04.2025", + "04.02.2025", + "06.03.2025", + "10.08.2025", + "11.01.2025", + "11.05.2025", + "12.06.2025", + "18.09.2025", + "22.02.2025", + "23.03.2025", + "27.04.2025", + "29.08.2025", + "27.01.2025", + "22.03.2025", + "18.01.2025", + "04.01.2025", + "12.01.2025", + "24.03.2025", + "08.02.2025", + "15.02.2025", + "15.01.2025", + "10.02.2025", + "19.01.2025", + "14.02.2025", + "16.01.2025", + "13.01.2025", + "29.01.2025", + "12.07.2025", + "08.01.2025" + ] + }, + "worstDates": { + "1": [ + "07.01.2025", + "09.01.2025", + "28.01.2025", + "17.01.2025", + "26.01.2025", + "06.01.2025", + "20.01.2025", + "16.01.2025" + ], + "2": [ + "19.02.2025", + "12.02.2025" + ], + "4": [ + "03.04.2025", + "08.04.2025" + ], + "5": [ + "06.05.2025" + ], + "6": [ + "16.06.2025", + "24.06.2025" + ], + "7": [ + "19.07.2025" + ], + "10": [ + "05.10.2025", + "28.10.2025" + ], + "year": [ + "03.04.2025", + "05.10.2025", + "07.01.2025", + "08.04.2025", + "09.01.2025", + "16.06.2025", + "19.02.2025", + "19.07.2025", + "28.01.2025", + "28.10.2025", + "12.02.2025", + "17.01.2025", + "26.01.2025", + "24.06.2025", + "06.01.2025", + "20.01.2025", + "06.05.2025", + "16.01.2025" + ] + } + } + }, + "wordsByDates": { + "20.12.2025": "rotore", + "28.10.2025": "mostrare", + "05.10.2025": "merito", + "04.10.2025": "esagitato", + "30.09.2025": "anfratto", + "18.09.2025": "gomitolo", + "13.09.2025": "eroina", + "12.09.2025": "basso", + "11.09.2025": "tanga", + "29.08.2025": "specifico", + "10.08.2025": "precario", + "01.08.2025": "regime", + "31.07.2025": "epigramma", + "19.07.2025": "premiare", + "12.07.2025": "cariatide", + "10.07.2025": "reciso", + "08.07.2025": "donnaiolo", + "24.06.2025": "sforzo", + "23.06.2025": "obovato", + "16.06.2025": "assumere", + "12.06.2025": "circa", + "11.06.2025": "watt", + "09.06.2025": "medaglia", + "12.05.2025": "cortese", + "11.05.2025": "affermare", + "10.05.2025": "schedare", + "06.05.2025": "torbido", + "27.04.2025": "massetere", + "08.04.2025": "frontale", + "03.04.2025": "dominio", + "02.04.2025": "assistito", + "24.03.2025": "tommaso", + "23.03.2025": "praticare", + "22.03.2025": "ipnotico", + "08.03.2025": "giudeo", + "06.03.2025": "volante", + "22.02.2025": "lino", + "19.02.2025": "spagnola", + "17.02.2025": "giravite", + "15.02.2025": "vocazione", + "14.02.2025": "ritegno", + "12.02.2025": "episodico", + "10.02.2025": "svizzero", + "09.02.2025": "pesci", + "08.02.2025": "impero", + "05.02.2025": "schiavo", + "04.02.2025": "moro", + "03.02.2025": "febbraio", + "29.01.2025": "arredare", + "28.01.2025": "sozzura", + "27.01.2025": "ozioso", + "26.01.2025": "giovanni", + "20.01.2025": "ballata", + "19.01.2025": "superbo", + "18.01.2025": "perfido", + "17.01.2025": "improprio", + "16.01.2025": "condanna", + "15.01.2025": "adultera", + "14.01.2025": "scagliare", + "13.01.2025": "mongolia", + "12.01.2025": "fascicolo", + "11.01.2025": "bottiglia", + "10.01.2025": "toporagno", + "09.01.2025": "prete", + "08.01.2025": "iponimo", + "07.01.2025": "decisivo", + "06.01.2025": "ancorare", + "04.01.2025": "obliquo", + "03.01.2025": "freddezza" + }, + "datesByWords": { + "rotore": "20.12.2025", + "mostrare": "28.10.2025", + "merito": "05.10.2025", + "esagitato": "04.10.2025", + "anfratto": "30.09.2025", + "gomitolo": "18.09.2025", + "eroina": "13.09.2025", + "basso": "12.09.2025", + "tanga": "11.09.2025", + "specifico": "29.08.2025", + "precario": "10.08.2025", + "regime": "01.08.2025", + "epigramma": "31.07.2025", + "premiare": "19.07.2025", + "cariatide": "12.07.2025", + "reciso": "10.07.2025", + "donnaiolo": "08.07.2025", + "sforzo": "24.06.2025", + "obovato": "23.06.2025", + "assumere": "16.06.2025", + "circa": "12.06.2025", + "watt": "11.06.2025", + "medaglia": "09.06.2025", + "cortese": "12.05.2025", + "affermare": "11.05.2025", + "schedare": "10.05.2025", + "torbido": "06.05.2025", + "massetere": "27.04.2025", + "frontale": "08.04.2025", + "dominio": "03.04.2025", + "assistito": "02.04.2025", + "tommaso": "24.03.2025", + "praticare": "23.03.2025", + "ipnotico": "22.03.2025", + "giudeo": "08.03.2025", + "volante": "06.03.2025", + "lino": "22.02.2025", + "spagnola": "19.02.2025", + "giravite": "17.02.2025", + "vocazione": "15.02.2025", + "ritegno": "14.02.2025", + "episodico": "12.02.2025", + "svizzero": "10.02.2025", + "pesci": "09.02.2025", + "impero": "08.02.2025", + "schiavo": "05.02.2025", + "moro": "04.02.2025", + "febbraio": "03.02.2025", + "arredare": "29.01.2025", + "sozzura": "28.01.2025", + "ozioso": "27.01.2025", + "giovanni": "26.01.2025", + "ballata": "20.01.2025", + "superbo": "19.01.2025", + "perfido": "18.01.2025", + "improprio": "17.01.2025", + "condanna": "16.01.2025", + "adultera": "15.01.2025", + "scagliare": "14.01.2025", + "mongolia": "13.01.2025", + "fascicolo": "12.01.2025", + "bottiglia": "11.01.2025", + "toporagno": "10.01.2025", + "prete": "09.01.2025", + "iponimo": "08.01.2025", + "decisivo": "07.01.2025", + "ancorare": "06.01.2025", + "obliquo": "04.01.2025", + "freddezza": "03.01.2025" + }, + "rankByWords": { + "scagliare": { + "best": { + "word": "scagliare", + "letters": 66 + }, + "worst": { + "word": "scagliare", + "letters": 66 + }, + "totalWords": { + "8": 1 + }, + "totalLetters": { + "66": 1 + }, + "gamesPlayed": 1, + "medianWords": 8, + "medianLetters": 66 + }, + "regime": { + "best": { + "word": "regime", + "letters": 23 + }, + "worst": { + "word": "regime", + "letters": 25 + }, + "totalWords": { + "3": 1, + "4": 1 + }, + "totalLetters": { + "23": 1, + "25": 1 + }, + "gamesPlayed": 2, + "medianWords": 3.5, + "medianLetters": 24 + }, + "assistito": { + "best": { + "word": "assistito", + "letters": 63 + }, + "worst": { + "word": "assistito", + "letters": 63 + }, + "totalWords": { + "14": 1 + }, + "totalLetters": { + "63": 1 + }, + "gamesPlayed": 1, + "medianWords": 14, + "medianLetters": 63 + }, + "freddezza": { + "best": { + "word": "freddezza", + "letters": 54 + }, + "worst": { + "word": "freddezza", + "letters": 60 + }, + "totalWords": { + "12": 1, + "13": 1 + }, + "totalLetters": { + "54": 1, + "60": 1 + }, + "gamesPlayed": 2, + "medianWords": 12.5, + "medianLetters": 57 + }, + "febbraio": { + "best": { + "word": "febbraio", + "letters": 67 + }, + "worst": { + "word": "febbraio", + "letters": 67 + }, + "totalWords": { + "12": 1 + }, + "totalLetters": { + "67": 1 + }, + "gamesPlayed": 1, + "medianWords": 12, + "medianLetters": 67 + }, + "dominio": { + "best": { + "word": "dominio", + "letters": 31 + }, + "worst": { + "word": "dominio", + "letters": 31 + }, + "totalWords": { + "4": 1 + }, + "totalLetters": { + "31": 1 + }, + "gamesPlayed": 1, + "medianWords": 4, + "medianLetters": 31 + }, + "moro": { + "best": { + "word": "moro", + "letters": 17 + }, + "worst": { + "word": "moro", + "letters": 18 + }, + "totalWords": { + "3": 2 + }, + "totalLetters": { + "17": 1, + "18": 1 + }, + "gamesPlayed": 2, + "medianWords": 3, + "medianLetters": 17.5 + }, + "schiavo": { + "best": { + "word": "schiavo", + "letters": 52 + }, + "worst": { + "word": "schiavo", + "letters": 52 + }, + "totalWords": { + "12": 1 + }, + "totalLetters": { + "52": 1 + }, + "gamesPlayed": 1, + "medianWords": 12, + "medianLetters": 52 + }, + "merito": { + "best": { + "word": "merito", + "letters": 22 + }, + "worst": { + "word": "merito", + "letters": 32 + }, + "totalWords": { + "3": 1, + "7": 1 + }, + "totalLetters": { + "22": 1, + "32": 1 + }, + "gamesPlayed": 2, + "medianWords": 5, + "medianLetters": 27 + }, + "volante": { + "best": { + "word": "volante", + "letters": 26 + }, + "worst": { + "word": "volante", + "letters": 33 + }, + "totalWords": { + "4": 1, + "6": 1 + }, + "totalLetters": { + "26": 1, + "33": 1 + }, + "gamesPlayed": 2, + "medianWords": 5, + "medianLetters": 29.5 + }, + "decisivo": { + "best": { + "word": "decisivo", + "letters": 35 + }, + "worst": { + "word": "decisivo", + "letters": 44 + }, + "totalWords": { + "5": 1, + "9": 1 + }, + "totalLetters": { + "35": 1, + "44": 1 + }, + "gamesPlayed": 2, + "medianWords": 7, + "medianLetters": 39.5 + }, + "frontale": { + "best": { + "word": "frontale", + "letters": 31 + }, + "worst": { + "word": "frontale", + "letters": 36 + }, + "totalWords": { + "4": 1, + "8": 1 + }, + "totalLetters": { + "31": 1, + "36": 1 + }, + "gamesPlayed": 2, + "medianWords": 6, + "medianLetters": 33.5 + }, + "prete": { + "best": { + "word": "prete", + "letters": 23 + }, + "worst": { + "word": "prete", + "letters": 31 + }, + "totalWords": { + "5": 1, + "6": 1 + }, + "totalLetters": { + "23": 1, + "31": 1 + }, + "gamesPlayed": 2, + "medianWords": 5.5, + "medianLetters": 27 + }, + "medaglia": { + "best": { + "word": "medaglia", + "letters": 22 + }, + "worst": { + "word": "medaglia", + "letters": 22 + }, + "totalWords": { + "3": 1 + }, + "totalLetters": { + "22": 1 + }, + "gamesPlayed": 1, + "medianWords": 3, + "medianLetters": 22 + }, + "schedare": { + "best": { + "word": "schedare", + "letters": 44 + }, + "worst": { + "word": "schedare", + "letters": 44 + }, + "totalWords": { + "7": 1 + }, + "totalLetters": { + "44": 1 + }, + "gamesPlayed": 1, + "medianWords": 7, + "medianLetters": 44 + }, + "reciso": { + "best": { + "word": "reciso", + "letters": 40 + }, + "worst": { + "word": "reciso", + "letters": 40 + }, + "totalWords": { + "8": 1 + }, + "totalLetters": { + "40": 1 + }, + "gamesPlayed": 1, + "medianWords": 8, + "medianLetters": 40 + }, + "precario": { + "best": { + "word": "precario", + "letters": 24 + }, + "worst": { + "word": "precario", + "letters": 41 + }, + "totalWords": { + "3": 1, + "6": 1 + }, + "totalLetters": { + "24": 1, + "41": 1 + }, + "gamesPlayed": 2, + "medianWords": 4.5, + "medianLetters": 32.5 + }, + "bottiglia": { + "best": { + "word": "bottiglia", + "letters": 56 + }, + "worst": { + "word": "bottiglia", + "letters": 66 + }, + "totalWords": { + "10": 1, + "13": 1 + }, + "totalLetters": { + "56": 1, + "66": 1 + }, + "gamesPlayed": 2, + "medianWords": 11.5, + "medianLetters": 61 + }, + "affermare": { + "best": { + "word": "affermare", + "letters": 33 + }, + "worst": { + "word": "affermare", + "letters": 37 + }, + "totalWords": { + "5": 1, + "6": 1 + }, + "totalLetters": { + "33": 1, + "37": 1 + }, + "gamesPlayed": 2, + "medianWords": 5.5, + "medianLetters": 35 + }, + "watt": { + "best": { + "word": "watt", + "letters": 37 + }, + "worst": { + "word": "watt", + "letters": 37 + }, + "totalWords": { + "9": 1 + }, + "totalLetters": { + "37": 1 + }, + "gamesPlayed": 1, + "medianWords": 9, + "medianLetters": 37 + }, + "tanga": { + "best": { + "word": "tanga", + "letters": 25 + }, + "worst": { + "word": "tanga", + "letters": 25 + }, + "totalWords": { + "4": 1 + }, + "totalLetters": { + "25": 1 + }, + "gamesPlayed": 1, + "medianWords": 4, + "medianLetters": 25 + }, + "circa": { + "best": { + "word": "circa", + "letters": 26 + }, + "worst": { + "word": "circa", + "letters": 32 + }, + "totalWords": { + "5": 1, + "6": 1 + }, + "totalLetters": { + "26": 1, + "32": 1 + }, + "gamesPlayed": 2, + "medianWords": 5.5, + "medianLetters": 29 + }, + "basso": { + "best": { + "word": "basso", + "letters": 28 + }, + "worst": { + "word": "basso", + "letters": 28 + }, + "totalWords": { + "5": 1 + }, + "totalLetters": { + "28": 1 + }, + "gamesPlayed": 1, + "medianWords": 5, + "medianLetters": 28 + }, + "assumere": { + "best": { + "word": "assumere", + "letters": 44 + }, + "worst": { + "word": "assumere", + "letters": 60 + }, + "totalWords": { + "9": 1, + "16": 1 + }, + "totalLetters": { + "44": 1, + "60": 1 + }, + "gamesPlayed": 2, + "medianWords": 12.5, + "medianLetters": 52 + }, + "gomitolo": { + "best": { + "word": "gomitolo", + "letters": 35 + }, + "worst": { + "word": "gomitolo", + "letters": 56 + }, + "totalWords": { + "6": 1, + "12": 1 + }, + "totalLetters": { + "35": 1, + "56": 1 + }, + "gamesPlayed": 2, + "medianWords": 9, + "medianLetters": 45.5 + }, + "spagnola": { + "best": { + "word": "spagnola", + "letters": 36 + }, + "worst": { + "word": "spagnola", + "letters": 39 + }, + "totalWords": { + "7": 2 + }, + "totalLetters": { + "36": 1, + "39": 1 + }, + "gamesPlayed": 2, + "medianWords": 7, + "medianLetters": 37.5 + }, + "premiare": { + "best": { + "word": "premiare", + "letters": 26 + }, + "worst": { + "word": "premiare", + "letters": 45 + }, + "totalWords": { + "4": 1, + "8": 1 + }, + "totalLetters": { + "26": 1, + "45": 1 + }, + "gamesPlayed": 2, + "medianWords": 6, + "medianLetters": 35.5 + }, + "rotore": { + "best": { + "word": "rotore", + "letters": 48 + }, + "worst": { + "word": "rotore", + "letters": 48 + }, + "totalWords": { + "9": 1 + }, + "totalLetters": { + "48": 1 + }, + "gamesPlayed": 1, + "medianWords": 9, + "medianLetters": 48 + }, + "lino": { + "best": { + "word": "lino", + "letters": 18 + }, + "worst": { + "word": "lino", + "letters": 32 + }, + "totalWords": { + "4": 1, + "6": 1 + }, + "totalLetters": { + "18": 1, + "32": 1 + }, + "gamesPlayed": 2, + "medianWords": 5, + "medianLetters": 25 + }, + "praticare": { + "best": { + "word": "praticare", + "letters": 34 + }, + "worst": { + "word": "praticare", + "letters": 82 + }, + "totalWords": { + "6": 1, + "14": 1 + }, + "totalLetters": { + "34": 1, + "82": 1 + }, + "gamesPlayed": 2, + "medianWords": 10, + "medianLetters": 58 + }, + "obovato": { + "best": { + "word": "obovato", + "letters": 44 + }, + "worst": { + "word": "obovato", + "letters": 44 + }, + "totalWords": { + "8": 1 + }, + "totalLetters": { + "44": 1 + }, + "gamesPlayed": 1, + "medianWords": 8, + "medianLetters": 44 + }, + "massetere": { + "best": { + "word": "massetere", + "letters": 43 + }, + "worst": { + "word": "massetere", + "letters": 49 + }, + "totalWords": { + "8": 2 + }, + "totalLetters": { + "43": 1, + "49": 1 + }, + "gamesPlayed": 2, + "medianWords": 8, + "medianLetters": 46 + }, + "sozzura": { + "best": { + "word": "sozzura", + "letters": 36 + }, + "worst": { + "word": "sozzura", + "letters": 67 + }, + "totalWords": { + "7": 1, + "16": 1 + }, + "totalLetters": { + "36": 1, + "67": 1 + }, + "gamesPlayed": 2, + "medianWords": 11.5, + "medianLetters": 51.5 + }, + "mostrare": { + "best": { + "word": "mostrare", + "letters": 34 + }, + "worst": { + "word": "mostrare", + "letters": 41 + }, + "totalWords": { + "5": 1, + "7": 1 + }, + "totalLetters": { + "34": 1, + "41": 1 + }, + "gamesPlayed": 2, + "medianWords": 6, + "medianLetters": 37.5 + }, + "specifico": { + "best": { + "word": "specifico", + "letters": 33 + }, + "worst": { + "word": "specifico", + "letters": 41 + }, + "totalWords": { + "5": 1, + "7": 1 + }, + "totalLetters": { + "33": 1, + "41": 1 + }, + "gamesPlayed": 2, + "medianWords": 6, + "medianLetters": 37 + }, + "anfratto": { + "best": { + "word": "anfratto", + "letters": 87 + }, + "worst": { + "word": "anfratto", + "letters": 87 + }, + "totalWords": { + "18": 1 + }, + "totalLetters": { + "87": 1 + }, + "gamesPlayed": 1, + "medianWords": 18, + "medianLetters": 87 + }, + "epigramma": { + "best": { + "word": "epigramma", + "letters": 58 + }, + "worst": { + "word": "epigramma", + "letters": 58 + }, + "totalWords": { + "10": 1 + }, + "totalLetters": { + "58": 1 + }, + "gamesPlayed": 1, + "medianWords": 10, + "medianLetters": 58 + }, + "ozioso": { + "best": { + "word": "ozioso", + "letters": 47 + }, + "worst": { + "word": "ozioso", + "letters": 57 + }, + "totalWords": { + "12": 1, + "16": 1 + }, + "totalLetters": { + "47": 1, + "57": 1 + }, + "gamesPlayed": 2, + "medianWords": 14, + "medianLetters": 52 + }, + "ipnotico": { + "best": { + "word": "ipnotico", + "letters": 30 + }, + "worst": { + "word": "ipnotico", + "letters": 100 + }, + "totalWords": { + "5": 1, + "27": 1 + }, + "totalLetters": { + "30": 1, + "100": 1 + }, + "gamesPlayed": 2, + "medianWords": 16, + "medianLetters": 65 + }, + "esagitato": { + "best": { + "word": "esagitato", + "letters": 91 + }, + "worst": { + "word": "esagitato", + "letters": 91 + }, + "totalWords": { + "19": 1 + }, + "totalLetters": { + "91": 1 + }, + "gamesPlayed": 1, + "medianWords": 19, + "medianLetters": 91 + }, + "episodico": { + "best": { + "word": "episodico", + "letters": 44 + }, + "worst": { + "word": "episodico", + "letters": 50 + }, + "totalWords": { + "9": 1, + "11": 1 + }, + "totalLetters": { + "44": 1, + "50": 1 + }, + "gamesPlayed": 2, + "medianWords": 10, + "medianLetters": 47 + }, + "pesci": { + "best": { + "word": "pesci", + "letters": 19 + }, + "worst": { + "word": "pesci", + "letters": 19 + }, + "totalWords": { + "3": 1 + }, + "totalLetters": { + "19": 1 + }, + "gamesPlayed": 1, + "medianWords": 3, + "medianLetters": 19 + }, + "perfido": { + "best": { + "word": "perfido", + "letters": 35 + }, + "worst": { + "word": "perfido", + "letters": 44 + }, + "totalWords": { + "5": 1, + "7": 1 + }, + "totalLetters": { + "35": 1, + "44": 1 + }, + "gamesPlayed": 2, + "medianWords": 6, + "medianLetters": 39.5 + }, + "improprio": { + "best": { + "word": "improprio", + "letters": 29 + }, + "worst": { + "word": "improprio", + "letters": 47 + }, + "totalWords": { + "5": 1, + "8": 1 + }, + "totalLetters": { + "29": 1, + "47": 1 + }, + "gamesPlayed": 2, + "medianWords": 6.5, + "medianLetters": 38 + }, + "giovanni": { + "best": { + "word": "giovanni", + "letters": 22 + }, + "worst": { + "word": "giovanni", + "letters": 57 + }, + "totalWords": { + "3": 1, + "14": 1 + }, + "totalLetters": { + "22": 1, + "57": 1 + }, + "gamesPlayed": 2, + "medianWords": 8.5, + "medianLetters": 39.5 + }, + "sforzo": { + "best": { + "word": "sforzo", + "letters": 23 + }, + "worst": { + "word": "sforzo", + "letters": 32 + }, + "totalWords": { + "4": 1, + "6": 1 + }, + "totalLetters": { + "23": 1, + "32": 1 + }, + "gamesPlayed": 2, + "medianWords": 5, + "medianLetters": 27.5 + }, + "obliquo": { + "best": { + "word": "obliquo", + "letters": 41 + }, + "worst": { + "word": "obliquo", + "letters": 73 + }, + "totalWords": { + "10": 1, + "16": 1 + }, + "totalLetters": { + "41": 1, + "73": 1 + }, + "gamesPlayed": 2, + "medianWords": 13, + "medianLetters": 57 + }, + "fascicolo": { + "best": { + "word": "fascicolo", + "letters": 36 + }, + "worst": { + "word": "fascicolo", + "letters": 39 + }, + "totalWords": { + "7": 1, + "8": 1 + }, + "totalLetters": { + "36": 1, + "39": 1 + }, + "gamesPlayed": 2, + "medianWords": 7.5, + "medianLetters": 37.5 + }, + "tommaso": { + "best": { + "word": "tommaso", + "letters": 32 + }, + "worst": { + "word": "tommaso", + "letters": 47 + }, + "totalWords": { + "6": 1, + "11": 1 + }, + "totalLetters": { + "32": 1, + "47": 1 + }, + "gamesPlayed": 2, + "medianWords": 8.5, + "medianLetters": 39.5 + }, + "giudeo": { + "best": { + "word": "giudeo", + "letters": 54 + }, + "worst": { + "word": "giudeo", + "letters": 54 + }, + "totalWords": { + "13": 1 + }, + "totalLetters": { + "54": 1 + }, + "gamesPlayed": 1, + "medianWords": 13, + "medianLetters": 54 + }, + "donnaiolo": { + "best": { + "word": "donnaiolo", + "letters": 55 + }, + "worst": { + "word": "donnaiolo", + "letters": 55 + }, + "totalWords": { + "10": 1 + }, + "totalLetters": { + "55": 1 + }, + "gamesPlayed": 1, + "medianWords": 10, + "medianLetters": 55 + }, + "giravite": { + "best": { + "word": "giravite", + "letters": 65 + }, + "worst": { + "word": "giravite", + "letters": 65 + }, + "totalWords": { + "14": 1 + }, + "totalLetters": { + "65": 1 + }, + "gamesPlayed": 1, + "medianWords": 14, + "medianLetters": 65 + }, + "ancorare": { + "best": { + "word": "ancorare", + "letters": 48 + }, + "worst": { + "word": "ancorare", + "letters": 51 + }, + "totalWords": { + "9": 1, + "10": 1 + }, + "totalLetters": { + "48": 1, + "51": 1 + }, + "gamesPlayed": 2, + "medianWords": 9.5, + "medianLetters": 49.5 + }, + "impero": { + "best": { + "word": "impero", + "letters": 26 + }, + "worst": { + "word": "impero", + "letters": 31 + }, + "totalWords": { + "4": 1, + "5": 1 + }, + "totalLetters": { + "26": 1, + "31": 1 + }, + "gamesPlayed": 2, + "medianWords": 4.5, + "medianLetters": 28.5 + }, + "ballata": { + "best": { + "word": "ballata", + "letters": 24 + }, + "worst": { + "word": "ballata", + "letters": 52 + }, + "totalWords": { + "3": 1, + "11": 1 + }, + "totalLetters": { + "24": 1, + "52": 1 + }, + "gamesPlayed": 2, + "medianWords": 7, + "medianLetters": 38 + }, + "vocazione": { + "best": { + "word": "vocazione", + "letters": 42 + }, + "worst": { + "word": "vocazione", + "letters": 57 + }, + "totalWords": { + "7": 1, + "10": 1 + }, + "totalLetters": { + "42": 1, + "57": 1 + }, + "gamesPlayed": 2, + "medianWords": 8.5, + "medianLetters": 49.5 + }, + "adultera": { + "best": { + "word": "adultera", + "letters": 28 + }, + "worst": { + "word": "adultera", + "letters": 35 + }, + "totalWords": { + "5": 2 + }, + "totalLetters": { + "28": 1, + "35": 1 + }, + "gamesPlayed": 2, + "medianWords": 5, + "medianLetters": 31.5 + }, + "svizzero": { + "best": { + "word": "svizzero", + "letters": 44 + }, + "worst": { + "word": "svizzero", + "letters": 97 + }, + "totalWords": { + "9": 1, + "24": 1 + }, + "totalLetters": { + "44": 1, + "97": 1 + }, + "gamesPlayed": 2, + "medianWords": 16.5, + "medianLetters": 70.5 + }, + "cortese": { + "best": { + "word": "cortese", + "letters": 28 + }, + "worst": { + "word": "cortese", + "letters": 28 + }, + "totalWords": { + "4": 1 + }, + "totalLetters": { + "28": 1 + }, + "gamesPlayed": 1, + "medianWords": 4, + "medianLetters": 28 + }, + "superbo": { + "best": { + "word": "superbo", + "letters": 29 + }, + "worst": { + "word": "superbo", + "letters": 51 + }, + "totalWords": { + "5": 1, + "8": 1 + }, + "totalLetters": { + "29": 1, + "51": 1 + }, + "gamesPlayed": 2, + "medianWords": 6.5, + "medianLetters": 40 + }, + "torbido": { + "best": { + "word": "torbido", + "letters": 33 + }, + "worst": { + "word": "torbido", + "letters": 41 + }, + "totalWords": { + "5": 1, + "7": 1 + }, + "totalLetters": { + "33": 1, + "41": 1 + }, + "gamesPlayed": 2, + "medianWords": 6, + "medianLetters": 37 + }, + "ritegno": { + "best": { + "word": "ritegno", + "letters": 39 + }, + "worst": { + "word": "ritegno", + "letters": 48 + }, + "totalWords": { + "7": 1, + "9": 1 + }, + "totalLetters": { + "39": 1, + "48": 1 + }, + "gamesPlayed": 2, + "medianWords": 8, + "medianLetters": 43.5 + }, + "condanna": { + "best": { + "word": "condanna", + "letters": 50 + }, + "worst": { + "word": "condanna", + "letters": 50 + }, + "totalWords": { + "13": 1 + }, + "totalLetters": { + "50": 1 + }, + "gamesPlayed": 1, + "medianWords": 13, + "medianLetters": 50 + }, + "eroina": { + "best": { + "word": "eroina", + "letters": 39 + }, + "worst": { + "word": "eroina", + "letters": 39 + }, + "totalWords": { + "6": 1 + }, + "totalLetters": { + "39": 1 + }, + "gamesPlayed": 1, + "medianWords": 6, + "medianLetters": 39 + }, + "mongolia": { + "best": { + "word": "mongolia", + "letters": 21 + }, + "worst": { + "word": "mongolia", + "letters": 22 + }, + "totalWords": { + "3": 2 + }, + "totalLetters": { + "21": 1, + "22": 1 + }, + "gamesPlayed": 2, + "medianWords": 3, + "medianLetters": 21.5 + }, + "arredare": { + "best": { + "word": "arredare", + "letters": 60 + }, + "worst": { + "word": "arredare", + "letters": 72 + }, + "totalWords": { + "15": 1, + "19": 1 + }, + "totalLetters": { + "60": 1, + "72": 1 + }, + "gamesPlayed": 2, + "medianWords": 17, + "medianLetters": 66 + }, + "cariatide": { + "best": { + "word": "cariatide", + "letters": 53 + }, + "worst": { + "word": "cariatide", + "letters": 83 + }, + "totalWords": { + "12": 1, + "19": 1 + }, + "totalLetters": { + "53": 1, + "83": 1 + }, + "gamesPlayed": 2, + "medianWords": 15.5, + "medianLetters": 68 + }, + "toporagno": { + "best": { + "word": "toporagno", + "letters": 67 + }, + "worst": { + "word": "toporagno", + "letters": 67 + }, + "totalWords": { + "13": 1 + }, + "totalLetters": { + "67": 1 + }, + "gamesPlayed": 1, + "medianWords": 13, + "medianLetters": 67 + }, + "iponimo": { + "best": { + "word": "iponimo", + "letters": 37 + }, + "worst": { + "word": "iponimo", + "letters": 53 + }, + "totalWords": { + "8": 1, + "13": 1 + }, + "totalLetters": { + "37": 1, + "53": 1 + }, + "gamesPlayed": 2, + "medianWords": 10.5, + "medianLetters": 45 + } + }, + "hardestWords": [ + "esagitato", + "anfratto", + "svizzero", + "cariatide", + "toporagno", + "febbraio", + "arredare", + "scagliare", + "ipnotico", + "giravite", + "assistito", + "bottiglia", + "praticare", + "epigramma", + "obliquo", + "freddezza", + "donnaiolo", + "giudeo", + "ozioso", + "assumere", + "schiavo", + "sozzura", + "condanna", + "ancorare", + "vocazione", + "rotore", + "episodico", + "massetere", + "gomitolo", + "iponimo", + "obovato", + "schedare", + "ritegno", + "reciso", + "superbo", + "giovanni", + "tommaso", + "decisivo", + "perfido", + "eroina", + "ballata", + "improprio", + "fascicolo", + "spagnola", + "mostrare", + "watt", + "specifico", + "torbido", + "premiare", + "affermare" + ], + "bestWords": [ + "moro", + "pesci", + "mongolia", + "medaglia", + "regime", + "tanga", + "lino", + "merito", + "prete", + "sforzo", + "cortese", + "basso", + "impero", + "circa", + "volante", + "dominio", + "adultera", + "precario", + "frontale", + "affermare", + "premiare", + "specifico", + "torbido", + "watt", + "mostrare", + "spagnola", + "fascicolo", + "improprio", + "ballata", + "eroina", + "perfido", + "decisivo", + "giovanni", + "tommaso", + "superbo", + "reciso", + "ritegno", + "schedare", + "obovato", + "iponimo", + "gomitolo", + "massetere", + "episodico", + "rotore", + "vocazione", + "ancorare", + "condanna", + "sozzura", + "schiavo", + "assumere" + ] +} \ No newline at end of file diff --git a/public/year-summary/2025/pl-info.json b/public/year-summary/2025/pl-info.json new file mode 100644 index 000000000..304782e0e --- /dev/null +++ b/public/year-summary/2025/pl-info.json @@ -0,0 +1,29490 @@ +{ + "all": { + "best": { + "word": "łupież", + "letters": 6 + }, + "worst": { + "word": "afrikaans", + "letters": 162 + }, + "totalWords": { + "1": 2, + "2": 721, + "3": 1790, + "4": 1451, + "5": 826, + "6": 439, + "7": 220, + "8": 101, + "9": 48, + "10": 25, + "11": 8, + "12": 10, + "13": 3, + "14": 4, + "15": 2, + "19": 1, + "33": 1 + }, + "totalLetters": { + "6": 1, + "8": 1, + "12": 5, + "13": 13, + "14": 42, + "15": 66, + "16": 68, + "17": 92, + "18": 124, + "19": 178, + "20": 202, + "21": 238, + "22": 236, + "23": 240, + "24": 306, + "25": 281, + "26": 289, + "27": 315, + "28": 262, + "29": 273, + "30": 249, + "31": 242, + "32": 210, + "33": 202, + "34": 174, + "35": 164, + "36": 155, + "37": 114, + "38": 95, + "39": 116, + "40": 86, + "41": 66, + "42": 71, + "43": 62, + "44": 54, + "45": 51, + "46": 39, + "47": 24, + "48": 44, + "49": 25, + "50": 23, + "51": 16, + "52": 21, + "53": 11, + "54": 8, + "55": 12, + "56": 8, + "57": 12, + "58": 6, + "59": 6, + "60": 7, + "61": 8, + "62": 4, + "63": 1, + "64": 6, + "65": 4, + "66": 2, + "67": 3, + "68": 1, + "69": 3, + "70": 3, + "71": 1, + "72": 2, + "73": 2, + "74": 1, + "83": 2, + "86": 1, + "92": 1, + "93": 1, + "162": 1 + }, + "gamesPlayed": 5653, + "medianWords": 3.5, + "medianLetters": 27.5 + }, + "activePlayers": 47, + "byUser": { + "Lvter": { + "results": { + "2": { + "best": { + "word": "smok", + "letters": 22 + }, + "worst": { + "word": "zabawnie", + "letters": 42 + }, + "totalWords": { + "3": 1, + "4": 3, + "5": 2 + }, + "totalLetters": { + "22": 1, + "24": 1, + "25": 2, + "30": 1, + "42": 1 + }, + "gamesPlayed": 6, + "medianWords": 3.5, + "medianLetters": 24.5 + }, + "year": { + "best": { + "word": "smok", + "letters": 22 + }, + "worst": { + "word": "zabawnie", + "letters": 42 + }, + "totalWords": { + "3": 1, + "4": 3, + "5": 2 + }, + "totalLetters": { + "22": 1, + "24": 1, + "25": 2, + "30": 1, + "42": 1 + }, + "gamesPlayed": 6, + "medianWords": 3.5, + "medianLetters": 24.5 + } + }, + "dates": { + "year": [] + }, + "worstDates": { + "year": [] + } + }, + "kwiecik": { + "best50": { + "best": { + "word": "ząbek", + "letters": 13 + }, + "worst": { + "word": "szczęk", + "letters": 22 + }, + "totalWords": { + "2": 39, + "3": 10, + "4": 1 + }, + "totalLetters": { + "13": 1, + "14": 1, + "15": 3, + "16": 1, + "17": 4, + "18": 3, + "19": 9, + "20": 16, + "21": 11, + "22": 1 + }, + "gamesPlayed": 50, + "medianWords": 2, + "medianLetters": 19.5 + }, + "hardest50": { + "best": { + "word": "względem", + "letters": 19 + }, + "worst": { + "word": "helsiński", + "letters": 65 + }, + "totalWords": { + "2": 5, + "3": 14, + "4": 9, + "5": 8, + "6": 1, + "7": 3, + "9": 1, + "10": 1 + }, + "totalLetters": { + "19": 1, + "23": 2, + "24": 4, + "25": 1, + "26": 2, + "27": 1, + "29": 3, + "30": 2, + "31": 3, + "32": 2, + "33": 1, + "34": 5, + "35": 4, + "39": 1, + "40": 2, + "41": 1, + "42": 1, + "44": 1, + "45": 1, + "48": 1, + "50": 1, + "57": 1, + "65": 1 + }, + "gamesPlayed": 42, + "medianWords": 3.5, + "medianLetters": 32.5 + }, + "results": { + "1": { + "best": { + "word": "zioła", + "letters": 15 + }, + "worst": { + "word": "krytyka", + "letters": 47 + }, + "totalWords": { + "2": 4, + "3": 8, + "4": 13, + "5": 3, + "6": 2, + "7": 1 + }, + "totalLetters": { + "15": 1, + "16": 1, + "17": 1, + "20": 1, + "21": 1, + "22": 2, + "23": 2, + "24": 1, + "27": 2, + "28": 2, + "29": 1, + "31": 3, + "32": 5, + "34": 2, + "36": 1, + "39": 1, + "41": 1, + "43": 1, + "44": 1, + "47": 1 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 31 + }, + "2": { + "best": { + "word": "względem", + "letters": 19 + }, + "worst": { + "word": "igrać", + "letters": 57 + }, + "totalWords": { + "2": 1, + "3": 10, + "4": 6, + "5": 6, + "6": 3, + "9": 1 + }, + "totalLetters": { + "19": 1, + "20": 1, + "22": 1, + "24": 1, + "25": 3, + "26": 1, + "27": 1, + "28": 1, + "29": 1, + "30": 1, + "31": 1, + "33": 2, + "34": 2, + "35": 3, + "36": 1, + "38": 1, + "39": 1, + "40": 1, + "42": 1, + "48": 1, + "57": 1 + }, + "gamesPlayed": 27, + "medianWords": 4, + "medianLetters": 33 + }, + "3": { + "best": { + "word": "front", + "letters": 17 + }, + "worst": { + "word": "chatroom", + "letters": 57 + }, + "totalWords": { + "2": 3, + "3": 6, + "4": 7, + "5": 5, + "6": 3, + "7": 1, + "10": 1 + }, + "totalLetters": { + "17": 1, + "18": 2, + "21": 2, + "23": 2, + "24": 1, + "25": 1, + "26": 1, + "28": 3, + "29": 1, + "30": 3, + "32": 1, + "35": 1, + "36": 2, + "40": 1, + "43": 1, + "47": 1, + "50": 1, + "57": 1 + }, + "gamesPlayed": 26, + "medianWords": 3.5, + "medianLetters": 28.5 + }, + "4": { + "best": { + "word": "eskadra", + "letters": 20 + }, + "worst": { + "word": "helsiński", + "letters": 65 + }, + "totalWords": { + "2": 2, + "3": 11, + "4": 9, + "5": 4, + "6": 1, + "7": 2, + "9": 1 + }, + "totalLetters": { + "20": 2, + "22": 1, + "23": 1, + "24": 2, + "26": 2, + "27": 1, + "28": 2, + "29": 5, + "32": 3, + "33": 2, + "35": 1, + "36": 3, + "37": 1, + "40": 1, + "42": 1, + "44": 1, + "65": 1 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 28.5 + }, + "5": { + "best": { + "word": "neon", + "letters": 15 + }, + "worst": { + "word": "spalanie", + "letters": 57 + }, + "totalWords": { + "2": 6, + "3": 11, + "4": 9, + "5": 3, + "6": 1, + "8": 1 + }, + "totalLetters": { + "15": 2, + "17": 2, + "19": 1, + "22": 2, + "23": 2, + "24": 3, + "26": 4, + "28": 1, + "29": 4, + "30": 1, + "31": 1, + "32": 1, + "33": 1, + "34": 1, + "35": 3, + "43": 1, + "57": 1 + }, + "gamesPlayed": 31, + "medianWords": 3, + "medianLetters": 26 + }, + "6": { + "best": { + "word": "keja", + "letters": 19 + }, + "worst": { + "word": "skrywać", + "letters": 39 + }, + "totalWords": { + "2": 6, + "3": 15, + "4": 4, + "5": 4 + }, + "totalLetters": { + "19": 1, + "20": 1, + "21": 1, + "23": 2, + "24": 4, + "25": 1, + "26": 3, + "27": 4, + "28": 2, + "29": 1, + "30": 2, + "31": 1, + "32": 1, + "34": 3, + "35": 1, + "39": 1 + }, + "gamesPlayed": 29, + "medianWords": 3, + "medianLetters": 27 + }, + "7": { + "best": { + "word": "szkoła", + "letters": 14 + }, + "worst": { + "word": "wymuszać", + "letters": 48 + }, + "totalWords": { + "2": 12, + "3": 9, + "4": 3, + "5": 2, + "6": 1 + }, + "totalLetters": { + "14": 1, + "19": 1, + "21": 4, + "22": 2, + "23": 5, + "24": 2, + "25": 1, + "26": 1, + "27": 1, + "29": 2, + "30": 1, + "31": 1, + "32": 1, + "35": 1, + "40": 1, + "45": 1, + "48": 1 + }, + "gamesPlayed": 27, + "medianWords": 3, + "medianLetters": 24 + }, + "8": { + "best": { + "word": "spór", + "letters": 18 + }, + "worst": { + "word": "mroźny", + "letters": 42 + }, + "totalWords": { + "2": 10, + "3": 10, + "4": 3, + "5": 2, + "7": 1 + }, + "totalLetters": { + "18": 1, + "19": 2, + "20": 2, + "21": 2, + "22": 1, + "23": 2, + "24": 5, + "29": 2, + "30": 1, + "31": 1, + "33": 2, + "34": 1, + "39": 1, + "40": 1, + "41": 1, + "42": 1 + }, + "gamesPlayed": 26, + "medianWords": 2.5, + "medianLetters": 23.5 + }, + "9": { + "best": { + "word": "trefl", + "letters": 20 + }, + "worst": { + "word": "cierpkość", + "letters": 51 + }, + "totalWords": { + "2": 10, + "3": 8, + "4": 6, + "5": 2, + "6": 3, + "7": 1 + }, + "totalLetters": { + "20": 5, + "21": 1, + "23": 4, + "26": 2, + "27": 2, + "28": 1, + "29": 3, + "31": 3, + "32": 2, + "33": 2, + "34": 1, + "35": 1, + "37": 1, + "39": 1, + "51": 1 + }, + "gamesPlayed": 30, + "medianWords": 2.5, + "medianLetters": 28.5 + }, + "10": { + "best": { + "word": "lapis", + "letters": 20 + }, + "worst": { + "word": "dokonanie", + "letters": 40 + }, + "totalWords": { + "2": 5, + "3": 12, + "4": 4, + "5": 1 + }, + "totalLetters": { + "20": 2, + "23": 3, + "24": 4, + "25": 4, + "26": 2, + "28": 1, + "29": 1, + "30": 2, + "31": 1, + "32": 1, + "40": 1 + }, + "gamesPlayed": 22, + "medianWords": 2.5, + "medianLetters": 24.5 + }, + "11": { + "best": { + "word": "ząbek", + "letters": 13 + }, + "worst": { + "word": "ronić", + "letters": 55 + }, + "totalWords": { + "2": 11, + "3": 9, + "4": 5, + "5": 1, + "7": 1, + "8": 1 + }, + "totalLetters": { + "13": 1, + "19": 2, + "22": 3, + "23": 5, + "24": 2, + "25": 2, + "27": 2, + "28": 1, + "29": 2, + "30": 1, + "31": 1, + "33": 1, + "34": 2, + "36": 1, + "47": 1, + "55": 1 + }, + "gamesPlayed": 28, + "medianWords": 2.5, + "medianLetters": 24.5 + }, + "12": { + "best": { + "word": "plon", + "letters": 19 + }, + "worst": { + "word": "target", + "letters": 38 + }, + "totalWords": { + "2": 5, + "3": 4, + "4": 5, + "5": 4 + }, + "totalLetters": { + "19": 1, + "20": 2, + "22": 1, + "24": 2, + "25": 1, + "27": 2, + "28": 1, + "29": 1, + "30": 3, + "33": 1, + "35": 1, + "37": 1, + "38": 1 + }, + "gamesPlayed": 18, + "medianWords": 3.5, + "medianLetters": 27.5 + }, + "year": { + "best": { + "word": "ząbek", + "letters": 13 + }, + "worst": { + "word": "helsiński", + "letters": 65 + }, + "totalWords": { + "2": 75, + "3": 113, + "4": 74, + "5": 37, + "6": 14, + "7": 7, + "8": 2, + "9": 2, + "10": 1 + }, + "totalLetters": { + "13": 1, + "14": 1, + "15": 3, + "16": 1, + "17": 4, + "18": 3, + "19": 9, + "20": 16, + "21": 11, + "22": 13, + "23": 28, + "24": 27, + "25": 13, + "26": 16, + "27": 15, + "28": 15, + "29": 24, + "30": 15, + "31": 13, + "32": 15, + "33": 11, + "34": 12, + "35": 12, + "36": 8, + "37": 3, + "38": 2, + "39": 5, + "40": 6, + "41": 2, + "42": 3, + "43": 3, + "44": 2, + "45": 1, + "47": 3, + "48": 2, + "50": 1, + "51": 1, + "55": 1, + "57": 3, + "65": 1 + }, + "gamesPlayed": 325, + "medianWords": 3, + "medianLetters": 28 + } + }, + "dates": { + "1": [ + "06.01.2025", + "26.01.2025", + "22.01.2025", + "03.11.2025", + "23.11.2025" + ], + "2": [ + "03.02.2025", + "03.12.2025", + "01.12.2025" + ], + "3": [ + "01.03.2025", + "07.03.2025", + "30.03.2025" + ], + "4": [ + "24.04.2025", + "27.04.2025" + ], + "5": [ + "17.05.2025" + ], + "6": [ + "21.06.2025" + ], + "7": [ + "30.07.2025", + "31.07.2025" + ], + "8": [ + "15.08.2025", + "05.08.2025" + ], + "9": [ + "03.09.2025" + ], + "11": [ + "03.11.2025", + "23.11.2025" + ], + "12": [ + "03.12.2025", + "01.12.2025" + ], + "year": [ + "06.01.2025", + "26.01.2025", + "01.03.2025", + "07.03.2025", + "03.02.2025", + "22.01.2025", + "24.04.2025", + "27.04.2025", + "30.03.2025", + "03.09.2025", + "30.07.2025", + "17.05.2025", + "31.07.2025", + "15.08.2025", + "21.06.2025", + "05.08.2025", + "03.11.2025", + "23.11.2025", + "03.12.2025", + "01.12.2025" + ] + }, + "worstDates": { + "1": [ + "11.01.2025", + "19.01.2025", + "25.11.2025", + "18.11.2025" + ], + "2": [ + "01.02.2025", + "15.02.2025", + "19.02.2025", + "17.02.2025" + ], + "3": [ + "08.03.2025", + "31.03.2025" + ], + "4": [ + "22.04.2025" + ], + "5": [ + "13.05.2025", + "29.05.2025" + ], + "9": [ + "13.09.2025", + "01.09.2025", + "19.09.2025" + ], + "11": [ + "25.11.2025", + "18.11.2025" + ], + "year": [ + "01.02.2025", + "08.03.2025", + "15.02.2025", + "19.02.2025", + "17.02.2025", + "11.01.2025", + "19.01.2025", + "22.04.2025", + "31.03.2025", + "13.05.2025", + "13.09.2025", + "01.09.2025", + "19.09.2025", + "29.05.2025", + "25.11.2025", + "18.11.2025" + ] + } + }, + "Dzemik_Skrytozerca": { + "best50": { + "best": { + "word": "spór", + "letters": 14 + }, + "worst": { + "word": "bałtycki", + "letters": 23 + }, + "totalWords": { + "2": 25, + "3": 25 + }, + "totalLetters": { + "14": 1, + "15": 2, + "17": 3, + "18": 4, + "19": 5, + "20": 14, + "21": 11, + "22": 9, + "23": 1 + }, + "gamesPlayed": 50, + "medianWords": 2.5, + "medianLetters": 19.5 + }, + "hardest50": { + "best": { + "word": "groźnie", + "letters": 25 + }, + "worst": { + "word": "względem", + "letters": 93 + }, + "totalWords": { + "3": 4, + "4": 6, + "5": 9, + "6": 7, + "7": 8, + "8": 7, + "9": 2, + "10": 2, + "11": 2, + "12": 1, + "14": 1, + "19": 1 + }, + "totalLetters": { + "25": 2, + "26": 1, + "27": 1, + "31": 1, + "32": 2, + "34": 2, + "35": 1, + "38": 2, + "39": 2, + "40": 1, + "41": 4, + "42": 3, + "43": 1, + "44": 2, + "45": 1, + "46": 2, + "47": 1, + "49": 3, + "50": 1, + "53": 1, + "54": 2, + "55": 1, + "56": 2, + "57": 1, + "60": 2, + "61": 2, + "62": 2, + "64": 1, + "72": 1, + "73": 1, + "93": 1 + }, + "gamesPlayed": 50, + "medianWords": 5.5, + "medianLetters": 44.5 + }, + "results": { + "1": { + "best": { + "word": "kwadra", + "letters": 15 + }, + "worst": { + "word": "próbować", + "letters": 86 + }, + "totalWords": { + "2": 2, + "3": 11, + "4": 6, + "5": 7, + "7": 2, + "9": 1, + "12": 1, + "13": 1 + }, + "totalLetters": { + "15": 1, + "17": 1, + "20": 2, + "22": 1, + "23": 2, + "24": 1, + "25": 2, + "26": 1, + "27": 1, + "28": 1, + "30": 1, + "32": 1, + "33": 2, + "34": 3, + "35": 2, + "36": 1, + "37": 1, + "38": 1, + "46": 1, + "48": 1, + "56": 2, + "62": 1, + "86": 1 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 33 + }, + "2": { + "best": { + "word": "kręgowy", + "letters": 17 + }, + "worst": { + "word": "względem", + "letters": 93 + }, + "totalWords": { + "2": 2, + "3": 4, + "4": 7, + "5": 8, + "6": 1, + "7": 4, + "19": 1 + }, + "totalLetters": { + "17": 1, + "18": 1, + "20": 1, + "23": 2, + "24": 2, + "27": 1, + "28": 2, + "29": 2, + "33": 2, + "38": 1, + "39": 1, + "41": 2, + "42": 3, + "43": 1, + "45": 2, + "46": 1, + "47": 1, + "93": 1 + }, + "gamesPlayed": 27, + "medianWords": 5, + "medianLetters": 33 + }, + "3": { + "best": { + "word": "znawca", + "letters": 15 + }, + "worst": { + "word": "ładowarka", + "letters": 51 + }, + "totalWords": { + "2": 4, + "3": 8, + "4": 7, + "5": 6, + "6": 1, + "7": 3, + "8": 1, + "9": 1 + }, + "totalLetters": { + "15": 1, + "19": 2, + "20": 1, + "21": 3, + "23": 1, + "24": 2, + "25": 1, + "26": 1, + "27": 3, + "28": 1, + "30": 1, + "32": 1, + "33": 1, + "34": 2, + "35": 1, + "36": 1, + "37": 1, + "39": 1, + "40": 1, + "42": 1, + "43": 1, + "48": 1, + "49": 1, + "51": 1 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 28 + }, + "4": { + "best": { + "word": "zajęty", + "letters": 19 + }, + "worst": { + "word": "prazeodym", + "letters": 62 + }, + "totalWords": { + "2": 2, + "3": 7, + "4": 4, + "5": 5, + "6": 6, + "7": 2, + "8": 2, + "9": 1, + "10": 1 + }, + "totalLetters": { + "19": 1, + "20": 1, + "21": 1, + "22": 1, + "23": 2, + "24": 1, + "26": 1, + "27": 2, + "31": 1, + "32": 1, + "33": 1, + "34": 4, + "37": 1, + "39": 1, + "40": 1, + "41": 1, + "42": 2, + "43": 1, + "44": 1, + "46": 2, + "50": 1, + "61": 1, + "62": 1 + }, + "gamesPlayed": 30, + "medianWords": 4.5, + "medianLetters": 33.5 + }, + "5": { + "best": { + "word": "mimikra", + "letters": 18 + }, + "worst": { + "word": "skórzasty", + "letters": 60 + }, + "totalWords": { + "2": 2, + "3": 7, + "4": 5, + "5": 6, + "6": 2, + "7": 3, + "8": 5, + "9": 1 + }, + "totalLetters": { + "18": 1, + "20": 2, + "22": 1, + "24": 1, + "25": 2, + "26": 1, + "27": 2, + "29": 1, + "30": 1, + "32": 2, + "33": 1, + "35": 2, + "38": 2, + "39": 1, + "40": 3, + "43": 1, + "44": 2, + "47": 1, + "48": 1, + "49": 1, + "54": 1, + "60": 1 + }, + "gamesPlayed": 31, + "medianWords": 5, + "medianLetters": 35 + }, + "6": { + "best": { + "word": "francuz", + "letters": 20 + }, + "worst": { + "word": "dwuizbowy", + "letters": 57 + }, + "totalWords": { + "2": 1, + "3": 9, + "4": 9, + "5": 4, + "7": 4, + "8": 1, + "9": 1, + "10": 1 + }, + "totalLetters": { + "20": 1, + "21": 1, + "23": 1, + "26": 3, + "27": 3, + "28": 2, + "29": 4, + "33": 2, + "36": 2, + "37": 1, + "38": 2, + "41": 1, + "43": 1, + "45": 1, + "47": 1, + "53": 2, + "54": 1, + "57": 1 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 31 + }, + "7": { + "best": { + "word": "rydz", + "letters": 21 + }, + "worst": { + "word": "żonglować", + "letters": 72 + }, + "totalWords": { + "3": 6, + "4": 8, + "5": 5, + "6": 4, + "7": 3, + "8": 3, + "9": 1, + "11": 1 + }, + "totalLetters": { + "21": 1, + "22": 1, + "24": 1, + "25": 2, + "27": 2, + "28": 1, + "29": 1, + "31": 3, + "32": 2, + "33": 1, + "38": 2, + "39": 2, + "40": 1, + "41": 2, + "42": 1, + "44": 1, + "45": 1, + "46": 1, + "49": 1, + "53": 1, + "55": 1, + "57": 1, + "72": 1 + }, + "gamesPlayed": 31, + "medianWords": 5, + "medianLetters": 38 + }, + "8": { + "best": { + "word": "spór", + "letters": 14 + }, + "worst": { + "word": "mroźny", + "letters": 73 + }, + "totalWords": { + "2": 3, + "3": 5, + "4": 5, + "5": 3, + "6": 3, + "7": 6, + "8": 1, + "9": 1, + "10": 1, + "12": 2, + "14": 1 + }, + "totalLetters": { + "14": 1, + "19": 1, + "23": 2, + "24": 1, + "25": 3, + "26": 1, + "27": 1, + "31": 1, + "32": 1, + "34": 3, + "35": 1, + "36": 1, + "39": 1, + "40": 1, + "42": 1, + "43": 1, + "44": 1, + "49": 1, + "55": 1, + "56": 2, + "61": 2, + "64": 1, + "66": 1, + "73": 1 + }, + "gamesPlayed": 31, + "medianWords": 5, + "medianLetters": 35 + }, + "9": { + "best": { + "word": "zaparcie", + "letters": 19 + }, + "worst": { + "word": "leczenie", + "letters": 48 + }, + "totalWords": { + "2": 3, + "3": 7, + "4": 5, + "5": 5, + "6": 7, + "7": 2, + "8": 1 + }, + "totalLetters": { + "19": 1, + "20": 1, + "21": 3, + "25": 4, + "26": 1, + "27": 2, + "29": 1, + "30": 3, + "32": 1, + "34": 1, + "35": 2, + "37": 1, + "38": 1, + "39": 1, + "40": 2, + "42": 1, + "43": 1, + "47": 1, + "48": 2 + }, + "gamesPlayed": 30, + "medianWords": 4.5, + "medianLetters": 29.5 + }, + "10": { + "best": { + "word": "wyjec", + "letters": 20 + }, + "worst": { + "word": "wartownia", + "letters": 64 + }, + "totalWords": { + "2": 1, + "3": 6, + "4": 9, + "5": 3, + "6": 4, + "7": 2, + "8": 2, + "9": 1, + "10": 1 + }, + "totalLetters": { + "20": 2, + "22": 1, + "23": 2, + "24": 1, + "26": 1, + "27": 3, + "28": 2, + "32": 1, + "33": 1, + "34": 1, + "39": 2, + "40": 2, + "41": 1, + "42": 1, + "44": 2, + "45": 1, + "50": 1, + "51": 1, + "57": 1, + "62": 1, + "64": 1 + }, + "gamesPlayed": 29, + "medianWords": 4, + "medianLetters": 34 + }, + "11": { + "best": { + "word": "położna", + "letters": 18 + }, + "worst": { + "word": "olbrzymka", + "letters": 83 + }, + "totalWords": { + "2": 4, + "3": 7, + "4": 5, + "5": 3, + "6": 2, + "7": 2, + "8": 2, + "9": 1, + "11": 2, + "14": 1 + }, + "totalLetters": { + "18": 1, + "20": 3, + "22": 4, + "25": 1, + "27": 1, + "28": 2, + "29": 2, + "30": 1, + "31": 1, + "32": 1, + "35": 2, + "37": 1, + "38": 2, + "45": 1, + "49": 1, + "50": 1, + "52": 1, + "60": 1, + "62": 1, + "83": 1 + }, + "gamesPlayed": 29, + "medianWords": 4, + "medianLetters": 30 + }, + "12": { + "best": { + "word": "nurek", + "letters": 17 + }, + "worst": { + "word": "chanson", + "letters": 54 + }, + "totalWords": { + "2": 2, + "3": 5, + "4": 4, + "5": 5, + "6": 1, + "8": 3, + "10": 1 + }, + "totalLetters": { + "17": 1, + "18": 1, + "21": 2, + "25": 3, + "26": 1, + "28": 1, + "31": 2, + "32": 1, + "33": 2, + "34": 2, + "35": 1, + "45": 2, + "50": 1, + "54": 1 + }, + "gamesPlayed": 21, + "medianWords": 4, + "medianLetters": 31 + }, + "year": { + "best": { + "word": "spór", + "letters": 14 + }, + "worst": { + "word": "względem", + "letters": 93 + }, + "totalWords": { + "2": 26, + "3": 82, + "4": 74, + "5": 60, + "6": 31, + "7": 33, + "8": 21, + "9": 9, + "10": 5, + "11": 3, + "12": 3, + "13": 1, + "14": 2, + "19": 1 + }, + "totalLetters": { + "14": 1, + "15": 2, + "17": 3, + "18": 4, + "19": 5, + "20": 14, + "21": 11, + "22": 9, + "23": 12, + "24": 10, + "25": 18, + "26": 11, + "27": 21, + "28": 12, + "29": 11, + "30": 7, + "31": 8, + "32": 12, + "33": 13, + "34": 16, + "35": 11, + "36": 5, + "37": 6, + "38": 11, + "39": 10, + "40": 11, + "41": 7, + "42": 10, + "43": 7, + "44": 7, + "45": 8, + "46": 5, + "47": 4, + "48": 5, + "49": 5, + "50": 4, + "51": 2, + "52": 1, + "53": 3, + "54": 3, + "55": 2, + "56": 4, + "57": 3, + "60": 2, + "61": 3, + "62": 4, + "64": 2, + "66": 1, + "72": 1, + "73": 1, + "83": 1, + "86": 1, + "93": 1 + }, + "gamesPlayed": 351, + "medianWords": 4, + "medianLetters": 33 + } + }, + "dates": { + "1": [ + "07.01.2025" + ], + "2": [ + "11.02.2025" + ], + "3": [ + "06.03.2025", + "01.03.2025", + "11.03.2025", + "27.03.2025" + ], + "4": [ + "05.04.2025", + "10.04.2025" + ], + "6": [ + "13.06.2025" + ], + "year": [ + "06.03.2025", + "01.03.2025", + "11.03.2025", + "11.02.2025", + "07.01.2025", + "05.04.2025", + "10.04.2025", + "27.03.2025", + "13.06.2025" + ] + }, + "worstDates": { + "1": [ + "06.01.2025", + "23.01.2025", + "15.01.2025", + "10.01.2025", + "31.01.2025", + "20.01.2025", + "27.01.2025", + "20.11.2025", + "02.11.2025", + "29.11.2025", + "21.11.2025", + "06.11.2025", + "09.11.2025" + ], + "2": [ + "24.02.2025", + "25.02.2025", + "04.02.2025", + "21.02.2025", + "03.02.2025", + "08.02.2025", + "20.02.2025", + "19.12.2025", + "02.12.2025", + "05.12.2025", + "10.12.2025", + "21.12.2025" + ], + "3": [ + "14.03.2025", + "16.03.2025", + "17.03.2025", + "04.03.2025", + "12.03.2025" + ], + "4": [ + "15.04.2025", + "17.04.2025", + "20.04.2025", + "24.04.2025", + "27.04.2025", + "28.04.2025", + "25.04.2025" + ], + "5": [ + "03.05.2025", + "10.05.2025", + "11.05.2025", + "14.05.2025", + "05.05.2025", + "18.05.2025", + "20.05.2025", + "26.05.2025", + "19.05.2025", + "31.05.2025", + "24.05.2025" + ], + "6": [ + "25.06.2025", + "03.06.2025", + "07.06.2025", + "22.06.2025", + "28.06.2025" + ], + "7": [ + "03.07.2025", + "04.07.2025", + "17.07.2025", + "24.07.2025", + "10.07.2025", + "22.07.2025", + "14.07.2025" + ], + "8": [ + "28.08.2025", + "22.08.2025", + "27.08.2025", + "04.08.2025", + "05.08.2025", + "02.08.2025", + "08.08.2025", + "26.08.2025", + "11.08.2025" + ], + "9": [ + "06.09.2025", + "21.09.2025", + "01.09.2025", + "16.09.2025", + "15.09.2025", + "02.09.2025", + "26.09.2025", + "05.09.2025" + ], + "10": [ + "01.10.2025", + "15.10.2025", + "23.10.2025", + "24.10.2025", + "11.10.2025", + "07.10.2025", + "21.10.2025" + ], + "11": [ + "20.11.2025", + "02.11.2025", + "29.11.2025", + "21.11.2025", + "06.11.2025", + "09.11.2025" + ], + "12": [ + "19.12.2025", + "02.12.2025", + "05.12.2025", + "10.12.2025", + "21.12.2025" + ], + "year": [ + "14.03.2025", + "16.03.2025", + "17.03.2025", + "06.01.2025", + "24.02.2025", + "25.02.2025", + "23.01.2025", + "15.01.2025", + "04.02.2025", + "21.02.2025", + "10.01.2025", + "31.01.2025", + "03.02.2025", + "08.02.2025", + "04.03.2025", + "20.01.2025", + "27.01.2025", + "12.03.2025", + "20.02.2025", + "03.05.2025", + "15.04.2025", + "17.04.2025", + "20.04.2025", + "24.04.2025", + "27.04.2025", + "10.05.2025", + "28.04.2025", + "11.05.2025", + "14.05.2025", + "05.05.2025", + "25.04.2025", + "03.07.2025", + "04.07.2025", + "06.09.2025", + "17.07.2025", + "18.05.2025", + "20.05.2025", + "24.07.2025", + "25.06.2025", + "03.06.2025", + "21.09.2025", + "01.10.2025", + "26.05.2025", + "19.05.2025", + "01.09.2025", + "28.08.2025", + "16.09.2025", + "31.05.2025", + "15.09.2025", + "02.09.2025", + "22.08.2025", + "07.06.2025", + "27.08.2025", + "10.07.2025", + "26.09.2025", + "04.08.2025", + "24.05.2025", + "22.07.2025", + "05.09.2025", + "05.08.2025", + "02.08.2025", + "22.06.2025", + "08.08.2025", + "14.07.2025", + "28.06.2025", + "26.08.2025", + "11.08.2025", + "15.10.2025", + "20.11.2025", + "23.10.2025", + "24.10.2025", + "19.12.2025", + "02.11.2025", + "11.10.2025", + "07.10.2025", + "29.11.2025", + "02.12.2025", + "21.11.2025", + "05.12.2025", + "10.12.2025", + "06.11.2025", + "21.12.2025", + "09.11.2025", + "21.10.2025" + ] + } + }, + "radziol": { + "best50": { + "best": { + "word": "spór", + "letters": 17 + }, + "worst": { + "word": "pracownik", + "letters": 22 + }, + "totalWords": { + "2": 41, + "3": 9 + }, + "totalLetters": { + "17": 1, + "18": 3, + "19": 9, + "20": 12, + "21": 12, + "22": 13 + }, + "gamesPlayed": 50, + "medianWords": 2, + "medianLetters": 20.5 + }, + "hardest50": { + "best": { + "word": "wartownia", + "letters": 22 + }, + "worst": { + "word": "afrikaans", + "letters": 70 + }, + "totalWords": { + "2": 2, + "3": 8, + "4": 20, + "5": 10, + "6": 7, + "7": 1, + "12": 1 + }, + "totalLetters": { + "22": 2, + "28": 3, + "29": 1, + "30": 3, + "31": 1, + "33": 1, + "35": 3, + "36": 5, + "37": 6, + "38": 5, + "39": 6, + "40": 1, + "41": 1, + "42": 1, + "43": 1, + "44": 1, + "45": 3, + "48": 1, + "49": 1, + "50": 1, + "51": 1, + "70": 1 + }, + "gamesPlayed": 49, + "medianWords": 4, + "medianLetters": 37 + }, + "results": { + "1": { + "best": { + "word": "piętno", + "letters": 19 + }, + "worst": { + "word": "pozbawiać", + "letters": 50 + }, + "totalWords": { + "2": 7, + "3": 8, + "4": 12, + "5": 3, + "6": 1 + }, + "totalLetters": { + "19": 1, + "20": 2, + "21": 2, + "22": 2, + "24": 3, + "27": 2, + "28": 1, + "29": 3, + "30": 3, + "31": 1, + "32": 1, + "33": 3, + "34": 1, + "35": 1, + "37": 2, + "38": 1, + "39": 1, + "50": 1 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 29 + }, + "2": { + "best": { + "word": "ciasto", + "letters": 19 + }, + "worst": { + "word": "rogówka", + "letters": 45 + }, + "totalWords": { + "2": 4, + "3": 13, + "4": 8, + "5": 2, + "6": 1 + }, + "totalLetters": { + "19": 1, + "20": 1, + "21": 2, + "22": 2, + "23": 1, + "24": 2, + "25": 1, + "26": 1, + "28": 3, + "29": 2, + "31": 1, + "32": 2, + "34": 2, + "35": 1, + "36": 1, + "37": 1, + "40": 1, + "41": 1, + "44": 1, + "45": 1 + }, + "gamesPlayed": 28, + "medianWords": 2.5, + "medianLetters": 28.5 + }, + "3": { + "best": { + "word": "znawca", + "letters": 19 + }, + "worst": { + "word": "zawzięty", + "letters": 43 + }, + "totalWords": { + "2": 3, + "3": 10, + "4": 9, + "5": 6, + "6": 1, + "7": 1 + }, + "totalLetters": { + "19": 2, + "20": 1, + "24": 4, + "25": 1, + "26": 1, + "28": 1, + "29": 1, + "30": 1, + "31": 2, + "32": 2, + "33": 1, + "35": 1, + "36": 3, + "37": 2, + "39": 3, + "40": 1, + "41": 1, + "42": 1, + "43": 1 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 31.5 + }, + "4": { + "best": { + "word": "czapla", + "letters": 19 + }, + "worst": { + "word": "popijać", + "letters": 45 + }, + "totalWords": { + "2": 4, + "3": 11, + "4": 8, + "5": 5, + "6": 2 + }, + "totalLetters": { + "19": 1, + "20": 3, + "22": 1, + "23": 2, + "25": 1, + "26": 2, + "27": 1, + "28": 1, + "29": 2, + "30": 1, + "32": 3, + "33": 2, + "34": 1, + "35": 1, + "36": 1, + "37": 1, + "38": 1, + "40": 1, + "42": 1, + "43": 2, + "45": 1 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 31 + }, + "5": { + "best": { + "word": "czeluść", + "letters": 20 + }, + "worst": { + "word": "nacięcie", + "letters": 47 + }, + "totalWords": { + "2": 2, + "3": 18, + "4": 5, + "5": 5, + "6": 1 + }, + "totalLetters": { + "20": 1, + "21": 1, + "22": 2, + "23": 3, + "24": 1, + "25": 2, + "26": 3, + "27": 2, + "28": 1, + "29": 4, + "30": 2, + "31": 2, + "33": 1, + "35": 1, + "36": 2, + "37": 1, + "42": 1, + "47": 1 + }, + "gamesPlayed": 31, + "medianWords": 3, + "medianLetters": 28 + }, + "6": { + "best": { + "word": "trupa", + "letters": 18 + }, + "worst": { + "word": "garłacz", + "letters": 48 + }, + "totalWords": { + "2": 3, + "3": 19, + "4": 4, + "5": 3, + "6": 1 + }, + "totalLetters": { + "18": 1, + "21": 1, + "22": 3, + "24": 1, + "25": 2, + "27": 1, + "28": 4, + "29": 3, + "30": 4, + "31": 1, + "32": 2, + "33": 1, + "35": 1, + "36": 1, + "37": 1, + "39": 1, + "43": 1, + "48": 1 + }, + "gamesPlayed": 30, + "medianWords": 2.5, + "medianLetters": 28.5 + }, + "7": { + "best": { + "word": "walny", + "letters": 18 + }, + "worst": { + "word": "afrikaans", + "letters": 70 + }, + "totalWords": { + "2": 5, + "3": 14, + "4": 7, + "5": 2, + "6": 2, + "12": 1 + }, + "totalLetters": { + "18": 1, + "19": 2, + "20": 1, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "25": 1, + "26": 2, + "28": 2, + "29": 3, + "30": 4, + "31": 2, + "36": 1, + "37": 1, + "39": 4, + "41": 1, + "42": 1, + "70": 1 + }, + "gamesPlayed": 31, + "medianWords": 3, + "medianLetters": 29 + }, + "8": { + "best": { + "word": "spór", + "letters": 17 + }, + "worst": { + "word": "dagerotyp", + "letters": 51 + }, + "totalWords": { + "2": 4, + "3": 12, + "4": 9, + "5": 1, + "6": 2, + "7": 1 + }, + "totalLetters": { + "17": 1, + "18": 1, + "19": 1, + "20": 1, + "24": 3, + "25": 2, + "27": 1, + "28": 3, + "30": 4, + "31": 1, + "34": 2, + "35": 2, + "36": 1, + "37": 1, + "38": 1, + "39": 1, + "45": 1, + "49": 1, + "51": 1 + }, + "gamesPlayed": 29, + "medianWords": 3, + "medianLetters": 30 + }, + "9": { + "best": { + "word": "peruka", + "letters": 19 + }, + "worst": { + "word": "łaźnia", + "letters": 44 + }, + "totalWords": { + "2": 3, + "3": 15, + "4": 9, + "5": 2, + "6": 1 + }, + "totalLetters": { + "19": 1, + "21": 2, + "22": 1, + "25": 5, + "26": 2, + "27": 3, + "28": 1, + "29": 2, + "30": 2, + "31": 2, + "32": 2, + "34": 1, + "35": 1, + "38": 2, + "41": 1, + "43": 1, + "44": 1 + }, + "gamesPlayed": 30, + "medianWords": 2.5, + "medianLetters": 28.5 + }, + "10": { + "best": { + "word": "gliniarz", + "letters": 21 + }, + "worst": { + "word": "anomalny", + "letters": 58 + }, + "totalWords": { + "2": 3, + "3": 9, + "4": 14, + "5": 3, + "6": 1, + "8": 1 + }, + "totalLetters": { + "21": 1, + "22": 2, + "25": 3, + "27": 1, + "28": 1, + "29": 3, + "30": 2, + "31": 2, + "33": 1, + "34": 3, + "35": 3, + "36": 2, + "37": 1, + "38": 1, + "39": 3, + "45": 1, + "58": 1 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 33 + }, + "11": { + "best": { + "word": "cytryna", + "letters": 20 + }, + "worst": { + "word": "restart", + "letters": 47 + }, + "totalWords": { + "2": 4, + "3": 15, + "4": 7, + "5": 3, + "6": 1 + }, + "totalLetters": { + "20": 1, + "21": 2, + "22": 1, + "23": 1, + "24": 1, + "25": 1, + "26": 1, + "27": 1, + "28": 4, + "29": 4, + "30": 2, + "31": 1, + "34": 2, + "35": 1, + "36": 1, + "37": 3, + "42": 1, + "44": 1, + "47": 1 + }, + "gamesPlayed": 30, + "medianWords": 2.5, + "medianLetters": 28.5 + }, + "12": { + "best": { + "word": "weselny", + "letters": 20 + }, + "worst": { + "word": "zaufanie", + "letters": 44 + }, + "totalWords": { + "2": 2, + "3": 9, + "4": 6, + "5": 3 + }, + "totalLetters": { + "20": 1, + "22": 2, + "24": 1, + "25": 3, + "26": 1, + "28": 1, + "29": 1, + "30": 2, + "31": 1, + "32": 2, + "33": 2, + "35": 2, + "44": 1 + }, + "gamesPlayed": 20, + "medianWords": 2.5, + "medianLetters": 29.5 + }, + "year": { + "best": { + "word": "spór", + "letters": 17 + }, + "worst": { + "word": "afrikaans", + "letters": 70 + }, + "totalWords": { + "2": 44, + "3": 153, + "4": 98, + "5": 38, + "6": 14, + "7": 2, + "8": 1, + "12": 1 + }, + "totalLetters": { + "17": 1, + "18": 3, + "19": 9, + "20": 12, + "21": 12, + "22": 17, + "23": 8, + "24": 17, + "25": 22, + "26": 13, + "27": 12, + "28": 23, + "29": 28, + "30": 27, + "31": 16, + "32": 14, + "33": 11, + "34": 12, + "35": 15, + "36": 13, + "37": 14, + "38": 6, + "39": 13, + "40": 3, + "41": 4, + "42": 5, + "43": 5, + "44": 4, + "45": 4, + "47": 2, + "48": 1, + "49": 1, + "50": 1, + "51": 1, + "58": 1, + "70": 1 + }, + "gamesPlayed": 351, + "medianWords": 3, + "medianLetters": 29 + } + }, + "dates": { + "1": [ + "03.01.2025", + "28.01.2025", + "20.01.2025", + "16.11.2025" + ], + "7": [ + "24.07.2025", + "23.07.2025" + ], + "9": [ + "07.09.2025" + ], + "10": [ + "10.10.2025", + "24.10.2025", + "09.10.2025" + ], + "11": [ + "16.11.2025" + ], + "year": [ + "03.01.2025", + "28.01.2025", + "20.01.2025", + "24.07.2025", + "07.09.2025", + "23.07.2025", + "10.10.2025", + "16.11.2025", + "24.10.2025", + "09.10.2025" + ] + }, + "worstDates": { + "1": [ + "18.01.2025", + "03.11.2025", + "05.11.2025", + "04.11.2025" + ], + "2": [ + "16.12.2025" + ], + "3": [ + "07.03.2025" + ], + "4": [ + "19.04.2025" + ], + "5": [ + "30.05.2025" + ], + "6": [ + "18.06.2025" + ], + "7": [ + "20.07.2025" + ], + "8": [ + "09.08.2025" + ], + "9": [ + "25.09.2025", + "13.09.2025", + "28.09.2025", + "12.09.2025" + ], + "10": [ + "02.10.2025", + "18.10.2025", + "05.10.2025", + "31.10.2025" + ], + "11": [ + "03.11.2025", + "05.11.2025", + "04.11.2025" + ], + "12": [ + "16.12.2025" + ], + "year": [ + "07.03.2025", + "18.01.2025", + "19.04.2025", + "18.06.2025", + "25.09.2025", + "13.09.2025", + "30.05.2025", + "09.08.2025", + "20.07.2025", + "28.09.2025", + "02.10.2025", + "12.09.2025", + "18.10.2025", + "03.11.2025", + "16.12.2025", + "05.10.2025", + "31.10.2025", + "05.11.2025", + "04.11.2025" + ] + } + }, + "Kronos": { + "best50": { + "best": { + "word": "neon", + "letters": 13 + }, + "worst": { + "word": "drzazga", + "letters": 21 + }, + "totalWords": { + "2": 28, + "3": 22 + }, + "totalLetters": { + "13": 4, + "14": 6, + "15": 9, + "16": 2, + "17": 5, + "18": 8, + "19": 8, + "20": 4, + "21": 4 + }, + "gamesPlayed": 50, + "medianWords": 2, + "medianLetters": 16.5 + }, + "hardest50": { + "best": { + "word": "rogówka", + "letters": 22 + }, + "worst": { + "word": "afrikaans", + "letters": 70 + }, + "totalWords": { + "3": 6, + "4": 11, + "5": 8, + "6": 11, + "7": 3, + "8": 5, + "9": 1, + "10": 2, + "12": 1 + }, + "totalLetters": { + "22": 2, + "24": 2, + "25": 5, + "26": 1, + "27": 1, + "31": 1, + "32": 2, + "33": 3, + "34": 1, + "35": 3, + "36": 2, + "37": 1, + "38": 3, + "39": 3, + "40": 4, + "41": 3, + "42": 1, + "44": 1, + "48": 2, + "50": 2, + "52": 3, + "64": 1, + "70": 1 + }, + "gamesPlayed": 48, + "medianWords": 4.5, + "medianLetters": 37.5 + }, + "results": { + "1": { + "best": { + "word": "próbować", + "letters": 16 + }, + "worst": { + "word": "barwena", + "letters": 48 + }, + "totalWords": { + "2": 2, + "3": 9, + "4": 9, + "5": 6, + "6": 3, + "7": 1, + "8": 1 + }, + "totalLetters": { + "16": 1, + "18": 2, + "20": 1, + "22": 3, + "23": 1, + "24": 4, + "25": 1, + "27": 4, + "28": 1, + "29": 1, + "30": 1, + "31": 1, + "33": 2, + "34": 1, + "35": 3, + "38": 1, + "39": 2, + "48": 1 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 27 + }, + "2": { + "best": { + "word": "ciasto", + "letters": 15 + }, + "worst": { + "word": "absolwent", + "letters": 43 + }, + "totalWords": { + "2": 2, + "3": 7, + "4": 5, + "5": 7, + "6": 3, + "7": 1, + "9": 1 + }, + "totalLetters": { + "15": 2, + "18": 1, + "19": 1, + "22": 2, + "23": 2, + "25": 2, + "26": 3, + "27": 1, + "29": 1, + "30": 1, + "31": 2, + "33": 1, + "34": 1, + "36": 1, + "38": 2, + "39": 1, + "42": 1, + "43": 1 + }, + "gamesPlayed": 26, + "medianWords": 3.5, + "medianLetters": 26.5 + }, + "3": { + "best": { + "word": "miranda", + "letters": 17 + }, + "worst": { + "word": "hinduista", + "letters": 50 + }, + "totalWords": { + "2": 1, + "3": 7, + "4": 7, + "5": 10, + "6": 2, + "8": 1, + "10": 1 + }, + "totalLetters": { + "17": 1, + "19": 1, + "21": 1, + "22": 2, + "24": 2, + "25": 1, + "26": 3, + "27": 2, + "28": 4, + "29": 2, + "30": 1, + "31": 1, + "32": 2, + "33": 2, + "37": 1, + "39": 1, + "44": 1, + "50": 1 + }, + "gamesPlayed": 29, + "medianWords": 4, + "medianLetters": 28 + }, + "4": { + "best": { + "word": "szkliwo", + "letters": 15 + }, + "worst": { + "word": "helsiński", + "letters": 52 + }, + "totalWords": { + "2": 1, + "3": 8, + "4": 6, + "5": 6, + "6": 4, + "7": 3, + "8": 1, + "10": 1 + }, + "totalLetters": { + "15": 1, + "18": 1, + "19": 1, + "21": 2, + "23": 4, + "24": 1, + "25": 1, + "26": 1, + "27": 2, + "29": 2, + "30": 1, + "31": 2, + "32": 1, + "33": 2, + "38": 1, + "39": 2, + "40": 1, + "41": 1, + "43": 1, + "52": 2 + }, + "gamesPlayed": 30, + "medianWords": 4.5, + "medianLetters": 28 + }, + "5": { + "best": { + "word": "neon", + "letters": 13 + }, + "worst": { + "word": "spalanie", + "letters": 55 + }, + "totalWords": { + "2": 3, + "3": 10, + "4": 10, + "5": 3, + "6": 2, + "7": 1, + "8": 1 + }, + "totalLetters": { + "13": 1, + "14": 1, + "15": 1, + "19": 1, + "21": 2, + "22": 3, + "23": 1, + "24": 2, + "25": 6, + "26": 3, + "28": 2, + "29": 1, + "31": 1, + "33": 1, + "34": 1, + "39": 1, + "40": 1, + "55": 1 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 24.5 + }, + "6": { + "best": { + "word": "keja", + "letters": 13 + }, + "worst": { + "word": "grzesznik", + "letters": 42 + }, + "totalWords": { + "2": 3, + "3": 8, + "4": 6, + "5": 8, + "6": 3, + "7": 1 + }, + "totalLetters": { + "13": 1, + "16": 1, + "17": 1, + "21": 2, + "22": 3, + "23": 1, + "24": 1, + "25": 2, + "26": 2, + "27": 1, + "28": 1, + "29": 2, + "31": 3, + "32": 2, + "33": 1, + "36": 2, + "40": 2, + "42": 1 + }, + "gamesPlayed": 29, + "medianWords": 4, + "medianLetters": 27 + }, + "7": { + "best": { + "word": "moszcz", + "letters": 15 + }, + "worst": { + "word": "afrikaans", + "letters": 70 + }, + "totalWords": { + "2": 1, + "3": 9, + "4": 6, + "5": 6, + "6": 3, + "7": 3, + "8": 1, + "12": 1 + }, + "totalLetters": { + "15": 1, + "18": 1, + "20": 1, + "21": 2, + "22": 2, + "23": 1, + "24": 2, + "25": 2, + "26": 2, + "27": 2, + "29": 2, + "30": 1, + "31": 1, + "32": 2, + "35": 2, + "38": 1, + "42": 1, + "48": 1, + "50": 1, + "52": 1, + "70": 1 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 26.5 + }, + "8": { + "best": { + "word": "koza", + "letters": 13 + }, + "worst": { + "word": "stracenie", + "letters": 64 + }, + "totalWords": { + "2": 4, + "3": 4, + "4": 8, + "5": 9, + "6": 3, + "7": 1, + "8": 1, + "9": 1 + }, + "totalLetters": { + "13": 1, + "15": 2, + "17": 1, + "18": 1, + "22": 1, + "23": 1, + "24": 1, + "25": 2, + "26": 3, + "27": 1, + "29": 4, + "31": 1, + "32": 2, + "33": 1, + "34": 1, + "35": 2, + "36": 3, + "39": 1, + "41": 1, + "64": 1 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 29 + }, + "9": { + "best": { + "word": "zmowa", + "letters": 14 + }, + "worst": { + "word": "obrzędowy", + "letters": 41 + }, + "totalWords": { + "2": 4, + "3": 8, + "4": 7, + "5": 5, + "6": 4, + "7": 1 + }, + "totalLetters": { + "14": 3, + "15": 1, + "20": 1, + "21": 3, + "23": 1, + "24": 3, + "25": 3, + "26": 1, + "29": 3, + "31": 2, + "32": 1, + "33": 1, + "34": 1, + "35": 1, + "37": 2, + "40": 1, + "41": 1 + }, + "gamesPlayed": 29, + "medianWords": 4, + "medianLetters": 25 + }, + "10": { + "best": { + "word": "pożądany", + "letters": 18 + }, + "worst": { + "word": "wartownia", + "letters": 42 + }, + "totalWords": { + "2": 1, + "3": 7, + "4": 9, + "5": 7, + "6": 4, + "7": 2 + }, + "totalLetters": { + "18": 1, + "19": 3, + "24": 4, + "25": 2, + "26": 1, + "27": 1, + "28": 2, + "29": 2, + "30": 1, + "31": 3, + "32": 1, + "33": 2, + "34": 1, + "35": 1, + "36": 1, + "37": 1, + "38": 1, + "41": 1, + "42": 1 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 28.5 + }, + "11": { + "best": { + "word": "smar", + "letters": 13 + }, + "worst": { + "word": "elektryk", + "letters": 44 + }, + "totalWords": { + "2": 3, + "3": 8, + "4": 10, + "5": 4, + "6": 2, + "7": 2 + }, + "totalLetters": { + "13": 1, + "17": 2, + "18": 1, + "21": 2, + "22": 2, + "24": 1, + "25": 1, + "26": 1, + "27": 1, + "28": 1, + "29": 7, + "30": 1, + "31": 2, + "33": 1, + "34": 1, + "38": 2, + "40": 1, + "44": 1 + }, + "gamesPlayed": 29, + "medianWords": 4, + "medianLetters": 29 + }, + "12": { + "best": { + "word": "nurek", + "letters": 14 + }, + "worst": { + "word": "obiecanki", + "letters": 41 + }, + "totalWords": { + "2": 3, + "3": 5, + "4": 3, + "5": 2, + "6": 7 + }, + "totalLetters": { + "14": 2, + "15": 1, + "19": 1, + "20": 1, + "21": 1, + "27": 4, + "31": 3, + "33": 2, + "35": 1, + "36": 1, + "37": 1, + "39": 1, + "41": 1 + }, + "gamesPlayed": 20, + "medianWords": 3.5, + "medianLetters": 29 + }, + "year": { + "best": { + "word": "neon", + "letters": 13 + }, + "worst": { + "word": "afrikaans", + "letters": 70 + }, + "totalWords": { + "2": 28, + "3": 90, + "4": 86, + "5": 73, + "6": 40, + "7": 16, + "8": 6, + "9": 2, + "10": 2, + "12": 1 + }, + "totalLetters": { + "13": 4, + "14": 6, + "15": 9, + "16": 2, + "17": 5, + "18": 8, + "19": 8, + "20": 4, + "21": 15, + "22": 18, + "23": 12, + "24": 21, + "25": 23, + "26": 20, + "27": 19, + "28": 11, + "29": 27, + "30": 7, + "31": 22, + "32": 11, + "33": 16, + "34": 7, + "35": 10, + "36": 8, + "37": 5, + "38": 8, + "39": 9, + "40": 6, + "41": 5, + "42": 4, + "43": 2, + "44": 2, + "48": 2, + "50": 2, + "52": 3, + "55": 1, + "64": 1, + "70": 1 + }, + "gamesPlayed": 344, + "medianWords": 3.5, + "medianLetters": 26.5 + } + }, + "dates": { + "1": [ + "05.01.2025", + "31.01.2025", + "08.01.2025", + "15.11.2025", + "05.11.2025", + "07.11.2025", + "01.11.2025" + ], + "2": [ + "02.02.2025", + "06.02.2025", + "28.02.2025", + "26.02.2025", + "04.12.2025", + "17.12.2025", + "02.12.2025", + "09.12.2025" + ], + "3": [ + "08.03.2025", + "09.03.2025", + "31.03.2025", + "29.03.2025" + ], + "4": [ + "04.04.2025", + "01.04.2025", + "18.04.2025" + ], + "5": [ + "15.05.2025" + ], + "6": [ + "14.06.2025", + "01.06.2025", + "08.06.2025" + ], + "7": [ + "16.07.2025", + "13.07.2025" + ], + "8": [ + "21.08.2025", + "12.08.2025", + "16.08.2025" + ], + "9": [ + "17.09.2025", + "29.09.2025", + "14.09.2025", + "10.09.2025", + "05.09.2025" + ], + "11": [ + "15.11.2025", + "05.11.2025", + "07.11.2025", + "01.11.2025" + ], + "12": [ + "04.12.2025", + "17.12.2025", + "02.12.2025", + "09.12.2025" + ], + "year": [ + "02.02.2025", + "08.03.2025", + "09.03.2025", + "05.01.2025", + "31.01.2025", + "06.02.2025", + "08.01.2025", + "28.02.2025", + "26.02.2025", + "31.03.2025", + "04.04.2025", + "01.04.2025", + "29.03.2025", + "15.05.2025", + "18.04.2025", + "14.06.2025", + "16.07.2025", + "17.09.2025", + "21.08.2025", + "29.09.2025", + "01.06.2025", + "08.06.2025", + "14.09.2025", + "13.07.2025", + "12.08.2025", + "16.08.2025", + "10.09.2025", + "05.09.2025", + "04.12.2025", + "17.12.2025", + "02.12.2025", + "15.11.2025", + "05.11.2025", + "09.12.2025", + "07.11.2025", + "01.11.2025" + ] + }, + "worstDates": { + "1": [ + "04.01.2025", + "24.11.2025" + ], + "2": [ + "01.02.2025", + "20.12.2025" + ], + "7": [ + "28.07.2025", + "21.07.2025" + ], + "8": [ + "25.08.2025" + ], + "9": [ + "21.09.2025" + ], + "11": [ + "24.11.2025" + ], + "12": [ + "20.12.2025" + ], + "year": [ + "01.02.2025", + "04.01.2025", + "28.07.2025", + "25.08.2025", + "21.09.2025", + "21.07.2025", + "24.11.2025", + "20.12.2025" + ] + } + }, + "kamin": { + "best50": { + "best": { + "word": "smok", + "letters": 13 + }, + "worst": { + "word": "zaledwie", + "letters": 32 + }, + "totalWords": { + "2": 6, + "3": 30, + "4": 12, + "5": 2 + }, + "totalLetters": { + "13": 1, + "14": 2, + "15": 1, + "17": 4, + "18": 2, + "19": 3, + "20": 3, + "21": 4, + "22": 3, + "23": 4, + "24": 3, + "25": 3, + "26": 5, + "27": 2, + "28": 5, + "29": 2, + "30": 1, + "32": 2 + }, + "gamesPlayed": 50, + "medianWords": 2.5, + "medianLetters": 22.5 + }, + "results": { + "1": { + "best": { + "word": "wykaz", + "letters": 14 + }, + "worst": { + "word": "próbować", + "letters": 34 + }, + "totalWords": { + "2": 1, + "3": 15, + "4": 8, + "5": 1 + }, + "totalLetters": { + "14": 1, + "18": 1, + "19": 2, + "20": 1, + "21": 2, + "22": 3, + "23": 2, + "25": 2, + "26": 2, + "27": 1, + "28": 2, + "29": 2, + "30": 1, + "32": 1, + "33": 1, + "34": 1 + }, + "gamesPlayed": 25, + "medianWords": 3, + "medianLetters": 25 + }, + "2": { + "best": { + "word": "smok", + "letters": 13 + }, + "worst": { + "word": "pogórze", + "letters": 45 + }, + "totalWords": { + "2": 3, + "3": 13, + "4": 6, + "5": 1, + "6": 1 + }, + "totalLetters": { + "13": 1, + "17": 4, + "19": 1, + "20": 2, + "21": 1, + "23": 1, + "24": 3, + "26": 3, + "27": 1, + "28": 3, + "32": 2, + "38": 1, + "45": 1 + }, + "gamesPlayed": 24, + "medianWords": 2.5, + "medianLetters": 23.5 + }, + "3": { + "best": { + "word": "umowa", + "letters": 14 + }, + "worst": { + "word": "ładowarka", + "letters": 25 + }, + "totalWords": { + "2": 2, + "3": 2, + "4": 2 + }, + "totalLetters": { + "14": 1, + "15": 1, + "18": 1, + "21": 1, + "23": 1, + "25": 1 + }, + "gamesPlayed": 6, + "medianWords": 2.5, + "medianLetters": 19.5 + }, + "year": { + "best": { + "word": "smok", + "letters": 13 + }, + "worst": { + "word": "pogórze", + "letters": 45 + }, + "totalWords": { + "2": 6, + "3": 30, + "4": 16, + "5": 2, + "6": 1 + }, + "totalLetters": { + "13": 1, + "14": 2, + "15": 1, + "17": 4, + "18": 2, + "19": 3, + "20": 3, + "21": 4, + "22": 3, + "23": 4, + "24": 3, + "25": 3, + "26": 5, + "27": 2, + "28": 5, + "29": 2, + "30": 1, + "32": 3, + "33": 1, + "34": 1, + "38": 1, + "45": 1 + }, + "gamesPlayed": 55, + "medianWords": 3, + "medianLetters": 24 + } + }, + "dates": { + "1": [ + "13.01.2025", + "16.01.2025", + "18.01.2025", + "27.01.2025" + ], + "2": [ + "01.02.2025", + "24.02.2025", + "25.02.2025", + "09.02.2025", + "10.02.2025" + ], + "3": [ + "06.03.2025", + "02.03.2025" + ], + "year": [ + "01.02.2025", + "24.02.2025", + "06.03.2025", + "25.02.2025", + "13.01.2025", + "09.02.2025", + "16.01.2025", + "02.03.2025", + "10.02.2025", + "18.01.2025", + "27.01.2025" + ] + }, + "worstDates": { + "2": [ + "16.02.2025" + ], + "year": [ + "16.02.2025" + ] + } + }, + "Endrevoir": { + "best50": { + "best": { + "word": "znawca", + "letters": 17 + }, + "worst": { + "word": "ryzykant", + "letters": 23 + }, + "totalWords": { + "2": 45, + "3": 5 + }, + "totalLetters": { + "17": 2, + "18": 2, + "19": 11, + "20": 12, + "21": 7, + "22": 13, + "23": 3 + }, + "gamesPlayed": 50, + "medianWords": 2, + "medianLetters": 19.5 + }, + "hardest50": { + "best": { + "word": "stracenie", + "letters": 24 + }, + "worst": { + "word": "afrikaans", + "letters": 68 + }, + "totalWords": { + "2": 2, + "3": 6, + "4": 16, + "5": 7, + "6": 10, + "7": 1, + "8": 1, + "9": 2 + }, + "totalLetters": { + "24": 2, + "26": 1, + "30": 2, + "31": 1, + "32": 2, + "33": 5, + "34": 2, + "35": 2, + "36": 2, + "37": 2, + "39": 5, + "40": 3, + "42": 1, + "43": 4, + "44": 2, + "48": 1, + "49": 1, + "50": 1, + "51": 2, + "52": 1, + "55": 1, + "59": 1, + "68": 1 + }, + "gamesPlayed": 45, + "medianWords": 4, + "medianLetters": 39 + }, + "results": { + "1": { + "best": { + "word": "żwir", + "letters": 20 + }, + "worst": { + "word": "formalny", + "letters": 44 + }, + "totalWords": { + "3": 10, + "4": 7, + "5": 6, + "6": 2 + }, + "totalLetters": { + "20": 2, + "22": 1, + "25": 1, + "26": 2, + "27": 2, + "29": 2, + "30": 1, + "32": 1, + "33": 2, + "34": 1, + "35": 2, + "38": 2, + "39": 4, + "41": 1, + "44": 1 + }, + "gamesPlayed": 25, + "medianWords": 4, + "medianLetters": 33 + }, + "2": { + "best": { + "word": "napić", + "letters": 18 + }, + "worst": { + "word": "kręgowy", + "letters": 40 + }, + "totalWords": { + "2": 1, + "3": 15, + "4": 6, + "5": 3 + }, + "totalLetters": { + "18": 1, + "22": 1, + "24": 1, + "25": 1, + "26": 3, + "27": 4, + "28": 2, + "29": 2, + "30": 3, + "33": 2, + "35": 1, + "37": 3, + "40": 1 + }, + "gamesPlayed": 25, + "medianWords": 3, + "medianLetters": 28 + }, + "3": { + "best": { + "word": "znawca", + "letters": 17 + }, + "worst": { + "word": "konsjerż", + "letters": 55 + }, + "totalWords": { + "2": 3, + "3": 9, + "4": 12, + "5": 3, + "6": 2, + "9": 1 + }, + "totalLetters": { + "17": 1, + "21": 1, + "22": 2, + "24": 1, + "26": 3, + "27": 2, + "28": 2, + "30": 4, + "31": 3, + "33": 1, + "35": 1, + "36": 4, + "37": 1, + "40": 1, + "41": 1, + "44": 1, + "55": 1 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 29 + }, + "4": { + "best": { + "word": "nudzić", + "letters": 19 + }, + "worst": { + "word": "helsiński", + "letters": 51 + }, + "totalWords": { + "2": 8, + "3": 5, + "4": 10, + "5": 4, + "6": 2, + "8": 1 + }, + "totalLetters": { + "19": 1, + "20": 1, + "21": 1, + "22": 2, + "23": 2, + "24": 1, + "26": 1, + "28": 3, + "29": 1, + "30": 1, + "31": 2, + "32": 1, + "33": 2, + "34": 1, + "35": 1, + "36": 1, + "37": 3, + "39": 2, + "42": 1, + "50": 1, + "51": 1 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 30.5 + }, + "5": { + "best": { + "word": "powód", + "letters": 18 + }, + "worst": { + "word": "doznawać", + "letters": 51 + }, + "totalWords": { + "2": 7, + "3": 15, + "4": 4, + "5": 2, + "6": 2 + }, + "totalLetters": { + "18": 1, + "19": 2, + "20": 1, + "22": 3, + "24": 1, + "25": 4, + "26": 2, + "27": 2, + "28": 2, + "29": 2, + "30": 2, + "31": 2, + "32": 2, + "35": 1, + "36": 1, + "49": 1, + "51": 1 + }, + "gamesPlayed": 30, + "medianWords": 2.5, + "medianLetters": 26.5 + }, + "6": { + "best": { + "word": "zaspać", + "letters": 19 + }, + "worst": { + "word": "nieobecny", + "letters": 44 + }, + "totalWords": { + "2": 5, + "3": 11, + "4": 7, + "5": 1, + "6": 3 + }, + "totalLetters": { + "19": 3, + "20": 1, + "22": 1, + "24": 1, + "26": 1, + "27": 2, + "28": 1, + "30": 2, + "31": 2, + "32": 2, + "33": 1, + "35": 1, + "36": 2, + "37": 2, + "38": 1, + "39": 1, + "40": 1, + "43": 1, + "44": 1 + }, + "gamesPlayed": 27, + "medianWords": 3, + "medianLetters": 31 + }, + "7": { + "best": { + "word": "rydz", + "letters": 19 + }, + "worst": { + "word": "afrikaans", + "letters": 68 + }, + "totalWords": { + "2": 7, + "3": 8, + "4": 9, + "5": 2, + "6": 1, + "7": 1, + "9": 1 + }, + "totalLetters": { + "19": 2, + "20": 1, + "21": 3, + "22": 1, + "24": 1, + "26": 1, + "28": 1, + "30": 2, + "31": 4, + "32": 2, + "33": 3, + "35": 1, + "36": 1, + "37": 2, + "43": 1, + "48": 1, + "52": 1, + "68": 1 + }, + "gamesPlayed": 29, + "medianWords": 3, + "medianLetters": 31 + }, + "8": { + "best": { + "word": "spór", + "letters": 17 + }, + "worst": { + "word": "gruźliczy", + "letters": 51 + }, + "totalWords": { + "2": 6, + "3": 13, + "4": 6, + "5": 1, + "6": 2, + "7": 1 + }, + "totalLetters": { + "17": 1, + "19": 1, + "20": 1, + "22": 1, + "24": 4, + "26": 2, + "27": 1, + "28": 1, + "29": 3, + "30": 3, + "31": 1, + "32": 2, + "33": 1, + "34": 1, + "38": 1, + "39": 1, + "40": 1, + "43": 1, + "46": 1, + "51": 1 + }, + "gamesPlayed": 29, + "medianWords": 3, + "medianLetters": 29 + }, + "9": { + "best": { + "word": "zanik", + "letters": 20 + }, + "worst": { + "word": "obrzędowy", + "letters": 59 + }, + "totalWords": { + "2": 6, + "3": 8, + "4": 1, + "5": 2, + "6": 2 + }, + "totalLetters": { + "20": 3, + "21": 2, + "23": 1, + "24": 2, + "26": 3, + "27": 1, + "30": 2, + "31": 1, + "41": 1, + "42": 1, + "44": 1, + "59": 1 + }, + "gamesPlayed": 19, + "medianWords": 3, + "medianLetters": 26 + }, + "10": { + "best": { + "word": "próżno", + "letters": 19 + }, + "worst": { + "word": "wróbelek", + "letters": 49 + }, + "totalWords": { + "2": 3, + "3": 9, + "4": 7, + "5": 6, + "7": 1 + }, + "totalLetters": { + "19": 1, + "20": 1, + "23": 1, + "24": 1, + "25": 2, + "26": 3, + "28": 1, + "29": 1, + "30": 1, + "32": 2, + "34": 1, + "35": 1, + "36": 1, + "37": 1, + "39": 2, + "40": 1, + "42": 2, + "43": 2, + "49": 1 + }, + "gamesPlayed": 26, + "medianWords": 3.5, + "medianLetters": 31 + }, + "11": { + "best": { + "word": "osada", + "letters": 20 + }, + "worst": { + "word": "płciowy", + "letters": 56 + }, + "totalWords": { + "2": 4, + "3": 11, + "4": 6, + "5": 2, + "8": 1 + }, + "totalLetters": { + "20": 1, + "23": 3, + "24": 1, + "26": 2, + "27": 1, + "28": 2, + "29": 3, + "30": 1, + "31": 1, + "32": 2, + "33": 1, + "36": 2, + "37": 1, + "44": 1, + "46": 1, + "56": 1 + }, + "gamesPlayed": 24, + "medianWords": 2.5, + "medianLetters": 28.5 + }, + "12": { + "best": { + "word": "plon", + "letters": 19 + }, + "worst": { + "word": "żeremie", + "letters": 43 + }, + "totalWords": { + "2": 2, + "3": 4, + "4": 9, + "5": 2, + "7": 1 + }, + "totalLetters": { + "19": 1, + "22": 1, + "26": 1, + "27": 3, + "30": 2, + "31": 2, + "32": 2, + "34": 2, + "37": 1, + "39": 1, + "40": 1, + "43": 1 + }, + "gamesPlayed": 18, + "medianWords": 3.5, + "medianLetters": 30.5 + }, + "year": { + "best": { + "word": "znawca", + "letters": 17 + }, + "worst": { + "word": "afrikaans", + "letters": 68 + }, + "totalWords": { + "2": 52, + "3": 118, + "4": 84, + "5": 34, + "6": 16, + "7": 4, + "8": 2, + "9": 2 + }, + "totalLetters": { + "17": 2, + "18": 2, + "19": 11, + "20": 12, + "21": 7, + "22": 13, + "23": 7, + "24": 14, + "25": 8, + "26": 24, + "27": 18, + "28": 15, + "29": 14, + "30": 24, + "31": 18, + "32": 16, + "33": 13, + "34": 6, + "35": 9, + "36": 12, + "37": 14, + "38": 4, + "39": 11, + "40": 6, + "41": 3, + "42": 4, + "43": 6, + "44": 5, + "46": 2, + "48": 1, + "49": 2, + "50": 1, + "51": 3, + "52": 1, + "55": 1, + "56": 1, + "59": 1, + "68": 1 + }, + "gamesPlayed": 312, + "medianWords": 2.5, + "medianLetters": 29.5 + } + }, + "dates": { + "4": [ + "21.04.2025" + ], + "5": [ + "10.05.2025" + ], + "8": [ + "25.08.2025", + "15.08.2025" + ], + "10": [ + "21.10.2025" + ], + "year": [ + "10.05.2025", + "21.04.2025", + "25.08.2025", + "15.08.2025", + "21.10.2025" + ] + }, + "worstDates": { + "1": [ + "05.01.2025", + "28.01.2025", + "10.11.2025" + ], + "2": [ + "27.02.2025", + "15.12.2025" + ], + "3": [ + "23.03.2025", + "30.03.2025" + ], + "4": [ + "16.04.2025", + "08.04.2025" + ], + "5": [ + "08.05.2025" + ], + "6": [ + "12.06.2025" + ], + "7": [ + "30.07.2025", + "08.07.2025", + "21.07.2025" + ], + "8": [ + "07.08.2025" + ], + "10": [ + "20.10.2025" + ], + "11": [ + "10.11.2025" + ], + "12": [ + "15.12.2025" + ], + "year": [ + "05.01.2025", + "28.01.2025", + "27.02.2025", + "08.05.2025", + "16.04.2025", + "23.03.2025", + "30.03.2025", + "08.04.2025", + "30.07.2025", + "08.07.2025", + "21.07.2025", + "07.08.2025", + "12.06.2025", + "10.11.2025", + "15.12.2025", + "20.10.2025" + ] + } + }, + "conradowl": { + "best50": { + "best": { + "word": "wykaz", + "letters": 14 + }, + "worst": { + "word": "groźnie", + "letters": 27 + }, + "totalWords": { + "2": 10, + "3": 25, + "4": 14, + "5": 1 + }, + "totalLetters": { + "14": 2, + "15": 1, + "16": 2, + "18": 3, + "19": 5, + "20": 2, + "21": 5, + "22": 2, + "23": 6, + "24": 9, + "25": 4, + "26": 7, + "27": 2 + }, + "gamesPlayed": 50, + "medianWords": 2.5, + "medianLetters": 22.5 + }, + "results": { + "1": { + "best": { + "word": "wykaz", + "letters": 14 + }, + "worst": { + "word": "poznanie", + "letters": 52 + }, + "totalWords": { + "2": 6, + "3": 8, + "4": 10, + "5": 4, + "6": 2, + "7": 1 + }, + "totalLetters": { + "14": 1, + "15": 1, + "16": 2, + "18": 1, + "19": 3, + "21": 4, + "23": 1, + "24": 2, + "25": 2, + "26": 3, + "29": 3, + "30": 2, + "33": 1, + "35": 1, + "40": 1, + "41": 1, + "45": 1, + "52": 1 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 25 + }, + "2": { + "best": { + "word": "wyrok", + "letters": 14 + }, + "worst": { + "word": "zabawnie", + "letters": 64 + }, + "totalWords": { + "2": 3, + "3": 10, + "4": 6, + "7": 1, + "9": 1 + }, + "totalLetters": { + "14": 1, + "18": 1, + "19": 1, + "20": 2, + "21": 1, + "22": 1, + "23": 2, + "24": 3, + "25": 1, + "26": 1, + "27": 1, + "28": 2, + "29": 1, + "34": 1, + "39": 1, + "64": 1 + }, + "gamesPlayed": 21, + "medianWords": 3, + "medianLetters": 24 + }, + "3": { + "best": { + "word": "brać", + "letters": 18 + }, + "worst": { + "word": "umowa", + "letters": 46 + }, + "totalWords": { + "2": 1, + "3": 8, + "4": 10, + "5": 7, + "7": 1, + "8": 1 + }, + "totalLetters": { + "18": 1, + "19": 1, + "22": 1, + "23": 3, + "24": 4, + "25": 1, + "26": 3, + "27": 2, + "28": 1, + "29": 1, + "30": 2, + "31": 3, + "32": 1, + "33": 1, + "35": 1, + "36": 1, + "46": 1 + }, + "gamesPlayed": 28, + "medianWords": 3.5, + "medianLetters": 26.5 + }, + "year": { + "best": { + "word": "wykaz", + "letters": 14 + }, + "worst": { + "word": "zabawnie", + "letters": 64 + }, + "totalWords": { + "2": 10, + "3": 26, + "4": 26, + "5": 11, + "6": 2, + "7": 3, + "8": 1, + "9": 1 + }, + "totalLetters": { + "14": 2, + "15": 1, + "16": 2, + "18": 3, + "19": 5, + "20": 2, + "21": 5, + "22": 2, + "23": 6, + "24": 9, + "25": 4, + "26": 7, + "27": 3, + "28": 3, + "29": 5, + "30": 4, + "31": 3, + "32": 1, + "33": 2, + "34": 1, + "35": 2, + "36": 1, + "39": 1, + "40": 1, + "41": 1, + "45": 1, + "46": 1, + "52": 1, + "64": 1 + }, + "gamesPlayed": 80, + "medianWords": 3.5, + "medianLetters": 24.5 + } + }, + "dates": { + "1": [ + "23.01.2025", + "17.01.2025", + "14.01.2025", + "01.01.2025", + "28.01.2025", + "21.01.2025", + "18.01.2025", + "22.01.2025", + "19.01.2025" + ], + "2": [ + "05.02.2025", + "19.02.2025", + "27.02.2025" + ], + "3": [ + "10.03.2025", + "28.03.2025" + ], + "year": [ + "10.03.2025", + "23.01.2025", + "05.02.2025", + "19.02.2025", + "17.01.2025", + "14.01.2025", + "01.01.2025", + "28.01.2025", + "21.01.2025", + "18.01.2025", + "22.01.2025", + "27.02.2025", + "19.01.2025", + "28.03.2025" + ] + }, + "worstDates": { + "2": [ + "07.02.2025", + "28.02.2025", + "13.02.2025" + ], + "3": [ + "02.03.2025" + ], + "year": [ + "07.02.2025", + "02.03.2025", + "28.02.2025", + "13.02.2025" + ] + } + }, + "Deykun": { + "best50": { + "best": { + "word": "siać", + "letters": 12 + }, + "worst": { + "word": "wypukły", + "letters": 21 + }, + "totalWords": { + "2": 4, + "3": 32, + "4": 14 + }, + "totalLetters": { + "12": 1, + "13": 1, + "14": 3, + "15": 4, + "16": 3, + "17": 3, + "18": 3, + "19": 6, + "20": 13, + "21": 13 + }, + "gamesPlayed": 50, + "medianWords": 2.5, + "medianLetters": 19.5 + }, + "hardest50": { + "best": { + "word": "pogórze", + "letters": 21 + }, + "worst": { + "word": "pozbawiać", + "letters": 69 + }, + "totalWords": { + "3": 1, + "4": 6, + "5": 6, + "6": 7, + "7": 7, + "8": 12, + "9": 6, + "10": 1, + "12": 1 + }, + "totalLetters": { + "21": 1, + "24": 1, + "26": 1, + "28": 1, + "29": 2, + "31": 2, + "32": 1, + "33": 1, + "34": 2, + "35": 1, + "36": 4, + "37": 2, + "40": 2, + "41": 2, + "42": 1, + "43": 3, + "44": 2, + "45": 2, + "46": 4, + "47": 1, + "49": 2, + "50": 3, + "56": 1, + "57": 1, + "58": 1, + "65": 1, + "67": 1, + "69": 1 + }, + "gamesPlayed": 47, + "medianWords": 7, + "medianLetters": 42 + }, + "results": { + "1": { + "best": { + "word": "katalog", + "letters": 13 + }, + "worst": { + "word": "pozbawiać", + "letters": 69 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 7, + "5": 4, + "6": 4, + "7": 2, + "8": 2, + "9": 1, + "10": 2 + }, + "totalLetters": { + "13": 1, + "16": 1, + "23": 1, + "24": 2, + "25": 1, + "26": 1, + "27": 1, + "29": 1, + "30": 1, + "31": 1, + "33": 2, + "35": 1, + "40": 2, + "41": 1, + "42": 2, + "43": 1, + "45": 1, + "48": 1, + "61": 1, + "69": 1 + }, + "gamesPlayed": 24, + "medianWords": 4.5, + "medianLetters": 32 + }, + "2": { + "best": { + "word": "smok", + "letters": 14 + }, + "worst": { + "word": "akwarela", + "letters": 48 + }, + "totalWords": { + "3": 8, + "4": 9, + "5": 4, + "6": 1, + "7": 1, + "8": 2, + "9": 1 + }, + "totalLetters": { + "14": 1, + "20": 2, + "21": 3, + "22": 2, + "23": 3, + "24": 1, + "25": 2, + "26": 1, + "27": 1, + "29": 4, + "33": 1, + "35": 1, + "42": 1, + "45": 1, + "47": 1, + "48": 1 + }, + "gamesPlayed": 26, + "medianWords": 3.5, + "medianLetters": 24.5 + }, + "3": { + "best": { + "word": "guma", + "letters": 14 + }, + "worst": { + "word": "sprośnie", + "letters": 50 + }, + "totalWords": { + "3": 7, + "4": 5, + "5": 4, + "6": 4, + "7": 3, + "8": 2, + "9": 3 + }, + "totalLetters": { + "14": 1, + "15": 1, + "17": 1, + "18": 1, + "21": 1, + "22": 3, + "24": 1, + "25": 1, + "27": 1, + "28": 1, + "30": 2, + "31": 1, + "32": 1, + "33": 2, + "34": 2, + "37": 1, + "40": 1, + "41": 1, + "43": 1, + "48": 2, + "50": 2 + }, + "gamesPlayed": 28, + "medianWords": 4.5, + "medianLetters": 30.5 + }, + "4": { + "best": { + "word": "haft", + "letters": 19 + }, + "worst": { + "word": "helsiński", + "letters": 57 + }, + "totalWords": { + "3": 2, + "4": 5, + "5": 8, + "6": 7, + "7": 2, + "8": 3 + }, + "totalLetters": { + "19": 1, + "20": 1, + "21": 1, + "23": 1, + "24": 1, + "27": 2, + "28": 1, + "30": 2, + "31": 2, + "32": 2, + "33": 2, + "34": 2, + "35": 2, + "39": 2, + "40": 2, + "42": 1, + "45": 1, + "57": 1 + }, + "gamesPlayed": 27, + "medianWords": 5, + "medianLetters": 32 + }, + "5": { + "best": { + "word": "neon", + "letters": 15 + }, + "worst": { + "word": "spalanie", + "letters": 44 + }, + "totalWords": { + "2": 1, + "3": 6, + "4": 3, + "5": 7, + "6": 8, + "7": 1, + "8": 4, + "9": 1 + }, + "totalLetters": { + "15": 2, + "16": 1, + "20": 3, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "25": 1, + "29": 2, + "30": 1, + "31": 2, + "32": 2, + "33": 2, + "34": 3, + "35": 1, + "36": 1, + "37": 1, + "41": 2, + "43": 2, + "44": 1 + }, + "gamesPlayed": 31, + "medianWords": 5, + "medianLetters": 31 + }, + "6": { + "best": { + "word": "tablice", + "letters": 21 + }, + "worst": { + "word": "okultysta", + "letters": 50 + }, + "totalWords": { + "3": 5, + "4": 5, + "5": 6, + "6": 5, + "7": 6, + "8": 1, + "9": 1, + "10": 1 + }, + "totalLetters": { + "21": 4, + "23": 4, + "25": 1, + "26": 1, + "27": 1, + "29": 2, + "30": 1, + "32": 3, + "33": 2, + "35": 1, + "37": 1, + "38": 1, + "40": 3, + "42": 1, + "43": 1, + "44": 1, + "46": 1, + "50": 1 + }, + "gamesPlayed": 30, + "medianWords": 4.5, + "medianLetters": 31 + }, + "7": { + "best": { + "word": "szpetny", + "letters": 17 + }, + "worst": { + "word": "żonglować", + "letters": 65 + }, + "totalWords": { + "3": 5, + "4": 6, + "5": 5, + "6": 4, + "7": 5, + "8": 2, + "9": 3, + "10": 1 + }, + "totalLetters": { + "17": 2, + "19": 2, + "20": 2, + "22": 1, + "24": 1, + "25": 1, + "26": 2, + "27": 1, + "29": 1, + "30": 2, + "31": 1, + "32": 1, + "34": 1, + "35": 2, + "36": 2, + "37": 1, + "41": 1, + "46": 2, + "48": 1, + "49": 1, + "50": 1, + "57": 1, + "65": 1 + }, + "gamesPlayed": 31, + "medianWords": 5, + "medianLetters": 31 + }, + "8": { + "best": { + "word": "homo", + "letters": 19 + }, + "worst": { + "word": "kindżał", + "letters": 59 + }, + "totalWords": { + "4": 10, + "5": 7, + "6": 6, + "7": 3, + "8": 2, + "9": 1, + "12": 2 + }, + "totalLetters": { + "19": 1, + "20": 1, + "22": 1, + "23": 2, + "25": 2, + "26": 2, + "28": 2, + "29": 2, + "30": 2, + "31": 1, + "32": 2, + "35": 1, + "36": 2, + "37": 3, + "38": 1, + "40": 1, + "41": 1, + "44": 2, + "58": 1, + "59": 1 + }, + "gamesPlayed": 31, + "medianWords": 5, + "medianLetters": 31 + }, + "9": { + "best": { + "word": "siać", + "letters": 12 + }, + "worst": { + "word": "wieszczyć", + "letters": 44 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 2, + "5": 7, + "6": 8, + "7": 6 + }, + "totalLetters": { + "12": 1, + "15": 1, + "19": 1, + "20": 1, + "21": 2, + "24": 1, + "28": 2, + "29": 1, + "30": 2, + "31": 2, + "32": 1, + "33": 1, + "34": 1, + "35": 4, + "36": 1, + "37": 1, + "38": 1, + "39": 1, + "41": 1, + "43": 1, + "44": 1 + }, + "gamesPlayed": 28, + "medianWords": 5.5, + "medianLetters": 31.5 + }, + "10": { + "best": { + "word": "klasa", + "letters": 19 + }, + "worst": { + "word": "dokonanie", + "letters": 56 + }, + "totalWords": { + "3": 1, + "4": 6, + "5": 5, + "6": 6, + "7": 3, + "8": 3, + "9": 1 + }, + "totalLetters": { + "19": 1, + "20": 1, + "21": 1, + "23": 1, + "24": 1, + "26": 3, + "28": 2, + "30": 2, + "31": 1, + "32": 1, + "33": 1, + "34": 1, + "41": 2, + "43": 1, + "44": 2, + "46": 2, + "50": 1, + "56": 1 + }, + "gamesPlayed": 25, + "medianWords": 6, + "medianLetters": 31 + }, + "11": { + "best": { + "word": "piec", + "letters": 14 + }, + "worst": { + "word": "liczenie", + "letters": 53 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 7, + "5": 3, + "6": 5, + "7": 4, + "8": 4, + "10": 1 + }, + "totalLetters": { + "14": 1, + "16": 1, + "18": 2, + "20": 1, + "21": 1, + "23": 2, + "24": 1, + "25": 1, + "26": 1, + "27": 1, + "28": 1, + "29": 1, + "30": 1, + "31": 2, + "32": 1, + "33": 1, + "36": 1, + "40": 1, + "41": 1, + "45": 2, + "47": 1, + "48": 1, + "49": 1, + "50": 1, + "53": 1 + }, + "gamesPlayed": 29, + "medianWords": 5, + "medianLetters": 30 + }, + "12": { + "best": { + "word": "brąz", + "letters": 20 + }, + "worst": { + "word": "zaufanie", + "letters": 67 + }, + "totalWords": { + "3": 1, + "4": 6, + "5": 6, + "6": 6, + "9": 2 + }, + "totalLetters": { + "20": 1, + "22": 3, + "23": 1, + "24": 2, + "25": 1, + "27": 2, + "28": 2, + "29": 1, + "31": 2, + "32": 1, + "36": 2, + "42": 1, + "52": 1, + "67": 1 + }, + "gamesPlayed": 21, + "medianWords": 5, + "medianLetters": 28 + }, + "year": { + "best": { + "word": "siać", + "letters": 12 + }, + "worst": { + "word": "pozbawiać", + "letters": 69 + }, + "totalWords": { + "2": 4, + "3": 44, + "4": 71, + "5": 66, + "6": 64, + "7": 36, + "8": 25, + "9": 14, + "10": 5, + "12": 2 + }, + "totalLetters": { + "12": 1, + "13": 1, + "14": 3, + "15": 4, + "16": 3, + "17": 3, + "18": 3, + "19": 6, + "20": 13, + "21": 14, + "22": 11, + "23": 16, + "24": 12, + "25": 11, + "26": 11, + "27": 10, + "28": 11, + "29": 15, + "30": 16, + "31": 15, + "32": 15, + "33": 14, + "34": 10, + "35": 13, + "36": 9, + "37": 8, + "38": 3, + "39": 3, + "40": 10, + "41": 10, + "42": 6, + "43": 7, + "44": 7, + "45": 5, + "46": 5, + "47": 2, + "48": 6, + "49": 2, + "50": 6, + "52": 1, + "53": 1, + "56": 1, + "57": 2, + "58": 1, + "59": 1, + "61": 1, + "65": 1, + "67": 1, + "69": 1 + }, + "gamesPlayed": 331, + "medianWords": 5, + "medianLetters": 31 + } + }, + "dates": { + "1": [ + "24.01.2025", + "14.11.2025", + "24.11.2025", + "26.11.2025", + "25.11.2025", + "17.11.2025" + ], + "2": [ + "23.02.2025", + "16.02.2025", + "20.02.2025" + ], + "3": [ + "17.03.2025", + "05.03.2025", + "12.03.2025", + "23.03.2025" + ], + "5": [ + "12.05.2025", + "19.05.2025" + ], + "6": [ + "11.06.2025", + "12.06.2025" + ], + "7": [ + "07.07.2025", + "15.07.2025" + ], + "8": [ + "31.08.2025" + ], + "9": [ + "01.09.2025", + "12.09.2025" + ], + "10": [ + "16.10.2025", + "27.10.2025", + "25.10.2025" + ], + "11": [ + "14.11.2025", + "24.11.2025", + "26.11.2025", + "25.11.2025", + "17.11.2025" + ], + "year": [ + "17.03.2025", + "05.03.2025", + "23.02.2025", + "16.02.2025", + "24.01.2025", + "12.03.2025", + "20.02.2025", + "23.03.2025", + "12.05.2025", + "11.06.2025", + "31.08.2025", + "07.07.2025", + "19.05.2025", + "01.09.2025", + "15.07.2025", + "12.06.2025", + "12.09.2025", + "14.11.2025", + "16.10.2025", + "27.10.2025", + "24.11.2025", + "26.11.2025", + "25.11.2025", + "25.10.2025", + "17.11.2025" + ] + }, + "worstDates": { + "1": [ + "13.01.2025", + "25.01.2025", + "02.01.2025", + "17.01.2025", + "12.11.2025", + "15.11.2025", + "19.11.2025", + "28.11.2025", + "01.11.2025" + ], + "2": [ + "18.02.2025", + "10.02.2025", + "17.02.2025", + "12.12.2025", + "03.12.2025", + "01.12.2025" + ], + "3": [ + "08.03.2025", + "18.03.2025", + "11.03.2025", + "24.03.2025", + "26.03.2025" + ], + "4": [ + "05.04.2025", + "26.04.2025", + "01.04.2025" + ], + "5": [ + "07.05.2025", + "13.05.2025", + "04.05.2025" + ], + "6": [ + "01.06.2025", + "08.06.2025", + "30.06.2025", + "29.06.2025", + "13.06.2025" + ], + "7": [ + "09.07.2025", + "06.07.2025", + "18.07.2025", + "26.07.2025" + ], + "8": [ + "14.08.2025", + "20.08.2025", + "21.08.2025", + "12.08.2025", + "29.08.2025" + ], + "9": [ + "03.09.2025", + "17.09.2025", + "24.09.2025", + "27.09.2025" + ], + "10": [ + "04.10.2025", + "22.10.2025", + "06.10.2025", + "08.10.2025" + ], + "11": [ + "12.11.2025", + "15.11.2025", + "19.11.2025", + "28.11.2025", + "01.11.2025" + ], + "12": [ + "12.12.2025", + "03.12.2025", + "01.12.2025" + ], + "year": [ + "08.03.2025", + "18.02.2025", + "18.03.2025", + "13.01.2025", + "25.01.2025", + "02.01.2025", + "17.01.2025", + "10.02.2025", + "11.03.2025", + "17.02.2025", + "05.04.2025", + "07.05.2025", + "26.04.2025", + "13.05.2025", + "01.04.2025", + "04.05.2025", + "24.03.2025", + "26.03.2025", + "03.09.2025", + "14.08.2025", + "17.09.2025", + "20.08.2025", + "21.08.2025", + "24.09.2025", + "01.06.2025", + "09.07.2025", + "06.07.2025", + "18.07.2025", + "08.06.2025", + "30.06.2025", + "26.07.2025", + "29.06.2025", + "27.09.2025", + "12.08.2025", + "13.06.2025", + "29.08.2025", + "04.10.2025", + "12.11.2025", + "22.10.2025", + "15.11.2025", + "12.12.2025", + "06.10.2025", + "19.11.2025", + "28.11.2025", + "08.10.2025", + "03.12.2025", + "01.12.2025", + "01.11.2025" + ] + } + }, + "nxo": { + "best50": { + "best": { + "word": "smok", + "letters": 16 + }, + "worst": { + "word": "pisemnie", + "letters": 20 + }, + "totalWords": { + "2": 48, + "3": 2 + }, + "totalLetters": { + "16": 4, + "17": 16, + "18": 8, + "19": 12, + "20": 10 + }, + "gamesPlayed": 50, + "medianWords": 2, + "medianLetters": 17.5 + }, + "hardest50": { + "best": { + "word": "odrobina", + "letters": 20 + }, + "worst": { + "word": "zaufanie", + "letters": 53 + }, + "totalWords": { + "2": 2, + "3": 12, + "4": 20, + "5": 9, + "6": 1, + "7": 1 + }, + "totalLetters": { + "20": 1, + "21": 1, + "24": 1, + "26": 3, + "27": 2, + "28": 3, + "29": 2, + "30": 1, + "31": 2, + "32": 4, + "33": 3, + "34": 3, + "35": 3, + "36": 3, + "37": 2, + "38": 2, + "40": 2, + "41": 2, + "44": 1, + "46": 2, + "52": 1, + "53": 1 + }, + "gamesPlayed": 45, + "medianWords": 4, + "medianLetters": 33 + }, + "results": { + "1": { + "best": { + "word": "szczęk", + "letters": 18 + }, + "worst": { + "word": "spisywać", + "letters": 47 + }, + "totalWords": { + "2": 3, + "3": 12, + "4": 11, + "5": 3, + "7": 1 + }, + "totalLetters": { + "18": 1, + "20": 1, + "21": 1, + "22": 2, + "23": 1, + "24": 5, + "25": 2, + "27": 2, + "28": 2, + "31": 1, + "32": 2, + "33": 2, + "34": 1, + "35": 2, + "36": 2, + "37": 2, + "47": 1 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 27.5 + }, + "2": { + "best": { + "word": "smok", + "letters": 16 + }, + "worst": { + "word": "armagedon", + "letters": 43 + }, + "totalWords": { + "2": 6, + "3": 12, + "4": 5, + "5": 1, + "8": 1 + }, + "totalLetters": { + "16": 2, + "17": 1, + "18": 1, + "20": 1, + "21": 1, + "22": 2, + "23": 2, + "24": 3, + "27": 2, + "29": 3, + "30": 1, + "32": 1, + "37": 2, + "38": 1, + "41": 1, + "43": 1 + }, + "gamesPlayed": 25, + "medianWords": 3, + "medianLetters": 24 + }, + "3": { + "best": { + "word": "sanie", + "letters": 17 + }, + "worst": { + "word": "dowództwo", + "letters": 35 + }, + "totalWords": { + "2": 6, + "3": 13, + "4": 10, + "6": 1 + }, + "totalLetters": { + "17": 2, + "19": 2, + "20": 2, + "21": 3, + "22": 1, + "24": 1, + "25": 3, + "26": 6, + "27": 1, + "28": 1, + "32": 2, + "33": 2, + "34": 3, + "35": 1 + }, + "gamesPlayed": 30, + "medianWords": 2.5, + "medianLetters": 25.5 + }, + "4": { + "best": { + "word": "order", + "letters": 17 + }, + "worst": { + "word": "popijać", + "letters": 52 + }, + "totalWords": { + "2": 6, + "3": 10, + "4": 10, + "6": 2, + "7": 1 + }, + "totalLetters": { + "17": 1, + "19": 3, + "21": 2, + "23": 1, + "25": 3, + "26": 2, + "27": 1, + "28": 3, + "29": 1, + "30": 1, + "31": 2, + "33": 2, + "34": 2, + "36": 1, + "38": 1, + "44": 1, + "45": 1, + "52": 1 + }, + "gamesPlayed": 29, + "medianWords": 3, + "medianLetters": 28 + }, + "5": { + "best": { + "word": "diuna", + "letters": 17 + }, + "worst": { + "word": "cebulka", + "letters": 35 + }, + "totalWords": { + "2": 5, + "3": 14, + "4": 6, + "5": 5 + }, + "totalLetters": { + "17": 1, + "19": 2, + "20": 3, + "22": 1, + "23": 3, + "24": 2, + "25": 2, + "26": 2, + "27": 2, + "28": 2, + "29": 2, + "30": 1, + "31": 2, + "32": 1, + "33": 1, + "34": 2, + "35": 1 + }, + "gamesPlayed": 30, + "medianWords": 2.5, + "medianLetters": 25.5 + }, + "6": { + "best": { + "word": "zaspać", + "letters": 18 + }, + "worst": { + "word": "nieobecny", + "letters": 41 + }, + "totalWords": { + "2": 8, + "3": 12, + "4": 7, + "5": 3 + }, + "totalLetters": { + "18": 2, + "19": 1, + "20": 2, + "21": 4, + "22": 1, + "23": 1, + "24": 1, + "26": 4, + "27": 3, + "28": 4, + "30": 1, + "33": 1, + "34": 2, + "37": 1, + "38": 1, + "41": 1 + }, + "gamesPlayed": 30, + "medianWords": 2.5, + "medianLetters": 25 + }, + "7": { + "best": { + "word": "walny", + "letters": 17 + }, + "worst": { + "word": "potykać", + "letters": 48 + }, + "totalWords": { + "2": 5, + "3": 11, + "4": 8, + "5": 4, + "7": 1 + }, + "totalLetters": { + "17": 1, + "18": 1, + "19": 1, + "20": 1, + "21": 1, + "22": 2, + "24": 3, + "26": 1, + "27": 1, + "28": 5, + "29": 1, + "30": 2, + "32": 1, + "33": 1, + "35": 1, + "36": 2, + "40": 2, + "41": 1, + "48": 1 + }, + "gamesPlayed": 29, + "medianWords": 3, + "medianLetters": 28 + }, + "8": { + "best": { + "word": "koza", + "letters": 16 + }, + "worst": { + "word": "janowiec", + "letters": 44 + }, + "totalWords": { + "2": 3, + "3": 9, + "4": 9, + "5": 4 + }, + "totalLetters": { + "16": 1, + "17": 1, + "18": 1, + "20": 1, + "24": 4, + "26": 2, + "27": 2, + "28": 2, + "29": 1, + "30": 2, + "32": 1, + "33": 1, + "34": 1, + "36": 2, + "38": 1, + "41": 1, + "44": 1 + }, + "gamesPlayed": 25, + "medianWords": 4, + "medianLetters": 28 + }, + "9": { + "best": { + "word": "zmowa", + "letters": 17 + }, + "worst": { + "word": "obrzędowy", + "letters": 46 + }, + "totalWords": { + "2": 7, + "3": 13, + "4": 5, + "5": 4, + "6": 1 + }, + "totalLetters": { + "17": 3, + "18": 1, + "20": 2, + "21": 2, + "23": 4, + "24": 2, + "25": 1, + "26": 2, + "27": 1, + "28": 1, + "29": 1, + "30": 3, + "31": 2, + "34": 1, + "35": 2, + "36": 1, + "46": 1 + }, + "gamesPlayed": 30, + "medianWords": 2.5, + "medianLetters": 25.5 + }, + "10": { + "best": { + "word": "lapis", + "letters": 17 + }, + "worst": { + "word": "kątomierz", + "letters": 46 + }, + "totalWords": { + "2": 4, + "3": 20, + "4": 6, + "5": 1 + }, + "totalLetters": { + "17": 2, + "18": 1, + "19": 1, + "22": 1, + "23": 2, + "24": 2, + "25": 4, + "27": 3, + "28": 4, + "29": 4, + "30": 1, + "31": 1, + "32": 3, + "36": 1, + "46": 1 + }, + "gamesPlayed": 31, + "medianWords": 3, + "medianLetters": 27 + }, + "11": { + "best": { + "word": "piec", + "letters": 16 + }, + "worst": { + "word": "wyrosnąć", + "letters": 48 + }, + "totalWords": { + "2": 4, + "3": 9, + "4": 13, + "5": 1, + "6": 1 + }, + "totalLetters": { + "16": 1, + "17": 1, + "20": 2, + "22": 1, + "24": 2, + "25": 2, + "26": 2, + "27": 2, + "29": 2, + "30": 1, + "31": 4, + "33": 2, + "34": 1, + "35": 2, + "41": 2, + "48": 1 + }, + "gamesPlayed": 28, + "medianWords": 3.5, + "medianLetters": 28 + }, + "12": { + "best": { + "word": "nurek", + "letters": 17 + }, + "worst": { + "word": "zaufanie", + "letters": 53 + }, + "totalWords": { + "2": 6, + "3": 5, + "4": 3, + "5": 2, + "6": 3 + }, + "totalLetters": { + "17": 3, + "19": 2, + "21": 3, + "23": 1, + "24": 1, + "26": 1, + "27": 1, + "31": 2, + "34": 1, + "35": 1, + "36": 1, + "38": 1, + "53": 1 + }, + "gamesPlayed": 19, + "medianWords": 3, + "medianLetters": 24 + }, + "year": { + "best": { + "word": "smok", + "letters": 16 + }, + "worst": { + "word": "zaufanie", + "letters": 53 + }, + "totalWords": { + "2": 63, + "3": 140, + "4": 93, + "5": 28, + "6": 8, + "7": 3, + "8": 1 + }, + "totalLetters": { + "16": 4, + "17": 16, + "18": 8, + "19": 12, + "20": 15, + "21": 17, + "22": 11, + "23": 15, + "24": 26, + "25": 17, + "26": 22, + "27": 21, + "28": 24, + "29": 15, + "30": 13, + "31": 14, + "32": 11, + "33": 12, + "34": 14, + "35": 10, + "36": 10, + "37": 5, + "38": 5, + "40": 2, + "41": 6, + "43": 1, + "44": 2, + "45": 1, + "46": 2, + "47": 1, + "48": 2, + "52": 1, + "53": 1 + }, + "gamesPlayed": 336, + "medianWords": 2.5, + "medianLetters": 26.5 + } + }, + "dates": { + "1": [ + "02.01.2025", + "28.11.2025" + ], + "2": [ + "15.02.2025", + "04.02.2025", + "21.02.2025", + "08.02.2025", + "07.12.2025", + "12.12.2025", + "20.12.2025", + "21.12.2025" + ], + "3": [ + "09.03.2025", + "25.03.2025" + ], + "4": [ + "09.04.2025", + "29.04.2025" + ], + "5": [ + "29.05.2025" + ], + "6": [ + "09.06.2025", + "03.06.2025", + "26.06.2025", + "15.06.2025", + "28.06.2025" + ], + "7": [ + "10.07.2025" + ], + "9": [ + "06.09.2025", + "19.09.2025", + "11.09.2025" + ], + "10": [ + "18.10.2025", + "26.10.2025", + "03.10.2025", + "31.10.2025", + "08.10.2025" + ], + "11": [ + "28.11.2025" + ], + "12": [ + "07.12.2025", + "12.12.2025", + "20.12.2025", + "21.12.2025" + ], + "year": [ + "09.03.2025", + "15.02.2025", + "04.02.2025", + "21.02.2025", + "02.01.2025", + "08.02.2025", + "09.04.2025", + "25.03.2025", + "29.04.2025", + "06.09.2025", + "09.06.2025", + "03.06.2025", + "19.09.2025", + "10.07.2025", + "11.09.2025", + "26.06.2025", + "29.05.2025", + "15.06.2025", + "28.06.2025", + "18.10.2025", + "07.12.2025", + "26.10.2025", + "12.12.2025", + "03.10.2025", + "20.12.2025", + "31.10.2025", + "28.11.2025", + "21.12.2025", + "08.10.2025" + ] + }, + "worstDates": { + "1": [ + "09.01.2025" + ], + "2": [ + "18.12.2025" + ], + "4": [ + "30.04.2025" + ], + "5": [ + "26.05.2025" + ], + "7": [ + "12.07.2025", + "23.07.2025" + ], + "9": [ + "03.09.2025", + "22.09.2025" + ], + "10": [ + "14.10.2025" + ], + "12": [ + "18.12.2025" + ], + "year": [ + "09.01.2025", + "30.04.2025", + "03.09.2025", + "26.05.2025", + "22.09.2025", + "12.07.2025", + "23.07.2025", + "14.10.2025", + "18.12.2025" + ] + } + }, + "ranunculus": { + "best50": { + "best": { + "word": "metr", + "letters": 14 + }, + "worst": { + "word": "wenus", + "letters": 19 + }, + "totalWords": { + "2": 35, + "3": 15 + }, + "totalLetters": { + "14": 4, + "15": 6, + "16": 3, + "17": 9, + "18": 12, + "19": 16 + }, + "gamesPlayed": 50, + "medianWords": 2, + "medianLetters": 17.5 + }, + "hardest50": { + "best": { + "word": "obiecanki", + "letters": 19 + }, + "worst": { + "word": "carbonara", + "letters": 53 + }, + "totalWords": { + "2": 1, + "3": 11, + "4": 9, + "5": 11, + "6": 9, + "7": 3, + "8": 1, + "9": 2 + }, + "totalLetters": { + "19": 1, + "23": 1, + "24": 2, + "25": 3, + "27": 1, + "28": 4, + "29": 1, + "30": 1, + "31": 2, + "32": 1, + "33": 1, + "34": 2, + "35": 2, + "36": 4, + "37": 2, + "38": 4, + "40": 3, + "41": 1, + "42": 2, + "43": 1, + "44": 3, + "45": 2, + "52": 2, + "53": 1 + }, + "gamesPlayed": 47, + "medianWords": 5, + "medianLetters": 36 + }, + "results": { + "1": { + "best": { + "word": "żwir", + "letters": 17 + }, + "worst": { + "word": "achy", + "letters": 45 + }, + "totalWords": { + "2": 2, + "3": 7, + "4": 15, + "5": 2, + "6": 2, + "8": 1 + }, + "totalLetters": { + "17": 2, + "18": 1, + "20": 1, + "21": 1, + "22": 1, + "24": 3, + "27": 6, + "28": 2, + "31": 2, + "32": 2, + "33": 3, + "35": 1, + "36": 1, + "38": 2, + "45": 1 + }, + "gamesPlayed": 29, + "medianWords": 4, + "medianLetters": 27 + }, + "2": { + "best": { + "word": "wyrok", + "letters": 15 + }, + "worst": { + "word": "akwarela", + "letters": 43 + }, + "totalWords": { + "2": 1, + "3": 10, + "4": 8, + "5": 4, + "6": 4 + }, + "totalLetters": { + "15": 1, + "19": 1, + "20": 1, + "22": 3, + "23": 1, + "24": 4, + "26": 1, + "27": 4, + "29": 1, + "31": 1, + "33": 1, + "34": 1, + "36": 1, + "37": 1, + "38": 1, + "39": 2, + "41": 1, + "43": 1 + }, + "gamesPlayed": 27, + "medianWords": 4, + "medianLetters": 27 + }, + "3": { + "best": { + "word": "wenus", + "letters": 19 + }, + "worst": { + "word": "ładowarka", + "letters": 48 + }, + "totalWords": { + "3": 10, + "4": 10, + "5": 7, + "6": 3, + "9": 1 + }, + "totalLetters": { + "19": 2, + "21": 1, + "22": 2, + "23": 2, + "24": 4, + "25": 1, + "26": 1, + "27": 3, + "28": 1, + "30": 1, + "31": 4, + "35": 1, + "37": 2, + "38": 2, + "40": 2, + "43": 1, + "48": 1 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 27 + }, + "4": { + "best": { + "word": "klips", + "letters": 15 + }, + "worst": { + "word": "górować", + "letters": 59 + }, + "totalWords": { + "2": 4, + "3": 10, + "4": 6, + "5": 5, + "7": 1, + "8": 2 + }, + "totalLetters": { + "15": 1, + "16": 1, + "17": 1, + "18": 1, + "20": 1, + "22": 1, + "23": 2, + "24": 3, + "25": 1, + "26": 1, + "28": 3, + "29": 2, + "31": 2, + "33": 1, + "36": 2, + "37": 1, + "41": 1, + "49": 1, + "52": 1, + "59": 1 + }, + "gamesPlayed": 28, + "medianWords": 3.5, + "medianLetters": 27 + }, + "5": { + "best": { + "word": "metr", + "letters": 14 + }, + "worst": { + "word": "łaskotki", + "letters": 48 + }, + "totalWords": { + "2": 3, + "3": 12, + "4": 5, + "5": 6, + "6": 2, + "7": 1 + }, + "totalLetters": { + "14": 1, + "16": 1, + "19": 1, + "20": 2, + "21": 2, + "22": 2, + "23": 2, + "24": 1, + "25": 3, + "26": 1, + "27": 3, + "28": 2, + "29": 1, + "32": 2, + "36": 1, + "40": 1, + "41": 1, + "45": 1, + "48": 1 + }, + "gamesPlayed": 29, + "medianWords": 3, + "medianLetters": 25 + }, + "6": { + "best": { + "word": "opornik", + "letters": 17 + }, + "worst": { + "word": "nieobecny", + "letters": 42 + }, + "totalWords": { + "2": 4, + "3": 14, + "4": 5, + "5": 4, + "6": 1, + "7": 1 + }, + "totalLetters": { + "17": 1, + "18": 2, + "19": 1, + "20": 1, + "21": 3, + "22": 1, + "23": 1, + "24": 1, + "25": 4, + "26": 2, + "28": 1, + "30": 3, + "31": 2, + "32": 1, + "35": 3, + "40": 1, + "42": 1 + }, + "gamesPlayed": 29, + "medianWords": 3, + "medianLetters": 25 + }, + "7": { + "best": { + "word": "szkoła", + "letters": 15 + }, + "worst": { + "word": "nizina", + "letters": 44 + }, + "totalWords": { + "2": 5, + "3": 8, + "4": 10, + "5": 7, + "7": 1 + }, + "totalLetters": { + "15": 1, + "17": 1, + "18": 4, + "19": 1, + "21": 1, + "24": 1, + "25": 5, + "26": 2, + "27": 4, + "29": 2, + "31": 1, + "32": 1, + "33": 1, + "35": 2, + "38": 1, + "40": 1, + "41": 1, + "44": 1 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 26 + }, + "8": { + "best": { + "word": "koza", + "letters": 14 + }, + "worst": { + "word": "carbonara", + "letters": 53 + }, + "totalWords": { + "2": 4, + "3": 13, + "4": 5, + "5": 3, + "6": 4, + "7": 1, + "9": 1 + }, + "totalLetters": { + "14": 1, + "15": 1, + "17": 2, + "18": 1, + "19": 1, + "21": 1, + "22": 2, + "24": 2, + "25": 5, + "26": 1, + "27": 1, + "28": 2, + "29": 1, + "30": 1, + "34": 2, + "38": 2, + "42": 1, + "44": 2, + "45": 1, + "53": 1 + }, + "gamesPlayed": 31, + "medianWords": 3, + "medianLetters": 25 + }, + "9": { + "best": { + "word": "zanik", + "letters": 15 + }, + "worst": { + "word": "kolumba", + "letters": 43 + }, + "totalWords": { + "2": 4, + "3": 15, + "4": 5, + "5": 5, + "8": 1 + }, + "totalLetters": { + "15": 1, + "16": 1, + "18": 2, + "20": 3, + "21": 2, + "22": 4, + "23": 1, + "24": 2, + "25": 2, + "26": 1, + "27": 2, + "28": 2, + "29": 1, + "31": 2, + "32": 1, + "37": 1, + "38": 1, + "43": 1 + }, + "gamesPlayed": 30, + "medianWords": 2.5, + "medianLetters": 23.5 + }, + "10": { + "best": { + "word": "wycieczka", + "letters": 19 + }, + "worst": { + "word": "przenikać", + "letters": 61 + }, + "totalWords": { + "2": 1, + "3": 11, + "4": 13, + "5": 2, + "6": 1, + "7": 2 + }, + "totalLetters": { + "19": 3, + "20": 3, + "21": 1, + "23": 2, + "24": 2, + "25": 2, + "26": 1, + "27": 3, + "28": 1, + "29": 1, + "30": 2, + "32": 2, + "33": 2, + "34": 1, + "36": 1, + "45": 1, + "46": 1, + "61": 1 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 26.5 + }, + "11": { + "best": { + "word": "piec", + "letters": 14 + }, + "worst": { + "word": "zależnie", + "letters": 52 + }, + "totalWords": { + "2": 3, + "3": 16, + "4": 5, + "5": 4, + "6": 1, + "7": 1 + }, + "totalLetters": { + "14": 1, + "18": 1, + "19": 3, + "20": 1, + "21": 1, + "22": 2, + "23": 1, + "24": 3, + "25": 3, + "26": 1, + "27": 2, + "28": 3, + "29": 1, + "31": 1, + "33": 1, + "34": 1, + "35": 1, + "36": 1, + "39": 1, + "52": 1 + }, + "gamesPlayed": 30, + "medianWords": 2.5, + "medianLetters": 24.5 + }, + "12": { + "best": { + "word": "plon", + "letters": 14 + }, + "worst": { + "word": "zaufanie", + "letters": 42 + }, + "totalWords": { + "2": 4, + "3": 5, + "4": 5, + "5": 5, + "7": 1 + }, + "totalLetters": { + "14": 1, + "15": 1, + "17": 2, + "19": 3, + "22": 2, + "26": 1, + "28": 3, + "29": 2, + "31": 1, + "32": 1, + "34": 1, + "37": 1, + "42": 1 + }, + "gamesPlayed": 20, + "medianWords": 3.5, + "medianLetters": 27 + }, + "year": { + "best": { + "word": "metr", + "letters": 14 + }, + "worst": { + "word": "przenikać", + "letters": 61 + }, + "totalWords": { + "2": 35, + "3": 131, + "4": 92, + "5": 54, + "6": 18, + "7": 9, + "8": 4, + "9": 2 + }, + "totalLetters": { + "14": 4, + "15": 6, + "16": 3, + "17": 9, + "18": 12, + "19": 16, + "20": 13, + "21": 13, + "22": 20, + "23": 12, + "24": 26, + "25": 26, + "26": 13, + "27": 28, + "28": 20, + "29": 12, + "30": 7, + "31": 16, + "32": 10, + "33": 9, + "34": 6, + "35": 8, + "36": 7, + "37": 6, + "38": 9, + "39": 3, + "40": 5, + "41": 4, + "42": 3, + "43": 3, + "44": 3, + "45": 4, + "46": 1, + "48": 2, + "49": 1, + "52": 2, + "53": 1, + "59": 1, + "61": 1 + }, + "gamesPlayed": 345, + "medianWords": 4, + "medianLetters": 26 + } + }, + "dates": { + "1": [ + "25.01.2025", + "29.01.2025", + "14.11.2025", + "10.11.2025", + "04.11.2025" + ], + "2": [ + "16.12.2025", + "05.12.2025", + "15.12.2025", + "08.12.2025", + "18.12.2025" + ], + "4": [ + "19.04.2025", + "23.04.2025", + "26.04.2025", + "08.04.2025" + ], + "5": [ + "10.05.2025", + "11.05.2025", + "23.05.2025", + "21.05.2025" + ], + "6": [ + "17.06.2025", + "07.06.2025", + "10.06.2025" + ], + "7": [ + "08.07.2025", + "27.07.2025", + "06.07.2025", + "15.07.2025", + "29.07.2025", + "12.07.2025" + ], + "8": [ + "21.08.2025", + "19.08.2025", + "23.08.2025", + "24.08.2025", + "29.08.2025" + ], + "9": [ + "18.09.2025", + "08.09.2025", + "30.09.2025", + "22.09.2025" + ], + "10": [ + "17.10.2025", + "11.10.2025", + "08.10.2025" + ], + "11": [ + "14.11.2025", + "10.11.2025", + "04.11.2025" + ], + "12": [ + "16.12.2025", + "05.12.2025", + "15.12.2025", + "08.12.2025", + "18.12.2025" + ], + "year": [ + "25.01.2025", + "29.01.2025", + "19.04.2025", + "23.04.2025", + "26.04.2025", + "10.05.2025", + "08.04.2025", + "11.05.2025", + "17.06.2025", + "21.08.2025", + "23.05.2025", + "18.09.2025", + "08.07.2025", + "27.07.2025", + "06.07.2025", + "19.08.2025", + "23.08.2025", + "15.07.2025", + "08.09.2025", + "29.07.2025", + "07.06.2025", + "21.05.2025", + "10.06.2025", + "30.09.2025", + "24.08.2025", + "22.09.2025", + "12.07.2025", + "29.08.2025", + "14.11.2025", + "17.10.2025", + "11.10.2025", + "16.12.2025", + "10.11.2025", + "05.12.2025", + "15.12.2025", + "04.11.2025", + "08.12.2025", + "18.12.2025", + "08.10.2025" + ] + }, + "worstDates": { + "2": [ + "09.02.2025" + ], + "4": [ + "12.04.2025" + ], + "5": [ + "12.05.2025", + "25.05.2025" + ], + "6": [ + "06.06.2025" + ], + "9": [ + "20.09.2025" + ], + "10": [ + "10.10.2025", + "30.10.2025" + ], + "year": [ + "09.02.2025", + "12.04.2025", + "12.05.2025", + "25.05.2025", + "06.06.2025", + "20.09.2025", + "10.10.2025", + "30.10.2025" + ] + } + }, + "Gilgamesh": { + "best50": { + "best": { + "word": "tragedia", + "letters": 8 + }, + "worst": { + "word": "wenus", + "letters": 20 + }, + "totalWords": { + "1": 1, + "2": 21, + "3": 26, + "4": 2 + }, + "totalLetters": { + "8": 1, + "13": 3, + "14": 10, + "15": 1, + "16": 4, + "17": 5, + "18": 7, + "19": 8, + "20": 11 + }, + "gamesPlayed": 50, + "medianWords": 2.5, + "medianLetters": 17.5 + }, + "hardest50": { + "best": { + "word": "garłacz", + "letters": 21 + }, + "worst": { + "word": "dagerotyp", + "letters": 58 + }, + "totalWords": { + "3": 4, + "4": 7, + "5": 16, + "6": 12, + "7": 5, + "8": 2, + "9": 3, + "10": 1 + }, + "totalLetters": { + "21": 1, + "22": 1, + "24": 1, + "26": 3, + "27": 1, + "28": 1, + "29": 2, + "30": 2, + "31": 2, + "33": 2, + "34": 8, + "35": 1, + "36": 2, + "37": 1, + "38": 3, + "39": 2, + "40": 1, + "41": 3, + "44": 1, + "45": 5, + "47": 1, + "49": 3, + "51": 1, + "55": 1, + "58": 1 + }, + "gamesPlayed": 50, + "medianWords": 4.5, + "medianLetters": 35.5 + }, + "results": { + "1": { + "best": { + "word": "wykaz", + "letters": 14 + }, + "worst": { + "word": "pozbawiać", + "letters": 45 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 12, + "5": 7, + "6": 4, + "7": 4 + }, + "totalLetters": { + "14": 1, + "18": 1, + "23": 1, + "24": 2, + "25": 1, + "26": 5, + "27": 2, + "28": 2, + "29": 2, + "31": 2, + "32": 2, + "33": 1, + "34": 1, + "35": 1, + "37": 1, + "38": 1, + "41": 1, + "42": 1, + "43": 1, + "45": 2 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 29 + }, + "2": { + "best": { + "word": "wyrok", + "letters": 14 + }, + "worst": { + "word": "akwarela", + "letters": 47 + }, + "totalWords": { + "2": 1, + "3": 8, + "4": 8, + "5": 7, + "6": 3, + "7": 1 + }, + "totalLetters": { + "14": 1, + "17": 1, + "18": 1, + "21": 2, + "22": 2, + "24": 3, + "25": 1, + "26": 6, + "27": 2, + "28": 1, + "34": 3, + "35": 1, + "36": 1, + "42": 1, + "43": 1, + "47": 1 + }, + "gamesPlayed": 28, + "medianWords": 3.5, + "medianLetters": 25.5 + }, + "3": { + "best": { + "word": "sanie", + "letters": 14 + }, + "worst": { + "word": "zawzięty", + "letters": 65 + }, + "totalWords": { + "2": 3, + "3": 7, + "4": 4, + "5": 6, + "6": 7, + "7": 2, + "8": 1, + "10": 1 + }, + "totalLetters": { + "14": 1, + "16": 1, + "17": 1, + "18": 1, + "20": 4, + "21": 1, + "22": 1, + "24": 1, + "26": 2, + "27": 2, + "31": 1, + "33": 3, + "34": 2, + "36": 1, + "37": 2, + "38": 1, + "39": 2, + "40": 1, + "44": 1, + "45": 1, + "65": 1 + }, + "gamesPlayed": 31, + "medianWords": 5, + "medianLetters": 31 + }, + "4": { + "best": { + "word": "wydatek", + "letters": 16 + }, + "worst": { + "word": "popijać", + "letters": 49 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 7, + "5": 6, + "6": 4, + "7": 6, + "9": 1 + }, + "totalLetters": { + "16": 1, + "20": 1, + "21": 1, + "23": 1, + "24": 3, + "26": 1, + "27": 2, + "28": 1, + "29": 2, + "30": 2, + "31": 1, + "32": 1, + "33": 2, + "34": 1, + "35": 2, + "39": 1, + "41": 3, + "44": 1, + "45": 2, + "49": 1 + }, + "gamesPlayed": 30, + "medianWords": 4.5, + "medianLetters": 30.5 + }, + "5": { + "best": { + "word": "tragedia", + "letters": 8 + }, + "worst": { + "word": "skórzasty", + "letters": 49 + }, + "totalWords": { + "1": 1, + "2": 3, + "3": 10, + "4": 4, + "5": 7, + "6": 5, + "10": 1 + }, + "totalLetters": { + "8": 1, + "14": 2, + "16": 1, + "17": 1, + "18": 2, + "19": 3, + "20": 1, + "22": 1, + "23": 2, + "25": 1, + "26": 1, + "27": 4, + "28": 1, + "29": 1, + "31": 2, + "33": 1, + "34": 1, + "36": 1, + "38": 1, + "39": 1, + "45": 1, + "49": 1 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 26 + }, + "6": { + "best": { + "word": "zaspać", + "letters": 21 + }, + "worst": { + "word": "podoficer", + "letters": 50 + }, + "totalWords": { + "3": 6, + "4": 15, + "5": 5, + "6": 2, + "7": 1, + "9": 1 + }, + "totalLetters": { + "21": 4, + "22": 1, + "24": 2, + "25": 4, + "26": 1, + "27": 1, + "28": 1, + "29": 5, + "30": 2, + "32": 2, + "34": 2, + "35": 2, + "39": 1, + "44": 1, + "50": 1 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 28.5 + }, + "7": { + "best": { + "word": "rydz", + "letters": 13 + }, + "worst": { + "word": "afrikaans", + "letters": 47 + }, + "totalWords": { + "2": 2, + "3": 12, + "4": 9, + "5": 3, + "6": 3, + "7": 1, + "9": 1 + }, + "totalLetters": { + "13": 1, + "14": 1, + "20": 2, + "21": 2, + "22": 3, + "23": 2, + "24": 2, + "25": 2, + "26": 2, + "27": 3, + "28": 1, + "29": 1, + "30": 2, + "33": 1, + "34": 2, + "38": 1, + "39": 1, + "40": 1, + "47": 1 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 26 + }, + "8": { + "best": { + "word": "litować", + "letters": 13 + }, + "worst": { + "word": "dagerotyp", + "letters": 58 + }, + "totalWords": { + "2": 3, + "3": 4, + "4": 6, + "5": 9, + "6": 3, + "7": 1, + "8": 2, + "9": 1, + "10": 1 + }, + "totalLetters": { + "13": 1, + "16": 1, + "18": 2, + "19": 1, + "20": 1, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "26": 1, + "27": 1, + "28": 1, + "29": 2, + "30": 1, + "31": 1, + "32": 1, + "34": 1, + "35": 2, + "36": 1, + "39": 1, + "41": 1, + "45": 2, + "46": 1, + "49": 1, + "51": 1, + "58": 1 + }, + "gamesPlayed": 30, + "medianWords": 4.5, + "medianLetters": 29.5 + }, + "9": { + "best": { + "word": "zanik", + "letters": 14 + }, + "worst": { + "word": "leczenie", + "letters": 55 + }, + "totalWords": { + "2": 3, + "3": 6, + "4": 8, + "5": 7, + "6": 5, + "7": 1 + }, + "totalLetters": { + "14": 2, + "15": 1, + "19": 2, + "20": 2, + "22": 2, + "24": 3, + "25": 1, + "26": 2, + "27": 2, + "31": 3, + "32": 2, + "34": 3, + "35": 1, + "37": 1, + "38": 1, + "39": 1, + "55": 1 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 26.5 + }, + "10": { + "best": { + "word": "drink", + "letters": 14 + }, + "worst": { + "word": "dokonanie", + "letters": 55 + }, + "totalWords": { + "2": 3, + "3": 3, + "4": 13, + "5": 3, + "6": 3, + "7": 5, + "8": 1 + }, + "totalLetters": { + "14": 2, + "17": 1, + "20": 1, + "21": 1, + "22": 1, + "23": 1, + "24": 2, + "26": 1, + "27": 5, + "28": 2, + "29": 1, + "30": 2, + "32": 1, + "34": 2, + "36": 1, + "37": 1, + "39": 1, + "40": 1, + "41": 1, + "47": 1, + "51": 1, + "55": 1 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 28 + }, + "11": { + "best": { + "word": "położna", + "letters": 13 + }, + "worst": { + "word": "wyrosnąć", + "letters": 49 + }, + "totalWords": { + "2": 1, + "3": 6, + "4": 7, + "5": 9, + "6": 5, + "7": 1, + "8": 1 + }, + "totalLetters": { + "13": 1, + "17": 1, + "19": 1, + "20": 1, + "21": 1, + "22": 3, + "24": 1, + "26": 1, + "27": 2, + "28": 1, + "30": 1, + "31": 2, + "32": 2, + "35": 3, + "37": 1, + "38": 3, + "40": 1, + "44": 2, + "48": 1, + "49": 1 + }, + "gamesPlayed": 30, + "medianWords": 4.5, + "medianLetters": 30.5 + }, + "12": { + "best": { + "word": "nurek", + "letters": 19 + }, + "worst": { + "word": "laufer", + "letters": 42 + }, + "totalWords": { + "3": 4, + "4": 7, + "5": 6, + "6": 2, + "7": 2 + }, + "totalLetters": { + "19": 1, + "20": 1, + "21": 2, + "23": 2, + "24": 1, + "25": 2, + "27": 1, + "28": 1, + "29": 1, + "30": 3, + "31": 2, + "38": 1, + "40": 1, + "41": 1, + "42": 1 + }, + "gamesPlayed": 21, + "medianWords": 4, + "medianLetters": 28 + }, + "year": { + "best": { + "word": "tragedia", + "letters": 8 + }, + "worst": { + "word": "zawzięty", + "letters": 65 + }, + "totalWords": { + "1": 1, + "2": 21, + "3": 74, + "4": 100, + "5": 75, + "6": 46, + "7": 25, + "8": 5, + "9": 4, + "10": 3 + }, + "totalLetters": { + "8": 1, + "13": 3, + "14": 10, + "15": 1, + "16": 4, + "17": 5, + "18": 7, + "19": 8, + "20": 14, + "21": 15, + "22": 15, + "23": 10, + "24": 21, + "25": 12, + "26": 23, + "27": 27, + "28": 12, + "29": 15, + "30": 13, + "31": 14, + "32": 11, + "33": 8, + "34": 18, + "35": 12, + "36": 5, + "37": 6, + "38": 9, + "39": 9, + "40": 5, + "41": 7, + "42": 3, + "43": 2, + "44": 5, + "45": 8, + "46": 1, + "47": 3, + "48": 1, + "49": 4, + "50": 1, + "51": 2, + "55": 2, + "58": 1, + "65": 1 + }, + "gamesPlayed": 354, + "medianWords": 3.5, + "medianLetters": 27.5 + } + }, + "dates": { + "1": [ + "04.01.2025", + "18.01.2025", + "12.11.2025", + "02.11.2025" + ], + "2": [ + "07.02.2025", + "23.02.2025", + "27.02.2025" + ], + "3": [ + "14.03.2025", + "15.03.2025", + "19.03.2025" + ], + "4": [ + "17.04.2025" + ], + "5": [ + "14.05.2025", + "01.05.2025", + "28.05.2025", + "30.05.2025", + "22.05.2025", + "24.05.2025" + ], + "6": [ + "18.06.2025", + "30.06.2025" + ], + "7": [ + "05.07.2025", + "11.07.2025", + "19.07.2025" + ], + "8": [ + "27.08.2025", + "10.08.2025", + "26.08.2025" + ], + "9": [ + "24.09.2025", + "16.09.2025", + "04.09.2025" + ], + "10": [ + "27.10.2025", + "07.10.2025", + "29.10.2025", + "06.10.2025" + ], + "11": [ + "12.11.2025", + "02.11.2025" + ], + "year": [ + "14.03.2025", + "15.03.2025", + "19.03.2025", + "07.02.2025", + "23.02.2025", + "04.01.2025", + "18.01.2025", + "27.02.2025", + "17.04.2025", + "14.05.2025", + "01.05.2025", + "05.07.2025", + "18.06.2025", + "24.09.2025", + "28.05.2025", + "11.07.2025", + "30.05.2025", + "22.05.2025", + "16.09.2025", + "30.06.2025", + "27.08.2025", + "04.09.2025", + "10.08.2025", + "24.05.2025", + "19.07.2025", + "26.08.2025", + "12.11.2025", + "27.10.2025", + "02.11.2025", + "07.10.2025", + "29.10.2025", + "06.10.2025" + ] + }, + "worstDates": { + "1": [ + "21.01.2025", + "22.01.2025", + "30.01.2025", + "11.11.2025", + "26.11.2025", + "07.11.2025", + "17.11.2025" + ], + "2": [ + "22.02.2025", + "11.02.2025", + "13.12.2025" + ], + "3": [ + "10.03.2025", + "03.03.2025", + "28.03.2025", + "26.03.2025" + ], + "4": [ + "23.04.2025", + "13.04.2025" + ], + "6": [ + "11.06.2025", + "20.06.2025" + ], + "8": [ + "31.08.2025", + "24.08.2025", + "16.08.2025" + ], + "9": [ + "23.09.2025", + "07.09.2025" + ], + "10": [ + "26.10.2025", + "03.10.2025" + ], + "11": [ + "11.11.2025", + "26.11.2025", + "07.11.2025", + "17.11.2025" + ], + "12": [ + "13.12.2025" + ], + "year": [ + "10.03.2025", + "22.02.2025", + "03.03.2025", + "11.02.2025", + "21.01.2025", + "22.01.2025", + "30.01.2025", + "23.04.2025", + "28.03.2025", + "26.03.2025", + "13.04.2025", + "11.06.2025", + "23.09.2025", + "31.08.2025", + "07.09.2025", + "20.06.2025", + "24.08.2025", + "16.08.2025", + "11.11.2025", + "13.12.2025", + "26.11.2025", + "26.10.2025", + "03.10.2025", + "07.11.2025", + "17.11.2025" + ] + } + }, + "Greyman": { + "best50": { + "best": { + "word": "łupież", + "letters": 6 + }, + "worst": { + "word": "pierwsza", + "letters": 21 + }, + "totalWords": { + "1": 1, + "2": 35, + "3": 13, + "4": 1 + }, + "totalLetters": { + "6": 1, + "15": 3, + "16": 5, + "17": 7, + "18": 12, + "19": 7, + "20": 13, + "21": 2 + }, + "gamesPlayed": 50, + "medianWords": 1.5, + "medianLetters": 17.5 + }, + "hardest50": { + "best": { + "word": "drumla", + "letters": 18 + }, + "worst": { + "word": "zaufanie", + "letters": 59 + }, + "totalWords": { + "2": 2, + "3": 2, + "4": 16, + "5": 9, + "6": 13, + "7": 6, + "8": 1 + }, + "totalLetters": { + "18": 1, + "21": 1, + "25": 1, + "26": 2, + "29": 2, + "30": 2, + "31": 6, + "32": 2, + "34": 3, + "35": 2, + "36": 2, + "37": 3, + "38": 3, + "39": 4, + "41": 1, + "42": 3, + "43": 3, + "44": 1, + "45": 1, + "46": 2, + "48": 1, + "50": 1, + "51": 1, + "59": 1 + }, + "gamesPlayed": 49, + "medianWords": 5, + "medianLetters": 37 + }, + "results": { + "1": { + "best": { + "word": "szczęk", + "letters": 15 + }, + "worst": { + "word": "rozumować", + "letters": 50 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 11, + "5": 7, + "6": 4, + "7": 2, + "9": 1 + }, + "totalLetters": { + "15": 1, + "21": 1, + "22": 2, + "23": 2, + "24": 2, + "25": 3, + "26": 1, + "27": 3, + "29": 2, + "31": 1, + "32": 3, + "33": 2, + "36": 2, + "39": 2, + "41": 1, + "44": 1, + "47": 1, + "50": 1 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 29 + }, + "2": { + "best": { + "word": "smok", + "letters": 16 + }, + "worst": { + "word": "wiosłować", + "letters": 49 + }, + "totalWords": { + "2": 3, + "3": 2, + "4": 13, + "5": 5, + "6": 4, + "7": 1 + }, + "totalLetters": { + "16": 1, + "18": 1, + "20": 1, + "21": 2, + "24": 2, + "25": 1, + "26": 2, + "28": 2, + "29": 1, + "30": 3, + "31": 3, + "32": 1, + "33": 3, + "34": 1, + "37": 1, + "39": 1, + "42": 1, + "49": 1 + }, + "gamesPlayed": 28, + "medianWords": 3.5, + "medianLetters": 29.5 + }, + "3": { + "best": { + "word": "wenus", + "letters": 17 + }, + "worst": { + "word": "zgadywać", + "letters": 49 + }, + "totalWords": { + "2": 2, + "3": 4, + "4": 5, + "5": 8, + "6": 6, + "7": 4, + "8": 1 + }, + "totalLetters": { + "17": 2, + "18": 1, + "19": 1, + "21": 1, + "24": 1, + "25": 1, + "26": 2, + "27": 3, + "28": 1, + "30": 2, + "31": 2, + "32": 2, + "33": 1, + "34": 1, + "35": 1, + "36": 1, + "39": 1, + "41": 2, + "42": 1, + "46": 1, + "48": 1, + "49": 1 + }, + "gamesPlayed": 30, + "medianWords": 4.5, + "medianLetters": 30.5 + }, + "4": { + "best": { + "word": "meduza", + "letters": 15 + }, + "worst": { + "word": "zajęty", + "letters": 55 + }, + "totalWords": { + "2": 2, + "3": 4, + "4": 6, + "5": 9, + "6": 6, + "7": 2, + "11": 1 + }, + "totalLetters": { + "15": 1, + "18": 1, + "19": 1, + "24": 2, + "25": 2, + "26": 1, + "27": 2, + "29": 2, + "30": 1, + "31": 1, + "34": 2, + "35": 5, + "37": 3, + "38": 1, + "39": 1, + "40": 1, + "43": 2, + "55": 1 + }, + "gamesPlayed": 30, + "medianWords": 4.5, + "medianLetters": 32.5 + }, + "5": { + "best": { + "word": "metr", + "letters": 16 + }, + "worst": { + "word": "fular", + "letters": 42 + }, + "totalWords": { + "2": 7, + "3": 7, + "4": 9, + "5": 7, + "8": 1 + }, + "totalLetters": { + "16": 1, + "18": 2, + "19": 1, + "20": 3, + "21": 2, + "23": 1, + "24": 3, + "26": 1, + "27": 1, + "28": 1, + "29": 5, + "30": 1, + "32": 1, + "33": 1, + "34": 1, + "35": 1, + "36": 2, + "37": 1, + "38": 1, + "42": 1 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 28 + }, + "6": { + "best": { + "word": "keja", + "letters": 16 + }, + "worst": { + "word": "śmiech", + "letters": 48 + }, + "totalWords": { + "2": 6, + "3": 5, + "4": 10, + "5": 6, + "6": 1, + "7": 1 + }, + "totalLetters": { + "16": 1, + "18": 3, + "19": 1, + "20": 1, + "23": 2, + "24": 1, + "26": 3, + "27": 1, + "28": 1, + "30": 1, + "31": 4, + "32": 3, + "33": 1, + "34": 1, + "36": 1, + "37": 1, + "39": 1, + "42": 1, + "48": 1 + }, + "gamesPlayed": 29, + "medianWords": 4, + "medianLetters": 30 + }, + "7": { + "best": { + "word": "walny", + "letters": 17 + }, + "worst": { + "word": "wzburzony", + "letters": 43 + }, + "totalWords": { + "2": 3, + "3": 4, + "4": 9, + "5": 9, + "6": 5, + "7": 1 + }, + "totalLetters": { + "17": 1, + "18": 1, + "19": 1, + "20": 2, + "23": 1, + "25": 1, + "26": 1, + "27": 1, + "28": 2, + "29": 4, + "30": 1, + "31": 1, + "32": 1, + "33": 1, + "34": 4, + "36": 1, + "37": 2, + "39": 1, + "42": 2, + "43": 2 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 30 + }, + "8": { + "best": { + "word": "parsek", + "letters": 15 + }, + "worst": { + "word": "janowiec", + "letters": 46 + }, + "totalWords": { + "2": 6, + "3": 5, + "4": 8, + "5": 8, + "6": 1, + "7": 2, + "8": 1 + }, + "totalLetters": { + "15": 1, + "16": 2, + "19": 1, + "20": 2, + "21": 4, + "23": 1, + "25": 1, + "26": 2, + "27": 1, + "28": 1, + "29": 2, + "30": 1, + "31": 2, + "32": 2, + "34": 2, + "35": 1, + "36": 1, + "40": 1, + "43": 1, + "45": 1, + "46": 1 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 28 + }, + "9": { + "best": { + "word": "zmowa", + "letters": 17 + }, + "worst": { + "word": "obrzędowy", + "letters": 44 + }, + "totalWords": { + "2": 4, + "3": 6, + "4": 12, + "5": 6, + "6": 2 + }, + "totalLetters": { + "17": 2, + "18": 1, + "19": 1, + "20": 2, + "22": 2, + "23": 2, + "24": 2, + "26": 2, + "27": 3, + "28": 2, + "29": 2, + "31": 1, + "32": 4, + "34": 1, + "35": 1, + "38": 1, + "44": 1 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 26.5 + }, + "10": { + "best": { + "word": "łupież", + "letters": 6 + }, + "worst": { + "word": "dokonanie", + "letters": 51 + }, + "totalWords": { + "1": 1, + "2": 1, + "3": 7, + "4": 10, + "5": 5, + "6": 5, + "7": 1 + }, + "totalLetters": { + "6": 1, + "17": 1, + "21": 2, + "22": 2, + "24": 1, + "25": 2, + "27": 2, + "28": 2, + "29": 2, + "30": 1, + "31": 1, + "32": 1, + "34": 2, + "37": 1, + "38": 2, + "39": 2, + "40": 1, + "41": 1, + "42": 1, + "46": 1, + "51": 1 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 29.5 + }, + "11": { + "best": { + "word": "barion", + "letters": 18 + }, + "worst": { + "word": "liczenie", + "letters": 50 + }, + "totalWords": { + "2": 2, + "3": 9, + "4": 11, + "5": 3, + "6": 2, + "7": 1 + }, + "totalLetters": { + "18": 2, + "20": 2, + "22": 1, + "23": 1, + "24": 1, + "25": 2, + "26": 2, + "27": 2, + "28": 1, + "30": 3, + "31": 1, + "33": 1, + "34": 2, + "35": 1, + "36": 3, + "37": 1, + "45": 1, + "50": 1 + }, + "gamesPlayed": 28, + "medianWords": 3.5, + "medianLetters": 29 + }, + "12": { + "best": { + "word": "nobel", + "letters": 17 + }, + "worst": { + "word": "zaufanie", + "letters": 59 + }, + "totalWords": { + "2": 1, + "3": 3, + "5": 1, + "6": 1, + "7": 1 + }, + "totalLetters": { + "17": 1, + "21": 1, + "23": 1, + "24": 1, + "37": 1, + "38": 1, + "59": 1 + }, + "gamesPlayed": 7, + "medianWords": 3, + "medianLetters": 24 + }, + "year": { + "best": { + "word": "łupież", + "letters": 6 + }, + "worst": { + "word": "zaufanie", + "letters": 59 + }, + "totalWords": { + "1": 1, + "2": 38, + "3": 61, + "4": 104, + "5": 74, + "6": 37, + "7": 16, + "8": 3, + "9": 1, + "11": 1 + }, + "totalLetters": { + "6": 1, + "15": 3, + "16": 5, + "17": 7, + "18": 12, + "19": 7, + "20": 13, + "21": 13, + "22": 7, + "23": 11, + "24": 16, + "25": 13, + "26": 17, + "27": 19, + "28": 13, + "29": 20, + "30": 14, + "31": 17, + "32": 18, + "33": 10, + "34": 17, + "35": 10, + "36": 11, + "37": 11, + "38": 6, + "39": 9, + "40": 3, + "41": 4, + "42": 7, + "43": 5, + "44": 2, + "45": 2, + "46": 3, + "47": 1, + "48": 2, + "49": 2, + "50": 2, + "51": 1, + "55": 1, + "59": 1 + }, + "gamesPlayed": 336, + "medianWords": 3.5, + "medianLetters": 28.5 + } + }, + "dates": { + "1": [ + "12.01.2025", + "27.11.2025", + "06.11.2025" + ], + "2": [ + "07.02.2025", + "06.12.2025" + ], + "3": [ + "22.03.2025" + ], + "4": [ + "15.04.2025", + "22.04.2025", + "13.04.2025" + ], + "5": [ + "08.05.2025", + "18.05.2025", + "31.05.2025" + ], + "6": [ + "23.06.2025", + "19.06.2025", + "06.06.2025", + "22.06.2025", + "02.06.2025" + ], + "8": [ + "17.08.2025", + "06.08.2025", + "16.08.2025" + ], + "9": [ + "03.09.2025", + "21.09.2025", + "27.09.2025" + ], + "10": [ + "01.10.2025" + ], + "11": [ + "27.11.2025", + "06.11.2025" + ], + "12": [ + "06.12.2025" + ], + "year": [ + "22.03.2025", + "07.02.2025", + "12.01.2025", + "08.05.2025", + "15.04.2025", + "22.04.2025", + "13.04.2025", + "03.09.2025", + "18.05.2025", + "21.09.2025", + "01.10.2025", + "23.06.2025", + "19.06.2025", + "31.05.2025", + "17.08.2025", + "06.08.2025", + "27.09.2025", + "16.08.2025", + "06.06.2025", + "22.06.2025", + "02.06.2025", + "27.11.2025", + "06.11.2025", + "06.12.2025" + ] + }, + "worstDates": { + "1": [ + "03.01.2025", + "01.01.2025" + ], + "2": [ + "12.02.2025", + "28.02.2025" + ], + "3": [ + "15.03.2025", + "29.03.2025" + ], + "4": [ + "10.04.2025", + "11.04.2025", + "18.04.2025" + ], + "5": [ + "02.05.2025", + "09.05.2025", + "28.05.2025" + ], + "6": [ + "04.06.2025", + "24.06.2025" + ], + "year": [ + "12.02.2025", + "15.03.2025", + "03.01.2025", + "01.01.2025", + "28.02.2025", + "02.05.2025", + "10.04.2025", + "11.04.2025", + "29.03.2025", + "18.04.2025", + "09.05.2025", + "28.05.2025", + "04.06.2025", + "24.06.2025" + ] + } + }, + "yourgrandma": { + "best50": { + "best": { + "word": "spór", + "letters": 12 + }, + "worst": { + "word": "ganić", + "letters": 20 + }, + "totalWords": { + "2": 28, + "3": 22 + }, + "totalLetters": { + "12": 1, + "13": 1, + "14": 3, + "15": 8, + "16": 8, + "17": 5, + "18": 6, + "19": 10, + "20": 8 + }, + "gamesPlayed": 50, + "medianWords": 2, + "medianLetters": 16.5 + }, + "hardest50": { + "best": { + "word": "reumatyzm", + "letters": 19 + }, + "worst": { + "word": "gruźliczy", + "letters": 73 + }, + "totalWords": { + "2": 1, + "3": 10, + "4": 15, + "5": 13, + "6": 7, + "7": 2, + "10": 1, + "14": 1 + }, + "totalLetters": { + "19": 1, + "21": 1, + "22": 1, + "24": 1, + "25": 2, + "26": 1, + "27": 3, + "28": 1, + "29": 1, + "30": 2, + "32": 2, + "33": 2, + "34": 4, + "35": 1, + "36": 5, + "37": 1, + "38": 2, + "39": 4, + "40": 2, + "41": 2, + "42": 1, + "43": 1, + "45": 1, + "46": 2, + "49": 1, + "53": 1, + "54": 1, + "55": 1, + "70": 1, + "73": 1 + }, + "gamesPlayed": 50, + "medianWords": 3.5, + "medianLetters": 35.5 + }, + "results": { + "1": { + "best": { + "word": "riposta", + "letters": 16 + }, + "worst": { + "word": "poznanie", + "letters": 58 + }, + "totalWords": { + "2": 1, + "3": 10, + "4": 9, + "5": 8, + "6": 1, + "7": 1, + "9": 1 + }, + "totalLetters": { + "16": 1, + "19": 1, + "21": 3, + "22": 2, + "23": 1, + "24": 2, + "25": 2, + "26": 1, + "27": 2, + "29": 1, + "30": 1, + "31": 1, + "33": 3, + "34": 2, + "35": 2, + "36": 1, + "37": 1, + "40": 1, + "41": 1, + "49": 1, + "58": 1 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 29 + }, + "2": { + "best": { + "word": "rotunda", + "letters": 16 + }, + "worst": { + "word": "pracownik", + "letters": 41 + }, + "totalWords": { + "2": 1, + "3": 9, + "4": 8, + "5": 6, + "6": 3 + }, + "totalLetters": { + "16": 1, + "17": 1, + "19": 1, + "20": 1, + "21": 1, + "23": 1, + "24": 2, + "26": 1, + "27": 4, + "28": 2, + "29": 2, + "30": 1, + "31": 2, + "34": 1, + "36": 2, + "39": 2, + "40": 1, + "41": 1 + }, + "gamesPlayed": 27, + "medianWords": 4, + "medianLetters": 28 + }, + "3": { + "best": { + "word": "szanować", + "letters": 16 + }, + "worst": { + "word": "hinduista", + "letters": 55 + }, + "totalWords": { + "2": 1, + "3": 6, + "4": 11, + "5": 4, + "6": 7, + "7": 2 + }, + "totalLetters": { + "16": 1, + "18": 1, + "19": 1, + "20": 1, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "26": 1, + "27": 2, + "28": 2, + "29": 4, + "30": 1, + "31": 1, + "33": 1, + "34": 2, + "38": 2, + "42": 1, + "43": 1, + "44": 1, + "46": 1, + "49": 1, + "54": 1, + "55": 1 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 29 + }, + "4": { + "best": { + "word": "wydatek", + "letters": 17 + }, + "worst": { + "word": "prazeodym", + "letters": 46 + }, + "totalWords": { + "2": 2, + "3": 7, + "4": 14, + "5": 4, + "6": 2, + "7": 1 + }, + "totalLetters": { + "17": 2, + "21": 1, + "22": 3, + "24": 1, + "25": 1, + "26": 2, + "27": 3, + "28": 1, + "29": 2, + "30": 3, + "32": 2, + "34": 1, + "35": 1, + "36": 1, + "37": 2, + "39": 1, + "42": 1, + "45": 1, + "46": 1 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 28.5 + }, + "5": { + "best": { + "word": "sztos", + "letters": 15 + }, + "worst": { + "word": "fular", + "letters": 42 + }, + "totalWords": { + "2": 2, + "3": 14, + "4": 10, + "5": 4, + "7": 1 + }, + "totalLetters": { + "15": 1, + "16": 1, + "19": 2, + "20": 1, + "21": 4, + "22": 1, + "23": 2, + "24": 3, + "25": 1, + "26": 1, + "27": 1, + "28": 4, + "30": 1, + "31": 1, + "32": 2, + "33": 2, + "34": 1, + "36": 1, + "42": 1 + }, + "gamesPlayed": 31, + "medianWords": 3, + "medianLetters": 25 + }, + "6": { + "best": { + "word": "keja", + "letters": 14 + }, + "worst": { + "word": "okultysta", + "letters": 47 + }, + "totalWords": { + "2": 2, + "3": 10, + "4": 10, + "5": 6, + "6": 2 + }, + "totalLetters": { + "14": 1, + "18": 1, + "21": 1, + "22": 4, + "24": 4, + "25": 1, + "27": 1, + "29": 2, + "30": 2, + "31": 1, + "33": 5, + "35": 1, + "36": 1, + "37": 1, + "39": 1, + "44": 1, + "45": 1, + "47": 1 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 29.5 + }, + "7": { + "best": { + "word": "unia", + "letters": 14 + }, + "worst": { + "word": "nizina", + "letters": 70 + }, + "totalWords": { + "2": 3, + "3": 11, + "4": 10, + "5": 4, + "8": 1, + "10": 1, + "14": 1 + }, + "totalLetters": { + "14": 1, + "16": 2, + "20": 1, + "21": 2, + "22": 2, + "23": 1, + "24": 2, + "25": 3, + "26": 3, + "27": 1, + "28": 3, + "32": 1, + "33": 1, + "34": 1, + "35": 2, + "36": 1, + "39": 1, + "53": 1, + "58": 1, + "70": 1 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 26 + }, + "8": { + "best": { + "word": "spór", + "letters": 12 + }, + "worst": { + "word": "gruźliczy", + "letters": 73 + }, + "totalWords": { + "2": 5, + "3": 10, + "4": 7, + "5": 3, + "6": 4, + "8": 1, + "10": 1 + }, + "totalLetters": { + "12": 1, + "15": 3, + "17": 1, + "19": 1, + "21": 2, + "22": 2, + "23": 1, + "25": 1, + "26": 3, + "27": 2, + "32": 1, + "34": 1, + "35": 1, + "36": 3, + "38": 2, + "40": 1, + "43": 1, + "46": 1, + "53": 1, + "57": 1, + "73": 1 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 27 + }, + "9": { + "best": { + "word": "zanik", + "letters": 15 + }, + "worst": { + "word": "cierpkość", + "letters": 54 + }, + "totalWords": { + "2": 3, + "3": 8, + "4": 8, + "5": 8, + "6": 2, + "7": 1 + }, + "totalLetters": { + "15": 1, + "16": 1, + "18": 1, + "20": 3, + "22": 2, + "23": 2, + "24": 2, + "25": 1, + "26": 1, + "28": 1, + "29": 2, + "30": 1, + "31": 1, + "32": 3, + "33": 1, + "34": 1, + "35": 1, + "37": 2, + "38": 1, + "41": 1, + "54": 1 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 28.5 + }, + "10": { + "best": { + "word": "drink", + "letters": 15 + }, + "worst": { + "word": "rozbiór", + "letters": 56 + }, + "totalWords": { + "2": 3, + "3": 11, + "4": 12, + "5": 2, + "6": 2, + "7": 1 + }, + "totalLetters": { + "15": 1, + "16": 1, + "18": 1, + "19": 2, + "20": 2, + "21": 1, + "23": 1, + "24": 1, + "25": 2, + "26": 4, + "27": 2, + "29": 2, + "30": 3, + "31": 2, + "32": 1, + "33": 1, + "34": 1, + "41": 1, + "48": 1, + "56": 1 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 26 + }, + "11": { + "best": { + "word": "ząbek", + "letters": 13 + }, + "worst": { + "word": "ronić", + "letters": 50 + }, + "totalWords": { + "2": 4, + "3": 11, + "4": 8, + "5": 4, + "7": 2, + "8": 1 + }, + "totalLetters": { + "13": 1, + "14": 1, + "15": 1, + "18": 2, + "21": 1, + "22": 1, + "23": 1, + "25": 5, + "26": 1, + "27": 2, + "28": 1, + "29": 1, + "30": 1, + "31": 1, + "32": 3, + "34": 1, + "36": 1, + "37": 1, + "38": 1, + "39": 1, + "48": 1, + "50": 1 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 26.5 + }, + "12": { + "best": { + "word": "nurek", + "letters": 15 + }, + "worst": { + "word": "wspaniały", + "letters": 41 + }, + "totalWords": { + "2": 1, + "3": 7, + "4": 9, + "5": 2, + "6": 2 + }, + "totalLetters": { + "15": 1, + "17": 1, + "19": 2, + "20": 1, + "22": 3, + "23": 1, + "25": 1, + "26": 1, + "28": 1, + "29": 3, + "32": 1, + "33": 3, + "38": 1, + "41": 1 + }, + "gamesPlayed": 21, + "medianWords": 4, + "medianLetters": 26 + }, + "year": { + "best": { + "word": "spór", + "letters": 12 + }, + "worst": { + "word": "gruźliczy", + "letters": 73 + }, + "totalWords": { + "2": 28, + "3": 114, + "4": 116, + "5": 55, + "6": 25, + "7": 9, + "8": 3, + "9": 1, + "10": 2, + "14": 1 + }, + "totalLetters": { + "12": 1, + "13": 1, + "14": 3, + "15": 8, + "16": 8, + "17": 5, + "18": 6, + "19": 10, + "20": 10, + "21": 17, + "22": 21, + "23": 12, + "24": 18, + "25": 18, + "26": 19, + "27": 20, + "28": 15, + "29": 19, + "30": 14, + "31": 10, + "32": 14, + "33": 17, + "34": 12, + "35": 8, + "36": 11, + "37": 7, + "38": 7, + "39": 6, + "40": 3, + "41": 5, + "42": 3, + "43": 2, + "44": 2, + "45": 2, + "46": 3, + "47": 1, + "48": 2, + "49": 2, + "50": 1, + "53": 2, + "54": 2, + "55": 1, + "56": 1, + "57": 1, + "58": 2, + "70": 1, + "73": 1 + }, + "gamesPlayed": 354, + "medianWords": 3.5, + "medianLetters": 27.5 + } + }, + "dates": { + "1": [ + "22.01.2025", + "03.11.2025", + "23.11.2025", + "08.11.2025", + "04.11.2025", + "09.11.2025" + ], + "2": [ + "25.02.2025", + "17.02.2025", + "14.12.2025", + "13.12.2025", + "11.12.2025" + ], + "3": [ + "26.03.2025" + ], + "4": [ + "20.04.2025", + "11.04.2025" + ], + "5": [ + "25.05.2025" + ], + "6": [ + "25.06.2025", + "10.06.2025", + "02.06.2025" + ], + "7": [ + "18.07.2025", + "26.07.2025" + ], + "8": [ + "18.08.2025", + "20.08.2025", + "30.08.2025", + "28.08.2025", + "09.08.2025", + "22.08.2025", + "02.08.2025" + ], + "9": [ + "23.09.2025", + "28.09.2025" + ], + "10": [ + "22.10.2025", + "19.10.2025", + "12.10.2025", + "20.10.2025" + ], + "11": [ + "03.11.2025", + "23.11.2025", + "08.11.2025", + "04.11.2025", + "09.11.2025" + ], + "12": [ + "14.12.2025", + "13.12.2025", + "11.12.2025" + ], + "year": [ + "25.02.2025", + "17.02.2025", + "22.01.2025", + "20.04.2025", + "11.04.2025", + "26.03.2025", + "18.08.2025", + "20.08.2025", + "23.09.2025", + "25.06.2025", + "30.08.2025", + "25.05.2025", + "18.07.2025", + "28.08.2025", + "09.08.2025", + "22.08.2025", + "26.07.2025", + "10.06.2025", + "28.09.2025", + "02.08.2025", + "02.06.2025", + "14.12.2025", + "22.10.2025", + "13.12.2025", + "19.10.2025", + "12.10.2025", + "03.11.2025", + "23.11.2025", + "08.11.2025", + "04.11.2025", + "09.11.2025", + "20.10.2025", + "11.12.2025" + ] + }, + "worstDates": { + "1": [ + "29.01.2025", + "15.11.2025", + "22.11.2025" + ], + "2": [ + "04.02.2025", + "07.12.2025" + ], + "4": [ + "21.04.2025" + ], + "5": [ + "02.05.2025", + "23.05.2025" + ], + "6": [ + "17.06.2025", + "27.06.2025" + ], + "7": [ + "11.07.2025", + "07.07.2025", + "25.07.2025" + ], + "8": [ + "01.08.2025", + "23.08.2025", + "10.08.2025", + "13.08.2025" + ], + "9": [ + "04.09.2025", + "10.09.2025" + ], + "10": [ + "17.10.2025", + "09.10.2025" + ], + "11": [ + "15.11.2025", + "22.11.2025" + ], + "12": [ + "07.12.2025" + ], + "year": [ + "04.02.2025", + "29.01.2025", + "02.05.2025", + "21.04.2025", + "17.06.2025", + "23.05.2025", + "01.08.2025", + "11.07.2025", + "07.07.2025", + "23.08.2025", + "25.07.2025", + "04.09.2025", + "10.08.2025", + "27.06.2025", + "10.09.2025", + "13.08.2025", + "17.10.2025", + "07.12.2025", + "09.10.2025", + "15.11.2025", + "22.11.2025" + ] + } + }, + "ArmandoNumber5": { + "results": { + "1": { + "best": { + "word": "żwir", + "letters": 17 + }, + "worst": { + "word": "barwena", + "letters": 38 + }, + "totalWords": { + "2": 2, + "3": 4, + "4": 2, + "5": 1, + "6": 1 + }, + "totalLetters": { + "17": 1, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "27": 1, + "29": 2, + "37": 1, + "38": 1 + }, + "gamesPlayed": 10, + "medianWords": 2.5, + "medianLetters": 25.5 + }, + "2": { + "best": { + "word": "ciasto", + "letters": 17 + }, + "worst": { + "word": "względem", + "letters": 33 + }, + "totalWords": { + "2": 3, + "3": 4, + "4": 2 + }, + "totalLetters": { + "17": 1, + "20": 1, + "21": 1, + "22": 1, + "24": 2, + "26": 1, + "30": 1, + "33": 1 + }, + "gamesPlayed": 9, + "medianWords": 3, + "medianLetters": 24 + }, + "3": { + "best": { + "word": "okład", + "letters": 18 + }, + "worst": { + "word": "okład", + "letters": 18 + }, + "totalWords": { + "2": 1 + }, + "totalLetters": { + "18": 1 + }, + "gamesPlayed": 1, + "medianWords": 2, + "medianLetters": 18 + }, + "6": { + "best": { + "word": "plemienny", + "letters": 20 + }, + "worst": { + "word": "plemienny", + "letters": 20 + }, + "totalWords": { + "2": 1 + }, + "totalLetters": { + "20": 1 + }, + "gamesPlayed": 1, + "medianWords": 2, + "medianLetters": 20 + }, + "7": { + "best": { + "word": "walny", + "letters": 16 + }, + "worst": { + "word": "małżonka", + "letters": 46 + }, + "totalWords": { + "2": 5, + "3": 1, + "4": 1, + "6": 1 + }, + "totalLetters": { + "16": 1, + "17": 1, + "18": 1, + "19": 2, + "21": 1, + "31": 1, + "46": 1 + }, + "gamesPlayed": 8, + "medianWords": 2, + "medianLetters": 18.5 + }, + "year": { + "best": { + "word": "walny", + "letters": 16 + }, + "worst": { + "word": "małżonka", + "letters": 46 + }, + "totalWords": { + "2": 12, + "3": 9, + "4": 5, + "5": 1, + "6": 2 + }, + "totalLetters": { + "16": 1, + "17": 3, + "18": 2, + "19": 2, + "20": 2, + "21": 3, + "22": 2, + "23": 1, + "24": 3, + "26": 1, + "27": 1, + "29": 2, + "30": 1, + "31": 1, + "33": 1, + "37": 1, + "38": 1, + "46": 1 + }, + "gamesPlayed": 29, + "medianWords": 3, + "medianLetters": 22 + } + }, + "dates": { + "1": [ + "25.01.2025" + ], + "2": [ + "12.02.2025" + ], + "6": [ + "20.06.2025" + ], + "7": [ + "03.07.2025", + "20.07.2025" + ], + "year": [ + "12.02.2025", + "25.01.2025", + "03.07.2025", + "20.06.2025", + "20.07.2025" + ] + }, + "worstDates": { + "year": [] + } + }, + "Arche": { + "best50": { + "best": { + "word": "moher", + "letters": 12 + }, + "worst": { + "word": "agitator", + "letters": 26 + }, + "totalWords": { + "2": 17, + "3": 31, + "4": 2 + }, + "totalLetters": { + "12": 2, + "13": 1, + "15": 3, + "16": 2, + "17": 3, + "18": 7, + "19": 3, + "20": 6, + "21": 6, + "22": 2, + "23": 7, + "24": 3, + "25": 4, + "26": 1 + }, + "gamesPlayed": 50, + "medianWords": 2.5, + "medianLetters": 19.5 + }, + "results": { + "2": { + "best": { + "word": "psuć", + "letters": 17 + }, + "worst": { + "word": "zabawnie", + "letters": 59 + }, + "totalWords": { + "2": 1, + "3": 8, + "4": 8, + "5": 7, + "7": 2 + }, + "totalLetters": { + "17": 1, + "18": 2, + "22": 1, + "23": 3, + "25": 1, + "27": 1, + "29": 2, + "30": 2, + "31": 2, + "32": 2, + "33": 2, + "36": 2, + "37": 2, + "42": 1, + "44": 1, + "59": 1 + }, + "gamesPlayed": 26, + "medianWords": 3.5, + "medianLetters": 30.5 + }, + "3": { + "best": { + "word": "felga", + "letters": 15 + }, + "worst": { + "word": "zgadywać", + "letters": 49 + }, + "totalWords": { + "2": 2, + "3": 12, + "4": 9, + "5": 4, + "6": 2, + "7": 1 + }, + "totalLetters": { + "15": 1, + "16": 1, + "18": 2, + "19": 1, + "21": 6, + "23": 1, + "24": 1, + "25": 1, + "26": 1, + "27": 2, + "28": 2, + "29": 2, + "30": 1, + "32": 1, + "33": 1, + "34": 1, + "35": 2, + "36": 1, + "37": 1, + "49": 1 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 26.5 + }, + "4": { + "best": { + "word": "destylat", + "letters": 18 + }, + "worst": { + "word": "nudzić", + "letters": 40 + }, + "totalWords": { + "2": 5, + "3": 11, + "4": 6, + "5": 2, + "6": 2 + }, + "totalLetters": { + "18": 3, + "20": 4, + "22": 1, + "23": 3, + "25": 1, + "26": 2, + "27": 2, + "28": 2, + "32": 2, + "34": 2, + "35": 1, + "37": 1, + "39": 1, + "40": 1 + }, + "gamesPlayed": 26, + "medianWords": 2.5, + "medianLetters": 25.5 + }, + "5": { + "best": { + "word": "moher", + "letters": 12 + }, + "worst": { + "word": "doznawać", + "letters": 46 + }, + "totalWords": { + "2": 8, + "3": 7, + "4": 2, + "6": 1 + }, + "totalLetters": { + "12": 2, + "13": 1, + "15": 2, + "16": 1, + "17": 2, + "19": 2, + "20": 1, + "24": 2, + "25": 1, + "27": 1, + "29": 1, + "39": 1, + "46": 1 + }, + "gamesPlayed": 18, + "medianWords": 2.5, + "medianLetters": 18 + }, + "6": { + "best": { + "word": "psychoza", + "letters": 20 + }, + "worst": { + "word": "psychoza", + "letters": 20 + }, + "totalWords": { + "2": 1 + }, + "totalLetters": { + "20": 1 + }, + "gamesPlayed": 1, + "medianWords": 2, + "medianLetters": 20 + }, + "year": { + "best": { + "word": "moher", + "letters": 12 + }, + "worst": { + "word": "zabawnie", + "letters": 59 + }, + "totalWords": { + "2": 17, + "3": 38, + "4": 25, + "5": 13, + "6": 5, + "7": 3 + }, + "totalLetters": { + "12": 2, + "13": 1, + "15": 3, + "16": 2, + "17": 3, + "18": 7, + "19": 3, + "20": 6, + "21": 6, + "22": 2, + "23": 7, + "24": 3, + "25": 4, + "26": 3, + "27": 6, + "28": 4, + "29": 5, + "30": 3, + "31": 2, + "32": 5, + "33": 3, + "34": 3, + "35": 3, + "36": 3, + "37": 4, + "39": 2, + "40": 1, + "42": 1, + "44": 1, + "46": 1, + "49": 1, + "59": 1 + }, + "gamesPlayed": 101, + "medianWords": 3, + "medianLetters": 26 + } + }, + "dates": { + "3": [ + "04.03.2025", + "03.03.2025", + "23.03.2025" + ], + "4": [ + "07.04.2025", + "12.04.2025", + "26.04.2025", + "30.04.2025", + "06.04.2025", + "28.04.2025", + "14.04.2025", + "02.04.2025" + ], + "5": [ + "02.05.2025", + "03.05.2025", + "07.05.2025", + "13.05.2025", + "06.05.2025", + "05.05.2025", + "04.05.2025", + "09.05.2025" + ], + "year": [ + "04.03.2025", + "03.03.2025", + "02.05.2025", + "03.05.2025", + "07.04.2025", + "07.05.2025", + "12.04.2025", + "23.03.2025", + "26.04.2025", + "13.05.2025", + "06.05.2025", + "30.04.2025", + "06.04.2025", + "28.04.2025", + "14.04.2025", + "05.05.2025", + "04.05.2025", + "02.04.2025", + "09.05.2025" + ] + }, + "worstDates": { + "2": [ + "02.02.2025", + "14.02.2025" + ], + "4": [ + "01.04.2025" + ], + "year": [ + "02.02.2025", + "14.02.2025", + "01.04.2025" + ] + } + }, + "Mazia": { + "results": { + "1": { + "best": { + "word": "achy", + "letters": 18 + }, + "worst": { + "word": "pozbawiać", + "letters": 55 + }, + "totalWords": { + "2": 5, + "3": 7, + "4": 7, + "5": 3, + "6": 2 + }, + "totalLetters": { + "18": 1, + "19": 1, + "21": 3, + "22": 1, + "24": 1, + "26": 1, + "27": 2, + "28": 1, + "29": 1, + "31": 1, + "33": 1, + "34": 2, + "36": 1, + "37": 1, + "39": 1, + "40": 2, + "42": 1, + "43": 1, + "55": 1 + }, + "gamesPlayed": 24, + "medianWords": 3.5, + "medianLetters": 30 + }, + "2": { + "best": { + "word": "ciasto", + "letters": 20 + }, + "worst": { + "word": "igrać", + "letters": 39 + }, + "totalWords": { + "2": 4, + "3": 6, + "4": 6, + "5": 1 + }, + "totalLetters": { + "20": 3, + "23": 2, + "26": 1, + "27": 1, + "28": 2, + "30": 2, + "32": 2, + "36": 2, + "39": 2 + }, + "gamesPlayed": 17, + "medianWords": 3, + "medianLetters": 28 + }, + "3": { + "best": { + "word": "znawca", + "letters": 20 + }, + "worst": { + "word": "sprośnie", + "letters": 50 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 1, + "5": 1, + "6": 1 + }, + "totalLetters": { + "20": 1, + "23": 1, + "29": 1, + "41": 1, + "50": 1 + }, + "gamesPlayed": 5, + "medianWords": 4, + "medianLetters": 29 + }, + "year": { + "best": { + "word": "achy", + "letters": 18 + }, + "worst": { + "word": "pozbawiać", + "letters": 55 + }, + "totalWords": { + "2": 10, + "3": 14, + "4": 14, + "5": 5, + "6": 3 + }, + "totalLetters": { + "18": 1, + "19": 1, + "20": 4, + "21": 3, + "22": 1, + "23": 3, + "24": 1, + "26": 2, + "27": 3, + "28": 3, + "29": 2, + "30": 2, + "31": 1, + "32": 2, + "33": 1, + "34": 2, + "36": 3, + "37": 1, + "39": 3, + "40": 2, + "41": 1, + "42": 1, + "43": 1, + "50": 1, + "55": 1 + }, + "gamesPlayed": 46, + "medianWords": 2.5, + "medianLetters": 28.5 + } + }, + "dates": { + "1": [ + "15.01.2025", + "03.01.2025" + ], + "2": [ + "13.02.2025" + ], + "year": [ + "15.01.2025", + "03.01.2025", + "13.02.2025" + ] + }, + "worstDates": { + "1": [ + "12.01.2025", + "26.01.2025" + ], + "3": [ + "08.03.2025" + ], + "year": [ + "08.03.2025", + "12.01.2025", + "26.01.2025" + ] + } + }, + "Kotuduchawinny": { + "best50": { + "best": { + "word": "plon", + "letters": 15 + }, + "worst": { + "word": "ciasto", + "letters": 23 + }, + "totalWords": { + "2": 19, + "3": 29, + "4": 2 + }, + "totalLetters": { + "15": 1, + "16": 6, + "17": 3, + "18": 7, + "19": 8, + "20": 3, + "21": 9, + "22": 5, + "23": 8 + }, + "gamesPlayed": 50, + "medianWords": 2.5, + "medianLetters": 19.5 + }, + "results": { + "1": { + "best": { + "word": "riposta", + "letters": 18 + }, + "worst": { + "word": "rozumować", + "letters": 55 + }, + "totalWords": { + "2": 1, + "3": 7, + "4": 2, + "5": 2, + "6": 3, + "7": 2, + "8": 1 + }, + "totalLetters": { + "18": 1, + "21": 1, + "23": 1, + "24": 2, + "27": 2, + "28": 1, + "29": 1, + "32": 2, + "33": 2, + "38": 1, + "41": 1, + "45": 1, + "53": 1, + "55": 1 + }, + "gamesPlayed": 18, + "medianWords": 3.5, + "medianLetters": 30.5 + }, + "2": { + "best": { + "word": "rumak", + "letters": 16 + }, + "worst": { + "word": "względem", + "letters": 37 + }, + "totalWords": { + "2": 3, + "3": 9, + "4": 3, + "5": 4, + "6": 1 + }, + "totalLetters": { + "16": 2, + "19": 1, + "21": 1, + "23": 2, + "25": 2, + "26": 2, + "27": 1, + "29": 2, + "30": 3, + "33": 2, + "37": 2 + }, + "gamesPlayed": 20, + "medianWords": 2.5, + "medianLetters": 26.5 + }, + "3": { + "best": { + "word": "front", + "letters": 20 + }, + "worst": { + "word": "hinduista", + "letters": 44 + }, + "totalWords": { + "3": 6, + "4": 6, + "5": 3, + "6": 2 + }, + "totalLetters": { + "20": 1, + "21": 1, + "22": 2, + "23": 1, + "24": 2, + "26": 1, + "28": 3, + "29": 1, + "30": 1, + "32": 1, + "33": 1, + "39": 1, + "44": 1 + }, + "gamesPlayed": 17, + "medianWords": 4, + "medianLetters": 28 + }, + "4": { + "best": { + "word": "szkliwo", + "letters": 18 + }, + "worst": { + "word": "egzegeza", + "letters": 48 + }, + "totalWords": { + "2": 2, + "3": 3, + "4": 9, + "5": 1, + "6": 2, + "7": 1, + "9": 1 + }, + "totalLetters": { + "18": 1, + "19": 1, + "21": 1, + "25": 2, + "26": 1, + "27": 2, + "28": 2, + "30": 2, + "31": 1, + "35": 2, + "37": 1, + "39": 1, + "42": 1, + "48": 1 + }, + "gamesPlayed": 19, + "medianWords": 4, + "medianLetters": 28 + }, + "5": { + "best": { + "word": "moher", + "letters": 18 + }, + "worst": { + "word": "czeluść", + "letters": 37 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 3, + "5": 2 + }, + "totalLetters": { + "18": 2, + "23": 2, + "24": 2, + "30": 1, + "33": 1, + "36": 1, + "37": 1 + }, + "gamesPlayed": 10, + "medianWords": 3.5, + "medianLetters": 23.5 + }, + "6": { + "best": { + "word": "wizja", + "letters": 22 + }, + "worst": { + "word": "mezalians", + "letters": 41 + }, + "totalWords": { + "3": 2, + "4": 2, + "5": 1, + "6": 3 + }, + "totalLetters": { + "22": 1, + "26": 1, + "28": 1, + "31": 1, + "36": 3, + "41": 1 + }, + "gamesPlayed": 8, + "medianWords": 4.5, + "medianLetters": 33.5 + }, + "7": { + "best": { + "word": "szybki", + "letters": 17 + }, + "worst": { + "word": "afrikaans", + "letters": 83 + }, + "totalWords": { + "2": 2, + "3": 5, + "4": 9, + "5": 3, + "6": 1, + "15": 1 + }, + "totalLetters": { + "17": 1, + "19": 1, + "20": 1, + "21": 1, + "25": 1, + "26": 3, + "27": 1, + "28": 2, + "29": 2, + "30": 2, + "31": 2, + "34": 1, + "35": 1, + "40": 1, + "83": 1 + }, + "gamesPlayed": 21, + "medianWords": 4, + "medianLetters": 28 + }, + "8": { + "best": { + "word": "zakon", + "letters": 16 + }, + "worst": { + "word": "janowiec", + "letters": 52 + }, + "totalWords": { + "2": 1, + "3": 7, + "4": 2, + "5": 2, + "6": 1, + "7": 1 + }, + "totalLetters": { + "16": 1, + "17": 1, + "19": 2, + "22": 1, + "25": 1, + "26": 2, + "27": 1, + "31": 1, + "33": 2, + "41": 1, + "52": 1 + }, + "gamesPlayed": 14, + "medianWords": 2.5, + "medianLetters": 25.5 + }, + "9": { + "best": { + "word": "zmowa", + "letters": 16 + }, + "worst": { + "word": "cierpkość", + "letters": 47 + }, + "totalWords": { + "2": 6, + "3": 4, + "4": 2, + "5": 5, + "6": 1 + }, + "totalLetters": { + "16": 2, + "17": 1, + "19": 3, + "21": 1, + "23": 1, + "24": 2, + "25": 1, + "26": 1, + "29": 1, + "31": 1, + "34": 1, + "35": 1, + "38": 1, + "47": 1 + }, + "gamesPlayed": 18, + "medianWords": 2.5, + "medianLetters": 23.5 + }, + "10": { + "best": { + "word": "łupież", + "letters": 18 + }, + "worst": { + "word": "lesbijski", + "letters": 38 + }, + "totalWords": { + "3": 7, + "4": 3, + "5": 3 + }, + "totalLetters": { + "18": 1, + "21": 3, + "22": 1, + "25": 2, + "27": 2, + "28": 1, + "29": 1, + "30": 1, + "38": 1 + }, + "gamesPlayed": 13, + "medianWords": 3, + "medianLetters": 25 + }, + "11": { + "best": { + "word": "ząbek", + "letters": 18 + }, + "worst": { + "word": "liczenie", + "letters": 43 + }, + "totalWords": { + "3": 1, + "4": 2, + "6": 2, + "7": 1 + }, + "totalLetters": { + "18": 1, + "28": 2, + "38": 1, + "39": 1, + "43": 1 + }, + "gamesPlayed": 6, + "medianWords": 5, + "medianLetters": 33 + }, + "12": { + "best": { + "word": "plon", + "letters": 15 + }, + "worst": { + "word": "zaufanie", + "letters": 60 + }, + "totalWords": { + "2": 3, + "3": 2, + "4": 5, + "5": 1, + "6": 1, + "7": 1 + }, + "totalLetters": { + "15": 1, + "16": 1, + "18": 1, + "20": 1, + "23": 1, + "24": 2, + "27": 1, + "28": 1, + "29": 1, + "33": 1, + "37": 1, + "60": 1 + }, + "gamesPlayed": 13, + "medianWords": 4, + "medianLetters": 24 + }, + "year": { + "best": { + "word": "plon", + "letters": 15 + }, + "worst": { + "word": "afrikaans", + "letters": 83 + }, + "totalWords": { + "2": 19, + "3": 57, + "4": 48, + "5": 27, + "6": 17, + "7": 6, + "8": 1, + "9": 1, + "15": 1 + }, + "totalLetters": { + "15": 1, + "16": 6, + "17": 3, + "18": 7, + "19": 8, + "20": 3, + "21": 9, + "22": 5, + "23": 8, + "24": 10, + "25": 9, + "26": 11, + "27": 10, + "28": 13, + "29": 9, + "30": 10, + "31": 6, + "32": 3, + "33": 9, + "34": 2, + "35": 4, + "36": 4, + "37": 5, + "38": 4, + "39": 3, + "40": 1, + "41": 3, + "42": 1, + "43": 1, + "44": 1, + "45": 1, + "47": 1, + "48": 1, + "52": 1, + "53": 1, + "55": 1, + "60": 1, + "83": 1 + }, + "gamesPlayed": 177, + "medianWords": 4, + "medianLetters": 27 + } + }, + "dates": { + "4": [ + "03.04.2025" + ], + "7": [ + "01.07.2025" + ], + "8": [ + "07.08.2025" + ], + "9": [ + "25.09.2025", + "15.09.2025" + ], + "10": [ + "15.10.2025" + ], + "year": [ + "03.04.2025", + "25.09.2025", + "15.09.2025", + "07.08.2025", + "01.07.2025", + "15.10.2025" + ] + }, + "worstDates": { + "1": [ + "14.01.2025", + "08.01.2025" + ], + "5": [ + "22.05.2025" + ], + "8": [ + "06.08.2025" + ], + "year": [ + "14.01.2025", + "08.01.2025", + "22.05.2025", + "06.08.2025" + ] + } + }, + "PatykiemPisane": { + "best50": { + "best": { + "word": "piec", + "letters": 14 + }, + "worst": { + "word": "umowa", + "letters": 20 + }, + "totalWords": { + "2": 44, + "3": 6 + }, + "totalLetters": { + "14": 1, + "15": 2, + "16": 11, + "17": 4, + "18": 11, + "19": 13, + "20": 8 + }, + "gamesPlayed": 50, + "medianWords": 2, + "medianLetters": 17.5 + }, + "hardest50": { + "best": { + "word": "nizina", + "letters": 24 + }, + "worst": { + "word": "afrikaans", + "letters": 162 + }, + "totalWords": { + "3": 5, + "4": 9, + "5": 14, + "6": 5, + "7": 3, + "8": 2, + "9": 1, + "10": 2, + "33": 1 + }, + "totalLetters": { + "24": 1, + "27": 2, + "28": 2, + "32": 4, + "34": 1, + "35": 4, + "36": 1, + "38": 3, + "39": 2, + "40": 2, + "42": 2, + "43": 4, + "45": 1, + "46": 2, + "47": 1, + "48": 1, + "49": 1, + "50": 2, + "51": 2, + "52": 1, + "57": 1, + "67": 1, + "162": 1 + }, + "gamesPlayed": 42, + "medianWords": 4.5, + "medianLetters": 39.5 + }, + "results": { + "2": { + "best": { + "word": "pierwsza", + "letters": 19 + }, + "worst": { + "word": "przepaść", + "letters": 59 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 2, + "7": 1 + }, + "totalLetters": { + "19": 1, + "20": 1, + "21": 2, + "27": 1, + "28": 1, + "31": 1, + "32": 1, + "59": 1 + }, + "gamesPlayed": 9, + "medianWords": 3, + "medianLetters": 27 + }, + "3": { + "best": { + "word": "wenus", + "letters": 16 + }, + "worst": { + "word": "groźnie", + "letters": 50 + }, + "totalWords": { + "2": 4, + "3": 7, + "4": 8, + "5": 4, + "6": 4, + "7": 1 + }, + "totalLetters": { + "16": 1, + "17": 1, + "18": 1, + "20": 2, + "22": 2, + "23": 1, + "24": 1, + "25": 2, + "26": 3, + "27": 1, + "28": 1, + "32": 1, + "33": 2, + "34": 1, + "36": 1, + "37": 1, + "38": 2, + "39": 1, + "42": 1, + "45": 1, + "50": 1 + }, + "gamesPlayed": 28, + "medianWords": 3.5, + "medianLetters": 26.5 + }, + "4": { + "best": { + "word": "eskadra", + "letters": 18 + }, + "worst": { + "word": "eksporter", + "letters": 52 + }, + "totalWords": { + "2": 4, + "3": 10, + "4": 5, + "5": 3, + "6": 2, + "7": 1, + "10": 1 + }, + "totalLetters": { + "18": 1, + "19": 2, + "20": 1, + "21": 1, + "22": 1, + "23": 2, + "24": 3, + "26": 1, + "27": 2, + "29": 1, + "30": 2, + "31": 1, + "32": 1, + "34": 1, + "36": 1, + "39": 1, + "40": 1, + "47": 1, + "50": 1, + "52": 1 + }, + "gamesPlayed": 26, + "medianWords": 2.5, + "medianLetters": 26.5 + }, + "5": { + "best": { + "word": "sztos", + "letters": 16 + }, + "worst": { + "word": "nacięcie", + "letters": 46 + }, + "totalWords": { + "2": 6, + "3": 13, + "4": 7, + "5": 2, + "6": 2 + }, + "totalLetters": { + "16": 1, + "18": 3, + "19": 3, + "21": 1, + "22": 4, + "23": 1, + "24": 1, + "25": 4, + "26": 1, + "27": 3, + "32": 1, + "33": 1, + "34": 3, + "35": 2, + "46": 1 + }, + "gamesPlayed": 30, + "medianWords": 2.5, + "medianLetters": 24.5 + }, + "6": { + "best": { + "word": "wizja", + "letters": 16 + }, + "worst": { + "word": "dwuizbowy", + "letters": 58 + }, + "totalWords": { + "2": 5, + "3": 10, + "4": 9, + "5": 3, + "6": 1, + "8": 1 + }, + "totalLetters": { + "16": 1, + "18": 2, + "19": 1, + "20": 2, + "22": 1, + "23": 1, + "24": 1, + "26": 3, + "27": 3, + "28": 2, + "30": 2, + "32": 2, + "33": 1, + "34": 1, + "35": 2, + "40": 1, + "41": 1, + "42": 1, + "58": 1 + }, + "gamesPlayed": 29, + "medianWords": 3, + "medianLetters": 27 + }, + "7": { + "best": { + "word": "rydz", + "letters": 15 + }, + "worst": { + "word": "afrikaans", + "letters": 162 + }, + "totalWords": { + "2": 6, + "3": 11, + "4": 6, + "5": 4, + "6": 1, + "8": 1, + "33": 1 + }, + "totalLetters": { + "15": 1, + "16": 1, + "17": 1, + "18": 1, + "19": 2, + "21": 1, + "22": 2, + "23": 1, + "24": 4, + "25": 2, + "28": 2, + "29": 1, + "30": 1, + "34": 2, + "35": 1, + "36": 2, + "39": 1, + "42": 1, + "49": 1, + "51": 1, + "162": 1 + }, + "gamesPlayed": 30, + "medianWords": 2.5, + "medianLetters": 24.5 + }, + "8": { + "best": { + "word": "spór", + "letters": 16 + }, + "worst": { + "word": "carbonara", + "letters": 67 + }, + "totalWords": { + "2": 3, + "3": 13, + "4": 4, + "5": 6, + "6": 1, + "7": 1, + "8": 1, + "10": 1 + }, + "totalLetters": { + "16": 1, + "18": 1, + "20": 1, + "21": 1, + "22": 1, + "23": 3, + "24": 2, + "25": 1, + "26": 2, + "27": 2, + "28": 3, + "29": 1, + "31": 1, + "32": 1, + "36": 1, + "38": 1, + "40": 1, + "42": 1, + "43": 1, + "46": 1, + "48": 1, + "51": 1, + "67": 1 + }, + "gamesPlayed": 30, + "medianWords": 2.5, + "medianLetters": 27.5 + }, + "9": { + "best": { + "word": "siać", + "letters": 15 + }, + "worst": { + "word": "cierpkość", + "letters": 61 + }, + "totalWords": { + "2": 7, + "3": 9, + "4": 4, + "5": 5, + "7": 1, + "8": 1 + }, + "totalLetters": { + "15": 1, + "16": 2, + "18": 1, + "19": 2, + "21": 2, + "22": 2, + "24": 2, + "26": 1, + "27": 4, + "30": 1, + "31": 2, + "32": 1, + "33": 1, + "35": 1, + "39": 1, + "40": 1, + "48": 1, + "61": 1 + }, + "gamesPlayed": 27, + "medianWords": 3, + "medianLetters": 27 + }, + "10": { + "best": { + "word": "drink", + "letters": 16 + }, + "worst": { + "word": "reumatyzm", + "letters": 57 + }, + "totalWords": { + "2": 4, + "3": 10, + "4": 8, + "5": 4, + "6": 2, + "7": 1, + "9": 1 + }, + "totalLetters": { + "16": 1, + "17": 1, + "19": 1, + "21": 3, + "22": 1, + "24": 1, + "25": 2, + "26": 1, + "27": 5, + "28": 1, + "31": 1, + "32": 2, + "33": 1, + "34": 1, + "35": 1, + "38": 1, + "43": 1, + "45": 1, + "46": 1, + "48": 1, + "52": 1, + "57": 1 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 26.5 + }, + "11": { + "best": { + "word": "piec", + "letters": 14 + }, + "worst": { + "word": "szukajcie", + "letters": 43 + }, + "totalWords": { + "2": 6, + "3": 13, + "4": 6, + "5": 4 + }, + "totalLetters": { + "14": 1, + "16": 3, + "18": 1, + "19": 1, + "20": 2, + "23": 1, + "24": 2, + "25": 3, + "26": 4, + "27": 2, + "29": 1, + "30": 2, + "31": 1, + "35": 1, + "37": 1, + "39": 1, + "42": 1, + "43": 1 + }, + "gamesPlayed": 29, + "medianWords": 3, + "medianLetters": 26 + }, + "12": { + "best": { + "word": "konać", + "letters": 17 + }, + "worst": { + "word": "obiecanki", + "letters": 43 + }, + "totalWords": { + "2": 2, + "3": 7, + "4": 6, + "5": 3, + "6": 1, + "7": 1 + }, + "totalLetters": { + "17": 1, + "20": 2, + "21": 2, + "22": 1, + "23": 1, + "24": 3, + "25": 1, + "29": 3, + "30": 1, + "33": 1, + "38": 1, + "42": 1, + "43": 2 + }, + "gamesPlayed": 20, + "medianWords": 3.5, + "medianLetters": 24.5 + }, + "year": { + "best": { + "word": "piec", + "letters": 14 + }, + "worst": { + "word": "afrikaans", + "letters": 162 + }, + "totalWords": { + "2": 48, + "3": 108, + "4": 65, + "5": 38, + "6": 14, + "7": 7, + "8": 4, + "9": 1, + "10": 2, + "33": 1 + }, + "totalLetters": { + "14": 1, + "15": 2, + "16": 11, + "17": 4, + "18": 11, + "19": 13, + "20": 11, + "21": 13, + "22": 15, + "23": 11, + "24": 20, + "25": 15, + "26": 16, + "27": 23, + "28": 10, + "29": 7, + "30": 9, + "31": 7, + "32": 10, + "33": 7, + "34": 9, + "35": 8, + "36": 5, + "37": 2, + "38": 5, + "39": 5, + "40": 4, + "41": 1, + "42": 6, + "43": 5, + "45": 2, + "46": 3, + "47": 1, + "48": 3, + "49": 1, + "50": 2, + "51": 2, + "52": 2, + "57": 1, + "58": 1, + "59": 1, + "61": 1, + "67": 1, + "162": 1 + }, + "gamesPlayed": 288, + "medianWords": 2.5, + "medianLetters": 26.5 + } + }, + "dates": { + "1": [ + "14.11.2025", + "21.11.2025", + "22.11.2025", + "18.11.2025", + "30.11.2025" + ], + "2": [ + "07.12.2025", + "20.12.2025", + "03.12.2025" + ], + "3": [ + "16.03.2025", + "21.03.2025" + ], + "4": [ + "25.04.2025", + "03.04.2025" + ], + "5": [ + "27.05.2025" + ], + "6": [ + "09.06.2025", + "27.06.2025" + ], + "7": [ + "02.07.2025" + ], + "8": [ + "01.08.2025", + "03.08.2025" + ], + "9": [ + "13.09.2025", + "26.09.2025" + ], + "10": [ + "28.10.2025", + "30.10.2025" + ], + "11": [ + "14.11.2025", + "21.11.2025", + "22.11.2025", + "18.11.2025", + "30.11.2025" + ], + "12": [ + "07.12.2025", + "20.12.2025", + "03.12.2025" + ], + "year": [ + "16.03.2025", + "21.03.2025", + "25.04.2025", + "03.04.2025", + "02.07.2025", + "09.06.2025", + "27.05.2025", + "01.08.2025", + "13.09.2025", + "03.08.2025", + "26.09.2025", + "27.06.2025", + "14.11.2025", + "07.12.2025", + "28.10.2025", + "21.11.2025", + "20.12.2025", + "22.11.2025", + "30.10.2025", + "03.12.2025", + "18.11.2025", + "30.11.2025" + ] + }, + "worstDates": { + "1": [ + "06.11.2025" + ], + "2": [ + "26.02.2025", + "04.12.2025" + ], + "3": [ + "06.03.2025" + ], + "4": [ + "05.04.2025" + ], + "5": [ + "26.05.2025" + ], + "6": [ + "14.06.2025", + "17.06.2025", + "21.06.2025" + ], + "7": [ + "29.07.2025" + ], + "8": [ + "17.08.2025" + ], + "9": [ + "14.09.2025", + "11.09.2025" + ], + "10": [ + "12.10.2025" + ], + "11": [ + "06.11.2025" + ], + "12": [ + "04.12.2025" + ], + "year": [ + "06.03.2025", + "26.02.2025", + "05.04.2025", + "14.06.2025", + "17.06.2025", + "26.05.2025", + "14.09.2025", + "17.08.2025", + "29.07.2025", + "11.09.2025", + "21.06.2025", + "04.12.2025", + "12.10.2025", + "06.11.2025" + ] + } + }, + "wihajster": { + "best50": { + "best": { + "word": "więc", + "letters": 18 + }, + "worst": { + "word": "pisemnie", + "letters": 22 + }, + "totalWords": { + "2": 50 + }, + "totalLetters": { + "18": 5, + "19": 16, + "20": 11, + "21": 17, + "22": 1 + }, + "gamesPlayed": 50, + "medianWords": 2, + "medianLetters": 19.5 + }, + "hardest50": { + "best": { + "word": "nizina", + "letters": 20 + }, + "worst": { + "word": "obrzędowy", + "letters": 60 + }, + "totalWords": { + "2": 4, + "3": 17, + "4": 9, + "5": 9, + "6": 2, + "7": 1, + "8": 1 + }, + "totalLetters": { + "20": 1, + "22": 1, + "23": 2, + "28": 6, + "29": 2, + "30": 2, + "31": 4, + "32": 1, + "33": 3, + "34": 3, + "35": 1, + "36": 3, + "38": 1, + "39": 1, + "41": 2, + "42": 1, + "43": 2, + "45": 1, + "46": 3, + "47": 1, + "48": 1, + "60": 1 + }, + "gamesPlayed": 43, + "medianWords": 4, + "medianLetters": 33 + }, + "results": { + "1": { + "best": { + "word": "więc", + "letters": 18 + }, + "worst": { + "word": "achy", + "letters": 42 + }, + "totalWords": { + "2": 10, + "3": 13, + "4": 6, + "5": 1, + "7": 1 + }, + "totalLetters": { + "18": 1, + "19": 2, + "20": 1, + "21": 3, + "22": 1, + "23": 2, + "25": 1, + "27": 3, + "28": 1, + "29": 2, + "30": 3, + "31": 2, + "32": 2, + "33": 3, + "34": 2, + "35": 1, + "42": 1 + }, + "gamesPlayed": 31, + "medianWords": 3, + "medianLetters": 29 + }, + "2": { + "best": { + "word": "rumak", + "letters": 19 + }, + "worst": { + "word": "rogówka", + "letters": 46 + }, + "totalWords": { + "2": 2, + "3": 13, + "4": 7, + "5": 1 + }, + "totalLetters": { + "19": 1, + "20": 1, + "23": 2, + "24": 3, + "28": 1, + "29": 2, + "30": 3, + "31": 3, + "33": 1, + "34": 1, + "35": 1, + "36": 1, + "39": 2, + "46": 1 + }, + "gamesPlayed": 23, + "medianWords": 3, + "medianLetters": 30 + }, + "3": { + "best": { + "word": "sanie", + "letters": 19 + }, + "worst": { + "word": "konsjerż", + "letters": 43 + }, + "totalWords": { + "2": 5, + "3": 17, + "4": 4, + "5": 3 + }, + "totalLetters": { + "19": 1, + "20": 1, + "21": 1, + "22": 4, + "23": 2, + "25": 4, + "26": 2, + "28": 4, + "29": 1, + "31": 1, + "33": 1, + "34": 2, + "35": 1, + "36": 1, + "37": 1, + "42": 1, + "43": 1 + }, + "gamesPlayed": 29, + "medianWords": 3, + "medianLetters": 26 + }, + "4": { + "best": { + "word": "meduza", + "letters": 20 + }, + "worst": { + "word": "egzegeza", + "letters": 48 + }, + "totalWords": { + "2": 5, + "3": 12, + "4": 5, + "5": 1, + "8": 1 + }, + "totalLetters": { + "20": 2, + "21": 1, + "22": 1, + "23": 2, + "24": 1, + "25": 1, + "26": 2, + "27": 1, + "28": 3, + "30": 1, + "32": 3, + "33": 2, + "34": 1, + "36": 1, + "37": 1, + "48": 1 + }, + "gamesPlayed": 24, + "medianWords": 2.5, + "medianLetters": 27.5 + }, + "5": { + "best": { + "word": "metr", + "letters": 18 + }, + "worst": { + "word": "drumla", + "letters": 36 + }, + "totalWords": { + "2": 8, + "3": 8, + "4": 7, + "5": 1 + }, + "totalLetters": { + "18": 1, + "19": 1, + "20": 1, + "21": 4, + "23": 1, + "25": 3, + "26": 1, + "27": 2, + "28": 1, + "29": 1, + "30": 4, + "32": 1, + "35": 1, + "36": 2 + }, + "gamesPlayed": 24, + "medianWords": 2.5, + "medianLetters": 26.5 + }, + "6": { + "best": { + "word": "wizja", + "letters": 19 + }, + "worst": { + "word": "zużycie", + "letters": 46 + }, + "totalWords": { + "2": 6, + "3": 10, + "4": 6, + "5": 2, + "6": 1 + }, + "totalLetters": { + "19": 1, + "20": 1, + "22": 2, + "23": 3, + "25": 1, + "26": 2, + "27": 1, + "29": 1, + "30": 3, + "31": 1, + "32": 1, + "33": 3, + "34": 1, + "36": 2, + "40": 1, + "46": 1 + }, + "gamesPlayed": 25, + "medianWords": 3, + "medianLetters": 30 + }, + "7": { + "best": { + "word": "walny", + "letters": 19 + }, + "worst": { + "word": "afrikaans", + "letters": 45 + }, + "totalWords": { + "2": 8, + "3": 8, + "4": 4, + "5": 1, + "6": 1 + }, + "totalLetters": { + "19": 1, + "20": 3, + "21": 2, + "22": 2, + "26": 4, + "27": 2, + "28": 3, + "30": 2, + "36": 1, + "37": 1, + "45": 1 + }, + "gamesPlayed": 22, + "medianWords": 2.5, + "medianLetters": 24 + }, + "8": { + "best": { + "word": "koza", + "letters": 18 + }, + "worst": { + "word": "kindżał", + "letters": 49 + }, + "totalWords": { + "2": 7, + "3": 8, + "4": 4, + "5": 4, + "6": 1 + }, + "totalLetters": { + "18": 1, + "19": 2, + "21": 1, + "22": 1, + "23": 2, + "25": 1, + "27": 2, + "28": 1, + "29": 3, + "30": 2, + "31": 1, + "35": 1, + "36": 1, + "41": 1, + "42": 1, + "46": 1, + "47": 1, + "49": 1 + }, + "gamesPlayed": 24, + "medianWords": 2.5, + "medianLetters": 28.5 + }, + "9": { + "best": { + "word": "zmowa", + "letters": 19 + }, + "worst": { + "word": "obrzędowy", + "letters": 60 + }, + "totalWords": { + "2": 8, + "3": 9, + "4": 10, + "5": 2, + "7": 1 + }, + "totalLetters": { + "19": 3, + "20": 1, + "22": 3, + "23": 2, + "25": 2, + "27": 5, + "28": 4, + "30": 1, + "32": 2, + "33": 4, + "35": 1, + "43": 1, + "60": 1 + }, + "gamesPlayed": 30, + "medianWords": 2.5, + "medianLetters": 26 + }, + "10": { + "best": { + "word": "klasa", + "letters": 19 + }, + "worst": { + "word": "reumatyzm", + "letters": 43 + }, + "totalWords": { + "2": 3, + "3": 12, + "4": 10, + "5": 2 + }, + "totalLetters": { + "19": 1, + "23": 2, + "24": 1, + "25": 2, + "27": 1, + "28": 3, + "29": 1, + "30": 4, + "31": 4, + "33": 1, + "35": 2, + "38": 2, + "39": 1, + "41": 1, + "43": 1 + }, + "gamesPlayed": 27, + "medianWords": 3, + "medianLetters": 30 + }, + "11": { + "best": { + "word": "piec", + "letters": 18 + }, + "worst": { + "word": "położna", + "letters": 36 + }, + "totalWords": { + "2": 8, + "3": 8, + "4": 4, + "5": 2 + }, + "totalLetters": { + "18": 2, + "19": 1, + "21": 3, + "22": 2, + "26": 1, + "27": 1, + "29": 1, + "30": 4, + "31": 1, + "33": 1, + "34": 1, + "35": 1, + "36": 3 + }, + "gamesPlayed": 22, + "medianWords": 2.5, + "medianLetters": 29.5 + }, + "12": { + "best": { + "word": "nobel", + "letters": 19 + }, + "worst": { + "word": "odznaczać", + "letters": 38 + }, + "totalWords": { + "2": 5, + "3": 7, + "4": 5, + "5": 1 + }, + "totalLetters": { + "19": 2, + "21": 2, + "22": 1, + "23": 2, + "24": 1, + "25": 2, + "27": 2, + "29": 2, + "31": 1, + "32": 1, + "38": 2 + }, + "gamesPlayed": 18, + "medianWords": 2.5, + "medianLetters": 24.5 + }, + "year": { + "best": { + "word": "więc", + "letters": 18 + }, + "worst": { + "word": "obrzędowy", + "letters": 60 + }, + "totalWords": { + "2": 75, + "3": 125, + "4": 72, + "5": 21, + "6": 3, + "7": 2, + "8": 1 + }, + "totalLetters": { + "18": 5, + "19": 16, + "20": 11, + "21": 17, + "22": 17, + "23": 20, + "24": 6, + "25": 17, + "26": 12, + "27": 20, + "28": 21, + "29": 14, + "30": 27, + "31": 14, + "32": 10, + "33": 16, + "34": 8, + "35": 9, + "36": 12, + "37": 3, + "38": 4, + "39": 3, + "40": 1, + "41": 2, + "42": 3, + "43": 3, + "45": 1, + "46": 3, + "47": 1, + "48": 1, + "49": 1, + "60": 1 + }, + "gamesPlayed": 299, + "medianWords": 3, + "medianLetters": 28 + } + }, + "dates": { + "1": [ + "21.01.2025", + "30.01.2025", + "13.11.2025", + "23.11.2025" + ], + "2": [ + "09.02.2025", + "15.12.2025" + ], + "5": [ + "26.05.2025" + ], + "6": [ + "29.06.2025" + ], + "7": [ + "04.07.2025" + ], + "8": [ + "14.08.2025" + ], + "9": [ + "20.09.2025" + ], + "10": [ + "14.10.2025" + ], + "11": [ + "13.11.2025", + "23.11.2025" + ], + "12": [ + "15.12.2025" + ], + "year": [ + "09.02.2025", + "21.01.2025", + "30.01.2025", + "04.07.2025", + "14.08.2025", + "26.05.2025", + "29.06.2025", + "20.09.2025", + "13.11.2025", + "14.10.2025", + "23.11.2025", + "15.12.2025" + ] + }, + "worstDates": { + "1": [ + "27.11.2025" + ], + "4": [ + "03.04.2025" + ], + "6": [ + "10.06.2025" + ], + "7": [ + "01.07.2025" + ], + "8": [ + "18.08.2025" + ], + "9": [ + "18.09.2025" + ], + "10": [ + "28.10.2025", + "29.10.2025" + ], + "11": [ + "27.11.2025" + ], + "year": [ + "03.04.2025", + "18.08.2025", + "18.09.2025", + "10.06.2025", + "01.07.2025", + "28.10.2025", + "27.11.2025", + "29.10.2025" + ] + } + }, + "Tysiek": { + "results": { + "3": { + "best": { + "word": "sanie", + "letters": 19 + }, + "worst": { + "word": "groźnie", + "letters": 49 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 2, + "5": 3, + "6": 3, + "8": 1 + }, + "totalLetters": { + "19": 1, + "23": 1, + "26": 1, + "30": 1, + "32": 1, + "33": 3, + "36": 1, + "39": 1, + "40": 1, + "49": 1 + }, + "gamesPlayed": 12, + "medianWords": 4.5, + "medianLetters": 32.5 + }, + "4": { + "best": { + "word": "szkliwo", + "letters": 21 + }, + "worst": { + "word": "szkliwo", + "letters": 21 + }, + "totalWords": { + "2": 1 + }, + "totalLetters": { + "21": 1 + }, + "gamesPlayed": 1, + "medianWords": 2, + "medianLetters": 21 + }, + "year": { + "best": { + "word": "sanie", + "letters": 19 + }, + "worst": { + "word": "groźnie", + "letters": 49 + }, + "totalWords": { + "2": 2, + "3": 2, + "4": 2, + "5": 3, + "6": 3, + "8": 1 + }, + "totalLetters": { + "19": 1, + "21": 1, + "23": 1, + "26": 1, + "30": 1, + "32": 1, + "33": 3, + "36": 1, + "39": 1, + "40": 1, + "49": 1 + }, + "gamesPlayed": 13, + "medianWords": 5, + "medianLetters": 33 + } + }, + "dates": { + "year": [] + }, + "worstDates": { + "year": [] + } + }, + "Heheszki": { + "results": { + "1": { + "best": { + "word": "spisywać", + "letters": 18 + }, + "worst": { + "word": "lobotomia", + "letters": 33 + }, + "totalWords": { + "2": 1, + "3": 3 + }, + "totalLetters": { + "18": 1, + "24": 1, + "33": 2 + }, + "gamesPlayed": 4, + "medianWords": 2.5, + "medianLetters": 28.5 + }, + "3": { + "best": { + "word": "guma", + "letters": 31 + }, + "worst": { + "word": "groźnie", + "letters": 38 + }, + "totalWords": { + "5": 1, + "7": 1 + }, + "totalLetters": { + "31": 1, + "38": 1 + }, + "gamesPlayed": 2, + "medianWords": 6, + "medianLetters": 34.5 + }, + "4": { + "best": { + "word": "wydatek", + "letters": 22 + }, + "worst": { + "word": "destylat", + "letters": 29 + }, + "totalWords": { + "2": 1, + "3": 1 + }, + "totalLetters": { + "22": 1, + "29": 1 + }, + "gamesPlayed": 2, + "medianWords": 2.5, + "medianLetters": 25.5 + }, + "6": { + "best": { + "word": "skrywać", + "letters": 22 + }, + "worst": { + "word": "skrywać", + "letters": 22 + }, + "totalWords": { + "3": 1 + }, + "totalLetters": { + "22": 1 + }, + "gamesPlayed": 1, + "medianWords": 3, + "medianLetters": 22 + }, + "9": { + "best": { + "word": "zmowa", + "letters": 25 + }, + "worst": { + "word": "obrzędowy", + "letters": 40 + }, + "totalWords": { + "3": 1, + "4": 3, + "5": 1 + }, + "totalLetters": { + "25": 1, + "29": 2, + "30": 1, + "40": 1 + }, + "gamesPlayed": 5, + "medianWords": 4, + "medianLetters": 29 + }, + "10": { + "best": { + "word": "granola", + "letters": 20 + }, + "worst": { + "word": "przenikać", + "letters": 53 + }, + "totalWords": { + "2": 3, + "4": 3, + "5": 1 + }, + "totalLetters": { + "20": 1, + "21": 1, + "24": 1, + "26": 1, + "31": 1, + "39": 1, + "53": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 26 + }, + "11": { + "best": { + "word": "piec", + "letters": 19 + }, + "worst": { + "word": "olbrzymka", + "letters": 44 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 3, + "5": 1, + "6": 1 + }, + "totalLetters": { + "19": 1, + "24": 1, + "25": 1, + "26": 1, + "28": 1, + "30": 1, + "34": 1, + "35": 1, + "37": 1, + "44": 1 + }, + "gamesPlayed": 10, + "medianWords": 3.5, + "medianLetters": 29 + }, + "12": { + "best": { + "word": "nobel", + "letters": 18 + }, + "worst": { + "word": "zaufanie", + "letters": 66 + }, + "totalWords": { + "2": 1, + "3": 2, + "5": 1, + "6": 1, + "7": 1 + }, + "totalLetters": { + "18": 1, + "24": 1, + "30": 1, + "42": 1, + "48": 1, + "66": 1 + }, + "gamesPlayed": 6, + "medianWords": 4, + "medianLetters": 36 + }, + "year": { + "best": { + "word": "spisywać", + "letters": 18 + }, + "worst": { + "word": "zaufanie", + "letters": 66 + }, + "totalWords": { + "2": 7, + "3": 12, + "4": 9, + "5": 5, + "6": 2, + "7": 2 + }, + "totalLetters": { + "18": 2, + "19": 1, + "20": 1, + "21": 1, + "22": 2, + "24": 4, + "25": 2, + "26": 2, + "28": 1, + "29": 3, + "30": 3, + "31": 2, + "33": 2, + "34": 1, + "35": 1, + "37": 1, + "38": 1, + "39": 1, + "40": 1, + "42": 1, + "44": 1, + "48": 1, + "53": 1, + "66": 1 + }, + "gamesPlayed": 37, + "medianWords": 3, + "medianLetters": 29 + } + }, + "dates": { + "1": [ + "09.01.2025" + ], + "6": [ + "25.06.2025" + ], + "year": [ + "09.01.2025", + "25.06.2025" + ] + }, + "worstDates": { + "2": [ + "06.12.2025" + ], + "10": [ + "13.10.2025" + ], + "12": [ + "06.12.2025" + ], + "year": [ + "06.12.2025", + "13.10.2025" + ] + } + }, + "Felonious_Gru": { + "best50": { + "best": { + "word": "siać", + "letters": 14 + }, + "worst": { + "word": "wdychać", + "letters": 23 + }, + "totalWords": { + "2": 22, + "3": 25, + "4": 3 + }, + "totalLetters": { + "14": 4, + "15": 10, + "16": 4, + "17": 3, + "18": 2, + "19": 3, + "20": 2, + "21": 4, + "22": 10, + "23": 8 + }, + "gamesPlayed": 50, + "medianWords": 2.5, + "medianLetters": 18.5 + }, + "hardest50": { + "best": { + "word": "janowiec", + "letters": 18 + }, + "worst": { + "word": "klepsydra", + "letters": 72 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 7, + "5": 7, + "6": 7, + "7": 8, + "8": 4, + "9": 1, + "10": 2, + "12": 2, + "13": 1 + }, + "totalLetters": { + "18": 1, + "25": 2, + "28": 1, + "30": 1, + "31": 3, + "33": 1, + "34": 2, + "35": 1, + "36": 2, + "38": 1, + "39": 1, + "40": 3, + "42": 3, + "43": 4, + "44": 1, + "45": 1, + "46": 3, + "47": 1, + "48": 1, + "51": 2, + "52": 2, + "54": 1, + "57": 1, + "63": 1, + "67": 1, + "69": 2, + "72": 1 + }, + "gamesPlayed": 44, + "medianWords": 5.5, + "medianLetters": 42.5 + }, + "results": { + "1": { + "best": { + "word": "szczęk", + "letters": 16 + }, + "worst": { + "word": "achy", + "letters": 54 + }, + "totalWords": { + "2": 1, + "3": 8, + "4": 2, + "5": 10, + "6": 2, + "7": 2, + "8": 2, + "10": 1 + }, + "totalLetters": { + "16": 1, + "21": 1, + "22": 1, + "23": 2, + "24": 3, + "26": 1, + "29": 1, + "30": 1, + "31": 1, + "35": 3, + "36": 3, + "38": 2, + "41": 1, + "42": 1, + "44": 1, + "45": 3, + "48": 1, + "54": 1 + }, + "gamesPlayed": 28, + "medianWords": 4.5, + "medianLetters": 33 + }, + "2": { + "best": { + "word": "wyrok", + "letters": 21 + }, + "worst": { + "word": "absolwent", + "letters": 49 + }, + "totalWords": { + "3": 6, + "4": 8, + "5": 3, + "6": 3, + "7": 4 + }, + "totalLetters": { + "21": 1, + "23": 1, + "24": 3, + "26": 3, + "27": 1, + "28": 1, + "29": 1, + "30": 1, + "31": 1, + "32": 2, + "37": 1, + "39": 1, + "40": 1, + "42": 1, + "45": 1, + "46": 1, + "48": 2, + "49": 1 + }, + "gamesPlayed": 24, + "medianWords": 3.5, + "medianLetters": 30.5 + }, + "3": { + "best": { + "word": "znawca", + "letters": 16 + }, + "worst": { + "word": "bałtycki", + "letters": 60 + }, + "totalWords": { + "2": 2, + "3": 2, + "4": 4, + "5": 6, + "6": 3, + "7": 6, + "8": 2, + "9": 1, + "12": 1 + }, + "totalLetters": { + "16": 1, + "17": 1, + "19": 2, + "26": 1, + "29": 1, + "30": 2, + "31": 1, + "33": 1, + "34": 1, + "36": 3, + "37": 1, + "38": 1, + "39": 1, + "40": 4, + "43": 1, + "44": 1, + "51": 1, + "52": 1, + "54": 1, + "60": 1 + }, + "gamesPlayed": 27, + "medianWords": 5, + "medianLetters": 36 + }, + "4": { + "best": { + "word": "chwalić", + "letters": 17 + }, + "worst": { + "word": "eksporter", + "letters": 74 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 9, + "5": 5, + "6": 4, + "7": 2, + "8": 1, + "10": 1, + "13": 2 + }, + "totalLetters": { + "17": 1, + "23": 2, + "25": 2, + "26": 1, + "28": 1, + "30": 1, + "31": 2, + "32": 3, + "33": 2, + "34": 1, + "36": 5, + "37": 1, + "45": 1, + "52": 1, + "56": 1, + "57": 1, + "69": 1, + "74": 1 + }, + "gamesPlayed": 28, + "medianWords": 4.5, + "medianLetters": 32.5 + }, + "5": { + "best": { + "word": "moher", + "letters": 15 + }, + "worst": { + "word": "łaskotki", + "letters": 45 + }, + "totalWords": { + "2": 4, + "3": 5, + "4": 7, + "5": 6, + "6": 2, + "7": 4, + "8": 1, + "9": 1 + }, + "totalLetters": { + "15": 4, + "21": 1, + "22": 3, + "25": 1, + "26": 2, + "27": 1, + "30": 2, + "31": 3, + "32": 2, + "33": 2, + "34": 1, + "38": 2, + "39": 1, + "40": 2, + "44": 2, + "45": 1 + }, + "gamesPlayed": 30, + "medianWords": 3.5, + "medianLetters": 30.5 + }, + "6": { + "best": { + "word": "wizja", + "letters": 15 + }, + "worst": { + "word": "samotność", + "letters": 61 + }, + "totalWords": { + "2": 2, + "3": 4, + "4": 3, + "5": 6, + "6": 4, + "7": 2, + "8": 1, + "9": 1, + "11": 1 + }, + "totalLetters": { + "15": 1, + "16": 1, + "21": 1, + "24": 2, + "25": 1, + "26": 1, + "28": 1, + "29": 1, + "30": 2, + "33": 1, + "35": 1, + "36": 2, + "39": 1, + "40": 1, + "42": 1, + "43": 1, + "44": 1, + "47": 1, + "52": 1, + "54": 1, + "61": 1 + }, + "gamesPlayed": 24, + "medianWords": 4.5, + "medianLetters": 34 + }, + "7": { + "best": { + "word": "unia", + "letters": 14 + }, + "worst": { + "word": "wzburzony", + "letters": 67 + }, + "totalWords": { + "2": 1, + "3": 8, + "4": 6, + "5": 4, + "6": 4, + "7": 1, + "8": 4, + "10": 1, + "11": 1, + "12": 1 + }, + "totalLetters": { + "14": 1, + "22": 1, + "23": 2, + "24": 1, + "25": 4, + "27": 1, + "28": 1, + "29": 1, + "30": 2, + "31": 2, + "32": 1, + "33": 1, + "36": 1, + "39": 2, + "40": 1, + "46": 1, + "47": 1, + "48": 2, + "50": 1, + "51": 1, + "52": 1, + "53": 1, + "67": 1 + }, + "gamesPlayed": 31, + "medianWords": 5, + "medianLetters": 31 + }, + "8": { + "best": { + "word": "homo", + "letters": 14 + }, + "worst": { + "word": "klepsydra", + "letters": 72 + }, + "totalWords": { + "2": 4, + "3": 7, + "4": 5, + "5": 2, + "6": 4, + "7": 2, + "8": 2, + "11": 2, + "12": 1 + }, + "totalLetters": { + "14": 1, + "15": 1, + "16": 1, + "18": 2, + "19": 1, + "20": 1, + "22": 1, + "24": 1, + "25": 3, + "28": 2, + "31": 2, + "38": 1, + "39": 2, + "42": 1, + "43": 1, + "44": 1, + "46": 2, + "51": 1, + "57": 1, + "64": 1, + "65": 1, + "72": 1 + }, + "gamesPlayed": 29, + "medianWords": 4, + "medianLetters": 31 + }, + "9": { + "best": { + "word": "siać", + "letters": 14 + }, + "worst": { + "word": "pszenica", + "letters": 55 + }, + "totalWords": { + "2": 4, + "3": 6, + "4": 11, + "5": 2, + "6": 5, + "9": 1 + }, + "totalLetters": { + "14": 1, + "15": 3, + "20": 1, + "22": 2, + "23": 2, + "25": 2, + "26": 1, + "27": 1, + "28": 2, + "31": 1, + "32": 1, + "33": 2, + "34": 2, + "35": 1, + "36": 2, + "37": 1, + "39": 1, + "40": 1, + "48": 1, + "55": 1 + }, + "gamesPlayed": 29, + "medianWords": 4, + "medianLetters": 28 + }, + "10": { + "best": { + "word": "wyjec", + "letters": 15 + }, + "worst": { + "word": "bezcelowy", + "letters": 52 + }, + "totalWords": { + "2": 2, + "3": 7, + "4": 11, + "5": 4, + "6": 1, + "7": 3, + "8": 3 + }, + "totalLetters": { + "15": 1, + "17": 1, + "22": 1, + "24": 1, + "25": 2, + "26": 4, + "27": 3, + "28": 1, + "30": 2, + "31": 1, + "32": 2, + "34": 2, + "35": 1, + "36": 2, + "42": 1, + "43": 2, + "45": 1, + "47": 1, + "51": 1, + "52": 1 + }, + "gamesPlayed": 31, + "medianWords": 4, + "medianLetters": 30 + }, + "11": { + "best": { + "word": "piec", + "letters": 14 + }, + "worst": { + "word": "olbrzymka", + "letters": 71 + }, + "totalWords": { + "2": 1, + "3": 7, + "4": 5, + "5": 6, + "6": 6, + "7": 2, + "10": 2, + "14": 1 + }, + "totalLetters": { + "14": 1, + "23": 2, + "24": 3, + "25": 2, + "27": 1, + "29": 3, + "31": 3, + "32": 1, + "34": 1, + "36": 2, + "37": 1, + "39": 2, + "42": 2, + "43": 1, + "46": 2, + "64": 1, + "69": 1, + "71": 1 + }, + "gamesPlayed": 30, + "medianWords": 4.5, + "medianLetters": 31.5 + }, + "12": { + "best": { + "word": "szampon", + "letters": 22 + }, + "worst": { + "word": "zaufanie", + "letters": 63 + }, + "totalWords": { + "3": 4, + "4": 3, + "5": 4, + "6": 6, + "7": 3, + "8": 1 + }, + "totalLetters": { + "22": 1, + "23": 1, + "25": 1, + "26": 2, + "29": 1, + "30": 1, + "32": 3, + "33": 1, + "34": 1, + "35": 1, + "36": 1, + "38": 2, + "39": 2, + "42": 1, + "46": 1, + "63": 1 + }, + "gamesPlayed": 21, + "medianWords": 5, + "medianLetters": 33 + }, + "year": { + "best": { + "word": "siać", + "letters": 14 + }, + "worst": { + "word": "eksporter", + "letters": 74 + }, + "totalWords": { + "2": 22, + "3": 67, + "4": 74, + "5": 58, + "6": 44, + "7": 31, + "8": 17, + "9": 4, + "10": 5, + "11": 4, + "12": 3, + "13": 2, + "14": 1 + }, + "totalLetters": { + "14": 4, + "15": 10, + "16": 4, + "17": 3, + "18": 2, + "19": 3, + "20": 2, + "21": 4, + "22": 10, + "23": 12, + "24": 14, + "25": 18, + "26": 16, + "27": 8, + "28": 9, + "29": 9, + "30": 14, + "31": 17, + "32": 15, + "33": 10, + "34": 9, + "35": 7, + "36": 21, + "37": 5, + "38": 8, + "39": 13, + "40": 10, + "41": 1, + "42": 8, + "43": 6, + "44": 6, + "45": 7, + "46": 7, + "47": 3, + "48": 6, + "49": 1, + "50": 1, + "51": 4, + "52": 5, + "53": 1, + "54": 3, + "55": 1, + "56": 1, + "57": 2, + "60": 1, + "61": 1, + "63": 1, + "64": 2, + "65": 1, + "67": 1, + "69": 2, + "71": 1, + "72": 1, + "74": 1 + }, + "gamesPlayed": 332, + "medianWords": 4.5, + "medianLetters": 31.5 + } + }, + "dates": { + "1": [ + "14.11.2025" + ], + "3": [ + "24.03.2025" + ], + "5": [ + "16.05.2025", + "20.05.2025" + ], + "6": [ + "04.06.2025", + "05.06.2025" + ], + "7": [ + "21.07.2025" + ], + "8": [ + "28.08.2025", + "06.08.2025", + "08.08.2025", + "11.08.2025" + ], + "9": [ + "14.09.2025" + ], + "10": [ + "23.10.2025" + ], + "11": [ + "14.11.2025" + ], + "year": [ + "16.05.2025", + "24.03.2025", + "20.05.2025", + "04.06.2025", + "05.06.2025", + "28.08.2025", + "14.09.2025", + "21.07.2025", + "06.08.2025", + "08.08.2025", + "11.08.2025", + "14.11.2025", + "23.10.2025" + ] + }, + "worstDates": { + "1": [ + "16.01.2025", + "28.01.2025", + "24.01.2025", + "07.01.2025", + "13.11.2025", + "10.11.2025", + "23.11.2025", + "08.11.2025", + "30.11.2025" + ], + "2": [ + "05.02.2025", + "23.02.2025", + "14.12.2025", + "17.12.2025", + "09.12.2025", + "08.12.2025", + "11.12.2025" + ], + "3": [ + "09.03.2025", + "19.03.2025", + "20.03.2025", + "21.03.2025", + "22.03.2025", + "01.03.2025", + "05.03.2025", + "27.03.2025" + ], + "4": [ + "07.04.2025", + "09.04.2025", + "04.04.2025", + "01.04.2025", + "08.04.2025", + "14.04.2025", + "06.04.2025", + "29.04.2025", + "03.04.2025", + "02.04.2025" + ], + "5": [ + "15.05.2025", + "01.05.2025", + "27.05.2025", + "17.05.2025" + ], + "6": [ + "09.06.2025", + "23.06.2025", + "24.06.2025", + "16.06.2025", + "15.06.2025", + "02.06.2025" + ], + "7": [ + "02.07.2025", + "05.07.2025", + "16.07.2025", + "27.07.2025", + "31.07.2025", + "15.07.2025", + "13.07.2025" + ], + "8": [ + "30.08.2025", + "03.08.2025", + "19.08.2025", + "15.08.2025" + ], + "9": [ + "09.09.2025", + "08.09.2025", + "30.09.2025" + ], + "10": [ + "27.10.2025", + "19.10.2025", + "25.10.2025" + ], + "11": [ + "13.11.2025", + "10.11.2025", + "23.11.2025", + "08.11.2025", + "30.11.2025" + ], + "12": [ + "14.12.2025", + "17.12.2025", + "09.12.2025", + "08.12.2025", + "11.12.2025" + ], + "year": [ + "09.03.2025", + "19.03.2025", + "20.03.2025", + "21.03.2025", + "22.03.2025", + "01.03.2025", + "16.01.2025", + "05.02.2025", + "05.03.2025", + "23.02.2025", + "28.01.2025", + "24.01.2025", + "07.01.2025", + "07.04.2025", + "09.04.2025", + "27.03.2025", + "04.04.2025", + "01.04.2025", + "08.04.2025", + "14.04.2025", + "06.04.2025", + "15.05.2025", + "29.04.2025", + "03.04.2025", + "02.04.2025", + "01.05.2025", + "02.07.2025", + "05.07.2025", + "09.06.2025", + "16.07.2025", + "27.05.2025", + "30.08.2025", + "03.08.2025", + "27.07.2025", + "17.05.2025", + "19.08.2025", + "09.09.2025", + "31.07.2025", + "15.07.2025", + "23.06.2025", + "24.06.2025", + "15.08.2025", + "08.09.2025", + "30.09.2025", + "13.07.2025", + "16.06.2025", + "15.06.2025", + "02.06.2025", + "14.12.2025", + "27.10.2025", + "19.10.2025", + "13.11.2025", + "17.12.2025", + "10.11.2025", + "25.10.2025", + "23.11.2025", + "08.11.2025", + "09.12.2025", + "08.12.2025", + "11.12.2025", + "30.11.2025" + ] + } + }, + "Cybulion": { + "results": { + "1": { + "best": { + "word": "kwadra", + "letters": 26 + }, + "worst": { + "word": "kwadra", + "letters": 26 + }, + "totalWords": { + "3": 1 + }, + "totalLetters": { + "26": 1 + }, + "gamesPlayed": 1, + "medianWords": 3, + "medianLetters": 26 + }, + "2": { + "best": { + "word": "kręgowy", + "letters": 27 + }, + "worst": { + "word": "zabawnie", + "letters": 39 + }, + "totalWords": { + "3": 1, + "4": 2 + }, + "totalLetters": { + "27": 1, + "35": 1, + "39": 1 + }, + "gamesPlayed": 3, + "medianWords": 4, + "medianLetters": 35 + }, + "3": { + "best": { + "word": "guma", + "letters": 19 + }, + "worst": { + "word": "pisemnie", + "letters": 52 + }, + "totalWords": { + "2": 3, + "3": 4, + "4": 1, + "8": 1 + }, + "totalLetters": { + "19": 1, + "20": 1, + "21": 1, + "25": 2, + "29": 1, + "31": 2, + "52": 1 + }, + "gamesPlayed": 9, + "medianWords": 3, + "medianLetters": 25 + }, + "5": { + "best": { + "word": "wojna", + "letters": 20 + }, + "worst": { + "word": "wojna", + "letters": 20 + }, + "totalWords": { + "2": 1 + }, + "totalLetters": { + "20": 1 + }, + "gamesPlayed": 1, + "medianWords": 2, + "medianLetters": 20 + }, + "6": { + "best": { + "word": "keja", + "letters": 19 + }, + "worst": { + "word": "opornik", + "letters": 31 + }, + "totalWords": { + "2": 1, + "3": 1 + }, + "totalLetters": { + "19": 1, + "31": 1 + }, + "gamesPlayed": 2, + "medianWords": 2.5, + "medianLetters": 25 + }, + "8": { + "best": { + "word": "koza", + "letters": 19 + }, + "worst": { + "word": "litować", + "letters": 44 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 2, + "5": 1 + }, + "totalLetters": { + "19": 1, + "26": 1, + "27": 3, + "29": 1, + "30": 1, + "31": 1, + "44": 1 + }, + "gamesPlayed": 9, + "medianWords": 3, + "medianLetters": 27 + }, + "9": { + "best": { + "word": "cierpkość", + "letters": 31 + }, + "worst": { + "word": "cierpkość", + "letters": 31 + }, + "totalWords": { + "3": 1 + }, + "totalLetters": { + "31": 1 + }, + "gamesPlayed": 1, + "medianWords": 3, + "medianLetters": 31 + }, + "11": { + "best": { + "word": "przyczepa", + "letters": 24 + }, + "worst": { + "word": "celibat", + "letters": 37 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 1 + }, + "totalLetters": { + "24": 1, + "25": 1, + "29": 1, + "37": 1 + }, + "gamesPlayed": 4, + "medianWords": 2.5, + "medianLetters": 27 + }, + "12": { + "best": { + "word": "brąz", + "letters": 19 + }, + "worst": { + "word": "target", + "letters": 40 + }, + "totalWords": { + "2": 3, + "3": 3, + "5": 1 + }, + "totalLetters": { + "19": 1, + "20": 1, + "22": 1, + "28": 2, + "30": 1, + "40": 1 + }, + "gamesPlayed": 7, + "medianWords": 3, + "medianLetters": 28 + }, + "year": { + "best": { + "word": "guma", + "letters": 19 + }, + "worst": { + "word": "pisemnie", + "letters": 52 + }, + "totalWords": { + "2": 10, + "3": 18, + "4": 6, + "5": 2, + "8": 1 + }, + "totalLetters": { + "19": 4, + "20": 3, + "21": 1, + "22": 1, + "24": 1, + "25": 3, + "26": 2, + "27": 4, + "28": 2, + "29": 3, + "30": 2, + "31": 5, + "35": 1, + "37": 1, + "39": 1, + "40": 1, + "44": 1, + "52": 1 + }, + "gamesPlayed": 37, + "medianWords": 3, + "medianLetters": 27 + } + }, + "dates": { + "2": [ + "01.12.2025" + ], + "12": [ + "01.12.2025" + ], + "year": [ + "01.12.2025" + ] + }, + "worstDates": { + "3": [ + "13.03.2025" + ], + "year": [ + "13.03.2025" + ] + } + }, + "Sorokawojcie.ch": { + "best50": { + "best": { + "word": "unia", + "letters": 13 + }, + "worst": { + "word": "drzazga", + "letters": 27 + }, + "totalWords": { + "2": 8, + "3": 32, + "4": 10 + }, + "totalLetters": { + "13": 1, + "15": 2, + "16": 1, + "17": 3, + "18": 1, + "19": 2, + "20": 2, + "21": 4, + "22": 5, + "23": 8, + "24": 5, + "25": 3, + "26": 9, + "27": 4 + }, + "gamesPlayed": 50, + "medianWords": 2.5, + "medianLetters": 22.5 + }, + "results": { + "1": { + "best": { + "word": "impas", + "letters": 15 + }, + "worst": { + "word": "lewitować", + "letters": 45 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 2, + "6": 1 + }, + "totalLetters": { + "15": 1, + "23": 1, + "24": 1, + "25": 1, + "26": 3, + "27": 1, + "45": 1 + }, + "gamesPlayed": 9, + "medianWords": 3, + "medianLetters": 26 + }, + "2": { + "best": { + "word": "psuć", + "letters": 19 + }, + "worst": { + "word": "rogówka", + "letters": 52 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 5, + "5": 3, + "7": 1 + }, + "totalLetters": { + "19": 1, + "20": 1, + "23": 1, + "27": 3, + "29": 1, + "31": 2, + "32": 1, + "33": 1, + "34": 1, + "37": 1, + "52": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 30 + }, + "3": { + "best": { + "word": "pikap", + "letters": 17 + }, + "worst": { + "word": "zawzięty", + "letters": 44 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 5, + "5": 2, + "6": 3 + }, + "totalLetters": { + "17": 1, + "21": 1, + "22": 1, + "23": 1, + "26": 2, + "27": 1, + "30": 1, + "31": 1, + "33": 3, + "37": 1, + "39": 1, + "44": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 30 + }, + "4": { + "best": { + "word": "order", + "letters": 17 + }, + "worst": { + "word": "agitator", + "letters": 31 + }, + "totalWords": { + "2": 1, + "3": 10, + "4": 6, + "5": 1 + }, + "totalLetters": { + "17": 2, + "18": 1, + "21": 1, + "22": 1, + "23": 3, + "24": 3, + "26": 1, + "27": 1, + "28": 1, + "29": 1, + "30": 1, + "31": 2 + }, + "gamesPlayed": 18, + "medianWords": 2.5, + "medianLetters": 23.5 + }, + "5": { + "best": { + "word": "powód", + "letters": 16 + }, + "worst": { + "word": "szwab", + "letters": 33 + }, + "totalWords": { + "2": 1, + "3": 8, + "4": 2, + "5": 2, + "6": 1 + }, + "totalLetters": { + "16": 1, + "19": 1, + "21": 1, + "22": 3, + "23": 1, + "24": 1, + "25": 2, + "28": 1, + "30": 1, + "32": 1, + "33": 1 + }, + "gamesPlayed": 14, + "medianWords": 2.5, + "medianLetters": 23.5 + }, + "6": { + "best": { + "word": "trupa", + "letters": 20 + }, + "worst": { + "word": "skrywać", + "letters": 39 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 3, + "5": 1, + "6": 1 + }, + "totalLetters": { + "20": 1, + "21": 1, + "26": 1, + "29": 1, + "31": 1, + "32": 1, + "35": 1, + "39": 1 + }, + "gamesPlayed": 8, + "medianWords": 3.5, + "medianLetters": 30 + }, + "7": { + "best": { + "word": "unia", + "letters": 13 + }, + "worst": { + "word": "wymuszać", + "letters": 40 + }, + "totalWords": { + "2": 2, + "3": 1, + "4": 2, + "5": 1, + "6": 1 + }, + "totalLetters": { + "13": 1, + "15": 1, + "23": 1, + "26": 1, + "29": 1, + "37": 1, + "40": 1 + }, + "gamesPlayed": 7, + "medianWords": 4, + "medianLetters": 26 + }, + "9": { + "best": { + "word": "trefl", + "letters": 28 + }, + "worst": { + "word": "trefl", + "letters": 28 + }, + "totalWords": { + "4": 1, + "5": 1 + }, + "totalLetters": { + "28": 2 + }, + "gamesPlayed": 2, + "medianWords": 4.5, + "medianLetters": 28 + }, + "10": { + "best": { + "word": "żwirownia", + "letters": 26 + }, + "worst": { + "word": "żwirownia", + "letters": 26 + }, + "totalWords": { + "3": 1 + }, + "totalLetters": { + "26": 1 + }, + "gamesPlayed": 1, + "medianWords": 3, + "medianLetters": 26 + }, + "year": { + "best": { + "word": "unia", + "letters": 13 + }, + "worst": { + "word": "rogówka", + "letters": 52 + }, + "totalWords": { + "2": 8, + "3": 35, + "4": 26, + "5": 11, + "6": 7, + "7": 1 + }, + "totalLetters": { + "13": 1, + "15": 2, + "16": 1, + "17": 3, + "18": 1, + "19": 2, + "20": 2, + "21": 4, + "22": 5, + "23": 8, + "24": 5, + "25": 3, + "26": 9, + "27": 6, + "28": 4, + "29": 4, + "30": 3, + "31": 6, + "32": 3, + "33": 5, + "34": 1, + "35": 1, + "37": 3, + "39": 2, + "40": 1, + "44": 1, + "45": 1, + "52": 1 + }, + "gamesPlayed": 88, + "medianWords": 3.5, + "medianLetters": 25.5 + } + }, + "dates": { + "1": [ + "10.01.2025" + ], + "2": [ + "18.02.2025" + ], + "3": [ + "18.03.2025" + ], + "4": [ + "09.04.2025", + "16.04.2025" + ], + "5": [ + "26.05.2025" + ], + "7": [ + "25.07.2025", + "22.07.2025" + ], + "year": [ + "18.02.2025", + "18.03.2025", + "10.01.2025", + "09.04.2025", + "16.04.2025", + "26.05.2025", + "25.07.2025", + "22.07.2025" + ] + }, + "worstDates": { + "2": [ + "06.02.2025" + ], + "5": [ + "28.05.2025" + ], + "year": [ + "06.02.2025", + "28.05.2025" + ] + } + }, + "Szuuz_Ekleer": { + "results": { + "2": { + "best": { + "word": "rotunda", + "letters": 22 + }, + "worst": { + "word": "igrać", + "letters": 26 + }, + "totalWords": { + "3": 2, + "4": 1 + }, + "totalLetters": { + "22": 1, + "23": 1, + "26": 1 + }, + "gamesPlayed": 3, + "medianWords": 3, + "medianLetters": 23 + }, + "3": { + "best": { + "word": "brać", + "letters": 21 + }, + "worst": { + "word": "brać", + "letters": 21 + }, + "totalWords": { + "4": 1 + }, + "totalLetters": { + "21": 1 + }, + "gamesPlayed": 1, + "medianWords": 4, + "medianLetters": 21 + }, + "4": { + "best": { + "word": "anestezja", + "letters": 25 + }, + "worst": { + "word": "anestezja", + "letters": 25 + }, + "totalWords": { + "3": 1 + }, + "totalLetters": { + "25": 1 + }, + "gamesPlayed": 1, + "medianWords": 3, + "medianLetters": 25 + }, + "5": { + "best": { + "word": "radiowy", + "letters": 23 + }, + "worst": { + "word": "wojna", + "letters": 35 + }, + "totalWords": { + "3": 1, + "6": 1 + }, + "totalLetters": { + "23": 1, + "35": 1 + }, + "gamesPlayed": 2, + "medianWords": 4.5, + "medianLetters": 29 + }, + "6": { + "best": { + "word": "wizja", + "letters": 33 + }, + "worst": { + "word": "wizja", + "letters": 33 + }, + "totalWords": { + "6": 1 + }, + "totalLetters": { + "33": 1 + }, + "gamesPlayed": 1, + "medianWords": 6, + "medianLetters": 33 + }, + "9": { + "best": { + "word": "kadra", + "letters": 24 + }, + "worst": { + "word": "mokro", + "letters": 27 + }, + "totalWords": { + "4": 2 + }, + "totalLetters": { + "24": 1, + "27": 1 + }, + "gamesPlayed": 2, + "medianWords": 4, + "medianLetters": 25.5 + }, + "12": { + "best": { + "word": "nurek", + "letters": 14 + }, + "worst": { + "word": "nurek", + "letters": 14 + }, + "totalWords": { + "2": 1 + }, + "totalLetters": { + "14": 1 + }, + "gamesPlayed": 1, + "medianWords": 2, + "medianLetters": 14 + }, + "year": { + "best": { + "word": "nurek", + "letters": 14 + }, + "worst": { + "word": "wojna", + "letters": 35 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 4, + "6": 2 + }, + "totalLetters": { + "14": 1, + "21": 1, + "22": 1, + "23": 2, + "24": 1, + "25": 1, + "26": 1, + "27": 1, + "33": 1, + "35": 1 + }, + "gamesPlayed": 11, + "medianWords": 4, + "medianLetters": 24 + } + }, + "dates": { + "2": [ + "04.12.2025" + ], + "12": [ + "04.12.2025" + ], + "year": [ + "04.12.2025" + ] + }, + "worstDates": { + "5": [ + "16.05.2025" + ], + "6": [ + "05.06.2025" + ], + "year": [ + "16.05.2025", + "05.06.2025" + ] + } + }, + "the_moon": { + "best50": { + "best": { + "word": "ganić", + "letters": 14 + }, + "worst": { + "word": "dowództwo", + "letters": 26 + }, + "totalWords": { + "2": 19, + "3": 29, + "4": 2 + }, + "totalLetters": { + "14": 2, + "15": 2, + "16": 3, + "17": 4, + "18": 5, + "19": 2, + "20": 6, + "21": 8, + "22": 1, + "23": 5, + "24": 6, + "25": 2, + "26": 4 + }, + "gamesPlayed": 50, + "medianWords": 2.5, + "medianLetters": 20.5 + }, + "results": { + "1": { + "best": { + "word": "katalog", + "letters": 23 + }, + "worst": { + "word": "katalog", + "letters": 23 + }, + "totalWords": { + "3": 1 + }, + "totalLetters": { + "23": 1 + }, + "gamesPlayed": 1, + "medianWords": 3, + "medianLetters": 23 + }, + "2": { + "best": { + "word": "ganić", + "letters": 14 + }, + "worst": { + "word": "szatniarz", + "letters": 26 + }, + "totalWords": { + "2": 1, + "3": 2 + }, + "totalLetters": { + "14": 1, + "21": 1, + "26": 1 + }, + "gamesPlayed": 3, + "medianWords": 3, + "medianLetters": 21 + }, + "3": { + "best": { + "word": "znawca", + "letters": 15 + }, + "worst": { + "word": "pisemnie", + "letters": 31 + }, + "totalWords": { + "2": 2, + "3": 5, + "4": 2 + }, + "totalLetters": { + "15": 1, + "16": 1, + "18": 2, + "20": 1, + "21": 2, + "26": 1, + "31": 1 + }, + "gamesPlayed": 9, + "medianWords": 3, + "medianLetters": 20 + }, + "4": { + "best": { + "word": "wydatek", + "letters": 18 + }, + "worst": { + "word": "dosłownie", + "letters": 34 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 2 + }, + "totalLetters": { + "18": 1, + "21": 1, + "24": 1, + "27": 1, + "28": 2, + "32": 1, + "34": 1 + }, + "gamesPlayed": 8, + "medianWords": 2.5, + "medianLetters": 27.5 + }, + "5": { + "best": { + "word": "szwab", + "letters": 14 + }, + "worst": { + "word": "spalanie", + "letters": 26 + }, + "totalWords": { + "2": 2, + "3": 10 + }, + "totalLetters": { + "14": 1, + "20": 2, + "21": 3, + "22": 1, + "23": 3, + "25": 1, + "26": 1 + }, + "gamesPlayed": 12, + "medianWords": 2.5, + "medianLetters": 21.5 + }, + "6": { + "best": { + "word": "wizja", + "letters": 20 + }, + "worst": { + "word": "plwocina", + "letters": 33 + }, + "totalWords": { + "3": 2, + "4": 1 + }, + "totalLetters": { + "20": 1, + "23": 1, + "33": 1 + }, + "gamesPlayed": 3, + "medianWords": 3, + "medianLetters": 23 + }, + "7": { + "best": { + "word": "rydz", + "letters": 15 + }, + "worst": { + "word": "bowiem", + "letters": 21 + }, + "totalWords": { + "2": 2, + "3": 1 + }, + "totalLetters": { + "15": 1, + "17": 1, + "21": 1 + }, + "gamesPlayed": 3, + "medianWords": 2, + "medianLetters": 17 + }, + "8": { + "best": { + "word": "zakon", + "letters": 16 + }, + "worst": { + "word": "zdrowotny", + "letters": 25 + }, + "totalWords": { + "2": 2, + "3": 3 + }, + "totalLetters": { + "16": 1, + "19": 1, + "24": 2, + "25": 1 + }, + "gamesPlayed": 5, + "medianWords": 3, + "medianLetters": 24 + }, + "9": { + "best": { + "word": "tanio", + "letters": 16 + }, + "worst": { + "word": "lobbing", + "letters": 29 + }, + "totalWords": { + "2": 2, + "3": 1, + "4": 1 + }, + "totalLetters": { + "16": 1, + "17": 1, + "28": 1, + "29": 1 + }, + "gamesPlayed": 4, + "medianWords": 2.5, + "medianLetters": 22.5 + }, + "10": { + "best": { + "word": "drink", + "letters": 17 + }, + "worst": { + "word": "gliniarz", + "letters": 28 + }, + "totalWords": { + "2": 4, + "3": 2, + "4": 1 + }, + "totalLetters": { + "17": 1, + "19": 1, + "20": 2, + "24": 2, + "28": 1 + }, + "gamesPlayed": 7, + "medianWords": 2, + "medianLetters": 20 + }, + "11": { + "best": { + "word": "osada", + "letters": 17 + }, + "worst": { + "word": "kremacja", + "letters": 26 + }, + "totalWords": { + "2": 3, + "3": 2 + }, + "totalLetters": { + "17": 1, + "18": 2, + "24": 1, + "26": 1 + }, + "gamesPlayed": 5, + "medianWords": 2, + "medianLetters": 18 + }, + "year": { + "best": { + "word": "ganić", + "letters": 14 + }, + "worst": { + "word": "dosłownie", + "letters": 34 + }, + "totalWords": { + "2": 19, + "3": 34, + "4": 7 + }, + "totalLetters": { + "14": 2, + "15": 2, + "16": 3, + "17": 4, + "18": 5, + "19": 2, + "20": 6, + "21": 8, + "22": 1, + "23": 5, + "24": 6, + "25": 2, + "26": 4, + "27": 1, + "28": 4, + "29": 1, + "31": 1, + "32": 1, + "33": 1, + "34": 1 + }, + "gamesPlayed": 60, + "medianWords": 2.5, + "medianLetters": 20.5 + } + }, + "dates": { + "1": [ + "29.11.2025" + ], + "2": [ + "14.02.2025" + ], + "3": [ + "20.03.2025", + "06.03.2025" + ], + "5": [ + "28.05.2025" + ], + "7": [ + "31.07.2025" + ], + "10": [ + "04.10.2025", + "05.10.2025" + ], + "11": [ + "29.11.2025" + ], + "year": [ + "20.03.2025", + "06.03.2025", + "14.02.2025", + "28.05.2025", + "31.07.2025", + "04.10.2025", + "29.11.2025", + "05.10.2025" + ] + }, + "worstDates": { + "year": [] + } + }, + "User": { + "best50": { + "best": { + "word": "piec", + "letters": 15 + }, + "worst": { + "word": "żonglować", + "letters": 31 + }, + "totalWords": { + "2": 19, + "3": 29, + "4": 1, + "5": 1 + }, + "totalLetters": { + "15": 3, + "16": 1, + "17": 4, + "18": 1, + "19": 4, + "20": 4, + "21": 3, + "22": 4, + "23": 5, + "24": 2, + "25": 2, + "27": 6, + "28": 5, + "30": 2, + "31": 4 + }, + "gamesPlayed": 50, + "medianWords": 2.5, + "medianLetters": 22.5 + }, + "results": { + "2": { + "best": { + "word": "pierwsza", + "letters": 19 + }, + "worst": { + "word": "pierwsza", + "letters": 19 + }, + "totalWords": { + "2": 1 + }, + "totalLetters": { + "19": 1 + }, + "gamesPlayed": 1, + "medianWords": 2, + "medianLetters": 19 + }, + "3": { + "best": { + "word": "pisemnie", + "letters": 19 + }, + "worst": { + "word": "dziać", + "letters": 22 + }, + "totalWords": { + "2": 2, + "3": 1 + }, + "totalLetters": { + "19": 1, + "21": 1, + "22": 1 + }, + "gamesPlayed": 3, + "medianWords": 2, + "medianLetters": 21 + }, + "4": { + "best": { + "word": "meduza", + "letters": 17 + }, + "worst": { + "word": "czapla", + "letters": 24 + }, + "totalWords": { + "2": 1, + "3": 2 + }, + "totalLetters": { + "17": 1, + "24": 2 + }, + "gamesPlayed": 3, + "medianWords": 3, + "medianLetters": 24 + }, + "5": { + "best": { + "word": "zderzak", + "letters": 18 + }, + "worst": { + "word": "zderzak", + "letters": 18 + }, + "totalWords": { + "2": 1 + }, + "totalLetters": { + "18": 1 + }, + "gamesPlayed": 1, + "medianWords": 2, + "medianLetters": 18 + }, + "6": { + "best": { + "word": "trupa", + "letters": 16 + }, + "worst": { + "word": "ferma", + "letters": 21 + }, + "totalWords": { + "2": 3, + "3": 1 + }, + "totalLetters": { + "16": 1, + "19": 1, + "20": 1, + "21": 1 + }, + "gamesPlayed": 4, + "medianWords": 2, + "medianLetters": 19.5 + }, + "7": { + "best": { + "word": "grdyka", + "letters": 17 + }, + "worst": { + "word": "żonglować", + "letters": 31 + }, + "totalWords": { + "2": 2, + "3": 5 + }, + "totalLetters": { + "17": 1, + "20": 1, + "25": 1, + "28": 3, + "31": 1 + }, + "gamesPlayed": 7, + "medianWords": 3, + "medianLetters": 28 + }, + "8": { + "best": { + "word": "koza", + "letters": 20 + }, + "worst": { + "word": "sekundant", + "letters": 28 + }, + "totalWords": { + "3": 2 + }, + "totalLetters": { + "20": 1, + "28": 1 + }, + "gamesPlayed": 2, + "medianWords": 3, + "medianLetters": 24 + }, + "9": { + "best": { + "word": "peruka", + "letters": 17 + }, + "worst": { + "word": "wieszczyć", + "letters": 22 + }, + "totalWords": { + "2": 3 + }, + "totalLetters": { + "17": 1, + "19": 1, + "22": 1 + }, + "gamesPlayed": 3, + "medianWords": 2, + "medianLetters": 19 + }, + "10": { + "best": { + "word": "plamka", + "letters": 17 + }, + "worst": { + "word": "przenikać", + "letters": 60 + }, + "totalWords": { + "2": 2, + "3": 5, + "4": 1, + "5": 1, + "6": 1 + }, + "totalLetters": { + "17": 1, + "22": 1, + "23": 1, + "25": 1, + "27": 1, + "30": 1, + "31": 2, + "35": 1, + "60": 1 + }, + "gamesPlayed": 10, + "medianWords": 2.5, + "medianLetters": 28.5 + }, + "11": { + "best": { + "word": "piec", + "letters": 15 + }, + "worst": { + "word": "wyrosnąć", + "letters": 35 + }, + "totalWords": { + "2": 2, + "3": 6, + "4": 1, + "5": 1 + }, + "totalLetters": { + "15": 1, + "20": 1, + "23": 1, + "27": 4, + "30": 1, + "32": 1, + "35": 1 + }, + "gamesPlayed": 10, + "medianWords": 2.5, + "medianLetters": 25 + }, + "12": { + "best": { + "word": "mile", + "letters": 15 + }, + "worst": { + "word": "zaufanie", + "letters": 52 + }, + "totalWords": { + "2": 2, + "3": 7, + "4": 1, + "5": 1, + "6": 1 + }, + "totalLetters": { + "15": 2, + "21": 1, + "22": 1, + "23": 3, + "27": 1, + "28": 1, + "31": 1, + "32": 1, + "52": 1 + }, + "gamesPlayed": 12, + "medianWords": 2.5, + "medianLetters": 22.5 + }, + "year": { + "best": { + "word": "piec", + "letters": 15 + }, + "worst": { + "word": "przenikać", + "letters": 60 + }, + "totalWords": { + "2": 19, + "3": 29, + "4": 3, + "5": 3, + "6": 2 + }, + "totalLetters": { + "15": 3, + "16": 1, + "17": 4, + "18": 1, + "19": 4, + "20": 4, + "21": 3, + "22": 4, + "23": 5, + "24": 2, + "25": 2, + "27": 6, + "28": 5, + "30": 2, + "31": 4, + "32": 2, + "35": 2, + "52": 1, + "60": 1 + }, + "gamesPlayed": 56, + "medianWords": 2.5, + "medianLetters": 22.5 + } + }, + "dates": { + "1": [ + "20.11.2025" + ], + "3": [ + "13.03.2025" + ], + "6": [ + "30.06.2025", + "27.06.2025" + ], + "7": [ + "14.07.2025" + ], + "9": [ + "25.09.2025" + ], + "10": [ + "28.10.2025" + ], + "11": [ + "20.11.2025" + ], + "year": [ + "13.03.2025", + "25.09.2025", + "30.06.2025", + "27.06.2025", + "14.07.2025", + "20.11.2025", + "28.10.2025" + ] + }, + "worstDates": { + "year": [] + } + }, + "Swbd": { + "results": { + "3": { + "best": { + "word": "drzazga", + "letters": 18 + }, + "worst": { + "word": "pisemnie", + "letters": 47 + }, + "totalWords": { + "3": 3, + "4": 4, + "5": 3, + "6": 1, + "9": 1 + }, + "totalLetters": { + "18": 1, + "20": 1, + "21": 1, + "22": 1, + "24": 1, + "26": 1, + "29": 1, + "30": 1, + "31": 2, + "35": 1, + "47": 1 + }, + "gamesPlayed": 12, + "medianWords": 3.5, + "medianLetters": 27.5 + }, + "4": { + "best": { + "word": "miażdżyć", + "letters": 29 + }, + "worst": { + "word": "miażdżyć", + "letters": 29 + }, + "totalWords": { + "5": 1 + }, + "totalLetters": { + "29": 1 + }, + "gamesPlayed": 1, + "medianWords": 5, + "medianLetters": 29 + }, + "year": { + "best": { + "word": "drzazga", + "letters": 18 + }, + "worst": { + "word": "pisemnie", + "letters": 47 + }, + "totalWords": { + "3": 3, + "4": 4, + "5": 4, + "6": 1, + "9": 1 + }, + "totalLetters": { + "18": 1, + "20": 1, + "21": 1, + "22": 1, + "24": 1, + "26": 1, + "29": 2, + "30": 1, + "31": 2, + "35": 1, + "47": 1 + }, + "gamesPlayed": 13, + "medianWords": 4, + "medianLetters": 29 + } + }, + "dates": { + "3": [ + "17.03.2025" + ], + "year": [ + "17.03.2025" + ] + }, + "worstDates": { + "year": [] + } + }, + "ulsterboy": { + "results": { + "2": { + "best": { + "word": "polować", + "letters": 18 + }, + "worst": { + "word": "przepaść", + "letters": 44 + }, + "totalWords": { + "2": 1, + "3": 3, + "5": 1, + "6": 1 + }, + "totalLetters": { + "18": 1, + "22": 1, + "25": 1, + "28": 1, + "37": 1, + "44": 1 + }, + "gamesPlayed": 6, + "medianWords": 2.5, + "medianLetters": 26.5 + }, + "3": { + "best": { + "word": "umowa", + "letters": 37 + }, + "worst": { + "word": "umowa", + "letters": 37 + }, + "totalWords": { + "5": 1 + }, + "totalLetters": { + "37": 1 + }, + "gamesPlayed": 1, + "medianWords": 5, + "medianLetters": 37 + }, + "year": { + "best": { + "word": "polować", + "letters": 18 + }, + "worst": { + "word": "przepaść", + "letters": 44 + }, + "totalWords": { + "2": 1, + "3": 3, + "5": 2, + "6": 1 + }, + "totalLetters": { + "18": 1, + "22": 1, + "25": 1, + "28": 1, + "37": 2, + "44": 1 + }, + "gamesPlayed": 7, + "medianWords": 3, + "medianLetters": 28 + } + }, + "dates": { + "2": [ + "22.02.2025" + ], + "year": [ + "22.02.2025" + ] + }, + "worstDates": { + "year": [] + } + }, + "djsclub": { + "results": { + "1": { + "best": { + "word": "próbować", + "letters": 40 + }, + "worst": { + "word": "próbować", + "letters": 40 + }, + "totalWords": { + "7": 1 + }, + "totalLetters": { + "40": 1 + }, + "gamesPlayed": 1, + "medianWords": 7, + "medianLetters": 40 + }, + "8": { + "best": { + "word": "koza", + "letters": 12 + }, + "worst": { + "word": "sekundant", + "letters": 34 + }, + "totalWords": { + "2": 1, + "5": 1 + }, + "totalLetters": { + "12": 1, + "34": 1 + }, + "gamesPlayed": 2, + "medianWords": 3.5, + "medianLetters": 23 + }, + "year": { + "best": { + "word": "koza", + "letters": 12 + }, + "worst": { + "word": "próbować", + "letters": 40 + }, + "totalWords": { + "2": 1, + "5": 1, + "7": 1 + }, + "totalLetters": { + "12": 1, + "34": 1, + "40": 1 + }, + "gamesPlayed": 3, + "medianWords": 5, + "medianLetters": 34 + } + }, + "dates": { + "8": [ + "13.08.2025" + ], + "year": [ + "13.08.2025" + ] + }, + "worstDates": { + "year": [] + } + }, + "pingWIN": { + "results": { + "3": { + "best": { + "word": "guma", + "letters": 16 + }, + "worst": { + "word": "guma", + "letters": 16 + }, + "totalWords": { + "3": 1 + }, + "totalLetters": { + "16": 1 + }, + "gamesPlayed": 1, + "medianWords": 3, + "medianLetters": 16 + }, + "year": { + "best": { + "word": "guma", + "letters": 16 + }, + "worst": { + "word": "guma", + "letters": 16 + }, + "totalWords": { + "3": 1 + }, + "totalLetters": { + "16": 1 + }, + "gamesPlayed": 1, + "medianWords": 3, + "medianLetters": 16 + } + }, + "dates": { + "year": [] + }, + "worstDates": { + "year": [] + } + }, + "MarianTonczyk": { + "results": { + "1": { + "best": { + "word": "szaman", + "letters": 19 + }, + "worst": { + "word": "szaman", + "letters": 19 + }, + "totalWords": { + "3": 1 + }, + "totalLetters": { + "19": 1 + }, + "gamesPlayed": 1, + "medianWords": 3, + "medianLetters": 19 + }, + "year": { + "best": { + "word": "szaman", + "letters": 19 + }, + "worst": { + "word": "szaman", + "letters": 19 + }, + "totalWords": { + "3": 1 + }, + "totalLetters": { + "19": 1 + }, + "gamesPlayed": 1, + "medianWords": 3, + "medianLetters": 19 + } + }, + "dates": { + "1": [ + "11.01.2025" + ], + "year": [ + "11.01.2025" + ] + }, + "worstDates": { + "year": [] + } + }, + "hapaczuri": { + "results": { + "3": { + "best": { + "word": "hinduista", + "letters": 92 + }, + "worst": { + "word": "hinduista", + "letters": 92 + }, + "totalWords": { + "15": 1 + }, + "totalLetters": { + "92": 1 + }, + "gamesPlayed": 1, + "medianWords": 15, + "medianLetters": 92 + }, + "4": { + "best": { + "word": "order", + "letters": 25 + }, + "worst": { + "word": "miażdżyć", + "letters": 35 + }, + "totalWords": { + "3": 1, + "4": 2 + }, + "totalLetters": { + "25": 2, + "35": 1 + }, + "gamesPlayed": 3, + "medianWords": 4, + "medianLetters": 25 + }, + "year": { + "best": { + "word": "order", + "letters": 25 + }, + "worst": { + "word": "hinduista", + "letters": 92 + }, + "totalWords": { + "3": 1, + "4": 2, + "15": 1 + }, + "totalLetters": { + "25": 2, + "35": 1, + "92": 1 + }, + "gamesPlayed": 4, + "medianWords": 3.5, + "medianLetters": 30 + } + }, + "dates": { + "year": [] + }, + "worstDates": { + "3": [ + "25.03.2025" + ], + "year": [ + "25.03.2025" + ] + } + }, + "capdev": { + "results": { + "4": { + "best": { + "word": "meduza", + "letters": 15 + }, + "worst": { + "word": "meduza", + "letters": 15 + }, + "totalWords": { + "2": 1 + }, + "totalLetters": { + "15": 1 + }, + "gamesPlayed": 1, + "medianWords": 2, + "medianLetters": 15 + }, + "year": { + "best": { + "word": "meduza", + "letters": 15 + }, + "worst": { + "word": "meduza", + "letters": 15 + }, + "totalWords": { + "2": 1 + }, + "totalLetters": { + "15": 1 + }, + "gamesPlayed": 1, + "medianWords": 2, + "medianLetters": 15 + } + }, + "dates": { + "4": [ + "15.04.2025" + ], + "year": [ + "15.04.2025" + ] + }, + "worstDates": { + "year": [] + } + }, + "Prezes_Kozlowski": { + "results": { + "4": { + "best": { + "word": "czapla", + "letters": 21 + }, + "worst": { + "word": "czapla", + "letters": 21 + }, + "totalWords": { + "2": 1 + }, + "totalLetters": { + "21": 1 + }, + "gamesPlayed": 1, + "medianWords": 2, + "medianLetters": 21 + }, + "year": { + "best": { + "word": "czapla", + "letters": 21 + }, + "worst": { + "word": "czapla", + "letters": 21 + }, + "totalWords": { + "2": 1 + }, + "totalLetters": { + "21": 1 + }, + "gamesPlayed": 1, + "medianWords": 2, + "medianLetters": 21 + } + }, + "dates": { + "year": [] + }, + "worstDates": { + "year": [] + } + }, + "gedzior84": { + "best50": { + "best": { + "word": "wciąż", + "letters": 14 + }, + "worst": { + "word": "bunkier", + "letters": 24 + }, + "totalWords": { + "2": 14, + "3": 32, + "4": 4 + }, + "totalLetters": { + "14": 2, + "15": 4, + "16": 4, + "17": 1, + "18": 4, + "19": 8, + "20": 4, + "21": 6, + "22": 6, + "23": 3, + "24": 8 + }, + "gamesPlayed": 50, + "medianWords": 2.5, + "medianLetters": 19.5 + }, + "results": { + "4": { + "best": { + "word": "patka", + "letters": 27 + }, + "worst": { + "word": "eskadra", + "letters": 28 + }, + "totalWords": { + "4": 1, + "5": 1 + }, + "totalLetters": { + "27": 1, + "28": 1 + }, + "gamesPlayed": 2, + "medianWords": 4.5, + "medianLetters": 27.5 + }, + "5": { + "best": { + "word": "jarzmo", + "letters": 20 + }, + "worst": { + "word": "jarzmo", + "letters": 20 + }, + "totalWords": { + "3": 1 + }, + "totalLetters": { + "20": 1 + }, + "gamesPlayed": 1, + "medianWords": 3, + "medianLetters": 20 + }, + "6": { + "best": { + "word": "trupa", + "letters": 15 + }, + "worst": { + "word": "podoficer", + "letters": 61 + }, + "totalWords": { + "2": 2, + "3": 8, + "4": 1, + "5": 2, + "9": 1 + }, + "totalLetters": { + "15": 1, + "16": 1, + "20": 1, + "23": 1, + "24": 2, + "25": 1, + "27": 1, + "30": 1, + "31": 1, + "32": 1, + "35": 1, + "40": 1, + "61": 1 + }, + "gamesPlayed": 14, + "medianWords": 2.5, + "medianLetters": 26 + }, + "7": { + "best": { + "word": "bekon", + "letters": 15 + }, + "worst": { + "word": "żonglować", + "letters": 48 + }, + "totalWords": { + "2": 4, + "3": 5, + "4": 8, + "5": 4, + "6": 2, + "7": 2 + }, + "totalLetters": { + "15": 1, + "16": 1, + "18": 1, + "19": 1, + "22": 2, + "25": 1, + "26": 1, + "27": 1, + "28": 2, + "29": 2, + "31": 1, + "32": 3, + "33": 2, + "34": 1, + "35": 1, + "36": 1, + "39": 1, + "44": 1, + "48": 1 + }, + "gamesPlayed": 25, + "medianWords": 4, + "medianLetters": 29 + }, + "8": { + "best": { + "word": "parsek", + "letters": 16 + }, + "worst": { + "word": "stracenie", + "letters": 49 + }, + "totalWords": { + "2": 2, + "3": 6, + "4": 8, + "5": 3, + "6": 2, + "7": 1, + "8": 1 + }, + "totalLetters": { + "16": 1, + "17": 1, + "19": 2, + "21": 1, + "24": 1, + "25": 3, + "26": 2, + "27": 1, + "28": 1, + "29": 1, + "30": 2, + "31": 1, + "32": 1, + "34": 1, + "36": 1, + "42": 1, + "48": 1, + "49": 1 + }, + "gamesPlayed": 23, + "medianWords": 4, + "medianLetters": 27 + }, + "9": { + "best": { + "word": "wciąż", + "letters": 14 + }, + "worst": { + "word": "karmiciel", + "letters": 45 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 8, + "5": 3, + "6": 4 + }, + "totalLetters": { + "14": 1, + "19": 2, + "20": 1, + "21": 1, + "22": 1, + "24": 2, + "25": 1, + "26": 1, + "27": 1, + "28": 1, + "30": 1, + "31": 2, + "33": 1, + "35": 2, + "36": 1, + "43": 1, + "45": 1 + }, + "gamesPlayed": 21, + "medianWords": 4, + "medianLetters": 27 + }, + "10": { + "best": { + "word": "łupież", + "letters": 15 + }, + "worst": { + "word": "lesbijski", + "letters": 48 + }, + "totalWords": { + "2": 1, + "3": 7, + "4": 11, + "5": 3, + "6": 1, + "7": 1, + "9": 1 + }, + "totalLetters": { + "15": 1, + "18": 2, + "22": 1, + "23": 1, + "24": 1, + "25": 3, + "26": 1, + "27": 1, + "30": 4, + "31": 2, + "34": 1, + "35": 1, + "36": 1, + "37": 1, + "38": 1, + "39": 1, + "43": 1, + "48": 1 + }, + "gamesPlayed": 25, + "medianWords": 4, + "medianLetters": 30 + }, + "11": { + "best": { + "word": "ząbek", + "letters": 14 + }, + "worst": { + "word": "przyczepa", + "letters": 48 + }, + "totalWords": { + "2": 3, + "3": 10, + "4": 4, + "5": 1, + "6": 5, + "8": 1 + }, + "totalLetters": { + "14": 1, + "16": 1, + "19": 1, + "20": 1, + "21": 2, + "22": 2, + "23": 1, + "24": 2, + "25": 3, + "27": 2, + "32": 1, + "33": 2, + "34": 1, + "39": 1, + "45": 1, + "48": 2 + }, + "gamesPlayed": 24, + "medianWords": 2.5, + "medianLetters": 24.5 + }, + "12": { + "best": { + "word": "falset", + "letters": 15 + }, + "worst": { + "word": "zaufanie", + "letters": 48 + }, + "totalWords": { + "2": 1, + "3": 7, + "4": 3, + "5": 3, + "6": 2 + }, + "totalLetters": { + "15": 1, + "18": 1, + "19": 2, + "21": 2, + "26": 2, + "27": 1, + "28": 1, + "29": 2, + "31": 1, + "34": 1, + "36": 1, + "48": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 26.5 + }, + "year": { + "best": { + "word": "wciąż", + "letters": 14 + }, + "worst": { + "word": "podoficer", + "letters": 61 + }, + "totalWords": { + "2": 14, + "3": 49, + "4": 44, + "5": 20, + "6": 16, + "7": 4, + "8": 2, + "9": 2 + }, + "totalLetters": { + "14": 2, + "15": 4, + "16": 4, + "17": 1, + "18": 4, + "19": 8, + "20": 4, + "21": 6, + "22": 6, + "23": 3, + "24": 8, + "25": 12, + "26": 7, + "27": 9, + "28": 6, + "29": 5, + "30": 8, + "31": 8, + "32": 6, + "33": 5, + "34": 5, + "35": 5, + "36": 5, + "37": 1, + "38": 1, + "39": 3, + "40": 1, + "42": 1, + "43": 2, + "44": 1, + "45": 2, + "48": 6, + "49": 1, + "61": 1 + }, + "gamesPlayed": 151, + "medianWords": 4, + "medianLetters": 27 + } + }, + "dates": { + "1": [ + "11.11.2025", + "19.11.2025" + ], + "2": [ + "19.12.2025", + "10.12.2025" + ], + "6": [ + "24.06.2025", + "16.06.2025" + ], + "7": [ + "04.07.2025", + "17.07.2025", + "28.07.2025", + "09.07.2025" + ], + "8": [ + "04.08.2025" + ], + "9": [ + "02.09.2025" + ], + "10": [ + "02.10.2025", + "13.10.2025" + ], + "11": [ + "11.11.2025", + "19.11.2025" + ], + "12": [ + "19.12.2025", + "10.12.2025" + ], + "year": [ + "04.07.2025", + "17.07.2025", + "28.07.2025", + "09.07.2025", + "24.06.2025", + "02.09.2025", + "04.08.2025", + "16.06.2025", + "02.10.2025", + "11.11.2025", + "19.12.2025", + "10.12.2025", + "19.11.2025", + "13.10.2025" + ] + }, + "worstDates": { + "1": [ + "14.11.2025", + "16.11.2025" + ], + "6": [ + "17.06.2025", + "19.06.2025", + "26.06.2025" + ], + "7": [ + "19.07.2025" + ], + "8": [ + "06.08.2025" + ], + "9": [ + "29.09.2025" + ], + "10": [ + "16.10.2025" + ], + "11": [ + "14.11.2025", + "16.11.2025" + ], + "year": [ + "17.06.2025", + "29.09.2025", + "19.06.2025", + "06.08.2025", + "26.06.2025", + "19.07.2025", + "14.11.2025", + "16.10.2025", + "16.11.2025" + ] + } + }, + "Tomekku": { + "results": { + "5": { + "best": { + "word": "moher", + "letters": 20 + }, + "worst": { + "word": "wojna", + "letters": 32 + }, + "totalWords": { + "3": 1, + "4": 1, + "5": 1 + }, + "totalLetters": { + "20": 1, + "27": 1, + "32": 1 + }, + "gamesPlayed": 3, + "medianWords": 4, + "medianLetters": 27 + }, + "year": { + "best": { + "word": "moher", + "letters": 20 + }, + "worst": { + "word": "wojna", + "letters": 32 + }, + "totalWords": { + "3": 1, + "4": 1, + "5": 1 + }, + "totalLetters": { + "20": 1, + "27": 1, + "32": 1 + }, + "gamesPlayed": 3, + "medianWords": 4, + "medianLetters": 27 + } + }, + "dates": { + "year": [] + }, + "worstDates": { + "5": [ + "21.05.2025" + ], + "year": [ + "21.05.2025" + ] + } + }, + "Peregrin": { + "results": { + "6": { + "best": { + "word": "bunkier", + "letters": 21 + }, + "worst": { + "word": "bunkier", + "letters": 21 + }, + "totalWords": { + "2": 1 + }, + "totalLetters": { + "21": 1 + }, + "gamesPlayed": 1, + "medianWords": 2, + "medianLetters": 21 + }, + "year": { + "best": { + "word": "bunkier", + "letters": 21 + }, + "worst": { + "word": "bunkier", + "letters": 21 + }, + "totalWords": { + "2": 1 + }, + "totalLetters": { + "21": 1 + }, + "gamesPlayed": 1, + "medianWords": 2, + "medianLetters": 21 + } + }, + "dates": { + "year": [] + }, + "worstDates": { + "year": [] + } + }, + "motokate": { + "results": { + "8": { + "best": { + "word": "spór", + "letters": 16 + }, + "worst": { + "word": "spór", + "letters": 16 + }, + "totalWords": { + "2": 1 + }, + "totalLetters": { + "16": 1 + }, + "gamesPlayed": 1, + "medianWords": 2, + "medianLetters": 16 + }, + "9": { + "best": { + "word": "pedofil", + "letters": 27 + }, + "worst": { + "word": "pedofil", + "letters": 27 + }, + "totalWords": { + "4": 1 + }, + "totalLetters": { + "27": 1 + }, + "gamesPlayed": 1, + "medianWords": 4, + "medianLetters": 27 + }, + "year": { + "best": { + "word": "spór", + "letters": 16 + }, + "worst": { + "word": "pedofil", + "letters": 27 + }, + "totalWords": { + "2": 1, + "4": 1 + }, + "totalLetters": { + "16": 1, + "27": 1 + }, + "gamesPlayed": 2, + "medianWords": 3, + "medianLetters": 21.5 + } + }, + "dates": { + "year": [] + }, + "worstDates": { + "year": [] + } + }, + "wojtasg": { + "results": { + "7": { + "best": { + "word": "trącić", + "letters": 21 + }, + "worst": { + "word": "trącić", + "letters": 21 + }, + "totalWords": { + "3": 1 + }, + "totalLetters": { + "21": 1 + }, + "gamesPlayed": 1, + "medianWords": 3, + "medianLetters": 21 + }, + "year": { + "best": { + "word": "trącić", + "letters": 21 + }, + "worst": { + "word": "trącić", + "letters": 21 + }, + "totalWords": { + "3": 1 + }, + "totalLetters": { + "21": 1 + }, + "gamesPlayed": 1, + "medianWords": 3, + "medianLetters": 21 + } + }, + "dates": { + "year": [] + }, + "worstDates": { + "year": [] + } + }, + "Calypso_Cluster": { + "results": { + "6": { + "best": { + "word": "skrywać", + "letters": 43 + }, + "worst": { + "word": "skrywać", + "letters": 43 + }, + "totalWords": { + "6": 1 + }, + "totalLetters": { + "43": 1 + }, + "gamesPlayed": 1, + "medianWords": 6, + "medianLetters": 43 + }, + "year": { + "best": { + "word": "skrywać", + "letters": 43 + }, + "worst": { + "word": "skrywać", + "letters": 43 + }, + "totalWords": { + "6": 1 + }, + "totalLetters": { + "43": 1 + }, + "gamesPlayed": 1, + "medianWords": 6, + "medianLetters": 43 + } + }, + "dates": { + "year": [] + }, + "worstDates": { + "year": [] + } + }, + "Atexor": { + "results": { + "9": { + "best": { + "word": "zaparcie", + "letters": 16 + }, + "worst": { + "word": "zaparcie", + "letters": 16 + }, + "totalWords": { + "2": 1 + }, + "totalLetters": { + "16": 1 + }, + "gamesPlayed": 1, + "medianWords": 2, + "medianLetters": 16 + }, + "12": { + "best": { + "word": "dżin", + "letters": 23 + }, + "worst": { + "word": "dżin", + "letters": 23 + }, + "totalWords": { + "4": 1 + }, + "totalLetters": { + "23": 1 + }, + "gamesPlayed": 1, + "medianWords": 4, + "medianLetters": 23 + }, + "year": { + "best": { + "word": "zaparcie", + "letters": 16 + }, + "worst": { + "word": "dżin", + "letters": 23 + }, + "totalWords": { + "2": 1, + "4": 1 + }, + "totalLetters": { + "16": 1, + "23": 1 + }, + "gamesPlayed": 2, + "medianWords": 3, + "medianLetters": 19.5 + } + }, + "dates": { + "9": [ + "09.09.2025" + ], + "year": [ + "09.09.2025" + ] + }, + "worstDates": { + "year": [] + } + }, + "nigdywzyciu": { + "results": { + "12": { + "best": { + "word": "szampon", + "letters": 18 + }, + "worst": { + "word": "falset", + "letters": 22 + }, + "totalWords": { + "2": 1, + "3": 1 + }, + "totalLetters": { + "18": 1, + "22": 1 + }, + "gamesPlayed": 2, + "medianWords": 2.5, + "medianLetters": 20 + }, + "year": { + "best": { + "word": "szampon", + "letters": 18 + }, + "worst": { + "word": "falset", + "letters": 22 + }, + "totalWords": { + "2": 1, + "3": 1 + }, + "totalLetters": { + "18": 1, + "22": 1 + }, + "gamesPlayed": 2, + "medianWords": 2.5, + "medianLetters": 20 + } + }, + "dates": { + "year": [] + }, + "worstDates": { + "year": [] + } + }, + "Bigos": { + "results": { + "11": { + "best": { + "word": "liczenie", + "letters": 33 + }, + "worst": { + "word": "liczenie", + "letters": 33 + }, + "totalWords": { + "4": 1 + }, + "totalLetters": { + "33": 1 + }, + "gamesPlayed": 1, + "medianWords": 4, + "medianLetters": 33 + }, + "year": { + "best": { + "word": "liczenie", + "letters": 33 + }, + "worst": { + "word": "liczenie", + "letters": 33 + }, + "totalWords": { + "4": 1 + }, + "totalLetters": { + "33": 1 + }, + "gamesPlayed": 1, + "medianWords": 4, + "medianLetters": 33 + } + }, + "dates": { + "year": [] + }, + "worstDates": { + "year": [] + } + }, + "tosiu": { + "results": { + "11": { + "best": { + "word": "tesla", + "letters": 36 + }, + "worst": { + "word": "przyczepa", + "letters": 46 + }, + "totalWords": { + "5": 2 + }, + "totalLetters": { + "36": 1, + "46": 1 + }, + "gamesPlayed": 2, + "medianWords": 5, + "medianLetters": 41 + }, + "year": { + "best": { + "word": "tesla", + "letters": 36 + }, + "worst": { + "word": "przyczepa", + "letters": 46 + }, + "totalWords": { + "5": 2 + }, + "totalLetters": { + "36": 1, + "46": 1 + }, + "gamesPlayed": 2, + "medianWords": 5, + "medianLetters": 41 + } + }, + "dates": { + "year": [] + }, + "worstDates": { + "year": [] + } + }, + "Romanzholandii": { + "results": { + "5": { + "best": { + "word": "topnienie", + "letters": 60 + }, + "worst": { + "word": "topnienie", + "letters": 60 + }, + "totalWords": { + "9": 1 + }, + "totalLetters": { + "60": 1 + }, + "gamesPlayed": 1, + "medianWords": 9, + "medianLetters": 60 + }, + "year": { + "best": { + "word": "topnienie", + "letters": 60 + }, + "worst": { + "word": "topnienie", + "letters": 60 + }, + "totalWords": { + "9": 1 + }, + "totalLetters": { + "60": 1 + }, + "gamesPlayed": 1, + "medianWords": 9, + "medianLetters": 60 + } + }, + "dates": { + "year": [] + }, + "worstDates": { + "5": [ + "06.05.2025" + ], + "year": [ + "06.05.2025" + ] + } + } + }, + "wordsByDates": { + "21.12.2025": "chanson", + "20.12.2025": "konać", + "19.12.2025": "target", + "18.12.2025": "brąz", + "17.12.2025": "lambda", + "16.12.2025": "szampon", + "15.12.2025": "mumia", + "14.12.2025": "lodowe", + "13.12.2025": "laufer", + "12.12.2025": "weselny", + "11.12.2025": "dżin", + "10.12.2025": "falset", + "09.12.2025": "mile", + "08.12.2025": "plon", + "07.12.2025": "wspaniały", + "06.12.2025": "odznaczać", + "05.12.2025": "obiecanki", + "04.12.2025": "nurek", + "03.12.2025": "żeremie", + "02.12.2025": "nobel", + "01.12.2025": "zaufanie", + "30.11.2025": "tesla", + "29.11.2025": "płciowy", + "28.11.2025": "odrobina", + "27.11.2025": "barion", + "26.11.2025": "celibat", + "25.11.2025": "choleryk", + "24.11.2025": "elektryk", + "23.11.2025": "różaniec", + "22.11.2025": "osada", + "21.11.2025": "restart", + "20.11.2025": "olbrzymka", + "19.11.2025": "liczenie", + "18.11.2025": "ronić", + "17.11.2025": "wyrosnąć", + "16.11.2025": "przyczepa", + "15.11.2025": "smar", + "14.11.2025": "piec", + "13.11.2025": "makaron", + "12.11.2025": "położna", + "11.11.2025": "cytryna", + "10.11.2025": "szukajcie", + "09.11.2025": "elka", + "08.11.2025": "zależnie", + "07.11.2025": "rykoszet", + "06.11.2025": "gender", + "05.11.2025": "napięty", + "04.11.2025": "symbioza", + "03.11.2025": "ząbek", + "02.11.2025": "tęczówka", + "01.11.2025": "kremacja", + "31.10.2025": "papież", + "30.10.2025": "świetlana", + "29.10.2025": "drink", + "28.10.2025": "plamka", + "27.10.2025": "bezcelowy", + "26.10.2025": "granola", + "25.10.2025": "galion", + "24.10.2025": "wartownia", + "23.10.2025": "wznosić", + "22.10.2025": "żłobek", + "21.10.2025": "próżno", + "20.10.2025": "wróbelek", + "19.10.2025": "pożądany", + "18.10.2025": "lapis", + "17.10.2025": "rozbiór", + "16.10.2025": "lima", + "15.10.2025": "żwirownia", + "14.10.2025": "kątomierz", + "13.10.2025": "klasa", + "12.10.2025": "reumatyzm", + "11.10.2025": "wycieczka", + "10.10.2025": "przenikać", + "09.10.2025": "gliniarz", + "08.10.2025": "dokonanie", + "07.10.2025": "dresiarz", + "06.10.2025": "wyjec", + "05.10.2025": "anomalny", + "04.10.2025": "marksista", + "03.10.2025": "lesbijski", + "02.10.2025": "biały", + "01.10.2025": "łupież", + "30.09.2025": "lobbing", + "29.09.2025": "karmiciel", + "28.09.2025": "eufemizm", + "27.09.2025": "morena", + "26.09.2025": "wieszczyć", + "25.09.2025": "zbiorczy", + "24.09.2025": "zanik", + "23.09.2025": "peruka", + "22.09.2025": "wiatyk", + "21.09.2025": "pedofil", + "20.09.2025": "kolumba", + "19.09.2025": "kadra", + "18.09.2025": "obrzędowy", + "17.09.2025": "zmowa", + "16.09.2025": "posiłek", + "15.09.2025": "proroczo", + "14.09.2025": "burski", + "13.09.2025": "nadęty", + "12.09.2025": "łaźnia", + "11.09.2025": "cierpkość", + "10.09.2025": "mokro", + "09.09.2025": "zaparcie", + "08.09.2025": "pszenica", + "07.09.2025": "leczenie", + "06.09.2025": "wapień", + "05.09.2025": "tanio", + "04.09.2025": "bardzo", + "03.09.2025": "trefl", + "02.09.2025": "wciąż", + "01.09.2025": "siać", + "31.08.2025": "dagerotyp", + "30.08.2025": "kindżał", + "29.08.2025": "stajnia", + "28.08.2025": "ulica", + "27.08.2025": "inaczej", + "26.08.2025": "kalendarz", + "25.08.2025": "stracenie", + "24.08.2025": "docierać", + "23.08.2025": "gruźliczy", + "22.08.2025": "ekwipunek", + "21.08.2025": "zakon", + "20.08.2025": "fumarola", + "19.08.2025": "motylica", + "18.08.2025": "spór", + "17.08.2025": "carbonara", + "16.08.2025": "parsek", + "15.08.2025": "klepsydra", + "14.08.2025": "sekundant", + "13.08.2025": "koza", + "12.08.2025": "komornik", + "11.08.2025": "janowiec", + "10.08.2025": "litować", + "09.08.2025": "teren", + "08.08.2025": "homo", + "07.08.2025": "żarnik", + "06.08.2025": "schron", + "05.08.2025": "słonka", + "04.08.2025": "mroźny", + "03.08.2025": "osobliwy", + "02.08.2025": "zwój", + "01.08.2025": "zdrowotny", + "31.07.2025": "bowiem", + "30.07.2025": "szkoła", + "29.07.2025": "afrikaans", + "28.07.2025": "ruchliwy", + "27.07.2025": "wzburzony", + "26.07.2025": "rekrut", + "25.07.2025": "nizina", + "24.07.2025": "trącić", + "23.07.2025": "potykać", + "22.07.2025": "unia", + "21.07.2025": "małżonka", + "20.07.2025": "kwatera", + "19.07.2025": "walny", + "18.07.2025": "tkanka", + "17.07.2025": "krasnolud", + "16.07.2025": "bambus", + "15.07.2025": "szpetny", + "14.07.2025": "grdyka", + "13.07.2025": "moszcz", + "12.07.2025": "skalniak", + "11.07.2025": "fizyczny", + "10.07.2025": "żonglować", + "09.07.2025": "bekon", + "08.07.2025": "koryncki", + "07.07.2025": "ohydnie", + "06.07.2025": "karmelowy", + "05.07.2025": "rydz", + "04.07.2025": "wymuszać", + "03.07.2025": "wiertło", + "02.07.2025": "brzmieć", + "01.07.2025": "szybki", + "30.06.2025": "ferma", + "29.06.2025": "okultysta", + "28.06.2025": "czynność", + "27.06.2025": "grzesznik", + "26.06.2025": "podoficer", + "25.06.2025": "skrywać", + "24.06.2025": "trupa", + "23.06.2025": "niejaki", + "22.06.2025": "uroczo", + "21.06.2025": "dwuizbowy", + "20.06.2025": "plemienny", + "19.06.2025": "plwocina", + "18.06.2025": "garłacz", + "17.06.2025": "miecznik", + "16.06.2025": "paskal", + "15.06.2025": "samotność", + "14.06.2025": "bunkier", + "13.06.2025": "francuz", + "12.06.2025": "nieobecny", + "11.06.2025": "koszulka", + "10.06.2025": "zużycie", + "09.06.2025": "zaspać", + "08.06.2025": "keja", + "07.06.2025": "opornik", + "06.06.2025": "stacja", + "05.06.2025": "wizja", + "04.06.2025": "śmiech", + "03.06.2025": "tablice", + "02.06.2025": "mezalians", + "01.06.2025": "psychoza", + "31.05.2025": "skórzasty", + "30.05.2025": "nacięcie", + "29.05.2025": "spalanie", + "28.05.2025": "szwab", + "27.05.2025": "alembik", + "26.05.2025": "cebulka", + "25.05.2025": "sztos", + "24.05.2025": "diuna", + "23.05.2025": "śpiewać", + "22.05.2025": "czeluść", + "21.05.2025": "metr", + "20.05.2025": "powód", + "19.05.2025": "gaza", + "18.05.2025": "drumla", + "17.05.2025": "zderzak", + "16.05.2025": "wojna", + "15.05.2025": "neon", + "14.05.2025": "radiowy", + "13.05.2025": "moher", + "12.05.2025": "łaskotki", + "11.05.2025": "nikczemny", + "10.05.2025": "bastard", + "09.05.2025": "rześki", + "08.05.2025": "doznawać", + "07.05.2025": "mimikra", + "06.05.2025": "topnienie", + "05.05.2025": "lunapark", + "04.05.2025": "jarzmo", + "03.05.2025": "okruch", + "02.05.2025": "fular", + "01.05.2025": "tragedia", + "30.04.2025": "popijać", + "29.04.2025": "anestezja", + "28.04.2025": "destylat", + "27.04.2025": "prazeodym", + "26.04.2025": "lubić", + "25.04.2025": "dosłownie", + "24.04.2025": "glazura", + "23.04.2025": "chwalić", + "22.04.2025": "helsiński", + "21.04.2025": "patka", + "20.04.2025": "eskadra", + "19.04.2025": "ryzykant", + "18.04.2025": "haft", + "17.04.2025": "wydatek", + "16.04.2025": "czapla", + "15.04.2025": "meduza", + "14.04.2025": "noworodek", + "13.04.2025": "nudzić", + "12.04.2025": "górować", + "11.04.2025": "japonka", + "10.04.2025": "zajęty", + "09.04.2025": "order", + "08.04.2025": "klips", + "07.04.2025": "agitator", + "06.04.2025": "majestat", + "05.04.2025": "miażdżyć", + "04.04.2025": "egzegeza", + "03.04.2025": "podstawa", + "02.04.2025": "eksporter", + "01.04.2025": "szkliwo", + "31.03.2025": "chatroom", + "30.03.2025": "konsjerż", + "29.03.2025": "miranda", + "28.03.2025": "brać", + "27.03.2025": "zgadywać", + "26.03.2025": "szanować", + "25.03.2025": "hinduista", + "24.03.2025": "wynocha", + "23.03.2025": "felga", + "22.03.2025": "bałtycki", + "21.03.2025": "dziać", + "20.03.2025": "fałsz", + "19.03.2025": "drzazga", + "18.03.2025": "pikap", + "17.03.2025": "wypukły", + "16.03.2025": "wenus", + "15.03.2025": "dowództwo", + "14.03.2025": "sanie", + "13.03.2025": "pisemnie", + "12.03.2025": "hutnik", + "11.03.2025": "obcęgi", + "10.03.2025": "zawzięty", + "09.03.2025": "groźnie", + "08.03.2025": "sprośnie", + "07.03.2025": "front", + "06.03.2025": "znawca", + "05.03.2025": "guma", + "04.03.2025": "ładowarka", + "03.03.2025": "okład", + "02.03.2025": "umowa", + "01.03.2025": "aberracja", + "28.02.2025": "rumak", + "27.02.2025": "wyrok", + "26.02.2025": "przepaść", + "25.02.2025": "wytworny", + "24.02.2025": "pierwsza", + "23.02.2025": "absolwent", + "22.02.2025": "polować", + "21.02.2025": "psuć", + "20.02.2025": "szatniarz", + "19.02.2025": "igrać", + "18.02.2025": "zaledwie", + "17.02.2025": "rotunda", + "16.02.2025": "pogórze", + "15.02.2025": "napić", + "14.02.2025": "ganić", + "13.02.2025": "zabawnie", + "12.02.2025": "wiosłować", + "11.02.2025": "kręgowy", + "10.02.2025": "akwarela", + "09.02.2025": "występ", + "08.02.2025": "fiolet", + "07.02.2025": "bańka", + "06.02.2025": "rogówka", + "05.02.2025": "armagedon", + "04.02.2025": "pracownik", + "03.02.2025": "względem", + "02.02.2025": "ciasto", + "01.02.2025": "smok", + "31.01.2025": "próbować", + "30.01.2025": "wzdęcie", + "29.01.2025": "poznanie", + "28.01.2025": "asystent", + "27.01.2025": "rozumować", + "26.01.2025": "zioła", + "25.01.2025": "żwir", + "24.01.2025": "katalog", + "23.01.2025": "lewitować", + "22.01.2025": "riposta", + "21.01.2025": "plutonowy", + "20.01.2025": "przeżytek", + "19.01.2025": "krytyka", + "18.01.2025": "wykaz", + "17.01.2025": "skrajna", + "16.01.2025": "rentgen", + "15.01.2025": "achy", + "14.01.2025": "więc", + "13.01.2025": "pozbawiać", + "12.01.2025": "szczęk", + "11.01.2025": "szaman", + "10.01.2025": "impas", + "09.01.2025": "spisywać", + "08.01.2025": "formalny", + "07.01.2025": "kwadra", + "06.01.2025": "lobotomia", + "05.01.2025": "wdychać", + "04.01.2025": "barwena", + "03.01.2025": "piętno", + "02.01.2025": "pokolenie", + "01.01.2025": "wyborny" + }, + "datesByWords": { + "chanson": "21.12.2025", + "konać": "20.12.2025", + "target": "19.12.2025", + "brąz": "18.12.2025", + "lambda": "17.12.2025", + "szampon": "16.12.2025", + "mumia": "15.12.2025", + "lodowe": "14.12.2025", + "laufer": "13.12.2025", + "weselny": "12.12.2025", + "dżin": "11.12.2025", + "falset": "10.12.2025", + "mile": "09.12.2025", + "plon": "08.12.2025", + "wspaniały": "07.12.2025", + "odznaczać": "06.12.2025", + "obiecanki": "05.12.2025", + "nurek": "04.12.2025", + "żeremie": "03.12.2025", + "nobel": "02.12.2025", + "zaufanie": "01.12.2025", + "tesla": "30.11.2025", + "płciowy": "29.11.2025", + "odrobina": "28.11.2025", + "barion": "27.11.2025", + "celibat": "26.11.2025", + "choleryk": "25.11.2025", + "elektryk": "24.11.2025", + "różaniec": "23.11.2025", + "osada": "22.11.2025", + "restart": "21.11.2025", + "olbrzymka": "20.11.2025", + "liczenie": "19.11.2025", + "ronić": "18.11.2025", + "wyrosnąć": "17.11.2025", + "przyczepa": "16.11.2025", + "smar": "15.11.2025", + "piec": "14.11.2025", + "makaron": "13.11.2025", + "położna": "12.11.2025", + "cytryna": "11.11.2025", + "szukajcie": "10.11.2025", + "elka": "09.11.2025", + "zależnie": "08.11.2025", + "rykoszet": "07.11.2025", + "gender": "06.11.2025", + "napięty": "05.11.2025", + "symbioza": "04.11.2025", + "ząbek": "03.11.2025", + "tęczówka": "02.11.2025", + "kremacja": "01.11.2025", + "papież": "31.10.2025", + "świetlana": "30.10.2025", + "drink": "29.10.2025", + "plamka": "28.10.2025", + "bezcelowy": "27.10.2025", + "granola": "26.10.2025", + "galion": "25.10.2025", + "wartownia": "24.10.2025", + "wznosić": "23.10.2025", + "żłobek": "22.10.2025", + "próżno": "21.10.2025", + "wróbelek": "20.10.2025", + "pożądany": "19.10.2025", + "lapis": "18.10.2025", + "rozbiór": "17.10.2025", + "lima": "16.10.2025", + "żwirownia": "15.10.2025", + "kątomierz": "14.10.2025", + "klasa": "13.10.2025", + "reumatyzm": "12.10.2025", + "wycieczka": "11.10.2025", + "przenikać": "10.10.2025", + "gliniarz": "09.10.2025", + "dokonanie": "08.10.2025", + "dresiarz": "07.10.2025", + "wyjec": "06.10.2025", + "anomalny": "05.10.2025", + "marksista": "04.10.2025", + "lesbijski": "03.10.2025", + "biały": "02.10.2025", + "łupież": "01.10.2025", + "lobbing": "30.09.2025", + "karmiciel": "29.09.2025", + "eufemizm": "28.09.2025", + "morena": "27.09.2025", + "wieszczyć": "26.09.2025", + "zbiorczy": "25.09.2025", + "zanik": "24.09.2025", + "peruka": "23.09.2025", + "wiatyk": "22.09.2025", + "pedofil": "21.09.2025", + "kolumba": "20.09.2025", + "kadra": "19.09.2025", + "obrzędowy": "18.09.2025", + "zmowa": "17.09.2025", + "posiłek": "16.09.2025", + "proroczo": "15.09.2025", + "burski": "14.09.2025", + "nadęty": "13.09.2025", + "łaźnia": "12.09.2025", + "cierpkość": "11.09.2025", + "mokro": "10.09.2025", + "zaparcie": "09.09.2025", + "pszenica": "08.09.2025", + "leczenie": "07.09.2025", + "wapień": "06.09.2025", + "tanio": "05.09.2025", + "bardzo": "04.09.2025", + "trefl": "03.09.2025", + "wciąż": "02.09.2025", + "siać": "01.09.2025", + "dagerotyp": "31.08.2025", + "kindżał": "30.08.2025", + "stajnia": "29.08.2025", + "ulica": "28.08.2025", + "inaczej": "27.08.2025", + "kalendarz": "26.08.2025", + "stracenie": "25.08.2025", + "docierać": "24.08.2025", + "gruźliczy": "23.08.2025", + "ekwipunek": "22.08.2025", + "zakon": "21.08.2025", + "fumarola": "20.08.2025", + "motylica": "19.08.2025", + "spór": "18.08.2025", + "carbonara": "17.08.2025", + "parsek": "16.08.2025", + "klepsydra": "15.08.2025", + "sekundant": "14.08.2025", + "koza": "13.08.2025", + "komornik": "12.08.2025", + "janowiec": "11.08.2025", + "litować": "10.08.2025", + "teren": "09.08.2025", + "homo": "08.08.2025", + "żarnik": "07.08.2025", + "schron": "06.08.2025", + "słonka": "05.08.2025", + "mroźny": "04.08.2025", + "osobliwy": "03.08.2025", + "zwój": "02.08.2025", + "zdrowotny": "01.08.2025", + "bowiem": "31.07.2025", + "szkoła": "30.07.2025", + "afrikaans": "29.07.2025", + "ruchliwy": "28.07.2025", + "wzburzony": "27.07.2025", + "rekrut": "26.07.2025", + "nizina": "25.07.2025", + "trącić": "24.07.2025", + "potykać": "23.07.2025", + "unia": "22.07.2025", + "małżonka": "21.07.2025", + "kwatera": "20.07.2025", + "walny": "19.07.2025", + "tkanka": "18.07.2025", + "krasnolud": "17.07.2025", + "bambus": "16.07.2025", + "szpetny": "15.07.2025", + "grdyka": "14.07.2025", + "moszcz": "13.07.2025", + "skalniak": "12.07.2025", + "fizyczny": "11.07.2025", + "żonglować": "10.07.2025", + "bekon": "09.07.2025", + "koryncki": "08.07.2025", + "ohydnie": "07.07.2025", + "karmelowy": "06.07.2025", + "rydz": "05.07.2025", + "wymuszać": "04.07.2025", + "wiertło": "03.07.2025", + "brzmieć": "02.07.2025", + "szybki": "01.07.2025", + "ferma": "30.06.2025", + "okultysta": "29.06.2025", + "czynność": "28.06.2025", + "grzesznik": "27.06.2025", + "podoficer": "26.06.2025", + "skrywać": "25.06.2025", + "trupa": "24.06.2025", + "niejaki": "23.06.2025", + "uroczo": "22.06.2025", + "dwuizbowy": "21.06.2025", + "plemienny": "20.06.2025", + "plwocina": "19.06.2025", + "garłacz": "18.06.2025", + "miecznik": "17.06.2025", + "paskal": "16.06.2025", + "samotność": "15.06.2025", + "bunkier": "14.06.2025", + "francuz": "13.06.2025", + "nieobecny": "12.06.2025", + "koszulka": "11.06.2025", + "zużycie": "10.06.2025", + "zaspać": "09.06.2025", + "keja": "08.06.2025", + "opornik": "07.06.2025", + "stacja": "06.06.2025", + "wizja": "05.06.2025", + "śmiech": "04.06.2025", + "tablice": "03.06.2025", + "mezalians": "02.06.2025", + "psychoza": "01.06.2025", + "skórzasty": "31.05.2025", + "nacięcie": "30.05.2025", + "spalanie": "29.05.2025", + "szwab": "28.05.2025", + "alembik": "27.05.2025", + "cebulka": "26.05.2025", + "sztos": "25.05.2025", + "diuna": "24.05.2025", + "śpiewać": "23.05.2025", + "czeluść": "22.05.2025", + "metr": "21.05.2025", + "powód": "20.05.2025", + "gaza": "19.05.2025", + "drumla": "18.05.2025", + "zderzak": "17.05.2025", + "wojna": "16.05.2025", + "neon": "15.05.2025", + "radiowy": "14.05.2025", + "moher": "13.05.2025", + "łaskotki": "12.05.2025", + "nikczemny": "11.05.2025", + "bastard": "10.05.2025", + "rześki": "09.05.2025", + "doznawać": "08.05.2025", + "mimikra": "07.05.2025", + "topnienie": "06.05.2025", + "lunapark": "05.05.2025", + "jarzmo": "04.05.2025", + "okruch": "03.05.2025", + "fular": "02.05.2025", + "tragedia": "01.05.2025", + "popijać": "30.04.2025", + "anestezja": "29.04.2025", + "destylat": "28.04.2025", + "prazeodym": "27.04.2025", + "lubić": "26.04.2025", + "dosłownie": "25.04.2025", + "glazura": "24.04.2025", + "chwalić": "23.04.2025", + "helsiński": "22.04.2025", + "patka": "21.04.2025", + "eskadra": "20.04.2025", + "ryzykant": "19.04.2025", + "haft": "18.04.2025", + "wydatek": "17.04.2025", + "czapla": "16.04.2025", + "meduza": "15.04.2025", + "noworodek": "14.04.2025", + "nudzić": "13.04.2025", + "górować": "12.04.2025", + "japonka": "11.04.2025", + "zajęty": "10.04.2025", + "order": "09.04.2025", + "klips": "08.04.2025", + "agitator": "07.04.2025", + "majestat": "06.04.2025", + "miażdżyć": "05.04.2025", + "egzegeza": "04.04.2025", + "podstawa": "03.04.2025", + "eksporter": "02.04.2025", + "szkliwo": "01.04.2025", + "chatroom": "31.03.2025", + "konsjerż": "30.03.2025", + "miranda": "29.03.2025", + "brać": "28.03.2025", + "zgadywać": "27.03.2025", + "szanować": "26.03.2025", + "hinduista": "25.03.2025", + "wynocha": "24.03.2025", + "felga": "23.03.2025", + "bałtycki": "22.03.2025", + "dziać": "21.03.2025", + "fałsz": "20.03.2025", + "drzazga": "19.03.2025", + "pikap": "18.03.2025", + "wypukły": "17.03.2025", + "wenus": "16.03.2025", + "dowództwo": "15.03.2025", + "sanie": "14.03.2025", + "pisemnie": "13.03.2025", + "hutnik": "12.03.2025", + "obcęgi": "11.03.2025", + "zawzięty": "10.03.2025", + "groźnie": "09.03.2025", + "sprośnie": "08.03.2025", + "front": "07.03.2025", + "znawca": "06.03.2025", + "guma": "05.03.2025", + "ładowarka": "04.03.2025", + "okład": "03.03.2025", + "umowa": "02.03.2025", + "aberracja": "01.03.2025", + "rumak": "28.02.2025", + "wyrok": "27.02.2025", + "przepaść": "26.02.2025", + "wytworny": "25.02.2025", + "pierwsza": "24.02.2025", + "absolwent": "23.02.2025", + "polować": "22.02.2025", + "psuć": "21.02.2025", + "szatniarz": "20.02.2025", + "igrać": "19.02.2025", + "zaledwie": "18.02.2025", + "rotunda": "17.02.2025", + "pogórze": "16.02.2025", + "napić": "15.02.2025", + "ganić": "14.02.2025", + "zabawnie": "13.02.2025", + "wiosłować": "12.02.2025", + "kręgowy": "11.02.2025", + "akwarela": "10.02.2025", + "występ": "09.02.2025", + "fiolet": "08.02.2025", + "bańka": "07.02.2025", + "rogówka": "06.02.2025", + "armagedon": "05.02.2025", + "pracownik": "04.02.2025", + "względem": "03.02.2025", + "ciasto": "02.02.2025", + "smok": "01.02.2025", + "próbować": "31.01.2025", + "wzdęcie": "30.01.2025", + "poznanie": "29.01.2025", + "asystent": "28.01.2025", + "rozumować": "27.01.2025", + "zioła": "26.01.2025", + "żwir": "25.01.2025", + "katalog": "24.01.2025", + "lewitować": "23.01.2025", + "riposta": "22.01.2025", + "plutonowy": "21.01.2025", + "przeżytek": "20.01.2025", + "krytyka": "19.01.2025", + "wykaz": "18.01.2025", + "skrajna": "17.01.2025", + "rentgen": "16.01.2025", + "achy": "15.01.2025", + "więc": "14.01.2025", + "pozbawiać": "13.01.2025", + "szczęk": "12.01.2025", + "szaman": "11.01.2025", + "impas": "10.01.2025", + "spisywać": "09.01.2025", + "formalny": "08.01.2025", + "kwadra": "07.01.2025", + "lobotomia": "06.01.2025", + "wdychać": "05.01.2025", + "barwena": "04.01.2025", + "piętno": "03.01.2025", + "pokolenie": "02.01.2025", + "wyborny": "01.01.2025" + }, + "rankByWords": { + "smok": { + "best": { + "word": "smok", + "letters": 13 + }, + "worst": { + "word": "smok", + "letters": 29 + }, + "totalWords": { + "2": 3, + "3": 6, + "4": 2, + "5": 4 + }, + "totalLetters": { + "13": 1, + "14": 1, + "16": 2, + "18": 1, + "19": 1, + "21": 1, + "22": 2, + "23": 1, + "25": 1, + "27": 1, + "28": 1, + "29": 2 + }, + "gamesPlayed": 15, + "medianWords": 3, + "medianLetters": 22 + }, + "ciasto": { + "best": { + "word": "ciasto", + "letters": 15 + }, + "worst": { + "word": "ciasto", + "letters": 29 + }, + "totalWords": { + "2": 5, + "3": 6, + "4": 2, + "5": 2 + }, + "totalLetters": { + "15": 1, + "17": 1, + "18": 1, + "19": 1, + "20": 2, + "23": 1, + "24": 2, + "25": 1, + "26": 2, + "27": 1, + "28": 1, + "29": 1 + }, + "gamesPlayed": 15, + "medianWords": 3, + "medianLetters": 24 + }, + "ładowarka": { + "best": { + "word": "ładowarka", + "letters": 21 + }, + "worst": { + "word": "ładowarka", + "letters": 51 + }, + "totalWords": { + "3": 7, + "4": 8, + "5": 2, + "6": 1, + "7": 1 + }, + "totalLetters": { + "21": 2, + "22": 1, + "23": 1, + "24": 1, + "25": 2, + "26": 1, + "27": 2, + "28": 1, + "33": 2, + "35": 1, + "36": 1, + "37": 1, + "38": 1, + "48": 1, + "51": 1 + }, + "gamesPlayed": 19, + "medianWords": 4, + "medianLetters": 27 + }, + "sprośnie": { + "best": { + "word": "sprośnie", + "letters": 27 + }, + "worst": { + "word": "sprośnie", + "letters": 50 + }, + "totalWords": { + "3": 2, + "4": 6, + "5": 3, + "6": 2, + "7": 1, + "9": 1 + }, + "totalLetters": { + "27": 1, + "28": 2, + "31": 3, + "33": 1, + "36": 1, + "38": 1, + "39": 1, + "40": 1, + "49": 1, + "50": 3 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 36 + }, + "groźnie": { + "best": { + "word": "groźnie", + "letters": 24 + }, + "worst": { + "word": "groźnie", + "letters": 54 + }, + "totalWords": { + "3": 4, + "4": 4, + "5": 2, + "6": 3, + "7": 3, + "8": 1, + "9": 2 + }, + "totalLetters": { + "24": 2, + "25": 1, + "26": 2, + "27": 1, + "31": 1, + "34": 1, + "36": 1, + "37": 2, + "38": 1, + "39": 1, + "41": 1, + "42": 1, + "43": 1, + "49": 1, + "50": 1, + "54": 1 + }, + "gamesPlayed": 19, + "medianWords": 5, + "medianLetters": 37 + }, + "zawzięty": { + "best": { + "word": "zawzięty", + "letters": 19 + }, + "worst": { + "word": "zawzięty", + "letters": 65 + }, + "totalWords": { + "2": 2, + "3": 4, + "4": 5, + "5": 2, + "6": 4, + "10": 1 + }, + "totalLetters": { + "19": 1, + "21": 2, + "23": 1, + "28": 1, + "29": 2, + "31": 3, + "33": 1, + "34": 1, + "36": 1, + "39": 1, + "43": 2, + "44": 1, + "65": 1 + }, + "gamesPlayed": 18, + "medianWords": 3.5, + "medianLetters": 30 + }, + "szczęk": { + "best": { + "word": "szczęk", + "letters": 15 + }, + "worst": { + "word": "szczęk", + "letters": 40 + }, + "totalWords": { + "2": 3, + "3": 5, + "4": 6, + "5": 3 + }, + "totalLetters": { + "15": 1, + "16": 1, + "18": 1, + "21": 3, + "22": 2, + "24": 3, + "26": 1, + "27": 1, + "30": 1, + "31": 1, + "33": 1, + "40": 1 + }, + "gamesPlayed": 17, + "medianWords": 4, + "medianLetters": 24 + }, + "wiosłować": { + "best": { + "word": "wiosłować", + "letters": 22 + }, + "worst": { + "word": "wiosłować", + "letters": 49 + }, + "totalWords": { + "2": 2, + "3": 10, + "4": 6, + "6": 1 + }, + "totalLetters": { + "22": 1, + "23": 5, + "24": 1, + "26": 2, + "29": 1, + "30": 2, + "31": 1, + "32": 1, + "33": 1, + "34": 1, + "35": 1, + "38": 1, + "49": 1 + }, + "gamesPlayed": 19, + "medianWords": 3, + "medianLetters": 29 + }, + "pisemnie": { + "best": { + "word": "pisemnie", + "letters": 19 + }, + "worst": { + "word": "pisemnie", + "letters": 52 + }, + "totalWords": { + "2": 3, + "3": 2, + "4": 9, + "5": 6, + "6": 2, + "8": 1, + "9": 1 + }, + "totalLetters": { + "19": 1, + "20": 1, + "22": 1, + "27": 2, + "30": 2, + "31": 3, + "32": 1, + "33": 3, + "34": 1, + "36": 1, + "38": 1, + "39": 2, + "42": 2, + "47": 2, + "52": 1 + }, + "gamesPlayed": 24, + "medianWords": 3.5, + "medianLetters": 32.5 + }, + "sanie": { + "best": { + "word": "sanie", + "letters": 14 + }, + "worst": { + "word": "sanie", + "letters": 48 + }, + "totalWords": { + "2": 6, + "3": 5, + "4": 5, + "5": 1, + "6": 1, + "9": 1 + }, + "totalLetters": { + "14": 1, + "16": 1, + "17": 1, + "18": 1, + "19": 2, + "21": 1, + "22": 1, + "23": 2, + "24": 1, + "25": 1, + "26": 3, + "30": 1, + "31": 1, + "43": 1, + "48": 1 + }, + "gamesPlayed": 19, + "medianWords": 3, + "medianLetters": 23 + }, + "napić": { + "best": { + "word": "napić", + "letters": 17 + }, + "worst": { + "word": "napić", + "letters": 40 + }, + "totalWords": { + "2": 2, + "3": 3, + "4": 7, + "5": 5, + "6": 1 + }, + "totalLetters": { + "17": 1, + "18": 1, + "20": 1, + "23": 1, + "24": 3, + "25": 1, + "26": 1, + "28": 2, + "29": 1, + "30": 2, + "31": 2, + "32": 1, + "40": 1 + }, + "gamesPlayed": 18, + "medianWords": 3.5, + "medianLetters": 27 + }, + "dowództwo": { + "best": { + "word": "dowództwo", + "letters": 17 + }, + "worst": { + "word": "dowództwo", + "letters": 46 + }, + "totalWords": { + "2": 1, + "3": 8, + "4": 3, + "5": 3, + "6": 2 + }, + "totalLetters": { + "17": 1, + "24": 1, + "26": 2, + "28": 2, + "29": 1, + "31": 1, + "32": 2, + "34": 1, + "35": 2, + "39": 1, + "40": 1, + "41": 1, + "46": 1 + }, + "gamesPlayed": 17, + "medianWords": 3, + "medianLetters": 32 + }, + "wenus": { + "best": { + "word": "wenus", + "letters": 16 + }, + "worst": { + "word": "wenus", + "letters": 36 + }, + "totalWords": { + "2": 3, + "3": 9, + "4": 2, + "5": 2, + "6": 2 + }, + "totalLetters": { + "16": 1, + "17": 1, + "18": 2, + "19": 1, + "20": 3, + "21": 2, + "23": 2, + "25": 1, + "26": 1, + "29": 1, + "30": 1, + "32": 1, + "36": 1 + }, + "gamesPlayed": 18, + "medianWords": 2.5, + "medianLetters": 20.5 + }, + "wypukły": { + "best": { + "word": "wypukły", + "letters": 21 + }, + "worst": { + "word": "wypukły", + "letters": 43 + }, + "totalWords": { + "3": 6, + "4": 2, + "5": 7, + "6": 1, + "7": 2 + }, + "totalLetters": { + "21": 2, + "22": 2, + "25": 1, + "26": 1, + "30": 2, + "31": 1, + "32": 1, + "33": 1, + "34": 1, + "37": 3, + "39": 1, + "40": 1, + "43": 1 + }, + "gamesPlayed": 18, + "medianWords": 4.5, + "medianLetters": 31.5 + }, + "zaledwie": { + "best": { + "word": "zaledwie", + "letters": 20 + }, + "worst": { + "word": "zaledwie", + "letters": 47 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 3, + "5": 3, + "6": 1, + "8": 1 + }, + "totalLetters": { + "20": 1, + "28": 1, + "29": 2, + "31": 2, + "32": 3, + "35": 1, + "39": 2, + "42": 1, + "47": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 31.5 + }, + "pikap": { + "best": { + "word": "pikap", + "letters": 17 + }, + "worst": { + "word": "pikap", + "letters": 43 + }, + "totalWords": { + "2": 1, + "3": 6, + "4": 5, + "5": 4, + "6": 2, + "8": 1 + }, + "totalLetters": { + "17": 1, + "18": 1, + "19": 1, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "26": 2, + "27": 2, + "28": 2, + "29": 1, + "30": 1, + "31": 1, + "33": 1, + "39": 1, + "43": 1 + }, + "gamesPlayed": 19, + "medianWords": 4, + "medianLetters": 27 + }, + "drzazga": { + "best": { + "word": "drzazga", + "letters": 16 + }, + "worst": { + "word": "drzazga", + "letters": 40 + }, + "totalWords": { + "2": 4, + "3": 5, + "4": 5, + "5": 3, + "7": 1 + }, + "totalLetters": { + "16": 1, + "18": 2, + "19": 1, + "21": 1, + "22": 2, + "23": 1, + "26": 2, + "27": 1, + "28": 1, + "29": 2, + "31": 1, + "35": 1, + "36": 1, + "40": 1 + }, + "gamesPlayed": 18, + "medianWords": 3.5, + "medianLetters": 24.5 + }, + "fałsz": { + "best": { + "word": "fałsz", + "letters": 18 + }, + "worst": { + "word": "fałsz", + "letters": 44 + }, + "totalWords": { + "3": 3, + "4": 10, + "5": 4, + "6": 2, + "8": 1 + }, + "totalLetters": { + "18": 1, + "24": 2, + "25": 3, + "26": 3, + "27": 2, + "28": 2, + "30": 2, + "31": 1, + "32": 2, + "37": 1, + "44": 1 + }, + "gamesPlayed": 20, + "medianWords": 3.5, + "medianLetters": 26.5 + }, + "dziać": { + "best": { + "word": "dziać", + "letters": 17 + }, + "worst": { + "word": "dziać", + "letters": 39 + }, + "totalWords": { + "2": 1, + "3": 6, + "4": 5, + "5": 4, + "6": 3, + "7": 1 + }, + "totalLetters": { + "17": 1, + "20": 2, + "22": 1, + "25": 1, + "26": 2, + "27": 1, + "28": 1, + "29": 1, + "30": 2, + "31": 2, + "32": 2, + "33": 2, + "38": 1, + "39": 1 + }, + "gamesPlayed": 20, + "medianWords": 3.5, + "medianLetters": 29.5 + }, + "polować": { + "best": { + "word": "polować", + "letters": 18 + }, + "worst": { + "word": "polować", + "letters": 42 + }, + "totalWords": { + "2": 1, + "3": 8, + "4": 5, + "5": 2, + "6": 2 + }, + "totalLetters": { + "18": 1, + "21": 1, + "23": 2, + "24": 1, + "28": 4, + "29": 1, + "30": 2, + "31": 1, + "34": 1, + "37": 2, + "39": 1, + "42": 1 + }, + "gamesPlayed": 18, + "medianWords": 3.5, + "medianLetters": 28.5 + }, + "bałtycki": { + "best": { + "word": "bałtycki", + "letters": 19 + }, + "worst": { + "word": "bałtycki", + "letters": 60 + }, + "totalWords": { + "3": 7, + "4": 1, + "5": 4, + "6": 2, + "12": 1 + }, + "totalLetters": { + "19": 1, + "23": 1, + "24": 2, + "26": 2, + "28": 1, + "30": 1, + "33": 1, + "34": 1, + "37": 1, + "38": 1, + "40": 1, + "43": 1, + "60": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 30 + }, + "lobotomia": { + "best": { + "word": "lobotomia", + "letters": 22 + }, + "worst": { + "word": "lobotomia", + "letters": 38 + }, + "totalWords": { + "2": 2, + "3": 5, + "4": 6, + "5": 2 + }, + "totalLetters": { + "22": 1, + "23": 1, + "27": 5, + "29": 2, + "31": 3, + "33": 2, + "38": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 29 + }, + "pierwsza": { + "best": { + "word": "pierwsza", + "letters": 17 + }, + "worst": { + "word": "pierwsza", + "letters": 45 + }, + "totalWords": { + "2": 7, + "3": 7, + "4": 2, + "5": 1, + "7": 1 + }, + "totalLetters": { + "17": 1, + "19": 3, + "20": 1, + "21": 2, + "23": 1, + "24": 2, + "25": 1, + "26": 1, + "27": 1, + "29": 1, + "32": 1, + "33": 1, + "44": 1, + "45": 1 + }, + "gamesPlayed": 18, + "medianWords": 2.5, + "medianLetters": 23.5 + }, + "impas": { + "best": { + "word": "impas", + "letters": 15 + }, + "worst": { + "word": "impas", + "letters": 36 + }, + "totalWords": { + "2": 2, + "3": 10, + "4": 5, + "5": 1, + "7": 1 + }, + "totalLetters": { + "15": 1, + "16": 2, + "19": 1, + "21": 1, + "22": 2, + "23": 2, + "24": 4, + "25": 1, + "26": 2, + "27": 2, + "36": 1 + }, + "gamesPlayed": 19, + "medianWords": 3, + "medianLetters": 24 + }, + "znawca": { + "best": { + "word": "znawca", + "letters": 15 + }, + "worst": { + "word": "znawca", + "letters": 39 + }, + "totalWords": { + "2": 8, + "3": 6, + "4": 3, + "5": 2, + "6": 1 + }, + "totalLetters": { + "15": 3, + "16": 1, + "17": 1, + "18": 1, + "19": 1, + "20": 2, + "21": 1, + "22": 2, + "24": 1, + "25": 1, + "27": 1, + "28": 1, + "29": 1, + "30": 1, + "32": 1, + "39": 1 + }, + "gamesPlayed": 20, + "medianWords": 2.5, + "medianLetters": 21.5 + }, + "bańka": { + "best": { + "word": "bańka", + "letters": 21 + }, + "worst": { + "word": "bańka", + "letters": 39 + }, + "totalWords": { + "3": 3, + "4": 10, + "5": 4, + "6": 1, + "7": 1 + }, + "totalLetters": { + "21": 2, + "22": 1, + "23": 1, + "24": 3, + "26": 1, + "27": 3, + "30": 3, + "31": 1, + "32": 1, + "34": 1, + "36": 1, + "39": 1 + }, + "gamesPlayed": 19, + "medianWords": 4, + "medianLetters": 27 + }, + "zioła": { + "best": { + "word": "zioła", + "letters": 15 + }, + "worst": { + "word": "zioła", + "letters": 43 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 4, + "5": 5, + "6": 2, + "7": 1 + }, + "totalLetters": { + "15": 1, + "19": 1, + "23": 1, + "24": 1, + "25": 2, + "27": 1, + "31": 3, + "32": 1, + "33": 1, + "35": 1, + "38": 1, + "40": 1, + "43": 1 + }, + "gamesPlayed": 16, + "medianWords": 4.5, + "medianLetters": 29 + }, + "ganić": { + "best": { + "word": "ganić", + "letters": 14 + }, + "worst": { + "word": "ganić", + "letters": 32 + }, + "totalWords": { + "2": 1, + "3": 8, + "4": 9, + "5": 3 + }, + "totalLetters": { + "14": 1, + "17": 1, + "19": 1, + "20": 2, + "21": 1, + "23": 1, + "24": 4, + "25": 2, + "26": 2, + "27": 1, + "28": 1, + "29": 2, + "31": 1, + "32": 1 + }, + "gamesPlayed": 21, + "medianWords": 4, + "medianLetters": 24 + }, + "wytworny": { + "best": { + "word": "wytworny", + "letters": 24 + }, + "worst": { + "word": "wytworny", + "letters": 46 + }, + "totalWords": { + "3": 7, + "4": 4, + "5": 4, + "6": 1, + "7": 1 + }, + "totalLetters": { + "24": 2, + "27": 2, + "28": 2, + "29": 1, + "30": 2, + "31": 3, + "33": 1, + "36": 1, + "38": 1, + "39": 1, + "46": 1 + }, + "gamesPlayed": 17, + "medianWords": 4, + "medianLetters": 30 + }, + "lewitować": { + "best": { + "word": "lewitować", + "letters": 21 + }, + "worst": { + "word": "lewitować", + "letters": 48 + }, + "totalWords": { + "2": 2, + "3": 5, + "4": 6, + "5": 5, + "6": 1 + }, + "totalLetters": { + "21": 1, + "22": 1, + "24": 2, + "27": 1, + "29": 3, + "32": 2, + "33": 1, + "36": 1, + "38": 1, + "39": 1, + "40": 1, + "41": 1, + "42": 1, + "45": 1, + "48": 1 + }, + "gamesPlayed": 19, + "medianWords": 4, + "medianLetters": 32 + }, + "achy": { + "best": { + "word": "achy", + "letters": 18 + }, + "worst": { + "word": "achy", + "letters": 56 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 3, + "5": 4, + "6": 2, + "7": 3, + "8": 1, + "9": 1, + "10": 1, + "12": 1 + }, + "totalLetters": { + "18": 1, + "22": 1, + "25": 1, + "26": 1, + "27": 1, + "28": 1, + "29": 1, + "30": 1, + "32": 1, + "33": 1, + "35": 2, + "37": 1, + "42": 1, + "45": 1, + "49": 1, + "54": 1, + "56": 1 + }, + "gamesPlayed": 18, + "medianWords": 5.5, + "medianLetters": 32.5 + }, + "piętno": { + "best": { + "word": "piętno", + "letters": 19 + }, + "worst": { + "word": "piętno", + "letters": 47 + }, + "totalWords": { + "2": 2, + "3": 6, + "4": 5, + "5": 1, + "8": 1, + "9": 1 + }, + "totalLetters": { + "19": 2, + "20": 1, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "26": 1, + "27": 1, + "28": 1, + "29": 2, + "32": 1, + "35": 1, + "40": 1, + "47": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 26.5 + }, + "wdychać": { + "best": { + "word": "wdychać", + "letters": 22 + }, + "worst": { + "word": "wdychać", + "letters": 39 + }, + "totalWords": { + "3": 3, + "4": 4, + "5": 6, + "6": 2 + }, + "totalLetters": { + "22": 1, + "23": 1, + "26": 1, + "27": 2, + "31": 3, + "32": 1, + "33": 1, + "35": 2, + "37": 2, + "39": 1 + }, + "gamesPlayed": 15, + "medianWords": 5, + "medianLetters": 31 + }, + "pozbawiać": { + "best": { + "word": "pozbawiać", + "letters": 25 + }, + "worst": { + "word": "pozbawiać", + "letters": 69 + }, + "totalWords": { + "3": 4, + "4": 5, + "5": 2, + "6": 3, + "10": 1 + }, + "totalLetters": { + "25": 1, + "26": 1, + "29": 1, + "30": 1, + "33": 1, + "34": 2, + "35": 2, + "39": 1, + "45": 1, + "46": 1, + "50": 1, + "55": 1, + "69": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 35 + }, + "występ": { + "best": { + "word": "występ", + "letters": 20 + }, + "worst": { + "word": "występ", + "letters": 33 + }, + "totalWords": { + "2": 1, + "3": 8, + "4": 3, + "5": 3 + }, + "totalLetters": { + "20": 2, + "21": 1, + "23": 1, + "24": 1, + "25": 4, + "26": 2, + "27": 1, + "28": 1, + "29": 1, + "33": 1 + }, + "gamesPlayed": 15, + "medianWords": 3, + "medianLetters": 25 + }, + "akwarela": { + "best": { + "word": "akwarela", + "letters": 17 + }, + "worst": { + "word": "akwarela", + "letters": 48 + }, + "totalWords": { + "2": 2, + "3": 6, + "4": 8, + "5": 1, + "6": 2, + "7": 1, + "8": 1 + }, + "totalLetters": { + "17": 1, + "20": 1, + "24": 2, + "26": 2, + "27": 1, + "29": 3, + "32": 1, + "33": 1, + "34": 3, + "35": 1, + "39": 1, + "43": 2, + "47": 1, + "48": 1 + }, + "gamesPlayed": 21, + "medianWords": 4, + "medianLetters": 32 + }, + "pracownik": { + "best": { + "word": "pracownik", + "letters": 21 + }, + "worst": { + "word": "pracownik", + "letters": 41 + }, + "totalWords": { + "2": 3, + "3": 9, + "4": 4, + "5": 1 + }, + "totalLetters": { + "21": 1, + "22": 2, + "23": 1, + "24": 1, + "25": 1, + "26": 2, + "27": 1, + "30": 2, + "33": 1, + "34": 2, + "39": 1, + "41": 2 + }, + "gamesPlayed": 17, + "medianWords": 3, + "medianLetters": 27 + }, + "aberracja": { + "best": { + "word": "aberracja", + "letters": 21 + }, + "worst": { + "word": "aberracja", + "letters": 51 + }, + "totalWords": { + "2": 2, + "3": 3, + "4": 4, + "5": 1, + "6": 3, + "7": 1, + "8": 1 + }, + "totalLetters": { + "21": 2, + "24": 1, + "27": 1, + "30": 2, + "31": 1, + "34": 1, + "36": 1, + "41": 1, + "42": 3, + "44": 1, + "51": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 34 + }, + "rentgen": { + "best": { + "word": "rentgen", + "letters": 20 + }, + "worst": { + "word": "rentgen", + "letters": 41 + }, + "totalWords": { + "3": 5, + "4": 5, + "5": 4, + "6": 1, + "7": 1 + }, + "totalLetters": { + "20": 1, + "21": 2, + "24": 2, + "26": 1, + "27": 1, + "30": 1, + "31": 1, + "32": 1, + "33": 2, + "34": 1, + "35": 1, + "38": 1, + "41": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 30.5 + }, + "psuć": { + "best": { + "word": "psuć", + "letters": 16 + }, + "worst": { + "word": "psuć", + "letters": 33 + }, + "totalWords": { + "2": 1, + "3": 11, + "4": 2, + "5": 4, + "6": 1 + }, + "totalLetters": { + "16": 1, + "17": 2, + "19": 2, + "20": 2, + "21": 2, + "22": 1, + "23": 3, + "24": 2, + "27": 1, + "28": 1, + "29": 1, + "33": 1 + }, + "gamesPlayed": 19, + "medianWords": 3, + "medianLetters": 22 + }, + "próbować": { + "best": { + "word": "próbować", + "letters": 16 + }, + "worst": { + "word": "próbować", + "letters": 86 + }, + "totalWords": { + "2": 2, + "3": 6, + "4": 6, + "5": 1, + "6": 1, + "7": 1, + "13": 1 + }, + "totalLetters": { + "16": 1, + "21": 1, + "23": 2, + "24": 1, + "25": 1, + "27": 1, + "28": 1, + "29": 2, + "30": 1, + "33": 1, + "34": 1, + "38": 1, + "40": 1, + "41": 1, + "42": 1, + "86": 1 + }, + "gamesPlayed": 18, + "medianWords": 3.5, + "medianLetters": 28.5 + }, + "żwir": { + "best": { + "word": "żwir", + "letters": 17 + }, + "worst": { + "word": "żwir", + "letters": 45 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 5, + "5": 2, + "7": 1, + "10": 1 + }, + "totalLetters": { + "17": 2, + "19": 1, + "20": 3, + "22": 1, + "24": 3, + "25": 1, + "27": 1, + "32": 1, + "33": 1, + "45": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 24 + }, + "front": { + "best": { + "word": "front", + "letters": 17 + }, + "worst": { + "word": "front", + "letters": 41 + }, + "totalWords": { + "2": 1, + "3": 8, + "4": 3, + "5": 4, + "6": 1, + "7": 2 + }, + "totalLetters": { + "17": 1, + "18": 3, + "19": 1, + "20": 2, + "21": 2, + "22": 1, + "26": 1, + "27": 2, + "30": 2, + "34": 1, + "35": 1, + "36": 1, + "41": 1 + }, + "gamesPlayed": 19, + "medianWords": 4, + "medianLetters": 22 + }, + "armagedon": { + "best": { + "word": "armagedon", + "letters": 22 + }, + "worst": { + "word": "armagedon", + "letters": 48 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 8, + "5": 2, + "7": 2, + "9": 1 + }, + "totalLetters": { + "22": 1, + "23": 1, + "24": 1, + "25": 1, + "26": 1, + "30": 2, + "32": 1, + "36": 3, + "37": 1, + "39": 1, + "42": 2, + "43": 1, + "45": 1, + "48": 1 + }, + "gamesPlayed": 18, + "medianWords": 3.5, + "medianLetters": 34 + }, + "guma": { + "best": { + "word": "guma", + "letters": 14 + }, + "worst": { + "word": "guma", + "letters": 36 + }, + "totalWords": { + "2": 1, + "3": 10, + "4": 8, + "5": 4, + "6": 1, + "7": 1 + }, + "totalLetters": { + "14": 1, + "16": 1, + "19": 3, + "21": 4, + "22": 1, + "23": 2, + "24": 4, + "25": 1, + "26": 2, + "28": 3, + "29": 1, + "31": 1, + "36": 1 + }, + "gamesPlayed": 25, + "medianWords": 4, + "medianLetters": 24 + }, + "względem": { + "best": { + "word": "względem", + "letters": 19 + }, + "worst": { + "word": "względem", + "letters": 93 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 5, + "5": 2, + "6": 4, + "7": 1, + "9": 1, + "19": 1 + }, + "totalLetters": { + "19": 1, + "27": 1, + "28": 1, + "29": 1, + "30": 2, + "31": 1, + "32": 1, + "33": 1, + "34": 1, + "36": 1, + "37": 2, + "38": 1, + "40": 1, + "41": 1, + "42": 1, + "45": 1, + "93": 1 + }, + "gamesPlayed": 19, + "medianWords": 4, + "medianLetters": 34 + }, + "umowa": { + "best": { + "word": "umowa", + "letters": 14 + }, + "worst": { + "word": "umowa", + "letters": 46 + }, + "totalWords": { + "2": 2, + "3": 3, + "4": 6, + "5": 3, + "6": 3, + "7": 1, + "8": 1 + }, + "totalLetters": { + "14": 1, + "17": 1, + "20": 1, + "21": 1, + "24": 1, + "25": 1, + "26": 1, + "27": 2, + "28": 1, + "29": 1, + "30": 1, + "33": 1, + "34": 1, + "35": 1, + "37": 2, + "40": 1, + "46": 1 + }, + "gamesPlayed": 19, + "medianWords": 4, + "medianLetters": 28 + }, + "pokolenie": { + "best": { + "word": "pokolenie", + "letters": 21 + }, + "worst": { + "word": "pokolenie", + "letters": 61 + }, + "totalWords": { + "2": 2, + "3": 5, + "4": 3, + "5": 3, + "6": 1, + "9": 1 + }, + "totalLetters": { + "21": 1, + "22": 1, + "26": 1, + "27": 1, + "30": 1, + "32": 1, + "33": 3, + "35": 1, + "38": 1, + "39": 1, + "41": 1, + "42": 1, + "61": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 33 + }, + "absolwent": { + "best": { + "word": "absolwent", + "letters": 26 + }, + "worst": { + "word": "absolwent", + "letters": 49 + }, + "totalWords": { + "3": 1, + "4": 10, + "5": 2, + "6": 2 + }, + "totalLetters": { + "26": 2, + "27": 1, + "29": 1, + "31": 1, + "32": 1, + "33": 2, + "34": 1, + "37": 3, + "38": 1, + "43": 1, + "49": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 33 + }, + "pogórze": { + "best": { + "word": "pogórze", + "letters": 21 + }, + "worst": { + "word": "pogórze", + "letters": 45 + }, + "totalWords": { + "3": 2, + "4": 6, + "5": 6, + "6": 1 + }, + "totalLetters": { + "21": 1, + "26": 2, + "28": 2, + "29": 1, + "30": 1, + "35": 2, + "37": 2, + "39": 1, + "40": 1, + "42": 1, + "45": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 35 + }, + "igrać": { + "best": { + "word": "igrać", + "letters": 18 + }, + "worst": { + "word": "igrać", + "letters": 57 + }, + "totalWords": { + "3": 3, + "4": 7, + "5": 6, + "6": 3, + "8": 1, + "9": 1 + }, + "totalLetters": { + "18": 1, + "22": 1, + "24": 1, + "26": 3, + "27": 2, + "28": 1, + "29": 1, + "30": 2, + "31": 2, + "33": 1, + "35": 1, + "36": 2, + "39": 1, + "41": 1, + "57": 1 + }, + "gamesPlayed": 21, + "medianWords": 5, + "medianLetters": 30 + }, + "rogówka": { + "best": { + "word": "rogówka", + "letters": 22 + }, + "worst": { + "word": "rogówka", + "letters": 52 + }, + "totalWords": { + "3": 2, + "4": 2, + "5": 5, + "6": 3, + "7": 4 + }, + "totalLetters": { + "22": 1, + "25": 1, + "28": 1, + "29": 1, + "33": 2, + "34": 1, + "36": 1, + "38": 1, + "39": 1, + "42": 1, + "45": 1, + "46": 2, + "47": 1, + "52": 1 + }, + "gamesPlayed": 16, + "medianWords": 4.5, + "medianLetters": 37 + }, + "skrajna": { + "best": { + "word": "skrajna", + "letters": 19 + }, + "worst": { + "word": "skrajna", + "letters": 48 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 6, + "5": 3, + "6": 1, + "7": 1 + }, + "totalLetters": { + "19": 1, + "21": 1, + "24": 2, + "27": 2, + "30": 1, + "32": 3, + "33": 2, + "34": 1, + "39": 1, + "44": 1, + "48": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 31 + }, + "więc": { + "best": { + "word": "więc", + "letters": 15 + }, + "worst": { + "word": "więc", + "letters": 38 + }, + "totalWords": { + "2": 2, + "3": 9, + "4": 3, + "6": 1, + "7": 1 + }, + "totalLetters": { + "15": 1, + "18": 4, + "20": 2, + "21": 2, + "22": 1, + "23": 1, + "24": 2, + "25": 1, + "33": 1, + "38": 1 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 20.5 + }, + "barwena": { + "best": { + "word": "barwena", + "letters": 26 + }, + "worst": { + "word": "barwena", + "letters": 48 + }, + "totalWords": { + "3": 1, + "4": 5, + "5": 6, + "6": 1, + "8": 3 + }, + "totalLetters": { + "26": 1, + "27": 1, + "29": 1, + "31": 1, + "32": 1, + "34": 3, + "35": 1, + "36": 1, + "37": 1, + "38": 1, + "39": 1, + "43": 1, + "45": 1, + "48": 1 + }, + "gamesPlayed": 16, + "medianWords": 4.5, + "medianLetters": 34.5 + }, + "poznanie": { + "best": { + "word": "poznanie", + "letters": 18 + }, + "worst": { + "word": "poznanie", + "letters": 58 + }, + "totalWords": { + "2": 5, + "3": 8, + "4": 2, + "6": 2, + "7": 1 + }, + "totalLetters": { + "18": 1, + "20": 1, + "21": 1, + "22": 2, + "23": 1, + "24": 1, + "25": 1, + "27": 3, + "28": 2, + "29": 1, + "36": 1, + "42": 1, + "52": 1, + "58": 1 + }, + "gamesPlayed": 18, + "medianWords": 2.5, + "medianLetters": 26 + }, + "formalny": { + "best": { + "word": "formalny", + "letters": 18 + }, + "worst": { + "word": "formalny", + "letters": 45 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 6, + "5": 5, + "6": 1 + }, + "totalLetters": { + "18": 1, + "26": 1, + "29": 2, + "30": 2, + "31": 1, + "33": 2, + "34": 1, + "35": 1, + "37": 1, + "38": 1, + "42": 1, + "44": 1, + "45": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 32 + }, + "wyborny": { + "best": { + "word": "wyborny", + "letters": 19 + }, + "worst": { + "word": "wyborny", + "letters": 41 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 3, + "5": 1, + "6": 2, + "7": 1 + }, + "totalLetters": { + "19": 1, + "20": 2, + "24": 2, + "27": 1, + "32": 1, + "33": 1, + "34": 1, + "35": 1, + "36": 1, + "38": 1, + "41": 1 + }, + "gamesPlayed": 13, + "medianWords": 4, + "medianLetters": 32 + }, + "asystent": { + "best": { + "word": "asystent", + "letters": 21 + }, + "worst": { + "word": "asystent", + "letters": 35 + }, + "totalWords": { + "2": 1, + "3": 6, + "4": 8, + "5": 1 + }, + "totalLetters": { + "21": 2, + "23": 1, + "24": 2, + "25": 2, + "28": 3, + "29": 1, + "31": 1, + "33": 1, + "34": 1, + "35": 2 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 26.5 + }, + "obcęgi": { + "best": { + "word": "obcęgi", + "letters": 19 + }, + "worst": { + "word": "obcęgi", + "letters": 48 + }, + "totalWords": { + "3": 6, + "4": 6, + "5": 1, + "6": 2, + "7": 1, + "8": 1 + }, + "totalLetters": { + "19": 1, + "20": 1, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "25": 2, + "28": 1, + "30": 1, + "31": 1, + "32": 2, + "34": 1, + "39": 1, + "40": 1, + "48": 1 + }, + "gamesPlayed": 17, + "medianWords": 4, + "medianLetters": 28 + }, + "fiolet": { + "best": { + "word": "fiolet", + "letters": 18 + }, + "worst": { + "word": "fiolet", + "letters": 41 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 6, + "5": 2, + "7": 1 + }, + "totalLetters": { + "18": 1, + "21": 1, + "22": 1, + "23": 2, + "24": 2, + "25": 1, + "26": 1, + "31": 2, + "34": 2, + "37": 1, + "41": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 25 + }, + "okład": { + "best": { + "word": "okład", + "letters": 16 + }, + "worst": { + "word": "okład", + "letters": 44 + }, + "totalWords": { + "2": 2, + "3": 12, + "4": 3, + "5": 3, + "6": 2, + "8": 1 + }, + "totalLetters": { + "16": 1, + "17": 1, + "18": 3, + "21": 5, + "23": 1, + "24": 1, + "25": 3, + "26": 1, + "29": 1, + "33": 2, + "35": 1, + "38": 1, + "39": 1, + "44": 1 + }, + "gamesPlayed": 23, + "medianWords": 3, + "medianLetters": 24 + }, + "spisywać": { + "best": { + "word": "spisywać", + "letters": 18 + }, + "worst": { + "word": "spisywać", + "letters": 47 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 2, + "5": 4, + "6": 3, + "7": 1 + }, + "totalLetters": { + "18": 1, + "22": 1, + "25": 3, + "29": 2, + "36": 2, + "38": 1, + "39": 1, + "41": 3, + "45": 1, + "47": 1 + }, + "gamesPlayed": 16, + "medianWords": 4.5, + "medianLetters": 32.5 + }, + "katalog": { + "best": { + "word": "katalog", + "letters": 13 + }, + "worst": { + "word": "katalog", + "letters": 48 + }, + "totalWords": { + "2": 2, + "3": 5, + "4": 8, + "5": 3, + "8": 1 + }, + "totalLetters": { + "13": 1, + "21": 2, + "23": 1, + "24": 2, + "26": 1, + "27": 2, + "28": 2, + "29": 1, + "30": 2, + "31": 1, + "34": 1, + "36": 1, + "37": 1, + "48": 1 + }, + "gamesPlayed": 19, + "medianWords": 4, + "medianLetters": 28 + }, + "rumak": { + "best": { + "word": "rumak", + "letters": 15 + }, + "worst": { + "word": "rumak", + "letters": 28 + }, + "totalWords": { + "2": 4, + "3": 10, + "4": 5, + "6": 1 + }, + "totalLetters": { + "15": 1, + "16": 1, + "17": 1, + "18": 1, + "19": 3, + "20": 3, + "22": 2, + "23": 1, + "25": 3, + "26": 2, + "28": 2 + }, + "gamesPlayed": 20, + "medianWords": 2.5, + "medianLetters": 21 + }, + "kręgowy": { + "best": { + "word": "kręgowy", + "letters": 17 + }, + "worst": { + "word": "kręgowy", + "letters": 43 + }, + "totalWords": { + "2": 3, + "3": 3, + "4": 6, + "5": 7, + "6": 2 + }, + "totalLetters": { + "17": 1, + "20": 2, + "21": 1, + "24": 1, + "27": 1, + "29": 3, + "30": 1, + "32": 1, + "33": 2, + "35": 1, + "36": 2, + "37": 1, + "39": 1, + "40": 1, + "41": 1, + "43": 1 + }, + "gamesPlayed": 21, + "medianWords": 4, + "medianLetters": 32 + }, + "rotunda": { + "best": { + "word": "rotunda", + "letters": 16 + }, + "worst": { + "word": "rotunda", + "letters": 42 + }, + "totalWords": { + "2": 2, + "3": 14, + "4": 3, + "5": 1, + "7": 1 + }, + "totalLetters": { + "16": 1, + "20": 1, + "21": 3, + "22": 3, + "23": 2, + "24": 3, + "25": 1, + "27": 2, + "28": 1, + "29": 1, + "31": 1, + "42": 2 + }, + "gamesPlayed": 21, + "medianWords": 3, + "medianLetters": 24 + }, + "plutonowy": { + "best": { + "word": "plutonowy", + "letters": 23 + }, + "worst": { + "word": "plutonowy", + "letters": 45 + }, + "totalWords": { + "2": 1, + "3": 8, + "4": 3, + "5": 2, + "7": 3 + }, + "totalLetters": { + "23": 2, + "24": 2, + "25": 1, + "28": 1, + "29": 2, + "30": 1, + "31": 1, + "34": 2, + "35": 1, + "37": 1, + "41": 1, + "44": 1, + "45": 1 + }, + "gamesPlayed": 17, + "medianWords": 3, + "medianLetters": 30 + }, + "wykaz": { + "best": { + "word": "wykaz", + "letters": 14 + }, + "worst": { + "word": "wykaz", + "letters": 30 + }, + "totalWords": { + "2": 6, + "3": 4, + "4": 5, + "5": 1 + }, + "totalLetters": { + "14": 3, + "17": 2, + "19": 2, + "21": 1, + "24": 2, + "26": 3, + "27": 1, + "29": 1, + "30": 1 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 22.5 + }, + "szaman": { + "best": { + "word": "szaman", + "letters": 19 + }, + "worst": { + "word": "szaman", + "letters": 34 + }, + "totalWords": { + "2": 1, + "3": 9, + "4": 4, + "5": 1 + }, + "totalLetters": { + "19": 1, + "20": 1, + "22": 3, + "23": 1, + "24": 3, + "26": 1, + "27": 2, + "28": 2, + "34": 1 + }, + "gamesPlayed": 15, + "medianWords": 3, + "medianLetters": 24 + }, + "przeżytek": { + "best": { + "word": "przeżytek", + "letters": 22 + }, + "worst": { + "word": "przeżytek", + "letters": 56 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 7, + "5": 1, + "6": 3, + "8": 1, + "9": 1 + }, + "totalLetters": { + "22": 1, + "23": 1, + "27": 2, + "28": 1, + "30": 2, + "32": 1, + "33": 2, + "35": 1, + "36": 1, + "39": 1, + "40": 1, + "43": 1, + "53": 1, + "56": 1 + }, + "gamesPlayed": 17, + "medianWords": 4, + "medianLetters": 33 + }, + "rozumować": { + "best": { + "word": "rozumować", + "letters": 26 + }, + "worst": { + "word": "rozumować", + "letters": 62 + }, + "totalWords": { + "3": 2, + "4": 6, + "5": 2, + "6": 3, + "7": 2 + }, + "totalLetters": { + "26": 1, + "31": 1, + "32": 1, + "33": 2, + "35": 1, + "37": 1, + "38": 1, + "39": 2, + "44": 1, + "45": 1, + "50": 1, + "55": 1, + "62": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 38 + }, + "riposta": { + "best": { + "word": "riposta", + "letters": 16 + }, + "worst": { + "word": "riposta", + "letters": 37 + }, + "totalWords": { + "2": 8, + "3": 3, + "4": 4, + "5": 2, + "6": 1 + }, + "totalLetters": { + "16": 3, + "17": 1, + "18": 1, + "20": 1, + "21": 2, + "23": 3, + "24": 1, + "26": 1, + "27": 1, + "32": 1, + "33": 1, + "36": 1, + "37": 1 + }, + "gamesPlayed": 18, + "medianWords": 2.5, + "medianLetters": 22 + }, + "hutnik": { + "best": { + "word": "hutnik", + "letters": 17 + }, + "worst": { + "word": "hutnik", + "letters": 42 + }, + "totalWords": { + "2": 2, + "3": 8, + "4": 6, + "5": 2, + "6": 2, + "7": 1 + }, + "totalLetters": { + "17": 1, + "19": 2, + "20": 1, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "25": 1, + "26": 3, + "27": 1, + "28": 2, + "29": 1, + "31": 2, + "36": 1, + "37": 1, + "42": 1 + }, + "gamesPlayed": 21, + "medianWords": 4, + "medianLetters": 26 + }, + "wyrok": { + "best": { + "word": "wyrok", + "letters": 14 + }, + "worst": { + "word": "wyrok", + "letters": 26 + }, + "totalWords": { + "2": 4, + "3": 14, + "5": 1 + }, + "totalLetters": { + "14": 2, + "15": 1, + "16": 1, + "17": 1, + "18": 3, + "20": 2, + "21": 2, + "22": 4, + "23": 1, + "24": 1, + "26": 1 + }, + "gamesPlayed": 19, + "medianWords": 3, + "medianLetters": 20 + }, + "szatniarz": { + "best": { + "word": "szatniarz", + "letters": 22 + }, + "worst": { + "word": "szatniarz", + "letters": 42 + }, + "totalWords": { + "3": 13, + "4": 3, + "5": 2, + "6": 1 + }, + "totalLetters": { + "22": 1, + "26": 4, + "27": 7, + "30": 1, + "31": 1, + "37": 1, + "38": 2, + "40": 1, + "42": 1 + }, + "gamesPlayed": 19, + "medianWords": 3, + "medianLetters": 27 + }, + "krytyka": { + "best": { + "word": "krytyka", + "letters": 19 + }, + "worst": { + "word": "krytyka", + "letters": 47 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 7, + "5": 4, + "7": 2 + }, + "totalLetters": { + "19": 1, + "21": 2, + "26": 1, + "28": 1, + "29": 1, + "32": 1, + "33": 3, + "34": 1, + "35": 2, + "36": 1, + "45": 1, + "47": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 32.5 + }, + "wzdęcie": { + "best": { + "word": "wzdęcie", + "letters": 21 + }, + "worst": { + "word": "wzdęcie", + "letters": 43 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 7, + "5": 3, + "6": 1, + "7": 1 + }, + "totalLetters": { + "21": 1, + "22": 1, + "23": 1, + "25": 3, + "26": 2, + "29": 2, + "32": 3, + "33": 1, + "34": 1, + "39": 1, + "40": 1, + "43": 1 + }, + "gamesPlayed": 18, + "medianWords": 3.5, + "medianLetters": 27.5 + }, + "przepaść": { + "best": { + "word": "przepaść", + "letters": 23 + }, + "worst": { + "word": "przepaść", + "letters": 59 + }, + "totalWords": { + "3": 6, + "4": 8, + "5": 1, + "6": 2, + "7": 2 + }, + "totalLetters": { + "23": 1, + "24": 3, + "25": 1, + "27": 1, + "28": 1, + "29": 1, + "30": 1, + "32": 1, + "33": 1, + "34": 1, + "37": 1, + "39": 1, + "44": 2, + "48": 2, + "59": 1 + }, + "gamesPlayed": 19, + "medianWords": 4, + "medianLetters": 32 + }, + "zabawnie": { + "best": { + "word": "zabawnie", + "letters": 23 + }, + "worst": { + "word": "zabawnie", + "letters": 64 + }, + "totalWords": { + "2": 1, + "3": 8, + "4": 7, + "5": 2, + "7": 2, + "9": 1 + }, + "totalLetters": { + "23": 1, + "26": 1, + "27": 3, + "28": 1, + "29": 1, + "30": 1, + "33": 3, + "35": 2, + "36": 1, + "37": 1, + "39": 2, + "42": 1, + "45": 1, + "59": 1, + "64": 1 + }, + "gamesPlayed": 21, + "medianWords": 4, + "medianLetters": 33 + }, + "kwadra": { + "best": { + "word": "kwadra", + "letters": 15 + }, + "worst": { + "word": "kwadra", + "letters": 36 + }, + "totalWords": { + "2": 1, + "3": 13, + "4": 3, + "6": 2 + }, + "totalLetters": { + "15": 1, + "18": 1, + "21": 1, + "22": 3, + "23": 2, + "24": 1, + "25": 1, + "26": 1, + "27": 4, + "28": 1, + "32": 1, + "33": 1, + "36": 1 + }, + "gamesPlayed": 19, + "medianWords": 3, + "medianLetters": 25 + }, + "fular": { + "best": { + "word": "fular", + "letters": 17 + }, + "worst": { + "word": "fular", + "letters": 42 + }, + "totalWords": { + "3": 2, + "4": 5, + "5": 3, + "7": 1, + "8": 3 + }, + "totalLetters": { + "17": 1, + "24": 1, + "25": 1, + "26": 1, + "27": 1, + "28": 1, + "29": 1, + "30": 1, + "32": 1, + "36": 1, + "37": 1, + "39": 1, + "42": 2 + }, + "gamesPlayed": 14, + "medianWords": 4.5, + "medianLetters": 29.5 + }, + "okruch": { + "best": { + "word": "okruch", + "letters": 15 + }, + "worst": { + "word": "okruch", + "letters": 44 + }, + "totalWords": { + "2": 2, + "3": 8, + "4": 2, + "5": 1, + "8": 1 + }, + "totalLetters": { + "15": 1, + "16": 1, + "21": 2, + "22": 2, + "23": 3, + "25": 1, + "26": 1, + "29": 1, + "30": 1, + "44": 1 + }, + "gamesPlayed": 14, + "medianWords": 2.5, + "medianLetters": 22.5 + }, + "miażdżyć": { + "best": { + "word": "miażdżyć", + "letters": 23 + }, + "worst": { + "word": "miażdżyć", + "letters": 40 + }, + "totalWords": { + "3": 4, + "4": 5, + "5": 4, + "6": 4, + "7": 2 + }, + "totalLetters": { + "23": 1, + "24": 1, + "26": 1, + "27": 1, + "29": 4, + "30": 1, + "33": 1, + "35": 3, + "36": 1, + "37": 2, + "39": 1, + "40": 2 + }, + "gamesPlayed": 19, + "medianWords": 5, + "medianLetters": 33 + }, + "agitator": { + "best": { + "word": "agitator", + "letters": 26 + }, + "worst": { + "word": "agitator", + "letters": 57 + }, + "totalWords": { + "3": 3, + "4": 8, + "5": 1, + "6": 3, + "7": 1, + "10": 1 + }, + "totalLetters": { + "26": 1, + "28": 1, + "29": 1, + "30": 1, + "31": 2, + "32": 1, + "33": 1, + "34": 1, + "36": 1, + "37": 2, + "39": 2, + "42": 1, + "46": 1, + "57": 1 + }, + "gamesPlayed": 17, + "medianWords": 4, + "medianLetters": 34 + }, + "mimikra": { + "best": { + "word": "mimikra", + "letters": 15 + }, + "worst": { + "word": "mimikra", + "letters": 43 + }, + "totalWords": { + "2": 2, + "3": 2, + "4": 7, + "5": 3, + "6": 1, + "9": 1 + }, + "totalLetters": { + "15": 1, + "18": 1, + "21": 1, + "22": 1, + "26": 1, + "27": 2, + "28": 2, + "31": 2, + "32": 1, + "34": 1, + "35": 1, + "38": 1, + "43": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 27.5 + }, + "doznawać": { + "best": { + "word": "doznawać", + "letters": 20 + }, + "worst": { + "word": "doznawać", + "letters": 51 + }, + "totalWords": { + "2": 1, + "3": 7, + "4": 1, + "5": 1, + "6": 3, + "7": 1 + }, + "totalLetters": { + "20": 1, + "23": 1, + "24": 1, + "26": 3, + "29": 1, + "30": 1, + "33": 1, + "41": 1, + "45": 1, + "46": 1, + "48": 1, + "51": 1 + }, + "gamesPlayed": 14, + "medianWords": 2.5, + "medianLetters": 29.5 + }, + "order": { + "best": { + "word": "order", + "letters": 17 + }, + "worst": { + "word": "order", + "letters": 37 + }, + "totalWords": { + "2": 1, + "3": 6, + "4": 7, + "5": 2, + "7": 1 + }, + "totalLetters": { + "17": 2, + "20": 1, + "21": 1, + "23": 3, + "24": 2, + "25": 1, + "26": 1, + "28": 2, + "31": 2, + "32": 1, + "37": 1 + }, + "gamesPlayed": 17, + "medianWords": 4, + "medianLetters": 24 + }, + "zajęty": { + "best": { + "word": "zajęty", + "letters": 19 + }, + "worst": { + "word": "zajęty", + "letters": 55 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 2, + "5": 3, + "6": 1, + "7": 2, + "8": 1, + "11": 1 + }, + "totalLetters": { + "19": 1, + "22": 1, + "23": 2, + "26": 2, + "27": 1, + "33": 2, + "34": 1, + "37": 1, + "39": 1, + "42": 2, + "44": 1, + "55": 1 + }, + "gamesPlayed": 16, + "medianWords": 4.5, + "medianLetters": 30 + }, + "górować": { + "best": { + "word": "górować", + "letters": 20 + }, + "worst": { + "word": "górować", + "letters": 59 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 6, + "5": 2, + "6": 3, + "7": 2, + "8": 1 + }, + "totalLetters": { + "20": 1, + "26": 2, + "27": 1, + "28": 1, + "31": 1, + "33": 2, + "34": 1, + "35": 1, + "36": 1, + "37": 1, + "43": 2, + "45": 1, + "59": 1 + }, + "gamesPlayed": 16, + "medianWords": 4.5, + "medianLetters": 33.5 + }, + "meduza": { + "best": { + "word": "meduza", + "letters": 15 + }, + "worst": { + "word": "meduza", + "letters": 33 + }, + "totalWords": { + "2": 5, + "3": 7, + "4": 5, + "5": 2 + }, + "totalLetters": { + "15": 2, + "17": 1, + "20": 2, + "21": 1, + "22": 1, + "23": 3, + "24": 2, + "25": 1, + "26": 2, + "27": 2, + "30": 1, + "33": 1 + }, + "gamesPlayed": 19, + "medianWords": 3, + "medianLetters": 23 + }, + "czapla": { + "best": { + "word": "czapla", + "letters": 17 + }, + "worst": { + "word": "czapla", + "letters": 33 + }, + "totalWords": { + "2": 4, + "3": 6, + "4": 8, + "5": 1 + }, + "totalLetters": { + "17": 1, + "19": 2, + "20": 1, + "21": 2, + "23": 3, + "24": 2, + "26": 1, + "27": 1, + "28": 3, + "30": 1, + "31": 1, + "33": 1 + }, + "gamesPlayed": 19, + "medianWords": 3, + "medianLetters": 24 + }, + "wydatek": { + "best": { + "word": "wydatek", + "letters": 16 + }, + "worst": { + "word": "wydatek", + "letters": 44 + }, + "totalWords": { + "2": 8, + "3": 4, + "4": 4, + "7": 2 + }, + "totalLetters": { + "16": 1, + "17": 2, + "18": 1, + "19": 1, + "20": 1, + "22": 2, + "24": 2, + "27": 1, + "29": 1, + "30": 1, + "31": 2, + "33": 1, + "41": 1, + "44": 1 + }, + "gamesPlayed": 18, + "medianWords": 2.5, + "medianLetters": 23 + }, + "ryzykant": { + "best": { + "word": "ryzykant", + "letters": 18 + }, + "worst": { + "word": "ryzykant", + "letters": 35 + }, + "totalWords": { + "2": 2, + "3": 6, + "4": 5, + "5": 2 + }, + "totalLetters": { + "18": 1, + "23": 1, + "24": 1, + "25": 1, + "26": 2, + "27": 2, + "28": 1, + "32": 1, + "33": 1, + "34": 3, + "35": 1 + }, + "gamesPlayed": 15, + "medianWords": 3, + "medianLetters": 27 + }, + "eskadra": { + "best": { + "word": "eskadra", + "letters": 17 + }, + "worst": { + "word": "eskadra", + "letters": 43 + }, + "totalWords": { + "2": 4, + "3": 4, + "4": 2, + "5": 1, + "6": 2 + }, + "totalLetters": { + "17": 1, + "18": 1, + "20": 1, + "22": 1, + "24": 1, + "26": 2, + "28": 1, + "30": 1, + "31": 1, + "32": 1, + "40": 1, + "43": 1 + }, + "gamesPlayed": 13, + "medianWords": 3, + "medianLetters": 26 + }, + "helsiński": { + "best": { + "word": "helsiński", + "letters": 34 + }, + "worst": { + "word": "helsiński", + "letters": 65 + }, + "totalWords": { + "4": 2, + "5": 2, + "6": 1, + "7": 1, + "8": 4, + "9": 2 + }, + "totalLetters": { + "34": 1, + "38": 2, + "42": 1, + "45": 2, + "51": 1, + "52": 2, + "57": 1, + "61": 1, + "65": 1 + }, + "gamesPlayed": 12, + "medianWords": 7.5, + "medianLetters": 48 + }, + "felga": { + "best": { + "word": "felga", + "letters": 15 + }, + "worst": { + "word": "felga", + "letters": 36 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 6, + "5": 5, + "6": 1 + }, + "totalLetters": { + "15": 2, + "24": 4, + "25": 2, + "27": 1, + "28": 1, + "29": 2, + "30": 3, + "36": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 26 + }, + "chwalić": { + "best": { + "word": "chwalić", + "letters": 16 + }, + "worst": { + "word": "chwalić", + "letters": 41 + }, + "totalWords": { + "2": 4, + "3": 2, + "4": 2, + "5": 3, + "6": 3, + "7": 1 + }, + "totalLetters": { + "16": 1, + "17": 1, + "19": 1, + "20": 1, + "23": 1, + "24": 1, + "29": 1, + "31": 1, + "32": 1, + "36": 1, + "37": 2, + "39": 2, + "41": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 31 + }, + "glazura": { + "best": { + "word": "glazura", + "letters": 20 + }, + "worst": { + "word": "glazura", + "letters": 46 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 8, + "5": 1, + "6": 2, + "8": 1 + }, + "totalLetters": { + "20": 1, + "21": 1, + "24": 1, + "27": 1, + "28": 2, + "29": 1, + "30": 1, + "33": 3, + "34": 2, + "35": 1, + "43": 1, + "46": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 31.5 + }, + "lubić": { + "best": { + "word": "lubić", + "letters": 20 + }, + "worst": { + "word": "lubić", + "letters": 39 + }, + "totalWords": { + "3": 6, + "4": 4, + "5": 2, + "6": 2, + "7": 1 + }, + "totalLetters": { + "20": 2, + "21": 2, + "22": 1, + "23": 1, + "25": 1, + "26": 1, + "28": 1, + "31": 1, + "32": 1, + "34": 1, + "35": 1, + "37": 1, + "39": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 26 + }, + "zgadywać": { + "best": { + "word": "zgadywać", + "letters": 19 + }, + "worst": { + "word": "zgadywać", + "letters": 52 + }, + "totalWords": { + "2": 3, + "3": 4, + "4": 7, + "5": 1, + "7": 2, + "8": 1 + }, + "totalLetters": { + "19": 1, + "20": 2, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "31": 1, + "32": 1, + "33": 2, + "35": 2, + "36": 2, + "49": 2, + "52": 1 + }, + "gamesPlayed": 18, + "medianWords": 3.5, + "medianLetters": 32.5 + }, + "brać": { + "best": { + "word": "brać", + "letters": 18 + }, + "worst": { + "word": "brać", + "letters": 39 + }, + "totalWords": { + "3": 4, + "4": 3, + "5": 7, + "6": 3, + "7": 2 + }, + "totalLetters": { + "18": 1, + "19": 1, + "21": 1, + "22": 2, + "24": 1, + "26": 1, + "28": 2, + "30": 1, + "31": 3, + "32": 1, + "33": 2, + "34": 2, + "39": 1 + }, + "gamesPlayed": 19, + "medianWords": 5, + "medianLetters": 30 + }, + "chatroom": { + "best": { + "word": "chatroom", + "letters": 22 + }, + "worst": { + "word": "chatroom", + "letters": 57 + }, + "totalWords": { + "3": 3, + "4": 4, + "5": 3, + "6": 3, + "7": 1, + "10": 1 + }, + "totalLetters": { + "22": 1, + "23": 1, + "24": 1, + "26": 1, + "28": 1, + "33": 2, + "36": 1, + "38": 1, + "40": 2, + "44": 1, + "45": 1, + "46": 1, + "57": 1 + }, + "gamesPlayed": 15, + "medianWords": 5, + "medianLetters": 36 + }, + "prazeodym": { + "best": { + "word": "prazeodym", + "letters": 27 + }, + "worst": { + "word": "prazeodym", + "letters": 62 + }, + "totalWords": { + "3": 3, + "4": 2, + "5": 4, + "6": 3, + "7": 1, + "10": 2 + }, + "totalLetters": { + "27": 1, + "28": 1, + "29": 1, + "31": 1, + "32": 1, + "35": 1, + "36": 1, + "39": 1, + "43": 1, + "46": 1, + "47": 1, + "50": 1, + "52": 2, + "62": 1 + }, + "gamesPlayed": 15, + "medianWords": 5, + "medianLetters": 39 + }, + "moher": { + "best": { + "word": "moher", + "letters": 12 + }, + "worst": { + "word": "moher", + "letters": 33 + }, + "totalWords": { + "2": 3, + "3": 11, + "4": 1, + "5": 2, + "6": 1 + }, + "totalLetters": { + "12": 1, + "14": 1, + "15": 1, + "18": 1, + "19": 1, + "20": 2, + "21": 3, + "22": 1, + "23": 3, + "24": 1, + "32": 1, + "33": 2 + }, + "gamesPlayed": 18, + "medianWords": 2.5, + "medianLetters": 20.5 + }, + "egzegeza": { + "best": { + "word": "egzegeza", + "letters": 25 + }, + "worst": { + "word": "egzegeza", + "letters": 69 + }, + "totalWords": { + "4": 4, + "5": 4, + "6": 2, + "7": 1, + "8": 2, + "9": 2, + "10": 1, + "13": 1 + }, + "totalLetters": { + "25": 1, + "29": 1, + "30": 1, + "32": 1, + "34": 1, + "35": 1, + "36": 2, + "39": 2, + "44": 1, + "45": 2, + "48": 2, + "50": 1, + "69": 1 + }, + "gamesPlayed": 17, + "medianWords": 6, + "medianLetters": 39 + }, + "topnienie": { + "best": { + "word": "topnienie", + "letters": 16 + }, + "worst": { + "word": "topnienie", + "letters": 60 + }, + "totalWords": { + "2": 1, + "3": 7, + "4": 5, + "5": 2, + "8": 1, + "9": 1 + }, + "totalLetters": { + "16": 1, + "27": 1, + "28": 1, + "29": 1, + "30": 1, + "31": 2, + "32": 1, + "34": 2, + "35": 1, + "36": 2, + "38": 1, + "39": 1, + "49": 1, + "60": 1 + }, + "gamesPlayed": 17, + "medianWords": 4, + "medianLetters": 34 + }, + "hinduista": { + "best": { + "word": "hinduista", + "letters": 26 + }, + "worst": { + "word": "hinduista", + "letters": 92 + }, + "totalWords": { + "3": 2, + "4": 2, + "5": 5, + "6": 2, + "7": 2, + "8": 1, + "10": 1, + "15": 1 + }, + "totalLetters": { + "26": 1, + "33": 2, + "35": 1, + "36": 2, + "37": 1, + "38": 1, + "40": 1, + "44": 1, + "45": 1, + "48": 1, + "49": 1, + "50": 1, + "55": 1, + "92": 1 + }, + "gamesPlayed": 16, + "medianWords": 4.5, + "medianLetters": 39 + }, + "japonka": { + "best": { + "word": "japonka", + "letters": 22 + }, + "worst": { + "word": "japonka", + "letters": 37 + }, + "totalWords": { + "3": 11, + "4": 5, + "5": 2, + "6": 1 + }, + "totalLetters": { + "22": 1, + "23": 3, + "24": 1, + "25": 2, + "27": 4, + "28": 3, + "30": 1, + "32": 2, + "34": 1, + "37": 1 + }, + "gamesPlayed": 19, + "medianWords": 3, + "medianLetters": 27 + }, + "popijać": { + "best": { + "word": "popijać", + "letters": 20 + }, + "worst": { + "word": "popijać", + "letters": 52 + }, + "totalWords": { + "3": 2, + "4": 4, + "5": 5, + "6": 3, + "7": 2 + }, + "totalLetters": { + "20": 1, + "27": 1, + "28": 2, + "31": 2, + "37": 1, + "39": 1, + "40": 3, + "41": 1, + "42": 1, + "45": 1, + "49": 1, + "52": 1 + }, + "gamesPlayed": 16, + "medianWords": 4.5, + "medianLetters": 39.5 + }, + "szkliwo": { + "best": { + "word": "szkliwo", + "letters": 15 + }, + "worst": { + "word": "szkliwo", + "letters": 32 + }, + "totalWords": { + "2": 6, + "3": 5, + "4": 3, + "5": 2, + "6": 1 + }, + "totalLetters": { + "15": 1, + "18": 1, + "19": 2, + "20": 1, + "21": 2, + "22": 1, + "24": 1, + "27": 1, + "29": 2, + "30": 2, + "32": 3 + }, + "gamesPlayed": 17, + "medianWords": 3, + "medianLetters": 24 + }, + "konsjerż": { + "best": { + "word": "konsjerż", + "letters": 23 + }, + "worst": { + "word": "konsjerż", + "letters": 55 + }, + "totalWords": { + "3": 2, + "4": 3, + "5": 2, + "6": 2, + "7": 2, + "8": 1, + "9": 2 + }, + "totalLetters": { + "23": 1, + "28": 1, + "32": 1, + "34": 4, + "40": 1, + "41": 1, + "43": 1, + "44": 1, + "50": 1, + "54": 1, + "55": 1 + }, + "gamesPlayed": 14, + "medianWords": 5.5, + "medianLetters": 37 + }, + "wojna": { + "best": { + "word": "wojna", + "letters": 15 + }, + "worst": { + "word": "wojna", + "letters": 35 + }, + "totalWords": { + "2": 3, + "3": 9, + "4": 2, + "5": 3, + "6": 2 + }, + "totalLetters": { + "15": 1, + "17": 1, + "19": 1, + "20": 2, + "21": 3, + "22": 1, + "23": 1, + "24": 1, + "25": 1, + "26": 1, + "27": 1, + "29": 1, + "30": 1, + "32": 2, + "35": 1 + }, + "gamesPlayed": 19, + "medianWords": 3, + "medianLetters": 23 + }, + "bastard": { + "best": { + "word": "bastard", + "letters": 22 + }, + "worst": { + "word": "bastard", + "letters": 40 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 3, + "5": 4, + "6": 2, + "7": 1 + }, + "totalLetters": { + "22": 2, + "23": 1, + "26": 1, + "28": 2, + "29": 1, + "30": 1, + "32": 1, + "33": 1, + "35": 1, + "36": 1, + "37": 1, + "38": 1, + "40": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 30 + }, + "miranda": { + "best": { + "word": "miranda", + "letters": 17 + }, + "worst": { + "word": "miranda", + "letters": 41 + }, + "totalWords": { + "2": 2, + "3": 3, + "4": 5, + "5": 4, + "6": 1, + "7": 1 + }, + "totalLetters": { + "17": 1, + "19": 1, + "23": 1, + "26": 2, + "28": 1, + "30": 2, + "32": 1, + "33": 2, + "35": 1, + "36": 1, + "37": 2, + "41": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 31 + }, + "majestat": { + "best": { + "word": "majestat", + "letters": 20 + }, + "worst": { + "word": "majestat", + "letters": 36 + }, + "totalWords": { + "2": 3, + "3": 4, + "4": 4, + "5": 2, + "6": 2 + }, + "totalLetters": { + "20": 2, + "21": 1, + "24": 2, + "26": 1, + "27": 1, + "29": 1, + "30": 1, + "32": 2, + "34": 1, + "35": 2, + "36": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 29 + }, + "destylat": { + "best": { + "word": "destylat", + "letters": 18 + }, + "worst": { + "word": "destylat", + "letters": 40 + }, + "totalWords": { + "2": 3, + "3": 8, + "4": 2, + "5": 1, + "6": 3 + }, + "totalLetters": { + "18": 1, + "19": 1, + "22": 2, + "24": 2, + "25": 3, + "29": 2, + "33": 2, + "36": 1, + "39": 2, + "40": 1 + }, + "gamesPlayed": 17, + "medianWords": 3, + "medianLetters": 25 + }, + "klips": { + "best": { + "word": "klips", + "letters": 15 + }, + "worst": { + "word": "klips", + "letters": 36 + }, + "totalWords": { + "2": 1, + "3": 9, + "4": 3, + "5": 2, + "6": 1 + }, + "totalLetters": { + "15": 1, + "18": 1, + "21": 2, + "22": 3, + "23": 2, + "24": 1, + "25": 3, + "27": 1, + "36": 2 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 22.5 + }, + "nikczemny": { + "best": { + "word": "nikczemny", + "letters": 19 + }, + "worst": { + "word": "nikczemny", + "letters": 47 + }, + "totalWords": { + "2": 4, + "3": 7, + "4": 3, + "5": 2 + }, + "totalLetters": { + "19": 1, + "20": 1, + "21": 1, + "23": 1, + "25": 2, + "27": 2, + "28": 1, + "30": 2, + "31": 3, + "34": 1, + "47": 1 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 27.5 + }, + "noworodek": { + "best": { + "word": "noworodek", + "letters": 18 + }, + "worst": { + "word": "noworodek", + "letters": 56 + }, + "totalWords": { + "2": 3, + "3": 8, + "4": 2, + "5": 2, + "6": 1, + "7": 1, + "8": 1 + }, + "totalLetters": { + "18": 1, + "20": 1, + "21": 2, + "23": 1, + "27": 4, + "28": 1, + "29": 3, + "34": 1, + "37": 1, + "42": 1, + "49": 1, + "56": 1 + }, + "gamesPlayed": 18, + "medianWords": 2.5, + "medianLetters": 27.5 + }, + "radiowy": { + "best": { + "word": "radiowy", + "letters": 16 + }, + "worst": { + "word": "radiowy", + "letters": 38 + }, + "totalWords": { + "2": 5, + "3": 8, + "5": 1, + "6": 2 + }, + "totalLetters": { + "16": 1, + "18": 2, + "19": 1, + "22": 3, + "23": 2, + "24": 2, + "25": 1, + "27": 1, + "33": 1, + "34": 1, + "38": 1 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 22.5 + }, + "lunapark": { + "best": { + "word": "lunapark", + "letters": 19 + }, + "worst": { + "word": "lunapark", + "letters": 44 + }, + "totalWords": { + "2": 1, + "3": 10, + "4": 1, + "5": 3, + "6": 2 + }, + "totalLetters": { + "19": 1, + "21": 1, + "23": 1, + "24": 2, + "25": 3, + "26": 1, + "27": 1, + "28": 1, + "29": 1, + "30": 1, + "31": 1, + "38": 1, + "39": 1, + "44": 1 + }, + "gamesPlayed": 17, + "medianWords": 3, + "medianLetters": 26 + }, + "jarzmo": { + "best": { + "word": "jarzmo", + "letters": 12 + }, + "worst": { + "word": "jarzmo", + "letters": 32 + }, + "totalWords": { + "2": 4, + "3": 9, + "4": 2, + "5": 1, + "6": 1 + }, + "totalLetters": { + "12": 1, + "15": 1, + "18": 1, + "20": 3, + "21": 1, + "22": 1, + "24": 2, + "26": 1, + "27": 2, + "28": 1, + "29": 1, + "30": 1, + "32": 1 + }, + "gamesPlayed": 17, + "medianWords": 3, + "medianLetters": 24 + }, + "neon": { + "best": { + "word": "neon", + "letters": 13 + }, + "worst": { + "word": "neon", + "letters": 33 + }, + "totalWords": { + "2": 2, + "3": 3, + "4": 5, + "5": 5, + "7": 1 + }, + "totalLetters": { + "13": 1, + "15": 2, + "19": 1, + "24": 1, + "25": 4, + "27": 2, + "28": 1, + "29": 2, + "31": 1, + "33": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 24.5 + }, + "anestezja": { + "best": { + "word": "anestezja", + "letters": 21 + }, + "worst": { + "word": "anestezja", + "letters": 45 + }, + "totalWords": { + "2": 2, + "3": 5, + "4": 7, + "5": 1, + "6": 2 + }, + "totalLetters": { + "21": 1, + "24": 1, + "25": 1, + "28": 3, + "30": 1, + "31": 2, + "32": 1, + "34": 1, + "35": 1, + "37": 3, + "38": 1, + "45": 1 + }, + "gamesPlayed": 17, + "medianWords": 4, + "medianLetters": 31 + }, + "dosłownie": { + "best": { + "word": "dosłownie", + "letters": 21 + }, + "worst": { + "word": "dosłownie", + "letters": 42 + }, + "totalWords": { + "2": 1, + "3": 7, + "4": 4, + "5": 5 + }, + "totalLetters": { + "21": 1, + "24": 1, + "26": 1, + "27": 1, + "28": 2, + "29": 1, + "30": 1, + "31": 1, + "32": 2, + "33": 1, + "34": 1, + "38": 1, + "40": 1, + "41": 1, + "42": 1 + }, + "gamesPlayed": 17, + "medianWords": 4, + "medianLetters": 31 + }, + "podstawa": { + "best": { + "word": "podstawa", + "letters": 19 + }, + "worst": { + "word": "podstawa", + "letters": 36 + }, + "totalWords": { + "2": 3, + "3": 4, + "4": 6, + "5": 2 + }, + "totalLetters": { + "19": 2, + "23": 1, + "24": 1, + "26": 2, + "27": 1, + "32": 2, + "33": 2, + "34": 1, + "35": 1, + "36": 2 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 32 + }, + "łaskotki": { + "best": { + "word": "łaskotki", + "letters": 16 + }, + "worst": { + "word": "łaskotki", + "letters": 48 + }, + "totalWords": { + "2": 2, + "3": 5, + "4": 3, + "5": 1, + "6": 1, + "7": 2 + }, + "totalLetters": { + "16": 1, + "20": 1, + "23": 1, + "25": 4, + "27": 1, + "28": 2, + "39": 1, + "42": 1, + "45": 1, + "48": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 26 + }, + "patka": { + "best": { + "word": "patka", + "letters": 20 + }, + "worst": { + "word": "patka", + "letters": 42 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 3, + "5": 4, + "6": 2, + "7": 2 + }, + "totalLetters": { + "20": 1, + "23": 2, + "24": 1, + "26": 1, + "27": 1, + "28": 1, + "29": 1, + "31": 2, + "32": 1, + "34": 1, + "35": 1, + "41": 1, + "42": 1 + }, + "gamesPlayed": 15, + "medianWords": 5, + "medianLetters": 29 + }, + "eksporter": { + "best": { + "word": "eksporter", + "letters": 18 + }, + "worst": { + "word": "eksporter", + "letters": 74 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 4, + "5": 2, + "6": 2, + "7": 1, + "8": 1, + "13": 1 + }, + "totalLetters": { + "18": 1, + "25": 1, + "28": 1, + "29": 1, + "32": 1, + "33": 2, + "35": 2, + "36": 1, + "40": 1, + "43": 1, + "44": 1, + "50": 1, + "52": 1, + "74": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 34 + }, + "wynocha": { + "best": { + "word": "wynocha", + "letters": 17 + }, + "worst": { + "word": "wynocha", + "letters": 48 + }, + "totalWords": { + "2": 4, + "3": 7, + "4": 2, + "5": 3, + "6": 1, + "9": 1 + }, + "totalLetters": { + "17": 1, + "19": 1, + "20": 1, + "21": 1, + "22": 3, + "24": 2, + "26": 1, + "27": 3, + "29": 1, + "33": 1, + "34": 1, + "37": 1, + "48": 1 + }, + "gamesPlayed": 18, + "medianWords": 2.5, + "medianLetters": 25 + }, + "szanować": { + "best": { + "word": "szanować", + "letters": 16 + }, + "worst": { + "word": "szanować", + "letters": 40 + }, + "totalWords": { + "2": 4, + "3": 7, + "4": 5, + "5": 1, + "6": 1 + }, + "totalLetters": { + "16": 1, + "20": 1, + "21": 1, + "22": 2, + "26": 2, + "27": 2, + "28": 1, + "29": 1, + "33": 1, + "35": 1, + "36": 2, + "37": 1, + "40": 2 + }, + "gamesPlayed": 18, + "medianWords": 2.5, + "medianLetters": 27.5 + }, + "haft": { + "best": { + "word": "haft", + "letters": 18 + }, + "worst": { + "word": "haft", + "letters": 35 + }, + "totalWords": { + "3": 2, + "4": 7, + "5": 4, + "6": 2, + "7": 2 + }, + "totalLetters": { + "18": 1, + "19": 1, + "20": 1, + "23": 1, + "24": 1, + "25": 2, + "26": 2, + "29": 1, + "30": 3, + "32": 1, + "34": 2, + "35": 1 + }, + "gamesPlayed": 17, + "medianWords": 4, + "medianLetters": 26 + }, + "nudzić": { + "best": { + "word": "nudzić", + "letters": 18 + }, + "worst": { + "word": "nudzić", + "letters": 41 + }, + "totalWords": { + "2": 2, + "3": 7, + "4": 2, + "5": 3, + "6": 1, + "7": 1 + }, + "totalLetters": { + "18": 1, + "19": 1, + "22": 1, + "23": 3, + "25": 1, + "28": 1, + "29": 1, + "30": 2, + "32": 1, + "36": 2, + "40": 1, + "41": 1 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 28.5 + }, + "tragedia": { + "best": { + "word": "tragedia", + "letters": 8 + }, + "worst": { + "word": "tragedia", + "letters": 40 + }, + "totalWords": { + "1": 1, + "2": 4, + "3": 6, + "5": 1, + "6": 1 + }, + "totalLetters": { + "8": 1, + "19": 1, + "20": 2, + "22": 1, + "24": 1, + "26": 1, + "27": 1, + "28": 1, + "29": 1, + "30": 1, + "34": 1, + "40": 1 + }, + "gamesPlayed": 13, + "medianWords": 3, + "medianLetters": 26 + }, + "rześki": { + "best": { + "word": "rześki", + "letters": 13 + }, + "worst": { + "word": "rześki", + "letters": 36 + }, + "totalWords": { + "2": 1, + "3": 8, + "4": 3, + "5": 4 + }, + "totalLetters": { + "13": 1, + "19": 1, + "21": 1, + "23": 1, + "25": 2, + "26": 1, + "27": 1, + "29": 1, + "31": 1, + "32": 1, + "33": 3, + "35": 1, + "36": 1 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 28 + }, + "brzmieć": { + "best": { + "word": "brzmieć", + "letters": 19 + }, + "worst": { + "word": "brzmieć", + "letters": 53 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 5, + "5": 3, + "6": 2, + "8": 1, + "9": 1 + }, + "totalLetters": { + "19": 1, + "27": 2, + "28": 1, + "29": 1, + "30": 2, + "32": 2, + "34": 1, + "35": 1, + "40": 2, + "44": 1, + "50": 1, + "53": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 31 + }, + "wiertło": { + "best": { + "word": "wiertło", + "letters": 17 + }, + "worst": { + "word": "wiertło", + "letters": 55 + }, + "totalWords": { + "2": 3, + "3": 6, + "4": 4, + "5": 3, + "9": 1 + }, + "totalLetters": { + "17": 1, + "20": 1, + "21": 3, + "23": 1, + "24": 2, + "25": 1, + "28": 1, + "29": 1, + "30": 2, + "31": 1, + "32": 1, + "36": 1, + "55": 1 + }, + "gamesPlayed": 17, + "medianWords": 3, + "medianLetters": 25 + }, + "trefl": { + "best": { + "word": "trefl", + "letters": 20 + }, + "worst": { + "word": "trefl", + "letters": 34 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 2, + "5": 5, + "6": 3, + "7": 1 + }, + "totalLetters": { + "20": 2, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "27": 1, + "28": 2, + "29": 2, + "31": 1, + "32": 1, + "33": 1, + "34": 2 + }, + "gamesPlayed": 16, + "medianWords": 4.5, + "medianLetters": 27.5 + }, + "wymuszać": { + "best": { + "word": "wymuszać", + "letters": 22 + }, + "worst": { + "word": "wymuszać", + "letters": 57 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 2, + "5": 5, + "6": 1, + "7": 2, + "8": 1 + }, + "totalLetters": { + "22": 2, + "25": 1, + "26": 1, + "28": 2, + "31": 1, + "33": 1, + "37": 1, + "39": 1, + "40": 2, + "42": 1, + "48": 2, + "51": 1, + "57": 1 + }, + "gamesPlayed": 17, + "medianWords": 5, + "medianLetters": 37 + }, + "rydz": { + "best": { + "word": "rydz", + "letters": 13 + }, + "worst": { + "word": "rydz", + "letters": 39 + }, + "totalWords": { + "2": 4, + "3": 7, + "4": 1, + "5": 2, + "8": 1 + }, + "totalLetters": { + "13": 1, + "15": 2, + "18": 2, + "19": 1, + "20": 1, + "21": 1, + "22": 3, + "23": 1, + "24": 1, + "29": 1, + "39": 1 + }, + "gamesPlayed": 15, + "medianWords": 3, + "medianLetters": 21 + }, + "wapień": { + "best": { + "word": "wapień", + "letters": 18 + }, + "worst": { + "word": "wapień", + "letters": 38 + }, + "totalWords": { + "2": 1, + "3": 7, + "4": 5, + "5": 2 + }, + "totalLetters": { + "18": 1, + "19": 2, + "22": 1, + "24": 3, + "26": 1, + "27": 2, + "28": 1, + "29": 1, + "31": 1, + "32": 1, + "38": 1 + }, + "gamesPlayed": 15, + "medianWords": 3, + "medianLetters": 26 + }, + "zaspać": { + "best": { + "word": "zaspać", + "letters": 18 + }, + "worst": { + "word": "zaspać", + "letters": 43 + }, + "totalWords": { + "2": 3, + "3": 7, + "4": 3, + "5": 1, + "6": 1 + }, + "totalLetters": { + "18": 2, + "19": 1, + "20": 1, + "21": 2, + "22": 2, + "26": 2, + "29": 2, + "31": 1, + "33": 1, + "43": 1 + }, + "gamesPlayed": 15, + "medianWords": 3, + "medianLetters": 22 + }, + "koszulka": { + "best": { + "word": "koszulka", + "letters": 23 + }, + "worst": { + "word": "koszulka", + "letters": 44 + }, + "totalWords": { + "3": 8, + "4": 4, + "5": 2, + "7": 1 + }, + "totalLetters": { + "23": 1, + "24": 1, + "25": 1, + "26": 1, + "28": 2, + "29": 1, + "30": 4, + "31": 1, + "36": 1, + "38": 1, + "44": 1 + }, + "gamesPlayed": 15, + "medianWords": 3, + "medianLetters": 30 + }, + "bunkier": { + "best": { + "word": "bunkier", + "letters": 16 + }, + "worst": { + "word": "bunkier", + "letters": 35 + }, + "totalWords": { + "2": 3, + "3": 4, + "4": 7, + "5": 2 + }, + "totalLetters": { + "16": 1, + "21": 1, + "22": 1, + "24": 1, + "26": 3, + "27": 3, + "30": 1, + "32": 1, + "33": 2, + "34": 1, + "35": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 26.5 + }, + "sekundant": { + "best": { + "word": "sekundant", + "letters": 23 + }, + "worst": { + "word": "sekundant", + "letters": 38 + }, + "totalWords": { + "2": 3, + "3": 6, + "4": 2, + "5": 3, + "7": 1 + }, + "totalLetters": { + "23": 1, + "24": 2, + "25": 1, + "27": 2, + "28": 3, + "30": 1, + "34": 2, + "36": 2, + "38": 1 + }, + "gamesPlayed": 15, + "medianWords": 3, + "medianLetters": 28 + }, + "bambus": { + "best": { + "word": "bambus", + "letters": 21 + }, + "worst": { + "word": "bambus", + "letters": 48 + }, + "totalWords": { + "3": 4, + "4": 7, + "5": 2, + "6": 2, + "7": 1, + "8": 1, + "10": 1 + }, + "totalLetters": { + "21": 1, + "22": 2, + "24": 1, + "28": 2, + "29": 3, + "30": 1, + "31": 2, + "33": 1, + "34": 1, + "37": 1, + "39": 1, + "45": 1, + "48": 1 + }, + "gamesPlayed": 18, + "medianWords": 3.5, + "medianLetters": 29.5 + }, + "miecznik": { + "best": { + "word": "miecznik", + "letters": 18 + }, + "worst": { + "word": "miecznik", + "letters": 35 + }, + "totalWords": { + "2": 4, + "3": 6, + "4": 4, + "5": 2 + }, + "totalLetters": { + "18": 1, + "19": 1, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "27": 1, + "28": 2, + "31": 2, + "32": 2, + "35": 3 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 27.5 + }, + "krasnolud": { + "best": { + "word": "krasnolud", + "letters": 19 + }, + "worst": { + "word": "krasnolud", + "letters": 53 + }, + "totalWords": { + "2": 2, + "3": 5, + "4": 4, + "5": 2, + "6": 1, + "7": 1 + }, + "totalLetters": { + "19": 1, + "24": 2, + "28": 4, + "30": 2, + "31": 1, + "34": 1, + "39": 1, + "41": 1, + "46": 1, + "53": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 30 + }, + "zmowa": { + "best": { + "word": "zmowa", + "letters": 14 + }, + "worst": { + "word": "zmowa", + "letters": 35 + }, + "totalWords": { + "2": 7, + "3": 7, + "4": 2, + "6": 1, + "7": 1 + }, + "totalLetters": { + "14": 1, + "15": 1, + "16": 1, + "17": 2, + "19": 2, + "20": 2, + "21": 2, + "25": 2, + "26": 2, + "28": 1, + "30": 1, + "35": 1 + }, + "gamesPlayed": 18, + "medianWords": 2.5, + "medianLetters": 20.5 + }, + "drumla": { + "best": { + "word": "drumla", + "letters": 18 + }, + "worst": { + "word": "drumla", + "letters": 54 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 1, + "5": 5, + "6": 2, + "7": 1, + "8": 1, + "9": 1 + }, + "totalLetters": { + "18": 1, + "21": 1, + "25": 1, + "26": 1, + "32": 2, + "34": 1, + "35": 1, + "36": 3, + "40": 1, + "41": 1, + "54": 1 + }, + "gamesPlayed": 14, + "medianWords": 4.5, + "medianLetters": 34.5 + }, + "garłacz": { + "best": { + "word": "garłacz", + "letters": 21 + }, + "worst": { + "word": "garłacz", + "letters": 48 + }, + "totalWords": { + "3": 2, + "4": 4, + "5": 4, + "6": 2, + "7": 1, + "8": 1 + }, + "totalLetters": { + "21": 1, + "26": 3, + "32": 1, + "33": 1, + "34": 1, + "35": 1, + "36": 2, + "40": 1, + "44": 1, + "47": 1, + "48": 1 + }, + "gamesPlayed": 14, + "medianWords": 4.5, + "medianLetters": 34.5 + }, + "spór": { + "best": { + "word": "spór", + "letters": 12 + }, + "worst": { + "word": "spór", + "letters": 35 + }, + "totalWords": { + "2": 6, + "3": 5, + "4": 3, + "5": 2, + "6": 1 + }, + "totalLetters": { + "12": 1, + "14": 1, + "16": 2, + "17": 4, + "18": 1, + "19": 1, + "20": 1, + "21": 1, + "22": 1, + "24": 1, + "25": 1, + "31": 1, + "35": 1 + }, + "gamesPlayed": 17, + "medianWords": 3, + "medianLetters": 18 + }, + "powód": { + "best": { + "word": "powód", + "letters": 15 + }, + "worst": { + "word": "powód", + "letters": 38 + }, + "totalWords": { + "2": 3, + "3": 5, + "4": 3, + "5": 2, + "6": 2, + "8": 1 + }, + "totalLetters": { + "15": 1, + "16": 1, + "18": 1, + "19": 1, + "21": 1, + "24": 2, + "25": 3, + "27": 1, + "29": 1, + "34": 1, + "35": 2, + "38": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 24.5 + }, + "fumarola": { + "best": { + "word": "fumarola", + "letters": 27 + }, + "worst": { + "word": "fumarola", + "letters": 58 + }, + "totalWords": { + "3": 1, + "4": 1, + "5": 4, + "6": 2, + "7": 4, + "8": 3, + "12": 1 + }, + "totalLetters": { + "27": 1, + "31": 1, + "34": 1, + "36": 1, + "38": 1, + "41": 2, + "42": 1, + "43": 1, + "44": 1, + "45": 2, + "48": 1, + "51": 2, + "58": 1 + }, + "gamesPlayed": 16, + "medianWords": 6.5, + "medianLetters": 42.5 + }, + "zakon": { + "best": { + "word": "zakon", + "letters": 15 + }, + "worst": { + "word": "zakon", + "letters": 32 + }, + "totalWords": { + "2": 8, + "3": 6, + "4": 3, + "6": 1 + }, + "totalLetters": { + "15": 2, + "16": 2, + "19": 3, + "20": 2, + "22": 1, + "23": 1, + "24": 1, + "25": 2, + "27": 1, + "29": 2, + "32": 1 + }, + "gamesPlayed": 18, + "medianWords": 2.5, + "medianLetters": 21 + }, + "śpiewać": { + "best": { + "word": "śpiewać", + "letters": 16 + }, + "worst": { + "word": "śpiewać", + "letters": 34 + }, + "totalWords": { + "2": 5, + "3": 9, + "4": 1, + "5": 1 + }, + "totalLetters": { + "16": 1, + "19": 3, + "20": 2, + "21": 1, + "22": 1, + "23": 2, + "24": 1, + "25": 2, + "29": 1, + "30": 1, + "34": 1 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 22.5 + }, + "peruka": { + "best": { + "word": "peruka", + "letters": 16 + }, + "worst": { + "word": "peruka", + "letters": 34 + }, + "totalWords": { + "2": 5, + "3": 5, + "4": 3, + "5": 1, + "6": 1 + }, + "totalLetters": { + "16": 1, + "17": 2, + "19": 1, + "21": 1, + "22": 2, + "23": 1, + "25": 3, + "29": 1, + "31": 1, + "33": 1, + "34": 1 + }, + "gamesPlayed": 15, + "medianWords": 3, + "medianLetters": 23 + }, + "trącić": { + "best": { + "word": "trącić", + "letters": 19 + }, + "worst": { + "word": "trącić", + "letters": 39 + }, + "totalWords": { + "2": 2, + "3": 5, + "4": 3, + "5": 5, + "6": 2 + }, + "totalLetters": { + "19": 1, + "21": 2, + "22": 1, + "24": 2, + "26": 3, + "30": 3, + "33": 3, + "35": 1, + "39": 1 + }, + "gamesPlayed": 17, + "medianWords": 4, + "medianLetters": 26 + }, + "zanik": { + "best": { + "word": "zanik", + "letters": 14 + }, + "worst": { + "word": "zanik", + "letters": 39 + }, + "totalWords": { + "2": 10, + "3": 3, + "5": 1, + "7": 1 + }, + "totalLetters": { + "14": 1, + "15": 3, + "16": 1, + "17": 2, + "19": 1, + "20": 2, + "21": 1, + "24": 1, + "25": 1, + "35": 1, + "39": 1 + }, + "gamesPlayed": 15, + "medianWords": 2, + "medianLetters": 19 + }, + "skrywać": { + "best": { + "word": "skrywać", + "letters": 22 + }, + "worst": { + "word": "skrywać", + "letters": 53 + }, + "totalWords": { + "3": 4, + "4": 3, + "5": 4, + "6": 6, + "7": 1 + }, + "totalLetters": { + "22": 2, + "23": 1, + "27": 1, + "30": 1, + "31": 1, + "32": 1, + "33": 1, + "34": 1, + "36": 1, + "39": 3, + "40": 1, + "42": 1, + "43": 2, + "53": 1 + }, + "gamesPlayed": 18, + "medianWords": 4.5, + "medianLetters": 35 + }, + "zbiorczy": { + "best": { + "word": "zbiorczy", + "letters": 19 + }, + "worst": { + "word": "zbiorczy", + "letters": 43 + }, + "totalWords": { + "2": 4, + "3": 4, + "4": 3, + "5": 1, + "6": 2 + }, + "totalLetters": { + "19": 2, + "21": 1, + "23": 1, + "26": 3, + "27": 1, + "32": 2, + "33": 1, + "38": 1, + "39": 1, + "43": 1 + }, + "gamesPlayed": 14, + "medianWords": 2.5, + "medianLetters": 26.5 + }, + "alembik": { + "best": { + "word": "alembik", + "letters": 18 + }, + "worst": { + "word": "alembik", + "letters": 44 + }, + "totalWords": { + "2": 1, + "3": 8, + "4": 3, + "5": 2, + "6": 1, + "9": 1 + }, + "totalLetters": { + "18": 1, + "23": 3, + "25": 2, + "27": 1, + "28": 1, + "29": 4, + "33": 2, + "40": 1, + "44": 1 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 28.5 + }, + "szwab": { + "best": { + "word": "szwab", + "letters": 14 + }, + "worst": { + "word": "szwab", + "letters": 33 + }, + "totalWords": { + "2": 3, + "3": 6, + "4": 5, + "5": 3 + }, + "totalLetters": { + "14": 2, + "20": 2, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "25": 2, + "26": 2, + "27": 1, + "30": 1, + "32": 1, + "33": 2 + }, + "gamesPlayed": 17, + "medianWords": 3, + "medianLetters": 25 + }, + "karmiciel": { + "best": { + "word": "karmiciel", + "letters": 24 + }, + "worst": { + "word": "karmiciel", + "letters": 45 + }, + "totalWords": { + "3": 4, + "4": 4, + "5": 3, + "6": 3 + }, + "totalLetters": { + "24": 1, + "25": 1, + "28": 1, + "31": 1, + "32": 1, + "33": 1, + "35": 1, + "37": 1, + "38": 2, + "39": 1, + "41": 1, + "43": 1, + "45": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 36 + }, + "kindżał": { + "best": { + "word": "kindżał", + "letters": 15 + }, + "worst": { + "word": "kindżał", + "letters": 64 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 4, + "5": 1, + "6": 1, + "7": 1, + "10": 1, + "11": 1, + "12": 1 + }, + "totalLetters": { + "15": 1, + "22": 1, + "24": 1, + "25": 1, + "26": 1, + "30": 1, + "32": 2, + "34": 1, + "43": 1, + "49": 1, + "51": 1, + "59": 1, + "64": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 31 + }, + "szkoła": { + "best": { + "word": "szkoła", + "letters": 14 + }, + "worst": { + "word": "szkoła", + "letters": 33 + }, + "totalWords": { + "2": 6, + "3": 5, + "4": 6, + "6": 1 + }, + "totalLetters": { + "14": 1, + "15": 1, + "16": 1, + "17": 1, + "18": 1, + "20": 2, + "21": 1, + "22": 1, + "23": 1, + "25": 1, + "26": 1, + "28": 1, + "29": 2, + "31": 2, + "33": 1 + }, + "gamesPlayed": 18, + "medianWords": 2.5, + "medianLetters": 22.5 + }, + "ruchliwy": { + "best": { + "word": "ruchliwy", + "letters": 18 + }, + "worst": { + "word": "ruchliwy", + "letters": 38 + }, + "totalWords": { + "2": 4, + "3": 6, + "4": 3, + "5": 2, + "7": 1 + }, + "totalLetters": { + "18": 1, + "21": 1, + "22": 1, + "23": 1, + "25": 2, + "26": 2, + "27": 4, + "29": 1, + "34": 1, + "36": 1, + "38": 1 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 26.5 + }, + "psychoza": { + "best": { + "word": "psychoza", + "letters": 17 + }, + "worst": { + "word": "psychoza", + "letters": 40 + }, + "totalWords": { + "2": 5, + "3": 5, + "4": 3, + "7": 1 + }, + "totalLetters": { + "17": 1, + "18": 1, + "19": 1, + "20": 2, + "21": 1, + "25": 1, + "28": 3, + "30": 1, + "32": 1, + "33": 1, + "40": 1 + }, + "gamesPlayed": 14, + "medianWords": 2.5, + "medianLetters": 26.5 + }, + "śmiech": { + "best": { + "word": "śmiech", + "letters": 16 + }, + "worst": { + "word": "śmiech", + "letters": 48 + }, + "totalWords": { + "2": 4, + "3": 3, + "4": 1, + "5": 5, + "6": 1, + "7": 1 + }, + "totalLetters": { + "16": 1, + "18": 1, + "19": 1, + "20": 1, + "21": 1, + "22": 1, + "27": 1, + "29": 2, + "30": 1, + "31": 1, + "32": 1, + "33": 1, + "41": 1, + "48": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 29 + }, + "zdrowotny": { + "best": { + "word": "zdrowotny", + "letters": 20 + }, + "worst": { + "word": "zdrowotny", + "letters": 46 + }, + "totalWords": { + "2": 1, + "3": 8, + "4": 4, + "5": 1 + }, + "totalLetters": { + "20": 1, + "24": 1, + "25": 5, + "26": 1, + "30": 1, + "31": 2, + "35": 1, + "36": 1, + "46": 1 + }, + "gamesPlayed": 14, + "medianWords": 2.5, + "medianLetters": 25.5 + }, + "stracenie": { + "best": { + "word": "stracenie", + "letters": 24 + }, + "worst": { + "word": "stracenie", + "letters": 64 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 3, + "5": 3, + "6": 4, + "9": 1 + }, + "totalLetters": { + "24": 1, + "27": 1, + "29": 1, + "30": 1, + "33": 1, + "34": 1, + "36": 2, + "39": 1, + "42": 1, + "46": 1, + "48": 1, + "49": 1, + "53": 1, + "56": 1, + "64": 1 + }, + "gamesPlayed": 16, + "medianWords": 4.5, + "medianLetters": 37.5 + }, + "dagerotyp": { + "best": { + "word": "dagerotyp", + "letters": 29 + }, + "worst": { + "word": "dagerotyp", + "letters": 58 + }, + "totalWords": { + "3": 2, + "4": 2, + "5": 4, + "6": 3, + "7": 1, + "9": 1 + }, + "totalLetters": { + "29": 1, + "31": 1, + "32": 2, + "33": 1, + "39": 1, + "40": 1, + "41": 1, + "42": 1, + "44": 1, + "51": 1, + "55": 1, + "58": 1 + }, + "gamesPlayed": 13, + "medianWords": 5, + "medianLetters": 40 + }, + "tablice": { + "best": { + "word": "tablice", + "letters": 19 + }, + "worst": { + "word": "tablice", + "letters": 54 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 5, + "5": 2, + "8": 1 + }, + "totalLetters": { + "19": 1, + "21": 1, + "24": 1, + "25": 1, + "26": 1, + "27": 1, + "29": 2, + "30": 2, + "31": 1, + "35": 1, + "39": 1, + "54": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 28 + }, + "obrzędowy": { + "best": { + "word": "obrzędowy", + "letters": 25 + }, + "worst": { + "word": "obrzędowy", + "letters": 60 + }, + "totalWords": { + "3": 2, + "4": 4, + "5": 5, + "6": 4, + "7": 1 + }, + "totalLetters": { + "25": 1, + "31": 1, + "32": 1, + "34": 2, + "35": 1, + "37": 2, + "38": 2, + "40": 1, + "41": 1, + "44": 1, + "46": 1, + "59": 1, + "60": 1 + }, + "gamesPlayed": 16, + "medianWords": 4.5, + "medianLetters": 37.5 + }, + "pedofil": { + "best": { + "word": "pedofil", + "letters": 23 + }, + "worst": { + "word": "pedofil", + "letters": 37 + }, + "totalWords": { + "3": 5, + "4": 5, + "5": 1, + "6": 1, + "7": 2 + }, + "totalLetters": { + "23": 1, + "24": 3, + "27": 2, + "28": 1, + "29": 1, + "30": 1, + "31": 1, + "35": 1, + "36": 1, + "37": 2 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 28.5 + }, + "nadęty": { + "best": { + "word": "nadęty", + "letters": 18 + }, + "worst": { + "word": "nadęty", + "letters": 35 + }, + "totalWords": { + "2": 1, + "3": 6, + "4": 4, + "5": 2, + "6": 1 + }, + "totalLetters": { + "18": 1, + "20": 2, + "21": 1, + "23": 1, + "24": 2, + "25": 1, + "26": 1, + "29": 1, + "30": 1, + "32": 1, + "35": 2 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 24.5 + }, + "bekon": { + "best": { + "word": "bekon", + "letters": 15 + }, + "worst": { + "word": "bekon", + "letters": 36 + }, + "totalWords": { + "2": 3, + "3": 6, + "4": 4, + "5": 1, + "8": 1 + }, + "totalLetters": { + "15": 1, + "16": 1, + "20": 3, + "21": 1, + "22": 1, + "23": 1, + "24": 2, + "26": 2, + "30": 2, + "36": 1 + }, + "gamesPlayed": 15, + "medianWords": 3, + "medianLetters": 23 + }, + "pszenica": { + "best": { + "word": "pszenica", + "letters": 18 + }, + "worst": { + "word": "pszenica", + "letters": 55 + }, + "totalWords": { + "2": 9, + "3": 4, + "4": 1, + "5": 2, + "6": 1, + "9": 1 + }, + "totalLetters": { + "18": 1, + "19": 2, + "20": 2, + "21": 1, + "22": 1, + "23": 3, + "24": 1, + "26": 1, + "28": 1, + "31": 1, + "37": 1, + "42": 2, + "55": 1 + }, + "gamesPlayed": 18, + "medianWords": 2.5, + "medianLetters": 22.5 + }, + "łupież": { + "best": { + "word": "łupież", + "letters": 6 + }, + "worst": { + "word": "łupież", + "letters": 39 + }, + "totalWords": { + "1": 1, + "2": 1, + "3": 5, + "4": 6, + "7": 2 + }, + "totalLetters": { + "6": 1, + "15": 1, + "18": 2, + "22": 1, + "24": 5, + "30": 1, + "31": 1, + "32": 1, + "35": 1, + "39": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 24 + }, + "koryncki": { + "best": { + "word": "koryncki", + "letters": 18 + }, + "worst": { + "word": "koryncki", + "letters": 43 + }, + "totalWords": { + "2": 5, + "3": 3, + "4": 1, + "5": 3, + "6": 2 + }, + "totalLetters": { + "18": 1, + "19": 1, + "20": 2, + "22": 1, + "23": 2, + "29": 1, + "32": 1, + "37": 1, + "39": 2, + "40": 1, + "43": 1 + }, + "gamesPlayed": 14, + "medianWords": 2.5, + "medianLetters": 26 + }, + "osobliwy": { + "best": { + "word": "osobliwy", + "letters": 23 + }, + "worst": { + "word": "osobliwy", + "letters": 46 + }, + "totalWords": { + "3": 6, + "4": 5, + "5": 1, + "6": 1, + "7": 2 + }, + "totalLetters": { + "23": 1, + "24": 1, + "26": 1, + "27": 1, + "28": 1, + "29": 3, + "30": 1, + "31": 1, + "34": 1, + "36": 1, + "37": 1, + "39": 1, + "46": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 29 + }, + "wzburzony": { + "best": { + "word": "wzburzony", + "letters": 25 + }, + "worst": { + "word": "wzburzony", + "letters": 67 + }, + "totalWords": { + "3": 4, + "4": 6, + "5": 1, + "6": 1, + "7": 1, + "12": 1 + }, + "totalLetters": { + "25": 1, + "26": 1, + "28": 1, + "33": 2, + "35": 2, + "36": 2, + "39": 1, + "41": 1, + "43": 1, + "46": 1, + "67": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 35.5 + }, + "zderzak": { + "best": { + "word": "zderzak", + "letters": 17 + }, + "worst": { + "word": "zderzak", + "letters": 44 + }, + "totalWords": { + "2": 7, + "3": 6, + "4": 1, + "5": 1, + "6": 1, + "7": 1 + }, + "totalLetters": { + "17": 1, + "18": 2, + "19": 2, + "21": 2, + "22": 2, + "23": 1, + "25": 1, + "27": 1, + "28": 2, + "34": 1, + "35": 1, + "44": 1 + }, + "gamesPlayed": 17, + "medianWords": 3, + "medianLetters": 22 + }, + "fizyczny": { + "best": { + "word": "fizyczny", + "letters": 22 + }, + "worst": { + "word": "fizyczny", + "letters": 58 + }, + "totalWords": { + "3": 5, + "4": 4, + "6": 2, + "7": 1, + "8": 1, + "10": 1 + }, + "totalLetters": { + "22": 1, + "28": 1, + "29": 3, + "31": 1, + "32": 3, + "34": 1, + "36": 1, + "42": 1, + "49": 1, + "58": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 31.5 + }, + "nacięcie": { + "best": { + "word": "nacięcie", + "letters": 20 + }, + "worst": { + "word": "nacięcie", + "letters": 47 + }, + "totalWords": { + "3": 4, + "4": 5, + "5": 2, + "6": 3 + }, + "totalLetters": { + "20": 1, + "22": 1, + "26": 1, + "29": 1, + "30": 1, + "31": 1, + "32": 1, + "33": 2, + "36": 1, + "39": 1, + "43": 1, + "46": 1, + "47": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 32.5 + }, + "karmelowy": { + "best": { + "word": "karmelowy", + "letters": 18 + }, + "worst": { + "word": "karmelowy", + "letters": 57 + }, + "totalWords": { + "2": 1, + "3": 7, + "4": 1, + "5": 3, + "9": 1 + }, + "totalLetters": { + "18": 1, + "26": 1, + "27": 1, + "28": 1, + "29": 1, + "31": 2, + "32": 1, + "34": 1, + "37": 1, + "38": 1, + "42": 1, + "57": 1 + }, + "gamesPlayed": 13, + "medianWords": 3, + "medianLetters": 31 + }, + "czeluść": { + "best": { + "word": "czeluść", + "letters": 17 + }, + "worst": { + "word": "czeluść", + "letters": 37 + }, + "totalWords": { + "2": 2, + "3": 8, + "4": 3, + "5": 3 + }, + "totalLetters": { + "17": 1, + "20": 3, + "21": 1, + "22": 2, + "24": 3, + "26": 1, + "28": 1, + "29": 1, + "32": 1, + "36": 1, + "37": 1 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 23 + }, + "cebulka": { + "best": { + "word": "cebulka", + "letters": 21 + }, + "worst": { + "word": "cebulka", + "letters": 35 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 5, + "5": 4, + "6": 1 + }, + "totalLetters": { + "21": 2, + "22": 1, + "24": 1, + "25": 1, + "26": 1, + "27": 1, + "29": 2, + "30": 1, + "31": 1, + "33": 1, + "34": 1, + "35": 3 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 28 + }, + "motylica": { + "best": { + "word": "motylica", + "letters": 18 + }, + "worst": { + "word": "motylica", + "letters": 39 + }, + "totalWords": { + "2": 4, + "3": 2, + "4": 3, + "5": 3, + "6": 2 + }, + "totalLetters": { + "18": 1, + "20": 1, + "22": 1, + "23": 1, + "25": 1, + "26": 1, + "29": 1, + "32": 1, + "34": 1, + "35": 2, + "38": 2, + "39": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 30.5 + }, + "zaparcie": { + "best": { + "word": "zaparcie", + "letters": 16 + }, + "worst": { + "word": "zaparcie", + "letters": 48 + }, + "totalWords": { + "2": 6, + "3": 3, + "4": 3, + "5": 3, + "6": 2 + }, + "totalLetters": { + "16": 1, + "18": 1, + "19": 2, + "20": 1, + "22": 1, + "23": 1, + "24": 1, + "27": 1, + "32": 1, + "34": 2, + "37": 2, + "43": 2, + "48": 1 + }, + "gamesPlayed": 17, + "medianWords": 3, + "medianLetters": 27 + }, + "ohydnie": { + "best": { + "word": "ohydnie", + "letters": 20 + }, + "worst": { + "word": "ohydnie", + "letters": 53 + }, + "totalWords": { + "3": 3, + "4": 7, + "5": 2, + "8": 1, + "11": 1 + }, + "totalLetters": { + "20": 1, + "23": 1, + "25": 1, + "27": 1, + "30": 1, + "31": 1, + "33": 1, + "34": 1, + "35": 1, + "37": 1, + "39": 2, + "50": 1, + "53": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 33.5 + }, + "bowiem": { + "best": { + "word": "bowiem", + "letters": 21 + }, + "worst": { + "word": "bowiem", + "letters": 47 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 9, + "5": 2, + "6": 1, + "7": 1, + "8": 1 + }, + "totalLetters": { + "21": 2, + "26": 1, + "27": 3, + "28": 1, + "29": 2, + "30": 1, + "31": 2, + "32": 1, + "33": 1, + "36": 1, + "42": 1, + "47": 1 + }, + "gamesPlayed": 17, + "medianWords": 4, + "medianLetters": 29 + }, + "gaza": { + "best": { + "word": "gaza", + "letters": 15 + }, + "worst": { + "word": "gaza", + "letters": 40 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 3, + "5": 5, + "6": 2, + "7": 1 + }, + "totalLetters": { + "15": 1, + "18": 1, + "19": 1, + "20": 1, + "22": 1, + "25": 1, + "26": 1, + "27": 1, + "28": 1, + "29": 1, + "30": 1, + "31": 2, + "34": 1, + "40": 1 + }, + "gamesPlayed": 15, + "medianWords": 5, + "medianLetters": 27 + }, + "gruźliczy": { + "best": { + "word": "gruźliczy", + "letters": 30 + }, + "worst": { + "word": "gruźliczy", + "letters": 73 + }, + "totalWords": { + "4": 3, + "5": 2, + "6": 2, + "7": 3, + "8": 2, + "10": 1 + }, + "totalLetters": { + "30": 1, + "33": 1, + "35": 1, + "38": 2, + "43": 1, + "44": 2, + "46": 2, + "49": 1, + "51": 1, + "73": 1 + }, + "gamesPlayed": 13, + "medianWords": 6, + "medianLetters": 44 + }, + "siać": { + "best": { + "word": "siać", + "letters": 12 + }, + "worst": { + "word": "siać", + "letters": 39 + }, + "totalWords": { + "2": 3, + "3": 3, + "4": 5, + "5": 1, + "6": 3, + "7": 1 + }, + "totalLetters": { + "12": 1, + "14": 1, + "15": 1, + "20": 1, + "22": 2, + "24": 1, + "25": 2, + "27": 1, + "30": 1, + "31": 1, + "32": 1, + "35": 1, + "39": 2 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 24.5 + }, + "sztos": { + "best": { + "word": "sztos", + "letters": 15 + }, + "worst": { + "word": "sztos", + "letters": 29 + }, + "totalWords": { + "2": 3, + "3": 6, + "4": 6, + "5": 1 + }, + "totalLetters": { + "15": 1, + "16": 1, + "19": 2, + "22": 5, + "23": 1, + "24": 1, + "25": 1, + "26": 1, + "27": 2, + "29": 1 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 20.5 + }, + "szpetny": { + "best": { + "word": "szpetny", + "letters": 17 + }, + "worst": { + "word": "szpetny", + "letters": 36 + }, + "totalWords": { + "2": 7, + "3": 6, + "4": 3, + "5": 2 + }, + "totalLetters": { + "17": 2, + "18": 1, + "19": 2, + "21": 1, + "22": 3, + "24": 1, + "25": 1, + "26": 3, + "29": 1, + "31": 1, + "32": 1, + "36": 1 + }, + "gamesPlayed": 18, + "medianWords": 2.5, + "medianLetters": 23 + }, + "wizja": { + "best": { + "word": "wizja", + "letters": 15 + }, + "worst": { + "word": "wizja", + "letters": 33 + }, + "totalWords": { + "2": 3, + "3": 7, + "4": 4, + "5": 1, + "6": 2 + }, + "totalLetters": { + "15": 1, + "16": 1, + "19": 1, + "20": 2, + "21": 1, + "22": 2, + "23": 1, + "24": 2, + "26": 1, + "27": 2, + "30": 1, + "32": 1, + "33": 1 + }, + "gamesPlayed": 17, + "medianWords": 3, + "medianLetters": 23 + }, + "tkanka": { + "best": { + "word": "tkanka", + "letters": 16 + }, + "worst": { + "word": "tkanka", + "letters": 48 + }, + "totalWords": { + "2": 4, + "3": 2, + "4": 4, + "5": 3, + "6": 2, + "7": 1, + "10": 1 + }, + "totalLetters": { + "16": 1, + "17": 1, + "18": 1, + "20": 2, + "23": 1, + "26": 1, + "27": 1, + "28": 2, + "31": 1, + "33": 1, + "36": 1, + "37": 1, + "39": 1, + "46": 1, + "48": 1 + }, + "gamesPlayed": 17, + "medianWords": 4, + "medianLetters": 28 + }, + "keja": { + "best": { + "word": "keja", + "letters": 13 + }, + "worst": { + "word": "keja", + "letters": 32 + }, + "totalWords": { + "2": 6, + "3": 3, + "4": 3, + "5": 2, + "7": 1 + }, + "totalLetters": { + "13": 1, + "14": 1, + "16": 1, + "19": 3, + "20": 1, + "22": 1, + "23": 1, + "24": 1, + "27": 1, + "28": 1, + "29": 1, + "31": 1, + "32": 1 + }, + "gamesPlayed": 15, + "medianWords": 3, + "medianLetters": 22 + }, + "ulica": { + "best": { + "word": "ulica", + "letters": 15 + }, + "worst": { + "word": "ulica", + "letters": 34 + }, + "totalWords": { + "2": 4, + "3": 1, + "4": 2, + "5": 4, + "6": 3 + }, + "totalLetters": { + "15": 2, + "18": 1, + "19": 1, + "26": 1, + "27": 1, + "29": 1, + "30": 2, + "31": 1, + "32": 3, + "34": 1 + }, + "gamesPlayed": 14, + "medianWords": 4.5, + "medianLetters": 29.5 + }, + "stajnia": { + "best": { + "word": "stajnia", + "letters": 17 + }, + "worst": { + "word": "stajnia", + "letters": 41 + }, + "totalWords": { + "2": 3, + "3": 8, + "4": 5, + "8": 1 + }, + "totalLetters": { + "17": 1, + "18": 1, + "21": 2, + "22": 1, + "25": 2, + "26": 2, + "27": 2, + "28": 1, + "29": 1, + "34": 1, + "39": 2, + "41": 1 + }, + "gamesPlayed": 17, + "medianWords": 3, + "medianLetters": 26 + }, + "leczenie": { + "best": { + "word": "leczenie", + "letters": 21 + }, + "worst": { + "word": "leczenie", + "letters": 55 + }, + "totalWords": { + "2": 2, + "3": 5, + "4": 2, + "5": 3, + "6": 2, + "7": 1 + }, + "totalLetters": { + "21": 1, + "22": 1, + "26": 1, + "27": 1, + "28": 2, + "30": 1, + "31": 2, + "36": 1, + "40": 2, + "44": 1, + "48": 1, + "55": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 31 + }, + "posiłek": { + "best": { + "word": "posiłek", + "letters": 14 + }, + "worst": { + "word": "posiłek", + "letters": 43 + }, + "totalWords": { + "2": 1, + "3": 6, + "4": 5, + "5": 3 + }, + "totalLetters": { + "14": 1, + "21": 1, + "22": 3, + "25": 1, + "27": 2, + "28": 1, + "29": 2, + "31": 1, + "32": 1, + "34": 1, + "43": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 27 + }, + "teren": { + "best": { + "word": "teren", + "letters": 15 + }, + "worst": { + "word": "teren", + "letters": 30 + }, + "totalWords": { + "2": 2, + "3": 8, + "4": 3 + }, + "totalLetters": { + "15": 1, + "17": 1, + "18": 2, + "19": 1, + "20": 2, + "21": 1, + "22": 1, + "24": 1, + "25": 1, + "26": 1, + "30": 1 + }, + "gamesPlayed": 13, + "medianWords": 3, + "medianLetters": 20 + }, + "niejaki": { + "best": { + "word": "niejaki", + "letters": 19 + }, + "worst": { + "word": "niejaki", + "letters": 39 + }, + "totalWords": { + "2": 1, + "3": 7, + "4": 6, + "5": 2, + "6": 1 + }, + "totalLetters": { + "19": 1, + "22": 1, + "25": 2, + "26": 2, + "29": 3, + "30": 1, + "33": 1, + "34": 1, + "36": 2, + "37": 1, + "38": 1, + "39": 1 + }, + "gamesPlayed": 17, + "medianWords": 4, + "medianLetters": 29 + }, + "burski": { + "best": { + "word": "burski", + "letters": 25 + }, + "worst": { + "word": "burski", + "letters": 48 + }, + "totalWords": { + "3": 2, + "4": 9, + "5": 2, + "7": 1 + }, + "totalLetters": { + "25": 2, + "26": 1, + "27": 2, + "28": 1, + "29": 2, + "30": 3, + "32": 1, + "33": 1, + "48": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 28.5 + }, + "trupa": { + "best": { + "word": "trupa", + "letters": 15 + }, + "worst": { + "word": "trupa", + "letters": 30 + }, + "totalWords": { + "2": 5, + "3": 6, + "4": 4, + "5": 2 + }, + "totalLetters": { + "15": 1, + "16": 1, + "18": 1, + "20": 3, + "21": 2, + "22": 3, + "23": 1, + "24": 2, + "26": 1, + "30": 2 + }, + "gamesPlayed": 17, + "medianWords": 3, + "medianLetters": 22 + }, + "ferma": { + "best": { + "word": "ferma", + "letters": 21 + }, + "worst": { + "word": "ferma", + "letters": 40 + }, + "totalWords": { + "3": 3, + "4": 7, + "5": 2, + "6": 3, + "7": 1 + }, + "totalLetters": { + "21": 2, + "22": 1, + "25": 1, + "26": 1, + "27": 1, + "28": 2, + "29": 2, + "31": 1, + "35": 2, + "36": 1, + "39": 1, + "40": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 28.5 + }, + "plwocina": { + "best": { + "word": "plwocina", + "letters": 20 + }, + "worst": { + "word": "plwocina", + "letters": 40 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 6, + "5": 3, + "6": 2 + }, + "totalLetters": { + "20": 1, + "25": 1, + "27": 1, + "29": 1, + "30": 1, + "33": 1, + "34": 2, + "35": 1, + "36": 2, + "37": 2, + "39": 1, + "40": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 34 + }, + "małżonka": { + "best": { + "word": "małżonka", + "letters": 25 + }, + "worst": { + "word": "małżonka", + "letters": 52 + }, + "totalWords": { + "3": 3, + "4": 5, + "5": 2, + "6": 2, + "7": 1, + "8": 3 + }, + "totalLetters": { + "25": 1, + "28": 2, + "30": 1, + "32": 1, + "34": 1, + "35": 1, + "36": 1, + "38": 1, + "40": 1, + "41": 1, + "46": 2, + "51": 1, + "52": 2 + }, + "gamesPlayed": 16, + "medianWords": 4.5, + "medianLetters": 37 + }, + "skórzasty": { + "best": { + "word": "skórzasty", + "letters": 32 + }, + "worst": { + "word": "skórzasty", + "letters": 60 + }, + "totalWords": { + "4": 4, + "5": 2, + "6": 2, + "7": 1, + "8": 2, + "10": 1 + }, + "totalLetters": { + "32": 1, + "34": 1, + "35": 2, + "36": 1, + "37": 1, + "40": 1, + "43": 1, + "45": 1, + "49": 2, + "60": 1 + }, + "gamesPlayed": 12, + "medianWords": 5.5, + "medianLetters": 38.5 + }, + "proroczo": { + "best": { + "word": "proroczo", + "letters": 19 + }, + "worst": { + "word": "proroczo", + "letters": 47 + }, + "totalWords": { + "2": 2, + "3": 4, + "4": 3, + "5": 4, + "6": 1, + "8": 1 + }, + "totalLetters": { + "19": 1, + "23": 1, + "24": 2, + "28": 2, + "32": 1, + "33": 1, + "34": 1, + "35": 1, + "36": 1, + "38": 2, + "42": 1, + "47": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 33 + }, + "wciąż": { + "best": { + "word": "wciąż", + "letters": 14 + }, + "worst": { + "word": "wciąż", + "letters": 35 + }, + "totalWords": { + "2": 2, + "3": 3, + "4": 5, + "5": 3, + "6": 3 + }, + "totalLetters": { + "14": 1, + "15": 1, + "20": 1, + "21": 1, + "23": 1, + "24": 1, + "26": 1, + "27": 1, + "28": 2, + "29": 1, + "32": 2, + "33": 2, + "35": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 27.5 + }, + "klepsydra": { + "best": { + "word": "klepsydra", + "letters": 24 + }, + "worst": { + "word": "klepsydra", + "letters": 72 + }, + "totalWords": { + "2": 2, + "3": 1, + "4": 8, + "5": 2, + "12": 1 + }, + "totalLetters": { + "24": 2, + "26": 1, + "28": 1, + "31": 1, + "33": 1, + "34": 1, + "35": 1, + "36": 1, + "37": 1, + "38": 1, + "40": 1, + "42": 1, + "72": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 34.5 + }, + "carbonara": { + "best": { + "word": "carbonara", + "letters": 21 + }, + "worst": { + "word": "carbonara", + "letters": 67 + }, + "totalWords": { + "2": 1, + "4": 2, + "5": 2, + "6": 3, + "8": 1, + "9": 1, + "10": 1, + "12": 1 + }, + "totalLetters": { + "21": 1, + "34": 1, + "36": 2, + "41": 1, + "43": 1, + "45": 1, + "47": 1, + "49": 1, + "53": 1, + "61": 1, + "67": 1 + }, + "gamesPlayed": 12, + "medianWords": 5.5, + "medianLetters": 44 + }, + "kadra": { + "best": { + "word": "kadra", + "letters": 17 + }, + "worst": { + "word": "kadra", + "letters": 33 + }, + "totalWords": { + "2": 2, + "3": 6, + "4": 6, + "5": 3, + "6": 1 + }, + "totalLetters": { + "17": 1, + "19": 1, + "20": 3, + "21": 1, + "23": 1, + "24": 2, + "26": 3, + "27": 1, + "29": 2, + "31": 2, + "33": 1 + }, + "gamesPlayed": 18, + "medianWords": 3.5, + "medianLetters": 25 + }, + "afrikaans": { + "best": { + "word": "afrikaans", + "letters": 27 + }, + "worst": { + "word": "afrikaans", + "letters": 162 + }, + "totalWords": { + "3": 2, + "4": 1, + "5": 2, + "6": 2, + "7": 1, + "8": 1, + "9": 2, + "12": 2, + "15": 1, + "33": 1 + }, + "totalLetters": { + "27": 1, + "28": 1, + "38": 1, + "39": 1, + "41": 1, + "45": 2, + "47": 1, + "49": 1, + "52": 1, + "68": 1, + "70": 2, + "83": 1, + "162": 1 + }, + "gamesPlayed": 15, + "medianWords": 7, + "medianLetters": 47 + }, + "ekwipunek": { + "best": { + "word": "ekwipunek", + "letters": 19 + }, + "worst": { + "word": "ekwipunek", + "letters": 66 + }, + "totalWords": { + "2": 1, + "3": 7, + "4": 2, + "5": 2, + "9": 1, + "11": 1, + "12": 1 + }, + "totalLetters": { + "19": 1, + "24": 1, + "26": 2, + "28": 1, + "29": 2, + "30": 2, + "32": 2, + "41": 1, + "44": 1, + "65": 1, + "66": 1 + }, + "gamesPlayed": 15, + "medianWords": 3, + "medianLetters": 30 + }, + "opornik": { + "best": { + "word": "opornik", + "letters": 17 + }, + "worst": { + "word": "opornik", + "letters": 53 + }, + "totalWords": { + "2": 2, + "3": 5, + "4": 4, + "5": 2, + "6": 1, + "7": 2 + }, + "totalLetters": { + "17": 1, + "18": 1, + "23": 1, + "26": 1, + "28": 2, + "31": 3, + "32": 1, + "35": 2, + "40": 2, + "42": 1, + "53": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 29.5 + }, + "inaczej": { + "best": { + "word": "inaczej", + "letters": 16 + }, + "worst": { + "word": "inaczej", + "letters": 61 + }, + "totalWords": { + "2": 4, + "3": 6, + "4": 2, + "5": 2, + "10": 1 + }, + "totalLetters": { + "16": 1, + "20": 1, + "22": 3, + "25": 3, + "27": 3, + "29": 1, + "31": 2, + "61": 1 + }, + "gamesPlayed": 15, + "medianWords": 3, + "medianLetters": 25 + }, + "plemienny": { + "best": { + "word": "plemienny", + "letters": 20 + }, + "worst": { + "word": "plemienny", + "letters": 39 + }, + "totalWords": { + "2": 1, + "3": 9, + "4": 1, + "5": 3 + }, + "totalLetters": { + "20": 1, + "23": 1, + "25": 2, + "26": 1, + "27": 1, + "30": 1, + "31": 1, + "32": 3, + "33": 1, + "38": 1, + "39": 1 + }, + "gamesPlayed": 14, + "medianWords": 2.5, + "medianLetters": 30.5 + }, + "żonglować": { + "best": { + "word": "żonglować", + "letters": 21 + }, + "worst": { + "word": "żonglować", + "letters": 72 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 2, + "5": 1, + "6": 6, + "7": 1, + "9": 1, + "11": 1 + }, + "totalLetters": { + "21": 1, + "23": 1, + "25": 1, + "31": 2, + "38": 1, + "40": 1, + "41": 1, + "43": 1, + "48": 3, + "49": 1, + "50": 1, + "65": 1, + "72": 1 + }, + "gamesPlayed": 16, + "medianWords": 5.5, + "medianLetters": 42 + }, + "żarnik": { + "best": { + "word": "żarnik", + "letters": 19 + }, + "worst": { + "word": "żarnik", + "letters": 39 + }, + "totalWords": { + "3": 5, + "4": 3, + "5": 6 + }, + "totalLetters": { + "19": 1, + "20": 1, + "24": 1, + "25": 1, + "27": 3, + "28": 5, + "29": 1, + "39": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 27.5 + }, + "cierpkość": { + "best": { + "word": "cierpkość", + "letters": 21 + }, + "worst": { + "word": "cierpkość", + "letters": 61 + }, + "totalWords": { + "2": 2, + "3": 7, + "4": 1, + "5": 1, + "6": 2, + "7": 3, + "8": 1 + }, + "totalLetters": { + "21": 1, + "23": 1, + "24": 1, + "26": 1, + "28": 2, + "30": 2, + "31": 1, + "33": 1, + "37": 1, + "40": 1, + "41": 1, + "47": 1, + "51": 1, + "54": 1, + "61": 1 + }, + "gamesPlayed": 17, + "medianWords": 3, + "medianLetters": 31 + }, + "schron": { + "best": { + "word": "schron", + "letters": 16 + }, + "worst": { + "word": "schron", + "letters": 31 + }, + "totalWords": { + "2": 5, + "3": 2, + "4": 5, + "5": 3 + }, + "totalLetters": { + "16": 2, + "18": 1, + "19": 1, + "21": 1, + "22": 1, + "23": 1, + "25": 1, + "26": 2, + "27": 1, + "30": 2, + "31": 2 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 25 + }, + "wieszczyć": { + "best": { + "word": "wieszczyć", + "letters": 21 + }, + "worst": { + "word": "wieszczyć", + "letters": 48 + }, + "totalWords": { + "2": 3, + "3": 3, + "4": 3, + "5": 3, + "7": 2 + }, + "totalLetters": { + "21": 1, + "22": 1, + "23": 1, + "25": 1, + "27": 1, + "29": 1, + "32": 1, + "34": 2, + "35": 2, + "38": 1, + "44": 1, + "48": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 33 + }, + "rekrut": { + "best": { + "word": "rekrut", + "letters": 16 + }, + "worst": { + "word": "rekrut", + "letters": 35 + }, + "totalWords": { + "2": 1, + "3": 10, + "4": 3, + "5": 1, + "7": 1 + }, + "totalLetters": { + "16": 1, + "21": 2, + "22": 2, + "24": 1, + "25": 3, + "26": 3, + "27": 1, + "28": 1, + "30": 1, + "35": 1 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 24.5 + }, + "nizina": { + "best": { + "word": "nizina", + "letters": 15 + }, + "worst": { + "word": "nizina", + "letters": 70 + }, + "totalWords": { + "2": 2, + "3": 2, + "4": 3, + "5": 3, + "6": 3, + "7": 1, + "14": 1 + }, + "totalLetters": { + "15": 1, + "20": 1, + "24": 1, + "25": 2, + "30": 1, + "32": 1, + "34": 3, + "35": 1, + "39": 1, + "40": 1, + "44": 1, + "70": 1 + }, + "gamesPlayed": 15, + "medianWords": 5, + "medianLetters": 34 + }, + "bardzo": { + "best": { + "word": "bardzo", + "letters": 15 + }, + "worst": { + "word": "bardzo", + "letters": 34 + }, + "totalWords": { + "2": 4, + "3": 6, + "4": 2, + "5": 1 + }, + "totalLetters": { + "15": 1, + "16": 1, + "17": 1, + "19": 1, + "20": 1, + "21": 1, + "22": 1, + "26": 2, + "27": 2, + "30": 1, + "34": 1 + }, + "gamesPlayed": 13, + "medianWords": 3, + "medianLetters": 22 + }, + "metr": { + "best": { + "word": "metr", + "letters": 14 + }, + "worst": { + "word": "metr", + "letters": 27 + }, + "totalWords": { + "2": 5, + "3": 4, + "4": 6 + }, + "totalLetters": { + "14": 1, + "15": 1, + "16": 1, + "18": 2, + "19": 2, + "20": 2, + "22": 1, + "23": 1, + "24": 1, + "26": 2, + "27": 1 + }, + "gamesPlayed": 15, + "medianWords": 3, + "medianLetters": 20 + }, + "litować": { + "best": { + "word": "litować", + "letters": 13 + }, + "worst": { + "word": "litować", + "letters": 57 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 3, + "5": 3, + "6": 2, + "7": 1, + "8": 1 + }, + "totalLetters": { + "13": 1, + "23": 1, + "24": 1, + "26": 2, + "28": 1, + "29": 1, + "30": 1, + "36": 1, + "40": 2, + "44": 2, + "45": 1, + "57": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 30 + }, + "nieobecny": { + "best": { + "word": "nieobecny", + "letters": 21 + }, + "worst": { + "word": "nieobecny", + "letters": 44 + }, + "totalWords": { + "3": 6, + "4": 4, + "5": 2, + "6": 1 + }, + "totalLetters": { + "21": 1, + "26": 2, + "27": 2, + "28": 1, + "29": 1, + "35": 1, + "37": 1, + "41": 1, + "42": 2, + "44": 1 + }, + "gamesPlayed": 13, + "medianWords": 4, + "medianLetters": 29 + }, + "zużycie": { + "best": { + "word": "zużycie", + "letters": 24 + }, + "worst": { + "word": "zużycie", + "letters": 46 + }, + "totalWords": { + "3": 4, + "4": 2, + "5": 3, + "6": 4, + "7": 2 + }, + "totalLetters": { + "24": 2, + "30": 2, + "31": 1, + "32": 1, + "33": 1, + "34": 1, + "35": 1, + "37": 1, + "40": 3, + "43": 1, + "46": 1 + }, + "gamesPlayed": 15, + "medianWords": 5, + "medianLetters": 34 + }, + "mroźny": { + "best": { + "word": "mroźny", + "letters": 19 + }, + "worst": { + "word": "mroźny", + "letters": 73 + }, + "totalWords": { + "3": 2, + "4": 1, + "5": 5, + "6": 3, + "7": 2, + "14": 1 + }, + "totalLetters": { + "19": 1, + "25": 1, + "27": 1, + "29": 1, + "31": 1, + "34": 1, + "35": 2, + "36": 1, + "38": 1, + "39": 1, + "42": 1, + "43": 1, + "73": 1 + }, + "gamesPlayed": 14, + "medianWords": 4.5, + "medianLetters": 34.5 + }, + "okultysta": { + "best": { + "word": "okultysta", + "letters": 23 + }, + "worst": { + "word": "okultysta", + "letters": 50 + }, + "totalWords": { + "2": 2, + "3": 3, + "4": 4, + "5": 2, + "10": 1 + }, + "totalLetters": { + "23": 1, + "24": 1, + "26": 1, + "28": 1, + "29": 1, + "30": 2, + "31": 1, + "32": 1, + "38": 1, + "47": 1, + "50": 1 + }, + "gamesPlayed": 12, + "medianWords": 3.5, + "medianLetters": 29.5 + }, + "dwuizbowy": { + "best": { + "word": "dwuizbowy", + "letters": 24 + }, + "worst": { + "word": "dwuizbowy", + "letters": 58 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 3, + "5": 2, + "6": 1, + "8": 1, + "9": 1 + }, + "totalLetters": { + "24": 1, + "25": 1, + "27": 1, + "29": 1, + "31": 1, + "32": 1, + "33": 3, + "38": 1, + "43": 1, + "57": 1, + "58": 1 + }, + "gamesPlayed": 13, + "medianWords": 4, + "medianLetters": 33 + }, + "diuna": { + "best": { + "word": "diuna", + "letters": 14 + }, + "worst": { + "word": "diuna", + "letters": 43 + }, + "totalWords": { + "2": 4, + "3": 5, + "4": 3, + "5": 1, + "8": 2 + }, + "totalLetters": { + "14": 1, + "15": 1, + "17": 2, + "19": 1, + "22": 1, + "23": 2, + "24": 1, + "25": 1, + "26": 1, + "32": 2, + "41": 1, + "43": 1 + }, + "gamesPlayed": 15, + "medianWords": 3, + "medianLetters": 23 + }, + "morena": { + "best": { + "word": "morena", + "letters": 18 + }, + "worst": { + "word": "morena", + "letters": 35 + }, + "totalWords": { + "2": 3, + "3": 7, + "4": 1, + "5": 2, + "6": 1 + }, + "totalLetters": { + "18": 1, + "20": 3, + "21": 1, + "22": 1, + "24": 1, + "25": 2, + "27": 1, + "28": 1, + "31": 1, + "34": 1, + "35": 1 + }, + "gamesPlayed": 14, + "medianWords": 2.5, + "medianLetters": 24.5 + }, + "podoficer": { + "best": { + "word": "podoficer", + "letters": 21 + }, + "worst": { + "word": "podoficer", + "letters": 61 + }, + "totalWords": { + "2": 2, + "3": 1, + "4": 5, + "5": 3, + "7": 1, + "8": 1, + "9": 2 + }, + "totalLetters": { + "21": 1, + "22": 1, + "30": 1, + "31": 2, + "32": 1, + "33": 2, + "37": 1, + "41": 1, + "42": 1, + "43": 1, + "50": 1, + "52": 1, + "61": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 33 + }, + "lobbing": { + "best": { + "word": "lobbing", + "letters": 22 + }, + "worst": { + "word": "lobbing", + "letters": 36 + }, + "totalWords": { + "3": 1, + "4": 9, + "5": 4, + "6": 2 + }, + "totalLetters": { + "22": 1, + "24": 1, + "27": 1, + "29": 1, + "30": 3, + "31": 4, + "32": 3, + "33": 1, + "36": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 30.5 + }, + "moszcz": { + "best": { + "word": "moszcz", + "letters": 15 + }, + "worst": { + "word": "moszcz", + "letters": 30 + }, + "totalWords": { + "2": 4, + "3": 4, + "4": 4, + "5": 2 + }, + "totalLetters": { + "15": 1, + "17": 1, + "18": 1, + "21": 3, + "24": 1, + "26": 2, + "27": 1, + "28": 2, + "29": 1, + "30": 1 + }, + "gamesPlayed": 14, + "medianWords": 2.5, + "medianLetters": 25 + }, + "spalanie": { + "best": { + "word": "spalanie", + "letters": 20 + }, + "worst": { + "word": "spalanie", + "letters": 57 + }, + "totalWords": { + "2": 1, + "3": 6, + "4": 7, + "5": 1, + "7": 1, + "8": 2 + }, + "totalLetters": { + "20": 1, + "22": 1, + "24": 1, + "26": 1, + "29": 2, + "30": 2, + "31": 2, + "32": 2, + "34": 1, + "36": 1, + "40": 1, + "44": 1, + "55": 1, + "57": 1 + }, + "gamesPlayed": 18, + "medianWords": 3.5, + "medianLetters": 30.5 + }, + "docierać": { + "best": { + "word": "docierać", + "letters": 25 + }, + "worst": { + "word": "docierać", + "letters": 45 + }, + "totalWords": { + "3": 6, + "4": 4, + "5": 3, + "6": 1, + "7": 1 + }, + "totalLetters": { + "25": 1, + "26": 1, + "28": 2, + "29": 2, + "30": 1, + "31": 1, + "32": 1, + "33": 1, + "34": 2, + "36": 1, + "39": 1, + "45": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 31 + }, + "grzesznik": { + "best": { + "word": "grzesznik", + "letters": 20 + }, + "worst": { + "word": "grzesznik", + "letters": 45 + }, + "totalWords": { + "2": 5, + "3": 7, + "4": 1, + "5": 3, + "7": 1 + }, + "totalLetters": { + "20": 2, + "21": 2, + "23": 1, + "24": 1, + "26": 1, + "27": 1, + "28": 2, + "29": 1, + "32": 1, + "36": 1, + "37": 2, + "42": 1, + "45": 1 + }, + "gamesPlayed": 17, + "medianWords": 3, + "medianLetters": 28 + }, + "komornik": { + "best": { + "word": "komornik", + "letters": 17 + }, + "worst": { + "word": "komornik", + "letters": 37 + }, + "totalWords": { + "2": 3, + "3": 7, + "4": 7, + "6": 1 + }, + "totalLetters": { + "17": 1, + "19": 1, + "21": 2, + "23": 1, + "25": 2, + "26": 2, + "28": 2, + "29": 3, + "30": 1, + "31": 2, + "37": 1 + }, + "gamesPlayed": 18, + "medianWords": 2.5, + "medianLetters": 27 + }, + "parsek": { + "best": { + "word": "parsek", + "letters": 15 + }, + "worst": { + "word": "parsek", + "letters": 35 + }, + "totalWords": { + "2": 3, + "3": 9, + "5": 2 + }, + "totalLetters": { + "15": 2, + "16": 1, + "21": 2, + "23": 1, + "24": 3, + "25": 1, + "26": 1, + "29": 1, + "30": 1, + "35": 1 + }, + "gamesPlayed": 14, + "medianWords": 2.5, + "medianLetters": 23.5 + }, + "kwatera": { + "best": { + "word": "kwatera", + "letters": 19 + }, + "worst": { + "word": "kwatera", + "letters": 42 + }, + "totalWords": { + "2": 2, + "3": 8, + "4": 3, + "5": 1, + "6": 1, + "7": 1 + }, + "totalLetters": { + "19": 1, + "21": 1, + "22": 2, + "24": 1, + "25": 2, + "27": 1, + "28": 1, + "29": 1, + "31": 2, + "33": 1, + "37": 1, + "41": 1, + "42": 1 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 27.5 + }, + "mokro": { + "best": { + "word": "mokro", + "letters": 14 + }, + "worst": { + "word": "mokro", + "letters": 32 + }, + "totalWords": { + "2": 3, + "3": 3, + "4": 9, + "5": 1 + }, + "totalLetters": { + "14": 1, + "16": 1, + "20": 2, + "21": 1, + "22": 1, + "24": 1, + "25": 1, + "26": 1, + "27": 3, + "28": 1, + "29": 1, + "30": 1, + "32": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 25.5 + }, + "stacja": { + "best": { + "word": "stacja", + "letters": 18 + }, + "worst": { + "word": "stacja", + "letters": 40 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 4, + "5": 2, + "6": 2, + "7": 1 + }, + "totalLetters": { + "18": 1, + "21": 1, + "22": 1, + "25": 2, + "26": 1, + "27": 2, + "28": 1, + "30": 1, + "32": 1, + "33": 1, + "36": 2, + "40": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 27 + }, + "koza": { + "best": { + "word": "koza", + "letters": 12 + }, + "worst": { + "word": "koza", + "letters": 35 + }, + "totalWords": { + "2": 9, + "3": 5, + "4": 2, + "5": 1, + "6": 1 + }, + "totalLetters": { + "12": 1, + "13": 1, + "14": 1, + "16": 2, + "18": 2, + "19": 3, + "20": 1, + "21": 1, + "23": 2, + "24": 1, + "25": 1, + "26": 1, + "35": 1 + }, + "gamesPlayed": 18, + "medianWords": 2.5, + "medianLetters": 18.5 + }, + "francuz": { + "best": { + "word": "francuz", + "letters": 20 + }, + "worst": { + "word": "francuz", + "letters": 46 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 4, + "5": 4, + "7": 1, + "9": 1 + }, + "totalLetters": { + "20": 1, + "24": 1, + "27": 1, + "28": 2, + "29": 2, + "30": 1, + "33": 1, + "34": 1, + "35": 1, + "36": 1, + "44": 1, + "46": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 29.5 + }, + "eufemizm": { + "best": { + "word": "eufemizm", + "letters": 18 + }, + "worst": { + "word": "eufemizm", + "letters": 41 + }, + "totalWords": { + "2": 2, + "3": 3, + "4": 2, + "5": 3, + "6": 3 + }, + "totalLetters": { + "18": 1, + "23": 1, + "24": 1, + "27": 3, + "31": 1, + "35": 3, + "37": 1, + "40": 1, + "41": 1 + }, + "gamesPlayed": 13, + "medianWords": 4, + "medianLetters": 31 + }, + "unia": { + "best": { + "word": "unia", + "letters": 13 + }, + "worst": { + "word": "unia", + "letters": 40 + }, + "totalWords": { + "2": 5, + "3": 2, + "4": 5, + "5": 2, + "6": 1, + "7": 1 + }, + "totalLetters": { + "13": 1, + "14": 2, + "19": 3, + "20": 1, + "24": 1, + "25": 1, + "26": 1, + "27": 1, + "28": 2, + "29": 1, + "34": 1, + "40": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 24.5 + }, + "walny": { + "best": { + "word": "walny", + "letters": 14 + }, + "worst": { + "word": "walny", + "letters": 32 + }, + "totalWords": { + "2": 6, + "3": 4, + "4": 3, + "5": 3 + }, + "totalLetters": { + "14": 1, + "16": 1, + "17": 2, + "18": 1, + "19": 2, + "22": 1, + "23": 1, + "25": 1, + "26": 1, + "27": 1, + "29": 2, + "30": 1, + "32": 1 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 22.5 + }, + "paskal": { + "best": { + "word": "paskal", + "letters": 16 + }, + "worst": { + "word": "paskal", + "letters": 33 + }, + "totalWords": { + "2": 1, + "3": 10, + "4": 2, + "6": 1 + }, + "totalLetters": { + "16": 1, + "21": 1, + "22": 1, + "23": 3, + "24": 2, + "25": 2, + "26": 3, + "33": 1 + }, + "gamesPlayed": 14, + "medianWords": 2.5, + "medianLetters": 23.5 + }, + "tanio": { + "best": { + "word": "tanio", + "letters": 14 + }, + "worst": { + "word": "tanio", + "letters": 34 + }, + "totalWords": { + "2": 7, + "3": 7, + "4": 1, + "5": 1, + "6": 1 + }, + "totalLetters": { + "14": 1, + "15": 2, + "16": 2, + "19": 2, + "20": 2, + "21": 2, + "22": 1, + "23": 2, + "25": 1, + "27": 1, + "34": 1 + }, + "gamesPlayed": 17, + "medianWords": 3, + "medianLetters": 20 + }, + "słonka": { + "best": { + "word": "słonka", + "letters": 21 + }, + "worst": { + "word": "słonka", + "letters": 49 + }, + "totalWords": { + "3": 6, + "4": 4, + "5": 1, + "6": 2, + "7": 2, + "8": 2 + }, + "totalLetters": { + "21": 1, + "22": 2, + "23": 1, + "24": 1, + "27": 1, + "28": 2, + "30": 1, + "34": 1, + "36": 1, + "38": 1, + "40": 1, + "42": 1, + "46": 2, + "49": 1 + }, + "gamesPlayed": 17, + "medianWords": 4, + "medianLetters": 30 + }, + "samotność": { + "best": { + "word": "samotność", + "letters": 21 + }, + "worst": { + "word": "samotność", + "letters": 61 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 3, + "5": 1, + "6": 1, + "11": 1 + }, + "totalLetters": { + "21": 1, + "25": 2, + "26": 1, + "27": 1, + "30": 2, + "32": 1, + "34": 2, + "44": 1, + "61": 1 + }, + "gamesPlayed": 12, + "medianWords": 3.5, + "medianLetters": 28.5 + }, + "szybki": { + "best": { + "word": "szybki", + "letters": 17 + }, + "worst": { + "word": "szybki", + "letters": 37 + }, + "totalWords": { + "2": 4, + "3": 4, + "4": 3, + "5": 4 + }, + "totalLetters": { + "17": 1, + "19": 2, + "20": 1, + "21": 3, + "24": 1, + "25": 1, + "26": 1, + "27": 1, + "28": 1, + "35": 1, + "36": 1, + "37": 1 + }, + "gamesPlayed": 15, + "medianWords": 3, + "medianLetters": 24 + }, + "wiatyk": { + "best": { + "word": "wiatyk", + "letters": 20 + }, + "worst": { + "word": "wiatyk", + "letters": 35 + }, + "totalWords": { + "2": 1, + "3": 8, + "4": 4, + "5": 3, + "6": 1 + }, + "totalLetters": { + "20": 1, + "21": 1, + "22": 2, + "23": 2, + "25": 2, + "27": 2, + "28": 1, + "29": 1, + "31": 2, + "32": 1, + "33": 1, + "35": 1 + }, + "gamesPlayed": 17, + "medianWords": 3, + "medianLetters": 27 + }, + "skalniak": { + "best": { + "word": "skalniak", + "letters": 18 + }, + "worst": { + "word": "skalniak", + "letters": 35 + }, + "totalWords": { + "2": 3, + "3": 10, + "4": 1 + }, + "totalLetters": { + "18": 1, + "19": 2, + "22": 1, + "23": 2, + "24": 1, + "25": 4, + "28": 1, + "32": 1, + "35": 1 + }, + "gamesPlayed": 14, + "medianWords": 2.5, + "medianLetters": 24.5 + }, + "zwój": { + "best": { + "word": "zwój", + "letters": 17 + }, + "worst": { + "word": "zwój", + "letters": 36 + }, + "totalWords": { + "3": 5, + "4": 4, + "5": 3, + "6": 2, + "7": 1 + }, + "totalLetters": { + "17": 1, + "19": 1, + "21": 1, + "23": 2, + "24": 3, + "26": 2, + "27": 2, + "29": 1, + "34": 1, + "36": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 24 + }, + "potykać": { + "best": { + "word": "potykać", + "letters": 20 + }, + "worst": { + "word": "potykać", + "letters": 48 + }, + "totalWords": { + "2": 1, + "3": 2, + "4": 8, + "5": 2, + "6": 1, + "7": 2 + }, + "totalLetters": { + "20": 1, + "23": 1, + "24": 1, + "25": 1, + "26": 1, + "29": 1, + "30": 1, + "31": 2, + "32": 1, + "35": 3, + "36": 1, + "44": 1, + "48": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 30.5 + }, + "uroczo": { + "best": { + "word": "uroczo", + "letters": 18 + }, + "worst": { + "word": "uroczo", + "letters": 47 + }, + "totalWords": { + "2": 1, + "3": 9, + "4": 2, + "5": 1, + "10": 1 + }, + "totalLetters": { + "18": 1, + "21": 4, + "23": 2, + "24": 1, + "25": 1, + "26": 1, + "27": 1, + "31": 1, + "32": 1, + "47": 1 + }, + "gamesPlayed": 14, + "medianWords": 2.5, + "medianLetters": 23.5 + }, + "homo": { + "best": { + "word": "homo", + "letters": 14 + }, + "worst": { + "word": "homo", + "letters": 32 + }, + "totalWords": { + "2": 2, + "3": 5, + "4": 6, + "5": 1, + "7": 1 + }, + "totalLetters": { + "14": 1, + "17": 1, + "19": 3, + "20": 2, + "22": 1, + "23": 1, + "24": 3, + "26": 2, + "32": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 22 + }, + "grdyka": { + "best": { + "word": "grdyka", + "letters": 17 + }, + "worst": { + "word": "grdyka", + "letters": 42 + }, + "totalWords": { + "2": 2, + "3": 5, + "4": 6, + "5": 2, + "6": 1, + "7": 1 + }, + "totalLetters": { + "17": 1, + "21": 1, + "23": 1, + "24": 2, + "25": 2, + "26": 1, + "27": 2, + "29": 1, + "30": 2, + "32": 1, + "35": 1, + "36": 1, + "42": 1 + }, + "gamesPlayed": 17, + "medianWords": 4, + "medianLetters": 27 + }, + "mezalians": { + "best": { + "word": "mezalians", + "letters": 18 + }, + "worst": { + "word": "mezalians", + "letters": 54 + }, + "totalWords": { + "2": 4, + "3": 4, + "4": 2, + "5": 1, + "6": 1, + "9": 1 + }, + "totalLetters": { + "18": 2, + "19": 1, + "23": 2, + "28": 2, + "29": 1, + "35": 1, + "36": 2, + "41": 1, + "54": 1 + }, + "gamesPlayed": 13, + "medianWords": 3, + "medianLetters": 28 + }, + "biały": { + "best": { + "word": "biały", + "letters": 18 + }, + "worst": { + "word": "biały", + "letters": 34 + }, + "totalWords": { + "3": 4, + "4": 7, + "5": 5 + }, + "totalLetters": { + "18": 1, + "21": 1, + "22": 1, + "23": 2, + "24": 1, + "26": 2, + "27": 1, + "28": 3, + "29": 1, + "30": 2, + "34": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 26.5 + }, + "czynność": { + "best": { + "word": "czynność", + "letters": 20 + }, + "worst": { + "word": "czynność", + "letters": 45 + }, + "totalWords": { + "2": 3, + "3": 7, + "4": 2, + "5": 2, + "7": 1 + }, + "totalLetters": { + "20": 1, + "21": 1, + "22": 1, + "23": 1, + "24": 3, + "25": 1, + "26": 1, + "27": 1, + "29": 1, + "30": 1, + "33": 1, + "36": 1, + "45": 1 + }, + "gamesPlayed": 15, + "medianWords": 3, + "medianLetters": 25 + }, + "kalendarz": { + "best": { + "word": "kalendarz", + "letters": 18 + }, + "worst": { + "word": "kalendarz", + "letters": 64 + }, + "totalWords": { + "2": 5, + "3": 3, + "4": 3, + "5": 2, + "6": 1, + "8": 1, + "9": 1 + }, + "totalLetters": { + "18": 1, + "19": 1, + "21": 1, + "23": 1, + "24": 1, + "25": 1, + "28": 1, + "30": 1, + "32": 1, + "33": 1, + "34": 1, + "37": 1, + "38": 1, + "42": 1, + "57": 1, + "64": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 31 + }, + "janowiec": { + "best": { + "word": "janowiec", + "letters": 18 + }, + "worst": { + "word": "janowiec", + "letters": 56 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 4, + "5": 3, + "6": 1, + "7": 2, + "8": 1 + }, + "totalLetters": { + "18": 1, + "24": 1, + "25": 1, + "30": 1, + "33": 1, + "35": 1, + "36": 2, + "40": 2, + "41": 1, + "43": 1, + "44": 1, + "46": 1, + "52": 1, + "56": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 38 + }, + "kolumba": { + "best": { + "word": "kolumba", + "letters": 25 + }, + "worst": { + "word": "kolumba", + "letters": 43 + }, + "totalWords": { + "3": 3, + "4": 5, + "5": 3, + "6": 3, + "8": 1 + }, + "totalLetters": { + "25": 1, + "26": 2, + "29": 2, + "30": 2, + "31": 2, + "32": 1, + "33": 1, + "36": 1, + "39": 1, + "40": 1, + "43": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 31 + }, + "łaźnia": { + "best": { + "word": "łaźnia", + "letters": 20 + }, + "worst": { + "word": "łaźnia", + "letters": 44 + }, + "totalWords": { + "3": 3, + "4": 3, + "5": 6, + "6": 3 + }, + "totalLetters": { + "20": 1, + "21": 1, + "23": 2, + "25": 2, + "26": 1, + "29": 1, + "31": 2, + "35": 3, + "41": 1, + "44": 1 + }, + "gamesPlayed": 15, + "medianWords": 5, + "medianLetters": 29 + }, + "marksista": { + "best": { + "word": "marksista", + "letters": 19 + }, + "worst": { + "word": "marksista", + "letters": 46 + }, + "totalWords": { + "2": 2, + "3": 3, + "4": 5, + "5": 2, + "6": 1, + "7": 2 + }, + "totalLetters": { + "19": 1, + "24": 1, + "25": 1, + "26": 1, + "28": 1, + "30": 1, + "35": 1, + "36": 1, + "37": 2, + "39": 1, + "42": 1, + "43": 1, + "45": 1, + "46": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 36 + }, + "przenikać": { + "best": { + "word": "przenikać", + "letters": 22 + }, + "worst": { + "word": "przenikać", + "letters": 61 + }, + "totalWords": { + "2": 1, + "3": 6, + "4": 4, + "5": 3, + "6": 1, + "7": 2, + "8": 1 + }, + "totalLetters": { + "22": 1, + "25": 3, + "26": 2, + "29": 2, + "30": 1, + "31": 1, + "36": 1, + "40": 1, + "44": 1, + "48": 1, + "53": 1, + "57": 1, + "60": 1, + "61": 1 + }, + "gamesPlayed": 18, + "medianWords": 3.5, + "medianLetters": 30.5 + }, + "cytryna": { + "best": { + "word": "cytryna", + "letters": 16 + }, + "worst": { + "word": "cytryna", + "letters": 48 + }, + "totalWords": { + "2": 4, + "3": 3, + "4": 5, + "6": 2, + "7": 1 + }, + "totalLetters": { + "16": 1, + "20": 1, + "22": 2, + "24": 1, + "27": 1, + "28": 2, + "29": 2, + "31": 2, + "33": 1, + "34": 1, + "48": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 28 + }, + "położna": { + "best": { + "word": "położna", + "letters": 13 + }, + "worst": { + "word": "położna", + "letters": 50 + }, + "totalWords": { + "2": 4, + "3": 4, + "4": 3, + "5": 4, + "6": 1, + "10": 1 + }, + "totalLetters": { + "13": 1, + "15": 1, + "18": 2, + "22": 1, + "23": 2, + "26": 1, + "29": 2, + "30": 1, + "33": 1, + "35": 1, + "36": 1, + "39": 1, + "44": 1, + "50": 1 + }, + "gamesPlayed": 17, + "medianWords": 4, + "medianLetters": 29 + }, + "piec": { + "best": { + "word": "piec", + "letters": 14 + }, + "worst": { + "word": "piec", + "letters": 33 + }, + "totalWords": { + "2": 8, + "3": 6, + "4": 1, + "6": 1 + }, + "totalLetters": { + "14": 4, + "15": 1, + "16": 1, + "17": 1, + "18": 2, + "19": 2, + "20": 2, + "23": 2, + "33": 1 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 17.5 + }, + "lodowe": { + "best": { + "word": "lodowe", + "letters": 20 + }, + "worst": { + "word": "lodowe", + "letters": 42 + }, + "totalWords": { + "3": 6, + "4": 2, + "5": 6, + "6": 2 + }, + "totalLetters": { + "20": 1, + "21": 1, + "23": 1, + "25": 1, + "27": 2, + "28": 2, + "30": 1, + "33": 3, + "34": 1, + "35": 1, + "36": 1, + "42": 1 + }, + "gamesPlayed": 16, + "medianWords": 4.5, + "medianLetters": 29 + }, + "żwirownia": { + "best": { + "word": "żwirownia", + "letters": 21 + }, + "worst": { + "word": "żwirownia", + "letters": 62 + }, + "totalWords": { + "2": 1, + "3": 6, + "4": 6, + "5": 3, + "6": 1, + "10": 1 + }, + "totalLetters": { + "21": 1, + "22": 1, + "26": 2, + "27": 1, + "28": 2, + "29": 3, + "31": 1, + "32": 1, + "35": 1, + "36": 1, + "41": 1, + "42": 1, + "44": 1, + "62": 1 + }, + "gamesPlayed": 18, + "medianWords": 3.5, + "medianLetters": 28.5 + }, + "lima": { + "best": { + "word": "lima", + "letters": 20 + }, + "worst": { + "word": "lima", + "letters": 38 + }, + "totalWords": { + "3": 3, + "4": 6, + "5": 2, + "6": 1, + "7": 3 + }, + "totalLetters": { + "20": 1, + "21": 2, + "22": 1, + "24": 1, + "27": 3, + "28": 1, + "29": 1, + "31": 2, + "36": 1, + "37": 1, + "38": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 27 + }, + "przyczepa": { + "best": { + "word": "przyczepa", + "letters": 22 + }, + "worst": { + "word": "przyczepa", + "letters": 48 + }, + "totalWords": { + "2": 3, + "3": 3, + "4": 8, + "5": 1, + "6": 2 + }, + "totalLetters": { + "22": 1, + "24": 2, + "27": 1, + "28": 1, + "29": 1, + "30": 1, + "31": 1, + "32": 1, + "34": 2, + "35": 1, + "37": 1, + "40": 1, + "41": 1, + "46": 1, + "48": 1 + }, + "gamesPlayed": 17, + "medianWords": 4, + "medianLetters": 32 + }, + "rozbiór": { + "best": { + "word": "rozbiór", + "letters": 20 + }, + "worst": { + "word": "rozbiór", + "letters": 56 + }, + "totalWords": { + "3": 6, + "4": 3, + "5": 2, + "6": 2, + "7": 1 + }, + "totalLetters": { + "20": 1, + "22": 1, + "24": 1, + "25": 3, + "27": 1, + "30": 1, + "31": 1, + "34": 1, + "35": 1, + "36": 1, + "38": 1, + "56": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 28.5 + }, + "olbrzymka": { + "best": { + "word": "olbrzymka", + "letters": 20 + }, + "worst": { + "word": "olbrzymka", + "letters": 83 + }, + "totalWords": { + "2": 2, + "3": 3, + "4": 5, + "5": 1, + "6": 1, + "7": 1, + "14": 2 + }, + "totalLetters": { + "20": 1, + "24": 1, + "25": 1, + "29": 1, + "30": 1, + "31": 1, + "32": 1, + "33": 1, + "34": 1, + "37": 1, + "38": 1, + "44": 1, + "45": 1, + "71": 1, + "83": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 33 + }, + "żłobek": { + "best": { + "word": "żłobek", + "letters": 20 + }, + "worst": { + "word": "żłobek", + "letters": 41 + }, + "totalWords": { + "3": 2, + "4": 7, + "5": 4, + "8": 1 + }, + "totalLetters": { + "20": 1, + "22": 1, + "27": 3, + "29": 1, + "30": 3, + "31": 2, + "32": 1, + "35": 1, + "41": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 29.5 + }, + "wznosić": { + "best": { + "word": "wznosić", + "letters": 17 + }, + "worst": { + "word": "wznosić", + "letters": 44 + }, + "totalWords": { + "2": 2, + "3": 10, + "4": 1, + "5": 2, + "6": 1 + }, + "totalLetters": { + "17": 1, + "20": 1, + "21": 2, + "23": 3, + "24": 1, + "25": 2, + "27": 1, + "28": 2, + "34": 1, + "36": 1, + "44": 1 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 24.5 + }, + "wartownia": { + "best": { + "word": "wartownia", + "letters": 22 + }, + "worst": { + "word": "wartownia", + "letters": 64 + }, + "totalWords": { + "2": 2, + "3": 3, + "4": 6, + "6": 2, + "8": 1 + }, + "totalLetters": { + "22": 1, + "24": 1, + "25": 1, + "27": 1, + "29": 1, + "33": 1, + "35": 1, + "38": 1, + "41": 2, + "42": 1, + "43": 1, + "46": 1, + "64": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 36.5 + }, + "bezcelowy": { + "best": { + "word": "bezcelowy", + "letters": 28 + }, + "worst": { + "word": "bezcelowy", + "letters": 52 + }, + "totalWords": { + "3": 3, + "4": 6, + "6": 2, + "7": 2, + "8": 1 + }, + "totalLetters": { + "28": 2, + "29": 1, + "30": 1, + "31": 1, + "32": 1, + "33": 3, + "37": 1, + "39": 1, + "45": 2, + "52": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 32.5 + }, + "target": { + "best": { + "word": "target", + "letters": 19 + }, + "worst": { + "word": "target", + "letters": 45 + }, + "totalWords": { + "3": 4, + "4": 6, + "5": 3, + "6": 1, + "8": 1 + }, + "totalLetters": { + "19": 1, + "22": 1, + "23": 3, + "28": 1, + "29": 3, + "30": 1, + "31": 1, + "35": 1, + "38": 1, + "40": 1, + "45": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 29 + }, + "laufer": { + "best": { + "word": "laufer", + "letters": 22 + }, + "worst": { + "word": "laufer", + "letters": 42 + }, + "totalWords": { + "3": 3, + "4": 3, + "5": 4, + "6": 3, + "7": 1 + }, + "totalLetters": { + "22": 1, + "25": 2, + "26": 2, + "29": 1, + "31": 2, + "34": 1, + "36": 2, + "37": 1, + "38": 1, + "42": 1 + }, + "gamesPlayed": 14, + "medianWords": 4.5, + "medianLetters": 30 + }, + "pożądany": { + "best": { + "word": "pożądany", + "letters": 16 + }, + "worst": { + "word": "pożądany", + "letters": 45 + }, + "totalWords": { + "2": 2, + "3": 5, + "4": 4, + "5": 1, + "6": 2, + "7": 1 + }, + "totalLetters": { + "16": 1, + "18": 1, + "20": 1, + "23": 2, + "25": 1, + "27": 1, + "32": 1, + "38": 1, + "39": 4, + "40": 1, + "45": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 32 + }, + "makaron": { + "best": { + "word": "makaron", + "letters": 21 + }, + "worst": { + "word": "makaron", + "letters": 42 + }, + "totalWords": { + "2": 2, + "3": 11, + "4": 3, + "7": 1 + }, + "totalLetters": { + "21": 1, + "22": 3, + "23": 1, + "24": 1, + "25": 3, + "26": 4, + "27": 2, + "28": 1, + "42": 1 + }, + "gamesPlayed": 17, + "medianWords": 3, + "medianLetters": 25 + }, + "elektryk": { + "best": { + "word": "elektryk", + "letters": 20 + }, + "worst": { + "word": "elektryk", + "letters": 44 + }, + "totalWords": { + "2": 2, + "3": 8, + "4": 5, + "6": 1, + "7": 1 + }, + "totalLetters": { + "20": 1, + "23": 2, + "24": 1, + "25": 2, + "26": 1, + "27": 3, + "28": 1, + "30": 1, + "31": 2, + "32": 1, + "38": 1, + "44": 1 + }, + "gamesPlayed": 17, + "medianWords": 3, + "medianLetters": 27 + }, + "nurek": { + "best": { + "word": "nurek", + "letters": 14 + }, + "worst": { + "word": "nurek", + "letters": 29 + }, + "totalWords": { + "2": 8, + "3": 6, + "4": 2, + "5": 1 + }, + "totalLetters": { + "14": 2, + "15": 2, + "16": 1, + "17": 2, + "18": 1, + "19": 1, + "20": 1, + "21": 1, + "22": 1, + "24": 1, + "25": 1, + "26": 1, + "27": 1, + "29": 1 + }, + "gamesPlayed": 17, + "medianWords": 3, + "medianLetters": 19 + }, + "reumatyzm": { + "best": { + "word": "reumatyzm", + "letters": 19 + }, + "worst": { + "word": "reumatyzm", + "letters": 57 + }, + "totalWords": { + "2": 2, + "3": 1, + "4": 6, + "5": 2, + "6": 1, + "8": 1, + "9": 1 + }, + "totalLetters": { + "19": 1, + "21": 1, + "29": 1, + "32": 1, + "34": 3, + "35": 1, + "36": 1, + "38": 1, + "43": 2, + "46": 1, + "57": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 34.5 + }, + "lapis": { + "best": { + "word": "lapis", + "letters": 17 + }, + "worst": { + "word": "lapis", + "letters": 34 + }, + "totalWords": { + "2": 2, + "3": 6, + "4": 4, + "5": 1 + }, + "totalLetters": { + "17": 1, + "19": 1, + "20": 2, + "22": 1, + "23": 1, + "24": 1, + "25": 3, + "27": 2, + "34": 1 + }, + "gamesPlayed": 13, + "medianWords": 3, + "medianLetters": 24 + }, + "tęczówka": { + "best": { + "word": "tęczówka", + "letters": 24 + }, + "worst": { + "word": "tęczówka", + "letters": 49 + }, + "totalWords": { + "3": 3, + "4": 5, + "5": 3, + "8": 1 + }, + "totalLetters": { + "24": 1, + "27": 1, + "28": 1, + "29": 1, + "33": 1, + "34": 1, + "35": 2, + "36": 1, + "39": 1, + "43": 1, + "49": 1 + }, + "gamesPlayed": 12, + "medianWords": 3.5, + "medianLetters": 34.5 + }, + "wspaniały": { + "best": { + "word": "wspaniały", + "letters": 21 + }, + "worst": { + "word": "wspaniały", + "letters": 41 + }, + "totalWords": { + "2": 3, + "3": 7, + "4": 3, + "6": 2 + }, + "totalLetters": { + "21": 2, + "22": 1, + "24": 1, + "26": 1, + "27": 3, + "28": 1, + "29": 1, + "30": 1, + "32": 1, + "35": 1, + "38": 1, + "41": 1 + }, + "gamesPlayed": 15, + "medianWords": 3, + "medianLetters": 27 + }, + "gliniarz": { + "best": { + "word": "gliniarz", + "letters": 21 + }, + "worst": { + "word": "gliniarz", + "letters": 48 + }, + "totalWords": { + "2": 3, + "3": 4, + "4": 7, + "5": 1, + "6": 1 + }, + "totalLetters": { + "21": 1, + "23": 2, + "25": 1, + "26": 2, + "28": 2, + "29": 1, + "31": 2, + "33": 1, + "34": 2, + "35": 1, + "48": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 28.5 + }, + "lambda": { + "best": { + "word": "lambda", + "letters": 21 + }, + "worst": { + "word": "lambda", + "letters": 38 + }, + "totalWords": { + "3": 3, + "4": 8, + "5": 4, + "6": 1 + }, + "totalLetters": { + "21": 1, + "22": 1, + "25": 2, + "27": 1, + "28": 3, + "29": 2, + "30": 3, + "31": 1, + "34": 1, + "38": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 28.5 + }, + "wycieczka": { + "best": { + "word": "wycieczka", + "letters": 19 + }, + "worst": { + "word": "wycieczka", + "letters": 51 + }, + "totalWords": { + "2": 2, + "3": 6, + "4": 2, + "7": 1 + }, + "totalLetters": { + "19": 1, + "23": 1, + "26": 1, + "27": 3, + "28": 1, + "29": 1, + "34": 1, + "39": 1, + "51": 1 + }, + "gamesPlayed": 11, + "medianWords": 3, + "medianLetters": 27 + }, + "kątomierz": { + "best": { + "word": "kątomierz", + "letters": 23 + }, + "worst": { + "word": "kątomierz", + "letters": 46 + }, + "totalWords": { + "2": 2, + "3": 2, + "4": 5, + "5": 3, + "6": 1, + "7": 2, + "8": 1 + }, + "totalLetters": { + "23": 1, + "24": 1, + "28": 1, + "30": 3, + "31": 1, + "34": 1, + "39": 1, + "41": 2, + "42": 1, + "43": 2, + "44": 1, + "46": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 36.5 + }, + "plamka": { + "best": { + "word": "plamka", + "letters": 17 + }, + "worst": { + "word": "plamka", + "letters": 33 + }, + "totalWords": { + "2": 2, + "3": 4, + "4": 7, + "5": 2 + }, + "totalLetters": { + "17": 2, + "21": 1, + "23": 2, + "24": 1, + "25": 1, + "26": 3, + "28": 1, + "29": 1, + "30": 2, + "33": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 26 + }, + "dresiarz": { + "best": { + "word": "dresiarz", + "letters": 17 + }, + "worst": { + "word": "dresiarz", + "letters": 40 + }, + "totalWords": { + "2": 3, + "3": 5, + "4": 4, + "5": 1 + }, + "totalLetters": { + "17": 1, + "19": 1, + "20": 1, + "25": 2, + "26": 1, + "28": 1, + "31": 2, + "32": 2, + "37": 1, + "40": 1 + }, + "gamesPlayed": 13, + "medianWords": 3, + "medianLetters": 28 + }, + "barion": { + "best": { + "word": "barion", + "letters": 18 + }, + "worst": { + "word": "barion", + "letters": 36 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 7, + "5": 4 + }, + "totalLetters": { + "18": 1, + "21": 1, + "23": 1, + "27": 2, + "29": 2, + "31": 2, + "32": 1, + "33": 2, + "34": 2, + "36": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 31 + }, + "celibat": { + "best": { + "word": "celibat", + "letters": 18 + }, + "worst": { + "word": "celibat", + "letters": 38 + }, + "totalWords": { + "2": 2, + "3": 8, + "4": 5, + "5": 1 + }, + "totalLetters": { + "18": 1, + "19": 1, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "26": 1, + "28": 2, + "29": 2, + "30": 1, + "33": 1, + "34": 1, + "37": 1, + "38": 1 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 27 + }, + "ząbek": { + "best": { + "word": "ząbek", + "letters": 13 + }, + "worst": { + "word": "ząbek", + "letters": 35 + }, + "totalWords": { + "2": 3, + "3": 5, + "4": 5, + "5": 1, + "6": 1 + }, + "totalLetters": { + "13": 2, + "14": 1, + "18": 1, + "19": 1, + "21": 1, + "22": 1, + "25": 2, + "26": 1, + "27": 1, + "31": 1, + "32": 2, + "35": 1 + }, + "gamesPlayed": 15, + "medianWords": 3, + "medianLetters": 25 + }, + "płciowy": { + "best": { + "word": "płciowy", + "letters": 18 + }, + "worst": { + "word": "płciowy", + "letters": 62 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 4, + "5": 2, + "7": 1, + "8": 1, + "11": 1 + }, + "totalLetters": { + "18": 1, + "24": 2, + "25": 3, + "29": 1, + "30": 1, + "31": 1, + "35": 1, + "36": 1, + "37": 1, + "48": 1, + "56": 1, + "62": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 30 + }, + "nobel": { + "best": { + "word": "nobel", + "letters": 15 + }, + "worst": { + "word": "nobel", + "letters": 33 + }, + "totalWords": { + "2": 6, + "3": 3, + "4": 2, + "5": 4, + "6": 1 + }, + "totalLetters": { + "15": 1, + "17": 2, + "18": 1, + "19": 2, + "20": 1, + "23": 2, + "25": 1, + "28": 1, + "30": 1, + "31": 1, + "32": 2, + "33": 1 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 21.5 + }, + "choleryk": { + "best": { + "word": "choleryk", + "letters": 18 + }, + "worst": { + "word": "choleryk", + "letters": 47 + }, + "totalWords": { + "2": 3, + "3": 8, + "4": 3, + "5": 1, + "7": 1 + }, + "totalLetters": { + "18": 1, + "20": 1, + "21": 1, + "22": 1, + "23": 2, + "24": 1, + "25": 2, + "26": 1, + "27": 1, + "29": 1, + "30": 1, + "33": 1, + "35": 1, + "47": 1 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 24.5 + }, + "szampon": { + "best": { + "word": "szampon", + "letters": 17 + }, + "worst": { + "word": "szampon", + "letters": 33 + }, + "totalWords": { + "2": 7, + "3": 6, + "4": 5, + "5": 1 + }, + "totalLetters": { + "17": 1, + "18": 2, + "19": 1, + "21": 2, + "22": 3, + "23": 1, + "24": 1, + "25": 1, + "27": 1, + "28": 2, + "29": 1, + "31": 1, + "32": 1, + "33": 1 + }, + "gamesPlayed": 19, + "medianWords": 3, + "medianLetters": 23 + }, + "smar": { + "best": { + "word": "smar", + "letters": 13 + }, + "worst": { + "word": "smar", + "letters": 29 + }, + "totalWords": { + "2": 3, + "3": 6, + "4": 3, + "5": 2, + "6": 1 + }, + "totalLetters": { + "13": 1, + "18": 1, + "19": 1, + "20": 3, + "21": 1, + "22": 2, + "24": 2, + "25": 1, + "26": 1, + "29": 2 + }, + "gamesPlayed": 15, + "medianWords": 3, + "medianLetters": 22 + }, + "szukajcie": { + "best": { + "word": "szukajcie", + "letters": 19 + }, + "worst": { + "word": "szukajcie", + "letters": 46 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 4, + "5": 2, + "6": 2, + "7": 1 + }, + "totalLetters": { + "19": 1, + "25": 1, + "27": 1, + "28": 1, + "29": 1, + "30": 1, + "32": 1, + "33": 1, + "36": 1, + "43": 1, + "44": 1, + "45": 1, + "46": 2 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 32.5 + }, + "galion": { + "best": { + "word": "galion", + "letters": 23 + }, + "worst": { + "word": "galion", + "letters": 51 + }, + "totalWords": { + "3": 4, + "4": 7, + "5": 2, + "6": 1, + "8": 1 + }, + "totalLetters": { + "23": 1, + "24": 3, + "25": 1, + "26": 1, + "27": 2, + "30": 1, + "31": 1, + "32": 2, + "33": 1, + "37": 1, + "51": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 27 + }, + "różaniec": { + "best": { + "word": "różaniec", + "letters": 22 + }, + "worst": { + "word": "różaniec", + "letters": 64 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 3, + "5": 3, + "6": 1, + "7": 1, + "10": 1 + }, + "totalLetters": { + "22": 3, + "26": 1, + "27": 1, + "30": 2, + "31": 1, + "32": 1, + "34": 1, + "35": 1, + "36": 1, + "39": 1, + "45": 1, + "64": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 31 + }, + "anomalny": { + "best": { + "word": "anomalny", + "letters": 20 + }, + "worst": { + "word": "anomalny", + "letters": 58 + }, + "totalWords": { + "2": 1, + "3": 8, + "4": 2, + "6": 2, + "7": 1, + "8": 2 + }, + "totalLetters": { + "20": 1, + "24": 1, + "25": 1, + "26": 1, + "27": 1, + "28": 2, + "29": 1, + "30": 1, + "31": 1, + "32": 1, + "34": 1, + "36": 1, + "41": 1, + "47": 1, + "58": 1 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 29.5 + }, + "restart": { + "best": { + "word": "restart", + "letters": 18 + }, + "worst": { + "word": "restart", + "letters": 50 + }, + "totalWords": { + "2": 2, + "3": 5, + "4": 3, + "6": 3, + "7": 2, + "8": 1 + }, + "totalLetters": { + "18": 1, + "21": 2, + "23": 1, + "25": 1, + "27": 1, + "28": 1, + "29": 2, + "31": 1, + "37": 1, + "39": 1, + "40": 1, + "45": 1, + "47": 1, + "50": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 28.5 + }, + "granola": { + "best": { + "word": "granola", + "letters": 19 + }, + "worst": { + "word": "granola", + "letters": 47 + }, + "totalWords": { + "2": 2, + "3": 5, + "4": 5, + "6": 2, + "7": 1 + }, + "totalLetters": { + "19": 1, + "20": 1, + "24": 2, + "26": 1, + "27": 2, + "28": 1, + "29": 1, + "32": 1, + "33": 2, + "34": 1, + "35": 1, + "47": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 28 + }, + "obiecanki": { + "best": { + "word": "obiecanki", + "letters": 19 + }, + "worst": { + "word": "obiecanki", + "letters": 50 + }, + "totalWords": { + "2": 4, + "3": 2, + "4": 3, + "5": 3, + "6": 2, + "7": 1, + "8": 1 + }, + "totalLetters": { + "19": 1, + "22": 1, + "23": 1, + "24": 1, + "28": 1, + "31": 1, + "37": 2, + "38": 2, + "40": 1, + "41": 1, + "42": 1, + "43": 1, + "46": 1, + "50": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 37.5 + }, + "weselny": { + "best": { + "word": "weselny", + "letters": 19 + }, + "worst": { + "word": "weselny", + "letters": 31 + }, + "totalWords": { + "2": 3, + "3": 9, + "4": 3, + "6": 1 + }, + "totalLetters": { + "19": 1, + "20": 3, + "21": 2, + "22": 1, + "23": 2, + "24": 1, + "26": 1, + "27": 1, + "29": 3, + "31": 1 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 22.5 + }, + "lesbijski": { + "best": { + "word": "lesbijski", + "letters": 27 + }, + "worst": { + "word": "lesbijski", + "letters": 51 + }, + "totalWords": { + "3": 3, + "4": 4, + "5": 4, + "6": 1, + "7": 1, + "9": 2 + }, + "totalLetters": { + "27": 1, + "29": 1, + "30": 2, + "31": 1, + "32": 1, + "38": 2, + "39": 2, + "41": 1, + "46": 1, + "48": 1, + "50": 1, + "51": 1 + }, + "gamesPlayed": 15, + "medianWords": 5, + "medianLetters": 38 + }, + "zależnie": { + "best": { + "word": "zależnie", + "letters": 25 + }, + "worst": { + "word": "zależnie", + "letters": 69 + }, + "totalWords": { + "3": 3, + "4": 2, + "5": 5, + "6": 1, + "7": 1, + "8": 1, + "10": 1, + "11": 1 + }, + "totalLetters": { + "25": 1, + "28": 1, + "30": 1, + "31": 1, + "34": 1, + "40": 1, + "41": 1, + "42": 1, + "44": 2, + "45": 1, + "49": 1, + "52": 1, + "60": 1, + "69": 1 + }, + "gamesPlayed": 15, + "medianWords": 5, + "medianLetters": 42 + }, + "konać": { + "best": { + "word": "konać", + "letters": 17 + }, + "worst": { + "word": "konać", + "letters": 39 + }, + "totalWords": { + "2": 3, + "3": 5, + "4": 3, + "5": 3, + "6": 1 + }, + "totalLetters": { + "17": 2, + "20": 1, + "21": 1, + "22": 1, + "24": 2, + "25": 1, + "27": 1, + "28": 1, + "32": 3, + "33": 1, + "39": 1 + }, + "gamesPlayed": 15, + "medianWords": 3, + "medianLetters": 25 + }, + "papież": { + "best": { + "word": "papież", + "letters": 18 + }, + "worst": { + "word": "papież", + "letters": 39 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 7, + "5": 2 + }, + "totalLetters": { + "18": 1, + "20": 1, + "23": 1, + "25": 3, + "27": 4, + "28": 1, + "30": 2, + "39": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 26 + }, + "osada": { + "best": { + "word": "osada", + "letters": 16 + }, + "worst": { + "word": "osada", + "letters": 37 + }, + "totalWords": { + "2": 4, + "3": 2, + "4": 5, + "5": 1, + "6": 2, + "7": 1 + }, + "totalLetters": { + "16": 1, + "17": 2, + "19": 1, + "20": 2, + "21": 1, + "25": 1, + "27": 1, + "29": 2, + "30": 2, + "36": 1, + "37": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 25 + }, + "mumia": { + "best": { + "word": "mumia", + "letters": 19 + }, + "worst": { + "word": "mumia", + "letters": 34 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 4, + "5": 3 + }, + "totalLetters": { + "19": 2, + "21": 1, + "22": 1, + "25": 1, + "26": 1, + "27": 2, + "30": 2, + "32": 1, + "34": 1 + }, + "gamesPlayed": 12, + "medianWords": 3.5, + "medianLetters": 26.5 + }, + "napięty": { + "best": { + "word": "napięty", + "letters": 21 + }, + "worst": { + "word": "napięty", + "letters": 42 + }, + "totalWords": { + "3": 6, + "4": 3, + "5": 3, + "7": 2 + }, + "totalLetters": { + "21": 1, + "24": 2, + "25": 2, + "27": 2, + "28": 1, + "31": 1, + "36": 2, + "37": 1, + "41": 1, + "42": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 27.5 + }, + "falset": { + "best": { + "word": "falset", + "letters": 15 + }, + "worst": { + "word": "falset", + "letters": 45 + }, + "totalWords": { + "2": 1, + "3": 7, + "4": 4, + "5": 2, + "7": 1, + "8": 1 + }, + "totalLetters": { + "15": 1, + "21": 1, + "22": 2, + "24": 2, + "26": 2, + "27": 2, + "29": 2, + "32": 1, + "37": 1, + "38": 1, + "45": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 26.5 + }, + "gender": { + "best": { + "word": "gender", + "letters": 18 + }, + "worst": { + "word": "gender", + "letters": 35 + }, + "totalWords": { + "2": 1, + "3": 5, + "4": 5, + "5": 2, + "6": 2 + }, + "totalLetters": { + "18": 1, + "23": 1, + "24": 2, + "25": 2, + "26": 1, + "27": 2, + "28": 2, + "31": 1, + "32": 1, + "35": 2 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 27 + }, + "drink": { + "best": { + "word": "drink", + "letters": 14 + }, + "worst": { + "word": "drink", + "letters": 28 + }, + "totalWords": { + "2": 7, + "3": 5, + "4": 3, + "5": 1 + }, + "totalLetters": { + "14": 1, + "15": 1, + "16": 1, + "17": 3, + "19": 2, + "20": 1, + "22": 1, + "25": 1, + "26": 3, + "27": 1, + "28": 1 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 19.5 + }, + "symbioza": { + "best": { + "word": "symbioza", + "letters": 18 + }, + "worst": { + "word": "symbioza", + "letters": 34 + }, + "totalWords": { + "2": 2, + "3": 7, + "4": 3, + "5": 1 + }, + "totalLetters": { + "18": 2, + "22": 1, + "24": 2, + "26": 1, + "29": 1, + "30": 2, + "31": 3, + "34": 1 + }, + "gamesPlayed": 13, + "medianWords": 3, + "medianLetters": 29 + }, + "wyjec": { + "best": { + "word": "wyjec", + "letters": 14 + }, + "worst": { + "word": "wyjec", + "letters": 30 + }, + "totalWords": { + "2": 3, + "3": 8, + "4": 2, + "5": 1, + "6": 1 + }, + "totalLetters": { + "14": 1, + "15": 1, + "20": 2, + "21": 1, + "22": 2, + "24": 2, + "25": 2, + "26": 2, + "29": 1, + "30": 1 + }, + "gamesPlayed": 15, + "medianWords": 3, + "medianLetters": 24 + }, + "mile": { + "best": { + "word": "mile", + "letters": 14 + }, + "worst": { + "word": "mile", + "letters": 34 + }, + "totalWords": { + "2": 3, + "3": 5, + "4": 4, + "5": 3, + "6": 1 + }, + "totalLetters": { + "14": 1, + "15": 1, + "18": 1, + "19": 1, + "20": 2, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "27": 1, + "28": 2, + "29": 1, + "31": 1, + "34": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 22.5 + }, + "odznaczać": { + "best": { + "word": "odznaczać", + "letters": 24 + }, + "worst": { + "word": "odznaczać", + "letters": 48 + }, + "totalWords": { + "3": 6, + "4": 7, + "5": 1 + }, + "totalLetters": { + "24": 1, + "25": 1, + "26": 1, + "27": 1, + "29": 2, + "31": 2, + "33": 2, + "34": 1, + "35": 1, + "38": 1, + "48": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 30 + }, + "plon": { + "best": { + "word": "plon", + "letters": 14 + }, + "worst": { + "word": "plon", + "letters": 32 + }, + "totalWords": { + "2": 5, + "3": 7, + "4": 1, + "5": 2, + "6": 1 + }, + "totalLetters": { + "14": 1, + "15": 2, + "19": 5, + "20": 1, + "21": 1, + "22": 1, + "23": 1, + "25": 1, + "27": 1, + "30": 1, + "32": 1 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 19.5 + }, + "liczenie": { + "best": { + "word": "liczenie", + "letters": 21 + }, + "worst": { + "word": "liczenie", + "letters": 53 + }, + "totalWords": { + "2": 3, + "3": 5, + "4": 4, + "5": 3, + "6": 2, + "8": 1 + }, + "totalLetters": { + "21": 1, + "22": 2, + "23": 1, + "25": 1, + "27": 1, + "29": 1, + "31": 1, + "33": 2, + "34": 1, + "35": 1, + "38": 1, + "39": 1, + "42": 1, + "43": 1, + "50": 1, + "53": 1 + }, + "gamesPlayed": 18, + "medianWords": 3.5, + "medianLetters": 32 + }, + "świetlana": { + "best": { + "word": "świetlana", + "letters": 21 + }, + "worst": { + "word": "świetlana", + "letters": 46 + }, + "totalWords": { + "2": 1, + "3": 6, + "4": 2, + "5": 3, + "6": 2, + "7": 1 + }, + "totalLetters": { + "21": 1, + "25": 2, + "26": 1, + "30": 2, + "31": 1, + "32": 1, + "33": 1, + "40": 2, + "42": 1, + "43": 2, + "46": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 32 + }, + "odrobina": { + "best": { + "word": "odrobina", + "letters": 20 + }, + "worst": { + "word": "odrobina", + "letters": 47 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 6, + "5": 3, + "8": 1 + }, + "totalLetters": { + "20": 1, + "22": 1, + "26": 1, + "29": 1, + "31": 1, + "32": 1, + "34": 1, + "36": 1, + "37": 3, + "38": 2, + "47": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 35 + }, + "chanson": { + "best": { + "word": "chanson", + "letters": 31 + }, + "worst": { + "word": "chanson", + "letters": 54 + }, + "totalWords": { + "4": 2, + "5": 1, + "6": 5, + "7": 2, + "10": 1 + }, + "totalLetters": { + "31": 1, + "33": 1, + "34": 1, + "36": 2, + "37": 1, + "39": 1, + "40": 1, + "42": 1, + "43": 1, + "54": 1 + }, + "gamesPlayed": 11, + "medianWords": 6, + "medianLetters": 37 + }, + "rykoszet": { + "best": { + "word": "rykoszet", + "letters": 17 + }, + "worst": { + "word": "rykoszet", + "letters": 38 + }, + "totalWords": { + "2": 6, + "3": 7, + "4": 1, + "5": 1, + "6": 1 + }, + "totalLetters": { + "17": 1, + "19": 1, + "20": 1, + "21": 1, + "23": 2, + "24": 1, + "27": 4, + "28": 1, + "30": 1, + "36": 2, + "38": 1 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 25.5 + }, + "brąz": { + "best": { + "word": "brąz", + "letters": 17 + }, + "worst": { + "word": "brąz", + "letters": 35 + }, + "totalWords": { + "2": 1, + "3": 3, + "4": 6, + "5": 2, + "6": 2 + }, + "totalLetters": { + "17": 1, + "19": 1, + "20": 1, + "22": 2, + "23": 2, + "25": 2, + "26": 1, + "29": 1, + "31": 1, + "32": 1, + "35": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 24 + }, + "elka": { + "best": { + "word": "elka", + "letters": 14 + }, + "worst": { + "word": "elka", + "letters": 52 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 3, + "5": 2, + "6": 1, + "7": 1, + "8": 1, + "9": 1 + }, + "totalLetters": { + "14": 1, + "19": 1, + "20": 1, + "22": 1, + "23": 1, + "26": 1, + "27": 1, + "29": 2, + "30": 1, + "36": 1, + "38": 1, + "48": 1, + "52": 1 + }, + "gamesPlayed": 14, + "medianWords": 3.5, + "medianLetters": 28 + }, + "wróbelek": { + "best": { + "word": "wróbelek", + "letters": 21 + }, + "worst": { + "word": "wróbelek", + "letters": 49 + }, + "totalWords": { + "3": 6, + "4": 2, + "5": 5, + "7": 2 + }, + "totalLetters": { + "21": 1, + "24": 1, + "25": 1, + "26": 1, + "27": 2, + "30": 1, + "31": 1, + "32": 2, + "34": 2, + "38": 1, + "39": 1, + "49": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 31 + }, + "dokonanie": { + "best": { + "word": "dokonanie", + "letters": 28 + }, + "worst": { + "word": "dokonanie", + "letters": 56 + }, + "totalWords": { + "3": 4, + "4": 4, + "5": 1, + "6": 5, + "8": 1 + }, + "totalLetters": { + "28": 2, + "30": 1, + "32": 1, + "34": 1, + "35": 1, + "36": 1, + "38": 1, + "40": 1, + "42": 1, + "45": 1, + "51": 1, + "52": 1, + "55": 1, + "56": 1 + }, + "gamesPlayed": 15, + "medianWords": 4, + "medianLetters": 38 + }, + "klasa": { + "best": { + "word": "klasa", + "letters": 18 + }, + "worst": { + "word": "klasa", + "letters": 31 + }, + "totalWords": { + "2": 1, + "3": 10, + "4": 6, + "5": 1 + }, + "totalLetters": { + "18": 1, + "19": 5, + "20": 1, + "21": 1, + "23": 1, + "24": 3, + "25": 3, + "27": 1, + "29": 1, + "31": 1 + }, + "gamesPlayed": 18, + "medianWords": 2.5, + "medianLetters": 23.5 + }, + "żeremie": { + "best": { + "word": "żeremie", + "letters": 24 + }, + "worst": { + "word": "żeremie", + "letters": 52 + }, + "totalWords": { + "3": 1, + "4": 3, + "5": 1, + "6": 7, + "7": 1, + "9": 1 + }, + "totalLetters": { + "24": 2, + "31": 2, + "32": 2, + "33": 3, + "34": 1, + "35": 1, + "38": 1, + "43": 1, + "52": 1 + }, + "gamesPlayed": 14, + "medianWords": 5.5, + "medianLetters": 32.5 + }, + "zaufanie": { + "best": { + "word": "zaufanie", + "letters": 30 + }, + "worst": { + "word": "zaufanie", + "letters": 67 + }, + "totalWords": { + "3": 2, + "4": 4, + "5": 5, + "6": 3, + "7": 3, + "8": 1, + "9": 1 + }, + "totalLetters": { + "30": 2, + "31": 1, + "33": 1, + "36": 1, + "38": 1, + "39": 1, + "41": 1, + "42": 2, + "44": 1, + "48": 1, + "52": 1, + "53": 1, + "59": 1, + "60": 1, + "63": 1, + "66": 1, + "67": 1 + }, + "gamesPlayed": 19, + "medianWords": 5, + "medianLetters": 42 + }, + "kremacja": { + "best": { + "word": "kremacja", + "letters": 17 + }, + "worst": { + "word": "kremacja", + "letters": 48 + }, + "totalWords": { + "2": 3, + "3": 7, + "4": 1, + "5": 2, + "8": 1 + }, + "totalLetters": { + "17": 1, + "20": 1, + "22": 1, + "23": 1, + "25": 1, + "26": 2, + "27": 1, + "28": 1, + "29": 1, + "30": 1, + "35": 1, + "36": 1, + "48": 1 + }, + "gamesPlayed": 14, + "medianWords": 2.5, + "medianLetters": 26.5 + }, + "wyrosnąć": { + "best": { + "word": "wyrosnąć", + "letters": 16 + }, + "worst": { + "word": "wyrosnąć", + "letters": 49 + }, + "totalWords": { + "2": 1, + "3": 6, + "4": 4, + "5": 1, + "6": 3, + "8": 1 + }, + "totalLetters": { + "16": 1, + "24": 1, + "26": 1, + "28": 2, + "29": 1, + "30": 2, + "31": 1, + "35": 2, + "36": 1, + "39": 1, + "46": 1, + "48": 1, + "49": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 30.5 + }, + "ronić": { + "best": { + "word": "ronić", + "letters": 16 + }, + "worst": { + "word": "ronić", + "letters": 55 + }, + "totalWords": { + "2": 1, + "3": 4, + "4": 2, + "5": 1, + "6": 5, + "7": 1, + "8": 3 + }, + "totalLetters": { + "16": 1, + "22": 1, + "24": 1, + "25": 2, + "28": 1, + "29": 1, + "31": 1, + "32": 2, + "34": 1, + "37": 1, + "38": 1, + "39": 1, + "50": 1, + "55": 2 + }, + "gamesPlayed": 17, + "medianWords": 6, + "medianLetters": 32 + }, + "dżin": { + "best": { + "word": "dżin", + "letters": 17 + }, + "worst": { + "word": "dżin", + "letters": 39 + }, + "totalWords": { + "3": 3, + "4": 6, + "5": 4, + "6": 1, + "7": 2 + }, + "totalLetters": { + "17": 1, + "21": 2, + "23": 1, + "24": 2, + "25": 1, + "27": 1, + "28": 1, + "30": 2, + "31": 2, + "35": 1, + "37": 1, + "39": 1 + }, + "gamesPlayed": 16, + "medianWords": 3.5, + "medianLetters": 27.5 + }, + "próżno": { + "best": { + "word": "próżno", + "letters": 19 + }, + "worst": { + "word": "próżno", + "letters": 50 + }, + "totalWords": { + "2": 1, + "3": 1, + "4": 11, + "5": 2, + "6": 1, + "9": 1 + }, + "totalLetters": { + "19": 1, + "21": 1, + "23": 1, + "25": 1, + "27": 2, + "28": 1, + "30": 3, + "31": 2, + "32": 1, + "34": 1, + "35": 1, + "36": 1, + "50": 1 + }, + "gamesPlayed": 17, + "medianWords": 4, + "medianLetters": 30 + }, + "tesla": { + "best": { + "word": "tesla", + "letters": 16 + }, + "worst": { + "word": "tesla", + "letters": 37 + }, + "totalWords": { + "2": 2, + "3": 9, + "5": 4, + "7": 1 + }, + "totalLetters": { + "16": 1, + "18": 1, + "19": 1, + "20": 1, + "21": 1, + "22": 1, + "23": 1, + "24": 1, + "25": 2, + "26": 1, + "28": 1, + "29": 1, + "30": 1, + "36": 1, + "37": 1 + }, + "gamesPlayed": 16, + "medianWords": 2.5, + "medianLetters": 24.5 + } + }, + "hardestWords": [ + "helsiński", + "afrikaans", + "gruźliczy", + "carbonara", + "fumarola", + "żonglować", + "zaufanie", + "zależnie", + "dagerotyp", + "popijać", + "egzegeza", + "prazeodym", + "hinduista", + "skórzasty", + "lesbijski", + "rozumować", + "dokonanie", + "janowiec", + "stracenie", + "obrzędowy", + "obiecanki", + "chanson", + "konsjerż", + "groźnie", + "wymuszać", + "rogówka", + "małżonka", + "kątomierz", + "wartownia", + "chatroom", + "sprośnie", + "marksista", + "karmiciel", + "wzburzony", + "skrywać", + "pozbawiać", + "pogórze", + "odrobina", + "barwena", + "drumla", + "garłacz", + "mroźny", + "klepsydra", + "reumatyzm", + "tęczówka", + "nizina", + "zużycie", + "względem", + "agitator", + "topnienie" + ], + "bestWords": [ + "piec", + "spór", + "koza", + "zanik", + "nurek", + "drink", + "plon", + "wyrok", + "tanio", + "metr", + "teren", + "wenus", + "moher", + "zmowa", + "więc", + "sztos", + "rumak", + "zakon", + "rydz", + "znawca", + "nobel", + "riposta", + "psuć", + "zderzak", + "trupa", + "smok", + "zaspać", + "keja", + "smar", + "bardzo", + "front", + "homo", + "szkoła", + "pszenica", + "wykaz", + "klips", + "radiowy", + "śpiewać", + "walny", + "weselny", + "okruch", + "mile", + "wydatek", + "szpetny", + "czeluść", + "sanie", + "meduza", + "wojna", + "szampon", + "wizja" + ] +} \ No newline at end of file diff --git a/scripts/hejto/2024-summary-data.ts b/scripts/hejto/2024-summary-data.ts index 158a654a5..890f5e3bf 100644 --- a/scripts/hejto/2024-summary-data.ts +++ b/scripts/hejto/2024-summary-data.ts @@ -1,5 +1,5 @@ import fs from "fs"; -import chalk from 'chalk'; +import chalk from "chalk"; import { ParsedHejtoResult } from "./hejto-types"; @@ -31,8 +31,15 @@ export const resultsBySource: { ...results10.resultsBySource, }; -const { resultsByUser, datesWithoutWordsByUser, resultsByLang, resultsByWord, wordsByDate } = Object.values(resultsBySource) +const { + resultsByUser, + datesWithoutWordsByUser, + resultsByLang, + resultsByWord, + wordsByDate, +} = Object.values(resultsBySource) .flatMap((v) => v) + .filter((v) => v.date?.includes("2024")) .reduce( ( stack: { @@ -45,24 +52,24 @@ const { resultsByUser, datesWithoutWordsByUser, resultsByLang, resultsByWord, wo }; datesWithoutWordsByUser: { [lang: string]: { - [nick: string]: string[], + [nick: string]: string[]; }; - }, + }; resultsByWord: { [lang: string]: { - [word: string]: ParsedHejtoResult[]; + [word: string]: ParsedHejtoResult[]; }; - }, + }; resultsByLang: { [lang: string]: ParsedHejtoResult[]; }; wordsByDate: { [lang: string]: { [date: string]: { - [word: string]: number, - }, - }, - }, + [word: string]: number; + }; + }; + }; }, item ) => { @@ -79,7 +86,7 @@ const { resultsByUser, datesWithoutWordsByUser, resultsByLang, resultsByWord, wo stack.resultsByWord[lang] = {}; } - if (typeof word === 'string' && word.length > 3) { + if (typeof word === "string" && word.length > 3) { if (stack.resultsByWord[lang][word]) { stack.resultsByWord[lang][word].push(item); } else { @@ -140,28 +147,33 @@ const { resultsByUser, datesWithoutWordsByUser, resultsByLang, resultsByWord, wo } ); -console.log(chalk.green(`Results dicitonaries created.`)); +console.log(chalk.green(`Results dictionaries created.`)); const langs = Object.keys(resultsByLang); const wordsByDates = langs.reduce((globalStack, lang) => { - const wordsByDatesForLang = Object.entries(wordsByDate[lang]).map(([date, usageByWord]) => { - const [mostPopularWord] = Object.entries((usageByWord)).sort(([, a], [, b]) => b - a)[0]; + const wordsByDatesForLang = Object.entries(wordsByDate[lang]) + .map(([date, usageByWord]) => { + const [mostPopularWord] = Object.entries(usageByWord).sort( + ([, a], [, b]) => b - a + )[0]; return { date, mostPopularWord }; - }, []).sort((a, b) => { - const [aDay, aMonth] = a.date.split('.').map(Number); - const [bDay, bMonth] = b.date.split('.').map(Number); - - const aRank = (aMonth * 1000) + aDay; - const bRank = (bMonth * 1000) + bDay; - - return bRank - aRank; - }).reduce((stack: { [date: string]: string }, item) => { - stack[item.date] = item.mostPopularWord; - - return stack; - }, {}); + }, []) + .sort((a, b) => { + const [aDay, aMonth] = a.date.split(".").map(Number); + const [bDay, bMonth] = b.date.split(".").map(Number); + + const aRank = aMonth * 1000 + aDay; + const bRank = bMonth * 1000 + bDay; + + return bRank - aRank; + }) + .reduce((stack: { [date: string]: string }, item) => { + stack[item.date] = item.mostPopularWord; + + return stack; + }, {}); globalStack[lang] = wordsByDatesForLang; @@ -169,12 +181,14 @@ const wordsByDates = langs.reduce((globalStack, lang) => { }, {}); const datesByWords = langs.reduce((stack, lang) => { - stack[lang] = Object.fromEntries(Object.entries(wordsByDates[lang]).map(([key, value]) => ([value, key]))); - + stack[lang] = Object.fromEntries( + Object.entries(wordsByDates[lang]).map(([key, value]) => [value, key]) + ); + return stack; }, {}); -console.log('Words by dates index created.'); +console.log("Words by dates index created."); const acceptedWordsByLang = langs.reduce((stack, lang) => { stack[lang] = Object.values(wordsByDates[lang]); @@ -183,40 +197,46 @@ const acceptedWordsByLang = langs.reduce((stack, lang) => { }, {}); const rankByWords = langs.reduce((globalStack, lang) => { - globalStack[lang] = Object.entries(resultsByWord[lang]).reduce((stack, [word, results]) => { - if (word && acceptedWordsByLang[lang].includes(word)) { - stack[word] = getInfoAboutResults(results); - } + globalStack[lang] = Object.entries(resultsByWord[lang]).reduce( + (stack, [word, results]) => { + if (word && acceptedWordsByLang[lang].includes(word)) { + stack[word] = getInfoAboutResults(results); + } - return stack; - }, {}) + return stack; + }, + {} + ); return globalStack; }, {}); const wordsByRank = langs.reduce((stack, lang) => { stack[lang] = { - hardestWords: [...Object.keys(rankByWords[lang])].sort( - (a, b) => { - const medianLettersA = rankByWords[lang][a].medianLetters; - const medianLettersB = rankByWords[lang][b].medianLetters; - - if (medianLettersA === medianLettersB) { - const medianWordsA = rankByWords[lang][a].medianWords; - const medianWordsB = rankByWords[lang][b].medianWords; + hardestWords: [...Object.keys(rankByWords[lang])] + .sort((a, b) => { + const medianLettersA = rankByWords[lang][a].medianLetters; + const medianLettersB = rankByWords[lang][b].medianLetters; - if (medianWordsA === medianWordsB) { - return rankByWords[lang][b].gamesPlayed - rankByWords[lang][a].gamesPlayed; - } + if (medianLettersA === medianLettersB) { + const medianWordsA = rankByWords[lang][a].medianWords; + const medianWordsB = rankByWords[lang][b].medianWords; - return medianWordsB - medianWordsA; + if (medianWordsA === medianWordsB) { + return ( + rankByWords[lang][b].gamesPlayed - + rankByWords[lang][a].gamesPlayed + ); } - return medianLettersB - medianLettersA; - }, - ).slice(0, 50), - bestWords: [...Object.keys(rankByWords[lang])].sort( - (a, b) => { + return medianWordsB - medianWordsA; + } + + return medianLettersB - medianLettersA; + }) + .slice(0, 50), + bestWords: [...Object.keys(rankByWords[lang])] + .sort((a, b) => { const medianLettersA = rankByWords[lang][a].medianLetters; const medianLettersB = rankByWords[lang][b].medianLetters; @@ -225,15 +245,18 @@ const wordsByRank = langs.reduce((stack, lang) => { const medianWordsB = rankByWords[lang][b].medianWords; if (medianWordsA === medianWordsB) { - return rankByWords[lang][b].gamesPlayed - rankByWords[lang][a].gamesPlayed; + return ( + rankByWords[lang][b].gamesPlayed - + rankByWords[lang][a].gamesPlayed + ); } return medianWordsA - medianWordsB; } return medianLettersA - medianLettersB; - }, - ).slice(0, 50), + }) + .slice(0, 50), }; return stack; @@ -242,59 +265,96 @@ const wordsByRank = langs.reduce((stack, lang) => { const usersSummary = Object.entries(resultsByUser).reduce( (stack, [lang, resultsByNickForLang]) => { stack[lang] = Object.keys(resultsByNickForLang).reduce((stack, nick) => { - const acceptedResults = Object.values(resultsByNickForLang[nick]).filter(({ result }) => acceptedWordsByLang[lang].includes(result?.word)); - - const bestForDates = acceptedResults.filter( - ({ result }) => result?.word && rankByWords[lang][result.word].best.letters === result.totalLetters - ).map(({ result }) => result?.date || '') || []; + const acceptedResults = Object.values(resultsByNickForLang[nick]).filter( + ({ result }) => acceptedWordsByLang[lang].includes(result?.word) + ); - const worstForDates = acceptedResults.filter( - ({ result }) => result?.word && rankByWords[lang][result.word].worst.letters === result.totalLetters - ).map(({ result }) => result?.date || '') || []; + const bestForDates = + acceptedResults + .filter( + ({ result }) => + result?.word && + rankByWords[lang][result.word].best.letters === + result.totalLetters + ) + .map(({ result }) => result?.date || "") || []; + + const worstForDates = + acceptedResults + .filter( + ({ result }) => + result?.word && + rankByWords[lang][result.word].worst.letters === + result.totalLetters + ) + .map(({ result }) => result?.date || "") || []; const { userStatsByMonths, bestForDatesForMonths, worstForDatesForMonths, - } = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12].reduce((stack, month) => { - const acceptedResultsForMonth = acceptedResults.filter((item) => Number(item?.result?.date?.split('.')[1]) === month); + } = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12].reduce( + (stack, month) => { + const acceptedResultsForMonth = acceptedResults.filter( + (item) => Number(item?.result?.date?.split(".")[1]) === month + ); + + if (acceptedResultsForMonth.length > 0) { + stack.userStatsByMonths[month] = getInfoAboutResults( + acceptedResultsForMonth + ); + } - if (acceptedResultsForMonth.length > 0) { - stack.userStatsByMonths[month] = getInfoAboutResults(acceptedResultsForMonth); - } + const bestForDatesForMonth = bestForDates.filter((date) => + date.endsWith(`${month}.2024`) + ); - const bestForDatesForMonth = bestForDates.filter((date) => date.endsWith(`${month}.2024`)); - - if (bestForDatesForMonth.length > 0) { - stack.bestForDatesForMonths[month] = bestForDatesForMonth; - } + if (bestForDatesForMonth.length > 0) { + stack.bestForDatesForMonths[month] = bestForDatesForMonth; + } - const worstForDatesForMonth = worstForDates.filter((date) => date.endsWith(`${month}.2024`)); - - if (worstForDatesForMonth.length > 0) { - stack.worstForDatesForMonths[month] = worstForDatesForMonth; - } + const worstForDatesForMonth = worstForDates.filter((date) => + date.endsWith(`${month}.2024`) + ); + + if (worstForDatesForMonth.length > 0) { + stack.worstForDatesForMonths[month] = worstForDatesForMonth; + } - return stack; - }, { - userStatsByMonths: {}, - bestForDatesForMonths: {}, - worstForDatesForMonths: {}, - }); - - const best50Results = acceptedResults.length >= 50 ? [...acceptedResults].sort( - (a, b) => (a.result?.totalLetters || 0) - (b.result?.totalLetters || 0) - ).slice(0, 50) : undefined; - - const hardest50Results = [...acceptedResults].filter( - ({ result }) => wordsByRank[lang].hardestWords.includes(result?.word) - ).sort( - (a, b) => (a.result?.totalLetters || 0) - (b.result?.totalLetters || 0) + return stack; + }, + { + userStatsByMonths: {}, + bestForDatesForMonths: {}, + worstForDatesForMonths: {}, + } ); + const best50Results = + acceptedResults.length >= 50 + ? [...acceptedResults] + .sort( + (a, b) => + (a.result?.totalLetters || 0) - (b.result?.totalLetters || 0) + ) + .slice(0, 50) + : undefined; + + const hardest50Results = [...acceptedResults] + .filter(({ result }) => + wordsByRank[lang].hardestWords.includes(result?.word) + ) + .sort( + (a, b) => + (a.result?.totalLetters || 0) - (b.result?.totalLetters || 0) + ); + stack[nick] = { best50: best50Results ? getInfoAboutResults(best50Results) : undefined, - hardest50: hardest50Results && hardest50Results.length > 35 ? getInfoAboutResults(hardest50Results) : undefined, + hardest50: + hardest50Results && hardest50Results.length > 35 + ? getInfoAboutResults(hardest50Results) + : undefined, results: { year: getInfoAboutResults(acceptedResults), ...userStatsByMonths, @@ -306,8 +366,8 @@ const usersSummary = Object.entries(resultsByUser).reduce( worstDates: { year: worstForDates, ...worstForDatesForMonths, - } - } + }, + }; return stack; }, {}); @@ -319,7 +379,7 @@ const usersSummary = Object.entries(resultsByUser).reduce( langs.forEach((lang) => { fs.writeFileSync( - `./public/year-summary/${lang}-info.json`, + `./public/year-summary/2024/${lang}-info.json`, JSON.stringify( { all: getInfoAboutResults(resultsByLang[lang]), diff --git a/scripts/hejto/2025-summary-data.ts b/scripts/hejto/2025-summary-data.ts new file mode 100644 index 000000000..9160572b9 --- /dev/null +++ b/scripts/hejto/2025-summary-data.ts @@ -0,0 +1,392 @@ +import fs from "fs"; +import chalk from "chalk"; + +import { ParsedHejtoResult } from "./hejto-types"; + +import { getInfoAboutResults } from "./utils/results-parser"; + +import { results as results1 } from "./parts-2025/part-1"; +import { results as results2 } from "./parts-2025/part-2"; +import { results as results3 } from "./parts-2025/part-3"; +import { results as results4 } from "./parts-2025/part-4"; +import { results as results5 } from "./parts-2025/part-5"; +import { results as results6 } from "./parts-2025/part-6"; +import { results as results7 } from "./parts-2025/part-7"; + +export const resultsBySource: { + [url: string]: ParsedHejtoResult[]; +} = { + ...results1.resultsBySource, + ...results2.resultsBySource, + ...results3.resultsBySource, + ...results4.resultsBySource, + ...results5.resultsBySource, + ...results6.resultsBySource, + ...results7.resultsBySource, +}; + +const { + resultsByUser, + datesWithoutWordsByUser, + resultsByLang, + resultsByWord, + wordsByDate, +} = Object.values(resultsBySource) + .flatMap((v) => v) + .filter((v) => v.date?.includes("2025")) + .reduce( + ( + stack: { + resultsByUser: { + [lang: string]: { + [nick: string]: { + [word: string]: ParsedHejtoResult; + }; + }; + }; + datesWithoutWordsByUser: { + [lang: string]: { + [nick: string]: string[]; + }; + }; + resultsByWord: { + [lang: string]: { + [word: string]: ParsedHejtoResult[]; + }; + }; + resultsByLang: { + [lang: string]: ParsedHejtoResult[]; + }; + wordsByDate: { + [lang: string]: { + [date: string]: { + [word: string]: number; + }; + }; + }; + }, + item + ) => { + const { nick, result, lang, date } = item; + + const { word } = result || {}; + + if (lang && !stack.resultsByLang[lang]) { + stack.resultsByLang[lang] = []; + } + + if (lang && word) { + if (!stack.resultsByWord[lang]) { + stack.resultsByWord[lang] = {}; + } + + if (typeof word === "string" && word.length > 3) { + if (stack.resultsByWord[lang][word]) { + stack.resultsByWord[lang][word].push(item); + } else { + stack.resultsByWord[lang][word] = [item]; + } + } + } + + if (lang && date && word) { + if (!stack.wordsByDate[lang]) { + stack.wordsByDate[lang] = {}; + } + + if (!stack.wordsByDate[lang][date]) { + stack.wordsByDate[lang][date] = {}; + } + + if (!stack.wordsByDate[lang][date][word]) { + stack.wordsByDate[lang][date][word] += 1; + } else { + stack.wordsByDate[lang][date][word] = 1; + } + } + + if (lang && nick && word) { + if (!stack.resultsByUser[lang]) { + stack.resultsByUser[lang] = {}; + } + + if (!stack.resultsByUser[lang][nick]) { + stack.resultsByUser[lang][nick] = {}; + } + + if (!stack.resultsByUser[lang][nick][word]) { + stack.resultsByUser[lang][nick][word] = item; + stack.resultsByLang[lang].push(item); + } + } else if (lang && nick && date) { + if (!stack.datesWithoutWordsByUser[lang]) { + stack.datesWithoutWordsByUser[lang] = {}; + } + + if (!stack.datesWithoutWordsByUser[lang][nick]) { + stack.datesWithoutWordsByUser[lang][nick] = []; + } + + stack.datesWithoutWordsByUser[lang][nick][date] = true; + } + + return stack; + }, + { + resultsByUser: {}, + datesWithoutWordsByUser: {}, + resultsByWord: {}, + resultsByLang: {}, + wordsByDate: {}, + } + ); + +console.log(chalk.green(`Results dictionaries created.`)); + +const langs = Object.keys(resultsByLang); + +const wordsByDates = langs.reduce((globalStack, lang) => { + const wordsByDatesForLang = Object.entries(wordsByDate[lang]) + .map(([date, usageByWord]) => { + const [mostPopularWord] = Object.entries(usageByWord).sort( + ([, a], [, b]) => b - a + )[0]; + + return { date, mostPopularWord }; + }, []) + .sort((a, b) => { + const [aDay, aMonth] = a.date.split(".").map(Number); + const [bDay, bMonth] = b.date.split(".").map(Number); + + const aRank = aMonth * 1000 + aDay; + const bRank = bMonth * 1000 + bDay; + + return bRank - aRank; + }) + .reduce((stack: { [date: string]: string }, item) => { + stack[item.date] = item.mostPopularWord; + + return stack; + }, {}); + + globalStack[lang] = wordsByDatesForLang; + + return globalStack; +}, {}); + +const datesByWords = langs.reduce((stack, lang) => { + stack[lang] = Object.fromEntries( + Object.entries(wordsByDates[lang]).map(([key, value]) => [value, key]) + ); + + return stack; +}, {}); + +console.log("Words by dates index created."); + +const acceptedWordsByLang = langs.reduce((stack, lang) => { + stack[lang] = Object.values(wordsByDates[lang]); + + return stack; +}, {}); + +const rankByWords = langs.reduce((globalStack, lang) => { + globalStack[lang] = Object.entries(resultsByWord[lang]).reduce( + (stack, [word, results]) => { + if (word && acceptedWordsByLang[lang].includes(word)) { + stack[word] = getInfoAboutResults(results); + } + + return stack; + }, + {} + ); + + return globalStack; +}, {}); + +const wordsByRank = langs.reduce((stack, lang) => { + stack[lang] = { + hardestWords: [...Object.keys(rankByWords[lang])] + .sort((a, b) => { + const medianLettersA = rankByWords[lang][a].medianLetters; + const medianLettersB = rankByWords[lang][b].medianLetters; + + if (medianLettersA === medianLettersB) { + const medianWordsA = rankByWords[lang][a].medianWords; + const medianWordsB = rankByWords[lang][b].medianWords; + + if (medianWordsA === medianWordsB) { + return ( + rankByWords[lang][b].gamesPlayed - + rankByWords[lang][a].gamesPlayed + ); + } + + return medianWordsB - medianWordsA; + } + + return medianLettersB - medianLettersA; + }) + .slice(0, 50), + bestWords: [...Object.keys(rankByWords[lang])] + .sort((a, b) => { + const medianLettersA = rankByWords[lang][a].medianLetters; + const medianLettersB = rankByWords[lang][b].medianLetters; + + if (medianLettersA === medianLettersB) { + const medianWordsA = rankByWords[lang][a].medianWords; + const medianWordsB = rankByWords[lang][b].medianWords; + + if (medianWordsA === medianWordsB) { + return ( + rankByWords[lang][b].gamesPlayed - + rankByWords[lang][a].gamesPlayed + ); + } + + return medianWordsA - medianWordsB; + } + + return medianLettersA - medianLettersB; + }) + .slice(0, 50), + }; + + return stack; +}, {}); + +const usersSummary = Object.entries(resultsByUser).reduce( + (stack, [lang, resultsByNickForLang]) => { + stack[lang] = Object.keys(resultsByNickForLang).reduce((stack, nick) => { + const acceptedResults = Object.values(resultsByNickForLang[nick]).filter( + ({ result }) => acceptedWordsByLang[lang].includes(result?.word) + ); + + const bestForDates = + acceptedResults + .filter( + ({ result }) => + result?.word && + rankByWords[lang][result.word].best.letters === + result.totalLetters + ) + .map(({ result }) => result?.date || "") || []; + + const worstForDates = + acceptedResults + .filter( + ({ result }) => + result?.word && + rankByWords[lang][result.word].worst.letters === + result.totalLetters + ) + .map(({ result }) => result?.date || "") || []; + + const { + userStatsByMonths, + bestForDatesForMonths, + worstForDatesForMonths, + } = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12].reduce( + (stack, month) => { + const acceptedResultsForMonth = acceptedResults.filter( + (item) => Number(item?.result?.date?.split(".")[1]) === month + ); + + if (acceptedResultsForMonth.length > 0) { + stack.userStatsByMonths[month] = getInfoAboutResults( + acceptedResultsForMonth + ); + } + + const bestForDatesForMonth = bestForDates.filter((date) => + date.endsWith(`${month}.2025`) + ); + + if (bestForDatesForMonth.length > 0) { + stack.bestForDatesForMonths[month] = bestForDatesForMonth; + } + + const worstForDatesForMonth = worstForDates.filter((date) => + date.endsWith(`${month}.2025`) + ); + + if (worstForDatesForMonth.length > 0) { + stack.worstForDatesForMonths[month] = worstForDatesForMonth; + } + + return stack; + }, + { + userStatsByMonths: {}, + bestForDatesForMonths: {}, + worstForDatesForMonths: {}, + } + ); + + const best50Results = + acceptedResults.length >= 50 + ? [...acceptedResults] + .sort( + (a, b) => + (a.result?.totalLetters || 0) - (b.result?.totalLetters || 0) + ) + .slice(0, 50) + : undefined; + + const hardest50Results = [...acceptedResults] + .filter(({ result }) => + wordsByRank[lang].hardestWords.includes(result?.word) + ) + .sort( + (a, b) => + (a.result?.totalLetters || 0) - (b.result?.totalLetters || 0) + ); + + stack[nick] = { + best50: best50Results ? getInfoAboutResults(best50Results) : undefined, + hardest50: + hardest50Results && hardest50Results.length > 35 + ? getInfoAboutResults(hardest50Results) + : undefined, + results: { + year: getInfoAboutResults(acceptedResults), + ...userStatsByMonths, + }, + dates: { + year: bestForDates, + ...bestForDatesForMonths, + }, + worstDates: { + year: worstForDates, + ...worstForDatesForMonths, + }, + }; + + return stack; + }, {}); + + return stack; + }, + {} +); + +langs.forEach((lang) => { + fs.writeFileSync( + `./public/year-summary/2025/${lang}-info.json`, + JSON.stringify( + { + all: getInfoAboutResults(resultsByLang[lang]), + activePlayers: Object.keys(resultsByUser[lang]).length, + byUser: usersSummary[lang], + wordsByDates: wordsByDates[lang], + datesByWords: datesByWords[lang], + rankByWords: rankByWords[lang], + hardestWords: wordsByRank[lang].hardestWords, + bestWords: wordsByRank[lang].bestWords, + }, + null, + "\t" + ) + ); +}); diff --git a/scripts/hejto/parts-2025/part-7.ts b/scripts/hejto/parts-2025/part-7.ts new file mode 100644 index 000000000..5a9fbcdf1 --- /dev/null +++ b/scripts/hejto/parts-2025/part-7.ts @@ -0,0 +1,6819 @@ +import { ParsedHejtoResult } from "../hejto-types"; + +export const results: { + resultsBySource: { + [url: string]: ParsedHejtoResult[]; + }; +} = { + resultsBySource: {}, +}; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/01-08-2025-it-diffle-diffleit-grywebowe-25-lettere-in-4-parole-large-green-circl" +] = [ + { + date: "01.08.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpEzMtcmL3ITLuVmcuYmMtUmcj5CN50icv1mLw4SOuEjL1EjLzEjMtUWbpdWZyhSI", + value: "!(regime-213.15.1.9.0.mor-94.cre-2f.ren-27.g-31)!", + result: { + word: "regime", + correct: 15, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "01.08.2025", + }, + }, + { + date: "01.08.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpEzMuY2MtcWZy5SYz0CdyFmLw4yNuEjL1EjLzEjMtUWbpdWZyhSI", + value: "!(regime-213.15.1.7.0.art-3a.reg-3f.31)!", + result: { + word: "regime", + correct: 15, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "01.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/01-10-2025-es-diffle-difflees-grywebowe-24-letras-en-4-palabras-large-green-circ" +] = [ + { + date: "01.10.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=QIpQDNt0mch5CNz0CdpJnLw0icvRmLiFmMtIXZo5CMuYjLy4iNx4CN3ITLvlmch1mchhSI", + value: "!(armario-274.16.2.6.0.her-2ab.dor-0.rit-34.arm-44)!", + result: { + word: "armario", + correct: 16, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 24, + date: "01.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/02-04-2025-it-diffle-diffleit-grywebowe-63-lettere-in-14-parole-large-green-circ" +] = [ + { + date: "02.04.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKkZWLzNXYuAzM04yNmFjLzETLoN2MuEWNtQ3bm5iM3QTLoN2MuUzMtkmdh5CZ50SaoNmL4ETMtg2Yz4CZtQXa05iMlFTL05mLyYWL0RXYuUTMtQXd05CN50icv1mLw4COx4CNuEDNuITOt8GdpR3cpN3chhSI", + value: + "!(assistito-92.41.4.18.0.mor-94.tut-15.att-f2.nt-1e2.tit-d.3ch-118.chi-9d.avi-35.3ch-472.fot-5a.3ch-13.1f7.430.ass-fd)!", + result: { + word: "assistito", + correct: 41, + position: 4, + incorrect: 18, + knownIncorrect: 0, + totalWords: 14, + totalLetters: 63, + date: "02.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/03-01-2025-it-diffle-diffleit-grywebowe-60-lettere-in-12-parole-large-green-circ" +] = [ + { + date: "03.01.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpkjL30SZyZmLlVjMtIXZw5SOx0CZlNmLhRTLoN2MuEmNuATYtUmcuEzMtMXdm5SNjJTLoN2MuImMtIXZ25SM20iblJmLiRTLs9WbuAjL0EjLz4yM04yMtEme6VGZkVmcmhSI", + value: + "!(freddezza-3.43.3.14.0.mol-4b.ben-61.ver-2b.3ch-2c5.fus-31.re-a0.6a.3ch-4a.ced-19.per-25e.fre-7.9)!", + result: { + word: "freddezza", + correct: 43, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 12, + totalLetters: 60, + date: "03.01.2025", + }, + }, + { + date: "03.01.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESK50SZyZmLzYTLoNmMuYWLkVmcuUTNtg2Yy4iNhJjL1IzMtg2Yz4iZtQWZz5yN04SM10CajNjLk1SZyJmLwEWLyV2YugTNx0ich1mLiFTL0F2ZuAjL2EjLx4yNz4yMtEme6VGZkVmcmhSI", + value: + "!(freddezza-3.37.1.16.0.gat-1b.mar-158.cer-a0.bre-d.3ch-51.47.sed-f.3ch-325.2a6.2ch-55.red-f.2ch-63.fre-9)!", + result: { + word: "freddezza", + correct: 37, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 13, + totalLetters: 54, + date: "03.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/03-02-2025-de-diffle-difflede-grywebowe-19-buchstaben-im-2-wortern-large-green-c" +] = [ + { + date: "03.02.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKhFTL0lmYuMTZmZTLoN2cuAjL44SMuATMuQzMtIXZ0RXaihSI", + value: "!(bitter-34.10.1.8.0.sch-6fe3.bit-1a)!", + result: { + word: "bitter", + correct: 10, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "03.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/03-02-2025-es-diffle-difflees-grywebowe-38-letras-en-7-palabras-large-green-circ" +] = [ + { + date: "03.02.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=hkiZ24SM30SakFmLwETL0V3YuITL0F2duUjNtg2Yz4iYhJTLyVGauMmMz0CbvBnLx4yNx4SMuAjMuQzMtEGdjlGZhhSI", + value: + "!(adicta-34.20.1.17.1.pol-32c.her-2ab.3ch-65.wat-2.cut-10.adi-71.6f)!", + result: { + word: "adicta", + correct: 20, + position: 1, + incorrect: 17, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 38, + date: "03.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/03-02-2025-it-diffle-diffleit-grywebowe-67-lettere-in-12-parole-large-green-circ" +] = [ + { + date: "03.02.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKw0iYlZmLhFTLmlmYuATLhVmZuczNtg2Yy4yNmFTLjlmcuEWLyVmZuQzMtcWZu5iM50icl5iYtUWam5iM00ybyVmL0kTLy9WbukTL6lGcuAjL3EjL54SM04CNz0ybpFmciJWZmhSI", + value: + "!(febbraio-34.41.9.17.0.piz-9.mor-94.ero-42.fie-b.er-92.neg-34.fer-a.ric-1f7.2ch-77.fea-0.bif-1a.feb-0)!", + result: { + word: "febbraio", + correct: 41, + position: 9, + incorrect: 17, + knownIncorrect: 0, + totalWords: 12, + totalLetters: 67, + date: "03.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/03-04-2025-it-diffle-diffleit-grywebowe-31-lettere-in-4-parole-large-green-circl" +] = [ + { + date: "03.04.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpImMucjMuI2Mt02bk5CNy0CZl1mLw4yNuEjLzIjLzkTLvlmbp12bkhSI", + value: "!(dominio-93.23.1.7.0.med-24.dom-3b.27.2b)!", + result: { + word: "dominio", + correct: 23, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "03.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/04-02-2025-es-diffle-difflees-grywebowe-44-letras-en-8-palabras-large-green-circ" +] = [ + { + date: "04.02.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=ESKlVWLj5CMtI3bj5CNmNTLy9mZuATL09mcuMmMz0CbvBnLyQTLnVnauUzYy0SYpRmLiFmMtIXZo5CMucTMuMjL0IjL1MTLhJXZoN2bjhSI", + value: + "!(cochera-35.24.3.17.0.her-2ab.dia-2c5.jug-42.pol-32c.rot-0.for-3f4.cor-0.c-ee)!", + result: { + word: "cochera", + correct: 24, + position: 3, + incorrect: 17, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 44, + date: "04.02.2025", + }, + }, + { + date: "04.02.2025", + nick: "Greyman", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=hkSZl5SY50yYuYzMtomL5ImMt0mL0QTLn5iZj1ycuIDNtQmL1cjMtwmL1UWLw5iY50iYvNmLmNTMtUGdh5CMuITMuIjLzUjL1MTLhJXZoN2bjhSI", + value: + "!(cochera-35.53.2.12.0.ate-13f.cob-9b.p-e5.l-275.d-42.s-cf.g-44.m-2b9.j-36.c-9a.ee)!", + result: { + word: "cochera", + correct: 53, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 67, + date: "04.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/04-02-2025-it-diffle-diffleit-grywebowe-18-lettere-in-3-parole-large-green-circl" +] = [ + { + date: "04.02.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESK4QWLy9WbuYDMx0ycpJnL0kTLy9WbuAjL54CMukjL1MTLvJ3bthSI", + value: "!(moro-35.9.0.9.0.mor-94.ris-106.mor-d8)!", + result: { + word: "moro", + correct: 9, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 18, + date: "04.02.2025", + }, + }, + { + date: "04.02.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpgDZtInLiRTLs9WbukTL6lGcuAjL54CMugjL1MTLvJ3bthSI", + value: "!(moro-35.8.0.9.0.piz-9.mol-4b.r-d8)!", + result: { + word: "moro", + correct: 8, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 17, + date: "04.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/04-10-2025-es-diffle-difflees-grywebowe-67-letras-en-13-palabras-large-green-cir" +] = [ + { + date: "04.10.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=QIpEDNuY2MtYXYu5CMtcmLw0CZuUjMy0iblZnL1IjLw0iduUWMtQXYu5CMt4Wd05yNz0SYlBnLw0iY1NmLw0CbsVmLiFmMtIXZo5SMuQTMuMjLwUjL3cjMtUGduF2ZlZXYuhSI", + value: + "!(navegante-277.50.3.14.1.her-2ab.ell-0.cub-0.pea-37.tun-0.nat-1e.v-0.25.ven-225.d-0.g-0.nav-3f.41)!", + result: { + word: "navegante", + correct: 50, + position: 3, + incorrect: 14, + knownIncorrect: 1, + totalWords: 13, + totalLetters: 67, + date: "04.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/05-02-2025-it-diffle-diffleit-grywebowe-52-lettere-in-12-parole-large-green-circ" +] = [ + { + date: "05.02.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpkzNtg2Yz5SOmRTLoN2MuIjMtg2Yy4yN20iZvNnLmBjMuQmMtg2Yz4yYkJTLh5iNmFTLvN2cuYTMy4CMxETLoN2MuEWL2F2cuQTOtI3bt5CMuUTMuYjLxMjL2MTLvZXYph2YzhSI", + value: + "!(schiavo-36.31.6.15.0.mor-94.sav-a.3ch-110.216.sco-1f6.a-2dc.3ch-2d.20f.sof-67.2ch-22.3ch-4f9.sch-79)!", + result: { + word: "schiavo", + correct: 31, + position: 6, + incorrect: 15, + knownIncorrect: 0, + totalWords: 12, + totalLetters: 52, + date: "05.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/05-10-2025-it-diffle-diffleit-grywebowe-22-lettere-in-3-parole-large-green-circl" +] = [ + { + date: "05.10.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkCZ24iZ10icl5CN50icv1mLx4iNuMjLzEjL4cjMt8GdpJXZthSI", + value: "!(merito-278.13.3.6.1.mor-94.er-5f.6d)!", + result: { + word: "merito", + correct: 13, + position: 3, + incorrect: 6, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 22, + date: "05.10.2025", + }, + }, + { + date: "05.10.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKkZTLyVWbuMWYy4CZ5ITLoN2MukTOtg2Yy4CM2ITLoN2MuQTOtIXZj5SYz0CdyFmLw4SOuMjLwIjL4cjMt8GdpJXZthSI", + value: + "!(merito-278.20.3.9.0.art-3a.cer-94.3ch-260.2ch-99.3ch-29d.2ac.mer-6d)!", + result: { + word: "merito", + correct: 20, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 32, + date: "05.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/06-03-2025-de-diffle-difflede-grywebowe-38-buchstaben-im-6-wortern-large-green-c" +] = [ + { + date: "06.03.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKw0iYuQmZ00ichtmLkR2MtQXYy5yNwITLoN2MuEWLw92auMTZmZTLoN2cuAjL0EjL04CMy4SN20Cd0VmchJWYrhSI", + value: + "!(kabarett-65.20.4.14.0.sch-6fe3.kop-a.3ch-207.rat-3dd.kar-4fd.b-0)!", + result: { + word: "kabarett", + correct: 20, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 38, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKw0iYhtmLxIjYtUmcuMWOtIXZi5CZxQTMtIWZn5CMuUjL04SMy4SN20Cd0VmchJWYrhSI", + value: "!(kabarett-65.21.4.5.0.geb-141d.ber-9c.re-b21.kab-0)!", + result: { + word: "kabarett", + correct: 21, + position: 4, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 30, + date: "06.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/06-03-2025-it-diffle-diffleit-grywebowe-33-lettere-in-6-parole-large-green-circl" +] = [ + { + date: "06.03.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkiYh5SYk1CbvZnL5cTLzN3buATMt8Wdu5CZtUmdh5SOtoXaw5CMuETMuUjL3EjL1YTLlRnbhx2b2hSI", + value: "!(volante-65.17.5.11.0.piz-9.ave-d.nuo-10.oss-79.vol-da.ab)!", + result: { + word: "volante", + correct: 17, + position: 5, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "06.03.2025", + }, + }, + { + date: "06.03.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpIWYuI2Ytw2b25iY00Cbv1mL50iepBnLw4COuEjL3EjL1YTLlRnbhx2b2hSI", + value: "!(volante-65.17.1.8.0.piz-9.mol-4b.vol-cb.ab)!", + result: { + word: "volante", + correct: 17, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "06.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/06-08-2024-it-diffle-diffleit-58-lettere-in-12-parole-large-green-circle-41-larg" +] = [ + { + date: "06.08.2024", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKwMjL4MTLnlmLhJTMtEGduEjNtIXYz5SM50ichRnLzETLwV3YucjM04yMxETLoN2MuIGOx0SY05iZx0yZhNnLxYTLuVmYuIGNtw2bt5CMuETMuYjLxQjL5EjMtEGd0VmchdWazhSI", + value: + "!(sigaretta-219.41.6.11.0.mol-4b.ben-61.sag-1f.ta-18b.3ch-113.427.cup-13.tar-91.sar-61.ta-12a.ig-38.30)!", + result: { + word: "sigaretta", + correct: 41, + position: 6, + incorrect: 11, + knownIncorrect: 0, + totalWords: 12, + totalLetters: 58, + date: "06.08.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/07-01-2025-it-diffle-diffleit-grywebowe-35-lettere-in-5-parole-large-green-circl" +] = [ + { + date: "07.01.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpYWOuATYuUGOtMWZk5SOh1SZyZmL5ITMtAXYj5CMuATMuEjL0IjL30yb2l2cpNWZkhSI", + value: "!(decisivo-7.24.1.10.0.cap-129.fre-a9.dec-8e.a0.9f)!", + result: { + word: "decisivo", + correct: 24, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "07.01.2025", + }, + }, + { + date: "07.01.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKmlTLjVGZuEDNy4CO00CajNjLklTLph2YuIWMtc2bs5yYx0CajJjLzgTLzVGZugTNtQWZt5SOtoXaw5CMuQTMuIjL4IjL30yb2l2cpNWZkhSI", + value: + "!(decisivo-7.28.2.14.0.piz-9.med-58.des-83.2ch-1c.log-1b.chi-9d.3ch-48.241.dec-9f)!", + result: { + word: "decisivo", + correct: 28, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 44, + date: "07.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/07-02-2025-flag-cz-diffle-difflecs-grywebowe-13-pismen-ve-3-slovech-large-green-" +] = [ + { + date: "07.02.2025", + nick: "Deykun", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=hkiZl1ycuATLj5yMjFTLs9GauAjL14CMugjL4MTL0N3bohSI", + value: "!(host-38.8.0.5.0.hol-1c3.c-0.s-ef)!", + result: { + word: "host", + correct: 8, + position: 0, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 13, + date: "07.02.2025", + }, + }, + { + date: "07.02.2025", + nick: "Felonious_Gru", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=QIpYWZtM3bo5SYkNTLoN2MuI2Mtg2Yy4SMhFTLoN2MuATL05iM00CZuITZtI3bo5CMt8Gah5iMuUTMuAjL3EjL4MTL0N3bohSI", + value: + "!(host-38.17.0.15.2.aho-0.hor-e2.d-42.t-0.3ch-1a1.2ch-3b.3ch-3da.hos-ef)!", + result: { + word: "host", + correct: 17, + position: 0, + incorrect: 15, + knownIncorrect: 2, + totalWords: 8, + totalLetters: 32, + date: "07.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/08-03-2025-fr-diffle-difflefr-grywebowe-55-lettres-en-12-mots-large-green-circle" +] = [ + { + date: "08.03.2025", + nick: "Felonious_Gru", + lang: "fr", + url: "https://deykun.github.io/diffle-lang/fr?r=ESKx0ibhZmLiFTLh5WYuATL1F2ZuITOtg2Yy4COk5iY30CajNjL30ibhRmLiRTMt4WYt5CMtk2ch5SZtg2Yy4iN50CajNjLj1SZoNmL14CMy4SMuQzMucjNtUWazlWY05WYmhSI", + value: + "!(fantaisie-67.34.1.20.5.che-c.3ch-96.2ch-e.asi-0.man-14b.dan-7.3ch-7b.d8.2ch-92.gau-0.ana-1b.fan-1)!", + result: { + word: "fantaisie", + correct: 34, + position: 1, + incorrect: 20, + knownIncorrect: 5, + totalWords: 12, + totalLetters: 55, + date: "08.03.2025", + }, + }, + { + date: "09.03.2025", + nick: "nxo", + lang: "fr", + url: "https://deykun.github.io/diffle-lang/fr?r=hkiY40SZuUWZt8Gaj5SNh1icl1mLx4yNuEjLyEjL4YTLulmY1JXOBVyMDVCajhSI", + value: "!(chérubin-68.12.1.7.1.mer-a5.cho-ee.e-8b)!", + result: { + word: "chérubin", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 20, + date: "09.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/08-04-2025-es-diffle-difflees-grywebowe-ciemszko-po-literce-45-letras-en-9-palab" +] = [ + { + date: "08.04.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=ESKjFDNt02bj5SZy0Sat9mL4IWLt9mbuY2Yx0ibp5COz0CZh1mLlRTMt4Waw5SNzITLul2cuAjMt42Zp5CM00Cb1pmLw4yMx4CMuIzMugTOt8mbp12bjhSI", + value: + "!(comino-98.32.0.13.0.jul-40.ign-20.sin-235.pin-14e.mad-38.in-1cf.nom-b8.omi-2e.com-41c)!", + result: { + word: "comino", + correct: 32, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 45, + date: "08.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/08-04-2025-it-diffle-diffleit-grywebowe-lecimy-za-ciosem-31-lettere-in-4-parole-" +] = [ + { + date: "08.04.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpYTMt8mcm5yNtQ3by5CZwETLy9GcuQTOtI3bt5CMuUjLz4yMy4CO50SZsFGdu9mcmhSI", + value: "!(frontale-98.23.3.5.0.mor-94.por-10d.rot-7.fro-16)!", + result: { + word: "frontale", + correct: 23, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "08.04.2025", + }, + }, + { + date: "08.04.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESK2ETLvJnZuczNuU2Mx4SOzITLoN2MuMGOtg2Yy4yN4ETLu9WbuYWLl9GcuYWMt4WYk5CMugjL04CNy4CO50SZsFGdu9mcmhSI", + value: + "!(frontale-98.24.4.8.0.dan-1f.poe-f.mon-187.2ch-8c.3ch-239.13e.77.fro-16)!", + result: { + word: "frontale", + correct: 24, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 36, + date: "08.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/08-07-2025-es-diffle-difflees-grywebowe-34-letras-en-7-palabras-large-green-circ" +] = [ + { + date: "08.07.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=hkCM10yZpJmLwMTLoN2MuYmMtUWak5iM20ibp1mL2cTLoN2MuQmMz0CbvBnLkFGNtIXZj5CMuQTMuIjL4EjL5gTMtUGdvdWaihSI", + value: + "!(bigote-189.18.2.14.0.cer-4ad.pol-32d.3ch-76.min-62.die-2f.3ch-30.big-50)!", + result: { + word: "bigote", + correct: 18, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 34, + date: "08.07.2025", + }, + }, + { + date: "08.07.2025", + nick: "Greyman", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=ESKwUTLnlmL3gTL09mYukTL09WbugTLoNmMuQ2MtMXdi5COtIXYw5CMuATMuAjL5EjL5gTMtUGdvdWaihSI", + value: "!(bigote-189.19.0.10.0.par-8.bus-3d.2ch-8.mot-9.bot-87.ig-50)!", + result: { + word: "bigote", + correct: 19, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 29, + date: "08.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/09-01-2025-it-diffle-diffleit-grywebowe-23-lettere-in-5-parole-large-green-circl" +] = [ + { + date: "09.01.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESK1MmMtUmcuITNy0icl5COx0iepBnLxYTLuVmYuIGNtw2bt5CMuATMuEjLyEjL50SZ0VmcwhSI", + value: "!(prete-9.12.1.10.0.mol-4b.ben-61.piz-18.er-252.re-2c5)!", + result: { + word: "prete", + correct: 12, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 23, + date: "09.01.2025", + }, + }, + { + date: "09.01.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESK1MmMuMzYz0SZy5iZ10Cb1BnLygzMtg2Yz4COx0iepBnLwUTMt42bt5CMuYTMuAjL1EjL50SZ0VmcwhSI", + value: "!(prete-9.15.0.16.0.mon-150.piz-18.3ch-382.pul-5f.re-3c3.2c5)!", + result: { + word: "prete", + correct: 15, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "09.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/09-04-2025-de-diffle-difflede-grywebowe-41-buchstaben-im-5-wortern-large-green-c" +] = [ + { + date: "09.04.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKlZmMy4SYzQDZuQWOiJWLoN2cuQTY00SdhJmLzUmZ20CajNnLw4SMx4iMugjMukTOtcmb1RWalh2YzhSI", + value: "!(scheidung-99.28.2.11.0.sch-6fe3.bau-4a4.sch-bb9d.d43a.22fe)!", + result: { + word: "scheidung", + correct: 28, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 41, + date: "09.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/09-06-2025-it-diffle-diffleit-grywebowe-22-lettere-in-3-parole-large-green-circl" +] = [ + { + date: "09.06.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKw0CZl5CZyETLsFmL0kTLy9WbuAjL04yMuUTMuAjNx0SYpx2ZhRWZthSI", + value: "!(medaglia-160.15.3.4.0.mor-94.al-12d.ed-0)!", + result: { + word: "medaglia", + correct: 15, + position: 3, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "09.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/10-01-2025-es-diffle-difflees-31-letras-en-7-palabr-large-green-circle-16" +] = [ + { + date: "10.01.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=hkiZxITLsV3YuADNtwWdq5iYm1CajNjLzMTL4VHbuIWLyVXZuMmMz0CbvBnLwYWLiFGauEjL0EjLx4iNx4CMx0yb0xWdjhSI1as", + value: + "±­HJ\u0018Ý[\u001d\u001bËLL\u000bŒM‹ŒKŒM\u000bŒKš\u0018X‹YŒ\u000bœ\u001bÛ\u000bL̘˙]\\‹X‹›\u001d^\u000bLÌˌØÚ\u000bY˜‹š[\u000bM\f\u000b˜Ý[\u000bLŒYŠH", + result: { + word: "±­HJ\u0018Ý[\u001d\u001bËLL\u000bŒM‹ŒKŒM\u000bŒKš\u0018X‹YŒ\u000bœ\u001bÛ\u000bL̘˙]\\‹X‹›\u001d^\u000bLÌˌØÚ\u000bY˜‹š[\u000bM\f\u000b˜Ý[\u000bLŒYŠH", + correct: null, + position: null, + incorrect: null, + knownIncorrect: null, + totalWords: 0, + totalLetters: null, + date: "10.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/10-01-2025-flag-cz-diffle-difflecs-40-pismen-v-9-slovech-grywebowe-large-green-c" +] = [ + { + date: "10.01.2025", + nick: "Felonious_Gru", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=hkCN0ETLvJnYuYmNx4yY1QTLoN2MuMzN00ievBnLkNjMuIWYy0CajNjLwIjLlZTLv5SYyETLhJnYuAjL2EjLy4iMy4CMx0ya19mcihSI", + value: + "!(brouk-10.22.2.16.0.bra-12a.o-6e.20.3ch-2ab.23d.poz-473.3ch-45c.16f.bro-144)!", + result: { + word: "brouk", + correct: 22, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 40, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "Deykun", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=QIpQDNx0ybyJmLwYTLr9mcuIGNx0SYyhmLw4CNuAjL54CMx0ya19mcihSI", + value: "!(brouk-10.9.0.4.0.hra-14b.rok-60.bro-144)!", + result: { + word: "brouk", + correct: 9, + position: 0, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 13, + date: "10.01.2025", + }, + }, + { + date: "10.01.2025", + nick: "Greyman", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=hkCN0ETLvJnYugDNy0CclJnLw4SNuEjL44CMx0ya19mcihSI", + value: "!(brouk-10.8.1.5.0.rep-248.bro-144)!", + result: { + word: "brouk", + correct: 8, + position: 1, + incorrect: 5, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 14, + date: "10.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/10-02-2025-de-diffle-difflede-grywebowe-40-buchstaben-im-7-wortern-large-green-c" +] = [ + { + date: "10.02.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpYzY10ychJnLmZTMtQXYs5SMiFTLoN2MuQGZz0CdhJnLzcTMuQDOx0CajNjLzUmZ20CajNnLx4SMx4iMucjMuEDNtoHdhxGc0NXYyhSI", + value: + "!(rastplatz-41.27.2.11.1.sch-6fe3.3ch-184.173.rat-3dd.3ch-1b1.lat-16f.ras-5c6)!", + result: { + word: "rastplatz", + correct: 27, + position: 2, + incorrect: 11, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 40, + date: "10.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=hkiNjVTLzFmcuYTY10ychdmLz0ychBnL3ETLoN2MuEDZtwWYuUWO3cTLoN2cuU2Y20SZ3pnLx4CMx4SNucjMuEDNtoHdhxGc0NXYyhSI", + value: + "!(rastplatz-41.27.5.10.1.zwe-6ce.sch-779e.al-d1.3ch-17.pas-3.gas-5a6.ras-5c6)!", + result: { + word: "rastplatz", + correct: 27, + position: 5, + incorrect: 10, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 42, + date: "10.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/10-05-2025-it-diffle-diffleit-grywebowe-44-lettere-in-7-parole-large-green-circl" +] = [ + { + date: "10.05.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkSMtg2Yz5iYz0ic1NmL3UTLulmZuITLkV2cuATOtUmcw5yYtIXYk5CN50icv1mLw4CNx4yMucjMuAzMx0SZyFGZlh2YzhSI", + value: + "!(schedare-130.27.3.14.0.mor-94.dar-c.pre-90.sed-2.fin-57.cur-3b.sch-1)!", + result: { + word: "schedare", + correct: 27, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 44, + date: "10.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/10-07-2025-de-diffle-difflede-grywebowe-43-buchstaben-im-8-wortern-large-green-c" +] = [ + { + date: "10.07.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKiRTLl5mLw0SaltmLlhTMtYmbp5SNwITLoN2MuUGNtg2Yy4CNx0iYhtmLjZTLoN2MuMTZmZTLoN2cuMjL5EjLy4iMy4SM5ETLuVmZpVmbrhSI", + value: + "!(kneifen-191.22.2.19.3.sch-6fe3.3ch-6c.kab-14.2ch-4e.3ch-205.inf-18e.kei-0.ne-4b)!", + result: { + word: "kneifen", + correct: 22, + position: 2, + incorrect: 19, + knownIncorrect: 3, + totalWords: 8, + totalLetters: 43, + date: "10.07.2025", + }, + }, + { + date: "10.07.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKiRTLl5mLw0SaltmLyYWMtg2Yz4COx0SasZmL0YTMtQmbl5SNwQWLjVnYuAjL0EjL04iMy4SM5ETLuVmZpVmbrhSI", + value: + "!(kneifen-191.22.4.14.0.buc-d05.end-164.fli-18.3ch-1f2.kei-0.ne-4b)!", + result: { + word: "kneifen", + correct: 22, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 40, + date: "10.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/10-07-2025-es-diffle-difflees-grywebowe-39-letras-en-9-palabras-large-green-circ" +] = [ + { + date: "10.07.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=QIpETNtoWZ25iMjFTLoN2MuEGNtg2Yy4yM50CajNjLkFGNtIXZj5iM20CdpBnL30CZ1xmL2cTLoN2MuIWYy0iclhmL04CMy4SMugTMuETOx0ielpWZ2hSI", + value: + "!(vejez-191.18.1.20.4.her-2ab.3ch-76.lud-7.pit-62.cer-4ad.3ch-93.2ch-4a.3ch-1c2.vej-51)!", + result: { + word: "vejez", + correct: 18, + position: 1, + incorrect: 20, + knownIncorrect: 4, + totalWords: 9, + totalLetters: 39, + date: "10.07.2025", + }, + }, + { + date: "10.07.2025", + nick: "Greyman", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=hkSM14SZz0ialZnL4MTLkV2YuE2MtMXZt5SZtUWdw5yY10iZulmLw4COx4CMuUTMuETOx0ielpWZ2hSI", + value: "!(vejez-191.15.0.18.0.inf-5c.pue-e.mes-3a.ced-38.vej-3e.51)!", + result: { + word: "vejez", + correct: 15, + position: 0, + incorrect: 18, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "10.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/10-07-2025-it-diffle-diffleit-grywebowe-40-lettere-in-8-parole-large-green-circl" +] = [ + { + date: "10.07.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKxQTLjVmcuQjZtg2Yz4iNwETLzlmLllTLzVmcuMzMt4Wam5iMh1CajNjLjFTLnVmcuQTOtI3bt5CMuQTMuIjL0IjLxkTMt82cpNWZyhSI", + value: + "!(reciso-191.24.2.14.0.mor-94.reg-1c.3ch-a2.fin-33.res-9e.is-106.3ch-f4.rec-41)!", + result: { + word: "reciso", + correct: 24, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 40, + date: "10.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/10-08-2025-de-diffle-difflede-grywebowe-23-buchstaben-im-3-wortern-large-green-c" +] = [ + { + date: "10.08.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpATLh9GduImZz0ychBnLzUmZ20CajNnLw4iMx4SMuATMuIjMy0CdzF2b0hSI", + value: "!(toast-222.10.1.12.0.sch-6fe3.pas-3fb.toa-0)!", + result: { + word: "toast", + correct: 10, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 23, + date: "10.08.2025", + }, + }, + { + date: "10.08.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=hkCMtE2b05SY2ITLz9GcuImYy0ychxmL1QDMx0ych1mL0EzNtMXYn5CN4MTLzFmZuUDMk1yY1JmLw4SNx4SMuIjMuIjMy0CdzF2b0hSI", + value: + "!(toast-222.22.1.15.0.buc-d05.fas-384.gas-714.mas-1045.las-2bb.pos-26a.toa-0)!", + result: { + word: "toast", + correct: 22, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 38, + date: "10.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/10-08-2025-es-diffle-difflees-grywebowe-26-letras-en-5-palabras-large-green-circ" +] = [ + { + date: "10.08.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=QIpgzMtUWdz5CO5ETLoN2MuQGNtIXZz5CZwITLyVGcuIWYy0iclhmLw4COuIjL2EjLyIjMtUGdyVWdzhSI", + value: "!(suerte-222.16.2.8.0.her-2ab.per-20d.ser-4d.3ch-198.sue-38)!", + result: { + word: "suerte", + correct: 16, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "10.08.2025", + }, + }, + { + date: "10.08.2025", + nick: "Greyman", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=ESK4MTLlV3cuczMtUWdm5SOy0Cd1JnL3UjMtQXYt5CMuATMuIjL1EjLyIjMtUGdyVWdzhSI", + value: "!(suerte-222.15.2.10.0.mat-257.rut-29.fue-37.sue-38)!", + result: { + word: "suerte", + correct: 15, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "10.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/10-08-2025-it-diffle-diffleit-grywebowe-24-lettere-in-3-parole-large-green-circl" +] = [ + { + date: "10.08.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkCNz0SZyBnLl1SYyVmLhNTL0JXYuAjL14yMuYTMuIjMy0ybpJXYjVmcwhSI", + value: "!(precario-222.16.3.5.0.art-3a.era-e.pre-34)!", + result: { + word: "precario", + correct: 16, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "10.08.2025", + }, + }, + { + date: "10.08.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkCNz0SZyBnLiNTLyV3YuIDN00SZyBnLjFTLnVmcuEWOtA3cl5CN50icv1mLw4SNx4iMuQjMuIjMy0ybpJXYjVmcwhSI", + value: + "!(precario-222.24.2.15.0.mor-94.esp-9a.reg-1c.pre-442.cur-3b.pre-34)!", + result: { + word: "precario", + correct: 24, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 41, + date: "10.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/11-01-2025-de-diffle-difflede-grywebowe-45-buchstaben-im-10-wortern-large-green-" +] = [ + { + date: "11.01.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKjVmMtU2duMTLs9meuQzMtg2Yy4COz0yYhZmLlRTLoNmMukTYtkWZy5SMy0yYh1mL3EWNtg2Yh5SMt4Wa35CNhlTLzFmYuMjL4EjLw4yNy4SMx0CajFmZpV2d6hSI", + value: + "!(zweifach-11.27.0.18.3.bas-9a4.win-1.ach-5a7.mac-21.rei-a9.2ch-4e.fac-38.2ch-34.zol-3.we-2ec)!", + result: { + word: "zweifach", + correct: 27, + position: 0, + incorrect: 18, + knownIncorrect: 3, + totalWords: 10, + totalLetters: 45, + date: "11.01.2025", + }, + }, + { + date: "11.01.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKjVmMtU2d65yMllTMtkWZ35SOxMTLpVmYuATZ10ibp5iZhJTLmJXZuAjLwEjLx4yMy4SMx0CajFmZpV2d6hSI", + value: "!(zweifach-11.23.1.10.0.erf-2af.in-5e0.bei-319.wei-19e3.zwe-2ec)!", + result: { + word: "zweifach", + correct: 23, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "11.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/11-01-2025-es-diffle-difflees-grywebowe-138-letras-en-29-palabras-large-green-ci" +] = [ + { + date: "11.01.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=QIpUDN50yYlJnL4gTLhxmLkNWZtIXYj5SYlJTMuMmM00yYlJnLwgTLyVnLw0ichNmLkNjMx4yMiJTMtMmLlBTOtQXZy5CMtkXdt5iYxITLyFmaugDMx0SZyFmLjJmMtUmc05CMy0Cd11mL3MjMtwWduQWY00iclNmLihjLzYTLoN2MuIWLyVnLw0CbsVmL1ETMtIWYo5SOz0Cd11mLxQTL0xWdukDOx0CajNjLz0SZ1JmLkNWLoN2MuczYx0ibhNnLjJzMtw2bw5yNx4yNz4CNx4yN44SMx0ichRXdsNWZyhSI", + value: + "!(reclutar-11.87.14.37.17.pol-32c.san-1c7.3ch-cd.bue-3.3ch-189.ult-41.mut-39.hab-115.ell-0.ur-b.3ch-63.8b.cer-4ad.ul-237.mut-20.tre-2bc.are-108.jar-21b.muy-0.ret-90e.c-12b3.123d.car-0.ur-80.rec-42c.12ea.car-ecd.la-88.rec-945)!", + result: { + word: "reclutar", + correct: 87, + position: 14, + incorrect: 37, + knownIncorrect: 17, + totalWords: 29, + totalLetters: 138, + date: "11.01.2025", + }, + }, + { + date: "11.01.2025", + nick: "Greyman", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=hkSN0kTLjVmcuYjN10yYlRmLhJTLoNmMuI2YtMWZu5SO4ETLoN2MuATLuVWbuEDOx0CajNjLh1SZvBnLkNTLll2cuEjLwEjL04SMz4SMx0ichRXdsNWZyhSI", + value: + "!(reclutar-11.31.4.10.1.sie-3d.poe-a.3ch-181.men-0.3ch-189.nec-cb.2ch-2a.dec-566.rec-945)!", + result: { + word: "reclutar", + correct: 31, + position: 4, + incorrect: 10, + knownIncorrect: 1, + totalWords: 9, + totalLetters: 45, + date: "11.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/11-01-2025-flag-cz-diffle-difflecs-grywebowe-23-pismen-ve-4-slovech-large-green-" +] = [ + { + date: "11.01.2025", + nick: "Felonious_Gru", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=hkSZwITLi9GZuIjNy0icvBnLlJTMtI3bt5SOzMTLhJHauAjLxEjLw4iMx4SMx0ybyJ2bkhSI", + value: "!(dobro-11.12.0.11.0.hra-339.mor-12e.por-262.dob-20e)!", + result: { + word: "dobro", + correct: 12, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "11.01.2025", + }, + }, + { + date: "11.01.2025", + nick: "Deykun", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=ESKlBjMtImL3I2MtM3bk5yN1ITLk9mduMzYx0CbvhmLw4COuEjL54SMx0ybyJ2bkhSI", + value: "!(dobro-11.9.1.8.0.hol-1c3.vod-257.dos-3b7.b-20e)!", + result: { + word: "dobro", + correct: 9, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 18, + date: "11.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/11-01-2025-it-diffle-diffleit-grywebowe-66-lettere-in-13-parole" +] = [ + { + date: "11.01.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKhJTL09mYuEjNz0CajNjLhFTL0VHdukjMtcWam5yN20iZvNnL2ETL09GZuMWMt42bu5COx0iepBnLlNTL2FmcuMzN00CajNjL2ITL092YuUTMtQXd05iY00Cbv1mLz4CMy4SNuEDNuETMtEWasdWa0R3bihSI", + value: + "!(bottiglia-11.41.5.20.3.mol-4b.tut-15.cot-26.3ch-473.rav-3e.piz-18.non-1c.dot-16.sof-67.fig-29.tut-1a.3ch-361.bot-2a)!", + result: { + word: "bottiglia", + correct: 41, + position: 5, + incorrect: 20, + knownIncorrect: 3, + totalWords: 13, + totalLetters: 66, + date: "11.01.2025", + }, + }, + { + date: "11.01.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkSYy0CdvJmL3ITLoN2MuYTLi5SNz0Cbv5SNz0ybp5COt8Gbi5COz0CZ1NnLlR2Mtg2Yz4SZ30yZh1mL50iepBnLx4iNx4SNuUzMuETMtEWasdWa0R3bihSI", + value: + "!(bottiglia-11.35.5.16.1.piz-9.mag-7e.3ch-3de.sud-38.blo-8.io-35.ol-35.b-6.3ch-27.bot-2a)!", + result: { + word: "bottiglia", + correct: 35, + position: 5, + incorrect: 16, + knownIncorrect: 1, + totalWords: 10, + totalLetters: 56, + date: "11.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/11-03-2025-de-diffle-difflede-grywebowe-25-buchstaben-im-4-wortern-large-green-c" +] = [ + { + date: "11.03.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKzQWLkVmcuE2Ntg2Yz4iNxQTL1VmbuMTZmZTLoN2cuAjLxEjLy4iMx4CM30iblRWZyhSI", + value: "!(reden-70.12.2.11.0.sch-6fe3.neu-416.3ch-7a.red-d3)!", + result: { + word: "reden", + correct: 12, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "11.03.2025", + }, + }, + { + date: "11.03.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKzQWLkVmcuUGZ10icldnLmNWMtI3bw5iZtIXdi5SY3UTLoN2cuAjLxEjLx4CNx4CM30iblRWZyhSI", + value: "!(reden-70.14.1.11.0.sch-57a.bur-f.por-1cf.wer-5de.red-d3)!", + result: { + word: "reden", + correct: 14, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "11.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/11-05-2025-it-diffle-diffleit-grywebowe-byloby-o-dwa-szybciej-ale-nie-znalem-pis" +] = [ + { + date: "11.05.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKjRTLmZWYuUGM00CajNjL00Saz5CZt0mcuQjMtEWbh5CN50icv1mLw4COuIjL3IjLxMTMtUmch1mclZmZhhSI", + value: "!(affermare-131.27.2.8.0.mor-94.ama-24.rm-d.si-4.3ch-40e.aff-4c)!", + result: { + word: "affermare", + correct: 27, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "11.05.2025", + }, + }, + { + date: "11.05.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpMGNtYmZh5iZx0iclZmLxYTLuVmYuIGNtw2bt5SOtoXaw5CMuETMuAjLyIjLxMTMtUmch1mclZmZhhSI", + value: "!(affermare-131.22.0.11.0.piz-9.mol-4b.ben-61.fer-1f.aff-4c)!", + result: { + word: "affermare", + correct: 22, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "11.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/11-06-2025-it-diffle-diffleit-grywebowe-37-lettere-in-9-parole-large-green-circl" +] = [ + { + date: "11.06.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpITL0F2duQmNtg2Yz4CMtMWYq5CZwMjLkVjMtg2Yz4iZy0ibhdmL3QWMuMTM00CajNjL0kTLy9WbuAjLxIjLx4SNx4iM2ETL0RXY3hSI", + value: + "!(watt-162.15.1.21.0.mor-94.3ch-413.1d7.gan-2f.3ch-25d.30d.jac-0.3ch-6d.wat-2)!", + result: { + word: "watt", + correct: 15, + position: 1, + incorrect: 21, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 37, + date: "11.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/11-09-2025-de-diffle-difflede-grywebowe-50-buchstaben-im-7-wortern-large-green-c" +] = [ + { + date: "11.09.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=hkyMycTMtEmc05yYhNTLoNWYuETNwETLjFmbuMmM2EjLxkzYtEmcuUWOz0ychRnLzUmZ20CajNnLw4iNugjL2MjL0UjMt4WZoN2c0Fmc0hSI", + value: + "!(tratschen-254.36.8.6.0.sch-6fe3.tas-39e.ra-c91.162c.nac-1051.ach-3ac.tra-1723)!", + result: { + word: "tratschen", + correct: 36, + position: 8, + incorrect: 6, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 50, + date: "11.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/11-09-2025-es-diffle-difflees-grywebowe-30-letras-en-6-palabras-large-green-circ" +] = [ + { + date: "11.09.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=hkCMtEmav5CMtcWdq5yMz0Cdw5SYz0SY25CMtwGbv5iYhJTLyVGauAjL0EjLy4CNx4CN1ITLsFm", + value: + "˜[\u000bLM\u000bŒM\u000bŒ‹ŒM\u000bŒ\u000bš\u0019\\‹L˜X‹›Û\u001b\u000bL\u000b˜KLØKœ\u001d\u000bLÌ˚YËL\u000b›Ú˜KL\nH", + result: { + word: "˜[\u000bLM\u000bŒM\u000bŒ‹ŒM\u000bŒ\u000bš\u0019\\‹L˜X‹›Û\u001b\u000bL\u000b˜KLØKœ\u001d\u000bLÌ˚YËL\u000b›Ú˜KL\nH", + correct: null, + position: null, + incorrect: null, + knownIncorrect: null, + totalWords: 0, + totalLetters: null, + date: "11.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/11-09-2025-it-diffle-diffleit-grywebowe-25-lettere-in-4-parole-large-green-circl" +] = [ + { + date: "11.09.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpMTMt4mLjFTL0FGdugTMtoXaw5CN50icv1mLw4yMx4CMuITMuQTNy0SYn5WY0hSI", + value: "!(tanga-254.12.0.13.0.mor-94.piz-18.tat-1c.n-13)!", + result: { + word: "tanga", + correct: 12, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "11.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/12-02-2024-flag-cz-diffle-difflecs-162-pismen-v-32-slovech-large-green-circle-60" +] = [ + { + date: "12.02.2024", + nick: "Deykun", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=QIpEWMtkndz5iNkFTLyFmduQTLkVmauMmNtUGd15yYtMXYj5CNkFTLvx2cuIjMx0yYvtmLiFWL4V2cuATLlV2duATLkJ3cuAjNts2by5SNx0ychNmL2YGNtg2Yz4CN30ya15CN0MTLvt2cuQGZx0CboNmLllTLuVnZuMzMtMWay5SMzITLrVGZucDZtEGZ65yYy0iahZnLw0yY29mL0ITLs9GcuEDOz0CajNjLjNTMtUHdz5iYyUTLoN2MucjMy0CbhZnLygTLrV2YuATLs9mduAzMz0Cbp5SMt0WYt5SNy0CblRmL5UjL3gjL1EjLwYjLvt2cyF2YEJUJzMUJ2FTQlUzQlgSI", + value: + "!(švýcarsko.60.15.87.59.del-25.mam-1.il-330.vol-0.cek-82.val-227.3ch-52b.stu-13c.3ch-381.pol-24.ovc-0.vaj-2c.zda-d7.dek-231.ric-33.fun-9e.chl-1dd.sko-344.uk-74.3ch-4f6.cas-15.rok-60.srd-0.wee-0.sex-ab.koc-122.slo-1d4.cas-c.ute-6c.jed-4.var-1d6.svy-1a)!", + result: { + word: "švýcarsko", + correct: 60, + position: 15, + incorrect: 87, + knownIncorrect: 59, + totalWords: 32, + totalLetters: 162, + date: "12.02.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/12-02-2025-diffle-difflecs-grywebowe-29-pismen-v-6-slovech-large-green-circle" +] = [ + { + date: "12.02.2025", + nick: "Deykun", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=hkiZx0ibuYTLkVGduIWMtQWZ25COx0CZpJmLzITMtg2Yz4yMjFTLs9GauAjLxEjLx4yNx4yM00SZj5WZk5WZ0hSI", + value: "!(tendence-43.17.1.11.0.hol-1c3.3ch-123.bid-18.ved-1b.ted-6.n-1f)!", + result: { + word: "tendence", + correct: 17, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 29, + date: "12.02.2025", + }, + }, + { + date: "12.02.2025", + nick: "Greyman", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=hkiZx0iblRnLjVTMuYjZy4yNh5iMwETLoN2MuIDOtQWZz5yMy0iclBnLxEWL2lGZuATLvhWYuAjLyEjLy4iMy4yM00SZj5WZk5WZ0hSI", + value: + "!(tendence-43.22.2.12.0.aho-0.div-a1.per-23.sed-82.3ch-102.a7.2f6.15c.ten-1f)!", + result: { + word: "tendence", + correct: 22, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 36, + date: "12.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/12-06-2025-de-diffle-difflede-grywebowe-20-buchstaben-im-2-wortern-large-green-c" +] = [ + { + date: "12.06.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESK0EGOt4Wao5yMlZmNtg2Yz5CMucjLx4iMx4yM2ETLuJXZ05WaohSI", + value: "!(hintern-163.12.1.7.0.sch-6fe3.hin-8a4)!", + result: { + word: "hintern", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "12.06.2025", + }, + }, + { + date: "12.06.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpQTY40ibphmL1ADZtMWdi5CMucjLx4iMx4yM2ETLuJXZ05WaohSI", + value: "!(hintern-163.12.1.7.0.buc-d05.hin-8a4)!", + result: { + word: "hintern", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 20, + date: "12.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/12-06-2025-es-diffle-difflees-grywebowe-29-letras-en-5-palabras-large-green-circ" +] = [ + { + date: "12.06.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=hkCMt0Wdy5CMtIXd05CMt4WYt5CNzITLyFGcuIWYy0iclhmLw4yNuIjLwIjLzYTMtEmbh1WdyhSI", + value: "!(rumana-163.20.2.7.0.her-2ab.par-234.man-0.tur-0.rum-0)!", + result: { + word: "rumana", + correct: 20, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "12.06.2025", + }, + }, + { + date: "12.06.2025", + nick: "Greyman", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=ESKw4SY30Sb1JnLj1iYtVnLw0Sb1BnLw0SZ1ZmLw4yNuEjL3EjLzYTMtEmbh1WdyhSI", + value: "!(rumana-163.17.1.7.0.fue-0.pum-0.umb-c.rum-7a.0)!", + result: { + word: "rumana", + correct: 17, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 25, + date: "12.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/12-06-2025-it-diffle-diffleit-grywebowe-32-lettere-in-6-parole-large-green-circl" +] = [ + { + date: "12.06.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKz0icpNmL1ETLyVnZukDMx0CajNjLkZTLnlmcugTMtoXaw5CN50icv1mLw4iNx4iMuQTMuMjNx0SYjJXajhSI", + value: "!(circa-163.14.2.16.0.mor-94.piz-18.rig-6d.3ch-109.fur-15.cir-3)!", + result: { + word: "circa", + correct: 14, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "12.06.2025", + }, + }, + { + date: "12.06.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKz0icp5iYzETLzF2YuYjNtIXak5iY00Cbv1mL50iepBnLw4yMx4CMuMTMuMjNx0SYjJXajhSI", + value: "!(circa-163.13.0.13.0.piz-9.mol-4b.dir-66.cas-13b.ir-3)!", + result: { + word: "circa", + correct: 13, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "12.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/12-09-2025-es-diffle-difflees-grywebowe-30-letras-en-6-palabras-large-green-circ" +] = [ + { + date: "12.09.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=QIpATLs5CMtQWZ25yMtUWdq5CMtkGcl5CMtQXZi5iYhJTLyVGauAjL1EjLw4SNx4SN1ITLhxWZ2hSI", + value: "!(vela-255.15.0.15.0.her-2ab.bet-0.epi-0.jue-3.ved-0.l-0)!", + result: { + word: "vela", + correct: 15, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "12.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/12-09-2025-it-diffle-diffleit-grywebowe-28-lettere-in-5-parole-large-green-circl" +] = [ + { + date: "12.09.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESK4UTLz5yY10ibhJmLzQWLzFGcuUzMtkmdh5CN50icv1mLw4yMx4SMuQTMuUTNy0ybzNXYihSI", + value: "!(basso-255.14.1.13.0.mor-94.avi-35.pas-d3.ban-5c.s-58)!", + result: { + word: "basso", + correct: 14, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "12.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/13-06-2025-es-diffle-difflees-grywebowe-31-letras-en-4-palabras-large-green-circ" +] = [ + { + date: "13.06.2025", + nick: "redve", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=hkCMt0Wdy5CMtIXd05CMt4WYt5CNzITLyFGcuIWYy0iclhmLw4yNuIjLwIjLzYTMtEmbh1WdyhSI", + value: "!(rumana-163.20.2.7.0.her-2ab.par-234.man-0.tur-0.rum-0)!", + result: { + word: "rumana", + correct: 20, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "13.06.2025", + }, + }, + { + date: "13.06.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=ESKiFTLhJnL0ETLu5iMxYWLyFmLl1SYy5SN30SYs5SNwITLuF2YuQTNx0Sa4VmLkFGNuATLyVmL0gTMtIXYj5SZk1CbhZmLw0iYhJmL1ITLoNmMuATLk5SNlNmLkNWZtIXYj5CMtAXYy5iZ30CajNjL1cTLhJ3ZuIWYy0iclhmL54CMz4CMx4SN24CN2ETLsFWZuFmcjhSI", + value: + "!(craneal-164.65.10.30.9.her-2ab.gra-75.3ch-7f.rap-0.car-ecd.ce5.d-0.2ch-25.bab-0.fal-de.car-184.er-0.4ad.exi-154.can-205.la-75.ra-e.ar-f12.n-14.ra-1b)!", + result: { + word: "craneal", + correct: 65, + position: 10, + incorrect: 30, + knownIncorrect: 9, + totalWords: 20, + totalLetters: 105, + date: "13.06.2025", + }, + }, + { + date: "13.06.2025", + nick: "Greyman", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=QIpIWMtEmcuUTNtIXduEWO20ichNmLyQWMtAXbp5CMugjLz4yNx4CN2ETLsFWZuFmcjhSI", + value: "!(craneal-164.17.3.8.0.imp-1d2.car-69a.ur-55.ra-1b)!", + result: { + word: "craneal", + correct: 17, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "13.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/13-09-2025-de-diffle-difflede-grywebowe-32-buchstaben-im-4-wortern-large-green-c" +] = [ + { + date: "13.09.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpADNwETL0VmYuQTLhxWYuEmNk1SYsBnLzUmZ20CajNnLw4SOuMjLwIjL2UjMt0mchxWZ0RXZihSI", + value: "!(bettelarm-256.20.3.9.0.sch-6fe3.pla-d6a.ala-4.bet-1040)!", + result: { + word: "bettelarm", + correct: 20, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 32, + date: "13.09.2025", + }, + }, + { + date: "13.09.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=hkCM0ATMuIGMwETL0VmYuQWMtg2Yy4iZjRTLsVGduITZz0CchtmLiRGN20iclZnLw4COuQjL1IjL2UjMt0mchxWZ0RXZihSI", + value: + "!(bettelarm-256.25.4.8.0.ver-64db.kap-3e2.tel-4cf.2ch-1d.bet-100b.1040)!", + result: { + word: "bettelarm", + correct: 25, + position: 4, + incorrect: 8, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "13.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/13-09-2025-es-diffle-difflees-grywebowe-39-letras-en-9-palabras-large-green-circ" +] = [ + { + date: "13.09.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=ESKiJWLuVnZuEGOtg2Yz4iYt4Wds5CNhFTLoN2MuATLjlGcuIWZx4CZ10CajNjLw0ibh5mLiFmMtIXZo5CMuITMuQjLzIjL2UjMtIXYk5WdmhSI", + value: + "!(fundar-256.23.4.12.0.her-2ab.nan-0.3ch-5d.1eb.pic-0.3ch-1a4.lun-b.3ch-8a.fun-bb)!", + result: { + word: "fundar", + correct: 23, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 39, + date: "13.09.2025", + }, + }, + { + date: "13.09.2025", + nick: "Greyman", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=QIpImYt4mLj1iZukTMt0Wdm5iYz0CajNjLy0yZ1xmLmhTLyV3YuEmNtIXZh5CMuUTMuIjLyIjL2UjMtIXYk5WdmhSI", + value: + "!(fundar-256.22.2.15.0.aer-6a.cur-8f.lug-2.3ch-3b.fum-19.f-c.n-bb)!", + result: { + word: "fundar", + correct: 22, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "13.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/15-01-2025-de-diffle-difflede-grywebowe-40-buchstaben-im-7-wortern-large-green-c" +] = [ + { + date: "15.01.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpATLylHbuQGM00SZstmLw0iepBnLw0iZ15CMtI2bs5CZlFTLoN2MuMTZmZTLoN2cuUjL1IjLy4yMx4SNx0yapJXeshSI", + value: + "!(lyrik-15.13.2.25.5.sch-6fe3.3ch-1ed.lob-0.uf-0.piz-0.kle-40d.lyr-0)!", + result: { + word: "lyrik", + correct: 13, + position: 2, + incorrect: 25, + knownIncorrect: 5, + totalWords: 7, + totalLetters: 40, + date: "15.01.2025", + }, + }, + { + date: "15.01.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=hkCMtIXes5SN04iNkFTLoN2MuQWMt42bt5CMuETMuIjL54SNx0yapJXeshSI", + value: "!(lyrik-15.9.2.11.0.mon-1d.3ch-1d6.45.lyr-0)!", + result: { + word: "lyrik", + correct: 9, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "15.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/16-06-2025-de-diffle-difflede-grywebowe-74-buchstaben-im-13-wortern-large-green-" +] = [ + { + date: "16.06.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=hkCNmJWMtIXZ25CMzETLmJXZuQDNz4yMyMTLzFmZuIWMtg2Yy4iY3MTLzF2duATLzNXYuQTY50ychJmLzEWLz9GcuITLuVHZuUDMy0CajNjLhlDOt4WYuMTZmZTLoN2cuAjL0EjL24CN14yN2ETLn5WdzNXYmJXZ2hSI", + value: + "!(verfassung-167.54.6.14.0.sch-6fe3.an-89a.3ch-205.dun-2.pos-a3.bas-9a4.ass-0.was-37b.2ch-1b.fas-323.344.erf-130.ver-1bf4)!", + result: { + word: "verfassung", + correct: 54, + position: 6, + incorrect: 14, + knownIncorrect: 0, + totalWords: 13, + totalLetters: 74, + date: "16.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/16-06-2025-it-diffle-diffleit-grywebowe-44-lettere-in-9-parole-large-green-circl" +] = [ + { + date: "16.06.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkSYhFTLzNXYuQWYtIXZt5yMkNTLlJHcuETYtM3ch5SN04SYh1CajJjL3cTMtg2Yz4iNz0ich5CN50icv1mLw4CMx4CNuAzMucjNx0SZyVWb1N3chhSI", + value: + "!(assumere-167.30.4.10.0.mor-94.ar-36.3ch-177.2ch-aa.45.ass-a1.pre-3d3.mer-ad.ass-1aa)!", + result: { + word: "assumere", + correct: 30, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 44, + date: "16.06.2025", + }, + }, + { + date: "16.06.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKhFWMtM3ch5iZwITLoN2MuIWMtg2Yy4CZh1icl1mLiljL0QjLzYjL44CMj1CajJjL3cjL1QTMtg2Yz4CN20SYtNnL3ITLyVGZuEjNt4WZi5iY00Cbv1mL50iepBnLw4SMy4iNuMzMucjNx0SZyVWb1N3chhSI", + value: + "!(assumere-167.33.6.21.0.piz-9.mol-4b.ben-61.der-27.sma-64.3ch-145.77.2ch-c0.8.63.44.9b.mer-ad.2ch-1b.3ch-20f.ass-1aa)!", + result: { + word: "assumere", + correct: 33, + position: 6, + incorrect: 21, + knownIncorrect: 0, + totalWords: 16, + totalLetters: 60, + date: "16.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/17-01-2025-de-diffle-difflede-grywebowe-18-buchstaben-im-2-wortern-large-green-c" +] = [ + { + date: "17.01.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpITYx0iblRnLzUmZ20CajNnLw4SOuEjL44yNx0icv5WZ0hSI", + value: "!(tenor-17.8.1.9.0.sch-6fe3.ten-1a2)!", + result: { + word: "tenor", + correct: 8, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 18, + date: "17.01.2025", + }, + }, + { + date: "17.01.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpITYx0iblRnLxkTLoN2MuImNhNTLulWZuAjLwEjLx4CMx4yNx0icv5WZ0hSI", + value: "!(tenor-17.10.1.10.0.ein-3a6b.3ch-91.ten-1a2)!", + result: { + word: "tenor", + correct: 10, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "17.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/17-01-2025-es-diffle-difflees-grywebowe-43-letras-en-8-palabras-large-green-circ" +] = [ + { + date: "17.01.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=ESKwYjLykTLtlGbuMmNx0CbpZmLw0SbuEzYtMnLyATMtQnLyETMt4Was5yYyMTLs9GcuAjLwEjLx4iMz4yNx0ybkFGdp1WashSI", + value: + "!(limitado-17.32.1.10.0.pol-32c.lin-112.t-102.s-c1.m-0.fil-16c.lim-92.60)!", + result: { + word: "limitado", + correct: 32, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 43, + date: "17.01.2025", + }, + }, + { + date: "17.01.2025", + nick: "Greyman", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=ESKwYTLt5SMj1ycpxmLiVjMtw2bw5CMuQjLx4iNx4yNx0ybkFGdp1WashSI", + value: "!(limitado-17.16.1.4.0.pol-25b.lis-c1.m-60)!", + result: { + word: "limitado", + correct: 16, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "17.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/18-09-2025-es-diffle-difflees-grywebowe-31-letras-en-5-palabras-large-green-circ" +] = [ + { + date: "18.09.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=ESKwcjL3MTL0B3buATLw92cuATLt92YuIWYy0iclhmLw4SNuMjLzIjLxYjMtEGdzlWbpRHcvhSI", + value: "!(optimista-261.23.3.5.0.her-2ab.com-0.sop-0.opt-37.70)!", + result: { + word: "optimista", + correct: 23, + position: 3, + incorrect: 5, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "18.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/18-09-2025-it-diffle-diffleit-grywebowe-56-lettere-in-12-parole-large-green-circ" +] = [ + { + date: "18.09.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkyNt02buMWMtcWan5CZx0CajJjL2QWLoN2MuMWYt02bj5yMh1CbpZmL1MTLs9mYuEzMtQXaw5SO10ibulmLzQWLs92cuUTMtQXd05CN50icv1mLw4COx4SMuczMuEjNy0ybs9Gdp12bnhSI", + value: + "!(gomitolo-261.37.1.18.0.mor-94.tut-15.sol-d3.inn-59.pit-31.bol-35.fil-a3.com-ac.3ch-d6.2ch-1d.gig-1c.om-7)!", + result: { + word: "gomitolo", + correct: 37, + position: 1, + incorrect: 18, + knownIncorrect: 0, + totalWords: 12, + totalLetters: 56, + date: "18.09.2025", + }, + }, + { + date: "18.09.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpcTLt92ZuYDOy4yY5MTLoN2MukTMt0Wa05iY00Cbv1mLhNTL0JXYuAjL34iNuIjMuEjNy0ybs9Gdp12bnhSI", + value: "!(gomitolo-261.22.6.7.0.art-3a.mol-4b.tim-19.3ch-39c.286.gom-7)!", + result: { + word: "gomitolo", + correct: 22, + position: 6, + incorrect: 7, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "18.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/19-01-2025-flag-cz-diffle-difflecs-grywebowe-58-pismen-v-12-slovech-large-green-" +] = [ + { + date: "19.01.2025", + nick: "Felonious_Gru", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=ESKyEmNtwWY65yN20iYsFmLw0idhZmL5ImMucjYy4SO14SO4UTLoN2MuATLtlmeuMTNtM3bo5CN0MTLvt2cuQTZtMXZj5SYyETLhJnYucjL4IjL04iNy4SOx0SYi9GbhVkQlUzQlgSI", + value: + "!(žaloba-19.26.4.28.7.bra-12a.ces-e4.sko-344.hos-53.zim-0.3ch-589.59.2b7.2b9.fav-0.alb-67.zal-6a2)!", + result: { + word: "žaloba", + correct: 26, + position: 4, + incorrect: 28, + knownIncorrect: 7, + totalWords: 12, + totalLetters: 58, + date: "19.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/19-02-2025-diffle-difflecs-grywebowe-30-pismen-v-6-slovech-large-green-circle" +] = [ + { + date: "19.02.2025", + nick: "Deykun", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=QIpYmNuYTLst2cukjYh1idl5mLzITMtg2Yz4iZ1ITLhx2auMzYx0CbvhmLw4SOuIjL5EjLwUTLhJGZhx2azhSI", + value: "!(skladba-50.19.2.9.0.hol-1c3.kla-25f.3ch-123.nev-ab9.skl-6.6f)!", + result: { + word: "skladba", + correct: 19, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 30, + date: "19.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/19-02-2025-it-diffle-diffleit-grywebowe-36-lettere-in-7-parole-large-green-circl" +] = [ + { + date: "19.02.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpIDOx0SYwNnL4ETMtg2Yz4CMtw2bw5yM40ibhNnLkFTMtg2Yz4iNz0Sa2FmL0kTLy9WbuAjLwEjLy4CNy4CM10SYs9mbnFGczhSI", + value: + "!(spagnola-50.24.2.10.0.mor-94.avi-36.3ch-11d.san-83.pol-0.3ch-118.spa-182)!", + result: { + word: "spagnola", + correct: 24, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 36, + date: "19.02.2025", + }, + }, + { + date: "19.02.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKygTMukzNx0SYwNnLy0iahJmL4ETMtg2Yz4iNx0ybwNnLiRTLs9WbukTL6lGcuAjLzEjLw4iNy4CM10SYs9mbnFGczhSI", + value: + "!(spagnola-50.26.0.13.0.piz-9.mol-4b.spo-16.3ch-118.baj-2.spa-179.182)!", + result: { + word: "spagnola", + correct: 26, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "19.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/19-07-2024-it-diffle-diffleit-20-lettere-in-4-parole-large-green-circle-11-large" +] = [ + { + date: "19.07.2024", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkSN1MTLlJnL4ETL6lGcuEjNt4WZi5iY00Cbv1mLw4SOuAjLxEjLxAjMt8WatVmcwhSI", + value: "!(premio-201.11.0.9.0.mol-4b.ben-61.piz-18.re-355)!", + result: { + word: "premio", + correct: 11, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "19.07.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/19-07-2025-it-diffle-diffleit-grywebowe-26-lettere-in-4-parole-large-green-circl" +] = [ + { + date: "19.07.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpczNx0SZuEjYtkmcuMDNy0ichBnL0kTLy9WbuAjL24iMugTMuADMy0SZyFWatVmcwhSI", + value: "!(premiare-200.18.2.6.0.mor-94.par-243.ri-b1.e-177)!", + result: { + word: "premiare", + correct: 18, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 26, + date: "19.07.2025", + }, + }, + { + date: "19.07.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESK3cTMtUmcw5iNhJTLoN2MukjNtUmcm5CZ10SZyJmL3MWLlJ3YuUTL6VmcuEzMtIXZz5SYz0CdyFmLw4CNx4yMugjMuADMy0SZyFWatVmcwhSI", + value: + "!(premiare-200.28.3.14.0.art-3a.ser-31.rez-5.cre-c7.bre-5d.fre-69.3ch-2a6.pre-177)!", + result: { + word: "premiare", + correct: 28, + position: 3, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 45, + date: "19.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/20-01-2025-es-diffle-difflees-grywebowe-34-letras-en-7-palabras-large-green-circ" +] = [ + { + date: "20.01.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=hkiYtcmLzETLi5CMt0Was5SZj1CajNjL0gTMtQHbh5CZhRTLyV2YuMmMz0CbvBnLw4CNx4SMukTMuAjMt8GZhdWashSI", + value: + "!(ligado-20.19.1.14.0.pol-32c.cer-4ad.alt-184.3ch-ce.lim-0.b-13.g-b)!", + result: { + word: "ligado", + correct: 19, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 34, + date: "20.01.2025", + }, + }, + { + date: "20.01.2025", + nick: "Greyman", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=QIpIWLn5COtEmLi1iYpxmL50CbpBnLw0yap1mL0UGNx0ibvNmLw4CNx4SMugjMuAjMt8GZhdWashSI", + value: "!(ligado-20.28.1.14.0.con-14e4.mik-0.pil-9.lib-b.a-8.g-b)!", + result: { + word: "ligado", + correct: 28, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 43, + date: "20.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/20-02-2025-flag-cz-diffle-difflecs-grywebowe-28-pismen-v-6-slovech-large-green-c" +] = [ + { + date: "20.02.2025", + nick: "Deykun", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=ESKl1ielRmLhNDNtg2Yz4SZx0idpBnLjRTLzVGZuUTLuVnYuMzYx0CbvhmLw4CNx4SMuMTMuETNtQnclpXZkhSI", + value: "!(dezert-51.13.1.14.0.hol-1c3.bun-5.des-4c.piv-1e.3ch-43a.dez-e)!", + result: { + word: "dezert", + correct: 13, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 28, + date: "20.02.2025", + }, + }, + { + date: "20.02.2025", + nick: "Greyman", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=QIpUWL65CMxITLr5SM0ETLwVGZuIWZuQWZtg2Yz4yNy0Sdy5CM00idpRmLw4iMx4SMuAjMuETNtQnclpXZkhSI", + value: "!(dezert-51.20.1.12.0.div-40.ru-27.3ch-ed.eb.dep-141.k-210.z-e)!", + result: { + word: "dezert", + correct: 20, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 33, + date: "20.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/20-08-2025-es-diffle-difflees-grywebowe-39-letras-en-10-palabras-large-green-cir" +] = [ + { + date: "20.08.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=hkCMtoWYw5SZ04SYz0CajJjL2ITMtg2Yz4CMtAXYw5CMtQWYj5CMtQXY05CMtU3Zh5CMtwWYi5iYhJTLyVGauAjL5EjLw4CMy4iMzITLhpWYwhSI", + value: + "!(paja-232.20.0.19.0.her-2ab.bal-0.agu-0.tat-0.cad-0.pap-0.3ch-126.2ch-3a.4e.paj-0)!", + result: { + word: "paja", + correct: 20, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 39, + date: "20.08.2025", + }, + }, + { + date: "20.08.2025", + nick: "Greyman", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=ESKw0iauATLw5CMtYnLw0yZuATLjFmL5EDNtEGbw5iYhJTLyVGauAjLzEjLw4CMy4iMzITLhpWYwhSI", + value: "!(paja-232.20.0.13.0.her-2ab.pla-419.ac-0.g-0.v-0.p-0.j-0)!", + result: { + word: "paja", + correct: 20, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 33, + date: "20.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/20-12-2025-es-diffle-difflees-grywebowe-65-letras-en-15-palabras-large-green-cir" +] = [ + { + date: "20.12.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=ESKi1SYvRnL0ITLoN2MugzMuETNtg2Yy4CMtQ3bq5CNh1idhNmLw0CZuATLn5CMtQ3buATMx0CbhRnL2kTLsVnZuImMtwWai5yYkJTLs9GcuMTMx0CajNjLiFmMtIXZo5CMuAjMuQjLxQjL0UzMtEGbsF2b0hSI", + value: + "!(toalla-354.41.4.20.0.her-2ab.3ch-113.pol-2dc.bil-2b.ful-96.tal-110.ot-0.g-0.d-0.cav-a4.jot-0.2ch-51.38.3ch-24.toa-b)!", + result: { + word: "toalla", + correct: 41, + position: 4, + incorrect: 20, + knownIncorrect: 0, + totalWords: 15, + totalLetters: 65, + date: "20.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/20-12-2025-it-diffle-diffleit-grywebowe-48-lettere-in-9-parole-large-green-circl" +] = [ + { + date: "20.12.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkSZy0Cdv5iYx0CdlJnLhVTL09mZuETYtQHdv5CZ50SaoNmL2UTLuVHcucTYt8Gdz5yMzETLy9GduQTOtI3bt5CMuYTMuEjLxMjL0UzMtUmcvR3byhSI", + value: + "!(rotore-354.31.1.16.0.mor-94.tor-133.sto-a7.pun-56.chi-9d.ott-a1.fot-5a.ret-1b.ot-2e)!", + result: { + word: "rotore", + correct: 31, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 48, + date: "20.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/21-02-2025-diffle-difflecs-grywebowe-53-pismen-v-13-slovech-large-green-circle" +] = [ + { + date: "21.02.2025", + nick: "Deykun", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=QIpImMtAXYq5SYy0CajJjL0czMtg2Yz4CMtA3br5yY00CajJjL1M2Mtg2Yz4CMtMXYr5iM3MTLoN2MuATL692auIGZy0ichJmLmFTLrlmbuEWMtMXdt5yMjFTLs9GauAjL1EjL44CMz4iM10ybrNnbvBXYqhSI", + value: + "!(japonsko-52.30.8.15.0.hol-1c3.mus-1a.nik-1f.bar-2db.koz-0.3ch-372.kas-0.3ch-3c5.2ch-4c.kop-0.3ch-374.2ch-2a.jap-2b)!", + result: { + word: "japonsko", + correct: 30, + position: 8, + incorrect: 15, + knownIncorrect: 0, + totalWords: 13, + totalLetters: 53, + date: "21.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/21-06-2025-diffle-difflefr-grywebowe-43-lettres-en-8-mots-29-0-14-0" +] = [ + { + date: "21.06.2025", + nick: "kwiecik", + lang: "fr", + url: "https://deykun.github.io/diffle-lang/fr?r=hkiNuUDMx4CNwEjLmBTMuUDNy0ich5yMz0ico5SZwETLlJ3YuYTLjVGbuAjL0EjLw4SOy4iM3ETL5EUJzMUJyJXYjhSI", + value: "!(carré-172.29.0.14.0.lec-6.cre-10e.hr-33.ar-245.10f.104.105.6)!", + result: { + word: "carré", + correct: 29, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 43, + date: "21.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/22-02-2025-diffle-difflecs-grywebowe-24-pismen-v-5-slovech-large-green-circle" +] = [ + { + date: "22.02.2025", + nick: "Deykun", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=ESK3QTLl5CMtYXak5SYtcWaz5iNt4Wdi5yMjFTLs9GauAjLxEjLw4yMx4yM10SY0VWakhSI", + value: "!(dieta-53.13.0.11.0.hol-1c3.bun-6.sig-a.div-0.e-47)!", + result: { + word: "dieta", + correct: 13, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "22.02.2025", + }, + }, + { + date: "22.02.2025", + nick: "Felonious_Gru", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=hkyN00SZpRmLmFmMtg2Yz4CMtQXYk5SYyUjLhN2Mtg2Yz4CMt8Gah5SYyETLhJnYuEjL2EjLw4CNx4yM10SY0VWakhSI", + value: + "!(dieta-53.14.0.16.1.bra-12a.aho-0.3ch-3ca.52a.dat-0.3ch-2af.die-47)!", + result: { + word: "dieta", + correct: 14, + position: 0, + incorrect: 16, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 30, + date: "22.02.2025", + }, + }, + { + date: "22.02.2025", + nick: "Greyman", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=QIpcDNtUmLw0idpRmLhNWLzVGcuIjZtIXZ05CMucjLx4SMx4yM10SY0VWakhSI", + value: "!(dieta-53.11.1.7.0.ter-f2.pes-ca.div-0.e-47)!", + result: { + word: "dieta", + correct: 11, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 19, + date: "22.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/22-02-2025-it-diffle-diffleit-grywebowe-32-lettere-in-6-parole-large-green-circl" +] = [ + { + date: "22.02.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpEGNt4mLhFTL25CMy0ycp5CMtkWduUTLi9GbuQTOtI3bt5CMuYTMuEjL1EjLzUTLv5WashSI", + value: "!(lino-53.15.1.16.0.mor-94.lob-5.ui-0.is-20.v-1a.n-4a)!", + result: { + word: "lino", + correct: 15, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "22.02.2025", + }, + }, + { + date: "22.02.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkSY00ibpxmL4ETL6lGcuEjNt4WZi5iY00Cbv1mLw4CMx4CMugjLzUTLv5WashSI", + value: "!(lino-53.8.0.10.0.mol-4b.ben-61.piz-18.lin-4a)!", + result: { + word: "lino", + correct: 8, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 18, + date: "22.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/22-07-2024-de-diffle-difflede-70-buchstaben-im-14-wortern-large-green-circle-39-" +] = [ + { + date: "22.07.2024", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpEDNjNTLulWZuATLuVnauEDNz0SawNnLmJTLzNXZuU2MuUDMy0CajNjLw0iZ11mL3cDNx0SaldnLhNDNk1CajNnLyIjNtUWa35SNtcXZu5SO00ibhRmL4kzYx0icvZnLzUmZtwWYo5yNucjMuQjL5MjL0AjMt4WZzlWZ35WalhSI", + value: + "!(einweisen-204.39.4.27.7.hal-fe3.vor-1c98.dan-49.new-5.wie-622.sch-d43a.wei-1477.muf-0.3ch-205.3e.ess-2f.spi-341.jun-0.ein-3c41)!", + result: { + word: "einweisen", + correct: 39, + position: 4, + incorrect: 27, + knownIncorrect: 7, + totalWords: 14, + totalLetters: 70, + date: "22.07.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/22-07-2024-it-diffle-diffleit-grywebowe-32-lettere-in-6-parole-large-green-circl" +] = [ + { + date: "22.07.2024", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKz0yYl5SNx0idhZmLmJTMtw2bw5yNl1CbvZnLxYTLuVmYuIGNtw2bt5iMuMTMuEjL4EjL0AjMtEGbvNWZmhSI", + value: "!(fecola-204.18.1.13.2.mol-4b.ben-61.vol-e7.pol-12f.fav-15.ec-3)!", + result: { + word: "fecola", + correct: 18, + position: 1, + incorrect: 13, + knownIncorrect: 2, + totalWords: 6, + totalLetters: 32, + date: "22.07.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/23-01-2025-flag-cz-diffle-difflecs-grywebowe-29-pismen-v-6-slovech-large-green-c" +] = [ + { + date: "23.01.2025", + nick: "Deykun", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=ESKjJmZt8mcw5iY0ETLhJHauYTMz0iclBnL5MTLzVXbuATLo9mYuMzYx0CbvhmLw4iMx4SMuYTMuMjMtEmco9mcwhSI", + value: + "!(prohra-23.16.1.12.0.hol-1c3.boh-0.mus-39.per-316.hra-14b.pro-fbc)!", + result: { + word: "prohra", + correct: 16, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 29, + date: "23.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/23-03-2025-it-diffle-diffleit-grywebowe-82-lettere-in-14-parole-large-green-circ" +] = [ + { + date: "23.03.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKmJjLxQjL3QTLhJnLxUTLwFmLxUTLhJHcuATLjFWeugjNx0SYydmL5cTLpJHcuYTYy4iMm5COxETLoN2MuY2MtYXYy5yMtIXYr5CN50icv1mLx4CMy4CNugTNuIDOtUmchNWa0FmcwhSI", + value: + "!(praticare-82.58.4.20.1.mor-94.kar-3.rav-3f.3ch-118.f2.2a6.pri-79.gra-168.yac-0.pra-51.ap-51.ra-47.41.2f)!", + result: { + word: "praticare", + correct: 58, + position: 4, + incorrect: 20, + knownIncorrect: 1, + totalWords: 14, + totalLetters: 82, + date: "23.03.2025", + }, + }, + { + date: "23.03.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpYmMtEmcucTNt4Wdw5iZtY3bt5yNwMjLzEDNtg2Yz4SYz0CdyFmLw4CMx4SMuMjMuIDOtUmchNWa0FmcwhSI", + value: "!(praticare-82.23.1.10.0.art-3a.3ch-413.307.mov-f.pun-57.ra-2f)!", + result: { + word: "praticare", + correct: 23, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "23.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/23-06-2025-de-diffle-difflede-grywebowe-53-buchstaben-im-9-wortern-large-green-c" +] = [ + { + date: "23.06.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=hkSMhdjMuMWZ1ITLu5SM50yZhxmLw0iYsFmLw0SYlBnLhdjL1AjMtg2Yz4CZ2YTLulmZuMTZmZTLoN2cuAjL1EjLz4SNz4CN3ETLyV2ZulmZn5WYshSI", + value: + "!(langfinger-174.35.3.15.0.sch-6fe3.fin-66d.3ch-205.7a.pea-0.alb-0.lag-91.n-25ec.27a1)!", + result: { + word: "langfinger", + correct: 35, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 53, + date: "23.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/23-06-2025-it-diffle-diffleit-grywebowe-44-lettere-in-8-parole-large-green-circl" +] = [ + { + date: "23.06.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkCNt8mYv5iYtM2bi5yYzETLoNmMugTMtoXaw5yMjFTLoN2MuEWMtEmdv5yNx0yZhZmL0kTLy9WbuAjLwIjLy4iMy4CN3ETLvRXY29mYvhSI", + value: + "!(obovato-174.22.2.20.0.mor-94.fag-17.ova-1a.3ch-1c3.piz-18.2ch-13c.boc-b.obo-4)!", + result: { + word: "obovato", + correct: 22, + position: 2, + incorrect: 20, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 44, + date: "23.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/24-06-2025-de-diffle-difflede-grywebowe-25-buchstaben-im-3-wortern-large-green-c" +] = [ + { + date: "24.06.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKh1ycv5CMt4Wdi5yMlZmNtg2Yz5CMukjLw4iNx4SN3ETLn5WdoN2c2IUJzMUJihSI", + value: "!(böschung-175.16.0.9.0.sch-6fe3.bun-0.os-a)!", + result: { + word: "böschung", + correct: 16, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 25, + date: "24.06.2025", + }, + }, + { + date: "24.06.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpEWLz9mYuIWLoNmMuATLuVHauQDNtg2Yz4COtM3bi5SN1ETLiVHauATYzMTLzVXYuAjLyEjLy4yMy4SN3ETLn5WdoN2c2IUJzMUJihSI", + value: + "!(böschung-175.23.2.12.0.aus-33a0.hub-155.bos-8.3ch-44.hun-0.2ch-b.bos-a)!", + result: { + word: "böschung", + correct: 23, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 37, + date: "24.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/25-01-2025-flag-cz-diffle-difflecs-grywebowe-33-pismen-v-6-slovech-large-green-c" +] = [ + { + date: "25.01.2025", + nick: "Deykun", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=QIpUzYtIHcz5SOj1icwpnL5ITLyBXduQGO20SYy5iMmZTLyFGcuMzYx0CbvhmLw4COuEjL0IjL1ITL0lmdhJHczhSI", + value: + "!(spravit-25.24.1.8.0.hol-1c3.par-6f2.ra-68d.upr-29.zpr-c9.spr-c5)!", + result: { + word: "spravit", + correct: 24, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 33, + date: "25.01.2025", + }, + }, + { + date: "25.01.2025", + nick: "Greyman", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=QIpUzYtIHcz5SM0MTLoN2MuQDNh1SY05CMlFTLpZ3cuYWMtYXak5CMt8Gah5CMuATMuIjL5EjL1ITL0lmdhJHczhSI", + value: + "!(spravit-25.19.2.10.0.aho-0.div-1f.svi-1e0.ta-a44.3ch-341.spr-c5)!", + result: { + word: "spravit", + correct: 19, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "25.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/26-02-2025-flag-cz-diffle-difflecs-grywebowe-24-pismen-v-5-slovech-large-green-c" +] = [ + { + date: "26.02.2025", + nick: "Deykun", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=ESK3IWMt8mcr5SMiFWLwVmbuYGNt0Wdk5CM2ETLz92auMzYx0CbvhmLw4SMx4SMuITMucTNtQXa09mcrhSI", + value: "!(krotit-57.12.1.11.0.hol-1c3.kos-160.dum-4f.nep-ab1.kro-1b7)!", + result: { + word: "krotit", + correct: 12, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "26.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/27-01-2025-de-diffle-difflede-grywebowe-30-buchstaben-im-5-wortern-large-green-c" +] = [ + { + date: "27.01.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpATLtVmZuImNuYDMy0CajNjLyU2Mt4Wat5yMlZmNtg2Yz5CMuITMuIjL2EjL3ITLulmbp1WZmhSI", + value: "!(feminin-27.16.2.12.0.sch-6fe3.min-3e2.3ch-206.6b.fem-0)!", + result: { + word: "feminin", + correct: 16, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "27.01.2025", + }, + }, + { + date: "27.01.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKw0SblZmLhNmMt4WZi5CO5EjL0YWMtg2Yz4yYlVTMt4Wal5CMuITMuAjL3EjL3ITLulmbp1WZmhSI", + value: "!(feminin-27.17.0.12.0.ein-15ec.3ch-1f4.198.ben-2ca.fem-0)!", + result: { + word: "feminin", + correct: 17, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "27.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/27-04-2025-it-diffle-diffleit-grywebowe-49-lettere-in-8-parole-large-green-circl" +] = [ + { + date: "27.04.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpQWNuEDZtMnLi1SZh1mL3cjLlJTLoN2MuMmZt4WYw5COtQXYuQTOtI3bt5CMuETMuMjL1MjL3ETMtUmclRXZzNXYthSI", + value: + "!(massetere-117.35.3.11.0.mor-94.at-8.pan-fc.3ch-2e.77.mae-b.s-d1.5d)!", + result: { + word: "massetere", + correct: 35, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 49, + date: "27.04.2025", + }, + }, + { + date: "27.04.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKkVjLykTLzFWbuEDOz4CNyQTLoN2MugTNx0iclRnLxYTLuVmYuIGNtw2bt5SOtoXaw5CMuETMuEjLxMjL3ETMtUmclRXZzNXYthSI", + value: + "!(massetere-117.31.1.11.0.piz-9.mol-4b.ben-61.ter-158.3ch-424.381.mas-92.5d)!", + result: { + word: "massetere", + correct: 31, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 43, + date: "27.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/28-01-2025-es-diffle-difflees-grywebowe-52-letras-en-13-palabras-large-green-cir" +] = [ + { + date: "28.01.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=ESK3EWMtIXZo5SNy0CajJjLyEWLyVGauMjYuImYtg2Yz4CZx4SZtg2Yy4iY0ETL05WauQGNtIXZz5CZ20icyVmL5ITMtIXZt5CZhRTLyV2YuMmMz0CbvBnLw4CMy4CMuIzMugjMtUmalJXZohSI", + value: + "!(hereje-28.32.0.20.0.pol-32c.cer-4ad.mer-129.err-6d.ser-4d.int-14b.2ch-e.1d.3ch-bb.b3.her-a2.2ch-25.her-1a7)!", + result: { + word: "hereje", + correct: 32, + position: 0, + incorrect: 20, + knownIncorrect: 0, + totalWords: 13, + totalLetters: 52, + date: "28.01.2025", + }, + }, + { + date: "28.01.2025", + nick: "Greyman", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=hkyNhFTLyVGauADOtg2Yz4iZz0SZyNmL3QWLoN2MuAzMugTLoNmMugzYtYXZy5SZz0icpdmLzQTMtg2Yz4CNy0Cdh1mLw4SOx4CMuIjMugjMtUmalJXZohSI", + value: + "!(hereje-28.22.0.19.0.mat-24.3ch-143.gir-3e.rev-c8.2ch-8.30.3ch-d7.cre-3f.3ch-80.her-1a7)!", + result: { + word: "hereje", + correct: 22, + position: 0, + incorrect: 19, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 41, + date: "28.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/28-01-2025-it-diffle-diffleit-grywebowe-36-lettere-in-7-parole-large-green-circl" +] = [ + { + date: "28.01.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESK10ievNnLiZzMtg2Yz4iNto3bj5iN40CajJjLx0ibvpnL4ETL6lGcuQTOtI3bt5CMuITMuEjLzIjL4ITLhJXd6p3bzhSI", + value: + "!(sozzura-28.23.1.12.0.mor-94.piz-18.zon-1.2ch-86.coz-6.3ch-36b.soz-5)!", + result: { + word: "sozzura", + correct: 23, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 36, + date: "28.01.2025", + }, + }, + { + date: "28.01.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkSNuMTL692cuUjZtg2Yy4CO40idvNnLzQmMuUGMy4yNxETLoN2MuImMtg2Yy4CZ4EjL1QDNtg2Yz4yN20iZuQWL192cuEmMtg2Yz4SNh1icvNnLyIWLzFGcuU2NtcWYt5CNuYjMuEjLwQjL4ITLhJXd6p3bzhSI", + value: + "!(sozzura-28.40.1.26.4.mag-7e.pas-b2.sor-a5.3ch-2a.sou-d.f-67.3ch-445.18d.2ch-2b.3ch-117.20e.2d3.sov-88.2ch-f5.soz-3.5)!", + result: { + word: "sozzura", + correct: 40, + position: 1, + incorrect: 26, + knownIncorrect: 4, + totalWords: 16, + totalLetters: 67, + date: "28.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/28-10-2025-de-diffle-difflede-grywebowe-20-buchstaben-im-3-wortern-large-green-c" +] = [ + { + date: "28.10.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpMWMx0ichRmL5gTMtg2Yz4yMlZmNtg2Yz5CMuITMuEjL34SMwMTLtJXYkhSI", + value: "!(darm-301.7.1.12.0.sch-6fe3.3ch-189.dar-11c)!", + result: { + word: "darm", + correct: 7, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "28.10.2025", + }, + }, + { + date: "28.10.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKjFTMtIXYk5CM3IWLyFmZuUjMuAjYtg2Yz4SNwQWLjVnYuAjLzEjLw4CNx4SMwMTLtJXYkhSI", + value: "!(darm-301.14.0.13.0.buc-d05.3ch-b0.25.far-b70.dar-11c)!", + result: { + word: "darm", + correct: 14, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 27, + date: "28.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/28-10-2025-es-diffle-difflees-grywebowe-28-letras-en-5-palabras-large-green-circ" +] = [ + { + date: "28.10.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=QIpETLwFWbuATYtg2Yz4yNwITLjFmLh1yY11mLiFmMtIXZo5CMuYjLz4SOx4SMwMTLlh2YhBXYthSI", + value: "!(mapache-301.19.3.6.0.her-2ab.muc-a.ac-207.3ch-a0.map-1)!", + result: { + word: "mapache", + correct: 19, + position: 3, + incorrect: 6, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "28.10.2025", + }, + }, + { + date: "28.10.2025", + nick: "Greyman", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=QIpEjLw0CcuEGOx0yYh1mLiVWLoN2MuQGNtEmc05CMuYjLx4SOx4SMwMTLlh2YhBXYthSI", + value: "!(mapache-301.19.1.6.0.tra-4d.3ch-eb.mac-18a.p-0.1)!", + result: { + word: "mapache", + correct: 19, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "28.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/28-10-2025-it-diffle-diffleit-grywebowe-34-lettere-in-5-parole-large-green-circl" +] = [ + { + date: "28.10.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKjNTLz9WbuIWLyFmcuIjNtQnL3gTMt4mL0kTLy9WbuAjL34SMuYjMuEDMz0SZyFmc0N3bthSI", + value: "!(mostrare-301.26.1.7.0.mor-94.n-187.t-62.rar-b.mos-3c)!", + result: { + word: "mostrare", + correct: 26, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 34, + date: "28.10.2025", + }, + }, + { + date: "28.10.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKjNTLz5COyITLu9WbuMmMtIXY05iM30CduIzYtInLiRTLs9WbukTL6lGcuEjL54iMuAzMuEDMz0SZyFmc0N3bthSI", + value: + "!(mostrare-301.30.2.9.1.piz-9.mol-4b.r-c2.t-72.tar-2c.mon-228.s-3c)!", + result: { + word: "mostrare", + correct: 30, + position: 2, + incorrect: 9, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 41, + date: "28.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/29-01-2025-es-diffle-difflees-grywebowe-53-letras-en-9-palabras-large-green-circ" +] = [ + { + date: "29.01.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=QIpATY3EjL2I2Nx0yYuVmL3MWMtQmbp5CMzMWOtMXZk5COx0SZ15mLmJTLllGZuM2NtoWZ05SYhJTLyVGauMmMz0CbvBnLw4SNx4yMuUzMukjMt8GZpRmblNmblhSI", + value: + "!(encendido-29.35.3.15.0.pol-32c.her-2aa.tej-7c.die-2f.nue-18.des-9c30.ind-1c7.enc-17b6.17a0)!", + result: { + word: "encendido", + correct: 35, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 53, + date: "29.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/29-06-2024-diffle-difflede-36-buchstaben-im-6-wortern-17-6-13-0" +] = [ + { + date: "29.06.2024", + nick: "Heheszki", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=hkSN1ETLyFGauYTN00CahZmLidTNtYmYh5SMt8mLiFTYx0SZyZmLiNzNy0CajNnLw4yMx4iNucTMuEDOx0SZmJXYohSI", + value: + "!(harfe-181.17.6.13.0.sch-273b.fre-1a1b.o-1.abf-57b.fah-456.har-155)!", + result: { + word: "harfe", + correct: 17, + position: 6, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 36, + date: "29.06.2024", + }, + }, + { + date: "29.06.2024", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESK1UTMucTNx0ichhmLjlTMtg2Yz4CO5MWMtI3b25SYyMTLsV2ZuQjMt0Wdw5SMkdjLlF2MtIXYuIWM30iclhmLy0yYp5mLx4SMy4CMuYjMuEDOx0SZmJX", + value: + "\\™™KLN\fKŒ‹Œ\u000bŒŒKŒK›šXËL‹š\u0019\\‹MÌX‹˜\\‹LØYKÙ\fKœ\u001d[KL\u000b™Ù[\u000bL̘K›Ü‹LXÎN\u000bŒØÚ\u000bLNX˚\u0018\\‹LMMˌMMJH", + result: { + word: "\\™™KLN\fKŒ‹Œ\u000bŒŒKŒK›šXËL‹š\u0019\\‹MÌX‹˜\\‹LØYKÙ\fKœ\u001d[KL\u000b™Ù[\u000bL̘K›Ü‹LXÎN\u000bŒØÚ\u000bLNX˚\u0018\\‹LMMˌMMJH", + correct: null, + position: null, + incorrect: null, + knownIncorrect: null, + totalWords: 0, + totalLetters: null, + date: "29.06.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/29-08-2025-it-diffle-diffleit-grywebowe-41-lettere-in-7-parole-large-green-circl" +] = [ + { + date: "29.08.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKxMTMtUGcz5CNx0ib1ZmLzQTLjNWZucjMtUGcz5SN10yclBnLhZTLoN2MuQTOtI3bt5CMuMTMuIjL2IjLxQjMt82YpZWajVGczhSI", + value: + "!(specifico-241.26.2.13.0.mor-94.3ch-6a.pes-55.spe-27.ecc-43.fun-14.spe-131)!", + result: { + word: "specifico", + correct: 26, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "29.08.2025", + }, + }, + { + date: "29.08.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKxMTMuUjMtUGcuEWZx0ybjNnLhlTLllGcuE2MtQnch5CMuATMuMjLwIjLxQjMt82YpZWajVGczhSI", + value: "!(specifico-241.20.3.10.0.art-3a.pie-9a.sco-1ea.pe-25.131)!", + result: { + word: "specifico", + correct: 20, + position: 3, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "29.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/30-06-2024-flag-cz-diffle-difflecs-grywebowe-30-pismen-v-7-slovech-large-green-c" +] = [ + { + date: "30.06.2024", + nick: "Deykun", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=QIpMWOtMXZi5SNz0CajNjLmJTLzV2YuYmY5MTLzVmbuETOx0ycvBnLw0SZyhmLzITMtg2Yz4CMuMTMuAjL3EjLygTMtUWa0NXZihSI", + value: + "!(bestie-182.17.0.13.0.3ch-123.hre-0.pos-191.nes-39bf.ces-2f.3ch-35.bes-9c)!", + result: { + word: "bestie", + correct: 17, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 30, + date: "30.06.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/30-09-2024-it-diffle-diffleit-49-lettere-in-10-parole-large-green-circle-30-larg" +] = [ + { + date: "30.09.2024", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESK40SZuFmL2ETLj52buI2Yz4iZtg2Yz4yYy0Cdv1mLzcTLuF2cuUTMtQXd05SYx0SY29mLmJTMtw2bw5iZ40yZhJnLw4iNx4yMuAzMuQzNy0yb09GZkVmbhhSI", + value: + "!(aneddoto-274.30.3.16.0.rag-8f.pol-12f.ova-1a.tut-15.san-73.mot-2c.3ch-f.3cb.onc-16.ane-8)!", + result: { + word: "aneddoto", + correct: 30, + position: 3, + incorrect: 16, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 49, + date: "30.09.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/30-09-2025-de-diffle-difflede-grywebowe-32-buchstaben-im-6-wortern-large-green-c" +] = [ + { + date: "30.09.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpIDNz0SalJmLhBzMtkWZr5CMmFTLpVmZukzYx0SalRmLihTLoN2MuMTZmZTLoN2cuAjLzEjLw4SOx4yM3ITLulWZihSI", + value: + "!(bein-273.19.0.13.0.sch-6fe3.3ch-8b.dei-1c9.fei-1f0.kei-30a.bei-342)!", + result: { + word: "bein", + correct: 19, + position: 0, + incorrect: 13, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "30.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/30-09-2025-es-diffle-difflees-grywebowe-13-letras-en-2-palabras-large-green-circ" +] = [ + { + date: "30.09.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=ESKyIWLu9mLiFmMtIXZo5CMuQjLx4COuMzNy0icv52bohSI", + value: "!(honor-273.8.1.4.0.her-2ab.on-b2)!", + result: { + word: "honor", + correct: 8, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 13, + date: "30.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/30-09-2025-it-diffle-diffleit-grywebowe-87-lettere-in-18-parole-large-green-circ" +] = [ + { + date: "30.09.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKyEjLl1iZuFmL1UjL3ImLyIjLiNTLoNmMuITLqFmYuIzNtEmcn5yNtQnL1YTLu5yMlFTL05WYuczMtQ3bu5iNk1SYy5SMl1icvZmLjFzMtEmc05iN10ib1BnL4ITLhR3cuQTOtI3bt5CMuIjMuATMuUTNuMzNy0yb0RXYyZmbhhSI", + value: + "!(anfratto-273.55.10.22.0.mor-94.sta-28.pun-56.tra-31c.for-e1.ra-d6.not-37.ant-1e3.n-65.t-7.gra-72.baj-2.2ch-3b.22.b7.55.anf-e.12)!", + result: { + word: "anfratto", + correct: 55, + position: 10, + incorrect: 22, + knownIncorrect: 0, + totalWords: 18, + totalLetters: 87, + date: "30.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/31-01-2025-de-diffle-difflede-grywebowe-52-buchstaben-im-10-wortern-large-green-" +] = [ + { + date: "31.01.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKi1SZyVnL4UTLoNmMuATLrVHbuATLu9meukTLlJXYuY2Nx0CajNjLyMGNtUXZu5CMtYWdw5CMtQWZs5yMlZmNtg2Yz5CMuYTMugjL4IjLxMTLsV2auVmc1hSI", + value: + "!(urenkel-31.28.8.16.0.sch-6fe3.led-0.puf-0.neu-4c2.3ch-17f.are-9.zon-0.luk-0.2ch-58.ure-b)!", + result: { + word: "urenkel", + correct: 28, + position: 8, + incorrect: 16, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 52, + date: "31.01.2025", + }, + }, + { + date: "31.01.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKi1SZyVnLy0SZi9mL4EWMtMXYw5yNy0CduVnLwYTNtcWdq5CMuQTMuAjL3EjLxMTLsV2auVmc1hSI", + value: "!(urenkel-31.17.0.14.0.jug-560.unt-27.pas-1a8.obe-2.ure-b)!", + result: { + word: "urenkel", + correct: 17, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "31.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/31-01-2025-es-diffle-difflees-grywebowe-49-letras-en-14-palabras-large-green-cir" +] = [ + { + date: "31.01.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=ESKyYzNtMWZy5COuUjMuYWMtg2Yy4iYzMTLnVmcuM2Mtg2Yy4SOwITLoN2MuQDNtg2Yy4CMkFjLzYjLkJmLiZWLoN2MuMmMz0CbvBnLkFGNtIXZj5CMuEjMuQjL0IjLxMTLylmYpNWZyhSI", + value: + "!(recibir-31.24.4.21.0.cer-4ad.pol-32c.3ch-fb.bd.63.1d0.2ch-44.3ch-209.2ch-3c.reg-33b.2ch-1f.25.8.rec-762)!", + result: { + word: "recibir", + correct: 24, + position: 4, + incorrect: 21, + knownIncorrect: 0, + totalWords: 14, + totalLetters: 49, + date: "31.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/31-07-2025-it-diffle-diffleit-grywebowe-58-lettere-in-10-parole-large-green-circ" +] = [ + { + date: "31.07.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkSY00SawVmL4IWLhlGcuATLpBnLx0Sau5yNx0yZyVmLwYTLoN2MugjYtUGcz5CO30SbhJnLkhTMtIXYw5CN50icv1mLx4SOucjLyQjLyEjMtEWbtFmcnlGclhSI", + value: + "!(epigramma-212.42.7.9.1.mor-94.par-18d.ram-78.spe-b8.3ch-60.erg-17.ni-1.pi-0.pia-b8.epi-4a)!", + result: { + word: "epigramma", + correct: 42, + position: 7, + incorrect: 9, + knownIncorrect: 1, + totalWords: 10, + totalLetters: 58, + date: "31.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/a-sie-ladnie-wkleilo-22-02-2025-de-diffle-difflede-grywebowe-27-buchstaben-im-3-" +] = [ + { + date: "22.02.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpgTLzlnLw0yYvhmLzUmZ20CajNnLw4yNuIjL4EjLzUTLoN2cpJXZ0NXeohSI", + value: "!(hysterisch-53.18.2.7.0.sch-6fe3.hoc-0.ys-8)!", + result: { + word: "hysterisch", + correct: 18, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 27, + date: "22.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ahh-dumny-jestem-z-siebie-27-01-2025-it-diffle-diffleit-grywebowe-57-lettere-in-" +] = [ + { + date: "27.01.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpkTLpp3buIzNuUWNuQGZuUjZuYmNuIjMuImMtg2Yy4CZmRTLoN2MucTMtcWam5CNwUTLoN2MuEDNtYXa25SZy0yc1JmLlRWLz9GcuYzMt42bz5CN50icv1mLw4CNy4iMuEzMucjMt82cvlmevhSI", + value: + "!(ozioso-27.31.2.24.0.mor-94.son-36.pos-de.bus-2e.viv-41.3ch-504.fig-17.3ch-4fd.2ch-2b.22.6f.f5.dd.5e.72.ozi-9)!", + result: { + word: "ozioso", + correct: 31, + position: 2, + incorrect: 24, + knownIncorrect: 0, + totalWords: 16, + totalLetters: 57, + date: "27.01.2025", + }, + }, + { + date: "27.01.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkSOtkmev5SNm1CajJjLxIjMtg2Yz4iYy0CajJjLjBjMtg2Yz4yM00CajJjLw0iavpmL5QTMtg2Yz4iYtU3Yz5SZ2QTLoN2MuUDOt42bt5SYz0CdyFmLw4CNy4CMuMjMucjMt82cvlmevhSI", + value: + "!(ozioso-27.23.0.24.0.art-3a.mon-85.3ch-46e.scu-b.3ch-149.joj-0.2ch-43.3ch-20c.2ch-2b.3ch-221.2ch-f5.ozi-9)!", + result: { + word: "ozioso", + correct: 23, + position: 0, + incorrect: 24, + knownIncorrect: 0, + totalWords: 12, + totalLetters: 47, + date: "27.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ahh-oplacalo-sie-czerwona-zgarnac-12-01-2025-de-diffle-difflede-grywebowe-22-buc" +] = [ + { + date: "12.01.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpYmN10yYp5CMyQTMtMWYu5iNiZTLlx2auEjL44iMuITMuITMtMHdoNWauhSI", + value: "!(nichts-12.12.2.8.1.kle-6b6.nac-1420.ic-56f)!", + result: { + word: "nichts", + correct: 12, + position: 2, + incorrect: 8, + knownIncorrect: 1, + totalWords: 3, + totalLetters: 22, + date: "12.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ahhh-pieknie-22-03-2025-it-diffle-diffleit-grywebowe-100-lettere-in-27-parole-la" +] = [ + { + date: "22.03.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkCZt4Gcp5yMz0yYvNmL3MWLoN2MuIjMtQ3bj5CMz0CcvBnLyEDNuQDM10CajNjL1ITLoNmMuQ2Yy0CajNjL3MjLmZjL3kjLycjLiJjLyIjLkFTLoNmMuUzMt4Wa25SN0ETLoNmMugDMy0CajNjLhVTNt42bj5COx0CcpRnLxQTLulmZuYWMt4Waw5CMh1SawNnL5MTL09mbuYGNt42b05CN50icv1mLw4SNy4iMx4yM24SM40ybjlGdv5GcphSI", + value: + "!(ipnotico-81.63.12.25.0.mor-94.ton-4f.not-39.spi-a0.pin-1f.fin-41.tip-18.con-55a.3ch-208.2ch-145.vin-35.2ch-1d.22.2b.72.97.6f.37.3ch-2cd.2ch-25.3ch-504.412.pop-30.cot-22.3ch-c7.coc-33.ipn-d)!", + result: { + word: "ipnotico", + correct: 63, + position: 12, + incorrect: 25, + knownIncorrect: 0, + totalWords: 27, + totalLetters: 100, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKk1ibwlmLxITLoN2MugTLw9GduIGNtw2bt5SOtoXaw5CMugjLz4SOx4SM40ybjlGdv5GcphSI", + value: "!(ipnotico-81.19.3.8.0.piz-9.mol-4b.top-8.3ch-21.ipn-d)!", + result: { + word: "ipnotico", + correct: 19, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "22.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-dlugie-04-10-2025-it-diffle-diffleit-grywebowe-91-lettere-in-19-parole-large" +] = [ + { + date: "04.10.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkCOx0SYzVmL0YjL3UTLoN2MuQTLpNXYuQWOtg2Yz4SM50CajJjLiNTL0F2cukTLzFGauETOx0CajNjLw0iYhNnLkBTMtg2Yz4SMx0CdpNnLhFTLllmZuMWYtMXYw5iZz0CdhNnLh5iNz0ychRnLw0yb2FmL0kTLy9WbuEjL5EjLyEjLwYjL3cjMt8GdhRXanF2clhSI", + value: + "!(esagitato-277.60.12.19.1.mor-94.avo-0.tas-36.a.sat-3f.pas-ac.fie-1a.sit-11.3ch-10d.sab-0.3ch-191.has-9.sat-3b.2ch-91.3ch-9d.asi-4.3ch-57.64.esa-18)!", + result: { + word: "esagitato", + correct: 60, + position: 12, + incorrect: 19, + knownIncorrect: 1, + totalWords: 19, + totalLetters: 91, + date: "04.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-fajne-slowo-12-02-2025-it-diffle-diffleit-grywebowe-44-lettere-in-9-parole-l" +] = [ + { + date: "12.02.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKwcTLpBXZukTZtg2Yz4yM40idpRmLiRjLiN2MuITNtg2Yz4yYt82cl5iYz0CZvNnL0kTLy9WbuAjL54yMuIzMuMDNt82YpR2bzlGclhSI", + value: + "!(episodico-43.32.3.9.0.mor-94.sod-3b.eso-c.3ch-52.3cb.4b.div-83.3ch-e9.epi-70)!", + result: { + word: "episodico", + correct: 32, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 44, + date: "12.02.2025", + }, + }, + { + date: "12.02.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpAzNtkGcl5SNxEjLjRmL3cTLoNmMuQzMz0CajNjLhRTLoNmMuYDNtkGcz5SYz0ycvZmLhFTLw9GZuEzMtMWaw5CMy0SZtFmLw4CNx4yNukjMuMDNt82YpR2bzlGclhSI", + value: + "!(episodico-43.29.7.14.0.ame-20.pic-31.dop-1a.fos-3a.spi-46.2ch-4a.3ch-334.2ch-77.dc.115.epi-70)!", + result: { + word: "episodico", + correct: 29, + position: 7, + incorrect: 14, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 50, + date: "12.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-fuks-xd-sprobujcie-powaznie-nie-trzeba-znac-wloskiego-20-07-2024-it-diffle-d" +] = [ + { + date: "20.07.2024", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpMTNtI3b05SMiFTLzlmcuIGNtw2bt5CMucjLy4yMx4iMwITLvRWYuJ3b0hSI", + value: "!(tornado-202.13.2.7.0.mol-4b.ris-1b1.tor-53)!", + result: { + word: "tornado", + correct: 13, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "20.07.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-proste-gdybym-znak-to-bym-po-jednym-zrobil-14-02-2025-es-diffle-difflees-gry" +] = [ + { + date: "14.02.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=ESK5IWMtE2ch5SNtg2Yy4SYyETLoN2MuATLyVXYuIWYy0iclhmLw4yNuIjLyEjL1QTLyF2chhSI", + value: "!(asar-45.12.2.7.0.her-2ab.aur-0.3ch-12a.2ch-5.asa-1b9)!", + result: { + word: "asar", + correct: 12, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 21, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "Greyman", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=hkSOiFTLhNXYucjY40ichBnLiJTLy9WbuAjL24iMugjL1QTLyF2chhSI", + value: "!(asar-45.8.2.6.0.mor-2b.par-8b7.asa-1b9)!", + result: { + word: "asar", + correct: 8, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 16, + date: "14.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-przyfarcilem-dzisiaj-28-08-2024-it-diffle-diffleit-grywebowe-20-lettere-in-3" +] = [ + { + date: "28.08.2024", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpEzNtwWYw5yNy0SbhZmLllTMt8mcw5CMucjLx4iMx4SM0ITLv1mclxWYwhSI", + value: "!(palermo-241.12.1.7.0.pro-19e.fam-27.pal-71)!", + result: { + word: "palermo", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 20, + date: "28.08.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-sobie-angielski-odbilem-xd-12-02-2025-es-diffle-difflees-grywebowe-12-letras" +] = [ + { + date: "12.02.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=hkCMtM3by5iYhJTLyVGauAjL04SMucjLzQTLhN3byhSI", + value: "!(rosa-43.7.1.4.0.her-2ab.ros-0)!", + result: { + word: "rosa", + correct: 7, + position: 1, + incorrect: 4, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 12, + date: "12.02.2025", + }, + }, + { + date: "12.02.2025", + nick: "Greyman", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=ESKw0ycvJnLkhjYt8mcw5yMi1Cdv1mLw4iNuAjLwEjLzQTLhN3byhSI", + value: "!(rosa-43.10.0.6.0.mot-b3.pro-b8d.ros-0)!", + result: { + word: "rosa", + correct: 10, + position: 0, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 16, + date: "12.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-weszlo-09-02-2025-it-diffle-diffleit-grywebowe-19-lettere-in-3-parole-large-" +] = [ + { + date: "09.02.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkCO10yclBnLkVWLuVmduQTOtI3bt5CMuETMuAjL44CM00SajNXZwhSI", + value: "!(pesci-40.8.0.11.0.mor-94.ven-ed.pes-58)!", + result: { + word: "pesci", + correct: 8, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 19, + date: "09.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ale-zlosliwe-xd-12-02-2025-de-diffle-difflede-grywebowe-90-buchstaben-im-16-wort" +] = [ + { + date: "12.02.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=hkCMjRjL2MGNtUmY15SM2ITLyVmduQWYtgWY65SN3QTLoFmZukTN50iclhmL3cTMtg2Yz4iMtQWZq5CMtYWdw5SN40CavhmLyITLlJWduMWNtIWdo5SY3kTMtIXZi5SMjNTLs92aucTO0ETLpV2duMTZmZTLoN2cuQjL4IjL14yN14yM00iblJHaDJUJzMUJmJXZiNkQlMzQlgSI", + value: + "!(überführen-43.57.5.28.4.sch-6fe3.wei-1497.kol-3c1.ber-197a.hub-5c.ube-22.hoh-85.puf-0.jed-2.3ch-177.her-959.fah-475.zah-ad.ver-261.ube-4c6.4c0)!", + result: { + word: "überführen", + correct: 57, + position: 5, + incorrect: 28, + knownIncorrect: 4, + totalWords: 16, + totalLetters: 90, + date: "12.02.2025", + }, + }, + { + date: "12.02.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpAzY00SZiVnL3MjLmVTMtg2Yz4iZ10CajJjL1ATMtg2Yz4SYwcTLyVHZuEDMkJWLoN2cuUGZ1ETLulWZuATMzITL1J3ZuAjL2EjLy4COy4yM00iblJHaDJUJzMUJmJXZiNkQlMzQlgSI", + value: + "!(überführen-43.28.2.16.0.gru-2310.ein-15de.sch-bd01.dur-70a.3ch-105.2ch-5f.3ch-15f.37.ube-4c0)!", + result: { + word: "überführen", + correct: 28, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 46, + date: "12.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/alez-wrednie-sie-ulozylo-18-01-2025-it-diffle-diffleit-grywebowe-44-lettere-in-7" +] = [ + { + date: "18.01.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESK4cjLlVWMtIXZw5iM50iclZmLzYWMtIXZw5SNxETLzlmcuUzNy0icl5SOtoXaw5CMuMTMuEjLwMjL4ETLvRWamJXZwhSI", + value: + "!(perfido-18.30.1.13.0.piz-9.er-275.ris-115.per-1f3.fer-92.per-1ee.78)!", + result: { + word: "perfido", + correct: 30, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 44, + date: "18.01.2025", + }, + }, + { + date: "18.01.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpgzNuMWYuIDNtIXZuEDNz0SZy5iZz0CdvBnLw4COuMjL0IjL4ETLvRWamJXZwhSI", + value: "!(perfido-18.24.3.8.0.pot-3f.re-341.er-42.ac.78)!", + result: { + word: "perfido", + correct: 24, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "18.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/bardzo-jako-tako-05-03-2025-de-diffle-difflede-grywebowe-34-buchstaben-im-6-wort" +] = [ + { + date: "05.03.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=hkyY5UjLiZTNtkGdz5SMx0ycpxmL1IWMtg2Yz4SZyQTMtIXZ35yM40yblJmLw4iMx4CNugTMuQjNtUGbslGdzhSI", + value: "!(stille-64.18.4.12.0.beo-83.wer-142e.3ch-1b5.lis-11.sti-56b.59c)!", + result: { + word: "stille", + correct: 18, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "05.03.2025", + }, + }, + { + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=hkyY5UjLiZTNtkmL1IGNtUGduMTZmZTLoN2cuAjL44yMugTMuQjNtUGbslGdzhSI", + value: "!(stille-64.18.3.8.0.sch-6fe3.te-4b5.i-56b.59c)!", + result: { + word: "stille", + correct: 18, + position: 3, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 29, + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/bleh-17-01-2025-it-diffle-diffleit-grywebowe-29-lettere-in-5-parole-large-green-" +] = [ + { + date: "17.01.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkCOlJjLxkzMtAXbp5SN40ibv1mL3MDNtg2Yz4SN0ITLyFGcuAjL34CMuIjMucTMt8WayB3byBXbphSI", + value: "!(improprio-17.22.0.7.0.par-245.3ch-437.mon-85.imp-391.2e8)!", + result: { + word: "improprio", + correct: 22, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "17.01.2025", + }, + }, + { + date: "17.01.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESK4UmMucTNz4CN0ITLw1WaucTOtg2Yz4SNm1icvBnL5ITLvx2YuUjZtQWYy5CNz0yZl5mLx4yMx4CMuQzMucTMt8WayB3byBXbphSI", + value: + "!(improprio-17.34.0.13.1.neg-34.rad-f5.clo-29.por-f5.3ch-97.imp-244.357.2e8)!", + result: { + word: "improprio", + correct: 34, + position: 0, + incorrect: 13, + knownIncorrect: 1, + totalWords: 8, + totalLetters: 47, + date: "17.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/chcialem-zobaczyc-czy-jakies-literki-sie-uloza-i-sie-ulozyly-xd-18-01-2025-es-di" +] = [ + { + date: "18.01.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=QIpQTMz0SZs5yNhFTLlZXYuYDOtg2Yz4iYyETLp5WduImNt4WZt5CZhRTLyV2YuYWLi9GbuMmMz0CbvBnLx4iNx4yMuEzMugTMtI3bkFGduVGbhhSI", + value: + "!(alentador-18.31.3.16.1.pol-32c.lob-f.cer-4ad.men-6b.uni-12b.3ch-86.ave-1a7.le-314)!", + result: { + word: "alentador", + correct: 31, + position: 3, + incorrect: 16, + knownIncorrect: 1, + totalWords: 8, + totalLetters: 50, + date: "18.01.2025", + }, + }, + { + date: "18.01.2025", + nick: "Greyman", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=ESK0EzMtUGbh5SOiFjL3ITMuQWOtg2Yz4SYy4COtg2Yy4iY00CajNjL5U2YtQnbl5iY10iclNnL5kzMtQWZy5iY40CZv1mLw4iMx4yNuYzMugTMtI3bkFGduVGbhhSI", + value: + "!(alentador-18.36.7.12.0.mod-8b.red-399.ser-5b.ent-ce9.3ch-4b.2ch-8.2a.3ch-9d.127.1b9.ale-314)!", + result: { + word: "alentador", + correct: 36, + position: 7, + incorrect: 12, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 55, + date: "18.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/chyba-nie-musze-pisac-ze-nie-jestem-z-siebie-dumny-xd-14-01-2025-de-diffle-diffl" +] = [ + { + date: "14.01.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=hkCOwEjL4kzYx0icvZnLhJzMtwWZn5SOh1SalJnL3EWNtg2Yh5SNj1CajNjLidzMtMXY35CNz0CajJjLxYjNtUWak5CNxYWL1FmcuY2N10SYyZmL1AjMtg2Yz4SYtA3br5yMlZmNtg2Yz5yNx4CNz4yMuczMuQTMtcmb15GahJ3b2hSI", + value: + "!(vorahnung-14.37.3.34.17.sch-6fe3.kop-a.3ch-205.fra-57f.rau-f14.die-661.2ch-34.was-37b.3ch-c5.ach-5a7.rei-a9.gel-32a.vor-1c98.108)!", + result: { + word: "vorahnung", + correct: 37, + position: 3, + incorrect: 34, + knownIncorrect: 17, + totalWords: 14, + totalLetters: 74, + date: "14.01.2025", + }, + }, + { + date: "14.01.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpgDMx4SZhRWLy9mdugzN00ibhdmL4MTLyV3duUjNx0icvZnLiZTYz0ibpVmLw4iMx4iMugjMuQTMtcmb15GahJ3b2hSI", + value: + "!(vorahnung-14.28.2.12.0.ein-3a6b.vor-165.wur-38.gan-478.vor-dae.108)!", + result: { + word: "vorahnung", + correct: 28, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 42, + date: "14.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ciekawe-ciekawe-14-02-2025-de-diffle-difflede-grywebowe-50-buchstaben-im-8-worte" +] = [ + { + date: "14.02.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpcTO00iYyVmLwUjMtIXYm5SNwITLoN2MugTOjFTLy9mduYGMy0ibpJnLkZTLoN2MugTNx0ibpJnLzUmZ20CajNnLw4CNx4iMuQzMuUDNt4WZn5WayJmclhSI", + value: + "!(erbringen-45.34.2.14.0.sch-6fe3.rin-158.3ch-6d.rin-20f.vor-1c98.3ch-205.far-250.erb-497)!", + result: { + word: "erbringen", + correct: 34, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 50, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESK3kDNtImLyMTMtInLk1SauAjZz0yduIjY40ycy5iNtUmbl5iZhJTLlh2YuUmY20ibhBnLw4yMx4CNukzMuUDNt4WZn5WayJmclhSI", + value: + "!(erbringen-45.39.4.13.0.pan-6be.che-2af.ene-6.rs-8b2.w-3f0.i-d.r-132.b-497)!", + result: { + word: "erbringen", + correct: 39, + position: 4, + incorrect: 13, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 56, + date: "14.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ciemszko-24-06-2025-es-diffle-difflees-grywebowe-35-letras-en-6-palabras-large-g" +] = [ + { + date: "24.06.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=ESK4UTLilGbuEWLilmYuMTMtwWaw5iNtEmcl5CMtIXZ25iYhJTLyVGauAjLxEjLz4SMy4SN3ETLsFmclJWashSI", + value: "!(liberal-175.21.3.11.0.her-2ab.ver-0.era-6.pil-13.bib-a.lib-58)!", + result: { + word: "liberal", + correct: 21, + position: 3, + incorrect: 11, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "24.06.2025", + }, + }, + { + date: "24.06.2025", + nick: "Greyman", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=hkCO10iYpxmLkNTLllmZuATLyl2ZuATLylGcuETZ0ETLu92YuAjLyEjLx4SOx4SN3ETLsFmclJWashSI", + value: "!(liberal-175.19.1.12.0.con-14e1.pir-0.gir-0.fie-3d.lib-58)!", + result: { + word: "liberal", + correct: 19, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "24.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/co-to-kwa-jest-xd-08-02-2025-de-diffle-difflede-grywebowe-38-buchstaben-im-5-wor" +] = [ + { + date: "08.02.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKy4CZ20Cd1dmL3EWNtg2Yh5CZlJTLhh2YuMTZmZTLoN2cuIjL44SNuUjMukzMtIXZ0h2YhRXdnhSI", + value: "!(gutachter-39.25.5.8.2.sch-6fe3.cha-2ed.ach-5a7.gut-6d.2)!", + result: { + word: "gutachter", + correct: 25, + position: 5, + incorrect: 8, + knownIncorrect: 2, + totalWords: 5, + totalLetters: 38, + date: "08.02.2025", + }, + }, + { + date: "08.02.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=hkiMtQXdn5CMtUGa05CMts2bq5SMj1CajNjL0gzMtMXYm5SOlFTMtUXYi5SMz0CayVmLw4CMx4yNuQjMukzMtIXZ0h2YhRXdnhSI", + value: + "!(gutachter-39.24.7.10.0.erh-31.bau-11e9.fas-384.3ch-c1.jok-0.the-0.gut-2)!", + result: { + word: "gutachter", + correct: 24, + position: 7, + incorrect: 10, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "08.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/co-tu-sie-dzisiaj-to-ja-nawet-nie-08-04-2025-de-diffle-difflede-grywebowe-24-buc" +] = [ + { + date: "08.04.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpEjNz0CbuITLt5iMkhTLuFmYuQzMtg2Yz4COxgTNtIXZ25CMuQTMuAjLwEjL4kTLsxWYihSI", + value: "!(ball-98.10.0.14.0.ver-5818.3ch-34.ban-8d2.m-2.l-361)!", + result: { + word: "ball", + correct: 10, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "08.04.2025", + }, + }, + { + date: "08.04.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpEjNz0CbhJmLz0CbvpnLzUmZ20CajNnLw4CNx4CMucjL4kTLsxWYihSI", + value: "!(ball-98.7.0.14.0.sch-6fe3.zol-3.bal-361)!", + result: { + word: "ball", + correct: 7, + position: 0, + incorrect: 14, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "08.04.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dalo-sie-duzo-szybciej-10-02-2025-es-diffle-difflees-grywebowe-53-letras-en-10-p" +] = [ + { + date: "10.02.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=hkCMx0ybulmLmhTLu9mYuMTOtg2Yz4iM00yZ1pmL3AjMt4WauQjNlFTLu92YuEGZt4Wa25CO20CajNjLjJzMtw2bw5iYhJTLyVGauMjLwIjL14COy4SM00SZ05WZj9mbphSI", + value: + "!(inocente-41.28.5.20.3.her-2ab.pol-32c.3ch-68.vin-da.con-1e64.in-207.jug-42.3ch-93.bon-8f.ino-10)!", + result: { + word: "inocente", + correct: 28, + position: 5, + incorrect: 20, + knownIncorrect: 3, + totalWords: 10, + totalLetters: 53, + date: "10.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dalo-sie-lepiej-16-06-2025-es-diffle-difflees-grywebowe-22-letras-en-4-palabras-" +] = [ + { + date: "16.06.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=QIpETMtMWau5CZ0YTLph2YuAzYtQXaw5iYhJTLyVGauAjL34yMuITMucjNx0yboNWauhSI", + value: "!(nicho-167.12.3.7.0.her-2ab.pit-c0.chi-64d.nic-11)!", + result: { + word: "nicho", + correct: 12, + position: 3, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "16.06.2025", + }, + }, + { + date: "16.06.2025", + nick: "Greyman", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=hkSMx0yYp5mL0YWLtV3cuETMz0CbhBnLwMWLjlmduUWNx0SZqVmLw4iMx4SMuMTMucjNx0yboNWauhSI", + value: "!(nicho-167.13.1.12.0.eje-15e.vic-c0.pal-311.sum-f4.nic-11)!", + result: { + word: "nicho", + correct: 13, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 26, + date: "16.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/diffle-diffleit-grywebowe-wczorajszediffle" +] = []; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dzisiaj-ladnie-siadlo-ale-i-haslo-proste-13-07-2024-diffle-difflefr-27-lettres-e" +] = [ + { + date: "13.07.2024", + nick: "nxo", + lang: "fr", + url: "https://deykun.github.io/diffle-lang/fr?r=hkiMtQmLy0SbuETLnVnauATMt42bi5CMukjLx4yNx4SN5ETLl12cGFUJzMUJhRWdqhSI", + value: "!(judaïsme-195.17.1.9.0.bon-10.jug-1.m-2.d-2)!", + result: { + word: "judaïsme", + correct: 17, + position: 1, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "13.07.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dzisiaj-nawet-z-pomoca-google-bylo-ciezko-alle-haslo-siedzi-11-07-2024-diffle-di" +] = [ + { + date: "11.07.2024", + nick: "nxo", + lang: "fr", + url: "https://deykun.github.io/diffle-lang/fr?r=ESKx4CMtEWauQTMtwWeukTLtVnLi1SbhNnLx0yahRmLy0CbvBnLwETLu9mYuMjL5EjLw4CNy4yM5ETLzl2btFWazhSI", + value: + "!(siamois-193.24.0.19.3.bon-10.pol-2.dak-1.sam-b.um-9.yl-14.ia-0.1)!", + result: { + word: "siamois", + correct: 24, + position: 0, + incorrect: 19, + knownIncorrect: 3, + totalWords: 8, + totalLetters: 43, + date: "11.07.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dzisiejszego-nie-znalem-zawsze-jakies-nowe-slowko-diffle-bawi-diffle-uczy-10-07-" +] = [ + { + date: "10.07.2024", + nick: "nxo", + lang: "fr", + url: "https://deykun.github.io/diffle-lang/fr?r=ESKw4iZx0CZuEjLy0SYiFmLw0iYhNnLz0CbvBnLwETLu9mYuUjL2EjLx4SOy4iM5ETLuVWbvRmYhhSI", + value: "!(abdomen-192.29.1.16.5.bon-10.pol-3.sab-0.aba-2.1.d-1f.0)!", + result: { + word: "abdomen", + correct: 29, + position: 1, + incorrect: 16, + knownIncorrect: 5, + totalWords: 7, + totalLetters: 46, + date: "10.07.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dziwne-slowo-19-07-2025-es-diffle-difflees-grywebowe-42-letras-en-8-palabras-lar" +] = [ + { + date: "19.07.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=hkCN00iclRmLwcTLoN2MuUTMx0yZlxmL2MWLyVGcuMGNtg2Yz4iN30ybyVmL5czMtIXZ25iYhJTLyVGauAjLzEjLx4COy4CMwITLvh2YlJXZkhSI", + value: + "!(derecho-200.28.1.13.0.her-2ab.ver-379.ero-76.3ch-4c.per-c6.leg-115.3ch-70.der-44)!", + result: { + word: "derecho", + correct: 28, + position: 1, + incorrect: 13, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 42, + date: "19.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/dziwne-slowo-nie-znalem-19-01-2025-es-diffle-difflees-grywebowe-38-letras-en-7-p" +] = [ + { + date: "19.01.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=ESKyQjL0QTLu5CN4ETL0FGcuQWY00iclNmLw0ych5SO10iep5yYyMTLs9GcuIjL3EjLw4SMy4SOx0Cbh5WYwhSI", + value: "!(panal-19.21.0.17.2.pol-32c.iz-59.as-0.cer-4ad.pat-184.n-44.42)!", + result: { + word: "panal", + correct: 21, + position: 0, + incorrect: 17, + knownIncorrect: 2, + totalWords: 7, + totalLetters: 38, + date: "19.01.2025", + }, + }, + { + date: "19.01.2025", + nick: "Greyman", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=ESKyQTLuFGcuATLwFmbuATLuVWbuETZ0ETLu92YuAjLyEjLy4SMx4SOx0Cbh5WYwhSI", + value: "!(panal-19.11.2.12.0.con-14e1.men-0.nap-0.pan-42)!", + result: { + word: "panal", + correct: 11, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 25, + date: "19.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/eeee-nie-spodziewalem-sie-tego-26-01-2025-it-diffle-diffleit-grywebowe-22-letter" +] = [ + { + date: "26.01.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKklTLvl2ZuYjMtcWYz5SOtoXaw5CMucjLy4yMx4iNy0Sau5WY29WanhSI", + value: "!(giovanni-26.13.2.7.0.piz-9.sag-26.gio-9d)!", + result: { + word: "giovanni", + correct: 13, + position: 2, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "26.01.2025", + }, + }, + { + date: "26.01.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKkljL0kTLvl2ZuEDOy4SOkRTLoN2MuczNuIzNtg2Yy4SMmRTLoN2MuEmNtg2Yy4COmJTLoN2MuQTLjFmbuITNugDMx0CajNjLiRTLs9WbukTL6lGcuAjL4EjL04SNz4iNy0Sau5WY29WanhSI", + value: + "!(giovanni-26.35.4.18.0.piz-9.mol-4b.3ch-108.52.nac-4.3ch-2f8.2ch-6a.3ch-4f1.2ch-72.77.3ch-4d9.281.gio-94.9d)!", + result: { + word: "giovanni", + correct: 35, + position: 4, + incorrect: 18, + knownIncorrect: 0, + totalWords: 14, + totalLetters: 57, + date: "26.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ehh-chyba-wpisywalem-wczesniej-musi-literowka-byla-24-06-2025-it-diffle-diffleit" +] = [ + { + date: "24.06.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkiY00ybmNnLxUTMtYmbp5SNhFTLoN2MuQTOtI3bt5CMuATMuAjLzEjL1cTMt8mey9mZzhSI", + value: "!(sforzo-175.13.0.10.0.mor-94.3ch-1a5.inf-151.sfo-4b)!", + result: { + word: "sforzo", + correct: 13, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "24.06.2025", + }, + }, + { + date: "24.06.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkiY00ybmNnL5MTLz92YukTL6J3buMTL69mcuIGNtw2bt5SOtoXaw5SMuETMuMjL4EjL1cTMt8mey9mZzhSI", + value: "!(sforzo-175.18.3.11.1.piz-9.mol-4b.roz-3.orz-9.cos-39.sfo-4b)!", + result: { + word: "sforzo", + correct: 18, + position: 3, + incorrect: 11, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 32, + date: "24.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ehh-musialem-literowke-miec-bo-mi-nie-wchodzilo-27-01-2025-es-diffle-difflees-gr" +] = [ + { + date: "27.01.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=hkSNykjLyATOukDMmFTLu92YuYWYt4Wak5yNyMTL0FmLyQmMtMnL5YWL092YuEGOtUmcv5yYyMTLs9GcuIjLwEjLx4iNz4yNy0yb0NWdk52bjhSI", + value: + "!(conducto-27.36.1.10.2.pol-32c.ore-8a.cot-f9.s-2d2.at-327.din-af.con-1f09.902.925)!", + result: { + word: "conducto", + correct: 36, + position: 1, + incorrect: 10, + knownIncorrect: 2, + totalWords: 9, + totalLetters: 47, + date: "27.01.2025", + }, + }, + { + date: "27.01.2025", + nick: "Greyman", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=QIpUjM54yYkJTLu92YuImMtg2Yy4CZ2ETLoN2MuMGMwETLvJHcuAjLwEjLw4COx4yNy0yb0NWdk52bjhSI", + value: "!(conducto-27.18.0.10.0.pro-100c.3ch-16d.2ch-2b.con-2dc.925)!", + result: { + word: "conducto", + correct: 18, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "27.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ehh-trzeba-wiecej-myslec-a-mniej-klikac-xd-06-05-2025-es-diffle-difflees-grywebo" +] = [ + { + date: "06.05.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=QIpYGZx4SYhJTLyVGauMmMz0CbvBnLmdTLoN2MukzYtIXZz5CZhRTLyV2YuEjLyEjLw4iMy4iNyETLh5WYtJXZohSI", + value: + "!(hermana-126.22.0.12.1.cer-4ad.ser-c9.3ch-7f.pol-32c.her-2aa.1df)!", + result: { + word: "hermana", + correct: 22, + position: 0, + incorrect: 12, + knownIncorrect: 1, + totalWords: 6, + totalLetters: 34, + date: "06.05.2025", + }, + }, + { + date: "06.05.2025", + nick: "Greyman", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=QIpYGZx0iclhmLzImLmZTMuAzYx0CajNjL5gTMtIXZ05SOx0SZ1ZmLidTMtwWYw5SY2ETLkVWbuAjLyEjLy4CNy4iNyETLh5WYtJXZohSI", + value: + "!(hermana-126.24.2.12.0.med-16a.pal-17b.fue-19.ter-189.3ch-1c0.16f.b3.her-1df)!", + result: { + word: "hermana", + correct: 24, + position: 2, + incorrect: 12, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 38, + date: "06.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/ehh-zepsulem-31-07-2025-de-diffle-difflede-grywebowe-28-buchstaben-im-4-wortern-" +] = [ + { + date: "31.07.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESK1ADNuYmZy0yZuFmLhJzMtwWZn5yMlZmNtg2Yz5CMuATMuEjL3EjLyEjMt4GbldmbhhSI", + value: "!(angeln-212.17.1.10.0.sch-6fe3.gel-32a.ang-2ff.405)!", + result: { + word: "angeln", + correct: 17, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "31.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/fajen-08-07-2025-de-diffle-difflede-grywebowe-47-buchstaben-im-7-wortern-large-g" +] = [ + { + date: "08.07.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESK3MWLjFGZuATLk9mYuU2Mtg2Yz4yNkRTLjFGZuQWZy0SYoNmL3IjMtMWdi5yMlZmNtg2Yz5iMuITMuIjLzMjL5gTMt4WZk9mYoNWYkhSI", + value: + "!(dachboden-189.33.2.12.2.sch-6fe3.buc-227.cha-2ed.dac-4d7.3ch-3e.bod-0.dac-c7)!", + result: { + word: "dachboden", + correct: 33, + position: 2, + incorrect: 12, + knownIncorrect: 2, + totalWords: 7, + totalLetters: 47, + date: "08.07.2025", + }, + }, + { + date: "08.07.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpczYuATLjFGZuUDMk1yY1JmLw4yNuEjL4EjL5gTMt4WZk9mYoNWYkhSI", + value: "!(dachboden-189.18.1.7.0.buc-d05.dac-0.c7)!", + result: { + word: "dachboden", + correct: 18, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 26, + date: "08.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/fajne-bardzo-05-02-2025-de-diffle-difflede-grywebowe-77-buchstaben-im-14-wortern" +] = [ + { + date: "05.02.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKwUTLw5yMtMWYq5yNhFTLk5WauEDNtkGaj5CMtoXaw5SY50CajNjLyU2MtEGcz5CN50ibhBnLlRTLoNmMukzMtg2Yz4SMtkWYu5CO20CajNjLw0ycpdnLzUmZ20CajNnLx4SMy4iNuATNuYzMtg2YzlmbhBXYqhSI", + value: + "!(japanisch-36.50.6.21.1.sch-6fe3.wis-0.3ch-68.nai-1.3ch-39.2ch-4e.pan-94.spa-3e2.3ch-9a.piz-0.chi-41.ind-1a7.jac-3.p-50)!", + result: { + word: "japanisch", + correct: 50, + position: 6, + incorrect: 21, + knownIncorrect: 1, + totalWords: 14, + totalLetters: 77, + date: "05.02.2025", + }, + }, + { + date: "05.02.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKwUTLwFmauQTOt4WYw5iMlNTLhB3cuE2Y00ycp1mLh1CcvtmL4IzNtgWY65SMz0CayVmLx4yMx4iMuAzMuYzMtg2YzlmbhBXYqhSI", + value: + "!(japanisch-36.30.2.13.1.erh-31.zah-728.kop-a.mis-4ca.spa-3e2.pan-94.jap-50)!", + result: { + word: "japanisch", + correct: 30, + position: 2, + incorrect: 13, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 45, + date: "05.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/fajne-dzis-13-01-2025-es-diffle-difflees-grywebowe-31-letras-en-5-palabras-large" +] = [ + { + date: "13.01.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=QIpMGMz0iblNmLxATZtQnbl5CMxETLuVHduczYx0ibhNnLjJzMtw2bw5CMuATMuIjL5EjLzETLyFmc05WZjhSI", + value: "!(centrar-13.19.2.10.0.pol-32c.san-1c7.tun-110.ent-e01.cen-30c)!", + result: { + word: "centrar", + correct: 19, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "13.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/fajne-takie-nie-za-oczywiste-chyba-ze-znasz-jezyk-to-pewnie-latwiej-15-01-2025-e" +] = [ + { + date: "15.01.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=hkCN5YjLmFjNtw2buMWMy0icpNmLxITLklmZuQGZx0idpRmLl1CajJjLhVTLpx2bukjNt4Wai5SN2UTLsF2cuQzMtQXay5yYyMTLs9GcuAjL1EjLy4SNz4SNx0ybklmcvx2bjhSI", + value: + "!(colorido-15.35.2.15.0.pol-32c.rit-34.sal-565.bin-69.oli-5a.2ch-e.div-1dd.fid-21.cir-21c.ol-61f.694)!", + result: { + word: "colorido", + correct: 35, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 52, + date: "15.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/jaki-fuks-xd-06-05-2025-de-diffle-difflede-grywebowe-17-buchstaben-im-2-wortern-" +] = [ + { + date: "06.05.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=hkCMtMWdi5yMlZmNtg2Yz5CMuETMuAjL24iNyETLoNWdihSI", + value: "!(buch-126.6.0.11.0.sch-6fe3.buc-0)!", + result: { + word: "buch", + correct: 6, + position: 0, + incorrect: 11, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "06.05.2025", + }, + }, + { + date: "06.05.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=hkCMuUDMk1yY1JmLw4SOuAjL44iNyETLoNWdihSI", + value: "!(buch-126.8.0.9.0.buc-d05.0)!", + result: { + word: "buch", + correct: 8, + position: 0, + incorrect: 9, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 17, + date: "06.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/kazde-slowo-jest-trudne-gdy-nie-znasz-jezyka-04-01-2025-it-diffle-diffleit-73-le" +] = [ + { + date: "04.01.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpgTMtwmYv5iM10CajNjLzITLsJ2buImMtwWat5SOtwWar5SYj1CajNjLzEWLslmZuIGZtg2Yz4CMtkWds5yNtkGbi5yYy0yY1NnL5ETLiVHcuEGOtEWak5iN0ETLoN2MuEjNt4WZi5iY00Cbv1mL14CNy4iNuMDNuQTLvVXcpxmYvhSI", + value: + "!(obliquo-4.43.6.24.5.mol-4b.ben-61.3ch-146.dia-8a.pub-19.suc-2c.bli-7.lui-0.3ch-db.fil-a3.3ch-ca.kil-9.mil-2b.obl-23.3ch-52.obl-18)!", + result: { + word: "obliquo", + correct: 43, + position: 6, + incorrect: 24, + knownIncorrect: 5, + totalWords: 16, + totalLetters: 73, + date: "04.01.2025", + }, + }, + { + date: "04.01.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpgTMtwmYv5iM14SYj5SM0QTLoN2MuY2Ytg2Yy4CZy0CajNjL4MTLkV3cuYWZucTOtg2Yz4SOx0CdlZmLx4iNx4SMuQjMuQTLvVXcpxmYvhSI", + value: + "!(obliquo-4.24.1.16.1.fet-19.3ch-97.ef.sud-38.3ch-2d.2ch-cf.3ch-441.ca.52.obl-18)!", + result: { + word: "obliquo", + correct: 24, + position: 1, + incorrect: 16, + knownIncorrect: 1, + totalWords: 10, + totalLetters: 41, + date: "04.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/latwo-17-02-2025-de-diffle-difflede-grywebowe-31-buchstaben-im-6-wortern-large-g" +] = [ + { + date: "17.02.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=hkCMtcWZk5SY30CajNjL0MTLoNmMuUDMy0CajNjL5ETLnV2ZuMTZmZTLoN2cuAjL1EjLx4SNx4CO00ibldWZkhSI", + value: "!(degen-48.15.1.15.0.sch-6fe3.geg-19.3ch-205.2ch-34.3ch-7a.deg-0)!", + result: { + word: "degen", + correct: 15, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "17.02.2025", + }, + }, + { + date: "17.02.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpATLnVGZukTMtcWZn5CMm1yZldnL2QWNtcWZy5yMwcTLuV2ZuMWZ1ETLulWZuAjLyEjLx4iMy4CO00ibldWZkhSI", + value: + "!(degen-48.22.1.12.0.ein-15ec.gen-703.reg-5d6.weg-f0.geg-19.deg-0)!", + result: { + word: "degen", + correct: 22, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "17.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/mega-proste-11-08-2025-de-diffle-difflede-grywebowe-46-buchstaben-im-10-wortern-" +] = [ + { + date: "11.08.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpQGO30SbvtmLwkTMuMWOtg2Yz4CMtEWbv5yN50ycvJmLxITMtg2Yz4CNtg2Yy4CZlFTLoN2MuITY0ETLzVXbuMTZmZTLoN2cuAjL3EjL04SNy4yMyITLzNXYw12brhSI", + value: + "!(kompass-223.25.4.17.0.sch-6fe3.mus-14a2.3ch-1ed.2ch-4.3ch-121.bos-97.oma-0.3ch-9c.190.kom-78d)!", + result: { + word: "kompass", + correct: 25, + position: 4, + incorrect: 17, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 46, + date: "11.08.2025", + }, + }, + { + date: "11.08.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKkhzNt02br5iMtMXYw5yM1ETLoN2MuQ2MxETL1R3cuAjLwEjLx4iNx4yMyITLzNXYw12brhSI", + value: "!(kompass-223.16.1.10.0.stu-113d.3ch-153.pas-2.kom-78d)!", + result: { + word: "kompass", + correct: 16, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 27, + date: "11.08.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/moze-bede-czesciej-na-francuskie-zagladal-06-07-2024-diffle-difflefr-grywebowe-2" +] = [ + { + date: "06.07.2024", + nick: "nxo", + lang: "fr", + url: "https://deykun.github.io/diffle-lang/fr?r=hkSOt4WZw5CMt4WYj5COz0ibp1mLwETLu9mYuAjLwEjLw4SMx4CO4ETLsFmb5EUJzMUJwhSI", + value: "!(pénal-188.11.0.10.0.bon-10.min-38.can-0.pen-9)!", + result: { + word: "pénal", + correct: 11, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 21, + date: "06.07.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/moze-z-jeden-wczesniej-bym-dal-rade-12-01-2025-it-diffle-diffleit-39-lettere-in-" +] = [ + { + date: "12.01.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpUzMuM2MtMXYuEmMtEWam5yMk1CbvNnLmJTMtw2bw5SM20iblJmLiRTLs9WbuAjL44SMuAzMuITMt8GbvNWajNXYmhSI", + value: + "!(fascicolo-12.30.1.8.0.mol-4b.ben-61.pol-12f.sol-d3.fia-2a.as-3c.35)!", + result: { + word: "fascicolo", + correct: 30, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "12.01.2025", + }, + }, + { + date: "12.01.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpUzMtMXYm5yM24iNtg2Yy4CNiRTLoN2MuUDNx0ychNmLzEjL0UmMtg2Yz4yM30CdzlmLw4SMx4SMuQjMuITMt8GbvNWajNXYmhSI", + value: + "!(fascicolo-12.24.1.11.0.ist-73.3ch-2e4.13.cas-145.3ch-4b4.2ch-6.63.fas-35)!", + result: { + word: "fascicolo", + correct: 24, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 36, + date: "12.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/musialem-zerknac-do-slownika-04-10-2025-de-diffle-difflede-grywebowe-84-buchstab" +] = [ + { + date: "04.10.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKyAzMtwWZy5SNtUWdx5CNl1CajNjLw0CbpxmL0MTLoNmMuEjZtwWZy5SN3EWLpV2dukDOx0CajNjLmhzNtIXdr5yNwITLoN2MuMTNz0SYlJnL40SZpxmL4gTMuAzNx0CajNjLxETLkJ3buETLylGbuEjMtkGbl5yMlZmNtg2Yz5iNugjMuATMuYDNuczNy0SZpVXcpxWZyhSI", + value: + "!(reliquie-277.46.10.28.6.sch-6fe3.eli-21.lir-1.ord-11.3ch-170.188.lie-8.rea-353.3ch-207.kur-78f.3ch-189.wei-a75.rel-f1.2ch-34.lil-0.3ch-e4.que-5.rel-302)!", + result: { + word: "reliquie", + correct: 46, + position: 10, + incorrect: 28, + knownIncorrect: 6, + totalWords: 18, + totalLetters: 84, + date: "04.10.2025", + }, + }, + { + date: "04.10.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpIDMz0CblJnLx0icpxmLxITLsVHcuAjZx0CajNjLm1CZlJnLmVDMy0iclJmLldDZx0ibpVmLw4yNx4SNuQjMuczNy0SZpVXcpxWZyhSI", + value: + "!(reliquie-277.24.5.17.0.ein-1d7e.ber-205f.red-f.3ch-1f0.pul-21.lir-1.rel-302)!", + result: { + word: "reliquie", + correct: 24, + position: 5, + incorrect: 17, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 46, + date: "04.10.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nawet-proste-deykun-tutaj-tez-czesc-komunikatu-pojawia-siebpo-angielsku-09-07-20" +] = [ + { + date: "09.07.2024", + nick: "nxo", + lang: "fr", + url: "https://deykun.github.io/diffle-lang/fr?r=ESKw4CMh1ich5CMtUmcj5CMx0ibvJmLy4CMx4SMukTMuETOx0SZyhTQlMzQlQ3YhJXYjhSI", + value: "!(caractère-191.19.1.10.2.bon-10.cre-0.ar-a0.0)!", + result: { + word: "caractère", + correct: 19, + position: 1, + incorrect: 10, + knownIncorrect: 2, + totalWords: 4, + totalLetters: 30, + date: "09.07.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-bedzie-zaskoczeniem-jesli-powiem-ze-nie-znam-slowa-xd-19-07-2025-de-diffle-d" +] = [ + { + date: "19.07.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpIWZh1Cbl5yM3MTL1xmZuQzMtg2Yz4yYtw2b35SNwITLoN2MuMTZmZTLoN2cuAjL0EjLx4SOx4CMwITLnVnekxWZmhSI", + value: + "!(feldzug-200.19.1.14.0.sch-6fe3.3ch-205.wol-c.3ch-34.flu-373.el-aeb)!", + result: { + word: "feldzug", + correct: 19, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "19.07.2025", + }, + }, + { + date: "19.07.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKiVWYtwWZm5iMmFTLs9GcucjMtoXb15SNwIjLwYWMtg2Yz4SNwQWLjVnYuAjL2EjLy4yNx4CMwITLnVnekxWZmhSI", + value: + "!(feldzug-200.17.2.16.0.buc-d05.3ch-1f0.205.umz-27.pol-1f2.fel-aeb)!", + result: { + word: "feldzug", + correct: 17, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 35, + date: "19.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-podoba-mi-sie-to-slowo-24-03-2025-it-diffle-diffleit-grywebowe-47-lettere-in" +] = [ + { + date: "24.03.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKiFTLt9GduEDNuUDNtMXYt5yM30CajJjLycDNtg2Yz4COy0SbvRnLmBDNuEDOz4CMxEjLmRWLoN2MuQTOtI3bt5CMuQTMuIjLxMjLzgTLvNXYt12b0hSI", + value: + "!(tommaso-83.31.2.14.0.mor-94.3ch-df.110.381.40f.tom-28.3ch-472.2ch-73.mas-45.41.tom-1b)!", + result: { + word: "tommaso", + correct: 31, + position: 2, + incorrect: 14, + knownIncorrect: 0, + totalWords: 11, + totalLetters: 47, + date: "24.03.2025", + }, + }, + { + date: "24.03.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkiYx0SbvRnL10ychdmL2MDNtg2Yz4yYy0SbvRnLiRTLs9WbukDNt4WYm5CMuATMuIjLwIjLzgTLvNXYt12b0hSI", + value: "!(tommaso-83.20.2.10.0.fan-49.mol-4b.tom-2c.3ch-436.gas-5.tom-1b)!", + result: { + word: "tommaso", + correct: 20, + position: 2, + incorrect: 10, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "24.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-umiem-czytac-xd-08-03-2025-it-diffle-diffleit-grywebowe-54-lettere-in-13-par" +] = [ + { + date: "08.03.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpYTMtUnLjFTLnl2ZuE2Ntg2Yz4CZx0CajJjL0MWMtg2Yz4CZ50SaoNmL3UjLzU2Mtg2Yz4SMtA3bw5CMz0iblNnL10CZpZnLiN2Mtg2Yz4CN50icv1mLw4COx4CNuIzMucjNt8WZkVXanhSI", + value: + "!(giudeo-67.32.4.18.0.mor-94.3ch-3cb.vid-5.sen-30.pop-1.3ch-3e3.57.chi-9d.3ch-1c4.2ch-1d.3ch-7a.gig-1c.u-16)!", + result: { + word: "giudeo", + correct: 32, + position: 4, + incorrect: 18, + knownIncorrect: 0, + totalWords: 13, + totalLetters: 54, + date: "08.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-znalem-16-01-2025-de-diffle-difflede-grywebowe-33-buchstaben-im-5-wortern-la" +] = [ + { + date: "16.01.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=hkyNz0CahRmLmFDNt4Wao5iZwITLs9GcuI2N00SalhmLjVmMtU2d65CMugjL14CMy4iNx0iclRnbphWYkhSI", + value: "!(dahinter-16.20.5.8.0.zwe-2ec.hei-47b.pol-20f.hin-41f.dah-37)!", + result: { + word: "dahinter", + correct: 20, + position: 5, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "16.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-znalem-slowa-jak-zwykle-xd-08-07-2025-it-diffle-diffleit-grywebowe-55-letter" +] = [ + { + date: "08.07.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESK5ETLu9GZuQTMtw2bm5CO00CbpNnL30CbhhmL1MTLslmYuYTLsdWYugTMtoXaw5SYx0ibvRmLkNWLoN2MuQTOtI3bt5CMuUTMuUjL1MjL5gTMt8GbvlWYu52bkhSI", + value: + "!(donnaiolo-189.35.5.15.0.mor-94.3ch-cd.don-1a.piz-18.agl-6.bil-35.hal-7.sil-48.fol-14.don-19)!", + result: { + word: "donnaiolo", + correct: 35, + position: 5, + incorrect: 15, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 55, + date: "08.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-znam-slowa-21-01-2025-flag-cz-diffle-difflecs-grywebowe-47-pismen-v-12-slove" +] = [ + { + date: "21.01.2025", + nick: "Felonious_Gru", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=QIpAzNz0ib5ZnLm1Cd15mLwgTMukzM24iYwYjLzYTMucjNz4yN3YjL3UmLmFDNuUjZ00CajNjL5MzMtEmco5CMucTMuIjL4IjLxITL0lGd15We2hSI", + value: + "!(vynutit-21.28.2.17.0.hra-339.3ch-4f5.41f.e7.677.367.163.60b.639.180.nut-f.vyn-370)!", + result: { + word: "vynutit", + correct: 28, + position: 2, + incorrect: 17, + knownIncorrect: 0, + totalWords: 12, + totalLetters: 47, + date: "21.01.2025", + }, + }, + { + date: "21.01.2025", + nick: "Deykun", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=QIpAzNz0ib55yN4ETLulmduMjZx4SO30CajNjLwETL15mduQDM24iZ2MjLidTMuEGZz0CajNjLzMWMtw2bo5CMuQTMuQjLzIjLxITL0lGd15We2hSI", + value: + "!(vynutit-21.23.4.14.0.hol-1c3.3ch-3da.17b.36f.604.vnu-10.3ch-79.1f3.vin-187.yn-370)!", + result: { + word: "vynutit", + correct: 23, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 41, + date: "21.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nie-znam-slowa-26-01-2025-de-diffle-difflede-grywebowe-37-buchstaben-im-7-worter" +] = [ + { + date: "26.01.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=hkCMuEzMtUHbw5iZ2ETLoN2MuATLmVHcuMTLs9meuATLtFGbuMTZmZTLoN2cuEjLwIjLx4iNx4iNy0CctVHbwhSI", + value: "!(plump-26.16.1.20.1.sch-6fe3.lam-0.zol-3.puf-0.3ch-16f.plu-31.0)!", + result: { + word: "plump", + correct: 16, + position: 1, + incorrect: 20, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 37, + date: "26.01.2025", + }, + }, + { + date: "26.01.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKw0SdsBnL1ETLoNmMuATLjVHbuMWMtUHbi5CMkFTLoN2MuU2Yz0ic1dnL0AjMtg2Yz4iY3QTLpVGauIjL3EjLx4iNx4iNy0CctVHbwhSI", + value: + "!(plump-26.16.1.17.2.hei-47b.3ch-204.wur-3ce.3ch-1d0.blu-1c.luc-0.2ch-15.plu-0)!", + result: { + word: "plump", + correct: 16, + position: 1, + incorrect: 17, + knownIncorrect: 2, + totalWords: 8, + totalLetters: 34, + date: "26.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/niemieckiego-tez-nie-znam-tutaj-trudniej-zgadnac-dzialajace-slowo-20-07-2024-de-" +] = [ + { + date: "20.07.2024", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpETLwVmeuMTNt8Gbm5yNygTLllGZuQ2M10SZyJmL3EWNtg2Yh5CMuQTMuEjL0EjLyAjMtIXZ0BXZ6hSI", + value: "!(zepter-202.14.1.14.0.ach-5a7.bre-53d.die-827.flo-53.zep-1)!", + result: { + word: "zepter", + correct: 14, + position: 1, + incorrect: 14, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "20.07.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nienawidze-tego-jezyka-09-02-2025-fr-diffle-difflefr-grywebowe-58-lettres-en-18-" +] = [ + { + date: "09.02.2025", + nick: "Felonious_Gru", + lang: "fr", + url: "https://deykun.github.io/diffle-lang/fr?r=ESKxIjLwITLph2YuM2Ntg2Yy4iNyIjLkFjLzUjMuI2Ny4COy0CajNjLzcTLoNmMuUjNtg2Yz4CMtUmdh5CMt8Was5yYj5CO24SM14COuIWMtg2Yz4CNtg2Yy4CMuYTMuAjLyQjLwQTLu9mZmlGajhSI", + value: + "!(chiffon-40.42.0.16.0.2ch-4.3ch-1b.8.51.68.cc.lio-0.ave-0.3ch-65.2ch-73.3ch-28.27b.253.1d.226.2ch-7c.chi-20.21)!", + result: { + word: "chiffon", + correct: 42, + position: 0, + incorrect: 16, + knownIncorrect: 0, + totalWords: 18, + totalLetters: 58, + date: "09.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/niesmieszne-slowo-08-03-2025-de-diffle-difflede-grywebowe-52-buchstaben-im-9-wor" +] = [ + { + date: "08.03.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKiFmM10Caj5yMkFTL4V2cuQGO00CbldnLwETMtg2Yz4yMiFWLiVGbuQTMtMXZw5yMtw2b65iZ5ITNuMTZmZTLoN2cuAjL5EjLz4CMz4yN20CdoNWZsh2YzhSI", + value: + "!(schlecht-67.30.3.19.0.sch-6fe3.529f.zol-3.pes-14.leb-ab3.3ch-110.wel-48d.sex-1d3.ch-52ab)!", + result: { + word: "schlecht", + correct: 30, + position: 3, + incorrect: 19, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 52, + date: "08.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/niespodzianka-nie-znam-slowa-17-02-2025-it-diffle-diffleit-grywebowe-65-lettere-" +] = [ + { + date: "17.02.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkCZx0icpdmLkFTL0lmduYGNtIXan5SZi1CajJjLjVWMukDMz0CajNjL5ETL0JXYuUmMtM3cl5yN3ITLoN2MukjMtQXYuQTNx0SYydmL5ATMtEmcm5SYy0CdhJnL0kTLy9WbuAjL3EjL14yM04CO00SZ0lmdhJXanhSI", + value: + "!(giravite-48.43.5.17.0.mor-94.rat-2a.fra-109.gra-154.at-29.3ch-277.ess-2e.art-19.3ch-309.1ec.2ch-be.gir-4f.vit-1d.gir-1d)!", + result: { + word: "giravite", + correct: 43, + position: 5, + incorrect: 17, + knownIncorrect: 0, + totalWords: 14, + totalLetters: 65, + date: "17.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/niespodzianka-tego-slowa-tez-nie-znam-xx-06-01-2025-it-diffle-diffleit-48-letter" +] = [ + { + date: "06.01.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkCMy0yYuFmLlNTLoN2MuUjNt4mbh5SY10ibvNnLw0idv5mLj1ichRmL20iblJnL50iepBnLxYTLuVmYuIGNtw2bt5CMuUTMuUjL4IjL20SZyFmcvNmbhhSI", + value: + "!(ancorare-6.28.5.15.0.mol-4b.ben-61.piz-9.ren-6.dar-c.nov-0.son-5a.ann-65.3ch-3e.anc-20)!", + result: { + word: "ancorare", + correct: 28, + position: 5, + incorrect: 15, + knownIncorrect: 0, + totalWords: 10, + totalLetters: 48, + date: "06.01.2025", + }, + }, + { + date: "06.01.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkCMy4iZx0yYuFmLzQTLjNWZuETMz0CajNjL0EjLy0icvNmLiNTLu9WbuYmMz0CajNjL3YWNt42bj5CMuITMuMjL2MjL20SZyFmcvNmbhhSI", + value: + "!(ancorare-6.36.3.12.0.con-5f7.3ch-32f.mon-3b.cor-2.14.3ch-311.ecc-43.anc-1f.20)!", + result: { + word: "ancorare", + correct: 36, + position: 3, + incorrect: 12, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 51, + date: "06.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/nis-znam-slowa-22-03-2025-de-diffle-difflede-grywebowe-22-buchstaben-im-3-worter" +] = [ + { + date: "22.03.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=hkSNmVmLzYWZtkGcuMTZmZTLoN2cuAjLwEjLw4iMx4SM40CZulGczhSI", + value: "!(spind-81.12.0.10.0.sch-6fe3.pi-ef3.ef5)!", + result: { + word: "spind", + correct: 12, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "22.03.2025", + }, + }, + { + date: "22.03.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESK1YWZtkGcuQTLulmLkZDOz0SY0NnLmVWLslGauAjLwEjLw4yMx4SM40CZulGczhSI", + value: "!(spind-81.13.0.10.0.hil-ef.sta-386d.in-4.pi-ef5)!", + result: { + word: "spind", + correct: 13, + position: 0, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "22.03.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/no-nie-znalem-slowa-28-01-2025-de-diffle-difflede-grywebowe-107-buchstaben-im-19" +] = [ + { + date: "28.01.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=hkCM3MjL4ADNtIXZ65SYjhDOtg2Yz5CMtMnLw0CdlpnL5kTMtMXZ05iY5ETLoN2MuATLiVmeuUDMy0CajNjLmhzMy0ic0NnLw0icoFmL1ITLoVnZuQmNtg2Yz4yN5QTMtkWZ35SNzQTMtUHdz5SY2ITLz9GcucjNjFTLyR3cuUWOz0ychRnLzUmZ20CajNnL5EjLwQjLxEjL2UjL4ITL0JnNCVyMDVCdzJXZ6hSI", + value: + "!(zerstört-28.56.11.40.19.sch-6fe3.tas-39e.str-1c67.pos-26a.stu-1435.wei-1497.3ch-6d.fuh-25.ahr-0.str-238f.3ch-205.zeb-0.3ch-19b.tes-199.zet-0.s-0.sch-88ca.zer-408.370)!", + result: { + word: "zerstört", + correct: 56, + position: 11, + incorrect: 40, + knownIncorrect: 19, + totalWords: 19, + totalLetters: 107, + date: "28.01.2025", + }, + }, + { + date: "28.01.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=hkCM3MjLzUzMtIXZ65CZ20ycvJmLy0ycyVmL1IzNtIXdk5SY2ITLz9GcuIzNtMXdz5CMuQTMuQjL3IjL4ITL0JnNCVyMDVCdzJXZ6hSI", + value: + "!(zerstört-28.27.4.14.0.sus-72.pos-26a.dur-725.ers-2.bos-6d.zer-353.370)!", + result: { + word: "zerstört", + correct: 27, + position: 4, + incorrect: 14, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 45, + date: "28.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/no-taki-srednio-22-02-2025-es-diffle-difflees-grywebowe-70-letras-en-14-palabras" +] = [ + { + date: "22.02.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=ESKlVjZt8mcw5yYm1iY1NmLkFWMtEGbm5CMtI3bo5iMzYTLv5yN4ETMtUmcw5iZiFTLoN2MukzNz0iclZnL20SZ1pmLmNTMtg2Yz4COm1icv5iM20CdpBnLzYmMtQWZy5iYhJTLyVGaucjLxIjL24yM04yM10yboNWZ29mcwhSI", + value: + "!(provecho-53.43.6.21.7.her-2ab.red-2f3.pit-62.or-f8.3ch-13f.jue-6.ver-379.3ch-1bf.pre-1187.o-632.hor-0.fla-1ad.cub-fc.pro-f5e)!", + result: { + word: "provecho", + correct: 43, + position: 6, + incorrect: 21, + knownIncorrect: 7, + totalWords: 14, + totalLetters: 70, + date: "22.02.2025", + }, + }, + { + date: "22.02.2025", + nick: "Greyman", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=QIpUWNm1ybyBnL3MTMtwWdj5SOj1yby5COm1yYl5SM0MjLhZmNt8mcuYWLl9GcuAjLwEjLx4SMz4yM10yboNWZ29mcwhSI", + value: + "!(provecho-53.31.1.10.0.poe-f.ro-6fa.341.ec-f8.ro-c9.cul-137.pro-f5e)!", + result: { + word: "provecho", + correct: 31, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "22.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/o-kurde-ale-fuks-xd-26-01-2025-es-diffle-difflees-grywebowe-11-letras-en-2-palab" +] = [ + { + date: "26.01.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=ESK5EjMtMnLw0SZhBnLw4yMuAjL44iNy0SY0NXYwhSI", + value: "!(pasta-26.8.0.3.0.pae-0.s-219)!", + result: { + word: "pasta", + correct: 8, + position: 0, + incorrect: 3, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 11, + date: "26.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/oh-bardzo-niemieckie-slowo-xd-21-01-2025-de-diffle-difflede-grywebowe-45-buchsta" +] = [ + { + date: "21.01.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpYWMy0Cbv5CNwEzMtUXYo5CMtMXds5yMxQTLwF2auMWNtMWd35CO20CajNjLzUmZ20CajNnLx4yMx4SNucjMuEjMtQ3c1F2Yvx2bohSI", + value: + "!(holocaust-21.27.5.13.1.sch-6fe3.3ch-68.wuc-5c.kap-413.lus-0.hau-3104.ol-21f)!", + result: { + word: "holocaust", + correct: 27, + position: 5, + incorrect: 13, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 45, + date: "21.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/oj-moglo-byc-lepiej-dzisiaj-08-02-2025-it-diffle-diffleit-grywebowe-31-lettere-i" +] = [ + { + date: "08.02.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkyY1MTLw1WauIGZt0WZz5iMz0SbvBnL2YTLyVmL0kTLy9WbuAjL54yMukTMukzMt8mclBXbphSI", + value: "!(impero-39.19.3.9.0.mor-94.er-66.pom-32.sem-db.imp-35c)!", + result: { + word: "impero", + correct: 19, + position: 3, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 31, + date: "08.02.2025", + }, + }, + { + date: "08.02.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKjVzMuQjMx0CctlmLiRTLs9WbukTL6lGcuEjL44SMucTMukzMt8mclBXbphSI", + value: "!(impero-39.17.1.8.1.piz-9.mol-4b.imp-124.35c)!", + result: { + word: "impero", + correct: 17, + position: 1, + incorrect: 8, + knownIncorrect: 1, + totalWords: 4, + totalLetters: 26, + date: "08.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/pa-tera-20-01-2025-it-diffle-diffleit-grywebowe-24-lettere-in-3-parole-large-gre" +] = [ + { + date: "20.01.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESK2MWLsFmYuMzYtwWYw5CN50icv1mLw4iNuEjL3EjLwITLhRXYsxWYihSI", + value: "!(ballata-20.17.1.6.0.mor-94.pal-c3.bal-c6)!", + result: { + word: "ballata", + correct: 17, + position: 1, + incorrect: 6, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 24, + date: "20.01.2025", + }, + }, + { + date: "20.01.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkiNj1CbuQTL0FmYuQGMz4SOjFjL3cjL1czMtg2Yz4CNy0CdhRmL30CdhZmLykTL0FWbuIWNt42bm5SOtoXaw5SMugTMuEjLzMjLwITLhRXYsxWYihSI", + value: + "!(ballata-20.33.1.18.1.piz-9.fon-5b.mat-92.fat-7.dat-24.3ch-375.77.1c9.30d.bat-4.l-c6)!", + result: { + word: "ballata", + correct: 33, + position: 1, + incorrect: 18, + knownIncorrect: 1, + totalWords: 11, + totalLetters: 52, + date: "20.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/pan-felonious-gru-kazal-to-robie-12-06-2025-flag-cz-diffle-difflecs-grywebowe-32" +] = [ + { + date: "12.06.2025", + nick: "Greyman", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=hkyNzETLw5CM3MTLsFmbuATLtVHZuEmYtMWZj5yNtw2br5CMuYTMuIjL0EjLzYTMtQXasFTQlMzQlAXYuhSI", + value: "!(napálit-163.14.2.16.0.kol-7.cec-ba.dum-0.nal-370.p-137)!", + result: { + word: "napálit", + correct: 14, + position: 2, + incorrect: 16, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 32, + date: "12.06.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/pomylilem-jezyki-xd-21-01-2025-es-diffle-difflees-grywebowe-44-letras-en-8-palab" +] = [ + { + date: "21.01.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=ESKycTLp5WauQWNtg2Yy4SY0ETLulWbugzMx0ib1ZmL3MWL2lGZuEmMtg2Yz4SNk1ichNmLjJzMtw2bw5CMuIjMuAjLyIjLxITLyFWajlmbphSI", + value: + "!(iniciar-21.22.0.22.0.pol-32c.car-d5.3ch-2a.div-c7.fun-138.min-14a.2ch-5d.ini-72)!", + result: { + word: "iniciar", + correct: 22, + position: 0, + incorrect: 22, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 44, + date: "21.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/powinno-wyjsc-inaczej-31-07-2025-es-diffle-difflees-grywebowe-79-letras-en-19-pa" +] = [ + { + date: "31.07.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=ESK2kDOuU2M20ichBnL24SM10CajJjLw0CbpxmL0IjLkVTLoNmMuY2MtwWa25iYy0CbpJmLw0CbpBnLlRTLoNmMuATLjVHbugTMtg2Yy4CMuMTY14yY3EWLyFGcuATLpJXYugTLhJHZuIWYy0iclhmLw4CMy4iMucTNuITMy0SYsxWayJXYwhSI", + value: + "!(parrilla-212.57.2.20.0.her-2ab.dra-8.ari-0.par-a7c.5a3.0.2ch-18.luc-0.2ch-4e.pil-0.bil-2b.vil-3f.2ch-5d.24.lil-0.2ch-51.6.par-63e.896)!", + result: { + word: "parrilla", + correct: 57, + position: 2, + incorrect: 20, + knownIncorrect: 0, + totalWords: 19, + totalLetters: 79, + date: "31.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/prosciutkie-23-07-2024-it-diffle-diffleit-grywebowe-35-lettere-in-5-parole-large" +] = [ + { + date: "23.07.2024", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkiZz0icv1mL5gTLy9mZuEmMtQmcv5SNx0icv5mLxIWMtMXay5CMuYjL14CNy4SNwITLh5WamJ3", + value: "ܙš[˜KLŒ\rKŒ\u000bK‹Œ\u000bœš\\ËLXŒK››Ü‹LMK›Ü™\u000bL˜K™›Ü‹N\u000eK›[܋LيH", + result: { + word: "ܙš[˜KLŒ\rKŒ\u000bK‹Œ\u000bœš\\ËLXŒK››Ü‹LMK›Ü™\u000bL˜K™›Ü‹N\u000eK›[܋LيH", + correct: null, + position: null, + incorrect: null, + knownIncorrect: null, + totalWords: 0, + totalLetters: null, + date: "23.07.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/proste-i-przyjemne-o-ile-znasz-jezyk-jak-nie-znasz-to-tylko-przyjemne-15-02-2025" +] = [ + { + date: "15.02.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkyMx0yYv5COtMWY25SM20idhNmLlRWLoN2MuAjMt4Wan5SZy0yc1JmLx0ibvpnLkFTLulmZugTMtoXaw5CN50icv1mLx4iNx4iNuUzMuYDNtUmbvlmehN2b2hSI", + value: + "!(vocazione-46.35.6.16.1.mor-94.piz-18.fin-1d.zon-1.bus-2e.gin-20.3ch-de.cav-61.vac-8.oc-13)!", + result: { + word: "vocazione", + correct: 35, + position: 6, + incorrect: 16, + knownIncorrect: 1, + totalWords: 10, + totalLetters: 57, + date: "15.02.2025", + }, + }, + { + date: "15.02.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKzETLj9mduAjMtEmdv5SN20ibuFmLzQTL0FGbuUTL6F2cugTNx0CajNjL50iepBnLw4CMx4CNugjMuYDNtUmbvlmehN2b2hSI", + value: + "!(vocazione-46.28.4.10.0.piz-9.3ch-158.saz-5.lat-43.ann-65.ova-20.voc-13)!", + result: { + word: "vocazione", + correct: 28, + position: 4, + incorrect: 10, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 42, + date: "15.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/przyjemne-dzis-15-01-2025-it-diffle-diffleit-grywebowe-35-lettere-in-5-parole-la" +] = [ + { + date: "15.01.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKm1SdkFmLw0iclRnLjhTLyV2YukTL6lGcuQTOtI3bt5CMukjL04iMy4SNx0SYyVGdsVHZhhSI", + value: "!(adultera-15.22.4.9.0.mor-94.piz-9.cer-8c.ter-0.adu-f)!", + result: { + word: "adultera", + correct: 22, + position: 4, + incorrect: 9, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 35, + date: "15.01.2025", + }, + }, + { + date: "15.01.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKm1SdkFmLmFTMtg2Yz4SM20iblJmLiRTLs9WbukTL6lGcuAjLyEjLw4iNx4SNx0SYyVGdsVHZhhSI", + value: "!(adultera-15.16.0.12.0.piz-9.mol-4b.ben-61.3ch-11f.adu-f)!", + result: { + word: "adultera", + correct: 16, + position: 0, + incorrect: 12, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "15.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/skonczyly-mi-sie-pomysly-musialem-uzyc-slownika-10-02-2025-it-diffle-diffleit-gr" +] = [ + { + date: "10.02.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKhRTLpZ3cuEmNtMXa25iNtIXZuETLu9meuIzNuU2Ntg2Yy4SZ1ETLoN2MuQDMx4SZ10CajJjLkljMtg2Yz4CZh1icl5iM00idpZnLhRTMtg2Yz4SZx0icvdmL0EDNugTM04iYwEjLyYWLoN2MuEWLph2cuUzMt42bm5SZm1Saj5iYtUWaz5SN00ybyVmL0kTLy9WbuMjL4IjL54CM24SM00ybyVme6lmdzhSI", + value: + "!(svizzero-41.60.9.28.3.mor-94.ero-45.sie-b.ci-fe.fon-35.shi-a.3ch-f2.10b.418.414.gor-1e.3ch-14a.viv-42.er-ad.3ch-29d.2ch-5e.104.3ch-15e.2ch-7e.72.zon-1.er-6.vis-6a.svi-4a)!", + result: { + word: "svizzero", + correct: 60, + position: 9, + incorrect: 28, + knownIncorrect: 3, + totalWords: 24, + totalLetters: 97, + date: "10.02.2025", + }, + }, + { + date: "10.02.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpEGNtkmdz5yM20CajNjLlNWLoNmLiNTLk92cuUWNukDNtg2Yy4SO00iblNnLiRTLs9WbukTL6lGcuAjLzEjLy4SOy4SM00ybyVme6lmdzhSI", + value: + "!(svizzero-41.29.2.13.0.piz-9.mol-4b.sen-49.2ch-49.5e.sod-3b.ch-ce.3ch-63.svi-4a)!", + result: { + word: "svizzero", + correct: 29, + position: 2, + incorrect: 13, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 44, + date: "10.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/slabo-dzis-bo-nie-znalem-slowa-19-01-2025-de-diffle-difflede-grywebowe-33-buchst" +] = [ + { + date: "19.01.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKygjMtwWZi5yMtIWZs5SNt42bn5SNwIjL4YTLoN2MuMTZmZTLoN2cuMjL4EjLz4iMx4SOx0yZlxWZihSI", + value: "!(beleg-19.12.3.18.3.sch-6fe3.3ch-68.205.gon-5.leb-3.bel-282)!", + result: { + word: "beleg", + correct: 12, + position: 3, + incorrect: 18, + knownIncorrect: 3, + totalWords: 6, + totalLetters: 33, + date: "19.01.2025", + }, + }, + { + date: "19.01.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=hkiM4IjLzMmMucTZ10Cbl5iNx0SbvJmL4MTLsJXZuAjLxEjLx4COx4SOx0yZlxWZihSI", + value: "!(beleg-19.18.1.11.0.erl-38.bom-16.el-5e7.2c3.282)!", + result: { + word: "beleg", + correct: 18, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 30, + date: "19.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/slowa-oczywiscie-nie-znam-08-02-2025-es-diffle-difflees-grywebowe-31-letras-en-6" +] = [ + { + date: "08.02.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=QIpATLk9mL30iZ1JmLw0CZvNmLhRTL0F2ZuMmMz0CbvBnLiFmMtIXZo5CMuUTMuQjLyEjL5MTLhR2bihSI", + value: "!(boda-39.12.4.15.0.her-2ab.pol-32c.gat-4a.cod-0.buf-7.od-0)!", + result: { + word: "boda", + correct: 12, + position: 4, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 31, + date: "08.02.2025", + }, + }, + { + date: "08.02.2025", + nick: "Greyman", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=hkCMuMTLk5yMyETLj5CZk1ycvJmLyMjL1MjMtg2Yz4CMt42bt5COtIXYw5CMuUTMuAjLzIjL5MTLhR2bihSI", + value: "!(boda-39.23.0.15.0.par-8.mon-0.3ch-235.32.bos-dd.c-123.d-3.0)!", + result: { + word: "boda", + correct: 23, + position: 0, + incorrect: 15, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 38, + date: "08.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/smieszne-slowo-nie-znalem-deg-deg-12-01-2025-es-diffle-difflees-37-letras-en-8-p" +] = [ + { + date: "12.01.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=QIpcjMz0CbuIWMx0CZlBnLiZTLoN2MuIGNx0iclZmLiFTMtMXZw5iZz0CdsVnLzgDNtwWYuMmMz0CbvBnLw4SMx4SMuUjMuITMt8GZ1xWZwhSI", + value: + "!(peludo-12.25.1.11.0.pol-32c.al-483.ult-3f.pes-11b.fer-14b.3ch-6b.ped-11b.l-327)!", + result: { + word: "peludo", + correct: 25, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 37, + date: "12.01.2025", + }, + }, + { + date: "12.01.2025", + nick: "Greyman", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=QIpcjMz4yNyITLsVGcuMmYtwWZi5iZ30yclxmLlNTL29mbuEjNz0ich1mLw4SNx4iMuUTMuITMt8GZ1xWZwhSI", + value: "!(peludo-12.15.2.15.0.mar-361.nov-3e.les-7f.bel-bc.pel-227.327)!", + result: { + word: "peludo", + correct: 15, + position: 2, + incorrect: 15, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 32, + date: "12.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/szybko-poszlo-12-05-2025-it-diffle-diffleit-grywebowe-28-lettere-in-4-parole-lar" +] = [ + { + date: "12.05.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKhRTMuMmNx4yN5ETLy92YuQTOtI3bt5CMucjLw4SMy4iMzETLlNXZ0J3bjhSI", + value: "!(cortese-132.21.0.7.0.mor-94.cor-197.16c.14a)!", + result: { + word: "cortese", + correct: 21, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "12.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/tak-blisko-a-tak-daleko-12-07-2025-es-diffle-difflees-grywebowe-22-letras-en-4-p" +] = [ + { + date: "12.07.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=QIpEzYtEmcn5CNz0SYyRmL4kTMtMWYy5iYhJTLyVGauAjL24iMuQTMuMTOx0ybkFmcnhSI", + value: "!(grado-193.14.2.6.0.her-2ab.rac-198.dra-34.gra-c1)!", + result: { + word: "grado", + correct: 14, + position: 2, + incorrect: 6, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 22, + date: "12.07.2025", + }, + }, + { + date: "12.07.2025", + nick: "Greyman", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=ESKxMWLhJ3ZuQTNtEmcw5COz0ycvJnL5UTLy9mbuAjL44SMuQTMuMTOx0ybkFmcnhSI", + value: "!(grado-193.14.1.8.0.nor-59.ros-38.pra-54.gra-c1)!", + result: { + word: "grado", + correct: 14, + position: 1, + incorrect: 8, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 23, + date: "12.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/takie-proste-ze-az-wstyd-09-02-2025-de-diffle-difflede-grywebowe-30-buchstaben-i" +] = [ + { + date: "09.02.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpMTLldmLwQjYtcmbh5SNwITLoN2MuITLuF2ZuMTZmZTLoN2cuEjLzEjL04yMx4CM00CduV2ZhhSI", + value: "!(agent-40.13.4.13.1.sch-6fe3.gan-2.3ch-205.ang-b40.ge-3)!", + result: { + word: "agent", + correct: 13, + position: 4, + incorrect: 13, + knownIncorrect: 1, + totalWords: 5, + totalLetters: 30, + date: "09.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/takie-tam-po-literce-dlubane-19-01-2025-it-diffle-diffleit-grywebowe-51-lettere-" +] = [ + { + date: "19.01.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkCMx4SZj1Cc15SNyETLlBnL0ITLyV2cuYDMx0iclZnL5QTLvJXZuUTL6VmcuQTOtI3bt5iMuYTMuQjLxMjL5ETLvJmclBXdzhSI", + value: + "!(superbo-19.31.4.16.2.mor-94.rez-5.ero-49.ver-106.ser-24.pe-125.up-ce.10)!", + result: { + word: "superbo", + correct: 31, + position: 4, + incorrect: 16, + knownIncorrect: 2, + totalWords: 8, + totalLetters: 51, + date: "19.01.2025", + }, + }, + { + date: "19.01.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkCMx0Cc15iNj1iclNnLxYTLuVmYuIGNtw2bt5SOtoXaw5CMuETMuEjL3EjL5ETLvJmclBXdzhSI", + value: "!(superbo-19.17.1.11.0.piz-9.mol-4b.ben-61.ser-c6.up-10)!", + result: { + word: "superbo", + correct: 17, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 29, + date: "19.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/takie-troche-nieteges-ale-siadlo-ladnie-01-02-2025-de-diffle-difflede-grywebowe-" +] = [ + { + date: "01.02.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpEDOz0icuIzMtMWd05iM30yc1NnLw4SOuIjLxEjLyMTLltmcDJUJzMUJ0hSI", + value: "!(türke-32.11.2.9.0.sus-72.tuc-32.r-381)!", + result: { + word: "türke", + correct: 11, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "01.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/tez-fajne-06-05-2025-it-diffle-diffleit-grywebowe-33-lettere-in-5-parole-large-g" +] = [ + { + date: "06.05.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKj5CMi5CO30icvRnL1YWLy9GcuQTOtI3bt5CMugjLy4yMy4iNyETLvRWaiJ3b0hSI", + value: "!(torbido-126.23.2.8.0.mor-94.por-f5.tor-78.b0.c)!", + result: { + word: "torbido", + correct: 23, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 33, + date: "06.05.2025", + }, + }, + { + date: "06.05.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpMmLwIWLy9GduMDOtYXak5iN24CO30icvRnLiRTLs9WbukTL6lGcuAjLxEjLy4COy4iNyETLvRWaiJ3b0hSI", + value: "!(torbido-126.28.2.11.0.piz-9.mol-4b.tor-78.66.div-83.tor-b0.c)!", + result: { + word: "torbido", + correct: 28, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 41, + date: "06.05.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/tez-fajne-14-02-2025-it-diffle-diffleit-grywebowe-48-lettere-in-9-parole-green-h" +] = [ + { + date: "14.02.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKj1CdpJnLxQjMt42bj5SNh5SMi1CdpJnLzATMucTNtg2Yz4CNy0iclNnL1YWLy9GcuQTOtI3bt5iMuMTMuMjLyMjL1QTLv52ZlRXayhSI", + value: + "!(ritegno-45.32.3.13.2.mor-94.por-f5.ser-24.3ch-57.103.rit-b1.a5.con-241.rit-c)!", + result: { + word: "ritegno", + correct: 32, + position: 3, + incorrect: 13, + knownIncorrect: 2, + totalWords: 9, + totalLetters: 48, + date: "14.02.2025", + }, + }, + { + date: "14.02.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpMWL0lmcugDNt4WZ05iYjFTLoN2MuMGOx0SbuIjYtUWay5SYx0iepBnL5EjMtIXYj5CMuUTMuEjLzIjL1QTLv52ZlRXayhSI", + value: + "!(ritegno-45.23.1.15.0.car-219.piz-1a.rie-b2.m-18c.3ch-1cb.ten-48.rit-c)!", + result: { + word: "ritegno", + correct: 23, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 39, + date: "14.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/tez-fajne-choc-akurat-wloskiego-nie-znam-warto-sprobowac-31-08-2024-it-diffle-di" +] = [ + { + date: "31.08.2024", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkyNx0yYvRmL2YTLul2YuETLoN2bugjMt02bj5iNz0ibvBnL4ITLyVmbukTMtEGdp5SMuUTMuUjL4IjL0QjMt8GduVWb1N2bkhSI", + value: + "!(documento-244.28.5.15.1.ita-19.ner-28.pon-36.com-28.och-1.cin-66.doc-17)!", + result: { + word: "documento", + correct: 28, + position: 5, + incorrect: 15, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 48, + date: "31.08.2024", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/tha-deg-deg-tho-12-09-2025-de-diffle-difflede-grywebowe-96-buchstaben-im-19-wort" +] = [ + { + date: "12.09.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpkzMy4SYtAnL5E2MtI3br5CMtMWY55iZx0CajJjL4kzYx0icvZnL4cTMtUGcv5SZ2cTLyR3cuQzMtg2Yy4CNmFTLoN2MucDO00CahZmLhZTMtg2Yz4yMh1ycvBnL1AjMtg2Yz4iZxMTLu9GZuUjMtgWdm5iMy0SZiVnLhdzMtIXZo5yMlZmNtg2Yz5iNx4CM04iMuQTNuUTNy0iclJnNCVyMDVCamB3brhSI", + value: + "!(kopfhörer-255.54.2.40.16.sch-6fe3.her-37a.ube-22.fuh-25.don-31f.3ch-205.pos-a3.3ch-16a.fah-487.3ch-1f4.2ch-34.str-76e.ope-178.vor-1c98.2ch-1f.yac-0.kor-3a9.p-a.239)!", + result: { + word: "kopfhörer", + correct: 54, + position: 2, + incorrect: 40, + knownIncorrect: 16, + totalWords: 19, + totalLetters: 96, + date: "12.09.2025", + }, + }, + { + date: "12.09.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESK5MjMtAnLkFmNtI3br5SNlFWMtIXYt5SM30yc1NnLw4CMx4SMucTMuUTNy0iclJnNCVyMDVCamB3brhSI", + value: "!(kopfhörer-255.17.1.10.0.sus-71.mar-1ae5.kor-6ad.p-239)!", + result: { + word: "kopfhörer", + correct: 17, + position: 1, + incorrect: 10, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 28, + date: "12.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/to-se-chociaz-na-niemieckim-odbilem-29-01-2025-de-diffle-difflede-grywebowe-19-b" +] = [ + { + date: "29.01.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKxQTL0VXbuMTZmZTLoN2cuAjL44CMuETMukjMtIXZ0RXdthSI", + value: "!(mutter-29.11.0.8.0.sch-6fe3.mut-41)!", + result: { + word: "mutter", + correct: 11, + position: 0, + incorrect: 8, + knownIncorrect: 0, + totalWords: 2, + totalLetters: 19, + date: "29.01.2025", + }, + }, + { + date: "29.01.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKxQTL0VXbuETL0VnZuUWL0VnYuQmMz0iclRnLiZTYz0ibpVmLw4SNx4SMuEjMukjMtIXZ0RXdthSI", + value: "!(mutter-29.21.1.15.0.ein-3a6b.ter-32d.but-e.fut-1.mut-41)!", + result: { + word: "mutter", + correct: 21, + position: 1, + incorrect: 15, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 37, + date: "29.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/totalne-zacmienie-umyslu-16-01-2025-it-diffle-diffleit-grywebowe-50-lettere-in-1" +] = [ + { + date: "16.01.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpUzN10ibvNmLi5yNl5yNz4SYz0CajJjLkhjMtg2Yz4SYx0ibvRmLmFTLu9mbuITNtQ2bt5SN0QjL5Q2Mtg2Yz4SM20iblJmLwMTLpJnZuAjL2EjL04CMz4iNx0SYu5WYk52bjhSI", + value: + "!(condanna-16.30.4.16.0.fri-30.ben-61.3ch-3d9.445.mod-52.non-1f.don-1a.3ch-28d.2ch-3a.37.e7.b.con-575)!", + result: { + word: "condanna", + correct: 30, + position: 4, + incorrect: 16, + knownIncorrect: 0, + totalWords: 13, + totalLetters: 50, + date: "16.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/troche-strzal-bo-nie-znalem-slowa-15-02-2025-es-diffle-difflees-grywebowe-28-let" +] = [ + { + date: "15.02.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=QIpgTL2FGbuQWYx0SYsZmLmhTMtQXYi5iYhJTLyVGauMmMz0CbvBnLw4SMx4SMuYTMuYDNt8mYhZXYshSI", + value: "!(lavabo-46.16.1.11.0.pol-32c.her-2ab.bat-18f.fla-1ad.lav-8)!", + result: { + word: "lavabo", + correct: 16, + position: 1, + incorrect: 11, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 28, + date: "15.02.2025", + }, + }, + { + date: "15.02.2025", + nick: "Greyman", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=QIpgjLzITL2FGbuUDOtg2Yz4CO20iduMTNtcWYs5CMtA3bj5iZz0ib11mLw4SMx4iMuEjMuYDNt8mYhZXYshSI", + value: "!(lavabo-46.21.2.11.0.mun-3f.cop-0.lag-53.v-68.3ch-85.lav-23.8)!", + result: { + word: "lavabo", + correct: 21, + position: 2, + incorrect: 11, + knownIncorrect: 0, + totalWords: 7, + totalLetters: 34, + date: "15.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/trudna-jezyk-ciezko-zgadywac-15-02-2025-de-diffle-difflede-grywebowe-48-buchstab" +] = [ + { + date: "15.02.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpY2N20ichdnLhFTMtI3bo5CM40ib1dnLw0ibvpnL3kDNx0SaldnL1ITLoVnZuMTZmZTLoN2cuMjL0IjL04CMy4iN00ibl1mc0EUJzMUJ3hSI", + value: + "!(wärmen-46.20.4.24.3.sch-6fe3.fuh-25.wei-1497.zon-0.wun-80.hor-11a.war-67f)!", + result: { + word: "wärmen", + correct: 20, + position: 4, + incorrect: 24, + knownIncorrect: 3, + totalWords: 7, + totalLetters: 48, + date: "15.02.2025", + }, + }, + { + date: "15.02.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKmdjNuYTLyF2duUWYx0CajNjLyATOtgWZn5CMucjLx4iMx4iN00ibl1mc0EUJzMUJ3hSI", + value: "!(wärmen-46.12.1.7.0.geh-902.3ch-1ae.war-6.67f)!", + result: { + word: "wärmen", + correct: 12, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 20, + date: "15.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/trudne-13-09-2025-it-diffle-diffleit-grywebowe-39-lettere-in-6-parole-large-gree" +] = [ + { + date: "13.09.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkCOx4CMx0ybyVmLx0yZpZmLwQTLvJnLjFTLyVXZuQTOtI3bt5CMuITMuQjLzIjL2UjMtEmbp9mclhSI", + value: "!(eroina-256.23.4.12.0.mor-94.eur-1c.ro-40.fig-1.ero-10.18)!", + result: { + word: "eroina", + correct: 23, + position: 4, + incorrect: 12, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 39, + date: "13.09.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/trudne-bardzo-nie-spodziewalem-sie-takiego-slowa-13-01-2025-it-diffle-diffleit-g" +] = [ + { + date: "13.01.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESK1YTLu9WbuATL29mbuQTOtI3bt5CMucjLw4SNx4yMx0SYpx2bn52bthSI", + value: "!(mongolia-13.15.0.7.0.mor-94.nov-0.mon-65)!", + result: { + word: "mongolia", + correct: 15, + position: 0, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 22, + date: "13.01.2025", + }, + }, + { + date: "13.01.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkSN20ibuIGNtw2bt5SOtoXaw5CMucjLx4yMx4yMx0SYpx2bn52bthSI", + value: "!(mongolia-13.13.1.7.0.piz-9.mol-4b.n-65)!", + result: { + word: "mongolia", + correct: 13, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 3, + totalLetters: 21, + date: "13.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/trudne-jeszcze-nie-znalem-pisowni-slowa-tez-nie-znalem-13-01-2025-de-diffle-diff" +] = [ + { + date: "13.01.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESK0ITLr5WZuUDZtg2bi5CN1cTLuV2cuUTLuVGauY2YtwWZuYjY20SZstmLxQTL0VXbuEjL54SNugjMuMTMt4GavNHbltmblhSI", + value: + "!(enkelsohn-13.28.5.9.1.mut-41.kle-6b6.el-cf.hen-5.sen-754.boh-d5.enk-24)!", + result: { + word: "enkelsohn", + correct: 28, + position: 5, + incorrect: 9, + knownIncorrect: 1, + totalWords: 7, + totalLetters: 42, + date: "13.01.2025", + }, + }, + { + date: "13.01.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=hkCNy4CZx0yauVmLw0SZoNnL1ETLn5WZuYWYx0ibl1mLkBTMtQnbuEjMlNTLulWZuADMz0ib1dnLw4SNx4yMuQzMuMTMt4GavNHbltmblhSI", + value: + "!(enkelsohn-13.34.3.15.0.wun-300.ein-3e21.nt-10d.men-1af.eng-15.she-0.enk-1d.24)!", + result: { + word: "enkelsohn", + correct: 34, + position: 3, + incorrect: 15, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 52, + date: "13.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/trudne-tego-slowa-tez-nie-znalem-14-01-2025-it-diffle-diffleit-grywebowe-66-lett" +] = [ + { + date: "14.01.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpEGNtE2Yz5iMx0yYulmLh1yZhNmL3ITLnFmduQ2NtcWYy5iNtw2Zh5SOtoXaw5CN50icv1mLy4CNx4CNugDNuQTMtUmchlGbnF2YzhSI", + value: + "!(scagliare-14.48.4.14.2.mor-94.piz-9.agl-6.rag-7d.vag-27.cag-a.inc-12.sca-4a)!", + result: { + word: "scagliare", + correct: 48, + position: 4, + incorrect: 14, + knownIncorrect: 2, + totalWords: 8, + totalLetters: 66, + date: "14.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/twardym-trzeba-byc-29-01-2025-it-diffle-diffleit-grywebowe-72-lettere-in-19-paro" +] = [ + { + date: "29.01.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpIzMtInch5SMx0CajNjLx0CZhJnL5QWMtg2Yz4CZyEjLwMmLilTLoNmMuEzNx4yN04SZ0QjLzMzMtg2Yz4SN10CajJjL1YTMtIXYi5yN34SMzITLoN2MugTMtQWZj5CZ5ETLoN2MuYWOy0ichBnL0kTLy9WbuAjLyIjL04iN04SOy0SZyFGZlJnchhSI", + value: + "!(arredare-29.46.4.22.0.mor-94.par-29f.3ch-19d.ced-18.3ch-231.77.bar-165.2ch-55.3ch-333.44e.47.171.2ch-9b.c0.12d.3ch-1d9.rad-1.3ch-11.arr-32)!", + result: { + word: "arredare", + correct: 46, + position: 4, + incorrect: 22, + knownIncorrect: 0, + totalWords: 19, + totalLetters: 72, + date: "29.01.2025", + }, + }, + { + date: "29.01.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKyMTLy5CZtQmch5iYk1CajJjLzEmMtg2Yz4SMj5SZm1CajJjL00CajNjL4IWLoNmMuMzMz4iNyIjL1QTMtg2Yz4iZtQWYj5SM20iblJmLiRTLs9WbukTL6lGcuAjLyIjLz4SNz4SOy0SZyFGZlJnchhSI", + value: + "!(arredare-29.35.3.22.0.piz-9.mol-4b.ben-61.cad-f.3ch-145.226.333.2ch-b8.3ch-4.2ch-fe.c1.3ch-2a3.2ch-db.ard-d.r-32)!", + result: { + word: "arredare", + correct: 35, + position: 3, + incorrect: 22, + knownIncorrect: 0, + totalWords: 15, + totalLetters: 60, + date: "29.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/udalo-sie-cos-04-02-2025-de-diffle-difflede-grywebowe-77-buchstaben-im-18-worter" +] = [ + { + date: "04.02.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKkhDMz0SY0NnL5UWMx0SdhJmLw0Sbh1mLw0SZ4FmL4kzYx0icvZnLw0yYhlnL4UTLoN2MuAjL00CajJjLkVmZy0SY0NnL0MTLoNmMuYjNx0yc1ZmLkVWMtg2Yz4SMtg2Yy4iNwITLoN2MuQmZh1SY05iMkJWLvBnLzUmZ20CajNnL44SMz4SNuEDNuUzMt0WdhJWbtFGdzhSI", + value: + "!(stammbaum-35.41.5.31.8.sch-6fe3.po-bd2.ta-afd.3ch-206.2ch-1.3ch-1ed.fus-166.2ch-34.sta-2fed.2ch-4.0.3ch-58.yac-0.vor-1c98.axe-0.mam-0.bau-11e9.sta-308d)!", + result: { + word: "stammbaum", + correct: 41, + position: 5, + incorrect: 31, + knownIncorrect: 8, + totalWords: 18, + totalLetters: 77, + date: "04.02.2025", + }, + }, + { + date: "04.02.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=ESKkhDMz4CZwAzMuQmZh5SN3YGNtEGdz5SNwQWLjVnYuAjL44iMuYjMuUzMt0WdhJWbtFGdzhSI", + value: "!(stammbaum-35.26.2.8.0.buc-d05.sta-4f75.afd.300d.308d)!", + result: { + word: "stammbaum", + correct: 26, + position: 2, + incorrect: 8, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 36, + date: "04.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/uff-xd-09-02-2025-es-diffle-difflees-grywebowe-70-letras-en-15-palabras-large-gr" +] = [ + { + date: "09.02.2025", + nick: "Felonious_Gru", + lang: "es", + url: "https://deykun.github.io/diffle-lang/es?r=hkSZy0Sc6lmL2MWLoN2MucTMtg2Yy4CZz0SdxVmLwITLpVXcugDNx0CajNjLkhTLkVnaugjNtg2Yz4SZtMWak5SYx0iY1RnLwUTLllmZuEDNz0iclNnL5czMtIXZ25SYhJTLyVGauMmMz0CbvBnLw4COx4CNugDNuADNt8GZyVWa1FnephSI", + value: + "!(izquierdo-40.48.4.18.0.pol-32c.her-2aa.ver-379.ser-341.fie-50.tub-1a.dic-e.3ch-68.jud-8d.3ch-148.qui-20.equ-3d.2ch-17.3ch-c6.izq-2e)!", + result: { + word: "izquierdo", + correct: 48, + position: 4, + incorrect: 18, + knownIncorrect: 0, + totalWords: 15, + totalLetters: 70, + date: "09.02.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/was-is-das-18-01-2025-de-diffle-difflede-grywebowe-63-buchstaben-im-10-wortern-l" +] = [ + { + date: "18.01.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=hkCZkFTLp5mLkJWZtIXar5SZx0yclZmLz0CbvpnLkZTLoN2MuMTLhlmYuAjZx0icpBnLyYGNtIXd35SOh1SalJnLzUmZ20CajNnL04SOx4iNugzMugTMt4WZoN2cylmbrhSI", + value: + "!(knirschen-18.38.6.19.4.sch-6fe3.rei-a9.wur-4f2.pir-1f0.bia-3.3ch-6d.zol-3.fes-1e.kir-ebd.ni-1dd)!", + result: { + word: "knirschen", + correct: 38, + position: 6, + incorrect: 19, + knownIncorrect: 4, + totalWords: 10, + totalLetters: 63, + date: "18.01.2025", + }, + }, + { + date: "18.01.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpQGZx0SautmL10yapJmL00Ccv1mLkNTMtg2Yz4yM20CajJjLiZTYz0ibpVmLw4iNx4SMuAjMugTMt4WZoN2cylmbrhSI", + value: + "!(knirschen-18.20.1.16.0.ein-3a6b.2ch-63.3ch-13d.mop-4.bik-5.kni-1dd)!", + result: { + word: "knirschen", + correct: 20, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 37, + date: "18.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/wstyd-takie-latwiutkie-17-01-2025-flag-cz-diffle-difflecs-grywebowe-44-pismen-v-" +] = [ + { + date: "17.01.2025", + nick: "Felonious_Gru", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=ESKwETL6FmauYDZx0CajNjLh1SYnFmLmdjL3QjNugjL4UjMtg2Yz4yYy0CblRnLy0iepBnLxkDNtg2Yz4SYyETLhJnYuQjL1IjLy4yNx4yNx0ya5pXYqhSI", + value: + "!(jazyk-17.17.2.25.4.bra-12a.3ch-491.piz-2.tel-2c.3ch-258.8.647.7f.aga-a.3ch-1d6.jaz-10)!", + result: { + word: "jazyk", + correct: 17, + position: 2, + incorrect: 25, + knownIncorrect: 4, + totalWords: 11, + totalLetters: 44, + date: "17.01.2025", + }, + }, + { + date: "17.01.2025", + nick: "Deykun", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=hkCMx0iehpmLhJTLoN2MuMWMtg2Yy4CMtMXYuUTOtYncr5yMyETLoN2MuQzYt4WY05CMtM2ah5yMjFTLs9GauAjL3EjLz4CNx4yNx0ya5pXYqhSI", + value: + "!(jazyk-17.14.3.17.0.hol-1c3.akc-0.tan-c4.3ch-123.krv-95.as-0.2ch-1c.3ch-2a.jaz-10)!", + result: { + word: "jazyk", + correct: 14, + position: 3, + incorrect: 17, + knownIncorrect: 0, + totalWords: 9, + totalLetters: 34, + date: "17.01.2025", + }, + }, + { + date: "17.01.2025", + nick: "Greyman", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=ESKwETL6FmaugTNtQWdr5SZi1ichpmLzQWMtg2Yz4CMtYXaw5CMt8Gah5CMukjLy4yMx4yNx0ya5pXYqhSI", + value: "!(jazyk-17.13.2.9.0.aho-0.piv-0.3ch-1d3.jar-be.kud-58.jaz-10)!", + result: { + word: "jazyk", + correct: 13, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 24, + date: "17.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/xd-ale-smieszne-xd-18-01-2025-flag-cz-diffle-difflecs-44-pismen-v-8-slovech-larg" +] = [ + { + date: "18.01.2025", + nick: "Felonious_Gru", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=hkSM1ETLjFmLmVTMtMWZw5iYz0SbhNnL50CajBnLzMTLjVHZuITL6lGcukzMz0SYyhmLiFWLr92auIjL3EjLx4iNy4COx0CblRXYoNWYwhSI", + value: + "!(pachatel-18.26.1.17.2.kok-ab.hra-339.piz-2.duc-33.pch-9.sam-3b.pec-15f.ac-151)!", + result: { + word: "pachatel", + correct: 26, + position: 1, + incorrect: 17, + knownIncorrect: 2, + totalWords: 8, + totalLetters: 44, + date: "18.01.2025", + }, + }, + { + date: "18.01.2025", + nick: "Deykun", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=hkSM1ETLjFGcuQGZx0CboNmLw0idpZnL1ETMtwWYo5yY00yclRmLzMWMtw2bo5CMukjL14CMy4COx0CblRXYoNWYwhSI", + value: + "!(pachatel-18.20.5.9.0.hol-1c3.des-4c.hal-115.viv-0.chl-1dd.pac-151)!", + result: { + word: "pachatel", + correct: 20, + position: 5, + incorrect: 9, + knownIncorrect: 0, + totalWords: 6, + totalLetters: 34, + date: "18.01.2025", + }, + }, + { + date: "18.01.2025", + nick: "Greyman", + lang: "cs", + url: "https://deykun.github.io/diffle-lang/cs?r=hkSM1ETLjFmLmVTMtMWZw5SMyQTLoN2MuATLkVHaukDNtYXaw5CMucjLx4iNx4COx0CblRXYoNWYwhSI", + value: "!(pachatel-18.16.1.7.0.piv-49.hud-0.3ch-421.pec-15f.ac-151)!", + result: { + word: "pachatel", + correct: 16, + position: 1, + incorrect: 7, + knownIncorrect: 0, + totalWords: 5, + totalLetters: 24, + date: "18.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/z-dedykacja-dla-dzemik-skrytozerca-12-07-2025-it-diffle-diffleit-grywebowe-83-le" +] = [ + { + date: "12.07.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESK2IWLyF2YuMzMx4yYjNjL1ETLoN2MugTLpJXYuATL0lmcuMjZx4SZ24yYlFTLyF2YuMmMtIXY05CNtMWa25yMjFjL5ETLoN2MuQmMtQmch5iN20ichdmLzQjMtIXYw5CZ00ichRmL5ETL0JXYuQTOtI3bt5CMuETMugjL0YjLzkTMtUGZpRXYpJXYjhSI", + value: + "!(cariatide-193.64.8.11.0.mor-94.art-19.dar-4d.par-243.gar-66.ard-2d.3ch-19.1c3.vic-4.tar-2c.car-1ec.6e.1f3.rit-0.ari-8.3ch-15.3cc.133.car-b6)!", + result: { + word: "cariatide", + correct: 64, + position: 8, + incorrect: 11, + knownIncorrect: 0, + totalWords: 19, + totalLetters: 83, + date: "12.07.2025", + }, + }, + { + date: "12.07.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESK2IWLyF2YuMDNz0CajNjL3YjLjFTLoNmMuATLk5yMx0ibpRnL0QzMuYDNx4SMwETLoN2MuYTLpJHduIGNtw2bt5SOtoXaw5CMuUTMuQjL0MjLzkTMtUGZpRXYpJXYjhSI", + value: + "!(cariatide-193.34.4.15.0.piz-9.mol-4b.tri-6.3ch-101.146.344.tin-13.d-0.2ch-1c.67.3ch-343.car-b6)!", + result: { + word: "cariatide", + correct: 34, + position: 4, + incorrect: 15, + knownIncorrect: 0, + totalWords: 12, + totalLetters: 53, + date: "12.07.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zdaje-mi-sie-ze-wpisywalem-okolo-8-proby-pewnie-literowka-tak-to-jest-jak-sie-ni" +] = [ + { + date: "10.01.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=QIpUWMtA3b05CMz0CcvBnLiNTLhV3ZuQWLjFmYuIjMt4WYy5SZ1ETLhJ3ZuETMt4mcuUjNt4mbh5CMm1iclNnLkFTLw5iZz0icuYGNt42b05iY00Cbv1mLw4CNx4SNugDNuATMt8mbnFmcvB3b0hSI", + value: + "!(toporagno-10.48.5.14.0.mol-4b.ton-4f.r-3f.p-1d.ser-f0.ann-65.rn-11.gra-15e.ran-22.bac-d.gua-3b.pop-30.top-1e)!", + result: { + word: "toporagno", + correct: 48, + position: 5, + incorrect: 14, + knownIncorrect: 0, + totalWords: 13, + totalLetters: 67, + date: "10.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zmeczone-a-slowo-proste-20-12-2025-de-diffle-difflede-grywebowe-82-buchstaben-im" +] = [ + { + date: "20.12.2025", + nick: "Felonious_Gru", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=hkyNwU2Mtg2YuMWYi1ibh5iM2EDNuEmNiJTLoN2cugjMtg2Yy4CZjNWMt4WYo5iMjhjMtg2Yz5CNz0CajJjLkVWMtg2Yz4iY10CajJjLmRTLoN2MuYmNx0yc1ZmLzkTMtg2Yz4yM1EDNuATYwMjLzUmZ20CajNnLw4SOx4yNuYTNuQTNz0SZuF2aph2YzhSI", + value: + "!(schikane-354.56.7.19.0.sch-6fe3.30a0.4153.3ch-193.fus-16f.3ch-4f.2ch-5b.3ch-1ed.2ch-34.sch-28c2.han-1ccd.2ch-28.sch-2b6a.4162.an-bac.ch-3e07)!", + result: { + word: "schikane", + correct: 56, + position: 7, + incorrect: 19, + knownIncorrect: 0, + totalWords: 16, + totalLetters: 82, + date: "20.12.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/zmeczylem-to-jakos-08-01-2025-it-diffle-diffleit-grywebowe-53-lettere-in-13-paro" +] = [ + { + date: "08.01.2025", + nick: "Felonious_Gru", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=ESKhZTLvBXaucjMugjNuQWYtg2Yy4yN50CajNjLyMTLoNmMugDMy0CajNjL3UTLulmZuYzMt42bz5yM20ibpNmL3ITLt9GcuIGNtw2bt5CNm1ibhBnLw4iNx4SMuYzMugTLv1Wau9GcphSI", + value: + "!(iponimo-8.36.1.16.0.pan-f4.mol-4b.pom-27.cin-63.son-36.fin-57.3ch-208.2ch-32.3ch-97.2ch-ad.68.27.ipo-6a)!", + result: { + word: "iponimo", + correct: 36, + position: 1, + incorrect: 16, + knownIncorrect: 0, + totalWords: 13, + totalLetters: 53, + date: "08.01.2025", + }, + }, + { + date: "08.01.2025", + nick: "Greyman", + lang: "it", + url: "https://deykun.github.io/diffle-lang/it?r=hkSY20ybwlmLyE2MuEzMy0CajNjLhdTLoNmMuY2Ntg2Yz4CZy0SbvBnLhVWMt82Yz5CN50icv1mLw4iMx4SMuQjMugTLv1Wau9GcphSI", + value: + "!(iponimo-8.24.1.12.0.mor-94.sco-1ea.pom-2d.3ch-7f.2ch-7a.3ch-231.3a2.ipo-6a)!", + result: { + word: "iponimo", + correct: 24, + position: 1, + incorrect: 12, + knownIncorrect: 0, + totalWords: 8, + totalLetters: 37, + date: "08.01.2025", + }, + }, +]; + +results.resultsBySource[ + "https://www.hejto.pl/wpis/znajome-slowo-01-08-2025-de-diffle-difflede-grywebowe-31-buchstaben-im-4-wortern" +] = [ + { + date: "01.08.2025", + nick: "Greyman", + lang: "de", + url: "https://deykun.github.io/diffle-lang/de?r=QIpEWOtInZuAzNtsmbh5iYlZTLhJHZuUDMk1yY1JmLw4SOuIjLwIjLzEjMtIXZuF2apJnZhhSI", + value: "!(afrikaner-213.20.2.9.0.buc-d05.dra-6eb.ank-70.fr-9a)!", + result: { + word: "afrikaner", + correct: 20, + position: 2, + incorrect: 9, + knownIncorrect: 0, + totalWords: 4, + totalLetters: 31, + date: "01.08.2025", + }, + }, +]; diff --git a/src/App.tsx b/src/App.tsx index 6f8503697..9a96c88f8 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -84,7 +84,8 @@ function App() { {pane === PaneType.Game && } {pane === PaneType.Settings && } {pane === PaneType.Statistics && } - {pane === PaneType.YearSummary && } + {pane === PaneType.YearSummary24 && } + {pane === PaneType.YearSummary25 && } {pane === PaneType.AboutLanguage && } diff --git a/src/components/Panes/YearSummary/YearSummary.tsx b/src/components/Panes/YearSummary/YearSummary.tsx index 7d6d56b2b..6758cae97 100644 --- a/src/components/Panes/YearSummary/YearSummary.tsx +++ b/src/components/Panes/YearSummary/YearSummary.tsx @@ -1,4 +1,5 @@ import { useQuery } from '@tanstack/react-query'; +import { useState } from 'react'; import { YearSummaryInfo } from '@common-types'; @@ -13,18 +14,20 @@ import './YearSummary.scss'; const getSummaryData = async ( lang: string | undefined, + year: number, ): Promise => { if (!lang) { return undefined; } - const response = await fetch(`./year-summary/${lang}-info.json`); + const response = await fetch(`./year-summary/${year}/${lang}-info.json`); const rawData = await response.json(); return rawData; }; const Summary = () => { + const [year, setYear] = useState(location.href?.includes('24') ? 2024 : 2025); const gameLanguage = useSelector(state => state.game.language); const { @@ -32,8 +35,8 @@ const Summary = () => { // error, data, } = useQuery({ - queryFn: () => getSummaryData(gameLanguage), - queryKey: [`year-${gameLanguage}`, gameLanguage], + queryFn: () => getSummaryData(gameLanguage, year), + queryKey: [`year-${gameLanguage}`, year, gameLanguage], }); return ( @@ -41,8 +44,8 @@ const Summary = () => { {isLoading && } {data && ( <> - - + + )} diff --git a/src/components/Panes/YearSummary/YearSummaryHeader.tsx b/src/components/Panes/YearSummary/YearSummaryHeader.tsx index 994d1f1b9..c710c30ff 100644 --- a/src/components/Panes/YearSummary/YearSummaryHeader.tsx +++ b/src/components/Panes/YearSummary/YearSummaryHeader.tsx @@ -9,16 +9,13 @@ import useEventT from './hooks/useEventT'; import './YearSummaryHeader.scss'; type Props = { + year: number; summary: YearSummaryInfo; }; -const YearSummaryHeader = ({ summary }: Props) => { - const { - gamesPlayed, medianWords, medianLetters, - } = summary.all; - const { - activePlayers, - } = summary; +const YearSummaryHeader = ({ year, summary }: Props) => { + const { gamesPlayed, medianWords, medianLetters } = summary.all; + const { activePlayers } = summary; const { t } = useTranslation(); const { eventT } = useEventT(); @@ -26,7 +23,11 @@ const YearSummaryHeader = ({ summary }: Props) => { return (
-

Hejto 2024

+

+ Hejto + {' '} + {year} +

{ }} /> - - {activePlayers} - + {activePlayers} {' '} {eventT('main.players')} diff --git a/src/components/Panes/YearSummary/YearSummaryTable.tsx b/src/components/Panes/YearSummary/YearSummaryTable.tsx index 484f260a6..48cef22c5 100644 --- a/src/components/Panes/YearSummary/YearSummaryTable.tsx +++ b/src/components/Panes/YearSummary/YearSummaryTable.tsx @@ -11,10 +11,10 @@ import useEventT from './hooks/useEventT'; import YearSummaryTableItem from './YearSummaryTableItem'; import YearSummaryWordsTable from './YearSummaryWordsTable'; - import './YearSummaryTable.scss'; type Props = { + year: number; summary: YearSummaryInfo; }; @@ -27,19 +27,22 @@ const listFilters = [ 'bestMedianFrom50HardestWordsResults', ]; -const periodFilters = ['year', ...[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12].map(String)]; +const periodFilters = [ + 'year', + ...[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12].map(String), +]; -const YearSummaryTable = ({ summary }: Props) => { +const YearSummaryTable = ({ year, summary }: Props) => { const gameLanguage = useSelector(state => state.game.language); const [selected, setSelected] = useState(''); const [period, setPeriod] = useState('year'); const [sortBy, setSortBy] = useState< - 'bestDailyResults' | - 'worstDailyResults' | - 'bestMedianLetters' | - 'totalPlayed' | - 'bestMedianFrom50BestResults' | - 'bestMedianFrom50HardestWordsResults' + | 'bestDailyResults' + | 'worstDailyResults' + | 'bestMedianLetters' + | 'totalPlayed' + | 'bestMedianFrom50BestResults' + | 'bestMedianFrom50HardestWordsResults' >('bestMedianLetters'); const { eventT } = useEventT(); @@ -52,7 +55,9 @@ const YearSummaryTable = ({ summary }: Props) => { }; } - const knownUsernames = Object.keys(summary.byUser).filter(username => summary.byUser[username].results[period]); + const knownUsernames = Object.keys(summary.byUser).filter( + username => summary.byUser[username].results[period], + ); let minimumNumberOfGamesForRanked = period === 'year' ? 50 : 4; if (gameLanguage !== 'pl') { @@ -60,94 +65,157 @@ const YearSummaryTable = ({ summary }: Props) => { } const usersThatPlayedMoreAtleastXTimes = knownUsernames.filter( - username => summary.byUser[username].results[period].gamesPlayed >= minimumNumberOfGamesForRanked, + username => summary.byUser[username].results[period].gamesPlayed + >= minimumNumberOfGamesForRanked, ); // rankByWords return { - totalPlayed: knownUsernames.sort( - (a, b) => { - if (summary.byUser[b].results[period].gamesPlayed === summary.byUser[a].results[period].gamesPlayed) { - if (summary.byUser[a].results[period].medianLetters === summary.byUser[b].results[period].medianLetters) { - return summary.byUser[a].results[period].medianWords - summary.byUser[b].results[period].medianWords; - } - - const bestB = (summary.byUser[b].dates[period]?.length || 0); - const bestA = (summary.byUser[a].dates[period]?.length || 0); - if (bestA !== bestB) { - return bestB - bestA; - } + totalPlayed: knownUsernames.sort((a, b) => { + if ( + summary.byUser[b].results[period].gamesPlayed + === summary.byUser[a].results[period].gamesPlayed + ) { + if ( + summary.byUser[a].results[period].medianLetters + === summary.byUser[b].results[period].medianLetters + ) { + return ( + summary.byUser[a].results[period].medianWords + - summary.byUser[b].results[period].medianWords + ); + } - return summary.byUser[a].results[period].medianLetters - summary.byUser[b].results[period].medianLetters; + const bestB = summary.byUser[b].dates[period]?.length || 0; + const bestA = summary.byUser[a].dates[period]?.length || 0; + if (bestA !== bestB) { + return bestB - bestA; } - return summary.byUser[b].results[period].gamesPlayed - summary.byUser[a].results[period].gamesPlayed; - }, - ), - bestMedianLetters: [...usersThatPlayedMoreAtleastXTimes].sort( - (a, b) => summary.byUser[a].results[period].medianLetters - summary.byUser[b].results[period].medianLetters, - ).slice(0, 75), - bestMedianFrom50BestResults: [...knownUsernames].filter( - username => Boolean(summary.byUser[username].best50), - ).sort( - (a, b) => { - if (summary.byUser[a].best50.medianLetters === summary.byUser[b].best50.medianLetters) { - if (summary.byUser[a].results[period].medianWords === summary.byUser[b].results[period].medianWords) { - return summary.byUser[a].results.year.gamesPlayed - summary.byUser[b].results.year.gamesPlayed; + return ( + summary.byUser[a].results[period].medianLetters + - summary.byUser[b].results[period].medianLetters + ); + } + + return ( + summary.byUser[b].results[period].gamesPlayed + - summary.byUser[a].results[period].gamesPlayed + ); + }), + bestMedianLetters: [...usersThatPlayedMoreAtleastXTimes] + .sort( + (a, b) => summary.byUser[a].results[period].medianLetters + - summary.byUser[b].results[period].medianLetters, + ) + .slice(0, 75), + bestMedianFrom50BestResults: [...knownUsernames] + .filter(username => Boolean(summary.byUser[username].best50)) + .sort((a, b) => { + if ( + summary.byUser[a].best50.medianLetters + === summary.byUser[b].best50.medianLetters + ) { + if ( + summary.byUser[a].results[period].medianWords + === summary.byUser[b].results[period].medianWords + ) { + return ( + summary.byUser[a].results.year.gamesPlayed + - summary.byUser[b].results.year.gamesPlayed + ); } - return summary.byUser[a].results[period].medianWords - summary.byUser[b].results[period].medianWords; + return ( + summary.byUser[a].results[period].medianWords + - summary.byUser[b].results[period].medianWords + ); } - return summary.byUser[a].best50.medianLetters - summary.byUser[b].best50.medianLetters; - }, - ).slice(0, 75), - bestMedianFrom50HardestWordsResults: [...knownUsernames].filter( - username => Boolean(summary.byUser[username].hardest50), - ).sort( - (a, b) => { - if (summary.byUser[a].hardest50.medianLetters === summary.byUser[b].hardest50.medianLetters) { - if (summary.byUser[a].results[period].medianWords === summary.byUser[b].results[period].medianWords) { - return summary.byUser[a].results.year.gamesPlayed - summary.byUser[b].results.year.gamesPlayed; + return ( + summary.byUser[a].best50.medianLetters + - summary.byUser[b].best50.medianLetters + ); + }) + .slice(0, 75), + bestMedianFrom50HardestWordsResults: [...knownUsernames] + .filter(username => Boolean(summary.byUser[username].hardest50)) + .sort((a, b) => { + if ( + summary.byUser[a].hardest50.medianLetters + === summary.byUser[b].hardest50.medianLetters + ) { + if ( + summary.byUser[a].results[period].medianWords + === summary.byUser[b].results[period].medianWords + ) { + return ( + summary.byUser[a].results.year.gamesPlayed + - summary.byUser[b].results.year.gamesPlayed + ); } - return summary.byUser[a].results[period].medianWords - summary.byUser[b].results[period].medianWords; + return ( + summary.byUser[a].results[period].medianWords + - summary.byUser[b].results[period].medianWords + ); } - return summary.byUser[a].hardest50.medianLetters - summary.byUser[b].hardest50.medianLetters; - }, - ).slice(0, 75), - bestDailyResults: [...knownUsernames].sort( - (a, b) => { - const bestB = (summary.byUser[b].dates[period]?.length || 0); - const bestA = (summary.byUser[a].dates[period]?.length || 0); + return ( + summary.byUser[a].hardest50.medianLetters + - summary.byUser[b].hardest50.medianLetters + ); + }) + .slice(0, 75), + bestDailyResults: [...knownUsernames] + .sort((a, b) => { + const bestB = summary.byUser[b].dates[period]?.length || 0; + const bestA = summary.byUser[a].dates[period]?.length || 0; if (bestA === bestB) { - if (summary.byUser[a].results[period].medianLetters === summary.byUser[b].results[period].medianLetters) { - return summary.byUser[a].results[period].medianWords - summary.byUser[b].results[period].medianWords; + if ( + summary.byUser[a].results[period].medianLetters + === summary.byUser[b].results[period].medianLetters + ) { + return ( + summary.byUser[a].results[period].medianWords + - summary.byUser[b].results[period].medianWords + ); } - return summary.byUser[a].results[period].medianLetters - summary.byUser[b].results[period].medianLetters; + return ( + summary.byUser[a].results[period].medianLetters + - summary.byUser[b].results[period].medianLetters + ); } return bestB - bestA; - }, - ).slice(0, 75), - worstDailyResults: [...knownUsernames].sort( - (a, b) => { - const bestB = (summary.byUser[b].worstDates[period]?.length || 0); - const bestA = (summary.byUser[a].worstDates[period]?.length || 0); + }) + .slice(0, 75), + worstDailyResults: [...knownUsernames] + .sort((a, b) => { + const bestB = summary.byUser[b].worstDates[period]?.length || 0; + const bestA = summary.byUser[a].worstDates[period]?.length || 0; if (bestA === bestB) { - if (summary.byUser[a].results[period].medianLetters === summary.byUser[b].results[period].medianLetters) { - return summary.byUser[b].results[period].medianWords - summary.byUser[a].results[period].medianWords; + if ( + summary.byUser[a].results[period].medianLetters + === summary.byUser[b].results[period].medianLetters + ) { + return ( + summary.byUser[b].results[period].medianWords + - summary.byUser[a].results[period].medianWords + ); } - return summary.byUser[b].results[period].medianLetters - summary.byUser[a].results[period].medianLetters; + return ( + summary.byUser[b].results[period].medianLetters + - summary.byUser[a].results[period].medianLetters + ); } return bestB - bestA; - }, - ).slice(0, 75), + }) + .slice(0, 75), hardestWords: summary.hardestWords, bestWords: summary.bestWords, }; @@ -159,22 +227,30 @@ const YearSummaryTable = ({ summary }: Props) => { return ( <> - +