@scrabble-solver/scrabble-solver 2.8.11 → 2.9.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/InjectManifest.js.nft.json +1 -0
- package/.next/build-manifest.json +8 -8
- 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/InjectManifest.js.nft.json +1 -0
- package/.next/server/chunks/413.js +37 -14
- package/.next/server/chunks/44.js +1 -1
- package/.next/server/chunks/452.js +894 -0
- package/.next/server/chunks/515.js +9 -4
- package/.next/server/chunks/865.js +230 -116
- package/.next/server/chunks/911.js +0 -887
- package/.next/server/middleware-build-manifest.js +1 -1
- package/.next/server/pages/404.html +3 -3
- 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/_error.js.nft.json +1 -1
- package/.next/server/pages/api/dictionary/[locale]/[word].js +1 -1
- package/.next/server/pages/api/dictionary/[locale]/[word].js.nft.json +1 -1
- package/.next/server/pages/api/dictionary/[locale].js +200 -0
- package/.next/server/pages/api/dictionary/[locale].js.nft.json +1 -0
- package/.next/server/pages/api/solve.js +7 -1
- package/.next/server/pages/api/solve.js.nft.json +1 -1
- package/.next/server/pages/api/verify.js +1 -1
- package/.next/server/pages/api/verify.js.nft.json +1 -1
- package/.next/server/pages/index.html +7 -7
- package/.next/server/pages/index.js +79 -30
- 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 -0
- package/.next/static/{VJkrGviICslA_8zNVJ-g- → Oki2Ia4sgLw021iM7byAe}/_buildManifest.js +1 -1
- package/.next/static/{VJkrGviICslA_8zNVJ-g- → Oki2Ia4sgLw021iM7byAe}/_ssgManifest.js +0 -0
- package/.next/static/chunks/317-e7d5d859f1f95938.js +1 -0
- package/.next/static/chunks/pages/_app-10893b318367f97c.js +1 -0
- package/.next/static/chunks/pages/index-b1ffeaddd9fb64b5.js +1 -0
- package/.next/static/css/e3d218f4ea72c5fb.css +1 -0
- package/.next/trace +52 -42
- package/next.config.js +11 -0
- package/package.json +17 -11
- package/src/components/Board/BoardPure.tsx +2 -7
- package/src/components/Board/components/Cell/Cell.module.scss +1 -1
- package/src/components/Board/components/Cell/Cell.tsx +4 -1
- package/src/components/Board/components/Cell/CellPure.tsx +12 -1
- package/src/components/Splash/Splash.module.scss +1 -1
- package/src/components/SvgFontCss/SvgFontCss.tsx +2 -1
- package/src/pages/api/dictionary/[locale]/index.ts +53 -0
- package/src/pages/api/solve.ts +6 -0
- package/src/pages/index.tsx +14 -2
- package/src/sdk/fetch.ts +30 -0
- package/src/sdk/fetchJson.ts +10 -31
- package/src/sdk/getDictionary.ts +11 -0
- package/src/service-worker/dictionaries/constants.ts +5 -0
- package/src/service-worker/dictionaries/expirationManager.ts +9 -0
- package/src/service-worker/dictionaries/getDictionary.ts +22 -0
- package/src/service-worker/dictionaries/getDictionaryUrl.ts +7 -0
- package/src/service-worker/dictionaries/index.ts +2 -0
- package/src/service-worker/dictionaries/revalidateDictionary.ts +35 -0
- package/src/service-worker/getTrie.ts +26 -0
- package/src/service-worker/index.ts +22 -0
- package/src/service-worker/routeSolveRequests.ts +37 -0
- package/src/service-worker/routeVerifyRequests.ts +35 -0
- package/src/serviceWorkerManager.ts +26 -0
- package/src/state/sagas.ts +1 -0
- package/src/state/slices/settingsInitialState.ts +20 -1
- package/tsconfig.json +1 -0
- package/.next/static/chunks/317-8e8909dd2f587b64.js +0 -1
- package/.next/static/chunks/pages/_app-57c77cad0f197d93.js +0 -1
- package/.next/static/chunks/pages/index-d3360e075ca3c222.js +0 -1
- package/.next/static/css/9ac903004135f4b1.css +0 -1
|
@@ -132,6 +132,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
132
132
|
|
|
133
133
|
// EXPORTS
|
|
134
134
|
__webpack_require__.d(__webpack_exports__, {
|
|
135
|
+
"config": () => (/* binding */ config),
|
|
135
136
|
"default": () => (/* binding */ api_solve)
|
|
136
137
|
});
|
|
137
138
|
|
|
@@ -544,6 +545,11 @@ const parseRequest = (request)=>{
|
|
|
544
545
|
locale
|
|
545
546
|
};
|
|
546
547
|
};
|
|
548
|
+
const config = {
|
|
549
|
+
api: {
|
|
550
|
+
responseLimit: "25mb"
|
|
551
|
+
}
|
|
552
|
+
};
|
|
547
553
|
/* harmony default export */ const api_solve = (solve);
|
|
548
554
|
|
|
549
555
|
|
|
@@ -931,7 +937,7 @@ exports["default"] = solve;
|
|
|
931
937
|
var __webpack_require__ = require("../../webpack-api-runtime.js");
|
|
932
938
|
__webpack_require__.C(exports);
|
|
933
939
|
var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
|
|
934
|
-
var __webpack_exports__ = __webpack_require__.X(0, [50,429,939,911,44], () => (__webpack_exec__(62316)));
|
|
940
|
+
var __webpack_exports__ = __webpack_require__.X(0, [50,429,939,452,911,44], () => (__webpack_exec__(62316)));
|
|
935
941
|
module.exports = __webpack_exports__;
|
|
936
942
|
|
|
937
943
|
})();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":1,"files":["../../webpack-api-runtime.js","../../chunks/50.js","../../chunks/429.js","../../chunks/939.js","../../chunks/911.js","../../chunks/44.js","../../../package.json"]}
|
|
1
|
+
{"version":1,"files":["../../webpack-api-runtime.js","../../chunks/50.js","../../chunks/429.js","../../chunks/939.js","../../chunks/452.js","../../chunks/911.js","../../chunks/44.js","../../../package.json"]}
|
|
@@ -211,7 +211,7 @@ const parseRequest = (request)=>{
|
|
|
211
211
|
var __webpack_require__ = require("../../webpack-api-runtime.js");
|
|
212
212
|
__webpack_require__.C(exports);
|
|
213
213
|
var __webpack_exec__ = (moduleId) => (__webpack_require__(__webpack_require__.s = moduleId))
|
|
214
|
-
var __webpack_exports__ = __webpack_require__.X(0, [50,429,939,911,44], () => (__webpack_exec__(21623)));
|
|
214
|
+
var __webpack_exports__ = __webpack_require__.X(0, [50,429,939,452,911,44], () => (__webpack_exec__(21623)));
|
|
215
215
|
module.exports = __webpack_exports__;
|
|
216
216
|
|
|
217
217
|
})();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":1,"files":["../../webpack-api-runtime.js","../../chunks/50.js","../../chunks/429.js","../../chunks/939.js","../../chunks/911.js","../../chunks/44.js","../../../package.json"]}
|
|
1
|
+
{"version":1,"files":["../../webpack-api-runtime.js","../../chunks/50.js","../../chunks/429.js","../../chunks/939.js","../../chunks/452.js","../../chunks/911.js","../../chunks/44.js","../../../package.json"]}
|
|
@@ -1,13 +1,13 @@
|
|
|
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/
|
|
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/e3d218f4ea72c5fb.css" as="style"/><link rel="stylesheet" href="/_next/static/css/e3d218f4ea72c5fb.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-10893b318367f97c.js" defer=""></script><script src="/_next/static/chunks/546-447e243fc9de2c59.js" defer=""></script><script src="/_next/static/chunks/317-e7d5d859f1f95938.js" defer=""></script><script src="/_next/static/chunks/pages/index-b1ffeaddd9fb64b5.js" defer=""></script><script src="/_next/static/Oki2Ia4sgLw021iM7byAe/_buildManifest.js" defer=""></script><script src="/_next/static/Oki2Ia4sgLw021iM7byAe/_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.0"><svg class="index_logo__IeyQD" viewBox="0 0 682 166" 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=Roboto+Mono&display=swap');
|
|
2
2
|
|
|
3
3
|
text {
|
|
4
|
-
font-family:
|
|
5
|
-
}</style><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 40, 40)"><rect fill="#efe3ae" height="80" width="80" x="0" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="40" y="40">S</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 126, 40)"><rect fill="#c7d8f9" height="80" width="80" x="86" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="126" y="40">C</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 212, 40)"><rect fill="#efe3ae" height="80" width="80" x="172" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="212" y="40">R</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 298, 40)"><rect fill="#efe3ae" height="80" width="80" x="258" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="298" y="40">A</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 384, 40)"><rect fill="#c7d8f9" height="80" width="80" x="344" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="384" y="40">B</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 470, 40)"><rect fill="#c7d8f9" height="80" width="80" x="430" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="470" y="40">B</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 556, 40)"><rect fill="#efe3ae" height="80" width="80" x="516" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="556" y="40">L</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 642, 40)"><rect fill="#efe3ae" height="80" width="80" x="602" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="642" y="40">E</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 40, 40)"><rect fill="#efe3ae" height="80" width="80" x="0" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="40" y="126">S</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 126, 40)"><rect fill="#efe3ae" height="80" width="80" x="86" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="126" y="126">O</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 212, 40)"><rect fill="#efe3ae" height="80" width="80" x="172" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="212" y="126">L</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 298, 40)"><rect fill="#f7c2aa" height="80" width="80" x="258" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="298" y="126">V</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 384, 40)"><rect fill="#efe3ae" height="80" width="80" x="344" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="384" y="126">E</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 470, 40)"><rect fill="#efe3ae" height="80" width="80" x="430" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="470" y="126">R</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 642, 40)"><rect fill="#bae3ba" height="80" width="80" x="602" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="642" y="126">2</text></g></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 class="Splash_logoGrayscale__qe_QT" viewBox="0 0 682 166" 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=Roboto+Mono&display=swap');
|
|
4
|
+
font-family: 'Open Sans';
|
|
5
|
+
}</style><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 40, 40)"><rect fill="#efe3ae" height="80" width="80" x="0" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="40" y="40">S</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 126, 40)"><rect fill="#c7d8f9" height="80" width="80" x="86" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="126" y="40">C</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 212, 40)"><rect fill="#efe3ae" height="80" width="80" x="172" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="212" y="40">R</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 298, 40)"><rect fill="#efe3ae" height="80" width="80" x="258" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="298" y="40">A</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 384, 40)"><rect fill="#c7d8f9" height="80" width="80" x="344" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="384" y="40">B</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 470, 40)"><rect fill="#c7d8f9" height="80" width="80" x="430" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="470" y="40">B</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 556, 40)"><rect fill="#efe3ae" height="80" width="80" x="516" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="556" y="40">L</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 642, 40)"><rect fill="#efe3ae" height="80" width="80" x="602" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="642" y="40">E</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 40, 40)"><rect fill="#efe3ae" height="80" width="80" x="0" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="40" y="126">S</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 126, 40)"><rect fill="#efe3ae" height="80" width="80" x="86" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="126" y="126">O</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 212, 40)"><rect fill="#efe3ae" height="80" width="80" x="172" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="212" y="126">L</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 298, 40)"><rect fill="#f7c2aa" height="80" width="80" x="258" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="298" y="126">V</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 384, 40)"><rect fill="#efe3ae" height="80" width="80" x="344" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="384" y="126">E</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 470, 40)"><rect fill="#efe3ae" height="80" width="80" x="430" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="470" y="126">R</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 642, 40)"><rect fill="#bae3ba" height="80" width="80" x="602" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="642" y="126">2</text></g></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 class="Splash_logoGrayscale__qe_QT" viewBox="0 0 682 166" 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=Roboto+Mono&display=swap');
|
|
6
6
|
|
|
7
7
|
text {
|
|
8
|
-
font-family:
|
|
9
|
-
}</style><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 40, 40)"><rect fill="#efe3ae" height="80" width="80" x="0" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="40" y="40">S</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 126, 40)"><rect fill="#c7d8f9" height="80" width="80" x="86" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="126" y="40">C</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 212, 40)"><rect fill="#efe3ae" height="80" width="80" x="172" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="212" y="40">R</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 298, 40)"><rect fill="#efe3ae" height="80" width="80" x="258" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="298" y="40">A</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 384, 40)"><rect fill="#c7d8f9" height="80" width="80" x="344" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="384" y="40">B</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 470, 40)"><rect fill="#c7d8f9" height="80" width="80" x="430" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="470" y="40">B</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 556, 40)"><rect fill="#efe3ae" height="80" width="80" x="516" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="556" y="40">L</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 642, 40)"><rect fill="#efe3ae" height="80" width="80" x="602" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="642" y="40">E</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 40, 40)"><rect fill="#efe3ae" height="80" width="80" x="0" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="40" y="126">S</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 126, 40)"><rect fill="#efe3ae" height="80" width="80" x="86" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="126" y="126">O</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 212, 40)"><rect fill="#efe3ae" height="80" width="80" x="172" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="212" y="126">L</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 298, 40)"><rect fill="#f7c2aa" height="80" width="80" x="258" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="298" y="126">V</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 384, 40)"><rect fill="#efe3ae" height="80" width="80" x="344" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="384" y="126">E</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 470, 40)"><rect fill="#efe3ae" height="80" width="80" x="430" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="470" y="126">R</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 642, 40)"><rect fill="#bae3ba" height="80" width="80" x="602" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="642" y="126">2</text></g></svg><svg class="Splash_logoColor__InOR_" viewBox="0 0 682 166" xmlns="http://www.w3.org/2000/svg"><style type="text/css">@import url(
|
|
8
|
+
font-family: 'Open Sans';
|
|
9
|
+
}</style><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 40, 40)"><rect fill="#efe3ae" height="80" width="80" x="0" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="40" y="40">S</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 126, 40)"><rect fill="#c7d8f9" height="80" width="80" x="86" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="126" y="40">C</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 212, 40)"><rect fill="#efe3ae" height="80" width="80" x="172" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="212" y="40">R</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 298, 40)"><rect fill="#efe3ae" height="80" width="80" x="258" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="298" y="40">A</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 384, 40)"><rect fill="#c7d8f9" height="80" width="80" x="344" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="384" y="40">B</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 470, 40)"><rect fill="#c7d8f9" height="80" width="80" x="430" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="470" y="40">B</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 556, 40)"><rect fill="#efe3ae" height="80" width="80" x="516" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="556" y="40">L</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 642, 40)"><rect fill="#efe3ae" height="80" width="80" x="602" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="642" y="40">E</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 40, 40)"><rect fill="#efe3ae" height="80" width="80" x="0" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="40" y="126">S</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 126, 40)"><rect fill="#efe3ae" height="80" width="80" x="86" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="126" y="126">O</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 212, 40)"><rect fill="#efe3ae" height="80" width="80" x="172" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="212" y="126">L</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 298, 40)"><rect fill="#f7c2aa" height="80" width="80" x="258" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="298" y="126">V</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 384, 40)"><rect fill="#efe3ae" height="80" width="80" x="344" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="384" y="126">E</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 470, 40)"><rect fill="#efe3ae" height="80" width="80" x="430" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="470" y="126">R</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 642, 40)"><rect fill="#bae3ba" height="80" width="80" x="602" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="642" y="126">2</text></g></svg><svg class="Splash_logoColor__InOR_" viewBox="0 0 682 166" 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=Roboto+Mono&display=swap');
|
|
10
10
|
|
|
11
11
|
text {
|
|
12
|
-
font-family:
|
|
13
|
-
}</style><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 40, 40)"><rect fill="#efe3ae" height="80" width="80" x="0" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="40" y="40">S</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 126, 40)"><rect fill="#c7d8f9" height="80" width="80" x="86" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="126" y="40">C</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 212, 40)"><rect fill="#efe3ae" height="80" width="80" x="172" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="212" y="40">R</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 298, 40)"><rect fill="#efe3ae" height="80" width="80" x="258" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="298" y="40">A</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 384, 40)"><rect fill="#c7d8f9" height="80" width="80" x="344" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="384" y="40">B</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 470, 40)"><rect fill="#c7d8f9" height="80" width="80" x="430" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="470" y="40">B</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 556, 40)"><rect fill="#efe3ae" height="80" width="80" x="516" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="556" y="40">L</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 642, 40)"><rect fill="#efe3ae" height="80" width="80" x="602" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="642" y="40">E</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 40, 40)"><rect fill="#efe3ae" height="80" width="80" x="0" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="40" y="126">S</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 126, 40)"><rect fill="#efe3ae" height="80" width="80" x="86" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="126" y="126">O</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 212, 40)"><rect fill="#efe3ae" height="80" width="80" x="172" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="212" y="126">L</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 298, 40)"><rect fill="#f7c2aa" height="80" width="80" x="258" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="298" y="126">V</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 384, 40)"><rect fill="#efe3ae" height="80" width="80" x="344" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="384" y="126">E</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 470, 40)"><rect fill="#efe3ae" height="80" width="80" x="430" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="470" y="126">R</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 642, 40)"><rect fill="#bae3ba" height="80" width="80" x="602" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="642" y="126">2</text></g></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.
|
|
12
|
+
font-family: 'Open Sans';
|
|
13
|
+
}</style><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 40, 40)"><rect fill="#efe3ae" height="80" width="80" x="0" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="40" y="40">S</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 126, 40)"><rect fill="#c7d8f9" height="80" width="80" x="86" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="126" y="40">C</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 212, 40)"><rect fill="#efe3ae" height="80" width="80" x="172" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="212" y="40">R</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 298, 40)"><rect fill="#efe3ae" height="80" width="80" x="258" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="298" y="40">A</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 384, 40)"><rect fill="#c7d8f9" height="80" width="80" x="344" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="384" y="40">B</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 470, 40)"><rect fill="#c7d8f9" height="80" width="80" x="430" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="470" y="40">B</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 556, 40)"><rect fill="#efe3ae" height="80" width="80" x="516" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="556" y="40">L</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 642, 40)"><rect fill="#efe3ae" height="80" width="80" x="602" y="0"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="642" y="40">E</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 40, 40)"><rect fill="#efe3ae" height="80" width="80" x="0" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="40" y="126">S</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 126, 40)"><rect fill="#efe3ae" height="80" width="80" x="86" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="126" y="126">O</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 212, 40)"><rect fill="#efe3ae" height="80" width="80" x="172" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="212" y="126">L</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 298, 40)"><rect fill="#f7c2aa" height="80" width="80" x="258" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="298" y="126">V</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 384, 40)"><rect fill="#efe3ae" height="80" width="80" x="344" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="384" y="126">E</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 470, 40)"><rect fill="#efe3ae" height="80" width="80" x="430" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="470" y="126">R</text></g><g class="PlainTiles_tile__4eIjX" transform="rotate(0, 642, 40)"><rect fill="#bae3ba" height="80" width="80" x="602" y="86"></rect><text dominant-baseline="central" font-family="Open Sans" font-size="48" font-weight="bold" text-anchor="middle" x="642" y="126">2</text></g></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.0"},"__N_SSG":true},"page":"/","query":{},"buildId":"Oki2Ia4sgLw021iM7byAe","isFallback":false,"gsp":true,"scriptLoader":[]}</script></body></html>
|
|
@@ -61,11 +61,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
61
61
|
/* harmony import */ var hooks__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(26183);
|
|
62
62
|
/* harmony import */ var lib__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(75558);
|
|
63
63
|
/* harmony import */ var parameters__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(90485);
|
|
64
|
-
/* harmony import */ var
|
|
65
|
-
/* harmony import */ var
|
|
66
|
-
/* harmony import */ var
|
|
67
|
-
var
|
|
68
|
-
([components__WEBPACK_IMPORTED_MODULE_8__, hooks__WEBPACK_IMPORTED_MODULE_9__,
|
|
64
|
+
/* harmony import */ var serviceWorkerManager__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(86554);
|
|
65
|
+
/* harmony import */ var state__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(51413);
|
|
66
|
+
/* harmony import */ var _index_module_scss__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(46173);
|
|
67
|
+
/* harmony import */ var _index_module_scss__WEBPACK_IMPORTED_MODULE_14___default = /*#__PURE__*/__webpack_require__.n(_index_module_scss__WEBPACK_IMPORTED_MODULE_14__);
|
|
68
|
+
var __webpack_async_dependencies__ = __webpack_handle_async_dependencies__([components__WEBPACK_IMPORTED_MODULE_8__, hooks__WEBPACK_IMPORTED_MODULE_9__, state__WEBPACK_IMPORTED_MODULE_13__]);
|
|
69
|
+
([components__WEBPACK_IMPORTED_MODULE_8__, hooks__WEBPACK_IMPORTED_MODULE_9__, state__WEBPACK_IMPORTED_MODULE_13__] = __webpack_async_dependencies__.then ? (await __webpack_async_dependencies__)() : __webpack_async_dependencies__);
|
|
70
|
+
|
|
69
71
|
|
|
70
72
|
|
|
71
73
|
|
|
@@ -91,45 +93,54 @@ const Index = ({ version })=>{
|
|
|
91
93
|
const [boardRef, { height: boardHeight }] = (0,react_use__WEBPACK_IMPORTED_MODULE_7__.useMeasure)();
|
|
92
94
|
const [contentRef, { height: contentHeight , width: contentWidth }] = (0,react_use__WEBPACK_IMPORTED_MODULE_7__.useMeasure)();
|
|
93
95
|
const [resultsContainerRef, { height: resultsContainerHeight , width: resultsContainerWidth }] = (0,react_use__WEBPACK_IMPORTED_MODULE_7__.useMeasure)();
|
|
94
|
-
const config = (0,
|
|
96
|
+
const config = (0,state__WEBPACK_IMPORTED_MODULE_13__/* .useTypedSelector */ .ix)(state__WEBPACK_IMPORTED_MODULE_13__/* .selectConfig */ .$o);
|
|
95
97
|
const cellSize = (0,lib__WEBPACK_IMPORTED_MODULE_10__/* .getCellSize */ .Dz)(config, contentWidth - resultsContainerWidth, contentHeight);
|
|
96
|
-
const
|
|
98
|
+
const isInitializedInitial = contentWidth > 0 && boardHeight > 0 && resultsContainerWidth > 0;
|
|
99
|
+
const { 0: isInitialized , 1: setIsInitialized } = (0,react__WEBPACK_IMPORTED_MODULE_4__.useState)(isInitializedInitial);
|
|
97
100
|
const resultsHeight = boardHeight - parameters__WEBPACK_IMPORTED_MODULE_11__/* .DICTIONARY_HEIGHT */ .n6 - (isTablet ? parameters__WEBPACK_IMPORTED_MODULE_11__/* .COMPONENTS_SPACING_MOBILE */ .Sg : parameters__WEBPACK_IMPORTED_MODULE_11__/* .COMPONENTS_SPACING */ .tr);
|
|
98
101
|
const handleClear = ()=>{
|
|
99
|
-
dispatch((0,
|
|
102
|
+
dispatch((0,state__WEBPACK_IMPORTED_MODULE_13__/* .reset */ .mc)());
|
|
100
103
|
};
|
|
101
104
|
const handleSubmit = (event)=>{
|
|
102
105
|
event.preventDefault();
|
|
103
|
-
dispatch(
|
|
106
|
+
dispatch(state__WEBPACK_IMPORTED_MODULE_13__/* .solveSlice.actions.submit */ .TP.actions.submit());
|
|
104
107
|
};
|
|
105
108
|
const handleSplashAnimationEnd = (event)=>{
|
|
106
|
-
if (event.target === event.currentTarget && !
|
|
109
|
+
if (event.target === event.currentTarget && !state__WEBPACK_IMPORTED_MODULE_13__/* .localStorage.getHasVisited */ .Xb.getHasVisited()) {
|
|
107
110
|
setShowSettings(true);
|
|
108
|
-
|
|
111
|
+
state__WEBPACK_IMPORTED_MODULE_13__/* .localStorage.setHasVisited */ .Xb.setHasVisited(true);
|
|
109
112
|
}
|
|
110
113
|
};
|
|
111
114
|
(0,hooks__WEBPACK_IMPORTED_MODULE_9__/* .useLocalStorage */ ._)();
|
|
112
115
|
(0,react_use__WEBPACK_IMPORTED_MODULE_7__.useEffectOnce)(()=>{
|
|
113
|
-
dispatch((0,
|
|
116
|
+
dispatch((0,state__WEBPACK_IMPORTED_MODULE_13__/* .initialize */ .j2)());
|
|
117
|
+
setTimeout(()=>{
|
|
118
|
+
setIsInitialized(true);
|
|
119
|
+
}, 100);
|
|
114
120
|
});
|
|
121
|
+
(0,react__WEBPACK_IMPORTED_MODULE_4__.useEffect)(()=>{
|
|
122
|
+
if (true) {
|
|
123
|
+
(0,serviceWorkerManager__WEBPACK_IMPORTED_MODULE_12__/* .registerServiceWorker */ .$)();
|
|
124
|
+
}
|
|
125
|
+
}, []);
|
|
115
126
|
return /*#__PURE__*/ (0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)(react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.Fragment, {
|
|
116
127
|
children: [
|
|
117
128
|
/*#__PURE__*/ (0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)("div", {
|
|
118
|
-
className: classnames__WEBPACK_IMPORTED_MODULE_1___default()((
|
|
119
|
-
[(
|
|
129
|
+
className: classnames__WEBPACK_IMPORTED_MODULE_1___default()((_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().index), {
|
|
130
|
+
[(_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().initialized)]: isInitialized
|
|
120
131
|
}),
|
|
121
132
|
children: [
|
|
122
133
|
/*#__PURE__*/ (0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)("div", {
|
|
123
|
-
className: (
|
|
134
|
+
className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().nav),
|
|
124
135
|
children: [
|
|
125
136
|
/*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx("div", {
|
|
126
|
-
className: (
|
|
137
|
+
className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().navLogo),
|
|
127
138
|
children: /*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx("a", {
|
|
128
|
-
className: (
|
|
139
|
+
className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().logoContainer),
|
|
129
140
|
href: "/",
|
|
130
141
|
title: version,
|
|
131
142
|
children: /*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx(components__WEBPACK_IMPORTED_MODULE_8__/* .Logo */ .TR, {
|
|
132
|
-
className: (
|
|
143
|
+
className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().logo)
|
|
133
144
|
})
|
|
134
145
|
})
|
|
135
146
|
}),
|
|
@@ -143,13 +154,13 @@ const Index = ({ version })=>{
|
|
|
143
154
|
]
|
|
144
155
|
}),
|
|
145
156
|
/*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx("div", {
|
|
146
|
-
className: (
|
|
157
|
+
className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().contentWrapper),
|
|
147
158
|
children: /*#__PURE__*/ (0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)("div", {
|
|
148
|
-
className: (
|
|
159
|
+
className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().content),
|
|
149
160
|
ref: contentRef,
|
|
150
161
|
children: [
|
|
151
162
|
/*#__PURE__*/ (0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)("form", {
|
|
152
|
-
className: (
|
|
163
|
+
className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().boardContainer),
|
|
153
164
|
onSubmit: handleSubmit,
|
|
154
165
|
children: [
|
|
155
166
|
contentWidth > 0 && /*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx(components__WEBPACK_IMPORTED_MODULE_8__/* .Board */ .$l, {
|
|
@@ -157,20 +168,20 @@ const Index = ({ version })=>{
|
|
|
157
168
|
innerRef: boardRef
|
|
158
169
|
}),
|
|
159
170
|
/*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx("input", {
|
|
160
|
-
className: (
|
|
171
|
+
className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().submitInput),
|
|
161
172
|
tabIndex: -1,
|
|
162
173
|
type: "submit"
|
|
163
174
|
})
|
|
164
175
|
]
|
|
165
176
|
}),
|
|
166
177
|
/*#__PURE__*/ (0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)("div", {
|
|
167
|
-
className: (
|
|
178
|
+
className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().sidebar),
|
|
168
179
|
style: {
|
|
169
180
|
height: boardHeight + 1
|
|
170
181
|
},
|
|
171
182
|
children: [
|
|
172
183
|
/*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx(components__WEBPACK_IMPORTED_MODULE_8__/* .Well */ .tW, {
|
|
173
|
-
className: (
|
|
184
|
+
className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().resultsContainer),
|
|
174
185
|
ref: resultsContainerRef,
|
|
175
186
|
children: resultsContainerWidth > 0 && resultsContainerHeight > 0 && /*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx(components__WEBPACK_IMPORTED_MODULE_8__/* .Results */ .u9, {
|
|
176
187
|
height: resultsHeight,
|
|
@@ -179,16 +190,16 @@ const Index = ({ version })=>{
|
|
|
179
190
|
}),
|
|
180
191
|
/*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx(components__WEBPACK_IMPORTED_MODULE_8__/* .Well */ .tW, {
|
|
181
192
|
children: /*#__PURE__*/ (0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)("div", {
|
|
182
|
-
className: (
|
|
193
|
+
className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().dictionary),
|
|
183
194
|
style: {
|
|
184
195
|
height: parameters__WEBPACK_IMPORTED_MODULE_11__/* .DICTIONARY_HEIGHT */ .n6
|
|
185
196
|
},
|
|
186
197
|
children: [
|
|
187
198
|
/*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx(components__WEBPACK_IMPORTED_MODULE_8__/* .Dictionary */ .Xy, {
|
|
188
|
-
className: (
|
|
199
|
+
className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().dictionaryOutput)
|
|
189
200
|
}),
|
|
190
201
|
/*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx(components__WEBPACK_IMPORTED_MODULE_8__/* .DictionaryInput */ .Z$, {
|
|
191
|
-
className: (
|
|
202
|
+
className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().dictionaryInput)
|
|
192
203
|
})
|
|
193
204
|
]
|
|
194
205
|
})
|
|
@@ -199,14 +210,14 @@ const Index = ({ version })=>{
|
|
|
199
210
|
})
|
|
200
211
|
}),
|
|
201
212
|
/*#__PURE__*/ (0,react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsxs)("form", {
|
|
202
|
-
className: (
|
|
213
|
+
className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().rackContainer),
|
|
203
214
|
onSubmit: handleSubmit,
|
|
204
215
|
children: [
|
|
205
216
|
/*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx(components__WEBPACK_IMPORTED_MODULE_8__/* .Rack */ .F4, {
|
|
206
|
-
className: (
|
|
217
|
+
className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().rack)
|
|
207
218
|
}),
|
|
208
219
|
/*#__PURE__*/ react_jsx_runtime__WEBPACK_IMPORTED_MODULE_0__.jsx("input", {
|
|
209
|
-
className: (
|
|
220
|
+
className: (_index_module_scss__WEBPACK_IMPORTED_MODULE_14___default().submitInput),
|
|
210
221
|
tabIndex: -1,
|
|
211
222
|
type: "submit"
|
|
212
223
|
})
|
|
@@ -256,6 +267,44 @@ const readVersion = async ()=>{
|
|
|
256
267
|
__webpack_async_result__();
|
|
257
268
|
} catch(e) { __webpack_async_result__(e); } });
|
|
258
269
|
|
|
270
|
+
/***/ }),
|
|
271
|
+
|
|
272
|
+
/***/ 86554:
|
|
273
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
274
|
+
|
|
275
|
+
"use strict";
|
|
276
|
+
|
|
277
|
+
// EXPORTS
|
|
278
|
+
__webpack_require__.d(__webpack_exports__, {
|
|
279
|
+
"$": () => (/* binding */ registerServiceWorker)
|
|
280
|
+
});
|
|
281
|
+
|
|
282
|
+
// UNUSED EXPORTS: getServiceWorker
|
|
283
|
+
|
|
284
|
+
;// CONCATENATED MODULE: external "workbox-window"
|
|
285
|
+
const external_workbox_window_namespaceObject = require("workbox-window");
|
|
286
|
+
;// CONCATENATED MODULE: ./src/serviceWorkerManager.ts
|
|
287
|
+
|
|
288
|
+
let serviceWorker = null;
|
|
289
|
+
const registerServiceWorker = ()=>{
|
|
290
|
+
if (!globalThis.navigator || !("serviceWorker" in globalThis.navigator)) {
|
|
291
|
+
return;
|
|
292
|
+
}
|
|
293
|
+
serviceWorker = new external_workbox_window_namespaceObject.Workbox("/service-worker.js");
|
|
294
|
+
serviceWorker.register({
|
|
295
|
+
immediate: true
|
|
296
|
+
});
|
|
297
|
+
};
|
|
298
|
+
const getServiceWorker = ()=>{
|
|
299
|
+
if (false) {}
|
|
300
|
+
if (serviceWorker) {
|
|
301
|
+
return serviceWorker;
|
|
302
|
+
}
|
|
303
|
+
registerServiceWorker();
|
|
304
|
+
return serviceWorker;
|
|
305
|
+
};
|
|
306
|
+
|
|
307
|
+
|
|
259
308
|
/***/ }),
|
|
260
309
|
|
|
261
310
|
/***/ 75184:
|