@scrabble-solver/scrabble-solver 2.9.3 → 2.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.next/BUILD_ID +1 -1
- package/.next/build-manifest.json +11 -11
- package/.next/cache/.tsbuildinfo +1 -1
- package/.next/cache/eslint/.cache_8dgz12 +1 -1
- package/.next/cache/next-server.js.nft.json +1 -1
- package/.next/cache/webpack/client-production/0.pack +0 -0
- package/.next/cache/webpack/client-production/index.pack +0 -0
- package/.next/cache/webpack/edge-server-production/0.pack +0 -0
- package/.next/cache/webpack/edge-server-production/index.pack +0 -0
- package/.next/cache/webpack/server-production/0.pack +0 -0
- package/.next/cache/webpack/server-production/index.pack +0 -0
- package/.next/next-server.js.nft.json +1 -1
- package/.next/prerender-manifest.json +1 -1
- package/.next/routes-manifest.json +1 -1
- package/.next/server/chunks/{429.js → 131.js} +2 -3652
- package/.next/server/chunks/413.js +399 -199
- package/.next/server/chunks/44.js +71 -45
- package/.next/server/chunks/515.js +1114 -542
- package/.next/server/chunks/911.js +96 -2
- package/.next/server/chunks/939.js +1 -0
- package/.next/server/middleware-build-manifest.js +1 -1
- package/.next/server/pages/404.html +2 -2
- package/.next/server/pages/404.js.nft.json +1 -1
- package/.next/server/pages/500.html +2 -2
- package/.next/server/pages/_app.js.nft.json +1 -1
- package/.next/server/pages/api/dictionary/[locale]/[word].js +49 -11
- package/.next/server/pages/api/dictionary/[locale]/[word].js.nft.json +1 -1
- package/.next/server/pages/api/dictionary/[locale].js +1 -8
- package/.next/server/pages/api/dictionary/[locale].js.nft.json +1 -1
- package/.next/server/pages/api/solve.js +67 -57
- package/.next/server/pages/api/solve.js.nft.json +1 -1
- package/.next/server/pages/api/verify.js +2 -9
- package/.next/server/pages/api/verify.js.nft.json +1 -1
- package/.next/server/pages/index.html +9 -1
- package/.next/server/pages/index.js +43 -36
- package/.next/server/pages/index.js.nft.json +1 -1
- package/.next/server/pages/index.json +1 -1
- package/.next/server/pages-manifest.json +1 -1
- package/.next/static/chunks/368-8b386c3106556f62.js +1 -0
- package/.next/static/chunks/pages/{404-8650986dc56dab75.js → 404-932294135c3206dd.js} +1 -1
- package/.next/static/chunks/pages/_app-8f0df20f771045ed.js +1 -0
- package/.next/static/chunks/pages/index-8af7a9d7a2cd98a7.js +1 -0
- package/.next/static/css/6b1833fd19d3a74a.css +1 -0
- package/.next/static/css/a6154e4ca046ca13.css +1 -0
- package/.next/static/css/bad53af6f8616677.css +1 -0
- package/.next/static/hf94cues-LcXZRCpAzQ6w/_buildManifest.js +1 -0
- package/.next/static/{s5pE_3C3ebZuSfaqE7xat → hf94cues-LcXZRCpAzQ6w}/_ssgManifest.js +0 -0
- package/.next/trace +52 -52
- package/package.json +9 -9
- package/src/components/Board/components/Cell/Cell.module.scss +45 -9
- package/src/components/Board/hooks/useGrid.ts +6 -4
- package/src/components/Dictionary/Dictionary.module.scss +8 -1
- package/src/components/EmptyState/EmptyState.tsx +6 -2
- package/src/components/Loading/Loading.tsx +13 -2
- package/src/components/NavButtons/NavButtons.module.scss +8 -7
- package/src/components/NavButtons/NavButtons.tsx +35 -28
- package/src/components/PlainTiles/PlainTiles.tsx +7 -1
- package/src/components/PlainTiles/Tile.tsx +4 -3
- package/src/components/Rack/Rack.tsx +18 -4
- package/src/components/Radio/Radio.module.scss +1 -1
- package/src/components/RemainingTiles/Character.tsx +7 -2
- package/src/components/RemainingTiles/RemainingTiles.tsx +28 -20
- package/src/components/Results/Cell.tsx +5 -3
- package/src/components/Results/Result.tsx +8 -3
- package/src/components/Results/Results.module.scss +31 -9
- package/src/components/Results/Results.tsx +8 -4
- package/src/components/Results/getColumns.ts +58 -0
- package/src/components/Settings/components/AutoGroupTilesSetting/AutoGroupTilesSetting.tsx +2 -2
- package/src/components/Settings/components/ConfigSetting/ConfigSetting.module.scss +1 -0
- package/src/components/Settings/components/LocaleSetting/LocaleSetting.module.scss +12 -1
- package/src/components/Settings/components/LocaleSetting/LocaleSetting.tsx +1 -1
- package/src/components/Settings/components/LocaleSetting/options.ts +16 -2
- package/src/components/Sidebar/Sidebar.module.scss +42 -8
- package/src/components/SvgFontCss/SvgFontCss.tsx +8 -7
- package/src/components/SvgFontCss/createCss.ts +11 -0
- package/src/components/SvgFontCss/createStyle.ts +9 -0
- package/src/components/SvgFontCss/createSvg.ts +10 -0
- package/src/components/SvgFontFix/SvgFontFix.module.scss +5 -0
- package/src/components/SvgFontFix/SvgFontFix.tsx +21 -0
- package/src/components/SvgFontFix/index.ts +1 -0
- package/src/components/Tile/Tile.module.scss +10 -2
- package/src/components/Tile/Tile.tsx +4 -0
- package/src/components/Tile/TilePure.tsx +3 -1
- package/src/components/Words/Words.tsx +4 -3
- package/src/components/index.ts +1 -0
- package/src/hooks/index.ts +2 -0
- package/src/hooks/useDirection.ts +22 -0
- package/src/hooks/useLanguage.ts +22 -0
- package/src/i18n/constants.ts +53 -0
- package/src/i18n/fa.json +56 -0
- package/src/i18n/fr.json +1 -1
- package/src/i18n/i18n.ts +22 -0
- package/src/i18n/index.ts +2 -20
- package/src/icons/FlagFa.svg +95 -0
- package/src/icons/index.ts +1 -0
- package/src/lib/createComparator.ts +22 -0
- package/src/lib/createKeyComparator.ts +4 -2
- package/src/lib/createStringComparator.ts +5 -0
- package/src/lib/detectLocale.ts +4 -0
- package/src/lib/getRemainingTiles.ts +4 -2
- package/src/lib/getRemainingTilesGroups.ts +54 -31
- package/src/lib/index.ts +2 -2
- package/src/lib/sortResults.ts +11 -9
- package/src/lib/unorderedArraysEqual.ts +3 -2
- package/src/pages/api/verify.ts +1 -1
- package/src/pages/index.module.scss +7 -18
- package/src/pages/index.tsx +10 -2
- package/src/sdk/findWordDefinitions.ts +1 -1
- package/src/service-worker/routeVerifyRequests.ts +1 -1
- package/src/state/sagas.ts +19 -5
- package/src/state/selectors.ts +15 -7
- package/src/styles/global.scss +6 -1
- package/.next/static/chunks/880-18e3aea6915aebe7.js +0 -1
- package/.next/static/chunks/pages/_app-183f598b1d4d480b.js +0 -1
- package/.next/static/chunks/pages/index-f1cef1e67e14d022.js +0 -1
- package/.next/static/css/751e8a14776d05d8.css +0 -1
- package/.next/static/css/ad2a08918868cad8.css +0 -1
- package/.next/static/css/e8de67ad5ea35427.css +0 -1
- package/.next/static/s5pE_3C3ebZuSfaqE7xat/_buildManifest.js +0 -1
- package/src/components/Results/constants.ts +0 -42
- package/src/lib/comparator.ts +0 -16
- package/src/lib/stringComparator.ts +0 -5
|
@@ -82,13 +82,6 @@ module.exports = require("path");
|
|
|
82
82
|
|
|
83
83
|
/***/ }),
|
|
84
84
|
|
|
85
|
-
/***/ 77282:
|
|
86
|
-
/***/ ((module) => {
|
|
87
|
-
|
|
88
|
-
module.exports = require("process");
|
|
89
|
-
|
|
90
|
-
/***/ }),
|
|
91
|
-
|
|
92
85
|
/***/ 12781:
|
|
93
86
|
/***/ ((module) => {
|
|
94
87
|
|
|
@@ -208,6 +201,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
208
201
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
209
202
|
const types_1 = __webpack_require__(46452);
|
|
210
203
|
const crawlEnglish_1 = __importDefault(__webpack_require__(90357));
|
|
204
|
+
const crawlFarsi_1 = __importDefault(__webpack_require__(82397));
|
|
211
205
|
const crawlFrench_1 = __importDefault(__webpack_require__(93174));
|
|
212
206
|
const crawlGerman_1 = __importDefault(__webpack_require__(69047));
|
|
213
207
|
const crawlPolish_1 = __importDefault(__webpack_require__(18698));
|
|
@@ -217,6 +211,7 @@ const crawlPerLocale = {
|
|
|
217
211
|
[types_1.Locale.EN_GB]: crawlEnglish_1.default,
|
|
218
212
|
[types_1.Locale.EN_US]: crawlEnglish_1.default,
|
|
219
213
|
[types_1.Locale.ES_ES]: crawlSpanish_1.default,
|
|
214
|
+
[types_1.Locale.FA_IR]: crawlFarsi_1.default,
|
|
220
215
|
[types_1.Locale.FR_FR]: crawlFrench_1.default,
|
|
221
216
|
[types_1.Locale.PL_PL]: crawlPolish_1.default,
|
|
222
217
|
};
|
|
@@ -244,6 +239,24 @@ const crawlEnglish = (word) => {
|
|
|
244
239
|
exports["default"] = crawlEnglish;
|
|
245
240
|
|
|
246
241
|
|
|
242
|
+
/***/ }),
|
|
243
|
+
|
|
244
|
+
/***/ 82397:
|
|
245
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
249
|
+
const lib_1 = __webpack_require__(3805);
|
|
250
|
+
const crawlFarsi = (word) => {
|
|
251
|
+
return (0, lib_1.request)({
|
|
252
|
+
protocol: 'https',
|
|
253
|
+
hostname: 'www.vajehyab.com',
|
|
254
|
+
path: `/moein/${encodeURIComponent(word)}`,
|
|
255
|
+
});
|
|
256
|
+
};
|
|
257
|
+
exports["default"] = crawlFarsi;
|
|
258
|
+
|
|
259
|
+
|
|
247
260
|
/***/ }),
|
|
248
261
|
|
|
249
262
|
/***/ 93174:
|
|
@@ -433,7 +446,8 @@ const normalizeQuotes = (definition) => definition.replace(/\."/g, '".');
|
|
|
433
446
|
const normalizeMarkers = (definition) => definition.replace(/^\(\d+\.\d+\)\s+/g, '');
|
|
434
447
|
const normalizeTrailingSymbols = (definition) => definition.trim().replace(/:$/, '');
|
|
435
448
|
const normalizeLeadingSymbols = (definition) => definition.trim().replace(/^:/, '');
|
|
436
|
-
|
|
449
|
+
// https://stackoverflow.com/a/40732368
|
|
450
|
+
const normalizeNonWords = (definition) => (/[\w\u0621-\u064A]+/.test(definition) ? definition : '');
|
|
437
451
|
const normalizeCommas = (definition) => {
|
|
438
452
|
return definition
|
|
439
453
|
.replace(/\s+,\s+/g, ', ')
|
|
@@ -514,11 +528,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
514
528
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
515
529
|
};
|
|
516
530
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
517
|
-
exports.parseSpanish = exports.parsePolish = exports.parseGerman = exports.parseFrench = exports.parseEnglish = exports.parse = void 0;
|
|
531
|
+
exports.parseSpanish = exports.parsePolish = exports.parseGerman = exports.parseFrench = exports.parseFarsi = exports.parseEnglish = exports.parse = void 0;
|
|
518
532
|
var parse_1 = __webpack_require__(16837);
|
|
519
533
|
Object.defineProperty(exports, "parse", ({ enumerable: true, get: function () { return __importDefault(parse_1).default; } }));
|
|
520
534
|
var parseEnglish_1 = __webpack_require__(26519);
|
|
521
535
|
Object.defineProperty(exports, "parseEnglish", ({ enumerable: true, get: function () { return __importDefault(parseEnglish_1).default; } }));
|
|
536
|
+
var parseFarsi_1 = __webpack_require__(3475);
|
|
537
|
+
Object.defineProperty(exports, "parseFarsi", ({ enumerable: true, get: function () { return __importDefault(parseFarsi_1).default; } }));
|
|
522
538
|
var parseFrench_1 = __webpack_require__(51120);
|
|
523
539
|
Object.defineProperty(exports, "parseFrench", ({ enumerable: true, get: function () { return __importDefault(parseFrench_1).default; } }));
|
|
524
540
|
var parseGerman_1 = __webpack_require__(29075);
|
|
@@ -542,6 +558,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
542
558
|
const types_1 = __webpack_require__(46452);
|
|
543
559
|
const lib_1 = __webpack_require__(3805);
|
|
544
560
|
const parseEnglish_1 = __importDefault(__webpack_require__(26519));
|
|
561
|
+
const parseFarsi_1 = __importDefault(__webpack_require__(3475));
|
|
545
562
|
const parseFrench_1 = __importDefault(__webpack_require__(51120));
|
|
546
563
|
const parseGerman_1 = __importDefault(__webpack_require__(29075));
|
|
547
564
|
const parsePolish_1 = __importDefault(__webpack_require__(92198));
|
|
@@ -551,6 +568,7 @@ const parsePerLocale = {
|
|
|
551
568
|
[types_1.Locale.EN_GB]: parseEnglish_1.default,
|
|
552
569
|
[types_1.Locale.EN_US]: parseEnglish_1.default,
|
|
553
570
|
[types_1.Locale.ES_ES]: parseSpanish_1.default,
|
|
571
|
+
[types_1.Locale.FA_IR]: parseFarsi_1.default,
|
|
554
572
|
[types_1.Locale.FR_FR]: parseFrench_1.default,
|
|
555
573
|
[types_1.Locale.PL_PL]: parsePolish_1.default,
|
|
556
574
|
};
|
|
@@ -579,7 +597,7 @@ const parseEnglish = (html) => {
|
|
|
579
597
|
const $ = (0, cheerio_1.load)(html);
|
|
580
598
|
$('strong.mw_t_bc').replaceWith(', ');
|
|
581
599
|
$('.text-lowercase').remove();
|
|
582
|
-
$('
|
|
600
|
+
$('.sub-content-thread').remove();
|
|
583
601
|
const $definitions = $('[id^=dictionary-entry]').find('.dtText, .cxl-ref');
|
|
584
602
|
return {
|
|
585
603
|
definitions: Array.from($definitions).map((definition) => $(definition).text().replace(/\n/g, '')),
|
|
@@ -589,6 +607,26 @@ const parseEnglish = (html) => {
|
|
|
589
607
|
exports["default"] = parseEnglish;
|
|
590
608
|
|
|
591
609
|
|
|
610
|
+
/***/ }),
|
|
611
|
+
|
|
612
|
+
/***/ 3475:
|
|
613
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
617
|
+
const cheerio_1 = __webpack_require__(85131);
|
|
618
|
+
const DOES_NOT_EXIST_MESSAGE = '404 Page Not Found';
|
|
619
|
+
const parseFarsi = (html) => {
|
|
620
|
+
const $ = (0, cheerio_1.load)(html);
|
|
621
|
+
const $definitions = $('[itemprop=articleBody]');
|
|
622
|
+
return {
|
|
623
|
+
definitions: Array.from($definitions).map((definition) => $(definition).text()),
|
|
624
|
+
exists: $('#container h1').text() !== DOES_NOT_EXIST_MESSAGE,
|
|
625
|
+
};
|
|
626
|
+
};
|
|
627
|
+
exports["default"] = parseFarsi;
|
|
628
|
+
|
|
629
|
+
|
|
592
630
|
/***/ }),
|
|
593
631
|
|
|
594
632
|
/***/ 51120:
|
|
@@ -741,7 +779,7 @@ exports["default"] = parseSpanish;
|
|
|
741
779
|
var __webpack_require__ = require("../../../../webpack-api-runtime.js");
|
|
742
780
|
__webpack_require__.C(exports);
|
|
743
781
|
var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
|
|
744
|
-
var __webpack_exports__ = __webpack_require__.X(0, [50,
|
|
782
|
+
var __webpack_exports__ = __webpack_require__.X(0, [50,131,865,939,44,911], () => (__webpack_exec__(15548)));
|
|
745
783
|
module.exports = __webpack_exports__;
|
|
746
784
|
|
|
747
785
|
})();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":1,"files":["../../../../webpack-api-runtime.js","../../../../chunks/50.js","../../../../chunks/
|
|
1
|
+
{"version":1,"files":["../../../../webpack-api-runtime.js","../../../../chunks/50.js","../../../../chunks/131.js","../../../../chunks/865.js","../../../../chunks/939.js","../../../../chunks/44.js","../../../../chunks/911.js","../../../../../package.json"]}
|
|
@@ -82,13 +82,6 @@ module.exports = require("path");
|
|
|
82
82
|
|
|
83
83
|
/***/ }),
|
|
84
84
|
|
|
85
|
-
/***/ 77282:
|
|
86
|
-
/***/ ((module) => {
|
|
87
|
-
|
|
88
|
-
module.exports = require("process");
|
|
89
|
-
|
|
90
|
-
/***/ }),
|
|
91
|
-
|
|
92
85
|
/***/ 12781:
|
|
93
86
|
/***/ ((module) => {
|
|
94
87
|
|
|
@@ -194,7 +187,7 @@ const config = {
|
|
|
194
187
|
var __webpack_require__ = require("../../../webpack-api-runtime.js");
|
|
195
188
|
__webpack_require__.C(exports);
|
|
196
189
|
var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
|
|
197
|
-
var __webpack_exports__ = __webpack_require__.X(0, [50,
|
|
190
|
+
var __webpack_exports__ = __webpack_require__.X(0, [50,131,939,44], () => (__webpack_exec__(31985)));
|
|
198
191
|
module.exports = __webpack_exports__;
|
|
199
192
|
|
|
200
193
|
})();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":1,"files":["../../../webpack-api-runtime.js","../../../chunks/50.js","../../../chunks/
|
|
1
|
+
{"version":1,"files":["../../../webpack-api-runtime.js","../../../chunks/50.js","../../../chunks/131.js","../../../chunks/939.js","../../../chunks/44.js","../../../../package.json"]}
|
|
@@ -82,13 +82,6 @@ module.exports = require("path");
|
|
|
82
82
|
|
|
83
83
|
/***/ }),
|
|
84
84
|
|
|
85
|
-
/***/ 77282:
|
|
86
|
-
/***/ ((module) => {
|
|
87
|
-
|
|
88
|
-
module.exports = require("process");
|
|
89
|
-
|
|
90
|
-
/***/ }),
|
|
91
|
-
|
|
92
85
|
/***/ 12781:
|
|
93
86
|
/***/ ((module) => {
|
|
94
87
|
|
|
@@ -124,7 +117,7 @@ module.exports = require("zlib");
|
|
|
124
117
|
|
|
125
118
|
/***/ }),
|
|
126
119
|
|
|
127
|
-
/***/
|
|
120
|
+
/***/ 77859:
|
|
128
121
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
129
122
|
|
|
130
123
|
// ESM COMPAT FLAG
|
|
@@ -164,6 +157,9 @@ const detectLocale = ()=>{
|
|
|
164
157
|
if (window.navigator.languages.includes("en-GB")) {
|
|
165
158
|
return Locale.EN_GB;
|
|
166
159
|
}
|
|
160
|
+
if (window.navigator.languages.includes("fa") || window.navigator.languages.includes("fa-IR")) {
|
|
161
|
+
return Locale.FA_IR;
|
|
162
|
+
}
|
|
167
163
|
if (window.navigator.languages.includes("fr-FR")) {
|
|
168
164
|
return Locale.FR_FR;
|
|
169
165
|
}
|
|
@@ -248,7 +244,7 @@ const getCellSize = (config, width, height)=>{
|
|
|
248
244
|
;// CONCATENATED MODULE: ./src/lib/getRemainingTiles.ts
|
|
249
245
|
|
|
250
246
|
|
|
251
|
-
const getRemainingTiles = (config, board, characters)=>{
|
|
247
|
+
const getRemainingTiles = (config, board, characters, locale)=>{
|
|
252
248
|
const nonEmptyCells = board.rows.flat().filter((cell)=>!cell.isEmpty);
|
|
253
249
|
const letterCells = nonEmptyCells.filter((cell)=>!cell.tile.isBlank);
|
|
254
250
|
const remainingTiles = Object.fromEntries(config.tiles.map((tile)=>[
|
|
@@ -280,8 +276,9 @@ const getRemainingTiles = (config, board, characters)=>{
|
|
|
280
276
|
for (const letter1 of letters){
|
|
281
277
|
++remainingTiles[letter1].usedCount;
|
|
282
278
|
}
|
|
279
|
+
const comparator = createKeyComparator("character", locale);
|
|
283
280
|
return [
|
|
284
|
-
...Object.values(remainingTiles).sort(
|
|
281
|
+
...Object.values(remainingTiles).sort(comparator),
|
|
285
282
|
blank
|
|
286
283
|
];
|
|
287
284
|
};
|
|
@@ -292,38 +289,49 @@ const getRemainingTiles = (config, board, characters)=>{
|
|
|
292
289
|
|
|
293
290
|
|
|
294
291
|
const getRemainingTilesGroups = (remainingTiles)=>{
|
|
295
|
-
const consonants = remainingTiles.filter(
|
|
296
|
-
const vowels = remainingTiles.filter(
|
|
297
|
-
const
|
|
298
|
-
const
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
292
|
+
const consonants = remainingTiles.filter(isConsonant);
|
|
293
|
+
const vowels = remainingTiles.filter(isVowel);
|
|
294
|
+
const other = remainingTiles.filter(isOther);
|
|
295
|
+
const groups = [];
|
|
296
|
+
groups.push({
|
|
297
|
+
remainingCount: getRemainingTilesCount(vowels),
|
|
298
|
+
tiles: vowels,
|
|
299
|
+
translationKey: "common.vowels",
|
|
300
|
+
totalCount: getTotalRemainingTilesCount(vowels)
|
|
301
|
+
});
|
|
302
|
+
groups.push({
|
|
303
|
+
remainingCount: getRemainingTilesCount(consonants),
|
|
304
|
+
tiles: consonants,
|
|
305
|
+
translationKey: "common.consonants",
|
|
306
|
+
totalCount: getTotalRemainingTilesCount(consonants)
|
|
307
|
+
});
|
|
308
|
+
groups.push({
|
|
309
|
+
remainingCount: getRemainingTilesCount(other),
|
|
310
|
+
tiles: other,
|
|
311
|
+
translationKey: "common.tiles",
|
|
312
|
+
totalCount: getTotalRemainingTilesCount(other)
|
|
313
|
+
});
|
|
314
|
+
const twoCharacterTiles = remainingTiles.filter(isTwoCharacter);
|
|
315
|
+
const blanks = remainingTiles.filter(isBlank);
|
|
316
|
+
groups.push({
|
|
317
|
+
remainingCount: getRemainingTilesCount(twoCharacterTiles),
|
|
318
|
+
tiles: twoCharacterTiles,
|
|
319
|
+
translationKey: "common.two-letter-tiles",
|
|
320
|
+
totalCount: getTotalRemainingTilesCount(twoCharacterTiles)
|
|
321
|
+
});
|
|
322
|
+
groups.push({
|
|
323
|
+
remainingCount: getRemainingTilesCount(blanks),
|
|
324
|
+
tiles: blanks,
|
|
325
|
+
translationKey: "common.blanks",
|
|
326
|
+
totalCount: getTotalRemainingTilesCount(blanks)
|
|
327
|
+
});
|
|
325
328
|
return groups.filter(({ totalCount })=>totalCount > 0);
|
|
326
329
|
};
|
|
330
|
+
const isConsonant = (tile)=>CONSONANTS.includes(tile.character);
|
|
331
|
+
const isVowel = (tile)=>VOWELS.includes(tile.character);
|
|
332
|
+
const isTwoCharacter = (tile)=>tile.character.length === 2;
|
|
333
|
+
const isBlank = (tile)=>tile.character === BLANK;
|
|
334
|
+
const isOther = (tile)=>!isConsonant(tile) && !isVowel(tile) && !isBlank(tile) && !isTwoCharacter(tile);
|
|
327
335
|
/* harmony default export */ const lib_getRemainingTilesGroups = ((/* unused pure expression or super */ null && (getRemainingTilesGroups)));
|
|
328
336
|
|
|
329
337
|
;// CONCATENATED MODULE: ./src/lib/getTileSizes.ts
|
|
@@ -358,23 +366,24 @@ var ResultColumn;
|
|
|
358
366
|
ResultColumn["WordsCount"] = "words-count";
|
|
359
367
|
})(ResultColumn || (ResultColumn = {}));
|
|
360
368
|
|
|
369
|
+
;// CONCATENATED MODULE: ./src/lib/createStringComparator.ts
|
|
370
|
+
const createStringComparator = (locale)=>(a, b)=>a.localeCompare(b, locale);
|
|
371
|
+
/* harmony default export */ const lib_createStringComparator = (createStringComparator);
|
|
372
|
+
|
|
361
373
|
;// CONCATENATED MODULE: ./src/lib/numberComparator.ts
|
|
362
374
|
const numberComparator = (a, b)=>a - b;
|
|
363
375
|
/* harmony default export */ const lib_numberComparator = (numberComparator);
|
|
364
376
|
|
|
365
|
-
;// CONCATENATED MODULE: ./src/lib/stringComparator.ts
|
|
366
|
-
const stringComparator = (a, b)=>a.localeCompare(b);
|
|
367
|
-
/* harmony default export */ const lib_stringComparator = (stringComparator);
|
|
368
|
-
|
|
369
377
|
;// CONCATENATED MODULE: ./src/lib/createKeyComparator.ts
|
|
370
378
|
|
|
371
379
|
|
|
372
|
-
const createKeyComparator_createKeyComparator = (key)=>{
|
|
380
|
+
const createKeyComparator_createKeyComparator = (key, locale)=>{
|
|
381
|
+
const stringComparator = lib_createStringComparator(locale);
|
|
373
382
|
return (a, b)=>{
|
|
374
383
|
const aValue = a[key];
|
|
375
384
|
const bValue = b[key];
|
|
376
385
|
if (typeof aValue === "string" && typeof bValue === "string") {
|
|
377
|
-
return
|
|
386
|
+
return stringComparator(aValue, bValue);
|
|
378
387
|
}
|
|
379
388
|
if (typeof aValue === "number" && typeof bValue === "number") {
|
|
380
389
|
return lib_numberComparator(aValue, bValue);
|
|
@@ -389,19 +398,20 @@ const createKeyComparator_createKeyComparator = (key)=>{
|
|
|
389
398
|
|
|
390
399
|
|
|
391
400
|
const comparators = {
|
|
392
|
-
[ResultColumn.BlanksCount]: lib_createKeyComparator("blanksCount"),
|
|
393
|
-
[ResultColumn.ConsonantsCount]: lib_createKeyComparator("consonantsCount"),
|
|
394
|
-
[ResultColumn.Points]: lib_createKeyComparator("points"),
|
|
395
|
-
[ResultColumn.TilesCount]: lib_createKeyComparator("tilesCount"),
|
|
396
|
-
[ResultColumn.VowelsCount]: lib_createKeyComparator("vowelsCount"),
|
|
397
|
-
[ResultColumn.Word]: lib_createKeyComparator("word"),
|
|
398
|
-
[ResultColumn.WordsCount]: lib_createKeyComparator("wordsCount")
|
|
399
|
-
};
|
|
400
|
-
const sortResults = (results, column, sortDirection)=>{
|
|
401
|
+
[ResultColumn.BlanksCount]: (locale)=>lib_createKeyComparator("blanksCount", locale),
|
|
402
|
+
[ResultColumn.ConsonantsCount]: (locale)=>lib_createKeyComparator("consonantsCount", locale),
|
|
403
|
+
[ResultColumn.Points]: (locale)=>lib_createKeyComparator("points", locale),
|
|
404
|
+
[ResultColumn.TilesCount]: (locale)=>lib_createKeyComparator("tilesCount", locale),
|
|
405
|
+
[ResultColumn.VowelsCount]: (locale)=>lib_createKeyComparator("vowelsCount", locale),
|
|
406
|
+
[ResultColumn.Word]: (locale)=>lib_createKeyComparator("word", locale),
|
|
407
|
+
[ResultColumn.WordsCount]: (locale)=>lib_createKeyComparator("wordsCount", locale)
|
|
408
|
+
};
|
|
409
|
+
const sortResults = (results, column, sortDirection, locale)=>{
|
|
401
410
|
if (typeof results === "undefined") {
|
|
402
411
|
return results;
|
|
403
412
|
}
|
|
404
|
-
const
|
|
413
|
+
const createComparator = comparators[column];
|
|
414
|
+
const comparator = createComparator(locale);
|
|
405
415
|
const finalComparator = sortDirection === SortDirection.Descending ? reverseComparator(comparator) : comparator;
|
|
406
416
|
return [
|
|
407
417
|
...results
|
|
@@ -937,7 +947,7 @@ exports["default"] = solve;
|
|
|
937
947
|
var __webpack_require__ = require("../../webpack-api-runtime.js");
|
|
938
948
|
__webpack_require__.C(exports);
|
|
939
949
|
var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
|
|
940
|
-
var __webpack_exports__ = __webpack_require__.X(0, [50,
|
|
950
|
+
var __webpack_exports__ = __webpack_require__.X(0, [50,131,939,44,911], () => (__webpack_exec__(77859)));
|
|
941
951
|
module.exports = __webpack_exports__;
|
|
942
952
|
|
|
943
953
|
})();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":1,"files":["../../webpack-api-runtime.js","../../chunks/50.js","../../chunks/
|
|
1
|
+
{"version":1,"files":["../../webpack-api-runtime.js","../../chunks/50.js","../../chunks/131.js","../../chunks/939.js","../../chunks/44.js","../../chunks/911.js","../../../package.json"]}
|
|
@@ -82,13 +82,6 @@ module.exports = require("path");
|
|
|
82
82
|
|
|
83
83
|
/***/ }),
|
|
84
84
|
|
|
85
|
-
/***/ 77282:
|
|
86
|
-
/***/ ((module) => {
|
|
87
|
-
|
|
88
|
-
module.exports = require("process");
|
|
89
|
-
|
|
90
|
-
/***/ }),
|
|
91
|
-
|
|
92
85
|
/***/ 12781:
|
|
93
86
|
/***/ ((module) => {
|
|
94
87
|
|
|
@@ -160,7 +153,7 @@ const verify = async (request, response)=>{
|
|
|
160
153
|
}
|
|
161
154
|
});
|
|
162
155
|
const trie = await _scrabble_solver_dictionaries__WEBPACK_IMPORTED_MODULE_1__.dictionaries.get(locale);
|
|
163
|
-
const words = board.getWords().sort((a, b)=>a.localeCompare(b));
|
|
156
|
+
const words = board.getWords().sort((a, b)=>a.localeCompare(b, locale));
|
|
164
157
|
const invalidWords = words.filter((word)=>!trie.has(word));
|
|
165
158
|
const validWords = words.filter((word)=>trie.has(word));
|
|
166
159
|
response.status(200).send({
|
|
@@ -211,7 +204,7 @@ const parseRequest = (request)=>{
|
|
|
211
204
|
var __webpack_require__ = require("../../webpack-api-runtime.js");
|
|
212
205
|
__webpack_require__.C(exports);
|
|
213
206
|
var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
|
|
214
|
-
var __webpack_exports__ = __webpack_require__.X(0, [50,
|
|
207
|
+
var __webpack_exports__ = __webpack_require__.X(0, [50,131,939,44,911], () => (__webpack_exec__(21623)));
|
|
215
208
|
module.exports = __webpack_exports__;
|
|
216
209
|
|
|
217
210
|
})();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":1,"files":["../../webpack-api-runtime.js","../../chunks/50.js","../../chunks/
|
|
1
|
+
{"version":1,"files":["../../webpack-api-runtime.js","../../chunks/50.js","../../chunks/131.js","../../chunks/939.js","../../chunks/44.js","../../chunks/911.js","../../../package.json"]}
|
|
@@ -1 +1,9 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en"><head><title>Scrabble Solver 2 by Kamil Mielnik</title><meta charSet="utf-8"/><meta name="author" content="Kamil Mielnik"/><meta name="description" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish & Spanish."/><meta name="keywords" content="Scrabble,Solver,Open-source,Finder,Cheating,Literaki,Word,English,Français,Deutsch,Polski,Español,SOWPODS,TWL06,SJP,FISE-2017,FISE-2,CNRTL,Kamil Mielnik"/><meta name="robots" content="index, follow, notranslate, noimageindex"/><meta name="viewport" content="width=device-width, initial-scale=1.0"/><meta property="og:title" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish & Spanish."/><meta property="og:type" content="website"/><meta property="og:url" content="https://scrabble-solver.org"/><meta property="og:image" content="https://scrabble-solver.org/og.png"/><meta property="og:image:type" content="image/png"/><meta property="og:image:width" content="1200"/><meta property="og:image:height" content="630"/><meta property="og:image:alt" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish & Spanish."/><meta name="next-head-count" content="15"/><link crossorigin="anonymous" href="https://fonts.gstatic.com" rel="preconnect"/><link rel="apple-touch-icon-precomposed" sizes="57x57" href="icons/apple-touch-icon-57x57.png"/><link rel="apple-touch-icon-precomposed" sizes="114x114" href="icons/apple-touch-icon-114x114.png"/><link rel="apple-touch-icon-precomposed" sizes="72x72" href="icons/apple-touch-icon-72x72.png"/><link rel="apple-touch-icon-precomposed" sizes="144x144" href="icons/apple-touch-icon-144x144.png"/><link rel="apple-touch-icon-precomposed" sizes="60x60" href="icons/apple-touch-icon-60x60.png"/><link rel="apple-touch-icon-precomposed" sizes="120x120" href="icons/apple-touch-icon-120x120.png"/><link rel="apple-touch-icon-precomposed" sizes="76x76" href="icons/apple-touch-icon-76x76.png"/><link rel="apple-touch-icon-precomposed" sizes="152x152" href="icons/apple-touch-icon-152x152.png"/><link rel="icon" type="image/png" href="icons/favicon-196x196.png" sizes="196x196"/><link rel="icon" type="image/png" href="icons/favicon-96x96.png" sizes="96x96"/><link rel="icon" type="image/png" href="icons/favicon-32x32.png" sizes="32x32"/><link rel="icon" type="image/png" href="icons/favicon-16x16.png" sizes="16x16"/><link rel="icon" type="image/png" href="icons/favicon-128.png" sizes="128x128"/><meta name="application-name" content="Scrabble Solver"/><meta name="msapplication-TileColor" content="#EFE3AE"/><meta name="msapplication-TileImage" content="icons/mstile-144x144.png"/><meta name="msapplication-square70x70logo" content="icons/mstile-70x70.png"/><meta name="msapplication-square150x150logo" content="icons/mstile-150x150.png"/><meta name="msapplication-wide310x150logo" content="icons/mstile-310x150.png"/><meta name="msapplication-square310x310logo" content="icons/mstile-310x310.png"/><link rel="preload" href="/_next/static/css/ad2a08918868cad8.css" as="style"/><link rel="stylesheet" href="/_next/static/css/ad2a08918868cad8.css" data-n-g=""/><link rel="preload" href="/_next/static/css/e8de67ad5ea35427.css" as="style"/><link rel="stylesheet" href="/_next/static/css/e8de67ad5ea35427.css" data-n-p=""/><link rel="preload" href="/_next/static/css/751e8a14776d05d8.css" as="style"/><link rel="stylesheet" href="/_next/static/css/751e8a14776d05d8.css" data-n-p=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"></script><script src="/_next/static/chunks/webpack-5752944655d749a0.js" defer=""></script><script src="/_next/static/chunks/framework-4556c45dd113b893.js" defer=""></script><script src="/_next/static/chunks/main-a75cf611e061d8f8.js" defer=""></script><script src="/_next/static/chunks/pages/_app-183f598b1d4d480b.js" defer=""></script><script src="/_next/static/chunks/546-447e243fc9de2c59.js" defer=""></script><script src="/_next/static/chunks/880-18e3aea6915aebe7.js" defer=""></script><script src="/_next/static/chunks/pages/index-f1cef1e67e14d022.js" defer=""></script><script src="/_next/static/s5pE_3C3ebZuSfaqE7xat/_buildManifest.js" defer=""></script><script src="/_next/static/s5pE_3C3ebZuSfaqE7xat/_ssgManifest.js" defer=""></script></head><body><div id="__next"><p style="font-size:0">Scrabble Solver 2 is a free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish & Spanish. Source code is available on GitHub - contributions are welcome!</p><div class="index_index__5hyIO"><div class="index_nav__FjsLl"><div class="index_navLogo__dBrd4"><a class="index_logoContainer___rrXU" href="/" title="v2.9.2"><svg viewBox="0 0 682 166" xmlns="http://www.w3.org/2000/svg" role="img" class="index_logo__IeyQD"><path fill="#efe3ae" d="M0 0h80v80H0Z"></path><path aria-label="S" d="M51.168 47.629q0 3.047-1.477 5.297-1.476 2.25-4.312 3.469-2.813 1.218-6.844 1.218-1.781 0-3.492-.234-1.688-.234-3.258-.68-1.547-.469-2.953-1.148V48.8q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.78 0 2.859-.468 1.102-.47 1.594-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.4-1.712-1.195-.562-2.6-1.359-1.407-.82-2.673-1.992-1.265-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.407-5.25 1.406-2.18 4.008-3.328 2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.437.609 5.086 1.78l-2.344 5.65q-2.367-.962-4.242-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.962.422-1.454 1.219-.492.773-.492 1.804 0 1.22.703 2.063.727.82 2.156 1.594 1.454.773 3.61 1.804 2.625 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.008 1.805 1.008 4.5z"></path><path fill="#c7d8f9" d="M86 0h80v80H86Z"></path><path aria-label="C" d="M129.574 28.434q-2.086 0-3.703.82-1.594.797-2.695 2.32-1.078 1.524-1.64 3.68-.563 2.156-.563 4.851 0 3.633.89 6.211.914 2.555 2.813 3.914 1.898 1.336 4.898 1.336 2.086 0 4.172-.468 2.11-.47 4.57-1.336v6.093q-2.273.938-4.476 1.336-2.203.422-4.945.422-5.297 0-8.72-2.18-3.398-2.203-5.038-6.14-1.64-3.961-1.64-9.234 0-3.891 1.054-7.125 1.054-3.235 3.094-5.602 2.039-2.367 5.039-3.656 3-1.29 6.89-1.29 2.555 0 5.11.657 2.578.633 4.921 1.758l-2.343 5.906q-1.922-.914-3.867-1.594-1.946-.68-3.82-.68z"></path><path fill="#efe3ae" d="M172 0h80v80h-80z"></path><path aria-label="R" d="M210.453 22.867q4.664 0 7.688 1.125 3.047 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265V22.867Zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#efe3ae" d="M258 0h80v80h-80z"></path><path aria-label="A" d="m306.73 57.203-2.484-8.156h-12.492l-2.484 8.156h-7.829l12.094-34.406h8.883l12.14 34.406zm-4.218-14.25-2.485-7.969q-.234-.796-.632-2.039-.375-1.265-.774-2.554-.375-1.313-.61-2.274-.234.961-.656 2.39-.398 1.407-.773 2.673-.375 1.265-.539 1.804l-2.461 7.97z"></path><path fill="#c7d8f9" d="M344 0h80v80h-80z"></path><path aria-label="B" d="M372.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#c7d8f9" d="M430 0h80v80h-80z"></path><path aria-label="B" d="M458.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#efe3ae" d="M516 0h80v80h-80z"></path><path aria-label="L" d="M546.754 57.133V22.867h7.266v28.266h13.898v6z"></path><path fill="#efe3ae" d="M602 0h80v80h-80z"></path><path aria-label="E" d="M652.605 57.133h-19.734V22.867h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M0 86h80v80H0Z"></path><path aria-label="S" d="M51.32 133.629q0 3.047-1.476 5.297-1.477 2.25-4.313 3.469-2.812 1.218-6.843 1.218-1.782 0-3.493-.234-1.687-.234-3.257-.68-1.547-.469-2.954-1.148v-6.75q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.781 0 2.86-.468 1.1-.47 1.593-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.399-1.712-1.195-.562-2.602-1.359-1.406-.82-2.671-1.992-1.266-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.406-5.25t4.008-3.328q2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.438.609 5.086 1.78l-2.343 5.65q-2.368-.962-4.243-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.961.422-1.453 1.219-.493.773-.493 1.804 0 1.22.703 2.063.727.82 2.157 1.594 1.453.773 3.61 1.804 2.624 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.007 1.805 1.007 4.5z"></path><path fill="#efe3ae" d="M86 86h80v80H86Z"></path><path aria-label="O" d="M142.313 125.988q0 3.961-.985 7.219-.984 3.234-3 5.578-1.992 2.344-5.062 3.61-3.07 1.242-7.266 1.242-4.195 0-7.266-1.242-3.07-1.266-5.086-3.61-1.992-2.344-2.976-5.601-.984-3.258-.984-7.243 0-5.32 1.734-9.257 1.758-3.961 5.39-6.141 3.633-2.18 9.235-2.18 5.578 0 9.164 2.18 3.61 2.18 5.344 6.14 1.758 3.962 1.758 9.305zm-25.008 0q0 3.586.89 6.188.914 2.578 2.836 3.984 1.922 1.383 4.969 1.383 3.094 0 5.016-1.383 1.921-1.406 2.789-3.984.89-2.602.89-6.188 0-5.39-2.015-8.484-2.016-3.094-6.633-3.094-3.07 0-5.016 1.406-1.922 1.383-2.836 3.985-.89 2.578-.89 6.187z"></path><path fill="#efe3ae" d="M172 86h80v80h-80z"></path><path aria-label="L" d="M202.754 143.133v-34.266h7.266v28.266h13.898v6z"></path><path fill="#f7c2aa" d="M258 86h80v80h-80z"></path><path aria-label="V" d="m313.598 108.867-11.649 34.266h-7.922l-11.625-34.266h7.336l6.446 20.39q.164.516.539 1.946.375 1.406.75 3 .398 1.57.539 2.602.14-1.032.492-2.602.375-1.57.726-2.976.375-1.43.54-1.97l6.492-20.39z"></path><path fill="#efe3ae" d="M344 86h80v80h-80z"></path><path aria-label="E" d="M394.605 143.133h-19.734v-34.266h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M430 86h80v80h-80z"></path><path aria-label="R" d="M468.453 108.867q4.664 0 7.688 1.125 3.046 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265v-34.266zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#bae3ba" d="M602 86h80v80h-80z"></path><path aria-label="2" d="M654.152 143.379H630.2v-5.04l8.602-8.694q2.601-2.672 4.172-4.454 1.593-1.804 2.297-3.28.726-1.477.726-3.165 0-2.039-1.148-3.047-1.125-1.031-3.024-1.031-1.992 0-3.867.914t-3.914 2.602l-3.938-4.664q1.477-1.266 3.118-2.391 1.664-1.125 3.843-1.805 2.204-.703 5.274-.703 3.375 0 5.789 1.219 2.437 1.219 3.75 3.328 1.312 2.086 1.312 4.734 0 2.836-1.125 5.18t-3.28 4.64q-2.134 2.298-5.157 5.087l-4.406 4.148v.328h14.93z"></path></svg></a></div><div class="NavButtons_navButtons__2jdaO"><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" role="img" class="SquareButton_icon__t5YSC"><path d="M8.086 2.207a2 2 0 0 1 2.828 0l3.879 3.879a2 2 0 0 1 0 2.828l-5.5 5.5A2 2 0 0 1 7.879 15H5.12a2 2 0 0 1-1.414-.586l-2.5-2.5a2 2 0 0 1 0-2.828l6.879-6.879zm.66 11.34L3.453 8.254 1.914 9.793a1 1 0 0 0 0 1.414l2.5 2.5a1 1 0 0 0 .707.293H7.88a1 1 0 0 0 .707-.293l.16-.16z" fill="currentColor"></path></svg></span></button><div class="NavButtons_separator__4FwOF"></div><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" role="img" class="SquareButton_icon__t5YSC"><path d="M16 9c4 2 5 9 5 9s1 4-5 4H8c-6 0-5-4-5-4s1-7 5-9m6-5-2-2-2 2-4-2 2 5h8l2-5-4 2Z" fill="currentColor"></path></svg></span></button><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" role="img" class="SquareButton_icon__t5YSC"><path d="M8.5 2.687c.654-.689 1.782-.886 3.112-.752 1.234.124 2.503.523 3.388.893v9.923c-.918-.35-2.107-.692-3.287-.81-1.094-.111-2.278-.039-3.213.492V2.687zM8 1.783C7.015.936 5.587.81 4.287.94c-1.514.153-3.042.672-3.994 1.105A.5.5 0 0 0 0 2.5v11a.5.5 0 0 0 .707.455c.882-.4 2.303-.881 3.68-1.02 1.409-.142 2.59.087 3.223.877a.5.5 0 0 0 .78 0c.633-.79 1.814-1.019 3.222-.877 1.378.139 2.8.62 3.681 1.02A.5.5 0 0 0 16 13.5v-11a.5.5 0 0 0-.293-.455c-.952-.433-2.48-.952-3.994-1.105C10.413.809 8.985.936 8 1.783z" fill="currentColor"></path></svg></span></button><div class="NavButtons_separator__4FwOF"></div><a class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" href="https://github.com/kamilmielnik/scrabble-solver" rel="noopener noreferrer" target="_blank"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" role="img" class="SquareButton_icon__t5YSC"><path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z" fill="currentColor"></path></svg></span></a><div class="NavButtons_separator__4FwOF"></div><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" role="img" class="SquareButton_icon__t5YSC"><path d="M0 6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V6zm13 .25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5a.25.25 0 0 0-.25.25zM2.25 8a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 3 8.75v-.5A.25.25 0 0 0 2.75 8h-.5zM4 8.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 5 8.75v-.5A.25.25 0 0 0 4.75 8h-.5a.25.25 0 0 0-.25.25zM6.25 8a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 7 8.75v-.5A.25.25 0 0 0 6.75 8h-.5zM8 8.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 9 8.75v-.5A.25.25 0 0 0 8.75 8h-.5a.25.25 0 0 0-.25.25zM13.25 8a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5zm0 2a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5zm-3-2a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h1.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-1.5zm.75 2.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5a.25.25 0 0 0-.25.25zM11.25 6a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5zM9 6.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5A.25.25 0 0 0 9.75 6h-.5a.25.25 0 0 0-.25.25zM7.25 6a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 8 6.75v-.5A.25.25 0 0 0 7.75 6h-.5zM5 6.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 6 6.75v-.5A.25.25 0 0 0 5.75 6h-.5a.25.25 0 0 0-.25.25zM2.25 6a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h1.5A.25.25 0 0 0 4 6.75v-.5A.25.25 0 0 0 3.75 6h-1.5zM2 10.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5a.25.25 0 0 0-.25.25zM4.25 10a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h5.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-5.5z" fill="currentColor"></path></svg></span></button><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" role="img" class="SquareButton_icon__t5YSC"><path d="M9.405 1.05c-.413-1.4-2.397-1.4-2.81 0l-.1.34a1.464 1.464 0 0 1-2.105.872l-.31-.17c-1.283-.698-2.686.705-1.987 1.987l.169.311c.446.82.023 1.841-.872 2.105l-.34.1c-1.4.413-1.4 2.397 0 2.81l.34.1a1.464 1.464 0 0 1 .872 2.105l-.17.31c-.698 1.283.705 2.686 1.987 1.987l.311-.169a1.464 1.464 0 0 1 2.105.872l.1.34c.413 1.4 2.397 1.4 2.81 0l.1-.34a1.464 1.464 0 0 1 2.105-.872l.31.17c1.283.698 2.686-.705 1.987-1.987l-.169-.311a1.464 1.464 0 0 1 .872-2.105l.34-.1c1.4-.413 1.4-2.397 0-2.81l-.34-.1a1.464 1.464 0 0 1-.872-2.105l.17-.31c.698-1.283-.705-2.686-1.987-1.987l-.311.169a1.464 1.464 0 0 1-2.105-.872l-.1-.34zM8 10.93a2.929 2.929 0 1 1 0-5.86 2.929 2.929 0 0 1 0 5.858z" fill="currentColor"></path></svg></span></button></div></div><div class="index_contentWrapper__o0SKW"><div class="index_content__8u6Oo"><form class="index_boardContainer__O1DyN"><input class="index_submitInput__jPA3B" tabindex="-1" type="submit"/></form><div class="index_sidebar__i_2dV" style="height:1px"><div class="Well_well__WTn5e index_resultsContainer__yBEuy"></div><div class="Well_well__WTn5e"><div class="index_dictionary__Umhfc" style="height:220px"><div class="Dictionary_dictionary__0CM4j index_dictionaryOutput__vSlhp"></div><form class="DictionaryInput_dictionaryInput__fsGZD index_dictionaryInput__iCFs7"><input class="DictionaryInput_input__0ed6F" placeholder="Search dictionary..." required="" type="text" value=""/></form></div></div></div></div></div><form class="index_rackContainer__Az99V"><div class="Rack_rack__uEE8X index_rack__XHWIp"><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" autofocus="" class="Tile_character__2XzcR" placeholder="L" spellcheck="false" style="font-size:48px" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="e" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="t" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="t" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="e" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="r" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="s" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div></div><input class="index_submitInput__jPA3B" tabindex="-1" type="submit"/></form></div><div class="Screen_screen__VnMC9 Splash_splash__DJBx_"><div class="Screen_content__t2VCW"><div class="Splash_logos__pFer4"><svg viewBox="0 0 682 166" xmlns="http://www.w3.org/2000/svg" role="img" class="Splash_logoGrayscale__qe_QT"><path fill="#efe3ae" d="M0 0h80v80H0Z"></path><path aria-label="S" d="M51.168 47.629q0 3.047-1.477 5.297-1.476 2.25-4.312 3.469-2.813 1.218-6.844 1.218-1.781 0-3.492-.234-1.688-.234-3.258-.68-1.547-.469-2.953-1.148V48.8q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.78 0 2.859-.468 1.102-.47 1.594-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.4-1.712-1.195-.562-2.6-1.359-1.407-.82-2.673-1.992-1.265-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.407-5.25 1.406-2.18 4.008-3.328 2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.437.609 5.086 1.78l-2.344 5.65q-2.367-.962-4.242-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.962.422-1.454 1.219-.492.773-.492 1.804 0 1.22.703 2.063.727.82 2.156 1.594 1.454.773 3.61 1.804 2.625 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.008 1.805 1.008 4.5z"></path><path fill="#c7d8f9" d="M86 0h80v80H86Z"></path><path aria-label="C" d="M129.574 28.434q-2.086 0-3.703.82-1.594.797-2.695 2.32-1.078 1.524-1.64 3.68-.563 2.156-.563 4.851 0 3.633.89 6.211.914 2.555 2.813 3.914 1.898 1.336 4.898 1.336 2.086 0 4.172-.468 2.11-.47 4.57-1.336v6.093q-2.273.938-4.476 1.336-2.203.422-4.945.422-5.297 0-8.72-2.18-3.398-2.203-5.038-6.14-1.64-3.961-1.64-9.234 0-3.891 1.054-7.125 1.054-3.235 3.094-5.602 2.039-2.367 5.039-3.656 3-1.29 6.89-1.29 2.555 0 5.11.657 2.578.633 4.921 1.758l-2.343 5.906q-1.922-.914-3.867-1.594-1.946-.68-3.82-.68z"></path><path fill="#efe3ae" d="M172 0h80v80h-80z"></path><path aria-label="R" d="M210.453 22.867q4.664 0 7.688 1.125 3.047 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265V22.867Zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#efe3ae" d="M258 0h80v80h-80z"></path><path aria-label="A" d="m306.73 57.203-2.484-8.156h-12.492l-2.484 8.156h-7.829l12.094-34.406h8.883l12.14 34.406zm-4.218-14.25-2.485-7.969q-.234-.796-.632-2.039-.375-1.265-.774-2.554-.375-1.313-.61-2.274-.234.961-.656 2.39-.398 1.407-.773 2.673-.375 1.265-.539 1.804l-2.461 7.97z"></path><path fill="#c7d8f9" d="M344 0h80v80h-80z"></path><path aria-label="B" d="M372.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#c7d8f9" d="M430 0h80v80h-80z"></path><path aria-label="B" d="M458.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#efe3ae" d="M516 0h80v80h-80z"></path><path aria-label="L" d="M546.754 57.133V22.867h7.266v28.266h13.898v6z"></path><path fill="#efe3ae" d="M602 0h80v80h-80z"></path><path aria-label="E" d="M652.605 57.133h-19.734V22.867h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M0 86h80v80H0Z"></path><path aria-label="S" d="M51.32 133.629q0 3.047-1.476 5.297-1.477 2.25-4.313 3.469-2.812 1.218-6.843 1.218-1.782 0-3.493-.234-1.687-.234-3.257-.68-1.547-.469-2.954-1.148v-6.75q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.781 0 2.86-.468 1.1-.47 1.593-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.399-1.712-1.195-.562-2.602-1.359-1.406-.82-2.671-1.992-1.266-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.406-5.25t4.008-3.328q2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.438.609 5.086 1.78l-2.343 5.65q-2.368-.962-4.243-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.961.422-1.453 1.219-.493.773-.493 1.804 0 1.22.703 2.063.727.82 2.157 1.594 1.453.773 3.61 1.804 2.624 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.007 1.805 1.007 4.5z"></path><path fill="#efe3ae" d="M86 86h80v80H86Z"></path><path aria-label="O" d="M142.313 125.988q0 3.961-.985 7.219-.984 3.234-3 5.578-1.992 2.344-5.062 3.61-3.07 1.242-7.266 1.242-4.195 0-7.266-1.242-3.07-1.266-5.086-3.61-1.992-2.344-2.976-5.601-.984-3.258-.984-7.243 0-5.32 1.734-9.257 1.758-3.961 5.39-6.141 3.633-2.18 9.235-2.18 5.578 0 9.164 2.18 3.61 2.18 5.344 6.14 1.758 3.962 1.758 9.305zm-25.008 0q0 3.586.89 6.188.914 2.578 2.836 3.984 1.922 1.383 4.969 1.383 3.094 0 5.016-1.383 1.921-1.406 2.789-3.984.89-2.602.89-6.188 0-5.39-2.015-8.484-2.016-3.094-6.633-3.094-3.07 0-5.016 1.406-1.922 1.383-2.836 3.985-.89 2.578-.89 6.187z"></path><path fill="#efe3ae" d="M172 86h80v80h-80z"></path><path aria-label="L" d="M202.754 143.133v-34.266h7.266v28.266h13.898v6z"></path><path fill="#f7c2aa" d="M258 86h80v80h-80z"></path><path aria-label="V" d="m313.598 108.867-11.649 34.266h-7.922l-11.625-34.266h7.336l6.446 20.39q.164.516.539 1.946.375 1.406.75 3 .398 1.57.539 2.602.14-1.032.492-2.602.375-1.57.726-2.976.375-1.43.54-1.97l6.492-20.39z"></path><path fill="#efe3ae" d="M344 86h80v80h-80z"></path><path aria-label="E" d="M394.605 143.133h-19.734v-34.266h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M430 86h80v80h-80z"></path><path aria-label="R" d="M468.453 108.867q4.664 0 7.688 1.125 3.046 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265v-34.266zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#bae3ba" d="M602 86h80v80h-80z"></path><path aria-label="2" d="M654.152 143.379H630.2v-5.04l8.602-8.694q2.601-2.672 4.172-4.454 1.593-1.804 2.297-3.28.726-1.477.726-3.165 0-2.039-1.148-3.047-1.125-1.031-3.024-1.031-1.992 0-3.867.914t-3.914 2.602l-3.938-4.664q1.477-1.266 3.118-2.391 1.664-1.125 3.843-1.805 2.204-.703 5.274-.703 3.375 0 5.789 1.219 2.437 1.219 3.75 3.328 1.312 2.086 1.312 4.734 0 2.836-1.125 5.18t-3.28 4.64q-2.134 2.298-5.157 5.087l-4.406 4.148v.328h14.93z"></path></svg><svg viewBox="0 0 682 166" xmlns="http://www.w3.org/2000/svg" role="img" class="Splash_logoColor__InOR_"><path fill="#efe3ae" d="M0 0h80v80H0Z"></path><path aria-label="S" d="M51.168 47.629q0 3.047-1.477 5.297-1.476 2.25-4.312 3.469-2.813 1.218-6.844 1.218-1.781 0-3.492-.234-1.688-.234-3.258-.68-1.547-.469-2.953-1.148V48.8q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.78 0 2.859-.468 1.102-.47 1.594-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.4-1.712-1.195-.562-2.6-1.359-1.407-.82-2.673-1.992-1.265-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.407-5.25 1.406-2.18 4.008-3.328 2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.437.609 5.086 1.78l-2.344 5.65q-2.367-.962-4.242-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.962.422-1.454 1.219-.492.773-.492 1.804 0 1.22.703 2.063.727.82 2.156 1.594 1.454.773 3.61 1.804 2.625 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.008 1.805 1.008 4.5z"></path><path fill="#c7d8f9" d="M86 0h80v80H86Z"></path><path aria-label="C" d="M129.574 28.434q-2.086 0-3.703.82-1.594.797-2.695 2.32-1.078 1.524-1.64 3.68-.563 2.156-.563 4.851 0 3.633.89 6.211.914 2.555 2.813 3.914 1.898 1.336 4.898 1.336 2.086 0 4.172-.468 2.11-.47 4.57-1.336v6.093q-2.273.938-4.476 1.336-2.203.422-4.945.422-5.297 0-8.72-2.18-3.398-2.203-5.038-6.14-1.64-3.961-1.64-9.234 0-3.891 1.054-7.125 1.054-3.235 3.094-5.602 2.039-2.367 5.039-3.656 3-1.29 6.89-1.29 2.555 0 5.11.657 2.578.633 4.921 1.758l-2.343 5.906q-1.922-.914-3.867-1.594-1.946-.68-3.82-.68z"></path><path fill="#efe3ae" d="M172 0h80v80h-80z"></path><path aria-label="R" d="M210.453 22.867q4.664 0 7.688 1.125 3.047 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265V22.867Zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#efe3ae" d="M258 0h80v80h-80z"></path><path aria-label="A" d="m306.73 57.203-2.484-8.156h-12.492l-2.484 8.156h-7.829l12.094-34.406h8.883l12.14 34.406zm-4.218-14.25-2.485-7.969q-.234-.796-.632-2.039-.375-1.265-.774-2.554-.375-1.313-.61-2.274-.234.961-.656 2.39-.398 1.407-.773 2.673-.375 1.265-.539 1.804l-2.461 7.97z"></path><path fill="#c7d8f9" d="M344 0h80v80h-80z"></path><path aria-label="B" d="M372.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#c7d8f9" d="M430 0h80v80h-80z"></path><path aria-label="B" d="M458.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#efe3ae" d="M516 0h80v80h-80z"></path><path aria-label="L" d="M546.754 57.133V22.867h7.266v28.266h13.898v6z"></path><path fill="#efe3ae" d="M602 0h80v80h-80z"></path><path aria-label="E" d="M652.605 57.133h-19.734V22.867h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M0 86h80v80H0Z"></path><path aria-label="S" d="M51.32 133.629q0 3.047-1.476 5.297-1.477 2.25-4.313 3.469-2.812 1.218-6.843 1.218-1.782 0-3.493-.234-1.687-.234-3.257-.68-1.547-.469-2.954-1.148v-6.75q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.781 0 2.86-.468 1.1-.47 1.593-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.399-1.712-1.195-.562-2.602-1.359-1.406-.82-2.671-1.992-1.266-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.406-5.25t4.008-3.328q2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.438.609 5.086 1.78l-2.343 5.65q-2.368-.962-4.243-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.961.422-1.453 1.219-.493.773-.493 1.804 0 1.22.703 2.063.727.82 2.157 1.594 1.453.773 3.61 1.804 2.624 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.007 1.805 1.007 4.5z"></path><path fill="#efe3ae" d="M86 86h80v80H86Z"></path><path aria-label="O" d="M142.313 125.988q0 3.961-.985 7.219-.984 3.234-3 5.578-1.992 2.344-5.062 3.61-3.07 1.242-7.266 1.242-4.195 0-7.266-1.242-3.07-1.266-5.086-3.61-1.992-2.344-2.976-5.601-.984-3.258-.984-7.243 0-5.32 1.734-9.257 1.758-3.961 5.39-6.141 3.633-2.18 9.235-2.18 5.578 0 9.164 2.18 3.61 2.18 5.344 6.14 1.758 3.962 1.758 9.305zm-25.008 0q0 3.586.89 6.188.914 2.578 2.836 3.984 1.922 1.383 4.969 1.383 3.094 0 5.016-1.383 1.921-1.406 2.789-3.984.89-2.602.89-6.188 0-5.39-2.015-8.484-2.016-3.094-6.633-3.094-3.07 0-5.016 1.406-1.922 1.383-2.836 3.985-.89 2.578-.89 6.187z"></path><path fill="#efe3ae" d="M172 86h80v80h-80z"></path><path aria-label="L" d="M202.754 143.133v-34.266h7.266v28.266h13.898v6z"></path><path fill="#f7c2aa" d="M258 86h80v80h-80z"></path><path aria-label="V" d="m313.598 108.867-11.649 34.266h-7.922l-11.625-34.266h7.336l6.446 20.39q.164.516.539 1.946.375 1.406.75 3 .398 1.57.539 2.602.14-1.032.492-2.602.375-1.57.726-2.976.375-1.43.54-1.97l6.492-20.39z"></path><path fill="#efe3ae" d="M344 86h80v80h-80z"></path><path aria-label="E" d="M394.605 143.133h-19.734v-34.266h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M430 86h80v80h-80z"></path><path aria-label="R" d="M468.453 108.867q4.664 0 7.688 1.125 3.046 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265v-34.266zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#bae3ba" d="M602 86h80v80h-80z"></path><path aria-label="2" d="M654.152 143.379H630.2v-5.04l8.602-8.694q2.601-2.672 4.172-4.454 1.593-1.804 2.297-3.28.726-1.477.726-3.165 0-2.039-1.148-3.047-1.125-1.031-3.024-1.031-1.992 0-3.867.914t-3.914 2.602l-3.938-4.664q1.477-1.266 3.118-2.391 1.664-1.125 3.843-1.805 2.204-.703 5.274-.703 3.375 0 5.789 1.219 2.437 1.219 3.75 3.328 1.312 2.086 1.312 4.734 0 2.836-1.125 5.18t-3.28 4.64q-2.134 2.298-5.157 5.087l-4.406 4.148v.328h14.93z"></path></svg></div><h1 class="Splash_author__0gDgp">by Kamil Mielnik</h1></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"version":"v2.9.2"},"__N_SSG":true},"page":"/","query":{},"buildId":"s5pE_3C3ebZuSfaqE7xat","isFallback":false,"gsp":true,"scriptLoader":[]}</script></body></html>
|
|
1
|
+
<!DOCTYPE html><html lang="en"><head><title>Scrabble Solver 2 by Kamil Mielnik</title><meta charSet="utf-8"/><meta name="author" content="Kamil Mielnik"/><meta name="description" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish & Spanish."/><meta name="keywords" content="Scrabble,Solver,Open-source,Finder,Cheating,Literaki,Word,English,Français,Deutsch,Polski,Español,SOWPODS,TWL06,SJP,FISE-2017,FISE-2,CNRTL,Kamil Mielnik"/><meta name="robots" content="index, follow, notranslate, noimageindex"/><meta name="viewport" content="width=device-width, initial-scale=1.0"/><meta property="og:title" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish & Spanish."/><meta property="og:type" content="website"/><meta property="og:url" content="https://scrabble-solver.org"/><meta property="og:image" content="https://scrabble-solver.org/og.png"/><meta property="og:image:type" content="image/png"/><meta property="og:image:width" content="1200"/><meta property="og:image:height" content="630"/><meta property="og:image:alt" content="Scrabble Solver 2 - Free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish & Spanish."/><meta name="next-head-count" content="15"/><link crossorigin="anonymous" href="https://fonts.gstatic.com" rel="preconnect"/><link rel="apple-touch-icon-precomposed" sizes="57x57" href="icons/apple-touch-icon-57x57.png"/><link rel="apple-touch-icon-precomposed" sizes="114x114" href="icons/apple-touch-icon-114x114.png"/><link rel="apple-touch-icon-precomposed" sizes="72x72" href="icons/apple-touch-icon-72x72.png"/><link rel="apple-touch-icon-precomposed" sizes="144x144" href="icons/apple-touch-icon-144x144.png"/><link rel="apple-touch-icon-precomposed" sizes="60x60" href="icons/apple-touch-icon-60x60.png"/><link rel="apple-touch-icon-precomposed" sizes="120x120" href="icons/apple-touch-icon-120x120.png"/><link rel="apple-touch-icon-precomposed" sizes="76x76" href="icons/apple-touch-icon-76x76.png"/><link rel="apple-touch-icon-precomposed" sizes="152x152" href="icons/apple-touch-icon-152x152.png"/><link rel="icon" type="image/png" href="icons/favicon-196x196.png" sizes="196x196"/><link rel="icon" type="image/png" href="icons/favicon-96x96.png" sizes="96x96"/><link rel="icon" type="image/png" href="icons/favicon-32x32.png" sizes="32x32"/><link rel="icon" type="image/png" href="icons/favicon-16x16.png" sizes="16x16"/><link rel="icon" type="image/png" href="icons/favicon-128.png" sizes="128x128"/><meta name="application-name" content="Scrabble Solver"/><meta name="msapplication-TileColor" content="#EFE3AE"/><meta name="msapplication-TileImage" content="icons/mstile-144x144.png"/><meta name="msapplication-square70x70logo" content="icons/mstile-70x70.png"/><meta name="msapplication-square150x150logo" content="icons/mstile-150x150.png"/><meta name="msapplication-wide310x150logo" content="icons/mstile-310x150.png"/><meta name="msapplication-square310x310logo" content="icons/mstile-310x310.png"/><link rel="preload" href="/_next/static/css/bad53af6f8616677.css" as="style"/><link rel="stylesheet" href="/_next/static/css/bad53af6f8616677.css" data-n-g=""/><link rel="preload" href="/_next/static/css/a6154e4ca046ca13.css" as="style"/><link rel="stylesheet" href="/_next/static/css/a6154e4ca046ca13.css" data-n-p=""/><link rel="preload" href="/_next/static/css/6b1833fd19d3a74a.css" as="style"/><link rel="stylesheet" href="/_next/static/css/6b1833fd19d3a74a.css" data-n-p=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js"></script><script src="/_next/static/chunks/webpack-5752944655d749a0.js" defer=""></script><script src="/_next/static/chunks/framework-4556c45dd113b893.js" defer=""></script><script src="/_next/static/chunks/main-a75cf611e061d8f8.js" defer=""></script><script src="/_next/static/chunks/pages/_app-8f0df20f771045ed.js" defer=""></script><script src="/_next/static/chunks/546-447e243fc9de2c59.js" defer=""></script><script src="/_next/static/chunks/368-8b386c3106556f62.js" defer=""></script><script src="/_next/static/chunks/pages/index-8af7a9d7a2cd98a7.js" defer=""></script><script src="/_next/static/hf94cues-LcXZRCpAzQ6w/_buildManifest.js" defer=""></script><script src="/_next/static/hf94cues-LcXZRCpAzQ6w/_ssgManifest.js" defer=""></script></head><body><div id="__next"><p style="font-size:0">Scrabble Solver 2 is a free and open-source analysis tool for Scrabble and Literaki. Quickly find top scoring words using given letters and board state. Available in English, French, German, Polish & Spanish. Source code is available on GitHub - contributions are welcome!</p><svg class="SvgFontFix_svgFontFix__nlq_B" xmlns="http://www.w3.org/2000/svg"><style type="text/css">@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Open+Sans:wght@400;700&family=Vazirmatn:wght@300;400;700&family=Roboto+Mono&display=swap');
|
|
2
|
+
|
|
3
|
+
text {
|
|
4
|
+
font-family: 'Open Sans';
|
|
5
|
+
}</style><style type="text/css">@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Open+Sans:wght@400;700&family=Vazirmatn:wght@300;400;700&family=Roboto+Mono&display=swap');
|
|
6
|
+
|
|
7
|
+
text {
|
|
8
|
+
font-family: 'Vazirmatn';
|
|
9
|
+
}</style></svg><div class="index_index__5hyIO"><div class="index_nav__FjsLl"><div class="index_navLogo__dBrd4"><a class="index_logoContainer___rrXU" href="/" title="v2.10.0"><svg viewBox="0 0 682 166" xmlns="http://www.w3.org/2000/svg" role="img" class="index_logo__IeyQD"><path fill="#efe3ae" d="M0 0h80v80H0Z"></path><path aria-label="S" d="M51.168 47.629q0 3.047-1.477 5.297-1.476 2.25-4.312 3.469-2.813 1.218-6.844 1.218-1.781 0-3.492-.234-1.688-.234-3.258-.68-1.547-.469-2.953-1.148V48.8q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.78 0 2.859-.468 1.102-.47 1.594-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.4-1.712-1.195-.562-2.6-1.359-1.407-.82-2.673-1.992-1.265-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.407-5.25 1.406-2.18 4.008-3.328 2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.437.609 5.086 1.78l-2.344 5.65q-2.367-.962-4.242-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.962.422-1.454 1.219-.492.773-.492 1.804 0 1.22.703 2.063.727.82 2.156 1.594 1.454.773 3.61 1.804 2.625 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.008 1.805 1.008 4.5z"></path><path fill="#c7d8f9" d="M86 0h80v80H86Z"></path><path aria-label="C" d="M129.574 28.434q-2.086 0-3.703.82-1.594.797-2.695 2.32-1.078 1.524-1.64 3.68-.563 2.156-.563 4.851 0 3.633.89 6.211.914 2.555 2.813 3.914 1.898 1.336 4.898 1.336 2.086 0 4.172-.468 2.11-.47 4.57-1.336v6.093q-2.273.938-4.476 1.336-2.203.422-4.945.422-5.297 0-8.72-2.18-3.398-2.203-5.038-6.14-1.64-3.961-1.64-9.234 0-3.891 1.054-7.125 1.054-3.235 3.094-5.602 2.039-2.367 5.039-3.656 3-1.29 6.89-1.29 2.555 0 5.11.657 2.578.633 4.921 1.758l-2.343 5.906q-1.922-.914-3.867-1.594-1.946-.68-3.82-.68z"></path><path fill="#efe3ae" d="M172 0h80v80h-80z"></path><path aria-label="R" d="M210.453 22.867q4.664 0 7.688 1.125 3.047 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265V22.867Zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#efe3ae" d="M258 0h80v80h-80z"></path><path aria-label="A" d="m306.73 57.203-2.484-8.156h-12.492l-2.484 8.156h-7.829l12.094-34.406h8.883l12.14 34.406zm-4.218-14.25-2.485-7.969q-.234-.796-.632-2.039-.375-1.265-.774-2.554-.375-1.313-.61-2.274-.234.961-.656 2.39-.398 1.407-.773 2.673-.375 1.265-.539 1.804l-2.461 7.97z"></path><path fill="#c7d8f9" d="M344 0h80v80h-80z"></path><path aria-label="B" d="M372.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#c7d8f9" d="M430 0h80v80h-80z"></path><path aria-label="B" d="M458.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#efe3ae" d="M516 0h80v80h-80z"></path><path aria-label="L" d="M546.754 57.133V22.867h7.266v28.266h13.898v6z"></path><path fill="#efe3ae" d="M602 0h80v80h-80z"></path><path aria-label="E" d="M652.605 57.133h-19.734V22.867h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M0 86h80v80H0Z"></path><path aria-label="S" d="M51.32 133.629q0 3.047-1.476 5.297-1.477 2.25-4.313 3.469-2.812 1.218-6.843 1.218-1.782 0-3.493-.234-1.687-.234-3.257-.68-1.547-.469-2.954-1.148v-6.75q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.781 0 2.86-.468 1.1-.47 1.593-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.399-1.712-1.195-.562-2.602-1.359-1.406-.82-2.671-1.992-1.266-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.406-5.25t4.008-3.328q2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.438.609 5.086 1.78l-2.343 5.65q-2.368-.962-4.243-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.961.422-1.453 1.219-.493.773-.493 1.804 0 1.22.703 2.063.727.82 2.157 1.594 1.453.773 3.61 1.804 2.624 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.007 1.805 1.007 4.5z"></path><path fill="#efe3ae" d="M86 86h80v80H86Z"></path><path aria-label="O" d="M142.313 125.988q0 3.961-.985 7.219-.984 3.234-3 5.578-1.992 2.344-5.062 3.61-3.07 1.242-7.266 1.242-4.195 0-7.266-1.242-3.07-1.266-5.086-3.61-1.992-2.344-2.976-5.601-.984-3.258-.984-7.243 0-5.32 1.734-9.257 1.758-3.961 5.39-6.141 3.633-2.18 9.235-2.18 5.578 0 9.164 2.18 3.61 2.18 5.344 6.14 1.758 3.962 1.758 9.305zm-25.008 0q0 3.586.89 6.188.914 2.578 2.836 3.984 1.922 1.383 4.969 1.383 3.094 0 5.016-1.383 1.921-1.406 2.789-3.984.89-2.602.89-6.188 0-5.39-2.015-8.484-2.016-3.094-6.633-3.094-3.07 0-5.016 1.406-1.922 1.383-2.836 3.985-.89 2.578-.89 6.187z"></path><path fill="#efe3ae" d="M172 86h80v80h-80z"></path><path aria-label="L" d="M202.754 143.133v-34.266h7.266v28.266h13.898v6z"></path><path fill="#f7c2aa" d="M258 86h80v80h-80z"></path><path aria-label="V" d="m313.598 108.867-11.649 34.266h-7.922l-11.625-34.266h7.336l6.446 20.39q.164.516.539 1.946.375 1.406.75 3 .398 1.57.539 2.602.14-1.032.492-2.602.375-1.57.726-2.976.375-1.43.54-1.97l6.492-20.39z"></path><path fill="#efe3ae" d="M344 86h80v80h-80z"></path><path aria-label="E" d="M394.605 143.133h-19.734v-34.266h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M430 86h80v80h-80z"></path><path aria-label="R" d="M468.453 108.867q4.664 0 7.688 1.125 3.046 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265v-34.266zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#bae3ba" d="M602 86h80v80h-80z"></path><path aria-label="2" d="M654.152 143.379H630.2v-5.04l8.602-8.694q2.601-2.672 4.172-4.454 1.593-1.804 2.297-3.28.726-1.477.726-3.165 0-2.039-1.148-3.047-1.125-1.031-3.024-1.031-1.992 0-3.867.914t-3.914 2.602l-3.938-4.664q1.477-1.266 3.118-2.391 1.664-1.125 3.843-1.805 2.204-.703 5.274-.703 3.375 0 5.789 1.219 2.437 1.219 3.75 3.328 1.312 2.086 1.312 4.734 0 2.836-1.125 5.18t-3.28 4.64q-2.134 2.298-5.157 5.087l-4.406 4.148v.328h14.93z"></path></svg></a></div><div class="NavButtons_navButtons__2jdaO"><div class="NavButtons_group__kSDjM"><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" role="img" class="SquareButton_icon__t5YSC"><path d="M8.086 2.207a2 2 0 0 1 2.828 0l3.879 3.879a2 2 0 0 1 0 2.828l-5.5 5.5A2 2 0 0 1 7.879 15H5.12a2 2 0 0 1-1.414-.586l-2.5-2.5a2 2 0 0 1 0-2.828l6.879-6.879zm.66 11.34L3.453 8.254 1.914 9.793a1 1 0 0 0 0 1.414l2.5 2.5a1 1 0 0 0 .707.293H7.88a1 1 0 0 0 .707-.293l.16-.16z" fill="currentColor"></path></svg></span></button></div><div class="NavButtons_separator__4FwOF"></div><div class="NavButtons_group__kSDjM"><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" role="img" class="SquareButton_icon__t5YSC"><path d="M16 9c4 2 5 9 5 9s1 4-5 4H8c-6 0-5-4-5-4s1-7 5-9m6-5-2-2-2 2-4-2 2 5h8l2-5-4 2Z" fill="currentColor"></path></svg></span></button><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" role="img" class="SquareButton_icon__t5YSC"><path d="M8.5 2.687c.654-.689 1.782-.886 3.112-.752 1.234.124 2.503.523 3.388.893v9.923c-.918-.35-2.107-.692-3.287-.81-1.094-.111-2.278-.039-3.213.492V2.687zM8 1.783C7.015.936 5.587.81 4.287.94c-1.514.153-3.042.672-3.994 1.105A.5.5 0 0 0 0 2.5v11a.5.5 0 0 0 .707.455c.882-.4 2.303-.881 3.68-1.02 1.409-.142 2.59.087 3.223.877a.5.5 0 0 0 .78 0c.633-.79 1.814-1.019 3.222-.877 1.378.139 2.8.62 3.681 1.02A.5.5 0 0 0 16 13.5v-11a.5.5 0 0 0-.293-.455c-.952-.433-2.48-.952-3.994-1.105C10.413.809 8.985.936 8 1.783z" fill="currentColor"></path></svg></span></button></div><div class="NavButtons_separator__4FwOF"></div><div class="NavButtons_group__kSDjM"><a class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" href="https://github.com/kamilmielnik/scrabble-solver" rel="noopener noreferrer" target="_blank"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" role="img" class="SquareButton_icon__t5YSC"><path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z" fill="currentColor"></path></svg></span></a></div><div class="NavButtons_separator__4FwOF"></div><div class="NavButtons_group__kSDjM"><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" role="img" class="SquareButton_icon__t5YSC"><path d="M0 6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V6zm13 .25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5a.25.25 0 0 0-.25.25zM2.25 8a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 3 8.75v-.5A.25.25 0 0 0 2.75 8h-.5zM4 8.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 5 8.75v-.5A.25.25 0 0 0 4.75 8h-.5a.25.25 0 0 0-.25.25zM6.25 8a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 7 8.75v-.5A.25.25 0 0 0 6.75 8h-.5zM8 8.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 9 8.75v-.5A.25.25 0 0 0 8.75 8h-.5a.25.25 0 0 0-.25.25zM13.25 8a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5zm0 2a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5zm-3-2a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h1.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-1.5zm.75 2.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5a.25.25 0 0 0-.25.25zM11.25 6a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5zM9 6.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5A.25.25 0 0 0 9.75 6h-.5a.25.25 0 0 0-.25.25zM7.25 6a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 8 6.75v-.5A.25.25 0 0 0 7.75 6h-.5zM5 6.25v.5c0 .138.112.25.25.25h.5A.25.25 0 0 0 6 6.75v-.5A.25.25 0 0 0 5.75 6h-.5a.25.25 0 0 0-.25.25zM2.25 6a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h1.5A.25.25 0 0 0 4 6.75v-.5A.25.25 0 0 0 3.75 6h-1.5zM2 10.25v.5c0 .138.112.25.25.25h.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-.5a.25.25 0 0 0-.25.25zM4.25 10a.25.25 0 0 0-.25.25v.5c0 .138.112.25.25.25h5.5a.25.25 0 0 0 .25-.25v-.5a.25.25 0 0 0-.25-.25h-5.5z" fill="currentColor"></path></svg></span></button><button class="SquareButton_squareButton__qwR9a NavButtons_button__1mjyl" type="button"><span class="SquareButton_content__1ucqM"><svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" role="img" class="SquareButton_icon__t5YSC"><path d="M9.405 1.05c-.413-1.4-2.397-1.4-2.81 0l-.1.34a1.464 1.464 0 0 1-2.105.872l-.31-.17c-1.283-.698-2.686.705-1.987 1.987l.169.311c.446.82.023 1.841-.872 2.105l-.34.1c-1.4.413-1.4 2.397 0 2.81l.34.1a1.464 1.464 0 0 1 .872 2.105l-.17.31c-.698 1.283.705 2.686 1.987 1.987l.311-.169a1.464 1.464 0 0 1 2.105.872l.1.34c.413 1.4 2.397 1.4 2.81 0l.1-.34a1.464 1.464 0 0 1 2.105-.872l.31.17c1.283.698 2.686-.705 1.987-1.987l-.169-.311a1.464 1.464 0 0 1 .872-2.105l.34-.1c1.4-.413 1.4-2.397 0-2.81l-.34-.1a1.464 1.464 0 0 1-.872-2.105l.17-.31c.698-1.283-.705-2.686-1.987-1.987l-.311.169a1.464 1.464 0 0 1-2.105-.872l-.1-.34zM8 10.93a2.929 2.929 0 1 1 0-5.86 2.929 2.929 0 0 1 0 5.858z" fill="currentColor"></path></svg></span></button></div></div></div><div class="index_contentWrapper__o0SKW"><div class="index_content__8u6Oo"><form class="index_boardContainer__O1DyN"><input class="index_submitInput__jPA3B" tabindex="-1" type="submit"/></form><div class="index_sidebar__i_2dV" style="height:1px"><div class="Well_well__WTn5e index_resultsContainer__yBEuy"></div><div class="Well_well__WTn5e"><div class="index_dictionary__Umhfc" style="height:220px"><div class="Dictionary_dictionary__0CM4j index_dictionaryOutput__vSlhp"></div><form class="DictionaryInput_dictionaryInput__fsGZD index_dictionaryInput__iCFs7"><input class="DictionaryInput_input__0ed6F" placeholder="Search dictionary..." required="" type="text" value=""/></form></div></div></div></div></div><form class="index_rackContainer__Az99V"><div class="Rack_rack__uEE8X index_rack__XHWIp"><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" autofocus="" class="Tile_character__2XzcR" placeholder="L" spellcheck="false" style="font-size:48px" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="e" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="t" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="t" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="e" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="r" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div><div class="Tile_tile__14nuL Rack_tile__kMzR_ Tile_raised__WKori" style="height:80px;width:80px"><input autoCapitalize="none" autoComplete="off" autoCorrect="off" class="Tile_character__2XzcR" placeholder="s" spellcheck="false" style="font-size:48px" tabindex="-1" value=""/></div></div><input class="index_submitInput__jPA3B" tabindex="-1" type="submit"/></form></div><div class="Screen_screen__VnMC9 Splash_splash__DJBx_"><div class="Screen_content__t2VCW"><div class="Splash_logos__pFer4"><svg viewBox="0 0 682 166" xmlns="http://www.w3.org/2000/svg" role="img" class="Splash_logoGrayscale__qe_QT"><path fill="#efe3ae" d="M0 0h80v80H0Z"></path><path aria-label="S" d="M51.168 47.629q0 3.047-1.477 5.297-1.476 2.25-4.312 3.469-2.813 1.218-6.844 1.218-1.781 0-3.492-.234-1.688-.234-3.258-.68-1.547-.469-2.953-1.148V48.8q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.78 0 2.859-.468 1.102-.47 1.594-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.4-1.712-1.195-.562-2.6-1.359-1.407-.82-2.673-1.992-1.265-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.407-5.25 1.406-2.18 4.008-3.328 2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.437.609 5.086 1.78l-2.344 5.65q-2.367-.962-4.242-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.962.422-1.454 1.219-.492.773-.492 1.804 0 1.22.703 2.063.727.82 2.156 1.594 1.454.773 3.61 1.804 2.625 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.008 1.805 1.008 4.5z"></path><path fill="#c7d8f9" d="M86 0h80v80H86Z"></path><path aria-label="C" d="M129.574 28.434q-2.086 0-3.703.82-1.594.797-2.695 2.32-1.078 1.524-1.64 3.68-.563 2.156-.563 4.851 0 3.633.89 6.211.914 2.555 2.813 3.914 1.898 1.336 4.898 1.336 2.086 0 4.172-.468 2.11-.47 4.57-1.336v6.093q-2.273.938-4.476 1.336-2.203.422-4.945.422-5.297 0-8.72-2.18-3.398-2.203-5.038-6.14-1.64-3.961-1.64-9.234 0-3.891 1.054-7.125 1.054-3.235 3.094-5.602 2.039-2.367 5.039-3.656 3-1.29 6.89-1.29 2.555 0 5.11.657 2.578.633 4.921 1.758l-2.343 5.906q-1.922-.914-3.867-1.594-1.946-.68-3.82-.68z"></path><path fill="#efe3ae" d="M172 0h80v80h-80z"></path><path aria-label="R" d="M210.453 22.867q4.664 0 7.688 1.125 3.047 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265V22.867Zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#efe3ae" d="M258 0h80v80h-80z"></path><path aria-label="A" d="m306.73 57.203-2.484-8.156h-12.492l-2.484 8.156h-7.829l12.094-34.406h8.883l12.14 34.406zm-4.218-14.25-2.485-7.969q-.234-.796-.632-2.039-.375-1.265-.774-2.554-.375-1.313-.61-2.274-.234.961-.656 2.39-.398 1.407-.773 2.673-.375 1.265-.539 1.804l-2.461 7.97z"></path><path fill="#c7d8f9" d="M344 0h80v80h-80z"></path><path aria-label="B" d="M372.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#c7d8f9" d="M430 0h80v80h-80z"></path><path aria-label="B" d="M458.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#efe3ae" d="M516 0h80v80h-80z"></path><path aria-label="L" d="M546.754 57.133V22.867h7.266v28.266h13.898v6z"></path><path fill="#efe3ae" d="M602 0h80v80h-80z"></path><path aria-label="E" d="M652.605 57.133h-19.734V22.867h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M0 86h80v80H0Z"></path><path aria-label="S" d="M51.32 133.629q0 3.047-1.476 5.297-1.477 2.25-4.313 3.469-2.812 1.218-6.843 1.218-1.782 0-3.493-.234-1.687-.234-3.257-.68-1.547-.469-2.954-1.148v-6.75q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.781 0 2.86-.468 1.1-.47 1.593-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.399-1.712-1.195-.562-2.602-1.359-1.406-.82-2.671-1.992-1.266-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.406-5.25t4.008-3.328q2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.438.609 5.086 1.78l-2.343 5.65q-2.368-.962-4.243-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.961.422-1.453 1.219-.493.773-.493 1.804 0 1.22.703 2.063.727.82 2.157 1.594 1.453.773 3.61 1.804 2.624 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.007 1.805 1.007 4.5z"></path><path fill="#efe3ae" d="M86 86h80v80H86Z"></path><path aria-label="O" d="M142.313 125.988q0 3.961-.985 7.219-.984 3.234-3 5.578-1.992 2.344-5.062 3.61-3.07 1.242-7.266 1.242-4.195 0-7.266-1.242-3.07-1.266-5.086-3.61-1.992-2.344-2.976-5.601-.984-3.258-.984-7.243 0-5.32 1.734-9.257 1.758-3.961 5.39-6.141 3.633-2.18 9.235-2.18 5.578 0 9.164 2.18 3.61 2.18 5.344 6.14 1.758 3.962 1.758 9.305zm-25.008 0q0 3.586.89 6.188.914 2.578 2.836 3.984 1.922 1.383 4.969 1.383 3.094 0 5.016-1.383 1.921-1.406 2.789-3.984.89-2.602.89-6.188 0-5.39-2.015-8.484-2.016-3.094-6.633-3.094-3.07 0-5.016 1.406-1.922 1.383-2.836 3.985-.89 2.578-.89 6.187z"></path><path fill="#efe3ae" d="M172 86h80v80h-80z"></path><path aria-label="L" d="M202.754 143.133v-34.266h7.266v28.266h13.898v6z"></path><path fill="#f7c2aa" d="M258 86h80v80h-80z"></path><path aria-label="V" d="m313.598 108.867-11.649 34.266h-7.922l-11.625-34.266h7.336l6.446 20.39q.164.516.539 1.946.375 1.406.75 3 .398 1.57.539 2.602.14-1.032.492-2.602.375-1.57.726-2.976.375-1.43.54-1.97l6.492-20.39z"></path><path fill="#efe3ae" d="M344 86h80v80h-80z"></path><path aria-label="E" d="M394.605 143.133h-19.734v-34.266h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M430 86h80v80h-80z"></path><path aria-label="R" d="M468.453 108.867q4.664 0 7.688 1.125 3.046 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265v-34.266zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#bae3ba" d="M602 86h80v80h-80z"></path><path aria-label="2" d="M654.152 143.379H630.2v-5.04l8.602-8.694q2.601-2.672 4.172-4.454 1.593-1.804 2.297-3.28.726-1.477.726-3.165 0-2.039-1.148-3.047-1.125-1.031-3.024-1.031-1.992 0-3.867.914t-3.914 2.602l-3.938-4.664q1.477-1.266 3.118-2.391 1.664-1.125 3.843-1.805 2.204-.703 5.274-.703 3.375 0 5.789 1.219 2.437 1.219 3.75 3.328 1.312 2.086 1.312 4.734 0 2.836-1.125 5.18t-3.28 4.64q-2.134 2.298-5.157 5.087l-4.406 4.148v.328h14.93z"></path></svg><svg viewBox="0 0 682 166" xmlns="http://www.w3.org/2000/svg" role="img" class="Splash_logoColor__InOR_"><path fill="#efe3ae" d="M0 0h80v80H0Z"></path><path aria-label="S" d="M51.168 47.629q0 3.047-1.477 5.297-1.476 2.25-4.312 3.469-2.813 1.218-6.844 1.218-1.781 0-3.492-.234-1.688-.234-3.258-.68-1.547-.469-2.953-1.148V48.8q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.78 0 2.859-.468 1.102-.47 1.594-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.4-1.712-1.195-.562-2.6-1.359-1.407-.82-2.673-1.992-1.265-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.407-5.25 1.406-2.18 4.008-3.328 2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.437.609 5.086 1.78l-2.344 5.65q-2.367-.962-4.242-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.962.422-1.454 1.219-.492.773-.492 1.804 0 1.22.703 2.063.727.82 2.156 1.594 1.454.773 3.61 1.804 2.625 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.008 1.805 1.008 4.5z"></path><path fill="#c7d8f9" d="M86 0h80v80H86Z"></path><path aria-label="C" d="M129.574 28.434q-2.086 0-3.703.82-1.594.797-2.695 2.32-1.078 1.524-1.64 3.68-.563 2.156-.563 4.851 0 3.633.89 6.211.914 2.555 2.813 3.914 1.898 1.336 4.898 1.336 2.086 0 4.172-.468 2.11-.47 4.57-1.336v6.093q-2.273.938-4.476 1.336-2.203.422-4.945.422-5.297 0-8.72-2.18-3.398-2.203-5.038-6.14-1.64-3.961-1.64-9.234 0-3.891 1.054-7.125 1.054-3.235 3.094-5.602 2.039-2.367 5.039-3.656 3-1.29 6.89-1.29 2.555 0 5.11.657 2.578.633 4.921 1.758l-2.343 5.906q-1.922-.914-3.867-1.594-1.946-.68-3.82-.68z"></path><path fill="#efe3ae" d="M172 0h80v80h-80z"></path><path aria-label="R" d="M210.453 22.867q4.664 0 7.688 1.125 3.047 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265V22.867Zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#efe3ae" d="M258 0h80v80h-80z"></path><path aria-label="A" d="m306.73 57.203-2.484-8.156h-12.492l-2.484 8.156h-7.829l12.094-34.406h8.883l12.14 34.406zm-4.218-14.25-2.485-7.969q-.234-.796-.632-2.039-.375-1.265-.774-2.554-.375-1.313-.61-2.274-.234.961-.656 2.39-.398 1.407-.773 2.673-.375 1.265-.539 1.804l-2.461 7.97z"></path><path fill="#c7d8f9" d="M344 0h80v80h-80z"></path><path aria-label="B" d="M372.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#c7d8f9" d="M430 0h80v80h-80z"></path><path aria-label="B" d="M458.188 22.867h10.664q6.843 0 10.359 1.922t3.516 6.75q0 1.945-.633 3.516-.61 1.57-1.781 2.578-1.172 1.008-2.86 1.312v.235q1.711.351 3.094 1.218 1.383.844 2.203 2.485.844 1.617.844 4.312 0 3.118-1.524 5.344-1.523 2.227-4.36 3.422-2.812 1.172-6.702 1.172h-12.82Zm7.265 13.57h4.219q3.164 0 4.383-.984 1.218-1.008 1.218-2.953 0-1.969-1.453-2.812-1.43-.868-4.547-.868h-3.82zm0 5.766v8.93h4.735q3.28 0 4.57-1.266 1.289-1.265 1.289-3.398 0-1.266-.563-2.227-.562-.96-1.898-1.5-1.313-.539-3.633-.539z"></path><path fill="#efe3ae" d="M516 0h80v80h-80z"></path><path aria-label="L" d="M546.754 57.133V22.867h7.266v28.266h13.898v6z"></path><path fill="#efe3ae" d="M602 0h80v80h-80z"></path><path aria-label="E" d="M652.605 57.133h-19.734V22.867h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M0 86h80v80H0Z"></path><path aria-label="S" d="M51.32 133.629q0 3.047-1.476 5.297-1.477 2.25-4.313 3.469-2.812 1.218-6.843 1.218-1.782 0-3.493-.234-1.687-.234-3.257-.68-1.547-.469-2.954-1.148v-6.75q2.438 1.078 5.063 1.945 2.625.867 5.203.867 1.781 0 2.86-.468 1.1-.47 1.593-1.29.492-.82.492-1.875 0-1.289-.867-2.203-.867-.914-2.39-1.71-1.5-.797-3.399-1.712-1.195-.562-2.602-1.359-1.406-.82-2.671-1.992-1.266-1.172-2.086-2.836-.797-1.688-.797-4.031 0-3.07 1.406-5.25t4.008-3.328q2.625-1.172 6.187-1.172 2.672 0 5.086.633 2.438.609 5.086 1.78l-2.343 5.65q-2.368-.962-4.243-1.477-1.875-.54-3.82-.54-1.36 0-2.32.446-.961.422-1.453 1.219-.493.773-.493 1.804 0 1.22.703 2.063.727.82 2.157 1.594 1.453.773 3.61 1.804 2.624 1.242 4.476 2.602 1.875 1.336 2.883 3.164 1.007 1.805 1.007 4.5z"></path><path fill="#efe3ae" d="M86 86h80v80H86Z"></path><path aria-label="O" d="M142.313 125.988q0 3.961-.985 7.219-.984 3.234-3 5.578-1.992 2.344-5.062 3.61-3.07 1.242-7.266 1.242-4.195 0-7.266-1.242-3.07-1.266-5.086-3.61-1.992-2.344-2.976-5.601-.984-3.258-.984-7.243 0-5.32 1.734-9.257 1.758-3.961 5.39-6.141 3.633-2.18 9.235-2.18 5.578 0 9.164 2.18 3.61 2.18 5.344 6.14 1.758 3.962 1.758 9.305zm-25.008 0q0 3.586.89 6.188.914 2.578 2.836 3.984 1.922 1.383 4.969 1.383 3.094 0 5.016-1.383 1.921-1.406 2.789-3.984.89-2.602.89-6.188 0-5.39-2.015-8.484-2.016-3.094-6.633-3.094-3.07 0-5.016 1.406-1.922 1.383-2.836 3.985-.89 2.578-.89 6.187z"></path><path fill="#efe3ae" d="M172 86h80v80h-80z"></path><path aria-label="L" d="M202.754 143.133v-34.266h7.266v28.266h13.898v6z"></path><path fill="#f7c2aa" d="M258 86h80v80h-80z"></path><path aria-label="V" d="m313.598 108.867-11.649 34.266h-7.922l-11.625-34.266h7.336l6.446 20.39q.164.516.539 1.946.375 1.406.75 3 .398 1.57.539 2.602.14-1.032.492-2.602.375-1.57.726-2.976.375-1.43.54-1.97l6.492-20.39z"></path><path fill="#efe3ae" d="M344 86h80v80h-80z"></path><path aria-label="E" d="M394.605 143.133h-19.734v-34.266h19.734v5.953h-12.468v7.524h11.601v5.953h-11.601v8.836h12.468z"></path><path fill="#efe3ae" d="M430 86h80v80h-80z"></path><path aria-label="R" d="M468.453 108.867q4.664 0 7.688 1.125 3.046 1.125 4.523 3.399 1.477 2.273 1.477 5.742 0 2.344-.891 4.101-.89 1.758-2.344 2.977-1.453 1.219-3.14 1.992l10.078 14.93h-8.063l-8.18-13.149h-3.867v13.149h-7.265v-34.266zm-.515 5.953h-2.204v9.258h2.344q3.61 0 5.156-1.195 1.57-1.219 1.57-3.563 0-2.437-1.687-3.468-1.664-1.032-5.18-1.032z"></path><path fill="#bae3ba" d="M602 86h80v80h-80z"></path><path aria-label="2" d="M654.152 143.379H630.2v-5.04l8.602-8.694q2.601-2.672 4.172-4.454 1.593-1.804 2.297-3.28.726-1.477.726-3.165 0-2.039-1.148-3.047-1.125-1.031-3.024-1.031-1.992 0-3.867.914t-3.914 2.602l-3.938-4.664q1.477-1.266 3.118-2.391 1.664-1.125 3.843-1.805 2.204-.703 5.274-.703 3.375 0 5.789 1.219 2.437 1.219 3.75 3.328 1.312 2.086 1.312 4.734 0 2.836-1.125 5.18t-3.28 4.64q-2.134 2.298-5.157 5.087l-4.406 4.148v.328h14.93z"></path></svg></div><h1 class="Splash_author__0gDgp">by Kamil Mielnik</h1></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"version":"v2.10.0"},"__N_SSG":true},"page":"/","query":{},"buildId":"hf94cues-LcXZRCpAzQ6w","isFallback":false,"gsp":true,"scriptLoader":[]}</script></body></html>
|