@abtnode/blocklet-services 1.6.23

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.
Files changed (76) hide show
  1. package/LICENSE +13 -0
  2. package/README.md +84 -0
  3. package/build/asset-manifest.json +36 -0
  4. package/build/favicon.ico +0 -0
  5. package/build/images/blocklet.png +0 -0
  6. package/build/index.html +1 -0
  7. package/build/manifest.json +15 -0
  8. package/build/precache-manifest.b61da416864625d7da6840b710c5fd05.js +150 -0
  9. package/build/service-worker.js +39 -0
  10. package/build/static/css/2.73d52aac.chunk.css +2 -0
  11. package/build/static/css/2.73d52aac.chunk.css.map +1 -0
  12. package/build/static/js/2.adca7e30.chunk.js +3 -0
  13. package/build/static/js/2.adca7e30.chunk.js.LICENSE.txt +113 -0
  14. package/build/static/js/2.adca7e30.chunk.js.map +1 -0
  15. package/build/static/js/3.9cf8cde1.chunk.js +3 -0
  16. package/build/static/js/3.9cf8cde1.chunk.js.LICENSE.txt +19 -0
  17. package/build/static/js/3.9cf8cde1.chunk.js.map +1 -0
  18. package/build/static/js/4.3bcd2384.chunk.js +2 -0
  19. package/build/static/js/4.3bcd2384.chunk.js.map +1 -0
  20. package/build/static/js/5.a0b39d30.chunk.js +2 -0
  21. package/build/static/js/5.a0b39d30.chunk.js.map +1 -0
  22. package/build/static/js/6.91e31d64.chunk.js +2 -0
  23. package/build/static/js/6.91e31d64.chunk.js.map +1 -0
  24. package/build/static/js/7.aa6a9bc1.chunk.js +2 -0
  25. package/build/static/js/7.aa6a9bc1.chunk.js.map +1 -0
  26. package/build/static/js/main.0fef8e40.chunk.js +2 -0
  27. package/build/static/js/main.0fef8e40.chunk.js.map +1 -0
  28. package/build/static/js/runtime-main.8d9f8ef7.js +2 -0
  29. package/build/static/js/runtime-main.8d9f8ef7.js.map +1 -0
  30. package/build/static/media/rubik-all-400-normal.c2324103.woff +0 -0
  31. package/build/static/media/rubik-all-500-normal.000c3408.woff +0 -0
  32. package/build/static/media/rubik-all-600-normal.30df2fd0.woff +0 -0
  33. package/build/static/media/rubik-cyrillic-400-normal.aa383bbd.woff2 +0 -0
  34. package/build/static/media/rubik-cyrillic-500-normal.27a1ebd4.woff2 +0 -0
  35. package/build/static/media/rubik-cyrillic-600-normal.74d5cdba.woff2 +0 -0
  36. package/build/static/media/rubik-cyrillic-ext-400-normal.b8647475.woff2 +0 -0
  37. package/build/static/media/rubik-cyrillic-ext-500-normal.860932d9.woff2 +0 -0
  38. package/build/static/media/rubik-cyrillic-ext-600-normal.942f240f.woff2 +0 -0
  39. package/build/static/media/rubik-hebrew-400-normal.2c9e3c2a.woff2 +0 -0
  40. package/build/static/media/rubik-hebrew-500-normal.08d6e502.woff2 +0 -0
  41. package/build/static/media/rubik-hebrew-600-normal.bfa32e44.woff2 +0 -0
  42. package/build/static/media/rubik-latin-400-normal.b8fd53c5.woff2 +0 -0
  43. package/build/static/media/rubik-latin-500-normal.595f1a98.woff2 +0 -0
  44. package/build/static/media/rubik-latin-600-normal.5f06934f.woff2 +0 -0
  45. package/build/static/media/rubik-latin-ext-400-normal.3c5c378e.woff2 +0 -0
  46. package/build/static/media/rubik-latin-ext-500-normal.5663c731.woff2 +0 -0
  47. package/build/static/media/rubik-latin-ext-600-normal.ff159cb8.woff2 +0 -0
  48. package/build/static/media/ubuntu-mono-all-400-normal.e39678a8.woff +0 -0
  49. package/build/static/media/ubuntu-mono-cyrillic-400-normal.e09900e7.woff2 +0 -0
  50. package/build/static/media/ubuntu-mono-cyrillic-ext-400-normal.762d0b06.woff2 +0 -0
  51. package/build/static/media/ubuntu-mono-greek-400-normal.81c98658.woff2 +0 -0
  52. package/build/static/media/ubuntu-mono-greek-ext-400-normal.1af17851.woff2 +0 -0
  53. package/build/static/media/ubuntu-mono-latin-400-normal.469ee478.woff2 +0 -0
  54. package/build/static/media/ubuntu-mono-latin-ext-400-normal.e28ff028.woff2 +0 -0
  55. package/lib/cache.js +25 -0
  56. package/lib/index.js +443 -0
  57. package/lib/mount.js +52 -0
  58. package/lib/util.js +17 -0
  59. package/package.json +119 -0
  60. package/services/auth/index.js +290 -0
  61. package/services/auth/libs/auth.js +76 -0
  62. package/services/auth/libs/jwt.js +73 -0
  63. package/services/auth/meta.json +61 -0
  64. package/services/auth/routes/blocklet-info.js +33 -0
  65. package/services/auth/routes/env.js +33 -0
  66. package/services/auth/routes/invite.js +80 -0
  67. package/services/auth/routes/issue-passport.js +58 -0
  68. package/services/auth/routes/login.js +230 -0
  69. package/services/auth/routes/lost-passport-issue.js +5 -0
  70. package/services/auth/routes/lost-passport-list.js +6 -0
  71. package/services/auth/routes/notification.js +257 -0
  72. package/services/auth/routes/passport.js +18 -0
  73. package/services/auth/routes/session.js +27 -0
  74. package/services/auth/state/index.js +30 -0
  75. package/services/auth/state/message.js +32 -0
  76. package/services/auth/util/index.js +35 -0
