forked from tonmetaspace/metaspace.ton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocusaurus.config.js
2545 lines (2211 loc) · 98.3 KB
/
docusaurus.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion
const lightCodeTheme = require("prism-react-renderer/themes/github");
const darkCodeTheme = require("prism-react-renderer/themes/dracula");
const math = require("remark-math");
const katex = require("rehype-katex");
/** @type {import('@docusaurus/types').Config} */
const config = {
title: "Metaspace",
tagline:
"Free metaverse focusing on The Open Network, no strings attached. Take control of your online communities with a fully open source virtual world platform that you can make your own.",
favicon: "img/favicon.ico",
markdown: {
mermaid: true,
},
themes: [
"@docusaurus/theme-live-codeblock",
"@docusaurus/theme-mermaid",
// [
// require.resolve('@easyops-cn/docusaurus-search-local'),
// {
// // ... Your options.
// // `hashed` is recommended as long-term-cache of index file is possible.
// hashed: true,
// indexPages: true,
// indexBlog: false,
// searchBarShortcutHint: false,
// // For Docs using Chinese, The `language` is recommended to set to:
// // ```
// // language: ["en", "zh"],
// // ```
// },
// ],
],
// Set the production url of your site here
url: "https://tonmetaspace.github.io",
// Set the /<baseUrl>/ pathname under which your site is served
// For GitHub pages deployment, it is often '/<projectName>/'
baseUrl: "/",
// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
organizationName: "tonmetaspace", // Usually your GitHub org/user name.
projectName: "metaspace.ton", // Usually your repo name.
stylesheets: [
"https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Inter:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap",
],
onBrokenLinks: "throw",
onBrokenMarkdownLinks: "warn",
// Even if you don't use internalization, you can use this field to set useful
// metadata like html lang. For example, if your site is Chinese, you may want
// to replace "en" with "zh-Hans".
i18n: {
defaultLocale: "en",
locales: ["en"],
},
presets: [
[
"classic",
/** @type {import('@docusaurus/preset-classic').Options} */
({
sitemap: {
changefreq: "weekly",
priority: 0.5,
ignorePatterns: ["/tags/**"],
filename: "sitemap.xml",
},
gtag: {
trackingID: "G-0E7KS06VS6",
anonymizeIP: true,
},
pages: {
path: "src/pages",
routeBasePath: "/",
include: ["**/*.{js,jsx,ts,tsx,md,mdx}"],
exclude: [
"**/_*.{js,jsx,ts,tsx,md,mdx}",
"**/_*/**",
"**/*.test.{js,jsx,ts,tsx}",
"**/__tests__/**",
],
mdxPageComponent: "@theme/MDXPage",
remarkPlugins: [
[require("@docusaurus/remark-plugin-npm2yarn"), { sync: true }],
],
rehypePlugins: [katex],
beforeDefaultRemarkPlugins: [],
beforeDefaultRehypePlugins: [],
},
docs: {
path: "docs",
sidebarPath: require.resolve("./sidebars.js"),
docLayoutComponent: "@theme/DocPage",
docItemComponent: "@theme/DocItem",
remarkPlugins: [require("remark-math")],
rehypePlugins: [],
beforeDefaultRemarkPlugins: [],
beforeDefaultRehypePlugins: [],
showLastUpdateAuthor: false,
showLastUpdateTime: false,
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl: "https://github.com/tonmetaspace/metaspace.ton/",
},
blog: {
blogTitle: "Metaspace blog!",
blogDescription: "A Metaspace powered blog!",
postsPerPage: "ALL",
blogSidebarTitle: "All posts",
blogSidebarCount: "ALL",
showReadingTime: true,
blogListComponent: "@theme/BlogListPage",
blogPostComponent: "@theme/BlogPostPage",
blogTagsListComponent: "@theme/BlogTagsListPage",
blogTagsPostsComponent: "@theme/BlogTagsPostsPage",
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl: "https://github.com/tonmetaspace/metaspace.ton/",
remarkPlugins: [
[require("@docusaurus/remark-plugin-npm2yarn"), { sync: true }],
],
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
}),
],
],
plugins: [
[
require.resolve("@cmfcmf/docusaurus-search-local"),
{
// whether to index docs pages
indexDocs: true,
// Whether to also index the titles of the parent categories in the sidebar of a doc page.
// 0 disables this feature.
// 1 indexes the direct parent category in the sidebar of a doc page
// 2 indexes up to two nested parent categories of a doc page
// 3...
//
// Do _not_ use Infinity, the value must be a JSON-serializable integer.
indexDocSidebarParentCategories: 0,
// whether to index blog pages
indexBlog: true,
// whether to index static pages
// /404.html is never indexed
indexPages: true,
// language of your documentation, see next section
language: "en",
// setting this to "none" will prevent the default CSS to be included. The default CSS
// comes from autocomplete-theme-classic, which you can read more about here:
// https://www.algolia.com/doc/ui-libraries/autocomplete/api-reference/autocomplete-theme-classic/
// When you want to overwrite CSS variables defined by the default theme, make sure to suffix your
// overwrites with `!important`, because they might otherwise not be applied as expected. See the
// following comment for more information: https://github.com/cmfcmf/docusaurus-search-local/issues/107#issuecomment-1119831938.
style: undefined,
// The maximum number of search results shown to the user. This does _not_ affect performance of
// searches, but simply does not display additional search results that have been found.
maxSearchResults: 8,
// lunr.js-specific settings
lunr: {
// When indexing your documents, their content is split into "tokens".
// Text entered into the search box is also tokenized.
// This setting configures the separator used to determine where to split the text into tokens.
// By default, it splits the text at whitespace and dashes.
//
// Note: Does not work for "ja" and "th" languages, since these use a different tokenizer.
tokenizerSeparator: /[\s\-]+/,
// https://lunrjs.com/guides/customising.html#similarity-tuning
//
// This parameter controls the importance given to the length of a document and its fields. This
// value must be between 0 and 1, and by default it has a value of 0.75. Reducing this value
// reduces the effect of different length documents on a term’s importance to that document.
b: 0.75,
// This controls how quickly the boost given by a common word reaches saturation. Increasing it
// will slow down the rate of saturation and lower values result in quicker saturation. The
// default value is 1.2. If the collection of documents being indexed have high occurrences
// of words that are not covered by a stop word filter, these words can quickly dominate any
// similarity calculation. In these cases, this value can be reduced to get more balanced results.
k1: 1.2,
// By default, we rank pages where the search term appears in the title higher than pages where
// the search term appears in just the text. This is done by "boosting" title matches with a
// higher value than content matches. The concrete boosting behavior can be controlled by changing
// the following settings.
titleBoost: 5,
contentBoost: 1,
tagsBoost: 3,
parentCategoriesBoost: 2, // Only used when indexDocSidebarParentCategories > 0
},
},
],
],
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
// Replace with your project's social card
mermaid: {
theme: { light: "neutral", dark: "dark" },
},
image: "img/docusaurus-social-card.jpg",
navbar: {
hideOnScroll: true,
title: "Metaspace",
logo: {
alt: "Metaspace Logo",
src: "img/logo.svg",
},
items: [
{
type: "doc",
docId: "introduction/README",
position: "left",
label: "Docs",
},
{ to: "meta", label: "Metaverse", position: "left" },
{ to: "quest", label: "Quests", position: "left" },
{ to: "/blog", label: "Blog", position: "left" },
{
href: "https://github.com/tonmetaspace",
position: "right",
className: "header-github-link",
"aria-label": "GitHub repository",
},
],
},
footer: {
style: "dark",
links: [
{
items: [
{
html: `<!DOCTYPE html>
<html lang="en">
<head>
<meta charSet="utf-8" />
<meta name="viewport" content="width=device-width" />
<meta name="next-head-count" content="2" />
</head>
<body class="preload">
<div id="__next" data-reactroot="">
<footer class="Container Footer Footer--with-offset size--default">
<div class="Container__inner">
<div class="Footer__inner">
<div class="Footer__links">
<div class="HideByMediaBlock"
style="--xsVisible:block;--preSVisible:block;--sVisible:block;--mVisible:block;--lVisible:none;--xlVisible:none;--xxlVisible:none">
<div class="Footer__col Footer__col--logo"> <a class="Logo Logo--dark"
href="https://ton.org">
<div class="Logo__inner Logo__inner--large"> <svg width="49.695183mm"
height="8.7312498mm" viewBox="0 0 49.695183 8.7312498" version="1.1"
id="svg1590" xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs id="defs1587" />
<g id="layer1" transform="translate(-45.587789,-109.15866)">
<g id="g30740"
transform="matrix(0.26079619,0,0,0.2607954,1397.21,-109.96445)">
<g aria-label=" Metaspace"
transform="matrix(0.30292535,0,0,0.30292535,-7007.2796,-13815.799)"
id="text30738"
style="font-weight:900;font-size:120px;line-height:1;font-family:Mulish;-inkscape-font-specification:'Mulish Heavy';white-space:pre;display:inline;fill:#2188ff">
<path
d="m 6023.2773,48466.189 v -84.6 h 19.2 l 27.72,62.04 h -3.96 l 27.6,-62.04 h 19.32 v 84.6 h -20.04 v -51.84 h 5.16 l -24,51.84 h -12.48 l -24.12,-51.84 h 5.52 v 51.84 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21758" />
<path
d="m 6159.9571,48467.509 q -16.56,0 -25.8,-8.52 -9.12,-8.52 -9.12,-23.4 0,-9.24 3.84,-16.44 3.84,-7.2 10.8,-11.16 6.96,-4.08 16.32,-4.08 9.24,0 15.36,4.08 6.24,3.96 9.36,11.04 3.12,6.96 3.12,16.2 v 4.56 h -40.92 v -10.08 h 25.2 l -2.04,1.68 q 0,-6.84 -2.64,-10.08 -2.52,-3.36 -7.2,-3.36 -5.4,0 -8.28,4.08 -2.76,3.96 -2.76,12 v 2.16 q 0,8.04 3.96,11.76 3.96,3.72 11.4,3.72 4.8,0 9,-1.08 4.32,-1.08 8.16,-3.48 l 5.52,13.92 q -4.56,3.12 -10.56,4.8 -6,1.68 -12.72,1.68 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21755" />
<path
d="m 6224.7567,48467.509 q -12.96,0 -19.56,-6.12 -6.48,-6.24 -6.48,-18.84 v -21.6 h -11.4 v -15.72 h 11.4 v -14.4 l 21.36,-5.04 v 19.44 h 14.88 v 15.72 h -14.88 v 20.76 q 0,5.28 2.4,7.08 2.4,1.68 5.76,1.68 2.04,0 3.48,-0.24 1.56,-0.36 3.24,-0.96 v 16.44 q -2.64,1.08 -5.28,1.44 -2.52,0.36 -4.92,0.36 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21752" />
<path
d="m 6267.2367,48467.509 q -7.92,0 -13.92,-3.72 -6,-3.84 -9.48,-11.04 -3.36,-7.2 -3.36,-17.04 0,-9.96 3.36,-17.04 3.48,-7.2 9.48,-10.92 6,-3.84 13.92,-3.84 7.08,0 12.72,3.36 5.76,3.36 7.56,8.76 h -1.2 l 1.32,-10.8 h 20.52 q -0.36,4.08 -0.72,8.28 -0.24,4.2 -0.24,8.28 v 44.4 h -21.12 l -0.24,-10.32 h 1.44 q -1.8,5.28 -7.56,8.52 -5.64,3.12 -12.48,3.12 z m 6.84,-15.84 q 5.4,0 8.76,-3.72 3.36,-3.84 3.36,-12.24 0,-8.4 -3.36,-12.12 -3.36,-3.84 -8.76,-3.84 -5.4,0 -8.76,3.84 -3.36,3.72 -3.36,12.12 0,8.4 3.24,12.24 3.36,3.72 8.88,3.72 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21749" />
<path
d="m 6343.9166,48467.509 q -8.52,0 -15.48,-1.68 -6.84,-1.8 -11.64,-4.8 l 5.16,-13.92 q 4.68,2.64 10.44,4.32 5.88,1.68 11.64,1.68 4.56,0 6.6,-1.32 2.16,-1.44 2.16,-3.72 0,-1.8 -1.32,-2.88 -1.32,-1.08 -3.96,-1.56 l -12.96,-2.28 q -7.68,-1.44 -12,-5.64 -4.2,-4.32 -4.2,-11.16 0,-6.24 3.36,-10.8 3.36,-4.68 9.6,-7.2 6.24,-2.64 14.76,-2.64 6.96,0 13.2,1.56 6.36,1.56 11.04,4.92 l -5.52,13.56 q -3.72,-2.52 -8.76,-4.08 -4.92,-1.68 -9.24,-1.68 -5.16,0 -7.32,1.56 -2.16,1.44 -2.16,3.6 0,1.68 1.2,2.88 1.2,1.08 3.84,1.56 l 12.96,2.28 q 7.92,1.32 12.12,5.52 4.32,4.08 4.32,11.16 0,6.6 -3.6,11.28 -3.48,4.56 -9.72,7.08 -6.24,2.4 -14.52,2.4 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21746" />
<path
d="m 6381.2364,48492.109 v -70.32 q 0,-4.08 -0.24,-8.28 -0.24,-4.2 -0.72,-8.28 h 20.64 l 1.32,10.8 h -1.2 q 1.68,-5.4 7.44,-8.76 5.76,-3.36 12.84,-3.36 7.92,0 13.92,3.84 6,3.72 9.36,10.92 3.48,7.08 3.48,17.04 0,9.84 -3.48,17.04 -3.36,7.2 -9.36,11.04 -6,3.72 -13.92,3.72 -6.96,0 -12.6,-3.12 -5.64,-3.24 -7.44,-8.52 h 1.32 v 36.24 z m 33.24,-40.44 q 5.52,0 8.76,-3.72 3.36,-3.84 3.36,-12.24 0,-8.4 -3.36,-12.12 -3.24,-3.84 -8.76,-3.84 -5.4,0 -8.76,3.84 -3.36,3.72 -3.36,12.12 0,8.4 3.36,12.24 3.36,3.72 8.76,3.72 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21743" />
<path
d="m 6482.5163,48467.509 q -7.92,0 -13.92,-3.72 -6,-3.84 -9.48,-11.04 -3.36,-7.2 -3.36,-17.04 0,-9.96 3.36,-17.04 3.48,-7.2 9.48,-10.92 6,-3.84 13.92,-3.84 7.08,0 12.72,3.36 5.76,3.36 7.56,8.76 h -1.2 l 1.32,-10.8 h 20.52 q -0.36,4.08 -0.72,8.28 -0.24,4.2 -0.24,8.28 v 44.4 h -21.12 l -0.24,-10.32 h 1.44 q -1.8,5.28 -7.56,8.52 -5.64,3.12 -12.48,3.12 z m 6.84,-15.84 q 5.4,0 8.76,-3.72 3.36,-3.84 3.36,-12.24 0,-8.4 -3.36,-12.12 -3.36,-3.84 -8.76,-3.84 -5.4,0 -8.76,3.84 -3.36,3.72 -3.36,12.12 0,8.4 3.24,12.24 3.36,3.72 8.88,3.72 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21740" />
<path
d="m 6566.6362,48467.509 q -10.08,0 -17.64,-3.84 -7.56,-3.84 -11.76,-10.92 -4.2,-7.2 -4.2,-17.16 0,-9.96 4.2,-17.04 4.2,-7.08 11.76,-10.8 7.56,-3.84 17.64,-3.84 6.24,0 12.24,1.68 6,1.68 9.72,4.8 l -6,14.52 q -2.88,-2.4 -6.6,-3.6 -3.6,-1.32 -7.08,-1.32 -6.6,0 -10.32,3.96 -3.6,3.96 -3.6,11.64 0,7.68 3.6,11.76 3.72,3.96 10.32,3.96 3.36,0 7.08,-1.2 3.72,-1.32 6.6,-3.6 l 6,14.52 q -3.84,3 -9.84,4.8 -5.88,1.68 -12.12,1.68 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21737" />
<path
d="m 6628.4361,48467.509 q -16.56,0 -25.8,-8.52 -9.12,-8.52 -9.12,-23.4 0,-9.24 3.84,-16.44 3.84,-7.2 10.8,-11.16 6.96,-4.08 16.32,-4.08 9.24,0 15.36,4.08 6.24,3.96 9.36,11.04 3.12,6.96 3.12,16.2 v 4.56 h -40.92 v -10.08 h 25.2 l -2.04,1.68 q 0,-6.84 -2.64,-10.08 -2.52,-3.36 -7.2,-3.36 -5.4,0 -8.28,4.08 -2.76,3.96 -2.76,12 v 2.16 q 0,8.04 3.96,11.76 3.96,3.72 11.4,3.72 4.8,0 9,-1.08 4.32,-1.08 8.16,-3.48 l 5.52,13.92 q -4.56,3.12 -10.56,4.8 -6,1.68 -12.72,1.68 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21734" />
</g>
</g>
</g>
</svg> </div>
<div class="Logo__inner Logo__inner--small"> <svg width="49.695183mm"
height="8.7312498mm" viewBox="0 0 49.695183 8.7312498" version="1.1"
id="svg1590" xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs id="defs1587" />
<g id="layer1" transform="translate(-45.587789,-109.15866)">
<g id="g30740"
transform="matrix(0.26079619,0,0,0.2607954,1397.21,-109.96445)">
<g aria-label=" Metaspace"
transform="matrix(0.30292535,0,0,0.30292535,-7007.2796,-13815.799)"
id="text30738"
style="font-weight:900;font-size:120px;line-height:1;font-family:Mulish;-inkscape-font-specification:'Mulish Heavy';white-space:pre;display:inline;fill:#2188ff">
<path
d="m 6023.2773,48466.189 v -84.6 h 19.2 l 27.72,62.04 h -3.96 l 27.6,-62.04 h 19.32 v 84.6 h -20.04 v -51.84 h 5.16 l -24,51.84 h -12.48 l -24.12,-51.84 h 5.52 v 51.84 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21758" />
<path
d="m 6159.9571,48467.509 q -16.56,0 -25.8,-8.52 -9.12,-8.52 -9.12,-23.4 0,-9.24 3.84,-16.44 3.84,-7.2 10.8,-11.16 6.96,-4.08 16.32,-4.08 9.24,0 15.36,4.08 6.24,3.96 9.36,11.04 3.12,6.96 3.12,16.2 v 4.56 h -40.92 v -10.08 h 25.2 l -2.04,1.68 q 0,-6.84 -2.64,-10.08 -2.52,-3.36 -7.2,-3.36 -5.4,0 -8.28,4.08 -2.76,3.96 -2.76,12 v 2.16 q 0,8.04 3.96,11.76 3.96,3.72 11.4,3.72 4.8,0 9,-1.08 4.32,-1.08 8.16,-3.48 l 5.52,13.92 q -4.56,3.12 -10.56,4.8 -6,1.68 -12.72,1.68 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21755" />
<path
d="m 6224.7567,48467.509 q -12.96,0 -19.56,-6.12 -6.48,-6.24 -6.48,-18.84 v -21.6 h -11.4 v -15.72 h 11.4 v -14.4 l 21.36,-5.04 v 19.44 h 14.88 v 15.72 h -14.88 v 20.76 q 0,5.28 2.4,7.08 2.4,1.68 5.76,1.68 2.04,0 3.48,-0.24 1.56,-0.36 3.24,-0.96 v 16.44 q -2.64,1.08 -5.28,1.44 -2.52,0.36 -4.92,0.36 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21752" />
<path
d="m 6267.2367,48467.509 q -7.92,0 -13.92,-3.72 -6,-3.84 -9.48,-11.04 -3.36,-7.2 -3.36,-17.04 0,-9.96 3.36,-17.04 3.48,-7.2 9.48,-10.92 6,-3.84 13.92,-3.84 7.08,0 12.72,3.36 5.76,3.36 7.56,8.76 h -1.2 l 1.32,-10.8 h 20.52 q -0.36,4.08 -0.72,8.28 -0.24,4.2 -0.24,8.28 v 44.4 h -21.12 l -0.24,-10.32 h 1.44 q -1.8,5.28 -7.56,8.52 -5.64,3.12 -12.48,3.12 z m 6.84,-15.84 q 5.4,0 8.76,-3.72 3.36,-3.84 3.36,-12.24 0,-8.4 -3.36,-12.12 -3.36,-3.84 -8.76,-3.84 -5.4,0 -8.76,3.84 -3.36,3.72 -3.36,12.12 0,8.4 3.24,12.24 3.36,3.72 8.88,3.72 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21749" />
<path
d="m 6343.9166,48467.509 q -8.52,0 -15.48,-1.68 -6.84,-1.8 -11.64,-4.8 l 5.16,-13.92 q 4.68,2.64 10.44,4.32 5.88,1.68 11.64,1.68 4.56,0 6.6,-1.32 2.16,-1.44 2.16,-3.72 0,-1.8 -1.32,-2.88 -1.32,-1.08 -3.96,-1.56 l -12.96,-2.28 q -7.68,-1.44 -12,-5.64 -4.2,-4.32 -4.2,-11.16 0,-6.24 3.36,-10.8 3.36,-4.68 9.6,-7.2 6.24,-2.64 14.76,-2.64 6.96,0 13.2,1.56 6.36,1.56 11.04,4.92 l -5.52,13.56 q -3.72,-2.52 -8.76,-4.08 -4.92,-1.68 -9.24,-1.68 -5.16,0 -7.32,1.56 -2.16,1.44 -2.16,3.6 0,1.68 1.2,2.88 1.2,1.08 3.84,1.56 l 12.96,2.28 q 7.92,1.32 12.12,5.52 4.32,4.08 4.32,11.16 0,6.6 -3.6,11.28 -3.48,4.56 -9.72,7.08 -6.24,2.4 -14.52,2.4 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21746" />
<path
d="m 6381.2364,48492.109 v -70.32 q 0,-4.08 -0.24,-8.28 -0.24,-4.2 -0.72,-8.28 h 20.64 l 1.32,10.8 h -1.2 q 1.68,-5.4 7.44,-8.76 5.76,-3.36 12.84,-3.36 7.92,0 13.92,3.84 6,3.72 9.36,10.92 3.48,7.08 3.48,17.04 0,9.84 -3.48,17.04 -3.36,7.2 -9.36,11.04 -6,3.72 -13.92,3.72 -6.96,0 -12.6,-3.12 -5.64,-3.24 -7.44,-8.52 h 1.32 v 36.24 z m 33.24,-40.44 q 5.52,0 8.76,-3.72 3.36,-3.84 3.36,-12.24 0,-8.4 -3.36,-12.12 -3.24,-3.84 -8.76,-3.84 -5.4,0 -8.76,3.84 -3.36,3.72 -3.36,12.12 0,8.4 3.36,12.24 3.36,3.72 8.76,3.72 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21743" />
<path
d="m 6482.5163,48467.509 q -7.92,0 -13.92,-3.72 -6,-3.84 -9.48,-11.04 -3.36,-7.2 -3.36,-17.04 0,-9.96 3.36,-17.04 3.48,-7.2 9.48,-10.92 6,-3.84 13.92,-3.84 7.08,0 12.72,3.36 5.76,3.36 7.56,8.76 h -1.2 l 1.32,-10.8 h 20.52 q -0.36,4.08 -0.72,8.28 -0.24,4.2 -0.24,8.28 v 44.4 h -21.12 l -0.24,-10.32 h 1.44 q -1.8,5.28 -7.56,8.52 -5.64,3.12 -12.48,3.12 z m 6.84,-15.84 q 5.4,0 8.76,-3.72 3.36,-3.84 3.36,-12.24 0,-8.4 -3.36,-12.12 -3.36,-3.84 -8.76,-3.84 -5.4,0 -8.76,3.84 -3.36,3.72 -3.36,12.12 0,8.4 3.24,12.24 3.36,3.72 8.88,3.72 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21740" />
<path
d="m 6566.6362,48467.509 q -10.08,0 -17.64,-3.84 -7.56,-3.84 -11.76,-10.92 -4.2,-7.2 -4.2,-17.16 0,-9.96 4.2,-17.04 4.2,-7.08 11.76,-10.8 7.56,-3.84 17.64,-3.84 6.24,0 12.24,1.68 6,1.68 9.72,4.8 l -6,14.52 q -2.88,-2.4 -6.6,-3.6 -3.6,-1.32 -7.08,-1.32 -6.6,0 -10.32,3.96 -3.6,3.96 -3.6,11.64 0,7.68 3.6,11.76 3.72,3.96 10.32,3.96 3.36,0 7.08,-1.2 3.72,-1.32 6.6,-3.6 l 6,14.52 q -3.84,3 -9.84,4.8 -5.88,1.68 -12.12,1.68 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21737" />
<path
d="m 6628.4361,48467.509 q -16.56,0 -25.8,-8.52 -9.12,-8.52 -9.12,-23.4 0,-9.24 3.84,-16.44 3.84,-7.2 10.8,-11.16 6.96,-4.08 16.32,-4.08 9.24,0 15.36,4.08 6.24,3.96 9.36,11.04 3.12,6.96 3.12,16.2 v 4.56 h -40.92 v -10.08 h 25.2 l -2.04,1.68 q 0,-6.84 -2.64,-10.08 -2.52,-3.36 -7.2,-3.36 -5.4,0 -8.28,4.08 -2.76,3.96 -2.76,12 v 2.16 q 0,8.04 3.96,11.76 3.96,3.72 11.4,3.72 4.8,0 9,-1.08 4.32,-1.08 8.16,-3.48 l 5.52,13.92 q -4.56,3.12 -10.56,4.8 -6,1.68 -12.72,1.68 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21734" />
</g>
</g>
</g>
</svg> </div>
</a> </div>
</div>
<div class="Footer__col">
<div class="Title Title--l-1 Title--t-footer Footer__col_header">Explore</div>
<div class="Footer__col_links">
<div class="Footer__col_link_wrap"> <a class="Footer__col_link"
href="https://metaspace.foundation">
<div class="Text Text--l-1 Text--t-default">Metaspace</div>
</a> </div>
</div>
</div>
<div class="Footer__col">
<div class="Title Title--l-1 Title--t-footer Footer__col_header">Build</div>
<div class="Footer__col_links">
<div class="Footer__col_link_wrap"> <a class="Footer__col_link"
href="https://tonmetaspace.org/docs/whitepaper">
<div class="Text Text--l-1 Text--t-default">White paper</div>
</a> </div>
<div class="Footer__col_link_wrap"> <a class="Footer__col_link" target="_self"
rel="noreferrer noopener" href="https://tonmetaspace.org/docs">
<div class="Text Text--l-1 Text--t-default">Documentation</div>
</a> </div>
<div class="Footer__col_link_wrap"> <a class="Footer__col_link" target="_self"
rel="noreferrer noopener" href="https://tonmetaspace.org/timeline">
<div class="Text Text--l-1 Text--t-default">Timeline</div>
</a> </div>
<div class="Footer__col_link_wrap"> <a class="Footer__col_link" target="_self"
rel="noreferrer noopener" href="https://tonmetaspace.org/ambassador-program">
<div class="Text Text--l-1 Text--t-default">Ambassador</div>
</a> </div>
</div>
</div>
<div class="Footer__col">
<div class="Title Title--l-1 Title--t-footer Footer__col_header">Source Code</div>
<div class="Footer__col_links">
<div class="Footer__col_link_wrap"> <a class="Footer__col_link" target="_blank"
rel="noreferrer noopener"
href="https://github.com/tonmetaspace/.github/blob/main/CODE_OF_CONDUCT.md">
<div class="Text Text--l-1 Text--t-default">Code of Conduct</div>
</a> </div>
<div class="Footer__col_link_wrap"> <a class="Footer__col_link" target="_self"
rel="noreferrer noopener" href="https://tonmetaspace.org/license">
<div class="Text Text--l-1 Text--t-default">CC0 License</div>
</a> </div>
<div class="Footer__col_link_wrap"> <a class="Footer__col_link" target="_self"
rel="noreferrer noopener" href="https://github.com/tonmetaspace">
<div class="Text Text--l-1 Text--t-default">GitHub</div>
</a> </div>
<div class="Footer__col_link_wrap"> <a class="Footer__col_link" target="_self"
rel="noreferrer noopener" href="https://github.com/tonmetaspace/issues">
<div class="Text Text--l-1 Text--t-default">Issues</div>
</a> </div>
</div>
</div>
<div class="Footer__col">
<div class="Title Title--l-1 Title--t-footer Footer__col_header">Community</div>
<div class="Footer__col_links">
<div class="Footer__col_link_wrap"> <a class="Footer__col_link" target="_self"
rel="noreferrer noopener" href="https://tonmetaspace.org/community">
<div class="Text Text--l-1 Text--t-default">Join</div>
</a> </div>
<div class="Footer__col_link_wrap"> <a class="Footer__col_link" target="_self"
rel="noreferrer noopener" href="https://tonmetaspace.org/events">
<div class="Text Text--l-1 Text--t-default">Events</div>
</a> </div>
</div>
</div>
<div class="Footer__col">
<div class="Title Title--l-1 Title--t-footer Footer__col_header">Governance</div>
<div class="Footer__col_links">
<div class="Footer__col_link_wrap"> <a class="Footer__col_link" target="_self"
rel="noreferrer noopener" href="https://tonmetaspace.org/dao">
<div class="Text Text--l-1 Text--t-default">DAO</div>
</a> </div>
</div>
</div>
<div class="Footer__col">
<div class="Title Title--l-1 Title--t-footer Footer__col_header">Other</div>
<div class="Footer__col_links">
<div class="Footer__col_link_wrap"> <a class="Footer__col_link" target="_blank"
rel="noreferrer noopener" href="https://t.me/tonmetaspace_support_bot">
<div class="Text Text--l-1 Text--t-default">Support</div>
</a> </div>
</div>
</div>
</div>
</div>
<div class="Footer__copyrights">
<div class="HideByMediaBlock"
style="--xsVisible:none;--preSVisible:none;--sVisible:none;--mVisible:none;--lVisible:block;--xlVisible:block;--xxlVisible:block">
<a class="Logo Logo--dark" href="https://tonmetaspace.org">
<div class="Logo__inner Logo__inner--large">
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="49.695183mm" height="8.7312498mm" viewBox="0 0 49.695183 8.7312498"
version="1.1" id="svg1590" xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs id="defs1587" />
<g id="layer1" transform="translate(-45.587789,-109.15866)">
<g id="g30740" transform="matrix(0.26079619,0,0,0.2607954,1397.21,-109.96445)">
<g aria-label=" Metaspace"
transform="matrix(0.30292535,0,0,0.30292535,-7007.2796,-13815.799)"
id="text30738"
style="font-weight:900;font-size:120px;line-height:1;font-family:Mulish;-inkscape-font-specification:'Mulish Heavy';white-space:pre;shape-inside:url(#rect34153);display:inline;fill:#2188ff">
<path
d="m 6023.2773,48466.189 v -84.6 h 19.2 l 27.72,62.04 h -3.96 l 27.6,-62.04 h 19.32 v 84.6 h -20.04 v -51.84 h 5.16 l -24,51.84 h -12.48 l -24.12,-51.84 h 5.52 v 51.84 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21758" />
<path
d="m 6159.9571,48467.509 q -16.56,0 -25.8,-8.52 -9.12,-8.52 -9.12,-23.4 0,-9.24 3.84,-16.44 3.84,-7.2 10.8,-11.16 6.96,-4.08 16.32,-4.08 9.24,0 15.36,4.08 6.24,3.96 9.36,11.04 3.12,6.96 3.12,16.2 v 4.56 h -40.92 v -10.08 h 25.2 l -2.04,1.68 q 0,-6.84 -2.64,-10.08 -2.52,-3.36 -7.2,-3.36 -5.4,0 -8.28,4.08 -2.76,3.96 -2.76,12 v 2.16 q 0,8.04 3.96,11.76 3.96,3.72 11.4,3.72 4.8,0 9,-1.08 4.32,-1.08 8.16,-3.48 l 5.52,13.92 q -4.56,3.12 -10.56,4.8 -6,1.68 -12.72,1.68 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21755" />
<path
d="m 6224.7567,48467.509 q -12.96,0 -19.56,-6.12 -6.48,-6.24 -6.48,-18.84 v -21.6 h -11.4 v -15.72 h 11.4 v -14.4 l 21.36,-5.04 v 19.44 h 14.88 v 15.72 h -14.88 v 20.76 q 0,5.28 2.4,7.08 2.4,1.68 5.76,1.68 2.04,0 3.48,-0.24 1.56,-0.36 3.24,-0.96 v 16.44 q -2.64,1.08 -5.28,1.44 -2.52,0.36 -4.92,0.36 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21752" />
<path
d="m 6267.2367,48467.509 q -7.92,0 -13.92,-3.72 -6,-3.84 -9.48,-11.04 -3.36,-7.2 -3.36,-17.04 0,-9.96 3.36,-17.04 3.48,-7.2 9.48,-10.92 6,-3.84 13.92,-3.84 7.08,0 12.72,3.36 5.76,3.36 7.56,8.76 h -1.2 l 1.32,-10.8 h 20.52 q -0.36,4.08 -0.72,8.28 -0.24,4.2 -0.24,8.28 v 44.4 h -21.12 l -0.24,-10.32 h 1.44 q -1.8,5.28 -7.56,8.52 -5.64,3.12 -12.48,3.12 z m 6.84,-15.84 q 5.4,0 8.76,-3.72 3.36,-3.84 3.36,-12.24 0,-8.4 -3.36,-12.12 -3.36,-3.84 -8.76,-3.84 -5.4,0 -8.76,3.84 -3.36,3.72 -3.36,12.12 0,8.4 3.24,12.24 3.36,3.72 8.88,3.72 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21749" />
<path
d="m 6343.9166,48467.509 q -8.52,0 -15.48,-1.68 -6.84,-1.8 -11.64,-4.8 l 5.16,-13.92 q 4.68,2.64 10.44,4.32 5.88,1.68 11.64,1.68 4.56,0 6.6,-1.32 2.16,-1.44 2.16,-3.72 0,-1.8 -1.32,-2.88 -1.32,-1.08 -3.96,-1.56 l -12.96,-2.28 q -7.68,-1.44 -12,-5.64 -4.2,-4.32 -4.2,-11.16 0,-6.24 3.36,-10.8 3.36,-4.68 9.6,-7.2 6.24,-2.64 14.76,-2.64 6.96,0 13.2,1.56 6.36,1.56 11.04,4.92 l -5.52,13.56 q -3.72,-2.52 -8.76,-4.08 -4.92,-1.68 -9.24,-1.68 -5.16,0 -7.32,1.56 -2.16,1.44 -2.16,3.6 0,1.68 1.2,2.88 1.2,1.08 3.84,1.56 l 12.96,2.28 q 7.92,1.32 12.12,5.52 4.32,4.08 4.32,11.16 0,6.6 -3.6,11.28 -3.48,4.56 -9.72,7.08 -6.24,2.4 -14.52,2.4 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21746" />
<path
d="m 6381.2364,48492.109 v -70.32 q 0,-4.08 -0.24,-8.28 -0.24,-4.2 -0.72,-8.28 h 20.64 l 1.32,10.8 h -1.2 q 1.68,-5.4 7.44,-8.76 5.76,-3.36 12.84,-3.36 7.92,0 13.92,3.84 6,3.72 9.36,10.92 3.48,7.08 3.48,17.04 0,9.84 -3.48,17.04 -3.36,7.2 -9.36,11.04 -6,3.72 -13.92,3.72 -6.96,0 -12.6,-3.12 -5.64,-3.24 -7.44,-8.52 h 1.32 v 36.24 z m 33.24,-40.44 q 5.52,0 8.76,-3.72 3.36,-3.84 3.36,-12.24 0,-8.4 -3.36,-12.12 -3.24,-3.84 -8.76,-3.84 -5.4,0 -8.76,3.84 -3.36,3.72 -3.36,12.12 0,8.4 3.36,12.24 3.36,3.72 8.76,3.72 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21743" />
<path
d="m 6482.5163,48467.509 q -7.92,0 -13.92,-3.72 -6,-3.84 -9.48,-11.04 -3.36,-7.2 -3.36,-17.04 0,-9.96 3.36,-17.04 3.48,-7.2 9.48,-10.92 6,-3.84 13.92,-3.84 7.08,0 12.72,3.36 5.76,3.36 7.56,8.76 h -1.2 l 1.32,-10.8 h 20.52 q -0.36,4.08 -0.72,8.28 -0.24,4.2 -0.24,8.28 v 44.4 h -21.12 l -0.24,-10.32 h 1.44 q -1.8,5.28 -7.56,8.52 -5.64,3.12 -12.48,3.12 z m 6.84,-15.84 q 5.4,0 8.76,-3.72 3.36,-3.84 3.36,-12.24 0,-8.4 -3.36,-12.12 -3.36,-3.84 -8.76,-3.84 -5.4,0 -8.76,3.84 -3.36,3.72 -3.36,12.12 0,8.4 3.24,12.24 3.36,3.72 8.88,3.72 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21740" />
<path
d="m 6566.6362,48467.509 q -10.08,0 -17.64,-3.84 -7.56,-3.84 -11.76,-10.92 -4.2,-7.2 -4.2,-17.16 0,-9.96 4.2,-17.04 4.2,-7.08 11.76,-10.8 7.56,-3.84 17.64,-3.84 6.24,0 12.24,1.68 6,1.68 9.72,4.8 l -6,14.52 q -2.88,-2.4 -6.6,-3.6 -3.6,-1.32 -7.08,-1.32 -6.6,0 -10.32,3.96 -3.6,3.96 -3.6,11.64 0,7.68 3.6,11.76 3.72,3.96 10.32,3.96 3.36,0 7.08,-1.2 3.72,-1.32 6.6,-3.6 l 6,14.52 q -3.84,3 -9.84,4.8 -5.88,1.68 -12.12,1.68 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21737" />
<path
d="m 6628.4361,48467.509 q -16.56,0 -25.8,-8.52 -9.12,-8.52 -9.12,-23.4 0,-9.24 3.84,-16.44 3.84,-7.2 10.8,-11.16 6.96,-4.08 16.32,-4.08 9.24,0 15.36,4.08 6.24,3.96 9.36,11.04 3.12,6.96 3.12,16.2 v 4.56 h -40.92 v -10.08 h 25.2 l -2.04,1.68 q 0,-6.84 -2.64,-10.08 -2.52,-3.36 -7.2,-3.36 -5.4,0 -8.28,4.08 -2.76,3.96 -2.76,12 v 2.16 q 0,8.04 3.96,11.76 3.96,3.72 11.4,3.72 4.8,0 9,-1.08 4.32,-1.08 8.16,-3.48 l 5.52,13.92 q -4.56,3.12 -10.56,4.8 -6,1.68 -12.72,1.68 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21734" />
</g>
</g>
</g>
</svg>
</div>
<div class="Logo__inner Logo__inner--small">
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="49.695183mm" height="8.7312498mm" viewBox="0 0 49.695183 8.7312498"
version="1.1" id="svg1590" xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs id="defs1587" />
<g id="layer1" transform="translate(-45.587789,-109.15866)">
<g id="g30740" transform="matrix(0.26079619,0,0,0.2607954,1397.21,-109.96445)">
<g aria-label=" Metaspace"
transform="matrix(0.30292535,0,0,0.30292535,-7007.2796,-13815.799)"
id="text30738"
style="font-weight:900;font-size:120px;line-height:1;font-family:Mulish;-inkscape-font-specification:'Mulish Heavy';white-space:pre;shape-inside:url(#rect34153);display:inline;fill:#2188ff">
<path
d="m 6023.2773,48466.189 v -84.6 h 19.2 l 27.72,62.04 h -3.96 l 27.6,-62.04 h 19.32 v 84.6 h -20.04 v -51.84 h 5.16 l -24,51.84 h -12.48 l -24.12,-51.84 h 5.52 v 51.84 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21758" />
<path
d="m 6159.9571,48467.509 q -16.56,0 -25.8,-8.52 -9.12,-8.52 -9.12,-23.4 0,-9.24 3.84,-16.44 3.84,-7.2 10.8,-11.16 6.96,-4.08 16.32,-4.08 9.24,0 15.36,4.08 6.24,3.96 9.36,11.04 3.12,6.96 3.12,16.2 v 4.56 h -40.92 v -10.08 h 25.2 l -2.04,1.68 q 0,-6.84 -2.64,-10.08 -2.52,-3.36 -7.2,-3.36 -5.4,0 -8.28,4.08 -2.76,3.96 -2.76,12 v 2.16 q 0,8.04 3.96,11.76 3.96,3.72 11.4,3.72 4.8,0 9,-1.08 4.32,-1.08 8.16,-3.48 l 5.52,13.92 q -4.56,3.12 -10.56,4.8 -6,1.68 -12.72,1.68 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21755" />
<path
d="m 6224.7567,48467.509 q -12.96,0 -19.56,-6.12 -6.48,-6.24 -6.48,-18.84 v -21.6 h -11.4 v -15.72 h 11.4 v -14.4 l 21.36,-5.04 v 19.44 h 14.88 v 15.72 h -14.88 v 20.76 q 0,5.28 2.4,7.08 2.4,1.68 5.76,1.68 2.04,0 3.48,-0.24 1.56,-0.36 3.24,-0.96 v 16.44 q -2.64,1.08 -5.28,1.44 -2.52,0.36 -4.92,0.36 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21752" />
<path
d="m 6267.2367,48467.509 q -7.92,0 -13.92,-3.72 -6,-3.84 -9.48,-11.04 -3.36,-7.2 -3.36,-17.04 0,-9.96 3.36,-17.04 3.48,-7.2 9.48,-10.92 6,-3.84 13.92,-3.84 7.08,0 12.72,3.36 5.76,3.36 7.56,8.76 h -1.2 l 1.32,-10.8 h 20.52 q -0.36,4.08 -0.72,8.28 -0.24,4.2 -0.24,8.28 v 44.4 h -21.12 l -0.24,-10.32 h 1.44 q -1.8,5.28 -7.56,8.52 -5.64,3.12 -12.48,3.12 z m 6.84,-15.84 q 5.4,0 8.76,-3.72 3.36,-3.84 3.36,-12.24 0,-8.4 -3.36,-12.12 -3.36,-3.84 -8.76,-3.84 -5.4,0 -8.76,3.84 -3.36,3.72 -3.36,12.12 0,8.4 3.24,12.24 3.36,3.72 8.88,3.72 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21749" />
<path
d="m 6343.9166,48467.509 q -8.52,0 -15.48,-1.68 -6.84,-1.8 -11.64,-4.8 l 5.16,-13.92 q 4.68,2.64 10.44,4.32 5.88,1.68 11.64,1.68 4.56,0 6.6,-1.32 2.16,-1.44 2.16,-3.72 0,-1.8 -1.32,-2.88 -1.32,-1.08 -3.96,-1.56 l -12.96,-2.28 q -7.68,-1.44 -12,-5.64 -4.2,-4.32 -4.2,-11.16 0,-6.24 3.36,-10.8 3.36,-4.68 9.6,-7.2 6.24,-2.64 14.76,-2.64 6.96,0 13.2,1.56 6.36,1.56 11.04,4.92 l -5.52,13.56 q -3.72,-2.52 -8.76,-4.08 -4.92,-1.68 -9.24,-1.68 -5.16,0 -7.32,1.56 -2.16,1.44 -2.16,3.6 0,1.68 1.2,2.88 1.2,1.08 3.84,1.56 l 12.96,2.28 q 7.92,1.32 12.12,5.52 4.32,4.08 4.32,11.16 0,6.6 -3.6,11.28 -3.48,4.56 -9.72,7.08 -6.24,2.4 -14.52,2.4 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21746" />
<path
d="m 6381.2364,48492.109 v -70.32 q 0,-4.08 -0.24,-8.28 -0.24,-4.2 -0.72,-8.28 h 20.64 l 1.32,10.8 h -1.2 q 1.68,-5.4 7.44,-8.76 5.76,-3.36 12.84,-3.36 7.92,0 13.92,3.84 6,3.72 9.36,10.92 3.48,7.08 3.48,17.04 0,9.84 -3.48,17.04 -3.36,7.2 -9.36,11.04 -6,3.72 -13.92,3.72 -6.96,0 -12.6,-3.12 -5.64,-3.24 -7.44,-8.52 h 1.32 v 36.24 z m 33.24,-40.44 q 5.52,0 8.76,-3.72 3.36,-3.84 3.36,-12.24 0,-8.4 -3.36,-12.12 -3.24,-3.84 -8.76,-3.84 -5.4,0 -8.76,3.84 -3.36,3.72 -3.36,12.12 0,8.4 3.36,12.24 3.36,3.72 8.76,3.72 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21743" />
<path
d="m 6482.5163,48467.509 q -7.92,0 -13.92,-3.72 -6,-3.84 -9.48,-11.04 -3.36,-7.2 -3.36,-17.04 0,-9.96 3.36,-17.04 3.48,-7.2 9.48,-10.92 6,-3.84 13.92,-3.84 7.08,0 12.72,3.36 5.76,3.36 7.56,8.76 h -1.2 l 1.32,-10.8 h 20.52 q -0.36,4.08 -0.72,8.28 -0.24,4.2 -0.24,8.28 v 44.4 h -21.12 l -0.24,-10.32 h 1.44 q -1.8,5.28 -7.56,8.52 -5.64,3.12 -12.48,3.12 z m 6.84,-15.84 q 5.4,0 8.76,-3.72 3.36,-3.84 3.36,-12.24 0,-8.4 -3.36,-12.12 -3.36,-3.84 -8.76,-3.84 -5.4,0 -8.76,3.84 -3.36,3.72 -3.36,12.12 0,8.4 3.24,12.24 3.36,3.72 8.88,3.72 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21740" />
<path
d="m 6566.6362,48467.509 q -10.08,0 -17.64,-3.84 -7.56,-3.84 -11.76,-10.92 -4.2,-7.2 -4.2,-17.16 0,-9.96 4.2,-17.04 4.2,-7.08 11.76,-10.8 7.56,-3.84 17.64,-3.84 6.24,0 12.24,1.68 6,1.68 9.72,4.8 l -6,14.52 q -2.88,-2.4 -6.6,-3.6 -3.6,-1.32 -7.08,-1.32 -6.6,0 -10.32,3.96 -3.6,3.96 -3.6,11.64 0,7.68 3.6,11.76 3.72,3.96 10.32,3.96 3.36,0 7.08,-1.2 3.72,-1.32 6.6,-3.6 l 6,14.52 q -3.84,3 -9.84,4.8 -5.88,1.68 -12.12,1.68 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21737" />
<path
d="m 6628.4361,48467.509 q -16.56,0 -25.8,-8.52 -9.12,-8.52 -9.12,-23.4 0,-9.24 3.84,-16.44 3.84,-7.2 10.8,-11.16 6.96,-4.08 16.32,-4.08 9.24,0 15.36,4.08 6.24,3.96 9.36,11.04 3.12,6.96 3.12,16.2 v 4.56 h -40.92 v -10.08 h 25.2 l -2.04,1.68 q 0,-6.84 -2.64,-10.08 -2.52,-3.36 -7.2,-3.36 -5.4,0 -8.28,4.08 -2.76,3.96 -2.76,12 v 2.16 q 0,8.04 3.96,11.76 3.96,3.72 11.4,3.72 4.8,0 9,-1.08 4.32,-1.08 8.16,-3.48 l 5.52,13.92 q -4.56,3.12 -10.56,4.8 -6,1.68 -12.72,1.68 z"
style="text-align:center;text-anchor:middle;fill:#ffffff"
id="path21734" />
</g>
</g>
</g>
</svg>
</div>
</a>
</div>
<div class="Caption Caption--l-1 Caption--t-footer Footer__copyrights_left">
<div class="Footer__copyrights_year">CC0 2023 TON Foundation grants program</div></div><div class="Footer__copyleft_right"> <div class="Footer__networks"><div class="NetworkIcon NetworkIcon--large"> </div></a> <a href="https://t.me/tonmetaspace" class="Footer__network" target="_blank" rel="noreferrer noopener"> <div class="NetworkIcon NetworkIcon--large"> <svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> <rect width="24" height="24" rx="12" fill="#434343"></rect> <path d="M5.39368 11.7355C8.88334 10.1831 11.2103 9.15973 12.3746 8.66527C15.699 7.2535 16.3897 7.00826 16.84 7.00008C16.939 6.99838 17.1604 7.02344 17.3038 7.14226C17.4249 7.2426 17.4583 7.37813 17.4742 7.47325C17.4901 7.56838 17.51 7.78508 17.4942 7.9544C17.3141 9.88701 16.5346 14.5769 16.138 16.7415C15.9702 17.6574 15.6398 17.9645 15.3199 17.9945C14.6248 18.0599 14.0969 17.5255 13.4236 17.0749C12.3701 16.3697 11.7749 15.9308 10.7522 15.2427C9.57034 14.4475 10.3365 14.0104 11.01 13.2962C11.1863 13.1092 14.2492 10.2648 14.3084 10.0067C14.3159 9.97446 14.3227 9.85417 14.2527 9.79065C14.1828 9.72713 14.0794 9.74885 14.0049 9.76612C13.8992 9.79061 12.2162 10.9264 8.95566 13.1736C8.47792 13.5086 8.04521 13.6718 7.6575 13.6632C7.23009 13.6538 6.40793 13.4165 5.79673 13.2136C5.04708 12.9648 4.45127 12.8333 4.50315 12.4107C4.53017 12.1906 4.82702 11.9656 5.39368 11.7355Z" fill="white"></path> </svg> </div></a> <a href="https://github.com/tonmetaspace" class="Footer__network" target="_blank" rel="noreferrer noopener"> <div class="NetworkIcon NetworkIcon--large"> <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <rect width="24" height="24" rx="12" fill="#98B2BF"></rect> <path fill-rule="evenodd" clip-rule="evenodd" d="M15.7112 23.4144C14.5424 23.7945 13.295 24 12 24C10.704 24 9.45585 23.7943 8.28636 23.4136C8.82659 23.4784 9.02622 23.1266 9.02622 22.8229C9.02622 22.6907 9.02396 22.4575 9.02094 22.1456C9.01745 21.7846 9.01294 21.3182 9.00972 20.7808C5.67147 21.5065 4.96722 19.1709 4.96722 19.1709C4.42197 17.784 3.63522 17.4147 3.63522 17.4147C2.54547 16.6694 3.71772 16.6846 3.71772 16.6846C4.92147 16.7694 5.55522 17.9221 5.55522 17.9221C6.62622 19.7572 8.36397 19.2274 9.04797 18.9196C9.15672 18.1436 9.46722 17.6143 9.80997 17.3142C7.14522 17.0111 4.34397 15.9813 4.34397 11.3799C4.34397 10.0687 4.81122 8.99704 5.57922 8.15715C5.45547 7.85327 5.04372 6.63288 5.69622 4.97947C5.69622 4.97947 6.70422 4.65671 8.99622 6.21032C9.95397 5.94382 10.98 5.81113 12.0007 5.80571C13.02 5.81094 14.0467 5.94382 15.0052 6.21032C17.2957 4.65671 18.3015 4.97947 18.3015 4.97947C18.9562 6.63288 18.5445 7.85327 18.4207 8.15715C19.1902 8.99704 19.6545 10.0687 19.6545 11.3799C19.6545 15.9925 16.8487 17.0081 14.1757 17.3052C14.6062 17.676 14.9902 18.4084 14.9902 19.529C14.9902 20.6025 14.9835 21.537 14.9791 22.1563C14.9769 22.4631 14.9752 22.6925 14.9752 22.8231C14.9752 23.1282 15.17 23.4807 15.7112 23.4144Z" fill="white"></path> </svg> </div></a> <a href="https://twitter.com/tonmetaspace" class="Footer__network" target="_blank" rel="noreferrer noopener"> <div class="NetworkIcon NetworkIcon--large"> <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <rect width="24" height="24" rx="12" fill="#98B2BF"></rect> <path d="M17.8812 9.40625C17.8812 9.5375 17.8812 9.66875 17.8812 9.78125C17.8812 13.6625 14.9187 18.1437 9.51875 18.1437C7.85 18.1437 6.3125 17.6562 5 16.8312C5.225 16.85 5.46875 16.8687 5.69375 16.8687C7.0625 16.8687 8.3375 16.4 9.35 15.6125C8.05625 15.5937 6.96875 14.7312 6.6125 13.5687C6.8 13.6062 6.96875 13.625 7.175 13.625C7.4375 13.625 7.7 13.5875 7.94375 13.5125C6.59375 13.25 5.58125 12.0687 5.58125 10.6437C5.58125 10.625 5.58125 10.625 5.58125 10.6062C5.975 10.8312 6.425 10.9625 6.9125 10.9812C6.125 10.4562 5.6 9.55625 5.6 8.525C5.6 7.98125 5.75 7.475 5.99375 7.04375C7.4375 8.825 9.6125 9.9875 12.05 10.1187C11.9937 9.9125 11.975 9.66875 11.975 9.44375C11.975 7.8125 13.2875 6.5 14.9187 6.5C15.7625 6.5 16.5312 6.85625 17.0562 7.41875C17.7312 7.2875 18.35 7.04375 18.9312 6.70625C18.7062 7.4 18.2375 7.9625 17.6375 8.3375C18.2375 8.2625 18.8 8.1125 19.325 7.86875C18.95 8.46875 18.4625 8.99375 17.8812 9.40625Z" fill="white"></path> </svg> </div></a> <a href="mailto:[email protected]" class="Footer__network" target="_blank" rel="noreferrer noopener"> <div class="NetworkIcon NetworkIcon--large"> <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> <circle cx="12" cy="12" r="12" fill="#98B2BF"></circle> <path d="M12.0033 11.3576L17.409 8.18617C17.0931 7.71875 16.5675 7.43669 16.0033 7.43188H8.00332C7.4362 7.43164 6.90566 7.71188 6.58618 8.18046L12.0033 11.3576Z" fill="white"></path> <path d="M12.5748 12.3404C12.4012 12.4411 12.2041 12.4944 12.0033 12.4947C11.8031 12.4961 11.6061 12.4449 11.4319 12.3461L6.28906 9.33472V14.8604C6.28906 15.8072 7.05657 16.5747 8.00335 16.5747H16.0033C16.9501 16.5747 17.7176 15.8072 17.7176 14.8604V9.33472L12.5748 12.3404Z" fill="white"></path> </svg> </div>
</a> </div>
</div>
</div>
</div>
</div>
</footer>
</div>
</body>
<style>
.Footer {
padding-top: 24px
}
@media(max-width:833px) {
.Footer {
padding-top: 20px
}
}
.Footer--with-offset {
margin-top: 100px
}
@media(max-width:1279px) {
.Footer--with-offset {
margin-top: 78px
}
}
@media(max-width:833px) {
.Footer--with-offset {
margin-top: 52px
}
}
.Footer--with-small-offset {
margin-top: 46px
}
@media(max-width:1439px) {
.Footer--with-small-offset {
margin-top: 26px
}
}
@media(max-width:833px) {
.Footer--with-small-offset {
margin-top: 16px
}
}
.Footer .Logo {
margin-top: -3px
}
@media(max-width:733px) {
.Footer .Logo {
margin-top: 0;
margin-left: 2px
}
}
@media(max-width:413px) {
.Footer .Logo {
margin-left: -2px
}
}
.Footer .Logo__inner--large {
display: block
}
@media(max-width:1023px) {
.Footer .Logo__inner--large {
display: none
}
}
.Footer .Logo__inner--small {
display: none
}
@media(max-width:1023px) {
.Footer .Logo__inner--small {
display: block
}
}
.Footer__links {
position: relative;
display: flex;
flex-wrap: wrap;
align-items: flex-start;
justify-content: space-between;
padding-bottom: 38px
}
@media(max-width:1439px) {
.Footer__links {
padding-bottom: 22px
}
}
@media(max-width:1279px) {
.Footer__links {
padding-bottom: 24px
}
}
@media(max-width:733px) {
.Footer__links {
justify-content: space-between;
margin: 0 0 -24px;
padding-top: 50px
}
}
.Footer__col {
box-sizing: border-box;
width: 13.0666666667%
}
@media(max-width:1279px) {
.Footer__col {
width: 14.1666666667%
}
}
@media(max-width:733px) {
.Footer__col {
width: 48%;
margin-bottom: 24px;
padding: 0
}
.Footer__col--logo {
position: absolute;
top: 0;
left: 0
}
}
.Footer__col_header {
font-weight: 700;
font-size: 18px
}
@media(max-width:1279px) {
.Footer__col_header {
font-size: 16px
}
}
.Footer__col_link_wrap {
margin-top: 2px
}
@media(max-width:1279px) {
.Footer__col_link_wrap {
margin-top: 4px
}
}
@media(max-width:733px) {
.Footer__col_link_wrap {
margin-top: 8px
}
}
.Footer__col_link {
color: var(--text_light_secondary)
}
.Footer__col_link .Text {
font-size: 15px
}
@media(max-width:1023px) {
.Footer__col_link .Text {
font-size: 14px
}
}
@media(max-width:733px) {
.Footer__col_link .Text {
font-size: 16px
}
}
.Footer__copyrights {
display: flex;
align-items: center;
justify-content: space-between;
padding: 24px 0 40px;
border-top: 1px solid var(--separator_light)
}
@media(max-width:1279px) {
.Footer__copyrights {
padding: 26px 0 46px
}
}
@media(max-width:1023px) {
.Footer__copyrights {
padding: 16px 0 36px
}
}
@media(max-width:733px) {
.Footer__copyrights {
flex-direction: row;
align-items: flex-start;
padding-top: 24px
}
}
.Footer__copyrights_left {
display: flex;
align-items: center;
margin-top: -3px
}
.Footer__copyrights_left,
.Footer__copyrights_left a {
color: #2188ff;
}
.Footer__networks {
display: flex;
align-items: flex-start;
margin: 0 -6px
}
@media(max-width:1279px) {
.Footer__networks {
margin: 0 -6px
}
}
@media(max-width:733px) {
.Footer__networks {
margin: 0 -4px
}
}
.Footer__network {
margin: 0 6px;
color: var(--icon_light_thirdly)
}
@media(max-width:1279px) {
.Footer__network {
margin: 0 6px
}
}
@media(max-width:733px) {
.Footer__network {
margin: 0 4px
}
}
.Footer__col_link,
.Footer__copyrights_link {
cursor: pointer;
transition: color .2s ease-in-out, background-color .2s ease-in-out, opacity .2s ease-in-out
}
@media screen and (min-width:1000px) {
.Footer__col_link:hover,
.Footer__copyrights_link:hover {
color: var(--button_light_primary)
}
}
.Footer__network {
cursor: pointer;
transition: color .2s ease-in-out, background-color .2s ease-in-out, opacity .2s ease-in-out
}
@media screen and (min-width:1000px) {
.Footer__network:hover {
color: var(--ton_blue)
}
}
.Button {
box-sizing: border-box;
display: inline-block;
padding: 0;
border: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
text-align: center;
cursor: pointer;
background: none;
transform: translateZ(0);
overflow: hidden;
max-width: 100%;
text-overflow: ellipsis;
white-space: nowrap
}
.Button:disabled {
pointer-events: none
}
.Button--round {
border-radius: 40px
}
.Button--m-primary {
padding: 16px 32px
}
@media(max-width:1279px) {
.Button--m-primary {
padding: 16px 24px
}
}
@media(max-width:733px) {
.Button--m-primary {
padding: 12px 16px
}
}
.Button--m-primary.Button--s-light {
color: var(--default_white);
background-color: var(--button_dark_primary);
cursor: pointer;
transition: color .2s ease-in-out, background-color .2s ease-in-out, opacity .2s ease-in-out
}
@media screen and (min-width:1000px) {
.Button--m-primary.Button--s-light:hover {
background-color: var(--button_light_primary_hover)
}
.Button--m-primary.Button--s-light:active {
background-color: var(--button_light_primary_pressed)
}
.Button--m-primary.Button--s-light:disabled {
opacity: .2
}
}
.Button--m-primary.Button--s-dark {
color: var(--default_white);
background-color: var(--button_dark_primary);
cursor: pointer;
transition: color .2s ease-in-out, background-color .2s ease-in-out, opacity .2s ease-in-out
}
@media screen and (min-width:1000px) {
.Button--m-primary.Button--s-dark:hover {
background-color: var(--button_dark_primary_hover)
}
.Button--m-primary.Button--s-dark:active {
background-color: var(--button_dark_primary_pressed)
}
.Button--m-primary.Button--s-dark:disabled {
opacity: .5
}
}
.Button--size-small {
padding: 1px 12px;
border-radius: 24px;
line-height: 24px;
font-weight: 500;
font-size: 16px
}
@media(max-width:1279px) {
.Button--size-small {
padding: 2px 12px
}
}
.Button--m-primary.Button--size-small {
background: var(--button_light_primary_small)
}
.Button--m-primary.Button--size-small.Button--s-light {
color: var(--button_light_primary);
background-color: var(--button_light_primary_small);
cursor: pointer;
transition: color .2s ease-in-out, background-color .2s ease-in-out, opacity .2s ease-in-out
}
@media screen and (min-width:1000px) {
.Button--m-primary.Button--size-small.Button--s-light:hover {
background-color: var(--button_light_primary_small_hover)
}
.Button--m-primary.Button--size-small.Button--s-light:active {
background-color: var(--button_light_primary_small_pressed)
}
.Button--m-primary.Button--size-small.Button--s-light:disabled {
opacity: .2
}
}
.Button--m-secondary:disabled {
opacity: .5
}
.Button--m-secondary.Button--s-light {
padding: 8px 20px;
color: var(--ton_blue);
background-color: var(--background_light_main);
cursor: pointer;
transition: color .2s ease-in-out, background-color .2s ease-in-out, opacity .2s ease-in-out
}
@media screen and (min-width:1000px) {