package/LICENSE ADDED
@@ -0,0 +1,13 @@
1
+ Copyright 2018-2020 ArcBlock
2
+
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
package/README.md ADDED
@@ -0,0 +1,84 @@
1
+ # Blocklet Services
2
+
3
+ Aggregator to mount all blocklet services and make them work together.
4
+
5
+ ## Usage
6
+
7
+ ```shell
8
+ yarn add @abtnode/service-server
9
+ ```
10
+
11
+ Then:
12
+
13
+ ```javascript
14
+ const createServer = require('@abtnode/service-server');
15
+ const ABTNode = require('@abtnode/core');
16
+
17
+ const node = ABTNode({ ...nodeOptions });
18
+ const server = createServer(node, { ...globalOptions });
19
+
20
+ server.mountService('@abtnode/auth-service', { ...loginServiceOptions });
21
+ server.mountService('@abtnode/acl-service', { ...aclServiceOptions });
22
+ server.mountService('@abtnode/payment-service', { ...paymentServiceOptions });
23
+
24
+ node.onReady(() => {
25
+ server.listen(5000, () => {
26
+ console.log('ABT Node Service server ready on port 5000');
27
+ });
28
+ });
29
+ ```
30
+
31
+ ## FAQ?
32
+
33
+ ### Service Options vs Configurations
34
+
35
+ - Options: alter global ways that service works, such as `dataDir`, the loader and each service can have their own options, and the loader options are merged into service options
36
+ - Configurations: customize how each service handles the request on a certain URL mapping
37
+
38
+ ## Usage
39
+
40
+ ## 1. Start a Production Node
41
+
42
+ ## 2. Configuration
43
+
44
+ ```ini
45
+ PORT=3040
46
+ SKIP_PREFLIGHT_CHECK=true
47
+
48
+ # server only
49
+ ABT_NODE_SESSION_TTL="1d"
50
+ ABT_NODE_MODE="production"
51
+ ABT_NODE_SERVICE_PORT="3041"
52
+
53
+ # this should point to the data directory of node
54
+ ABT_NODE_DATA_DIR="/Users/wangshijun/Develop/arcblock/abt-node/.abtnode"
55
+
56
+ # both server and client
57
+ ABT_NODE_ROUTER_PROVIDER="nginx"
58
+ ABT_NODE_ADMIN_PATH="/admin"
59
+ ABT_NODE_NAME="ABT Node (Dev.Shijun)"
60
+ ABT_NODE_DESCRIPTION="Web Interface to manage your ABT Node"
61
+ ABT_NODE_DID="zNKaT2cjMMW4Js3hnBWUKPcdboQqrPUTWRat"
62
+ ABT_NODE_SERVICE_URL="http://192.168.199.142:3041"
63
+
64
+ # This should be updated to use a running blocklet in your node
65
+ TEST_BLOCKLET_DID="z8ia4e5vAeDsQEE2P26bQqz9oWR1Lxg9qUMaV"
66
+ TEST_BLOCKLET_URL="http://127.0.0.1:8090"
67
+ ```
68
+
69
+ ## 3. Start the service
70
+
71
+ You need 2 terminal windows to start the client and server separately:
72
+
73
+ ```shell
74
+ cd services/login
75
+ DEBUG=@abtnode/*,@arcblock/* npm run start:daemon
76
+ DEBUG=@abtnode/* npm run start:client
77
+ ```
78
+
79
+ Now, you are ready to hacking the login service.
80
+
81
+ ## TO Developers
82
+
83
+ - dependencies for backend should go in `dependencies`
84
+ - dependencies for frontend should go in `devDependencies`
@@ -0,0 +1,36 @@
1
+ {
2
+ "files": {
3
+ "main.js": "/.blocklet/proxy/abtnode-auth-service/static/js/main.0fef8e40.chunk.js",
4
+ "main.js.map": "/.blocklet/proxy/abtnode-auth-service/static/js/main.0fef8e40.chunk.js.map",
5
+ "runtime-main.js": "/.blocklet/proxy/abtnode-auth-service/static/js/runtime-main.8d9f8ef7.js",
6
+ "runtime-main.js.map": "/.blocklet/proxy/abtnode-auth-service/static/js/runtime-main.8d9f8ef7.js.map",
7
+ "static/css/2.73d52aac.chunk.css": "/.blocklet/proxy/abtnode-auth-service/static/css/2.73d52aac.chunk.css",
8
+ "static/js/2.adca7e30.chunk.js": "/.blocklet/proxy/abtnode-auth-service/static/js/2.adca7e30.chunk.js",
9
+ "static/js/2.adca7e30.chunk.js.map": "/.blocklet/proxy/abtnode-auth-service/static/js/2.adca7e30.chunk.js.map",
10
+ "static/js/3.9cf8cde1.chunk.js": "/.blocklet/proxy/abtnode-auth-service/static/js/3.9cf8cde1.chunk.js",
11
+ "static/js/3.9cf8cde1.chunk.js.map": "/.blocklet/proxy/abtnode-auth-service/static/js/3.9cf8cde1.chunk.js.map",
12
+ "static/js/4.3bcd2384.chunk.js": "/.blocklet/proxy/abtnode-auth-service/static/js/4.3bcd2384.chunk.js",
13
+ "static/js/4.3bcd2384.chunk.js.map": "/.blocklet/proxy/abtnode-auth-service/static/js/4.3bcd2384.chunk.js.map",
14
+ "static/js/5.a0b39d30.chunk.js": "/.blocklet/proxy/abtnode-auth-service/static/js/5.a0b39d30.chunk.js",
15
+ "static/js/5.a0b39d30.chunk.js.map": "/.blocklet/proxy/abtnode-auth-service/static/js/5.a0b39d30.chunk.js.map",
16
+ "static/js/6.91e31d64.chunk.js": "/.blocklet/proxy/abtnode-auth-service/static/js/6.91e31d64.chunk.js",
17
+ "static/js/6.91e31d64.chunk.js.map": "/.blocklet/proxy/abtnode-auth-service/static/js/6.91e31d64.chunk.js.map",
18
+ "static/js/7.aa6a9bc1.chunk.js": "/.blocklet/proxy/abtnode-auth-service/static/js/7.aa6a9bc1.chunk.js",
19
+ "static/js/7.aa6a9bc1.chunk.js.map": "/.blocklet/proxy/abtnode-auth-service/static/js/7.aa6a9bc1.chunk.js.map",
20
+ "index.html": "/.blocklet/proxy/abtnode-auth-service/index.html",
21
+ "precache-manifest.b61da416864625d7da6840b710c5fd05.js": "/.blocklet/proxy/abtnode-auth-service/precache-manifest.b61da416864625d7da6840b710c5fd05.js",
22
+ "service-worker.js": "/.blocklet/proxy/abtnode-auth-service/service-worker.js",
23
+ "static/css/2.73d52aac.chunk.css.map": "/.blocklet/proxy/abtnode-auth-service/static/css/2.73d52aac.chunk.css.map",
24
+ "static/js/2.adca7e30.chunk.js.LICENSE.txt": "/.blocklet/proxy/abtnode-auth-service/static/js/2.adca7e30.chunk.js.LICENSE.txt",
25
+ "static/js/3.9cf8cde1.chunk.js.LICENSE.txt": "/.blocklet/proxy/abtnode-auth-service/static/js/3.9cf8cde1.chunk.js.LICENSE.txt",
26
+ "static/media/400.css": "/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-latin-ext-400-normal.e28ff028.woff2",
27
+ "static/media/500.css": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-latin-ext-500-normal.5663c731.woff2",
28
+ "static/media/600.css": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-latin-ext-600-normal.ff159cb8.woff2"
29
+ },
30
+ "entrypoints": [
31
+ "static/js/runtime-main.8d9f8ef7.js",
32
+ "static/css/2.73d52aac.chunk.css",
33
+ "static/js/2.adca7e30.chunk.js",
34
+ "static/js/main.0fef8e40.chunk.js"
35
+ ]
36
+ }
Binary file
Binary file
@@ -0,0 +1 @@
1
+ <!doctype html><html lang="en"><head><meta charset="utf-8"/><link rel="shortcut icon" href="favicon.ico"/><meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=0"/><meta name="theme-color" content="#000000"/><title>Blocklet Auth Service</title><script src=".service/@abtnode/auth-service/api/env"></script><link href="/.blocklet/proxy/abtnode-auth-service/static/css/2.73d52aac.chunk.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div><script>!function(e){function t(t){for(var n,u,i=t[0],l=t[1],s=t[2],f=t[3]||[],d=0,h=[];d<i.length;d++)u=i[d],Object.prototype.hasOwnProperty.call(o,u)&&o[u]&&h.push(o[u][0]),o[u]=0;for(n in l)Object.prototype.hasOwnProperty.call(l,n)&&(e[n]=l[n]);for(p&&p(t),c.push.apply(c,f);h.length;)h.shift()();return a.push.apply(a,s||[]),r()}function r(){for(var e,t=0;t<a.length;t++){for(var r=a[t],n=!0,l=1;l<r.length;l++){var s=r[l];0!==o[s]&&(n=!1)}n&&(a.splice(t--,1),e=i(i.s=r[0]))}return 0===a.length&&(c.forEach((function(e){if(void 0===o[e]){o[e]=null;var t=document.createElement("link");i.nc&&t.setAttribute("nonce",i.nc),t.rel="prefetch",t.as="script",t.href=u(e),document.head.appendChild(t)}})),c.length=0),e}var n={},o={1:0},a=[],c=[];function u(e){return i.p+"static/js/"+({}[e]||e)+"."+{3:"9cf8cde1",4:"3bcd2384",5:"a0b39d30",6:"91e31d64",7:"aa6a9bc1"}[e]+".chunk.js"}function i(t){if(n[t])return n[t].exports;var r=n[t]={i:t,l:!1,exports:{}};return e[t].call(r.exports,r,r.exports,i),r.l=!0,r.exports}i.e=function(e){var t=[],r=o[e];if(0!==r)if(r)t.push(r[2]);else{var n=new Promise((function(t,n){r=o[e]=[t,n]}));t.push(r[2]=n);var a,c=document.createElement("script");c.charset="utf-8",c.timeout=120,i.nc&&c.setAttribute("nonce",i.nc),c.src=u(e);var l=new Error;a=function(t){c.onerror=c.onload=null,clearTimeout(s);var r=o[e];if(0!==r){if(r){var n=t&&("load"===t.type?"missing":t.type),a=t&&t.target&&t.target.src;l.message="Loading chunk "+e+" failed.\n("+n+": "+a+")",l.name="ChunkLoadError",l.type=n,l.request=a,r[1](l)}o[e]=void 0}};var s=setTimeout((function(){a({type:"timeout",target:c})}),12e4);c.onerror=c.onload=a,document.head.appendChild(c)}return Promise.all(t)},i.m=e,i.c=n,i.d=function(e,t,r){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(e,t){if(1&t&&(e=i(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(i.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var n in e)i.d(r,n,function(t){return e[t]}.bind(null,n));return r},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="/.blocklet/proxy/abtnode-auth-service/",i.oe=function(e){throw console.error(e),e};var l=this["webpackJsonp@abtnode/blocklet-services"]=this["webpackJsonp@abtnode/blocklet-services"]||[],s=l.push.bind(l);l.push=t,l=l.slice();for(var f=0;f<l.length;f++)t(l[f]);var p=s;r()}([])</script><script src="/.blocklet/proxy/abtnode-auth-service/static/js/2.adca7e30.chunk.js"></script><script src="/.blocklet/proxy/abtnode-auth-service/static/js/main.0fef8e40.chunk.js"></script></body></html>
@@ -0,0 +1,15 @@
1
+ {
2
+ "short_name": "React App",
3
+ "name": "Create React App Sample",
4
+ "icons": [
5
+ {
6
+ "src": "favicon.ico",
7
+ "sizes": "64x64 32x32 24x24 16x16",
8
+ "type": "image/x-icon"
9
+ }
10
+ ],
11
+ "start_url": ".",
12
+ "display": "standalone",
13
+ "theme_color": "#000000",
14
+ "background_color": "#ffffff"
15
+ }
@@ -0,0 +1,150 @@
1
+ self.__precacheManifest = (self.__precacheManifest || []).concat([
2
+ {
3
+ "revision": "c0a34537f6a498e0a42ec8631e6bb456",
4
+ "url": "/.blocklet/proxy/abtnode-auth-service/index.html"
5
+ },
6
+ {
7
+ "revision": "c14b07c90cab5a065ca0",
8
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/css/2.73d52aac.chunk.css"
9
+ },
10
+ {
11
+ "revision": "c14b07c90cab5a065ca0",
12
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/js/2.adca7e30.chunk.js"
13
+ },
14
+ {
15
+ "revision": "001cd1ced571d272e8edd36766b7e99b",
16
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/js/2.adca7e30.chunk.js.LICENSE.txt"
17
+ },
18
+ {
19
+ "revision": "62e155e1f2299d2fa76a",
20
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/js/3.9cf8cde1.chunk.js"
21
+ },
22
+ {
23
+ "revision": "13c1ee756e3b5cd4765e29c46fdabd06",
24
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/js/3.9cf8cde1.chunk.js.LICENSE.txt"
25
+ },
26
+ {
27
+ "revision": "e10afa7658066698dac6",
28
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/js/4.3bcd2384.chunk.js"
29
+ },
30
+ {
31
+ "revision": "83dcc246003cd3e91983",
32
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/js/5.a0b39d30.chunk.js"
33
+ },
34
+ {
35
+ "revision": "cf4a849947128b5fd244",
36
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/js/6.91e31d64.chunk.js"
37
+ },
38
+ {
39
+ "revision": "394e804fb89ad71a1764",
40
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/js/7.aa6a9bc1.chunk.js"
41
+ },
42
+ {
43
+ "revision": "36efe767557322813106",
44
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/js/main.0fef8e40.chunk.js"
45
+ },
46
+ {
47
+ "revision": "da19c26bfc7dba685da5",
48
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/js/runtime-main.8d9f8ef7.js"
49
+ },
50
+ {
51
+ "revision": "c23241033e8c96b9636d9efc308d4476",
52
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-400-normal.c2324103.woff"
53
+ },
54
+ {
55
+ "revision": "000c3408dcf682e542d6f4f294c4689d",
56
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-500-normal.000c3408.woff"
57
+ },
58
+ {
59
+ "revision": "30df2fd057641a59c6aa03ffa82531ff",
60
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-600-normal.30df2fd0.woff"
61
+ },
62
+ {
63
+ "revision": "aa383bbd5d0ba86f3a27ad595656adc7",
64
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-cyrillic-400-normal.aa383bbd.woff2"
65
+ },
66
+ {
67
+ "revision": "27a1ebd4bf1cfc4c8a13bd7739b43213",
68
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-cyrillic-500-normal.27a1ebd4.woff2"
69
+ },
70
+ {
71
+ "revision": "74d5cdbafd987cf971ea9b0e0fbcaad9",
72
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-cyrillic-600-normal.74d5cdba.woff2"
73
+ },
74
+ {
75
+ "revision": "b8647475d1afee36578be903fe319912",
76
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-cyrillic-ext-400-normal.b8647475.woff2"
77
+ },
78
+ {
79
+ "revision": "860932d931985a269b9889df4d24181c",
80
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-cyrillic-ext-500-normal.860932d9.woff2"
81
+ },
82
+ {
83
+ "revision": "942f240fb236d606bd7bce4f93c9dd7e",
84
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-cyrillic-ext-600-normal.942f240f.woff2"
85
+ },
86
+ {
87
+ "revision": "2c9e3c2a30323dffdbe9fa9399841a7f",
88
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-hebrew-400-normal.2c9e3c2a.woff2"
89
+ },
90
+ {
91
+ "revision": "08d6e502b0802403890e622a96b2b27b",
92
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-hebrew-500-normal.08d6e502.woff2"
93
+ },
94
+ {
95
+ "revision": "bfa32e44e99446cedaf4a5b2db3d892e",
96
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-hebrew-600-normal.bfa32e44.woff2"
97
+ },
98
+ {
99
+ "revision": "b8fd53c58dc08126027abfd33797aede",
100
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-latin-400-normal.b8fd53c5.woff2"
101
+ },
102
+ {
103
+ "revision": "595f1a982cedd7f2184fde80422eca7d",
104
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-latin-500-normal.595f1a98.woff2"
105
+ },
106
+ {
107
+ "revision": "5f06934fc6868bfd9b2a83283f963d00",
108
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-latin-600-normal.5f06934f.woff2"
109
+ },
110
+ {
111
+ "revision": "3c5c378e63b3daab31719e37114bb159",
112
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-latin-ext-400-normal.3c5c378e.woff2"
113
+ },
114
+ {
115
+ "revision": "5663c731a31802eb359cc7bed565b4a0",
116
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-latin-ext-500-normal.5663c731.woff2"
117
+ },
118
+ {
119
+ "revision": "ff159cb8756417487b8ea048166d1ab5",
120
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/media/rubik-latin-ext-600-normal.ff159cb8.woff2"
121
+ },
122
+ {
123
+ "revision": "e39678a87230cf750c906582b8ff81a9",
124
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-all-400-normal.e39678a8.woff"
125
+ },
126
+ {
127
+ "revision": "e09900e7fdb383f6a18b1f59ffd18f7d",
128
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-cyrillic-400-normal.e09900e7.woff2"
129
+ },
130
+ {
131
+ "revision": "762d0b06bd65c176779c1452d1cbb9b0",
132
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-cyrillic-ext-400-normal.762d0b06.woff2"
133
+ },
134
+ {
135
+ "revision": "81c9865835018aeb35b233ff4b4fe206",
136
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-greek-400-normal.81c98658.woff2"
137
+ },
138
+ {
139
+ "revision": "1af17851fff7542ea4a0dbe66287cc91",
140
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-greek-ext-400-normal.1af17851.woff2"
141
+ },
142
+ {
143
+ "revision": "469ee47867fa81c9eb1677cb6df36493",
144
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-latin-400-normal.469ee478.woff2"
145
+ },
146
+ {
147
+ "revision": "e28ff0285aa77eb27b882f15df09c9bc",
148
+ "url": "/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-latin-ext-400-normal.e28ff028.woff2"
149
+ }
150
+ ]);
@@ -0,0 +1,39 @@
1
+ /**
2
+ * Welcome to your Workbox-powered service worker!
3
+ *
4
+ * You'll need to register this file in your web app and you should
5
+ * disable HTTP caching for this file too.
6
+ * See https://goo.gl/nhQhGp
7
+ *
8
+ * The rest of the code is auto-generated. Please don't update this file
9
+ * directly; instead, make changes to your Workbox build configuration
10
+ * and re-run your build process.
11
+ * See https://goo.gl/2aRDsh
12
+ */
13
+
14
+ importScripts("https://storage.googleapis.com/workbox-cdn/releases/4.3.1/workbox-sw.js");
15
+
16
+ importScripts(
17
+ "/.blocklet/proxy/abtnode-auth-service/precache-manifest.b61da416864625d7da6840b710c5fd05.js"
18
+ );
19
+
20
+ self.addEventListener('message', (event) => {
21
+ if (event.data && event.data.type === 'SKIP_WAITING') {
22
+ self.skipWaiting();
23
+ }
24
+ });
25
+
26
+ workbox.core.clientsClaim();
27
+
28
+ /**
29
+ * The workboxSW.precacheAndRoute() method efficiently caches and responds to
30
+ * requests for URLs in the manifest.
31
+ * See https://goo.gl/S9QRab
32
+ */
33
+ self.__precacheManifest = [].concat(self.__precacheManifest || []);
34
+ workbox.precaching.precacheAndRoute(self.__precacheManifest, {});
35
+
36
+ workbox.routing.registerNavigationRoute(workbox.precaching.getCacheKeyForURL("/.blocklet/proxy/abtnode-auth-service/index.html"), {
37
+
38
+ blacklist: [/^\/_/,/\/[^/?]+\.[^/]+$/],
39
+ });
@@ -0,0 +1,2 @@
1
+ @font-face{font-family:"Ubuntu Mono";font-style:normal;font-display:swap;font-weight:400;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-cyrillic-ext-400-normal.762d0b06.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-all-400-normal.e39678a8.woff) format("woff");unicode-range:U+0460-052f,U+1c80-1c88,U+20b4,U+2de0-2dff,U+a640-a69f,U+fe2e-fe2f}@font-face{font-family:"Ubuntu Mono";font-style:normal;font-display:swap;font-weight:400;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-cyrillic-400-normal.e09900e7.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-all-400-normal.e39678a8.woff) format("woff");unicode-range:U+0400-045f,U+0490-0491,U+04b0-04b1,U+2116}@font-face{font-family:"Ubuntu Mono";font-style:normal;font-display:swap;font-weight:400;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-greek-ext-400-normal.1af17851.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-all-400-normal.e39678a8.woff) format("woff");unicode-range:U+1f??}@font-face{font-family:"Ubuntu Mono";font-style:normal;font-display:swap;font-weight:400;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-greek-400-normal.81c98658.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-all-400-normal.e39678a8.woff) format("woff");unicode-range:U+0370-03ff}@font-face{font-family:"Ubuntu Mono";font-style:normal;font-display:swap;font-weight:400;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-latin-ext-400-normal.e28ff028.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-all-400-normal.e39678a8.woff) format("woff");unicode-range:U+0100-024f,U+0259,U+1e??,U+2020,U+20a0-20ab,U+20ad-20cf,U+2113,U+2c60-2c7f,U+a720-a7ff}@font-face{font-family:"Ubuntu Mono";font-style:normal;font-display:swap;font-weight:400;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-latin-400-normal.469ee478.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/ubuntu-mono-all-400-normal.e39678a8.woff) format("woff");unicode-range:U+00??,U+0131,U+0152-0153,U+02bb-02bc,U+02c6,U+02da,U+02dc,U+2000-206f,U+2074,U+20ac,U+2122,U+2191,U+2193,U+2212,U+2215,U+feff,U+fffd}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:400;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-cyrillic-ext-400-normal.b8647475.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-400-normal.c2324103.woff) format("woff");unicode-range:U+0460-052f,U+1c80-1c88,U+20b4,U+2de0-2dff,U+a640-a69f,U+fe2e-fe2f}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:400;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-cyrillic-400-normal.aa383bbd.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-400-normal.c2324103.woff) format("woff");unicode-range:U+0400-045f,U+0490-0491,U+04b0-04b1,U+2116}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:400;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-hebrew-400-normal.2c9e3c2a.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-400-normal.c2324103.woff) format("woff");unicode-range:U+0590-05ff,U+20aa,U+25cc,U+fb1d-fb4f}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:400;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-latin-ext-400-normal.3c5c378e.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-400-normal.c2324103.woff) format("woff");unicode-range:U+0100-024f,U+0259,U+1e??,U+2020,U+20a0-20ab,U+20ad-20cf,U+2113,U+2c60-2c7f,U+a720-a7ff}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:400;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-latin-400-normal.b8fd53c5.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-400-normal.c2324103.woff) format("woff");unicode-range:U+00??,U+0131,U+0152-0153,U+02bb-02bc,U+02c6,U+02da,U+02dc,U+2000-206f,U+2074,U+20ac,U+2122,U+2191,U+2193,U+2212,U+2215,U+feff,U+fffd}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:500;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-cyrillic-ext-500-normal.860932d9.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-500-normal.000c3408.woff) format("woff");unicode-range:U+0460-052f,U+1c80-1c88,U+20b4,U+2de0-2dff,U+a640-a69f,U+fe2e-fe2f}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:500;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-cyrillic-500-normal.27a1ebd4.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-500-normal.000c3408.woff) format("woff");unicode-range:U+0400-045f,U+0490-0491,U+04b0-04b1,U+2116}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:500;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-hebrew-500-normal.08d6e502.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-500-normal.000c3408.woff) format("woff");unicode-range:U+0590-05ff,U+20aa,U+25cc,U+fb1d-fb4f}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:500;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-latin-ext-500-normal.5663c731.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-500-normal.000c3408.woff) format("woff");unicode-range:U+0100-024f,U+0259,U+1e??,U+2020,U+20a0-20ab,U+20ad-20cf,U+2113,U+2c60-2c7f,U+a720-a7ff}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:500;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-latin-500-normal.595f1a98.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-500-normal.000c3408.woff) format("woff");unicode-range:U+00??,U+0131,U+0152-0153,U+02bb-02bc,U+02c6,U+02da,U+02dc,U+2000-206f,U+2074,U+20ac,U+2122,U+2191,U+2193,U+2212,U+2215,U+feff,U+fffd}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:600;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-cyrillic-ext-600-normal.942f240f.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-600-normal.30df2fd0.woff) format("woff");unicode-range:U+0460-052f,U+1c80-1c88,U+20b4,U+2de0-2dff,U+a640-a69f,U+fe2e-fe2f}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:600;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-cyrillic-600-normal.74d5cdba.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-600-normal.30df2fd0.woff) format("woff");unicode-range:U+0400-045f,U+0490-0491,U+04b0-04b1,U+2116}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:600;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-hebrew-600-normal.bfa32e44.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-600-normal.30df2fd0.woff) format("woff");unicode-range:U+0590-05ff,U+20aa,U+25cc,U+fb1d-fb4f}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:600;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-latin-ext-600-normal.ff159cb8.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-600-normal.30df2fd0.woff) format("woff");unicode-range:U+0100-024f,U+0259,U+1e??,U+2020,U+20a0-20ab,U+20ad-20cf,U+2113,U+2c60-2c7f,U+a720-a7ff}@font-face{font-family:"Rubik";font-style:normal;font-display:swap;font-weight:600;src:url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-latin-600-normal.5f06934f.woff2) format("woff2"),url(/.blocklet/proxy/abtnode-auth-service/static/media/rubik-all-600-normal.30df2fd0.woff) format("woff");unicode-range:U+00??,U+0131,U+0152-0153,U+02bb-02bc,U+02c6,U+02da,U+02dc,U+2000-206f,U+2074,U+20ac,U+2122,U+2191,U+2193,U+2212,U+2215,U+feff,U+fffd}
2
+ /*# sourceMappingURL=2.73d52aac.chunk.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["400.css","500.css","600.css"],"names":[],"mappings":"AACA,WACE,yBAA0B,CAC1B,iBAAkB,CAClB,iBAAkB,CAClB,eAAgB,CAChB,8OAA4I,CAC5I,gFACF,CAEA,WACE,yBAA0B,CAC1B,iBAAkB,CAClB,iBAAkB,CAClB,eAAgB,CAChB,0OAAwI,CACxI,wDACF,CAEA,WACE,yBAA0B,CAC1B,iBAAkB,CAClB,iBAAkB,CAClB,eAAgB,CAChB,2OAAyI,CACzI,oBACF,CAEA,WACE,yBAA0B,CAC1B,iBAAkB,CAClB,iBAAkB,CAClB,eAAgB,CAChB,uOAAqI,CACrI,yBACF,CAEA,WACE,yBAA0B,CAC1B,iBAAkB,CAClB,iBAAkB,CAClB,eAAgB,CAChB,2OAAyI,CACzI,qGACF,CAEA,WACE,yBAA0B,CAC1B,iBAAkB,CAClB,iBAAkB,CAClB,eAAgB,CAChB,uOAAqI,CACrI,mJACF,CApDA,WACE,mBAAoB,CACpB,iBAAkB,CAClB,iBAAkB,CAClB,eAAgB,CAChB,kOAAgI,CAChI,gFACF,CAEA,WACE,mBAAoB,CACpB,iBAAkB,CAClB,iBAAkB,CAClB,eAAgB,CAChB,8NAA4H,CAC5H,wDACF,CAEA,WACE,mBAAoB,CACpB,iBAAkB,CAClB,iBAAkB,CAClB,eAAgB,CAChB,4NAA0H,CAC1H,mDACF,CAEA,WACE,mBAAoB,CACpB,iBAAkB,CAClB,iBAAkB,CAClB,eAAgB,CAChB,+NAA6H,CAC7H,qGACF,CAEA,WACE,mBAAoB,CACpB,iBAAkB,CAClB,iBAAkB,CAClB,eAAgB,CAChB,2NAAyH,CACzH,mJACF,CC3CA,WACE,mBAAoB,CACpB,iBAAkB,CAClB,iBAAkB,CAClB,eAAgB,CAChB,kOAAgI,CAChI,gFACF,CAEA,WACE,mBAAoB,CACpB,iBAAkB,CAClB,iBAAkB,CAClB,eAAgB,CAChB,8NAA4H,CAC5H,wDACF,CAEA,WACE,mBAAoB,CACpB,iBAAkB,CAClB,iBAAkB,CAClB,eAAgB,CAChB,4NAA0H,CAC1H,mDACF,CAEA,WACE,mBAAoB,CACpB,iBAAkB,CAClB,iBAAkB,CAClB,eAAgB,CAChB,+NAA6H,CAC7H,qGACF,CAEA,WACE,mBAAoB,CACpB,iBAAkB,CAClB,iBAAkB,CAClB,eAAgB,CAChB,2NAAyH,CACzH,mJACF,CC3CA,WACE,mBAAoB,CACpB,iBAAkB,CAClB,iBAAkB,CAClB,eAAgB,CAChB,kOAAgI,CAChI,gFACF,CAEA,WACE,mBAAoB,CACpB,iBAAkB,CAClB,iBAAkB,CAClB,eAAgB,CAChB,8NAA4H,CAC5H,wDACF,CAEA,WACE,mBAAoB,CACpB,iBAAkB,CAClB,iBAAkB,CAClB,eAAgB,CAChB,4NAA0H,CAC1H,mDACF,CAEA,WACE,mBAAoB,CACpB,iBAAkB,CAClB,iBAAkB,CAClB,eAAgB,CAChB,+NAA6H,CAC7H,qGACF,CAEA,WACE,mBAAoB,CACpB,iBAAkB,CAClB,iBAAkB,CAClB,eAAgB,CAChB,2NAAyH,CACzH,mJACF","file":"2.73d52aac.chunk.css","sourcesContent":["/* rubik-cyrillic-ext-400-normal*/\n@font-face {\n font-family: 'Rubik';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url('./files/rubik-cyrillic-ext-400-normal.woff2') format('woff2'), url('./files/rubik-all-400-normal.woff') format('woff');\n unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;\n}\n/* rubik-cyrillic-400-normal*/\n@font-face {\n font-family: 'Rubik';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url('./files/rubik-cyrillic-400-normal.woff2') format('woff2'), url('./files/rubik-all-400-normal.woff') format('woff');\n unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;\n}\n/* rubik-hebrew-400-normal*/\n@font-face {\n font-family: 'Rubik';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url('./files/rubik-hebrew-400-normal.woff2') format('woff2'), url('./files/rubik-all-400-normal.woff') format('woff');\n unicode-range: U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F;\n}\n/* rubik-latin-ext-400-normal*/\n@font-face {\n font-family: 'Rubik';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url('./files/rubik-latin-ext-400-normal.woff2') format('woff2'), url('./files/rubik-all-400-normal.woff') format('woff');\n unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* rubik-latin-400-normal*/\n@font-face {\n font-family: 'Rubik';\n font-style: normal;\n font-display: swap;\n font-weight: 400;\n src: url('./files/rubik-latin-400-normal.woff2') format('woff2'), url('./files/rubik-all-400-normal.woff') format('woff');\n unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n","/* rubik-cyrillic-ext-500-normal*/\n@font-face {\n font-family: 'Rubik';\n font-style: normal;\n font-display: swap;\n font-weight: 500;\n src: url('./files/rubik-cyrillic-ext-500-normal.woff2') format('woff2'), url('./files/rubik-all-500-normal.woff') format('woff');\n unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;\n}\n/* rubik-cyrillic-500-normal*/\n@font-face {\n font-family: 'Rubik';\n font-style: normal;\n font-display: swap;\n font-weight: 500;\n src: url('./files/rubik-cyrillic-500-normal.woff2') format('woff2'), url('./files/rubik-all-500-normal.woff') format('woff');\n unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;\n}\n/* rubik-hebrew-500-normal*/\n@font-face {\n font-family: 'Rubik';\n font-style: normal;\n font-display: swap;\n font-weight: 500;\n src: url('./files/rubik-hebrew-500-normal.woff2') format('woff2'), url('./files/rubik-all-500-normal.woff') format('woff');\n unicode-range: U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F;\n}\n/* rubik-latin-ext-500-normal*/\n@font-face {\n font-family: 'Rubik';\n font-style: normal;\n font-display: swap;\n font-weight: 500;\n src: url('./files/rubik-latin-ext-500-normal.woff2') format('woff2'), url('./files/rubik-all-500-normal.woff') format('woff');\n unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* rubik-latin-500-normal*/\n@font-face {\n font-family: 'Rubik';\n font-style: normal;\n font-display: swap;\n font-weight: 500;\n src: url('./files/rubik-latin-500-normal.woff2') format('woff2'), url('./files/rubik-all-500-normal.woff') format('woff');\n unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n","/* rubik-cyrillic-ext-600-normal*/\n@font-face {\n font-family: 'Rubik';\n font-style: normal;\n font-display: swap;\n font-weight: 600;\n src: url('./files/rubik-cyrillic-ext-600-normal.woff2') format('woff2'), url('./files/rubik-all-600-normal.woff') format('woff');\n unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;\n}\n/* rubik-cyrillic-600-normal*/\n@font-face {\n font-family: 'Rubik';\n font-style: normal;\n font-display: swap;\n font-weight: 600;\n src: url('./files/rubik-cyrillic-600-normal.woff2') format('woff2'), url('./files/rubik-all-600-normal.woff') format('woff');\n unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;\n}\n/* rubik-hebrew-600-normal*/\n@font-face {\n font-family: 'Rubik';\n font-style: normal;\n font-display: swap;\n font-weight: 600;\n src: url('./files/rubik-hebrew-600-normal.woff2') format('woff2'), url('./files/rubik-all-600-normal.woff') format('woff');\n unicode-range: U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F;\n}\n/* rubik-latin-ext-600-normal*/\n@font-face {\n font-family: 'Rubik';\n font-style: normal;\n font-display: swap;\n font-weight: 600;\n src: url('./files/rubik-latin-ext-600-normal.woff2') format('woff2'), url('./files/rubik-all-600-normal.woff') format('woff');\n unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;\n}\n/* rubik-latin-600-normal*/\n@font-face {\n font-family: 'Rubik';\n font-style: normal;\n font-display: swap;\n font-weight: 600;\n src: url('./files/rubik-latin-600-normal.woff2') format('woff2'), url('./files/rubik-all-600-normal.woff') format('woff');\n unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;\n}\n"]}