@kolkrabbi/kol-component 0.1.0
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/README.md +24 -0
- package/package.json +46 -0
- package/src/atoms/Avatar.jsx +17 -0
- package/src/atoms/Button.jsx +172 -0
- package/src/atoms/ColorSwatch.jsx +126 -0
- package/src/atoms/Divider.jsx +34 -0
- package/src/atoms/Input.jsx +121 -0
- package/src/atoms/Label.jsx +12 -0
- package/src/atoms/Slider.jsx +129 -0
- package/src/atoms/Stepper.jsx +97 -0
- package/src/atoms/Textarea.jsx +70 -0
- package/src/atoms/ToggleCheckbox.jsx +40 -0
- package/src/atoms/ToggleSwitch.jsx +42 -0
- package/src/atoms/TransparentX.jsx +37 -0
- package/src/graphics/Graphic.jsx +53 -0
- package/src/graphics/svg/abstract/abstract-01.svg +3 -0
- package/src/graphics/svg/abstract/abstract-02.svg +3 -0
- package/src/graphics/svg/abstract/abstract-03.svg +3 -0
- package/src/graphics/svg/abstract/abstract-06.svg +4 -0
- package/src/graphics/svg/diagrams/.gitkeep +0 -0
- package/src/graphics/svg/diagrams/ac-structure.svg +90 -0
- package/src/graphics/svg/diagrams/rg-x-height.svg +3 -0
- package/src/graphics/svg/diagrams/structure-grid.svg +618 -0
- package/src/graphics/svg/diagrams/structure-logo.svg +23 -0
- package/src/graphics/svg/patterns/.gitkeep +0 -0
- package/src/graphics/svg/patterns/patt-01.svg +34 -0
- package/src/graphics/svg/patterns/patt-02.svg +34 -0
- package/src/graphics/svg/patterns/patt-03.svg +110 -0
- package/src/graphics/svg/patterns/patt-04.svg +10 -0
- package/src/graphics/svg/patterns/patt-05.svg +62 -0
- package/src/graphics/svg/patterns/patt-06.svg +66 -0
- package/src/graphics/svg/patterns/patt-07.svg +130 -0
- package/src/graphics/svg/patterns/patt-08.svg +434 -0
- package/src/graphics/svg/patterns/patt-09.svg +38 -0
- package/src/graphics/svg/patterns/patt-10.svg +20 -0
- package/src/graphics/svg/patterns/patt-11.svg +38 -0
- package/src/graphics/svg/patterns/patt-12.svg +58 -0
- package/src/graphics/svg/patterns/patt-13.svg +48 -0
- package/src/graphics/svg/patterns/patt-14.svg +90 -0
- package/src/graphics/svg/patterns/patt-15.svg +194 -0
- package/src/graphics/svg/patterns/patt-16.svg +12 -0
- package/src/graphics/svg/social/social-01.svg +18 -0
- package/src/graphics/svg/social/social-02.svg +18 -0
- package/src/graphics/svg/social/social-03.svg +18 -0
- package/src/graphics/svg/social/social-04.svg +18 -0
- package/src/graphics/svg/social/social-05.svg +18 -0
- package/src/graphics/svg/social/social-06.svg +18 -0
- package/src/graphics/svg/social/social-07.svg +22 -0
- package/src/graphics/svg/social/social-08.svg +22 -0
- package/src/graphics/svg/social/social-09.svg +22 -0
- package/src/graphics/svg/social/social-10.svg +6 -0
- package/src/graphics/svg/social/social-11.svg +6 -0
- package/src/graphics/svg/social/social-12.svg +6 -0
- package/src/graphics/svg/social/social-13.svg +9 -0
- package/src/graphics/svg/social/social-14.svg +9 -0
- package/src/graphics/svg/social/social-15.svg +9 -0
- package/src/graphics/svg/structure/diagram-grid-lockup-hori.svg +23 -0
- package/src/graphics/svg/structure/diagram-grid-lockup-vert.svg +25 -0
- package/src/graphics/svg/structure/diagram-grid-logomark.svg +20 -0
- package/src/graphics/svg/structure/diagram-grid-wordmark.svg +18 -0
- package/src/graphics/svg/structure/diagram-logo-lockup-hori.svg +9 -0
- package/src/graphics/svg/structure/diagram-logo-lockup-vert.svg +23 -0
- package/src/graphics/svg/structure/diagram-logo-logomark.svg +7 -0
- package/src/graphics/svg/structure/diagram-logo-wordmark.svg +3 -0
- package/src/graphics/svg/structure/diagram-x-lockup-hori.svg +5 -0
- package/src/graphics/svg/structure/diagram-x-lockup-vert.svg +10 -0
- package/src/graphics/svg/structure/diagram-x-logomark.svg +5 -0
- package/src/graphics/svg/structure/diagram-x-wordmark.svg +5 -0
- package/src/hooks/useReveal.js +28 -0
- package/src/hooks/useScrollSpy.js +56 -0
- package/src/index.js +59 -0
- package/src/molecules/Badge.jsx +51 -0
- package/src/molecules/ContentFilters.jsx +263 -0
- package/src/molecules/Dropdown.jsx +223 -0
- package/src/molecules/DropdownTagFilter.jsx +253 -0
- package/src/molecules/LabeledControl.jsx +66 -0
- package/src/molecules/MenuItem.jsx +148 -0
- package/src/molecules/MenuPopover.jsx +128 -0
- package/src/molecules/Modal.jsx +124 -0
- package/src/molecules/Pill.jsx +33 -0
- package/src/molecules/Popover.jsx +208 -0
- package/src/molecules/PropertyInput.jsx +32 -0
- package/src/molecules/QuantityInput.jsx +174 -0
- package/src/molecules/QuantityStepper.jsx +149 -0
- package/src/molecules/Section.jsx +16 -0
- package/src/molecules/SectionLabel.jsx +59 -0
- package/src/molecules/SegmentedToggle.jsx +56 -0
- package/src/molecules/Tag.jsx +79 -0
- package/src/molecules/ToggleBracket.jsx +45 -0
- package/src/molecules/ViewToggle.jsx +101 -0
- package/src/organisms/Table.jsx +46 -0
- package/src/primitives/Accordion.jsx +45 -0
- package/src/primitives/AssetPlaceholder.jsx +28 -0
- package/src/primitives/Carousel.jsx +50 -0
- package/src/primitives/CodeBlock.jsx +41 -0
- package/src/primitives/ExitPreview.jsx +12 -0
- package/src/primitives/FullscreenOverlay.jsx +39 -0
- package/src/primitives/Image.jsx +38 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="1080" height="1080" viewBox="0 0 1080 1080" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="1080" height="1080" fill="#1B1B1E"/>
|
|
3
|
+
<path d="M416.694 913.141C430.915 913.141 439.231 921.393 439.231 941.325V945.896L427.17 948.308V943.293C427.17 927.424 423.614 922.726 416.948 922.726C409.711 922.726 406.22 928.44 406.22 940.627V976.873C406.22 988.997 409.711 994.71 417.012 994.71C423.614 994.71 427.487 989.95 427.487 973.446V967.795L439.676 970.652V975.858C439.676 996.234 430.851 1004.49 416.758 1004.49C401.268 1004.49 393.65 994.583 393.649 975.223V942.341C393.649 923.044 401.331 913.141 416.694 913.141ZM696.774 913.077C712.709 913.077 720.771 923.044 720.771 942.468V975.159C720.771 994.52 712.709 1004.49 696.774 1004.49C680.903 1004.49 672.841 994.52 672.841 975.159V942.468C672.841 923.044 680.903 913.077 696.774 913.077ZM472.114 914.347C485.954 914.347 493.064 921.076 493.064 934.089V940.056C493.064 949.895 488.366 955.735 479.542 957.068V958.147C485.763 959.797 488.304 962.781 489.891 973.636L491.414 984.554C493.001 995.472 494.335 999.725 496.811 1001.82L496.557 1003.22H482.717C481.13 999.598 480.24 995.028 479.034 984.871L477.765 974.652C476.558 964.432 474.527 962.146 468.56 962.146H463.29V1003.22H450.848V914.347H472.114ZM540.104 924.503H517.694V951.545H538.01V960.876H517.694V993.06H541.12V1003.22H505.251V914.347H540.104V924.503ZM597.174 1003.22H584.16L581.239 986.649H562.512L559.527 1003.22H547.466L564.479 914.347H579.97L597.174 1003.22ZM640.278 924.503H624.725V1003.22H612.281V924.503H596.728V914.347H640.278V924.503ZM661.353 1003.22H648.91V914.347H661.353V1003.22ZM763.367 966.018C764.954 971.16 766.16 976.619 767.557 983.983L768.89 983.856C768.064 974.651 767.43 964.749 767.43 956.56V914.347H779.429V1003.22H764.51L748.702 951.863C747.052 946.404 745.845 941.389 744.258 933.073L742.988 933.264C743.75 941.96 744.321 952.942 744.321 960.94L744.385 1003.22H732.323V914.347H747.623L763.367 966.018ZM696.774 922.853C689.156 922.853 685.41 928.757 685.41 940.945V976.937C685.41 988.934 689.156 994.71 696.838 994.71C704.519 994.71 708.201 988.934 708.201 976.937V940.945C708.201 928.757 704.519 922.853 696.774 922.853ZM571.209 929.708C570.384 939.23 569.495 945.832 568.226 953.323L564.162 977.508H579.589L575.525 953.323C574.256 945.832 573.367 939.23 572.479 929.708H571.209ZM463.29 952.561H470.781C477.511 952.561 480.622 949.387 480.622 942.278V934.47C480.622 927.297 477.511 924.249 470.781 924.249H463.29V952.561ZM531.853 803.343C547.787 803.343 555.85 813.309 555.85 832.734V865.425C555.85 884.786 547.787 894.752 531.853 894.752C515.981 894.752 507.919 884.786 507.919 865.425V832.734C507.919 813.309 515.981 803.343 531.853 803.343ZM440.565 893.483H427.552L424.631 876.914H405.903L402.92 893.483H390.857L407.871 804.613H423.361L440.565 893.483ZM480.368 856.284C481.955 861.426 483.161 866.885 484.558 874.248L485.891 874.121C485.065 864.917 484.431 855.014 484.431 846.825V804.613H496.43V893.483H481.511L465.703 842.128C464.053 836.669 462.846 831.655 461.259 823.339L459.989 823.53C460.751 832.226 461.322 843.208 461.322 851.206L461.386 893.483H449.324V804.613H464.624L480.368 856.284ZM605.682 814.77H590.128V893.483H577.685V814.77H562.131V804.613H605.682V814.77ZM626.756 841.176H646.182V804.613H658.562V893.483H646.182V851.206H626.756V893.483H614.312V804.613H626.756V841.176ZM706.236 814.77H683.826V841.811H704.142V851.143H683.826V883.325H707.252V893.483H671.383V804.613H706.236V814.77ZM738.927 804.613C752.766 804.613 759.877 811.342 759.877 824.355V830.322C759.877 840.161 755.179 846 746.354 847.333V848.412C752.576 850.063 755.116 853.047 756.703 863.902L758.227 874.82C759.814 885.738 761.147 889.991 763.623 892.086L763.369 893.483H749.529C747.942 889.864 747.053 885.293 745.847 875.137L744.577 864.917C743.371 854.697 741.34 852.412 735.372 852.412H730.103V893.483H717.66V804.613H738.927ZM531.853 813.118C524.234 813.118 520.488 819.022 520.488 831.21V867.202C520.488 879.2 524.234 884.976 531.916 884.976C539.598 884.976 543.279 879.2 543.279 867.202V831.21C543.279 819.022 539.598 813.118 531.853 813.118ZM414.601 819.975C413.775 829.496 412.887 836.098 411.617 843.588L407.554 867.774H422.98L418.918 843.588C417.648 836.098 416.759 829.496 415.87 819.975H414.601ZM730.103 842.826H737.594C744.323 842.826 747.435 839.653 747.435 832.543V824.736C747.435 817.563 744.323 814.516 737.594 814.516H730.103V842.826Z" fill="#F6F3EC"/>
|
|
4
|
+
<path d="M827.428 819.257V988.571" stroke="#F6F3EC" stroke-width="4.57143"/>
|
|
5
|
+
<path d="M964.877 796.702L957.153 817.261C947.041 801.119 933.839 791.829 917.688 791.829C891.003 791.829 866.285 817.261 866.285 861.578C866.285 894.016 879.347 929.347 907.857 948.383L882.436 1016H972.181C975.27 993.766 980.326 964.831 980.326 927.824C980.326 892.797 975.832 861.73 967.125 838.125L972.883 822.592C979.484 804.469 988.332 800.357 1016 800.357V796.702H964.877ZM882.015 869.192C882.015 823.81 899.009 795.484 920.918 795.484C933.98 795.484 945.777 805.535 955.187 822.439L909.823 943.053C888.195 923.864 882.015 896.148 882.015 869.192ZM902.941 1012.35L964.737 844.521C972.883 868.279 977.518 899.041 976.675 931.936C975.692 970.161 967.405 1012.35 937.069 1012.35H902.941Z" fill="#F6F3EC"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="1080" height="1350" viewBox="0 0 1080 1350" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="1080" height="1350" fill="#1B1B1E"/>
|
|
3
|
+
<path d="M416.694 1183.14C430.915 1183.14 439.231 1191.39 439.231 1211.33V1215.9L427.17 1218.31V1213.29C427.17 1197.42 423.614 1192.73 416.948 1192.73C409.711 1192.73 406.22 1198.44 406.22 1210.63V1246.87C406.22 1259 409.711 1264.71 417.012 1264.71C423.614 1264.71 427.487 1259.95 427.487 1243.45V1237.8L439.676 1240.65V1245.86C439.676 1266.23 430.851 1274.49 416.758 1274.49C401.268 1274.49 393.65 1264.58 393.649 1245.22V1212.34C393.649 1193.04 401.331 1183.14 416.694 1183.14ZM696.774 1183.08C712.709 1183.08 720.771 1193.04 720.771 1212.47V1245.16C720.771 1264.52 712.709 1274.49 696.774 1274.49C680.903 1274.49 672.841 1264.52 672.841 1245.16V1212.47C672.841 1193.04 680.903 1183.08 696.774 1183.08ZM472.114 1184.35C485.954 1184.35 493.064 1191.08 493.064 1204.09V1210.06C493.064 1219.89 488.366 1225.73 479.542 1227.07V1228.15C485.763 1229.8 488.304 1232.78 489.891 1243.64L491.414 1254.55C493.001 1265.47 494.335 1269.72 496.811 1271.82L496.557 1273.22H482.717C481.13 1269.6 480.24 1265.03 479.034 1254.87L477.765 1244.65C476.558 1234.43 474.527 1232.15 468.56 1232.15H463.29V1273.22H450.848V1184.35H472.114ZM540.104 1194.5H517.694V1221.55H538.01V1230.88H517.694V1263.06H541.12V1273.22H505.251V1184.35H540.104V1194.5ZM597.174 1273.22H584.16L581.239 1256.65H562.512L559.527 1273.22H547.466L564.479 1184.35H579.97L597.174 1273.22ZM640.278 1194.5H624.725V1273.22H612.281V1194.5H596.728V1184.35H640.278V1194.5ZM661.353 1273.22H648.91V1184.35H661.353V1273.22ZM763.367 1236.02C764.954 1241.16 766.16 1246.62 767.557 1253.98L768.89 1253.86C768.064 1244.65 767.43 1234.75 767.43 1226.56V1184.35H779.429V1273.22H764.51L748.702 1221.86C747.052 1216.4 745.845 1211.39 744.258 1203.07L742.988 1203.26C743.75 1211.96 744.321 1222.94 744.321 1230.94L744.385 1273.22H732.323V1184.35H747.623L763.367 1236.02ZM696.774 1192.85C689.156 1192.85 685.41 1198.76 685.41 1210.94V1246.94C685.41 1258.93 689.156 1264.71 696.838 1264.71C704.519 1264.71 708.201 1258.93 708.201 1246.94V1210.94C708.201 1198.76 704.519 1192.85 696.774 1192.85ZM571.209 1199.71C570.384 1209.23 569.495 1215.83 568.226 1223.32L564.162 1247.51H579.589L575.525 1223.32C574.256 1215.83 573.367 1209.23 572.479 1199.71H571.209ZM463.29 1222.56H470.781C477.511 1222.56 480.622 1219.39 480.622 1212.28V1204.47C480.622 1197.3 477.511 1194.25 470.781 1194.25H463.29V1222.56ZM531.853 1073.34C547.787 1073.34 555.85 1083.31 555.85 1102.73V1135.43C555.85 1154.79 547.787 1164.75 531.853 1164.75C515.981 1164.75 507.919 1154.79 507.919 1135.43V1102.73C507.919 1083.31 515.981 1073.34 531.853 1073.34ZM440.565 1163.48H427.552L424.631 1146.91H405.903L402.92 1163.48H390.857L407.871 1074.61H423.361L440.565 1163.48ZM480.368 1126.28C481.955 1131.43 483.161 1136.89 484.558 1144.25L485.891 1144.12C485.065 1134.92 484.431 1125.01 484.431 1116.83V1074.61H496.43V1163.48H481.511L465.703 1112.13C464.053 1106.67 462.846 1101.65 461.259 1093.34L459.989 1093.53C460.751 1102.23 461.322 1113.21 461.322 1121.21L461.386 1163.48H449.324V1074.61H464.624L480.368 1126.28ZM605.682 1084.77H590.128V1163.48H577.685V1084.77H562.131V1074.61H605.682V1084.77ZM626.756 1111.18H646.182V1074.61H658.562V1163.48H646.182V1121.21H626.756V1163.48H614.312V1074.61H626.756V1111.18ZM706.236 1084.77H683.826V1111.81H704.142V1121.14H683.826V1153.33H707.252V1163.48H671.383V1074.61H706.236V1084.77ZM738.927 1074.61C752.766 1074.61 759.877 1081.34 759.877 1094.35V1100.32C759.877 1110.16 755.179 1116 746.354 1117.33V1118.41C752.576 1120.06 755.116 1123.05 756.703 1133.9L758.227 1144.82C759.814 1155.74 761.147 1159.99 763.623 1162.09L763.369 1163.48H749.529C747.942 1159.86 747.053 1155.29 745.847 1145.14L744.577 1134.92C743.371 1124.7 741.34 1122.41 735.372 1122.41H730.103V1163.48H717.66V1074.61H738.927ZM531.853 1083.12C524.234 1083.12 520.488 1089.02 520.488 1101.21V1137.2C520.488 1149.2 524.234 1154.98 531.916 1154.98C539.598 1154.98 543.279 1149.2 543.279 1137.2V1101.21C543.279 1089.02 539.598 1083.12 531.853 1083.12ZM414.601 1089.97C413.775 1099.5 412.887 1106.1 411.617 1113.59L407.554 1137.77H422.98L418.918 1113.59C417.648 1106.1 416.759 1099.5 415.87 1089.97H414.601ZM730.103 1112.83H737.594C744.323 1112.83 747.435 1109.65 747.435 1102.54V1094.74C747.435 1087.56 744.323 1084.52 737.594 1084.52H730.103V1112.83Z" fill="#F6F3EC"/>
|
|
4
|
+
<path d="M827.428 1089.26V1258.57" stroke="#F6F3EC" stroke-width="4.57143"/>
|
|
5
|
+
<path d="M964.877 1066.7L957.153 1087.26C947.041 1071.12 933.839 1061.83 917.688 1061.83C891.003 1061.83 866.285 1087.26 866.285 1131.58C866.285 1164.02 879.347 1199.35 907.857 1218.38L882.436 1286H972.181C975.27 1263.77 980.326 1234.83 980.326 1197.82C980.326 1162.8 975.832 1131.73 967.125 1108.13L972.883 1092.59C979.484 1074.47 988.332 1070.36 1016 1070.36V1066.7H964.877ZM882.015 1139.19C882.015 1093.81 899.009 1065.48 920.918 1065.48C933.98 1065.48 945.777 1075.54 955.187 1092.44L909.823 1213.05C888.195 1193.86 882.015 1166.15 882.015 1139.19ZM902.941 1282.35L964.737 1114.52C972.883 1138.28 977.518 1169.04 976.675 1201.94C975.692 1240.16 967.405 1282.35 937.069 1282.35H902.941Z" fill="#F6F3EC"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="1080" height="1920" viewBox="0 0 1080 1920" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="1080" height="1920" fill="#1B1B1E"/>
|
|
3
|
+
<path d="M416.694 1753.14C430.915 1753.14 439.231 1761.39 439.231 1781.33V1785.9L427.17 1788.31V1783.29C427.17 1767.42 423.614 1762.73 416.948 1762.73C409.711 1762.73 406.22 1768.44 406.22 1780.63V1816.87C406.22 1829 409.711 1834.71 417.012 1834.71C423.614 1834.71 427.487 1829.95 427.487 1813.45V1807.8L439.676 1810.65V1815.86C439.676 1836.23 430.851 1844.49 416.758 1844.49C401.268 1844.49 393.65 1834.58 393.649 1815.22V1782.34C393.649 1763.04 401.331 1753.14 416.694 1753.14ZM696.774 1753.08C712.709 1753.08 720.771 1763.04 720.771 1782.47V1815.16C720.771 1834.52 712.709 1844.49 696.774 1844.49C680.903 1844.49 672.841 1834.52 672.841 1815.16V1782.47C672.841 1763.04 680.903 1753.08 696.774 1753.08ZM472.114 1754.35C485.954 1754.35 493.064 1761.08 493.064 1774.09V1780.06C493.064 1789.9 488.366 1795.73 479.542 1797.07V1798.15C485.763 1799.8 488.304 1802.78 489.891 1813.64L491.414 1824.55C493.001 1835.47 494.335 1839.73 496.811 1841.82L496.557 1843.22H482.717C481.13 1839.6 480.24 1835.03 479.034 1824.87L477.765 1814.65C476.558 1804.43 474.527 1802.15 468.56 1802.15H463.29V1843.22H450.848V1754.35H472.114ZM540.104 1764.5H517.694V1791.55H538.01V1800.88H517.694V1833.06H541.12V1843.22H505.251V1754.35H540.104V1764.5ZM597.174 1843.22H584.16L581.239 1826.65H562.512L559.527 1843.22H547.466L564.479 1754.35H579.97L597.174 1843.22ZM640.278 1764.5H624.725V1843.22H612.281V1764.5H596.728V1754.35H640.278V1764.5ZM661.353 1843.22H648.91V1754.35H661.353V1843.22ZM763.367 1806.02C764.954 1811.16 766.16 1816.62 767.557 1823.98L768.89 1823.86C768.064 1814.65 767.43 1804.75 767.43 1796.56V1754.35H779.429V1843.22H764.51L748.702 1791.86C747.052 1786.4 745.845 1781.39 744.258 1773.07L742.988 1773.26C743.75 1781.96 744.321 1792.94 744.321 1800.94L744.385 1843.22H732.323V1754.35H747.623L763.367 1806.02ZM696.774 1762.85C689.156 1762.85 685.41 1768.76 685.41 1780.94V1816.94C685.41 1828.93 689.156 1834.71 696.838 1834.71C704.519 1834.71 708.201 1828.93 708.201 1816.94V1780.94C708.201 1768.76 704.519 1762.85 696.774 1762.85ZM571.209 1769.71C570.384 1779.23 569.495 1785.83 568.226 1793.32L564.162 1817.51H579.589L575.525 1793.32C574.256 1785.83 573.367 1779.23 572.479 1769.71H571.209ZM463.29 1792.56H470.781C477.511 1792.56 480.622 1789.39 480.622 1782.28V1774.47C480.622 1767.3 477.511 1764.25 470.781 1764.25H463.29V1792.56ZM531.853 1643.34C547.787 1643.34 555.85 1653.31 555.85 1672.73V1705.43C555.85 1724.79 547.787 1734.75 531.853 1734.75C515.981 1734.75 507.919 1724.79 507.919 1705.43V1672.73C507.919 1653.31 515.981 1643.34 531.853 1643.34ZM440.565 1733.48H427.552L424.631 1716.91H405.903L402.92 1733.48H390.857L407.871 1644.61H423.361L440.565 1733.48ZM480.368 1696.28C481.955 1701.43 483.161 1706.89 484.558 1714.25L485.891 1714.12C485.065 1704.92 484.431 1695.01 484.431 1686.83V1644.61H496.43V1733.48H481.511L465.703 1682.13C464.053 1676.67 462.846 1671.65 461.259 1663.34L459.989 1663.53C460.751 1672.23 461.322 1683.21 461.322 1691.21L461.386 1733.48H449.324V1644.61H464.624L480.368 1696.28ZM605.682 1654.77H590.128V1733.48H577.685V1654.77H562.131V1644.61H605.682V1654.77ZM626.756 1681.18H646.182V1644.61H658.562V1733.48H646.182V1691.21H626.756V1733.48H614.312V1644.61H626.756V1681.18ZM706.236 1654.77H683.826V1681.81H704.142V1691.14H683.826V1723.33H707.252V1733.48H671.383V1644.61H706.236V1654.77ZM738.927 1644.61C752.766 1644.61 759.877 1651.34 759.877 1664.35V1670.32C759.877 1680.16 755.179 1686 746.354 1687.33V1688.41C752.576 1690.06 755.116 1693.05 756.703 1703.9L758.227 1714.82C759.814 1725.74 761.147 1729.99 763.623 1732.09L763.369 1733.48H749.529C747.942 1729.86 747.053 1725.29 745.847 1715.14L744.577 1704.92C743.371 1694.7 741.34 1692.41 735.372 1692.41H730.103V1733.48H717.66V1644.61H738.927ZM531.853 1653.12C524.234 1653.12 520.488 1659.02 520.488 1671.21V1707.2C520.488 1719.2 524.234 1724.98 531.916 1724.98C539.598 1724.98 543.279 1719.2 543.279 1707.2V1671.21C543.279 1659.02 539.598 1653.12 531.853 1653.12ZM414.601 1659.98C413.775 1669.5 412.887 1676.1 411.617 1683.59L407.554 1707.77H422.98L418.918 1683.59C417.648 1676.1 416.759 1669.5 415.87 1659.98H414.601ZM730.103 1682.83H737.594C744.323 1682.83 747.435 1679.65 747.435 1672.54V1664.74C747.435 1657.56 744.323 1654.52 737.594 1654.52H730.103V1682.83Z" fill="#F6F3EC"/>
|
|
4
|
+
<path d="M827.428 1659.26V1828.57" stroke="#F6F3EC" stroke-width="4.57143"/>
|
|
5
|
+
<path d="M964.877 1636.7L957.153 1657.26C947.041 1641.12 933.839 1631.83 917.688 1631.83C891.003 1631.83 866.285 1657.26 866.285 1701.58C866.285 1734.02 879.347 1769.35 907.857 1788.38L882.436 1856H972.181C975.27 1833.77 980.326 1804.83 980.326 1767.82C980.326 1732.8 975.832 1701.73 967.125 1678.13L972.883 1662.59C979.484 1644.47 988.332 1640.36 1016 1640.36V1636.7H964.877ZM882.015 1709.19C882.015 1663.81 899.009 1635.48 920.918 1635.48C933.98 1635.48 945.777 1645.54 955.187 1662.44L909.823 1783.05C888.195 1763.86 882.015 1736.15 882.015 1709.19ZM902.941 1852.35L964.737 1684.52C972.883 1708.28 977.518 1739.04 976.675 1771.94C975.692 1810.16 967.405 1852.35 937.069 1852.35H902.941Z" fill="#F6F3EC"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg width="1080" height="1080" viewBox="0 0 1080 1080" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="1080" height="1080" fill="#1B1B1E"/>
|
|
3
|
+
<path d="M371.753 918.807C385.327 918.807 393.266 926.684 393.266 945.71V950.073L381.752 952.376V947.589C381.752 932.441 378.358 927.957 371.995 927.957C365.087 927.957 361.754 933.41 361.754 945.044V979.643C361.754 991.216 365.087 996.669 372.056 996.669C378.358 996.669 382.055 992.124 382.055 976.37V970.978L393.689 973.704V978.673C393.689 998.123 385.266 1006 371.813 1006C357.027 1006 349.755 996.548 349.755 978.067V946.68C349.755 928.26 357.088 918.807 371.753 918.807ZM639.102 918.746C654.312 918.746 662.008 928.259 662.008 946.801V978.007C662.008 996.487 654.312 1006 639.102 1006C623.952 1006 616.256 996.487 616.256 978.007V946.801C616.256 928.26 623.952 918.746 639.102 918.746ZM424.653 919.958C437.864 919.958 444.651 926.381 444.651 938.803V944.499C444.651 953.891 440.167 959.465 431.744 960.737V961.768C437.683 963.343 440.106 966.192 441.621 976.553L443.076 986.975C444.591 997.396 445.863 1001.46 448.227 1003.46L447.984 1004.79H434.773C433.259 1001.33 432.41 996.972 431.259 987.277L430.047 977.521C428.895 967.766 426.956 965.585 421.26 965.585H416.23V1004.79H404.354V919.958H424.653ZM489.553 929.653H468.162V955.466H487.554V964.373H468.162V995.094H490.522V1004.79H456.284V919.958H489.553V929.653ZM544.028 1004.79H531.606L528.818 988.974H510.941L508.094 1004.79H496.58L512.82 919.958H527.606L544.028 1004.79ZM585.174 929.653H570.327V1004.79H558.449V929.653H543.603V919.958H585.174V929.653ZM605.29 1004.79H593.413V919.958H605.29V1004.79ZM702.667 969.281C704.182 974.189 705.334 979.4 706.667 986.429L707.939 986.308C707.152 977.522 706.546 968.069 706.546 960.253V919.958H717.999V1004.79H703.758L688.669 955.769C687.093 950.558 685.942 945.771 684.427 937.833L683.215 938.015C683.942 946.316 684.487 956.799 684.487 964.434L684.548 1004.79H673.034V919.958H687.639L702.667 969.281ZM639.102 928.078C631.83 928.078 628.255 933.713 628.255 945.347V979.703C628.255 991.155 631.83 996.669 639.162 996.669C646.495 996.669 650.01 991.155 650.01 979.703V945.347C650.01 933.713 646.495 928.078 639.102 928.078ZM519.244 934.622C518.456 943.711 517.607 950.012 516.396 957.162L512.518 980.248H527.243L523.364 957.162C522.152 950.012 521.304 943.711 520.456 934.622H519.244ZM416.23 956.436H423.381C429.804 956.436 432.774 953.406 432.774 946.619V939.166C432.774 932.319 429.804 929.411 423.381 929.411H416.23V956.436ZM481.676 814C496.886 814 504.583 823.513 504.583 842.055V873.26C504.583 891.741 496.886 901.254 481.676 901.254C466.526 901.254 458.83 891.74 458.83 873.26V842.055C458.83 823.513 466.526 814 481.676 814ZM394.539 900.042H382.116L379.328 884.228H361.452L358.604 900.042H347.09L363.33 815.212H378.116L394.539 900.042ZM432.532 864.535C434.047 869.443 435.198 874.654 436.531 881.683L437.804 881.562C437.016 872.776 436.41 863.323 436.41 855.507V815.212H447.863V900.042H433.622L418.533 851.022C416.958 845.812 415.806 841.025 414.291 833.087L413.079 833.269C413.806 841.57 414.353 852.053 414.353 859.688L414.413 900.042H402.898V815.212H417.503L432.532 864.535ZM552.149 824.907H537.303V900.042H525.425V824.907H510.578V815.212H552.149V824.907ZM572.266 850.113H590.81V815.212H602.626V900.042H590.81V859.688H572.266V900.042H560.389V815.212H572.266V850.113ZM648.134 824.907H626.742V850.72H646.134V859.627H626.742V890.348H649.104V900.042H614.864V815.212H648.134V824.907ZM679.339 815.212C692.549 815.212 699.336 821.635 699.336 834.057V839.752C699.336 849.144 694.852 854.719 686.429 855.991V857.021C692.367 858.597 694.792 861.444 696.307 871.806L697.761 882.228C699.276 892.65 700.549 896.709 702.912 898.709L702.669 900.042H689.459C687.944 896.588 687.096 892.226 685.944 882.531L684.732 872.775C683.581 863.02 681.641 860.839 675.945 860.839H670.915V900.042H659.038V815.212H679.339ZM481.676 823.331C474.404 823.331 470.829 828.967 470.829 840.601V874.957C470.829 886.409 474.405 891.923 481.737 891.923C489.069 891.923 492.584 886.409 492.584 874.957V840.601C492.584 828.967 489.069 823.331 481.676 823.331ZM369.754 829.876C368.966 838.965 368.117 845.266 366.905 852.416L363.027 875.502H377.753L373.875 852.416C372.663 845.266 371.814 838.965 370.966 829.876H369.754ZM670.915 851.689H678.066C684.49 851.689 687.459 848.659 687.459 841.873V834.42C687.459 827.573 684.49 824.665 678.066 824.665H670.915V851.689Z" fill="#F6F3EC"/>
|
|
4
|
+
<path d="M777 831.429V988.572" stroke="#F6F3EC" stroke-width="6"/>
|
|
5
|
+
<path d="M820.059 820.056L999.947 999.944" stroke="white" stroke-width="8"/>
|
|
6
|
+
<path d="M999.941 820.056L820.053 999.944" stroke="white" stroke-width="8"/>
|
|
7
|
+
<path d="M939.151 820.887L850.039 910L939.151 999.113" stroke="white" stroke-width="8"/>
|
|
8
|
+
<path d="M880.923 820.887L970.036 910L880.923 999.113" stroke="white" stroke-width="8"/>
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg width="1080" height="1350" viewBox="0 0 1080 1350" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="1080" height="1350" fill="#1B1B1E"/>
|
|
3
|
+
<path d="M371.753 1188.81C385.327 1188.81 393.266 1196.68 393.266 1215.71V1220.07L381.752 1222.38V1217.59C381.752 1202.44 378.358 1197.96 371.995 1197.96C365.087 1197.96 361.754 1203.41 361.754 1215.04V1249.64C361.754 1261.22 365.087 1266.67 372.056 1266.67C378.358 1266.67 382.055 1262.12 382.055 1246.37V1240.98L393.689 1243.7V1248.67C393.689 1268.12 385.266 1276 371.813 1276C357.027 1276 349.755 1266.55 349.755 1248.07V1216.68C349.755 1198.26 357.088 1188.81 371.753 1188.81ZM639.102 1188.75C654.312 1188.75 662.008 1198.26 662.008 1216.8V1248.01C662.008 1266.49 654.312 1276 639.102 1276C623.952 1276 616.256 1266.49 616.256 1248.01V1216.8C616.256 1198.26 623.952 1188.75 639.102 1188.75ZM424.653 1189.96C437.864 1189.96 444.651 1196.38 444.651 1208.8V1214.5C444.651 1223.89 440.167 1229.46 431.744 1230.74V1231.77C437.683 1233.34 440.106 1236.19 441.621 1246.55L443.076 1256.97C444.591 1267.4 445.863 1271.46 448.227 1273.46L447.984 1274.79H434.773C433.259 1271.33 432.41 1266.97 431.259 1257.28L430.047 1247.52C428.895 1237.77 426.956 1235.58 421.26 1235.58H416.23V1274.79H404.354V1189.96H424.653ZM489.553 1199.65H468.162V1225.47H487.554V1234.37H468.162V1265.09H490.522V1274.79H456.284V1189.96H489.553V1199.65ZM544.028 1274.79H531.606L528.818 1258.97H510.941L508.094 1274.79H496.58L512.82 1189.96H527.606L544.028 1274.79ZM585.174 1199.65H570.327V1274.79H558.449V1199.65H543.603V1189.96H585.174V1199.65ZM605.29 1274.79H593.413V1189.96H605.29V1274.79ZM702.667 1239.28C704.182 1244.19 705.334 1249.4 706.667 1256.43L707.939 1256.31C707.152 1247.52 706.546 1238.07 706.546 1230.25V1189.96H717.999V1274.79H703.758L688.669 1225.77C687.093 1220.56 685.942 1215.77 684.427 1207.83L683.215 1208.01C683.942 1216.32 684.487 1226.8 684.487 1234.43L684.548 1274.79H673.034V1189.96H687.639L702.667 1239.28ZM639.102 1198.08C631.83 1198.08 628.255 1203.71 628.255 1215.35V1249.7C628.255 1261.15 631.83 1266.67 639.162 1266.67C646.495 1266.67 650.01 1261.16 650.01 1249.7V1215.35C650.01 1203.71 646.495 1198.08 639.102 1198.08ZM519.244 1204.62C518.456 1213.71 517.607 1220.01 516.396 1227.16L512.518 1250.25H527.243L523.364 1227.16C522.152 1220.01 521.304 1213.71 520.456 1204.62H519.244ZM416.23 1226.44H423.381C429.804 1226.44 432.774 1223.41 432.774 1216.62V1209.17C432.774 1202.32 429.804 1199.41 423.381 1199.41H416.23V1226.44ZM481.676 1084C496.886 1084 504.583 1093.51 504.583 1112.05V1143.26C504.583 1161.74 496.886 1171.25 481.676 1171.25C466.526 1171.25 458.83 1161.74 458.83 1143.26V1112.05C458.83 1093.51 466.526 1084 481.676 1084ZM394.539 1170.04H382.116L379.328 1154.23H361.452L358.604 1170.04H347.09L363.33 1085.21H378.116L394.539 1170.04ZM432.532 1134.54C434.047 1139.44 435.198 1144.65 436.531 1151.68L437.804 1151.56C437.016 1142.78 436.41 1133.32 436.41 1125.51V1085.21H447.863V1170.04H433.622L418.533 1121.02C416.958 1115.81 415.806 1111.02 414.291 1103.09L413.079 1103.27C413.806 1111.57 414.353 1122.05 414.353 1129.69L414.413 1170.04H402.898V1085.21H417.503L432.532 1134.54ZM552.149 1094.91H537.303V1170.04H525.425V1094.91H510.578V1085.21H552.149V1094.91ZM572.266 1120.11H590.81V1085.21H602.626V1170.04H590.81V1129.69H572.266V1170.04H560.389V1085.21H572.266V1120.11ZM648.134 1094.91H626.742V1120.72H646.134V1129.63H626.742V1160.35H649.104V1170.04H614.864V1085.21H648.134V1094.91ZM679.339 1085.21C692.549 1085.21 699.336 1091.64 699.336 1104.06V1109.75C699.336 1119.14 694.852 1124.72 686.429 1125.99V1127.02C692.367 1128.6 694.792 1131.44 696.307 1141.81L697.761 1152.23C699.276 1162.65 700.549 1166.71 702.912 1168.71L702.669 1170.04H689.459C687.944 1166.59 687.096 1162.23 685.944 1152.53L684.732 1142.78C683.581 1133.02 681.641 1130.84 675.945 1130.84H670.915V1170.04H659.038V1085.21H679.339ZM481.676 1093.33C474.404 1093.33 470.829 1098.97 470.829 1110.6V1144.96C470.829 1156.41 474.405 1161.92 481.737 1161.92C489.069 1161.92 492.584 1156.41 492.584 1144.96V1110.6C492.584 1098.97 489.069 1093.33 481.676 1093.33ZM369.754 1099.88C368.966 1108.96 368.117 1115.27 366.905 1122.42L363.027 1145.5H377.753L373.875 1122.42C372.663 1115.27 371.814 1108.96 370.966 1099.88H369.754ZM670.915 1121.69H678.066C684.49 1121.69 687.459 1118.66 687.459 1111.87V1104.42C687.459 1097.57 684.49 1094.67 678.066 1094.67H670.915V1121.69Z" fill="#F6F3EC"/>
|
|
4
|
+
<path d="M777 1101.43V1258.57" stroke="#F6F3EC" stroke-width="6"/>
|
|
5
|
+
<path d="M820.059 1090.06L999.947 1269.94" stroke="white" stroke-width="8"/>
|
|
6
|
+
<path d="M999.941 1090.06L820.053 1269.94" stroke="white" stroke-width="8"/>
|
|
7
|
+
<path d="M939.151 1090.89L850.039 1180L939.151 1269.11" stroke="white" stroke-width="8"/>
|
|
8
|
+
<path d="M880.923 1090.89L970.036 1180L880.923 1269.11" stroke="white" stroke-width="8"/>
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg width="1080" height="1920" viewBox="0 0 1080 1920" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect width="1080" height="1920" fill="#1B1B1E"/>
|
|
3
|
+
<path d="M371.753 1758.81C385.327 1758.81 393.266 1766.68 393.266 1785.71V1790.07L381.752 1792.38V1787.59C381.752 1772.44 378.358 1767.96 371.995 1767.96C365.087 1767.96 361.754 1773.41 361.754 1785.04V1819.64C361.754 1831.22 365.087 1836.67 372.056 1836.67C378.358 1836.67 382.055 1832.12 382.055 1816.37V1810.98L393.689 1813.7V1818.67C393.689 1838.12 385.266 1846 371.813 1846C357.027 1846 349.755 1836.55 349.755 1818.07V1786.68C349.755 1768.26 357.088 1758.81 371.753 1758.81ZM639.102 1758.75C654.312 1758.75 662.008 1768.26 662.008 1786.8V1818.01C662.008 1836.49 654.312 1846 639.102 1846C623.952 1846 616.256 1836.49 616.256 1818.01V1786.8C616.256 1768.26 623.952 1758.75 639.102 1758.75ZM424.653 1759.96C437.864 1759.96 444.651 1766.38 444.651 1778.8V1784.5C444.651 1793.89 440.167 1799.46 431.744 1800.74V1801.77C437.683 1803.34 440.106 1806.19 441.621 1816.55L443.076 1826.97C444.591 1837.4 445.863 1841.46 448.227 1843.46L447.984 1844.79H434.773C433.259 1841.33 432.41 1836.97 431.259 1827.28L430.047 1817.52C428.895 1807.77 426.956 1805.58 421.26 1805.58H416.23V1844.79H404.354V1759.96H424.653ZM489.553 1769.65H468.162V1795.47H487.554V1804.37H468.162V1835.09H490.522V1844.79H456.284V1759.96H489.553V1769.65ZM544.028 1844.79H531.606L528.818 1828.97H510.941L508.094 1844.79H496.58L512.82 1759.96H527.606L544.028 1844.79ZM585.174 1769.65H570.327V1844.79H558.449V1769.65H543.603V1759.96H585.174V1769.65ZM605.29 1844.79H593.413V1759.96H605.29V1844.79ZM702.667 1809.28C704.182 1814.19 705.334 1819.4 706.667 1826.43L707.939 1826.31C707.152 1817.52 706.546 1808.07 706.546 1800.25V1759.96H717.999V1844.79H703.758L688.669 1795.77C687.093 1790.56 685.942 1785.77 684.427 1777.83L683.215 1778.01C683.942 1786.32 684.487 1796.8 684.487 1804.43L684.548 1844.79H673.034V1759.96H687.639L702.667 1809.28ZM639.102 1768.08C631.83 1768.08 628.255 1773.71 628.255 1785.35V1819.7C628.255 1831.15 631.83 1836.67 639.162 1836.67C646.495 1836.67 650.01 1831.16 650.01 1819.7V1785.35C650.01 1773.71 646.495 1768.08 639.102 1768.08ZM519.244 1774.62C518.456 1783.71 517.607 1790.01 516.396 1797.16L512.518 1820.25H527.243L523.364 1797.16C522.152 1790.01 521.304 1783.71 520.456 1774.62H519.244ZM416.23 1796.44H423.381C429.804 1796.44 432.774 1793.41 432.774 1786.62V1779.17C432.774 1772.32 429.804 1769.41 423.381 1769.41H416.23V1796.44ZM481.676 1654C496.886 1654 504.583 1663.51 504.583 1682.05V1713.26C504.583 1731.74 496.886 1741.25 481.676 1741.25C466.526 1741.25 458.83 1731.74 458.83 1713.26V1682.05C458.83 1663.51 466.526 1654 481.676 1654ZM394.539 1740.04H382.116L379.328 1724.23H361.452L358.604 1740.04H347.09L363.33 1655.21H378.116L394.539 1740.04ZM432.532 1704.54C434.047 1709.44 435.198 1714.65 436.531 1721.68L437.804 1721.56C437.016 1712.78 436.41 1703.32 436.41 1695.51V1655.21H447.863V1740.04H433.622L418.533 1691.02C416.958 1685.81 415.806 1681.02 414.291 1673.09L413.079 1673.27C413.806 1681.57 414.353 1692.05 414.353 1699.69L414.413 1740.04H402.898V1655.21H417.503L432.532 1704.54ZM552.149 1664.91H537.303V1740.04H525.425V1664.91H510.578V1655.21H552.149V1664.91ZM572.266 1690.11H590.81V1655.21H602.626V1740.04H590.81V1699.69H572.266V1740.04H560.389V1655.21H572.266V1690.11ZM648.134 1664.91H626.742V1690.72H646.134V1699.63H626.742V1730.35H649.104V1740.04H614.864V1655.21H648.134V1664.91ZM679.339 1655.21C692.549 1655.21 699.336 1661.64 699.336 1674.06V1679.75C699.336 1689.14 694.852 1694.72 686.429 1695.99V1697.02C692.367 1698.6 694.792 1701.44 696.307 1711.81L697.761 1722.23C699.276 1732.65 700.549 1736.71 702.912 1738.71L702.669 1740.04H689.459C687.944 1736.59 687.096 1732.23 685.944 1722.53L684.732 1712.78C683.581 1703.02 681.641 1700.84 675.945 1700.84H670.915V1740.04H659.038V1655.21H679.339ZM481.676 1663.33C474.404 1663.33 470.829 1668.97 470.829 1680.6V1714.96C470.829 1726.41 474.405 1731.92 481.737 1731.92C489.069 1731.92 492.584 1726.41 492.584 1714.96V1680.6C492.584 1668.97 489.069 1663.33 481.676 1663.33ZM369.754 1669.88C368.966 1678.96 368.117 1685.27 366.905 1692.42L363.027 1715.5H377.753L373.875 1692.42C372.663 1685.27 371.814 1678.96 370.966 1669.88H369.754ZM670.915 1691.69H678.066C684.49 1691.69 687.459 1688.66 687.459 1681.87V1674.42C687.459 1667.57 684.49 1664.67 678.066 1664.67H670.915V1691.69Z" fill="#F6F3EC"/>
|
|
4
|
+
<path d="M777 1671.43V1828.57" stroke="#F6F3EC" stroke-width="6"/>
|
|
5
|
+
<path d="M820.059 1660.06L999.947 1839.94" stroke="white" stroke-width="8"/>
|
|
6
|
+
<path d="M999.941 1660.06L820.053 1839.94" stroke="white" stroke-width="8"/>
|
|
7
|
+
<path d="M939.151 1660.89L850.039 1750L939.151 1839.11" stroke="white" stroke-width="8"/>
|
|
8
|
+
<path d="M880.923 1660.89L970.036 1750L880.923 1839.11" stroke="white" stroke-width="8"/>
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<svg width="833" height="257" viewBox="0 0 833 257" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g opacity="0.2">
|
|
3
|
+
<rect x="0.375" y="0.375" width="64" height="64" fill="currentColor" fill-opacity="0.1"/>
|
|
4
|
+
<rect x="768.375" y="0.375" width="64" height="64" fill="currentColor" fill-opacity="0.1"/>
|
|
5
|
+
<rect x="592.375" y="0.375" width="48" height="64" fill="currentColor" fill-opacity="0.1"/>
|
|
6
|
+
<rect x="0.375" y="192.375" width="64" height="64" fill="currentColor" fill-opacity="0.1"/>
|
|
7
|
+
<rect x="592.375" y="192.375" width="48" height="64" fill="currentColor" fill-opacity="0.1"/>
|
|
8
|
+
<rect x="768.375" y="192.375" width="64" height="64" fill="currentColor" fill-opacity="0.1"/>
|
|
9
|
+
<path d="M0.375 162.375H832.375" stroke="white" stroke-width="0.75" stroke-linecap="square" stroke-dasharray="4 4"/>
|
|
10
|
+
<path d="M0.375 94.375H832.375" stroke="white" stroke-width="0.75" stroke-linecap="square" stroke-dasharray="4 4"/>
|
|
11
|
+
<path d="M0.375 64.375H832.375" stroke="white" stroke-width="0.75" stroke-linecap="square" stroke-dasharray="4 4"/>
|
|
12
|
+
<path d="M0.375 192.375H832.375" stroke="white" stroke-width="0.75" stroke-linecap="square" stroke-dasharray="4 4"/>
|
|
13
|
+
<path d="M0.375 256.375H832.375" stroke="white" stroke-width="0.75" stroke-linecap="square" stroke-dasharray="4 4"/>
|
|
14
|
+
<path d="M0.375 0.375H832.375" stroke="white" stroke-width="0.75" stroke-linecap="square" stroke-dasharray="4 4"/>
|
|
15
|
+
<path d="M0.375 0.375V256.375" stroke="white" stroke-width="0.75" stroke-linecap="square" stroke-dasharray="4 4"/>
|
|
16
|
+
<path d="M64.375 0.375V256.375" stroke="white" stroke-width="0.75" stroke-linecap="square" stroke-dasharray="4 4"/>
|
|
17
|
+
<path d="M616.375 0.375V256.375" stroke="white" stroke-width="0.75" stroke-linecap="square" stroke-dasharray="4 4"/>
|
|
18
|
+
<path d="M640.375 0.375V256.375" stroke="white" stroke-width="0.75" stroke-linecap="square" stroke-dasharray="4 4"/>
|
|
19
|
+
<path d="M592.375 0.375V256.375" stroke="white" stroke-width="0.75" stroke-linecap="square" stroke-dasharray="4 4"/>
|
|
20
|
+
<path d="M832.375 0.375V256.375" stroke="white" stroke-width="0.75" stroke-linecap="square" stroke-dasharray="4 4"/>
|
|
21
|
+
<path d="M768.375 0.375V256.375" stroke="white" stroke-width="0.75" stroke-linecap="square" stroke-dasharray="4 4"/>
|
|
22
|
+
</g>
|
|
23
|
+
</svg>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<svg width="617" height="289" viewBox="0 0 617 289" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g opacity="0.2">
|
|
3
|
+
<rect width="64" height="64" transform="matrix(-1 0 0 1 616.25 0.25)" fill="currentColor" fill-opacity="0.1"/>
|
|
4
|
+
<rect width="64" height="64" transform="matrix(-1 0 0 1 64.25 0.25)" fill="currentColor" fill-opacity="0.1"/>
|
|
5
|
+
<rect width="64" height="64" transform="matrix(-1 0 0 1 288.25 0.25)" fill="currentColor" fill-opacity="0.1"/>
|
|
6
|
+
<rect width="64" height="64" transform="matrix(-1 0 0 1 616.25 224.25)" fill="currentColor" fill-opacity="0.1"/>
|
|
7
|
+
<rect width="64" height="64" transform="matrix(-1 0 0 1 64.25 224.25)" fill="currentColor" fill-opacity="0.1"/>
|
|
8
|
+
<rect width="64" height="64" transform="matrix(-1 0 0 1 288.25 224.25)" fill="currentColor" fill-opacity="0.1"/>
|
|
9
|
+
<path d="M0.25 132.25H616.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
10
|
+
<path d="M0.25 98.25H616.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
11
|
+
<path d="M0.25 64.25H616.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
12
|
+
<path d="M0.25 190.25H616.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
13
|
+
<path d="M0.25 156.25H616.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
14
|
+
<path d="M0.25 288.25H616.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
15
|
+
<path d="M0.25 224.25H616.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
16
|
+
<path d="M0.25 0.25H616.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
17
|
+
<path d="M616.25 0.25L616.25 288.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
18
|
+
<path d="M552.25 0.25V288.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
19
|
+
<path d="M224.25 0.25V288.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
20
|
+
<path d="M288.25 0.25V288.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
21
|
+
<path d="M256.25 0.25V288.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
22
|
+
<path d="M0.25 0.25L0.250013 288.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
23
|
+
<path d="M64.25 0.25V288.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
24
|
+
</g>
|
|
25
|
+
</svg>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<svg width="289" height="289" viewBox="0 0 289 289" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g opacity="0.2">
|
|
3
|
+
<rect width="64" height="64" transform="matrix(-1 0 0 1 64.25 0.25)" fill="currentColor" fill-opacity="0.1"/>
|
|
4
|
+
<rect width="64" height="64" transform="matrix(-1 0 0 1 288.25 0.25)" fill="currentColor" fill-opacity="0.1"/>
|
|
5
|
+
<rect width="64" height="64" transform="matrix(-1 0 0 1 64.25 224.25)" fill="currentColor" fill-opacity="0.1"/>
|
|
6
|
+
<rect width="64" height="64" transform="matrix(-1 0 0 1 288.25 224.25)" fill="currentColor" fill-opacity="0.1"/>
|
|
7
|
+
<path d="M0.25 128.25H288.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
8
|
+
<path d="M0.25 64.25H288.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
9
|
+
<path d="M0.25 160.25H288.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
10
|
+
<path d="M0.25 288.25H288.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
11
|
+
<path d="M0.25 224.25H288.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
12
|
+
<path d="M0.25 0.25H288.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
13
|
+
<path d="M288.25 0.25V288.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
14
|
+
<path d="M224.25 0.25V288.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
15
|
+
<path d="M160.25 0.25V288.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
16
|
+
<path d="M0.25 0.25L0.250013 288.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
17
|
+
<path d="M64.25 0.25V288.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
18
|
+
<path d="M128.25 0.25V288.25" stroke="white" stroke-width="0.5" stroke-dasharray="6 2"/>
|
|
19
|
+
</g>
|
|
20
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg width="657" height="257" viewBox="0 0 657 257" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g opacity="0.2">
|
|
3
|
+
<rect x="0.375" y="0.375" width="64" height="64" fill="currentColor" fill-opacity="0.1"/>
|
|
4
|
+
<rect x="592.375" y="0.375" width="64" height="64" fill="currentColor" fill-opacity="0.1"/>
|
|
5
|
+
<rect x="0.375" y="192.375" width="64" height="64" fill="currentColor" fill-opacity="0.1"/>
|
|
6
|
+
<rect x="592.375" y="192.375" width="64" height="64" fill="currentColor" fill-opacity="0.1"/>
|
|
7
|
+
<path d="M0.375 162.375H656.375" stroke="white" stroke-width="0.75" stroke-linecap="square" stroke-dasharray="4 4"/>
|
|
8
|
+
<path d="M0.375 94.375H656.375" stroke="white" stroke-width="0.75" stroke-linecap="square" stroke-dasharray="4 4"/>
|
|
9
|
+
<path d="M0.375 64.375H656.375" stroke="white" stroke-width="0.75" stroke-linecap="square" stroke-dasharray="4 4"/>
|
|
10
|
+
<path d="M0.375 192.375H656.375" stroke="white" stroke-width="0.75" stroke-linecap="square" stroke-dasharray="4 4"/>
|
|
11
|
+
<path d="M0.375 256.375H656.375" stroke="white" stroke-width="0.75" stroke-linecap="square" stroke-dasharray="4 4"/>
|
|
12
|
+
<path d="M0.375 0.375H656.375" stroke="white" stroke-width="0.75" stroke-linecap="square" stroke-dasharray="4 4"/>
|
|
13
|
+
<path d="M0.375 0.375V256.375" stroke="white" stroke-width="0.75" stroke-linecap="square" stroke-dasharray="4 4"/>
|
|
14
|
+
<path d="M64.375 0.375V256.375" stroke="white" stroke-width="0.75" stroke-linecap="square" stroke-dasharray="4 4"/>
|
|
15
|
+
<path d="M656.375 0.375V256.375" stroke="white" stroke-width="0.75" stroke-linecap="square" stroke-dasharray="4 4"/>
|
|
16
|
+
<path d="M592.375 0.375V256.375" stroke="white" stroke-width="0.75" stroke-linecap="square" stroke-dasharray="4 4"/>
|
|
17
|
+
</g>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg width="832" height="256" viewBox="0 0 832 256" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M73.0098 162H63.4883L72.7168 93.6406H85.3633L94.8359 162H84.6309L83.4102 150.867H74.2793L73.0098 162ZM77.0137 126.404L75.1094 143.885H82.5312L80.6758 126.404C80.1387 120.984 79.6992 115.809 79.3574 107.41H78.332C77.9902 115.809 77.5508 120.984 77.0137 126.404ZM111.629 162H102.01V93.6406H114.51L122.615 130.652C123.396 134.363 124.275 139.344 125.203 145.887L126.229 145.789C125.447 136.658 124.812 126.258 124.812 118.348L124.764 93.6406H134.432V162H122.176L113.924 125.232C113.094 121.375 112.361 117.225 111.238 109.266L110.213 109.363C110.848 117.371 111.58 130.311 111.58 138.465L111.629 162ZM157.914 162.928C148.051 162.928 143.168 157.459 143.168 146.424V109.266C143.168 98.1816 148.051 92.7129 157.914 92.7129C167.875 92.7129 172.758 98.1816 172.758 109.266V146.424C172.758 157.459 167.875 162.928 157.914 162.928ZM157.963 155.262C161.283 155.262 162.846 152.771 162.846 147.596V108.24C162.846 102.918 161.283 100.379 157.963 100.379C154.643 100.379 153.031 102.918 153.031 108.24V147.596C153.031 152.771 154.643 155.262 157.963 155.262ZM197.705 162H187.891V101.697H178.809V93.6406H206.738V101.697H197.705V162ZM223.629 162H213.814V93.6406H223.629V121.814H232.369V93.6406H242.184V162H232.369V129.627H223.629V162ZM273.967 162H251.408V93.6406H273.332V101.697H261.223V122.156H272.062V129.578H261.223V153.943H273.967V162ZM291.688 162H281.873V93.6406H295.984C305.066 93.6406 309.559 98.2305 309.559 107.459V114.002C309.559 120.838 306.824 124.842 301.502 125.965V126.795C305.848 127.918 307.459 130.018 308.191 138.807L308.875 147.547C309.559 156.336 310.193 159.412 311.658 160.975L311.512 162H300.867C299.988 159.119 299.549 155.896 299.061 147.791L298.621 139.637C298.133 131.482 297.059 130.115 293.689 130.115H291.688V162ZM291.688 101.355V122.547H294.959C298.279 122.547 299.744 120.838 299.744 116.688V107.312C299.744 103.016 298.279 101.355 294.959 101.355H291.688ZM345.83 162.928C336.064 162.928 331.426 157.459 331.426 146.473V109.217C331.426 98.1816 336.113 92.7129 345.83 92.7129C355.156 92.7129 360.137 97.5957 360.137 108.924V118.201L350.518 119.91V109.461C350.518 102.43 348.955 100.232 345.928 100.232C342.803 100.232 341.289 102.723 341.289 107.947V147.547C341.289 152.771 342.803 155.262 345.977 155.262C348.906 155.262 350.615 152.967 350.615 145.74V133.973L360.332 135.877V146.57C360.332 158.045 355.107 162.928 345.83 162.928ZM378.59 162H368.775V93.6406H382.887C391.969 93.6406 396.461 98.2305 396.461 107.459V114.002C396.461 120.838 393.727 124.842 388.404 125.965V126.795C392.75 127.918 394.361 130.018 395.094 138.807L395.777 147.547C396.461 156.336 397.096 159.412 398.561 160.975L398.414 162H387.77C386.891 159.119 386.451 155.896 385.963 147.791L385.523 139.637C385.035 131.482 383.961 130.115 380.592 130.115H378.59V162ZM378.59 101.355V122.547H381.861C385.182 122.547 386.646 120.838 386.646 116.688V107.312C386.646 103.016 385.182 101.355 381.861 101.355H378.59ZM428.146 162H405.588V93.6406H427.512V101.697H415.402V122.156H426.242V129.578H415.402V153.943H428.146V162ZM443.475 162H433.953L443.182 93.6406H455.828L465.301 162H455.096L453.875 150.867H444.744L443.475 162ZM447.479 126.404L445.574 143.885H452.996L451.141 126.404C450.604 120.984 450.164 115.809 449.822 107.41H448.797C448.455 115.809 448.016 120.984 447.479 126.404ZM486.049 162H476.234V101.697H467.152V93.6406H495.082V101.697H486.049V162ZM511.973 162H502.158V93.6406H511.973V162ZM535.504 162.928C525.641 162.928 520.758 157.459 520.758 146.424V109.266C520.758 98.1816 525.641 92.7129 535.504 92.7129C545.465 92.7129 550.348 98.1816 550.348 109.266V146.424C550.348 157.459 545.465 162.928 535.504 162.928ZM535.553 155.262C538.873 155.262 540.436 152.771 540.436 147.596V108.24C540.436 102.918 538.873 100.379 535.553 100.379C532.232 100.379 530.621 102.918 530.621 108.24V147.596C530.621 152.771 532.232 155.262 535.553 155.262ZM568.703 162H559.084V93.6406H571.584L579.689 130.652C580.471 134.363 581.35 139.344 582.277 145.887L583.303 145.789C582.521 136.658 581.887 126.258 581.887 118.348L581.838 93.6406H591.506V162H579.25L570.998 125.232C570.168 121.375 569.436 117.225 568.312 109.266L567.287 109.363C567.922 117.371 568.654 130.311 568.654 138.465L568.703 162Z" fill="currentColor"/>
|
|
3
|
+
<path d="M616 80V176" stroke="white" stroke-width="4"/>
|
|
4
|
+
<path d="M706.285 78.7119C706.43 78.7139 707.114 79.298 707.805 80.0102C708.495 80.7218 709.061 81.3927 709.062 81.5019C709.061 81.6113 708.799 82.2936 708.479 83.0185C708.159 83.7445 707.116 85.7996 706.161 87.5858C705.207 89.372 704.114 91.4103 703.731 92.1153C703.349 92.8203 702.118 95.0828 700.995 97.1428C699.873 99.2029 698.118 102.441 697.095 104.338C696.072 106.236 694.706 108.764 694.059 109.957C693.412 111.149 692.67 112.525 692.41 113.013C692.15 113.501 690.284 117.005 688.262 120.8C684.586 127.699 684.585 127.7 684.681 128.685C684.794 129.853 684.104 131.413 685.725 132.275C687.347 133.135 693.068 123.206 694.626 122.433C696.995 121.258 697.678 120.53 699.742 118.772C700.648 118.001 702.287 116.511 703.384 115.46C704.48 114.408 706.315 112.487 707.459 111.191C708.604 109.894 709.93 108.244 710.407 107.524C710.884 106.804 711.352 106.214 711.448 106.212C712.163 106.194 714.013 106.974 714.518 107.548C714.609 107.653 714.496 108.181 714.243 108.832C714.006 109.44 713.389 110.54 712.871 111.275C712.354 112.011 711.385 113.544 710.718 114.683C710.051 115.821 708.818 118.084 707.979 119.71C707.14 121.337 705.606 124.54 704.57 126.829C703.534 129.117 702.327 131.956 701.887 133.137C701.448 134.318 700.901 135.906 700.671 136.665C700.442 137.423 700.143 138.466 700.007 138.981C699.872 139.495 699.828 139.917 699.909 139.917C699.991 139.916 700.463 139.331 700.957 138.616C701.452 137.9 702.328 136.458 702.904 135.412C703.477 134.371 703.962 133.497 703.985 133.462C704.003 133.436 704.707 133.678 705.548 134.002C706.39 134.325 707.109 134.624 707.146 134.666C707.181 134.71 707.014 135.342 706.772 136.071C706.53 136.803 706.047 137.936 705.698 138.588C705.349 139.241 704.503 140.628 703.817 141.67C703.132 142.712 702.13 144.034 701.592 144.608C701.053 145.182 700.337 145.784 700 145.944C699.422 146.219 699.293 146.201 697.787 145.634C696.895 145.298 696.054 144.85 695.884 144.621C695.681 144.347 695.58 143.875 695.58 143.197C695.58 142.64 695.695 141.563 695.835 140.804C695.975 140.045 696.356 138.582 696.681 137.552C697.453 135.109 698.261 132.687 699.155 130.298C699.573 129.182 700.465 126.976 701.137 125.395C701.807 123.82 702.32 122.491 702.282 122.433C702.239 122.384 701.252 123.07 700.088 123.957C696.347 126.808 688.511 138.992 684.681 137.557C683.287 137.034 682.041 135.896 681.825 134.002C678.945 134.029 673.021 151.216 672.245 153.821C671.713 155.613 663.951 178.59 663.475 180.325C662.999 182.06 662.342 184.677 662.015 186.141C661.688 187.604 661.324 189.512 661.206 190.379C661.088 191.247 660.976 191.975 660.958 191.997C660.937 192.019 660.159 191.908 659.228 191.749C658.296 191.59 657.47 191.503 657.39 191.557C657.313 191.612 656.694 191.072 656.016 190.359C654.987 189.276 654.783 188.958 654.785 188.439C654.786 188.097 654.898 187.34 655.035 186.757C655.171 186.175 655.613 184.8 656.017 183.701C659.189 175.076 661.205 169.105 665.917 157.35C667.684 152.941 669.819 148.627 671.261 144.063C671.569 143.086 672.549 140.159 673.439 137.557C674.329 134.955 675.362 131.983 675.734 130.952C676.106 129.922 677.038 127.439 677.805 125.433C678.572 123.427 679.832 120.194 680.605 118.247C681.375 116.307 682.006 114.691 682.009 114.649C682.01 114.616 682.092 114.59 682.192 114.59C682.293 114.59 683.073 114.867 683.925 115.206C685.383 115.784 685.478 115.856 685.478 116.377C685.478 116.682 685.55 116.983 685.639 117.046C685.729 117.104 686.497 115.846 687.346 114.247C688.196 112.647 689.463 110.273 690.161 108.971C690.86 107.67 692.522 104.609 693.856 102.17C695.189 99.7303 696.586 97.1581 696.959 96.4529C697.332 95.7482 698.102 94.3288 698.67 93.2987C699.238 92.2687 700.02 90.8199 700.409 90.0795C700.797 89.3411 701.078 88.6946 701.035 88.6407C700.99 88.5897 700.846 88.6635 700.714 88.804C700.583 88.9448 700.008 89.5024 699.437 90.0433C698.865 90.5842 698.311 91.117 698.206 91.2266C698.101 91.3367 697.247 92.1802 696.309 93.1015C695.371 94.0231 693.857 95.5203 692.945 96.4287C692.033 97.3369 691.014 98.3578 690.68 98.6972C690.346 99.037 689.215 100.157 688.166 101.186C687.117 102.215 685.59 103.722 684.772 104.536C683.955 105.349 682.629 106.65 681.825 107.427C681.02 108.204 679.57 109.579 678.601 110.483C677.633 111.386 676.072 112.799 675.133 113.623C674.194 114.446 672.801 115.611 672.038 116.211C671.275 116.812 670.178 117.572 669.6 117.902C669.022 118.231 668.272 118.56 667.934 118.632C667.356 118.755 667.236 118.679 665.917 117.35C664.98 116.404 664.48 115.748 664.406 115.365C664.342 115.037 664.419 114.31 664.585 113.657C664.745 113.031 665.233 111.633 665.669 110.548C666.106 109.464 666.968 107.513 667.585 106.212C668.201 104.911 669.681 101.894 670.872 99.5088C672.063 97.1236 673.289 94.6835 673.598 94.0869C673.906 93.4906 674.474 92.381 674.859 91.6211C675.244 90.861 675.809 89.7217 676.115 89.0896C676.551 88.1861 676.6 87.9838 676.348 88.1435C676.171 88.2555 675.625 88.6851 675.135 89.0979C674.644 89.511 672.233 91.5782 669.778 93.6924C667.322 95.8068 665.109 97.7115 664.86 97.9242C664.61 98.1379 662.534 99.9471 660.246 101.946C657.957 103.945 655.578 106.038 654.957 106.597C654.337 107.156 652.083 109.205 649.947 111.151C647.812 113.097 645.821 114.906 645.525 115.172C645.228 115.439 644.361 116.294 643.598 117.074C642.21 118.493 642.21 118.493 640.954 117.183C639.697 115.872 639.697 115.871 640.867 114.492C641.511 113.733 642.314 112.838 642.652 112.503C642.99 112.169 643.771 111.414 644.387 110.827C645.004 110.24 645.898 109.405 646.375 108.971C646.851 108.538 647.396 108.037 647.587 107.858C647.778 107.678 648.558 106.973 649.321 106.29C650.084 105.608 651.645 104.206 652.79 103.176C653.934 102.146 655.3 100.924 655.824 100.46C656.349 99.9969 658.182 98.3921 659.899 96.895C661.616 95.3981 663.225 93.9993 663.475 93.7854C663.724 93.5718 665.939 91.6672 668.395 89.5528C670.851 87.4385 673.925 84.8166 675.225 83.7266C676.524 82.6367 678.123 81.3282 678.778 80.8188C679.433 80.3093 680.139 79.8931 680.346 79.8931C680.569 79.894 681.24 80.4297 681.982 81.1996C683.155 82.4172 683.233 82.5477 683.124 83.1213C683.059 83.46 682.705 84.4194 682.338 85.253C681.97 86.0872 680.135 89.8131 678.26 93.533C676.385 97.2529 673.999 102.027 672.959 104.141C671.918 106.255 670.598 109.082 670.026 110.422C669.455 111.761 669.01 112.937 669.038 113.034C669.069 113.129 669.716 112.744 670.478 112.175C671.242 111.606 672.842 110.275 674.034 109.218C675.225 108.162 676.602 106.92 677.092 106.459C677.583 105.997 678.402 105.233 678.913 104.76C679.424 104.287 680.232 103.52 680.709 103.054C681.186 102.588 682.209 101.59 682.983 100.836C683.756 100.082 684.544 99.2974 684.732 99.0925C684.921 98.8875 685.805 98.0101 686.696 97.1428C687.588 96.2755 688.443 95.4322 688.595 95.2695C688.748 95.1069 689.182 94.6736 689.56 94.3068C689.937 93.9397 690.712 93.186 691.28 92.6314C691.849 92.0767 693.058 90.8689 693.968 89.9473C694.878 89.0258 696.08 87.8281 696.64 87.2858C697.2 86.7437 697.989 85.9893 698.393 85.6097C698.797 85.2302 700.251 83.8488 701.624 82.5402C702.997 81.2318 704.548 79.8351 705.071 79.4359C705.594 79.0372 706.14 78.7113 706.285 78.7119Z" fill="currentColor"/>
|
|
5
|
+
<path d="M727.206 112.108C728.811 110.523 728.811 110.524 730.154 111.218C730.893 111.6 731.606 112.033 731.737 112.181C731.938 112.408 731.896 112.625 731.467 113.6C731.188 114.234 729.957 116.57 728.732 118.793C727.506 121.016 726.369 123.101 726.205 123.426C726.04 123.751 725.546 124.677 725.106 125.482C724.666 126.287 724.341 126.986 724.383 127.033C724.429 127.075 725.467 125.934 726.694 124.491C728.928 121.863 728.929 121.863 730.474 122.666C731.678 123.292 732.031 123.566 732.076 123.913C732.131 124.331 732.19 124.351 733.03 124.222C733.523 124.146 734.85 124.009 735.979 123.917C737.752 123.773 738.124 123.681 738.707 123.243C739.077 122.964 739.451 122.736 739.537 122.736C739.624 122.736 740.128 122.962 740.657 123.238C741.446 123.648 741.679 123.697 741.936 123.504C742.109 123.374 743.04 122.283 744.006 121.08C744.971 119.876 746.542 117.824 747.497 116.519C748.452 115.215 749.36 114.028 749.516 113.881C749.758 113.653 750 113.719 751.226 114.35C752.011 114.754 752.762 115.202 752.894 115.345C753.097 115.567 753.021 115.963 752.397 117.939C751.991 119.222 751.318 121.381 750.901 122.736C750.484 124.091 750.143 125.313 750.142 125.452C750.141 125.642 750.27 125.627 750.672 125.39C751.183 125.09 751.26 125.103 752.481 125.681C753.324 126.08 754.051 126.285 754.622 126.285C755.098 126.284 756.722 126.01 758.232 125.675C759.742 125.339 761.681 125.019 762.539 124.962C764.086 124.86 764.113 124.866 765.657 125.679C766.513 126.129 767.391 126.687 767.608 126.919C767.824 127.15 768.001 127.479 768 127.649C767.999 127.821 767.812 128.415 767.584 128.971C767.356 129.527 767.088 130.039 766.989 130.109C766.889 130.178 766.22 129.905 765.503 129.502C764.198 128.767 764.197 128.767 762.935 128.992C762.24 129.116 760.813 129.404 759.764 129.631C758.715 129.859 757.232 130.06 756.469 130.08C755.287 130.109 754.931 130.035 754.064 129.579C753.506 129.286 753.018 129.046 752.975 129.044C752.935 129.044 752.12 129.887 751.163 130.917C750.206 131.946 749.244 132.84 749.024 132.904C748.752 132.981 748.128 132.734 747.063 132.126C746.206 131.636 745.454 131.089 745.393 130.912C745.333 130.734 745.285 130.308 745.286 129.965C745.288 129.621 745.511 128.386 745.783 127.221C746.054 126.059 746.245 125.108 746.211 125.102C746.169 125.108 745.323 125.983 744.325 127.052C743.324 128.124 742.219 129.157 741.868 129.346C741.231 129.689 741.23 129.689 739.486 128.714C737.741 127.739 737.741 127.739 735.747 127.983C734.65 128.117 733.362 128.232 732.885 128.24C732.306 128.248 731.71 128.089 731.091 127.761C730.581 127.492 730.063 127.271 729.939 127.27C729.816 127.27 728.131 129.2 726.195 131.558C724.259 133.916 721.851 136.803 720.843 137.973C719.836 139.142 718.715 140.333 718.352 140.619C717.691 141.14 717.691 141.14 716.141 140.276C714.845 139.554 714.591 139.336 714.59 138.949C714.59 138.694 714.903 137.796 715.284 136.953C715.665 136.112 715.976 135.362 715.977 135.284C715.978 135.206 716.341 134.415 716.784 133.525C717.228 132.633 717.956 131.193 718.402 130.326C718.849 129.459 719.669 127.862 720.225 126.777C720.781 125.693 721.425 124.465 721.655 124.049C721.884 123.633 722.033 123.248 721.986 123.192C721.937 123.137 720.819 124.063 719.502 125.248C718.183 126.433 716.198 128.174 715.089 129.116C713.348 130.596 713.032 130.952 712.772 131.726C712.606 132.219 712.365 132.668 712.236 132.724C712.107 132.781 711.179 132.381 710.174 131.835C709.171 131.29 708.35 130.757 708.348 130.65C708.348 130.544 708.495 130.072 708.676 129.603C708.857 129.133 709.149 128.614 709.326 128.448C709.503 128.283 711.131 126.87 712.943 125.308C714.755 123.747 717.018 121.758 717.972 120.89C718.926 120.021 721.033 118.047 722.654 116.502C724.275 114.958 726.324 112.98 727.206 112.108Z" fill="currentColor"/>
|
|
6
|
+
<path d="M762.474 114.047C762.702 113.981 763.234 114.081 763.666 114.27C764.095 114.458 764.786 114.768 765.201 114.959C765.925 115.29 765.954 115.332 765.86 115.985C765.807 116.359 765.641 116.878 765.491 117.138C765.31 117.452 765.054 117.61 764.726 117.61C764.455 117.61 763.658 117.34 762.954 117.01C762.251 116.681 761.613 116.34 761.535 116.252C761.459 116.165 761.546 115.66 761.729 115.13C761.965 114.447 762.183 114.132 762.474 114.047Z" fill="currentColor"/>
|
|
7
|
+
<path d="M738.193 113.076C738.371 113.077 739.187 113.453 740.005 113.913C741.429 114.714 741.49 114.776 741.397 115.31C741.343 115.617 741.137 116.128 740.939 116.444C740.741 116.76 740.421 117.018 740.227 117.019C740.034 117.019 739.22 116.612 738.418 116.116C737.618 115.619 736.962 115.127 736.961 115.021C736.961 114.916 737.087 114.547 737.242 114.2C737.397 113.853 737.602 113.458 737.697 113.323C737.792 113.187 738.015 113.076 738.193 113.076Z" fill="currentColor"/>
|
|
8
|
+
<path d="M705.507 64.0005C705.604 64.032 706.331 64.3161 707.123 64.6315C708.532 65.1918 708.564 65.219 708.469 65.7635C708.415 66.0702 708.249 66.6024 708.1 66.9461C707.927 67.3431 706.869 68.3987 705.202 69.8381C703.757 71.085 701.674 72.9537 700.572 73.9905C699.471 75.0272 698.206 76.3373 697.761 76.9013C696.953 77.926 696.952 77.9257 695.449 77.3071C693.945 76.6885 693.945 76.688 694.061 75.9741C694.125 75.5812 694.379 74.8372 694.626 74.3207C694.907 73.7307 695.651 72.8145 696.628 71.8565C697.483 71.0176 699.792 68.8938 701.758 67.1373C703.724 65.381 705.411 63.9698 705.507 64.0005Z" fill="currentColor"/>
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<svg width="616" height="288" viewBox="0 0 616 288" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M303.553 154.713C312.879 154.713 317.859 159.596 317.859 170.924V180.201L308.24 181.91V171.461C308.24 164.43 306.678 162.232 303.65 162.232C300.525 162.232 299.012 164.723 299.012 169.947V209.547C299.012 214.771 300.525 217.262 303.699 217.262C306.629 217.262 308.338 214.967 308.338 207.74V195.973L318.055 197.877V208.57C318.055 220.045 312.83 224.928 303.553 224.928C293.787 224.928 289.149 219.459 289.149 208.473V171.217C289.149 160.182 293.836 154.713 303.553 154.713Z" fill="currentColor"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M493.227 154.713C503.188 154.713 508.07 160.182 508.07 171.266V208.424C508.07 219.459 503.188 224.928 493.227 224.928C483.363 224.928 478.481 219.459 478.481 208.424V171.266C478.481 160.182 483.363 154.713 493.227 154.713ZM493.275 162.379C489.955 162.379 488.344 164.918 488.344 170.24V209.596C488.344 214.771 489.955 217.262 493.275 217.262C496.596 217.262 498.158 214.771 498.158 209.596V170.24C498.158 164.918 496.596 162.379 493.275 162.379Z" fill="currentColor"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M340.609 155.641C349.691 155.641 354.184 160.23 354.184 169.459V176.002C354.184 182.838 351.449 186.842 346.127 187.965V188.795C350.473 189.918 352.084 192.018 352.816 200.807L353.5 209.547C354.184 218.336 354.818 221.412 356.283 222.975L356.137 224H345.492C344.613 221.119 344.174 217.896 343.686 209.791L343.246 201.637C342.758 193.482 341.684 192.115 338.315 192.115H336.313V224H326.498V155.641H340.609ZM336.313 184.547H339.584C342.904 184.547 344.369 182.838 344.369 178.688V169.312C344.369 165.016 342.904 163.355 339.584 163.355H336.313V184.547Z" fill="currentColor"/>
|
|
5
|
+
<path d="M385.234 163.697H373.125V184.156H383.965V191.578H373.125V215.943H385.869V224H363.311V155.641H385.234V163.697Z" fill="currentColor"/>
|
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M423.024 224H412.818L411.598 212.867H402.467L401.197 224H391.676L400.904 155.641H413.551L423.024 224ZM406.52 169.41C406.178 177.809 405.738 182.984 405.201 188.404L403.297 205.885H410.719L408.863 188.404C408.326 182.984 407.887 177.809 407.545 169.41H406.52Z" fill="currentColor"/>
|
|
7
|
+
<path d="M452.805 163.697H443.772V224H433.957V163.697H424.875V155.641H452.805V163.697Z" fill="currentColor"/>
|
|
8
|
+
<path d="M469.695 224H459.881V155.641H469.695V224Z" fill="currentColor"/>
|
|
9
|
+
<path d="M537.412 192.652C538.193 196.363 539.072 201.344 540 207.887L541.025 207.789C540.244 198.658 539.609 188.258 539.609 180.348L539.561 155.641H549.229V224H536.973L528.721 187.232C527.891 183.375 527.158 179.225 526.035 171.266L525.01 171.363C525.645 179.371 526.377 192.311 526.377 200.465L526.426 224H516.807V155.641H529.307L537.412 192.652Z" fill="currentColor"/>
|
|
10
|
+
<path d="M146.856 82.3896C147.037 82.3921 147.892 83.1225 148.756 84.0127C149.618 84.9013 150.325 85.7393 150.327 85.877C150.327 86.0137 149.999 86.8673 149.599 87.7734C149.198 88.6812 147.894 91.2499 146.701 93.4824C145.508 95.7151 144.142 98.2632 143.664 99.1445C143.186 100.026 141.647 102.854 140.244 105.429C138.841 108.004 136.646 112.051 135.368 114.423C134.09 116.795 132.383 119.955 131.573 121.446C130.765 122.937 129.837 124.656 129.513 125.266C129.188 125.876 126.855 130.257 124.327 135C119.733 143.623 119.732 143.625 119.852 144.856C119.993 146.316 119.13 148.266 121.156 149.344C123.184 150.417 130.335 138.007 132.282 137.041C135.244 135.572 136.098 134.662 138.678 132.466C139.81 131.502 141.859 129.638 143.23 128.324C144.601 127.01 146.894 124.609 148.324 122.988C149.755 121.368 151.413 119.305 152.009 118.405C152.605 117.506 153.19 116.768 153.31 116.765C154.203 116.743 156.515 117.717 157.148 118.436C157.261 118.566 157.12 119.226 156.804 120.039C156.508 120.8 155.736 122.176 155.089 123.095C154.442 124.014 153.23 125.931 152.397 127.354C151.563 128.777 150.023 131.605 148.974 133.638C147.925 135.671 146.008 139.675 144.713 142.536C143.418 145.397 141.909 148.945 141.359 150.421C140.81 151.897 140.126 153.882 139.839 154.831C139.552 155.78 139.179 157.082 139.009 157.726C138.84 158.369 138.785 158.896 138.887 158.896C138.991 158.893 139.579 158.162 140.196 157.27C140.815 156.375 141.911 154.572 142.631 153.265C143.347 151.964 143.952 150.871 143.981 150.827C144.005 150.795 144.884 151.098 145.936 151.502C146.986 151.905 147.882 152.279 147.932 152.332C147.976 152.388 147.767 153.177 147.465 154.089C147.162 155.003 146.558 156.419 146.122 157.235C145.686 158.052 144.628 159.786 143.772 161.088C142.915 162.39 141.662 164.042 140.989 164.76C140.316 165.477 139.422 166.23 139 166.431C138.278 166.774 138.116 166.751 136.233 166.042C135.119 165.622 134.067 165.063 133.855 164.776C133.601 164.433 133.476 163.843 133.476 162.997C133.476 162.301 133.619 160.954 133.794 160.005C133.969 159.056 134.445 157.227 134.852 155.939C135.816 152.886 136.826 149.858 137.943 146.872C138.466 145.477 139.581 142.72 140.421 140.744C141.258 138.776 141.9 137.114 141.853 137.041C141.799 136.98 140.565 137.838 139.11 138.946C134.435 142.509 124.639 157.74 119.852 155.946C118.109 155.293 116.551 153.87 116.28 151.502C112.681 151.537 105.276 173.018 104.307 176.276C103.641 178.515 93.9393 207.236 93.3438 209.406C92.749 211.575 91.9276 214.846 91.5186 216.676C91.1098 218.505 90.6553 220.89 90.5079 221.975C90.3608 223.055 90.221 223.962 90.1973 223.996C90.1714 224.024 89.1985 223.885 88.0343 223.686C86.8716 223.487 85.841 223.379 85.7384 223.446C85.6413 223.514 84.8671 222.84 84.0196 221.948C82.7338 220.595 82.4797 220.198 82.4815 219.549C82.4828 219.121 82.6227 218.174 82.793 217.446C82.9637 216.718 83.5161 215 84.0206 213.627C87.986 202.846 90.5067 195.38 96.3966 180.687C98.6052 175.177 101.273 169.784 103.076 164.078C103.462 162.858 104.687 159.199 105.799 155.946C106.911 152.694 108.203 148.978 108.668 147.69C109.133 146.403 110.298 143.298 111.256 140.791C112.215 138.284 113.79 134.242 114.756 131.809C115.719 129.383 116.507 127.363 116.512 127.311C116.513 127.27 116.615 127.237 116.739 127.237C116.866 127.238 117.841 127.584 118.906 128.007C120.728 128.73 120.848 128.82 120.848 129.472C120.848 129.853 120.937 130.23 121.048 130.308C121.161 130.38 122.121 128.808 123.183 126.81C124.246 124.808 125.83 121.84 126.702 120.214C127.575 118.587 129.652 114.761 131.319 111.712C132.986 108.663 134.732 105.449 135.198 104.566C135.664 103.686 136.627 101.911 137.337 100.623C138.047 99.3357 139.025 97.5251 139.511 96.5996C139.995 95.6765 140.347 94.8681 140.293 94.8008C140.237 94.7373 140.057 94.8294 139.893 95.0049C139.728 95.1811 139.01 95.8779 138.296 96.5537C137.582 97.2298 136.889 97.8961 136.758 98.0332C136.626 98.1708 135.558 99.2253 134.386 100.377C133.213 101.529 131.321 103.401 130.182 104.536C129.042 105.671 127.767 106.947 127.35 107.371C126.932 107.796 125.518 109.196 124.207 110.482C122.896 111.769 120.987 113.653 119.966 114.67C118.944 115.686 117.286 117.312 116.28 118.283C115.275 119.254 113.462 120.974 112.251 122.104C111.04 123.233 109.09 124.999 107.916 126.028C106.742 127.057 105.002 128.514 104.048 129.265C103.094 130.015 101.723 130.965 101 131.377C100.278 131.789 99.3399 132.2 98.9171 132.29C98.195 132.444 98.0442 132.348 96.3966 130.687C95.2247 129.505 94.5998 128.684 94.5069 128.206C94.4277 127.796 94.5231 126.886 94.7315 126.07C94.9313 125.288 95.5416 123.541 96.087 122.186C96.6323 120.83 97.7096 118.391 98.4805 116.765C99.2513 115.138 101.101 111.367 102.59 108.386C104.079 105.404 105.612 102.354 105.997 101.608C106.382 100.863 107.092 99.4762 107.573 98.5264C108.055 97.5763 108.762 96.1524 109.144 95.3623C109.689 94.233 109.75 93.9801 109.435 94.1797C109.214 94.3199 108.531 94.8562 107.918 95.3721C107.305 95.8885 104.291 98.4724 101.222 101.115C98.1521 103.758 95.3863 106.139 95.0753 106.405C94.7627 106.673 92.1678 108.934 89.3077 111.433C86.4467 113.932 83.4715 116.547 82.6964 117.246C81.9213 117.945 79.1032 120.507 76.4337 122.938C73.7646 125.37 71.2774 127.633 70.9063 127.966C70.5357 128.299 69.4511 129.368 68.4971 130.343C66.7627 132.115 66.7621 132.116 65.1925 130.479C63.6216 128.84 63.6209 128.839 65.0841 127.114C65.8885 126.166 66.892 125.047 67.3145 124.629C67.7368 124.211 68.7136 123.268 69.4844 122.534C70.255 121.8 71.3726 120.756 71.9678 120.214C72.5625 119.672 73.2445 119.047 73.4835 118.822C73.7219 118.598 74.6978 117.716 75.6514 116.863C76.6052 116.01 78.5567 114.258 79.9874 112.97C81.4178 111.682 83.1246 110.155 83.7803 109.575C84.4361 108.996 86.7282 106.99 88.8741 105.119C91.0196 103.248 93.0311 101.499 93.3438 101.231C93.6574 100.963 96.4251 98.5834 99.4942 95.9414C102.565 93.2986 106.405 90.0208 108.03 88.6582C109.655 87.2958 111.654 85.6602 112.473 85.0234C113.291 84.3868 114.173 83.8662 114.433 83.8662C114.711 83.8675 115.55 84.5376 116.478 85.5C117.944 87.0215 118.041 87.1845 117.904 87.9014C117.824 88.3248 117.381 89.5243 116.922 90.5664C116.462 91.6096 114.169 96.2666 111.825 100.916C109.482 105.566 106.499 111.534 105.198 114.177C103.897 116.82 102.248 120.353 101.533 122.027C100.819 123.7 100.264 125.168 100.298 125.292C100.336 125.411 101.145 124.93 102.098 124.22C103.052 123.508 105.052 121.844 106.542 120.523C108.032 119.203 109.752 117.65 110.365 117.073C110.979 116.497 112.003 115.541 112.642 114.95C113.28 114.359 114.29 113.4 114.886 112.817C115.482 112.235 116.762 110.987 117.729 110.045C118.696 109.103 119.679 108.121 119.915 107.865C120.151 107.609 121.256 106.513 122.37 105.429C123.485 104.345 124.554 103.29 124.744 103.087C124.935 102.884 125.477 102.342 125.949 101.884C126.421 101.425 127.39 100.482 128.101 99.7891C128.811 99.0956 130.323 97.5864 131.46 96.4346C132.597 95.2829 134.1 93.7854 134.8 93.1074C135.5 92.4298 136.486 91.4861 136.991 91.0117C137.497 90.5368 139.314 88.8102 141.029 87.1748C142.745 85.5396 144.685 83.7942 145.339 83.2949C145.992 82.7968 146.674 82.3892 146.856 82.3896Z" fill="currentColor"/>
|
|
11
|
+
<path d="M258 208H254V80H258V208Z" fill="currentColor"/>
|
|
12
|
+
<path d="M173.008 124.135C175.013 122.154 175.014 122.155 176.692 123.022C177.616 123.5 178.507 124.041 178.671 124.226C178.922 124.509 178.871 124.782 178.334 126C177.985 126.792 176.446 129.713 174.914 132.491C173.383 135.27 171.961 137.876 171.756 138.282C171.55 138.689 170.933 139.846 170.383 140.853C169.833 141.859 169.427 142.732 169.479 142.792C169.541 142.839 170.837 141.414 172.367 139.614C175.161 136.329 175.161 136.329 177.092 137.332C178.598 138.114 179.038 138.457 179.095 138.892C179.163 139.414 179.238 139.439 180.287 139.277C180.903 139.183 182.562 139.011 183.974 138.896C186.19 138.717 186.655 138.601 187.383 138.054C187.846 137.706 188.313 137.421 188.421 137.42C188.529 137.421 189.159 137.702 189.821 138.047C190.807 138.56 191.099 138.621 191.42 138.38C191.636 138.217 192.8 136.854 194.007 135.35C195.214 133.846 197.177 131.28 198.371 129.648C199.564 128.019 200.699 126.536 200.895 126.352C201.197 126.066 201.501 126.149 203.032 126.938C204.014 127.443 204.953 128.002 205.118 128.182C205.372 128.458 205.277 128.954 204.496 131.424C203.989 133.027 203.148 135.726 202.627 137.42C202.106 139.113 201.68 140.64 201.678 140.814C201.676 141.052 201.837 141.033 202.341 140.737C202.978 140.363 203.076 140.378 204.602 141.101C205.655 141.599 206.564 141.855 207.277 141.855C207.873 141.855 209.902 141.513 211.789 141.094C213.677 140.675 216.101 140.274 217.174 140.203C219.107 140.076 219.142 140.083 221.071 141.099C222.142 141.662 223.239 142.359 223.51 142.648C223.78 142.937 224.001 143.348 224 143.562C223.999 143.776 223.764 144.519 223.48 145.214C223.195 145.909 222.861 146.549 222.736 146.637C222.611 146.723 221.775 146.381 220.879 145.877C219.247 144.959 219.246 144.959 217.669 145.24C216.801 145.395 215.017 145.754 213.705 146.039C212.394 146.324 210.541 146.576 209.587 146.6C208.11 146.636 207.664 146.544 206.58 145.975C205.885 145.609 205.275 145.31 205.219 145.306C205.17 145.306 204.15 146.359 202.953 147.646C201.758 148.933 200.556 150.05 200.28 150.13C199.94 150.227 199.16 149.917 197.829 149.157C196.757 148.545 195.817 147.862 195.741 147.64C195.666 147.418 195.607 146.885 195.608 146.456C195.61 146.027 195.889 144.483 196.229 143.026C196.567 141.574 196.806 140.385 196.763 140.378C196.704 140.392 195.649 141.483 194.406 142.814C193.155 144.155 191.773 145.446 191.335 145.683C190.539 146.112 190.538 146.111 188.357 144.893C186.176 143.674 186.176 143.674 183.684 143.979C182.313 144.146 180.703 144.291 180.107 144.3C179.383 144.311 178.638 144.111 177.863 143.701C177.227 143.364 176.579 143.089 176.424 143.088C176.266 143.093 174.162 145.503 171.744 148.447C169.324 151.395 166.313 155.004 165.054 156.466C163.795 157.927 162.394 159.416 161.94 159.773C161.114 160.424 161.113 160.425 159.176 159.345C157.557 158.442 157.239 158.17 157.238 157.687C157.238 157.368 157.629 156.244 158.106 155.191C158.582 154.14 158.971 153.202 158.972 153.104C158.974 153.005 159.428 152.018 159.981 150.906C160.535 149.791 161.445 147.991 162.003 146.907C162.561 145.823 163.586 143.827 164.281 142.472C164.977 141.117 165.781 139.582 166.068 139.061C166.355 138.541 166.541 138.059 166.482 137.989C166.42 137.923 165.023 139.079 163.377 140.56C161.729 142.041 159.247 144.217 157.861 145.396C155.685 147.245 155.29 147.691 154.965 148.658C154.758 149.274 154.456 149.834 154.295 149.905C154.134 149.976 152.974 149.476 151.718 148.794C150.464 148.113 149.438 147.446 149.435 147.312C149.435 147.18 149.619 146.591 149.845 146.004C150.07 145.417 150.436 144.768 150.657 144.561C150.879 144.354 152.914 142.587 155.179 140.636C157.444 138.684 160.273 136.198 161.465 135.112C162.657 134.027 165.291 131.559 167.317 129.628C169.344 127.697 171.905 125.224 173.008 124.135Z" fill="currentColor"/>
|
|
13
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M381.914 62.7129C391.875 62.7129 396.758 68.1817 396.758 79.2656V116.424C396.758 127.459 391.875 132.928 381.914 132.928C372.051 132.928 367.168 127.459 367.168 116.424V79.2656C367.168 68.1816 372.051 62.7129 381.914 62.7129ZM381.963 70.3789C378.643 70.3789 377.031 72.918 377.031 78.2402V117.596C377.031 122.771 378.643 125.262 381.963 125.262C385.283 125.262 386.846 122.771 386.846 117.596V78.2402C386.846 72.918 385.283 70.3789 381.963 70.3789Z" fill="currentColor"/>
|
|
14
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M318.836 132H308.631L307.41 120.867H298.279L297.01 132H287.488L296.717 63.6406H309.363L318.836 132ZM302.332 77.4102C301.99 85.8086 301.551 90.9844 301.014 96.4043L299.109 113.885H306.531L304.676 96.4043C304.139 90.9844 303.699 85.8086 303.357 77.4102H302.332Z" fill="currentColor"/>
|
|
15
|
+
<path d="M346.615 100.652C347.397 104.363 348.275 109.344 349.203 115.887L350.229 115.789C349.447 106.658 348.813 96.2578 348.813 88.3477L348.764 63.6406H358.432V132H346.176L337.924 95.2324C337.094 91.375 336.361 87.2246 335.238 79.2656L334.213 79.3633C334.848 87.3711 335.58 100.311 335.58 108.465L335.629 132H326.01V63.6406H338.51L346.615 100.652Z" fill="currentColor"/>
|
|
16
|
+
<path d="M430.738 71.6973H421.705V132H411.891V71.6973H402.809V63.6406H430.738V71.6973Z" fill="currentColor"/>
|
|
17
|
+
<path d="M447.629 91.8145H456.369V63.6406H466.184V132H456.369V99.627H447.629V132H437.815V63.6406H447.629V91.8145Z" fill="currentColor"/>
|
|
18
|
+
<path d="M497.332 71.6973H485.223V92.1562H496.063V99.5781H485.223V123.943H497.967V132H475.408V63.6406H497.332V71.6973Z" fill="currentColor"/>
|
|
19
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M519.984 63.6406C529.066 63.6407 533.559 68.2305 533.559 77.459V84.002C533.559 90.8379 530.824 94.8418 525.502 95.9648V96.7949C529.848 97.918 531.459 100.018 532.191 108.807L532.875 117.547C533.559 126.336 534.193 129.412 535.658 130.975L535.512 132H524.867C523.988 129.119 523.549 125.896 523.061 117.791L522.621 109.637C522.133 101.482 521.059 100.115 517.69 100.115H515.688V132H505.873V63.6406H519.984ZM515.688 92.5469H518.959C522.279 92.5468 523.744 90.8379 523.744 86.6875V77.3125C523.744 73.0157 522.279 71.3555 518.959 71.3555H515.688V92.5469Z" fill="currentColor"/>
|
|
20
|
+
<path d="M217.093 126.559C217.377 126.477 218.043 126.601 218.582 126.838C219.119 127.073 219.983 127.46 220.502 127.698C221.407 128.112 221.442 128.166 221.325 128.981C221.258 129.449 221.051 130.098 220.864 130.423C220.638 130.816 220.317 131.013 219.907 131.013C219.568 131.012 218.572 130.675 217.692 130.263C216.814 129.851 216.016 129.425 215.919 129.315C215.823 129.207 215.932 128.576 216.161 127.913C216.456 127.059 216.728 126.664 217.093 126.559Z" fill="currentColor"/>
|
|
21
|
+
<path d="M186.741 125.346C186.964 125.346 187.983 125.816 189.006 126.392C190.785 127.393 190.863 127.47 190.746 128.138C190.679 128.522 190.421 129.161 190.174 129.556C189.927 129.95 189.526 130.273 189.284 130.273C189.042 130.273 188.024 129.765 187.023 129.145C186.022 128.524 185.203 127.909 185.201 127.776C185.202 127.645 185.359 127.183 185.553 126.75C185.746 126.317 186.002 125.823 186.121 125.653C186.24 125.484 186.519 125.346 186.741 125.346Z" fill="currentColor"/>
|
|
22
|
+
<path d="M145.884 64.001C146.006 64.041 146.915 64.3952 147.904 64.7891C149.664 65.4894 149.705 65.5238 149.586 66.2041C149.519 66.5875 149.311 67.253 149.124 67.6826C148.908 68.1789 147.586 69.4988 145.502 71.2979C143.697 72.8565 141.093 75.1923 139.716 76.4883C138.339 77.7842 136.757 79.4219 136.201 80.127C135.191 81.4074 135.19 81.407 133.311 80.6338C131.431 79.8606 131.431 79.86 131.576 78.9678C131.656 78.4767 131.974 77.5469 132.282 76.9014C132.634 76.1639 133.564 75.0178 134.784 73.8203C135.853 72.7718 138.739 70.1175 141.197 67.9219C143.655 65.7266 145.764 63.9626 145.884 64.001Z" fill="currentColor"/>
|
|
23
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="288" height="288" viewBox="0 0 288 288" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M146.856 82.3899C147.037 82.3924 147.892 83.1225 148.756 84.0127C149.619 84.9022 150.326 85.7409 150.327 85.8774C150.326 86.0141 149.999 86.867 149.599 87.7731C149.198 88.6806 147.895 91.2495 146.702 93.4823C145.509 95.715 144.142 98.2628 143.664 99.1441C143.186 100.025 141.647 102.854 140.244 105.429C138.841 108.004 136.647 112.051 135.369 114.423C134.09 116.795 132.383 119.955 131.573 121.446C130.764 122.937 129.837 124.656 129.513 125.266C129.188 125.877 126.855 130.257 124.327 135C119.732 143.624 119.732 143.625 119.851 144.857C119.993 146.316 119.13 148.266 121.156 149.344C123.183 150.419 130.334 138.007 132.282 137.041C135.244 135.573 136.097 134.662 138.677 132.466C139.81 131.502 141.858 129.638 143.23 128.324C144.601 127.011 146.893 124.609 148.324 122.988C149.754 121.368 151.413 119.305 152.009 118.405C152.605 117.505 153.191 116.767 153.31 116.765C154.203 116.743 156.516 117.717 157.148 118.436C157.261 118.566 157.121 119.226 156.804 120.039C156.508 120.8 155.736 122.175 155.089 123.094C154.442 124.014 153.231 125.93 152.397 127.353C151.563 128.777 150.023 131.605 148.974 133.638C147.925 135.671 146.007 139.675 144.713 142.536C143.417 145.397 141.909 148.945 141.359 150.421C140.81 151.897 140.126 153.882 139.839 154.831C139.552 155.779 139.179 157.082 139.009 157.726C138.84 158.369 138.784 158.896 138.886 158.896C138.989 158.895 139.579 158.163 140.197 157.27C140.815 156.375 141.91 154.572 142.631 153.265C143.347 151.964 143.952 150.871 143.981 150.827C144.003 150.794 144.883 151.097 145.936 151.502C146.988 151.906 147.886 152.28 147.932 152.332C147.976 152.388 147.767 153.177 147.465 154.089C147.162 155.004 146.558 156.42 146.122 157.236C145.686 158.052 144.628 159.785 143.772 161.088C142.915 162.39 141.663 164.042 140.99 164.76C140.317 165.478 139.422 166.23 139 166.43C138.277 166.773 138.116 166.751 136.233 166.042C135.119 165.622 134.068 165.063 133.855 164.776C133.601 164.433 133.475 163.843 133.475 162.997C133.475 162.3 133.619 160.954 133.794 160.005C133.969 159.056 134.445 157.227 134.851 155.94C135.816 152.886 136.826 149.859 137.944 146.872C138.466 145.478 139.581 142.72 140.421 140.744C141.258 138.775 141.9 137.114 141.852 137.041C141.799 136.981 140.565 137.838 139.11 138.946C134.434 142.51 124.638 157.74 119.851 155.946C118.108 155.293 116.551 153.87 116.281 151.502C112.681 151.536 105.276 173.019 104.307 176.277C103.641 178.516 93.9384 207.238 93.3434 209.406C92.7487 211.575 91.9277 214.846 91.5187 216.676C91.1099 218.506 90.6548 220.89 90.5074 221.974C90.3598 223.058 90.2202 223.968 90.1972 223.996C90.1713 224.024 89.1987 223.885 88.0345 223.686C86.8699 223.487 85.8378 223.379 85.738 223.447C85.6409 223.515 84.8675 222.841 84.02 221.949C82.7336 220.595 82.4793 220.198 82.4813 219.548C82.4826 219.121 82.623 218.175 82.7933 217.447C82.9639 216.719 83.5163 215 84.0209 213.627C87.9863 202.845 90.5069 195.381 96.3968 180.687C98.6055 175.177 101.274 169.784 103.076 164.078C103.462 162.858 104.687 159.199 105.799 155.946C106.912 152.694 108.203 148.978 108.668 147.69C109.133 146.403 110.297 143.298 111.256 140.791C112.214 138.284 113.79 134.242 114.756 131.809C115.719 129.384 116.507 127.363 116.512 127.311C116.512 127.27 116.615 127.237 116.739 127.237C116.866 127.238 117.841 127.584 118.907 128.007C120.729 128.73 120.848 128.82 120.848 129.471C120.848 129.853 120.938 130.229 121.048 130.307C121.161 130.38 122.121 128.807 123.182 126.809C124.245 124.808 125.829 121.841 126.702 120.214C127.575 118.588 129.653 114.761 131.32 111.712C132.987 108.663 134.732 105.448 135.199 104.566C135.665 103.685 136.627 101.911 137.337 100.623C138.047 99.3359 139.025 97.5248 139.511 96.5994C139.996 95.6764 140.347 94.8682 140.293 94.8009C140.237 94.7371 140.057 94.8293 139.893 95.0049C139.729 95.181 139.01 95.878 138.296 96.5541C137.581 97.2303 136.889 97.8963 136.758 98.0333C136.626 98.1709 135.559 99.2252 134.386 100.377C133.213 101.529 131.321 103.4 130.181 104.536C129.041 105.671 127.767 106.947 127.35 107.372C126.932 107.796 125.519 109.196 124.207 110.482C122.896 111.769 120.987 113.653 119.965 114.669C118.944 115.686 117.286 117.312 116.281 118.283C115.275 119.255 113.462 120.974 112.251 122.103C111.041 123.233 109.09 124.999 107.916 126.028C106.743 127.057 105.002 128.514 104.048 129.264C103.094 130.015 101.723 130.966 101 131.377C100.277 131.789 99.3399 132.2 98.9171 132.29C98.1949 132.444 98.0445 132.348 96.3968 130.687C95.2247 129.505 94.5999 128.685 94.507 128.206C94.4277 127.796 94.5233 126.887 94.7318 126.071C94.9315 125.289 95.5411 123.541 96.0866 122.186C96.6319 120.83 97.7096 118.391 98.4806 116.765C99.2514 115.138 101.101 111.368 102.59 108.386C104.079 105.405 105.612 102.354 105.997 101.609C106.382 100.863 107.092 99.4763 107.574 98.5264C108.055 97.5762 108.762 96.1521 109.143 95.362C109.688 94.2327 109.75 93.9798 109.435 94.1794C109.214 94.3193 108.532 94.8564 107.918 95.3724C107.305 95.8888 104.291 98.4727 101.222 101.116C98.1523 103.758 95.3864 106.139 95.0753 106.405C94.763 106.672 92.1679 108.934 89.3076 111.432C86.4465 113.931 83.4719 116.548 82.6967 117.246C81.9218 117.945 79.1036 120.506 76.434 122.938C73.7646 125.371 71.2765 127.633 70.9059 127.966C70.5352 128.298 69.451 129.368 68.497 130.343C66.7623 132.116 66.762 132.116 65.192 130.478C63.6211 128.839 63.6211 128.839 65.0843 127.114C65.8886 126.166 66.8924 125.048 67.3149 124.629C67.7371 124.211 68.7133 123.268 69.4841 122.534C70.2547 121.8 71.373 120.756 71.9682 120.214C72.5631 119.672 73.2451 119.046 73.4837 118.822C73.7222 118.598 74.6975 117.716 75.6512 116.863C76.6049 116.01 78.5563 114.258 79.9869 112.97C81.4174 111.682 83.1246 110.155 83.7804 109.575C84.4361 108.996 86.728 106.99 88.874 105.119C91.0195 103.248 93.0307 101.499 93.3434 101.232C93.6554 100.965 96.4235 98.584 99.4938 95.941C102.564 93.2981 106.406 90.0207 108.031 88.6582C109.655 87.2959 111.654 85.6603 112.472 85.0234C113.291 84.3867 114.173 83.8663 114.433 83.8663C114.711 83.8675 115.55 84.5371 116.478 85.4995C117.944 87.0214 118.041 87.1846 117.905 87.9016C117.824 88.3251 117.382 89.5242 116.922 90.5663C116.462 91.609 114.169 96.2663 111.825 100.916C109.481 105.566 106.499 111.533 105.198 114.176C103.897 116.819 102.248 120.352 101.533 122.027C100.819 123.701 100.263 125.171 100.298 125.292C100.336 125.412 101.145 124.93 102.098 124.219C103.052 123.508 105.052 121.844 106.542 120.523C108.032 119.202 109.752 117.65 110.365 117.073C110.978 116.497 112.003 115.541 112.641 114.95C113.28 114.359 114.29 113.4 114.886 112.817C115.482 112.235 116.761 110.987 117.728 110.045C118.695 109.102 119.68 108.122 119.915 107.866C120.151 107.609 121.256 106.513 122.371 105.429C123.486 104.344 124.554 103.29 124.744 103.087C124.935 102.884 125.477 102.342 125.95 101.883C126.422 101.425 127.39 100.482 128.1 99.7893C128.811 99.0959 130.323 97.5861 131.46 96.4341C132.597 95.2822 134.1 93.7851 134.8 93.1073C135.5 92.4296 136.486 91.4866 136.991 91.0122C137.496 90.5378 139.314 88.811 141.03 87.1752C142.746 85.5398 144.685 83.7938 145.339 83.2948C145.993 82.7965 146.675 82.3891 146.856 82.3899Z" fill="currentColor"/>
|
|
3
|
+
<path d="M173.008 124.135C175.014 122.154 175.014 122.155 176.693 123.022C177.616 123.5 178.507 124.042 178.671 124.226C178.922 124.509 178.87 124.782 178.334 126C177.985 126.792 176.446 129.713 174.914 132.491C173.383 135.269 171.962 137.876 171.756 138.282C171.55 138.689 170.932 139.846 170.383 140.853C169.833 141.859 169.426 142.732 169.478 142.792C169.536 142.844 170.834 141.417 172.367 139.614C175.161 136.329 175.161 136.329 177.092 137.332C178.598 138.114 179.038 138.457 179.095 138.892C179.163 139.414 179.238 139.439 180.287 139.277C180.904 139.182 182.563 139.011 183.974 138.896C186.19 138.716 186.655 138.601 187.383 138.054C187.846 137.705 188.314 137.42 188.421 137.42C188.53 137.421 189.16 137.703 189.822 138.047C190.807 138.56 191.099 138.621 191.42 138.38C191.636 138.217 192.8 136.854 194.007 135.349C195.214 133.845 197.178 131.28 198.372 129.649C199.565 128.018 200.7 126.535 200.895 126.351C201.197 126.066 201.501 126.149 203.032 126.938C204.014 127.443 204.953 128.003 205.118 128.182C205.372 128.458 205.277 128.954 204.496 131.424C203.989 133.027 203.147 135.726 202.627 137.42C202.106 139.114 201.679 140.642 201.678 140.815C201.676 141.052 201.837 141.033 202.341 140.737C202.978 140.363 203.075 140.379 204.602 141.101C205.655 141.599 206.564 141.856 207.277 141.856C207.872 141.855 209.902 141.512 211.789 141.093C213.677 140.674 216.101 140.274 217.174 140.203C219.107 140.075 219.142 140.083 221.071 141.098C222.142 141.661 223.239 142.359 223.51 142.648C223.78 142.937 224.001 143.348 224 143.562C223.999 143.776 223.764 144.519 223.48 145.214C223.195 145.909 222.86 146.549 222.736 146.636C222.611 146.723 221.775 146.381 220.879 145.877C219.247 144.959 219.246 144.959 217.669 145.24C216.801 145.395 215.017 145.754 213.705 146.039C212.394 146.324 210.541 146.576 209.587 146.599C208.109 146.636 207.664 146.544 206.58 145.974C205.883 145.608 205.272 145.308 205.218 145.305C205.169 145.305 204.15 146.359 202.954 147.646C201.758 148.933 200.555 150.05 200.28 150.129C199.94 150.227 199.16 149.917 197.829 149.157C196.757 148.545 195.818 147.862 195.742 147.639C195.667 147.418 195.607 146.885 195.608 146.456C195.61 146.027 195.889 144.483 196.228 143.026C196.567 141.574 196.807 140.385 196.763 140.377C196.711 140.385 195.653 141.478 194.406 142.815C193.156 144.155 191.773 145.446 191.335 145.682C190.539 146.112 190.538 146.111 188.357 144.893C186.176 143.674 186.176 143.674 183.683 143.978C182.313 144.146 180.703 144.29 180.106 144.299C179.383 144.31 178.638 144.111 177.864 143.701C177.227 143.365 176.579 143.088 176.424 143.087C176.27 143.087 174.164 145.499 171.744 148.447C169.324 151.395 166.313 155.004 165.054 156.466C163.795 157.927 162.394 159.416 161.94 159.774C161.114 160.425 161.114 160.425 159.176 159.345C157.557 158.442 157.238 158.17 157.238 157.686C157.238 157.368 157.628 156.244 158.105 155.191C158.581 154.14 158.97 153.202 158.972 153.105C158.973 153.008 159.427 152.019 159.98 150.906C160.535 149.791 161.445 147.992 162.003 146.907C162.561 145.823 163.586 143.827 164.282 142.472C164.977 141.117 165.781 139.582 166.068 139.061C166.355 138.541 166.541 138.059 166.482 137.99C166.422 137.922 165.024 139.079 163.377 140.56C161.729 142.041 159.247 144.217 157.861 145.395C155.685 147.245 155.29 147.691 154.965 148.658C154.758 149.273 154.457 149.835 154.295 149.906C154.134 149.976 152.974 149.476 151.718 148.794C150.464 148.113 149.438 147.447 149.435 147.313C149.435 147.18 149.619 146.591 149.845 146.003C150.071 145.417 150.436 144.767 150.658 144.56C150.879 144.353 152.914 142.587 155.179 140.635C157.444 138.684 160.273 136.198 161.465 135.112C162.657 134.027 165.291 131.559 167.317 129.628C169.344 127.697 171.905 125.225 173.008 124.135Z" fill="currentColor"/>
|
|
4
|
+
<path d="M217.093 126.559C217.377 126.477 218.043 126.601 218.582 126.838C219.119 127.073 219.983 127.46 220.502 127.698C221.407 128.112 221.442 128.165 221.326 128.981C221.259 129.449 221.051 130.098 220.864 130.422C220.637 130.815 220.317 131.013 219.908 131.013C219.569 131.013 218.572 130.675 217.693 130.263C216.814 129.851 216.016 129.425 215.919 129.315C215.823 129.207 215.933 128.575 216.161 127.913C216.456 127.059 216.728 126.665 217.093 126.559Z" fill="currentColor"/>
|
|
5
|
+
<path d="M186.741 125.345C186.964 125.346 187.983 125.816 189.006 126.392C190.786 127.393 190.862 127.47 190.746 128.137C190.678 128.522 190.421 129.16 190.174 129.555C189.926 129.95 189.526 130.273 189.284 130.273C189.042 130.273 188.025 129.765 187.023 129.144C186.022 128.524 185.203 127.909 185.201 127.777C185.201 127.645 185.359 127.183 185.553 126.75C185.746 126.316 186.002 125.823 186.121 125.653C186.24 125.484 186.519 125.345 186.741 125.345Z" fill="currentColor"/>
|
|
6
|
+
<path d="M145.884 64.0006C146.005 64.04 146.913 64.3951 147.904 64.7893C149.665 65.4898 149.705 65.5238 149.586 66.2043C149.519 66.5877 149.311 67.253 149.124 67.6826C148.908 68.1788 147.586 69.4984 145.502 71.2976C143.697 72.8562 141.092 75.1921 139.716 76.4881C138.339 77.7841 136.758 79.4217 136.202 80.1267C135.191 81.4075 135.19 81.4072 133.311 80.6339C131.431 79.8606 131.431 79.8601 131.576 78.9677C131.656 78.4766 131.974 77.5465 132.282 76.9009C132.633 76.1634 133.564 75.0181 134.785 73.8206C135.854 72.772 138.74 70.1173 141.198 67.9216C143.655 65.7263 145.764 63.9622 145.884 64.0006Z" fill="currentColor"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="656" height="256" viewBox="0 0 656 256" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M73.0098 162H63.4883L72.7168 93.6406H85.3633L94.8359 162H84.6309L83.4102 150.867H74.2793L73.0098 162ZM77.0137 126.404L75.1094 143.885H82.5312L80.6758 126.404C80.1387 120.984 79.6992 115.809 79.3574 107.41H78.332C77.9902 115.809 77.5508 120.984 77.0137 126.404ZM111.629 162H102.01V93.6406H114.51L122.615 130.652C123.396 134.363 124.275 139.344 125.203 145.887L126.229 145.789C125.447 136.658 124.812 126.258 124.812 118.348L124.764 93.6406H134.432V162H122.176L113.924 125.232C113.094 121.375 112.361 117.225 111.238 109.266L110.213 109.363C110.848 117.371 111.58 130.311 111.58 138.465L111.629 162ZM157.914 162.928C148.051 162.928 143.168 157.459 143.168 146.424V109.266C143.168 98.1816 148.051 92.7129 157.914 92.7129C167.875 92.7129 172.758 98.1816 172.758 109.266V146.424C172.758 157.459 167.875 162.928 157.914 162.928ZM157.963 155.262C161.283 155.262 162.846 152.771 162.846 147.596V108.24C162.846 102.918 161.283 100.379 157.963 100.379C154.643 100.379 153.031 102.918 153.031 108.24V147.596C153.031 152.771 154.643 155.262 157.963 155.262ZM197.705 162H187.891V101.697H178.809V93.6406H206.738V101.697H197.705V162ZM223.629 162H213.814V93.6406H223.629V121.814H232.369V93.6406H242.184V162H232.369V129.627H223.629V162ZM273.967 162H251.408V93.6406H273.332V101.697H261.223V122.156H272.062V129.578H261.223V153.943H273.967V162ZM291.688 162H281.873V93.6406H295.984C305.066 93.6406 309.559 98.2305 309.559 107.459V114.002C309.559 120.838 306.824 124.842 301.502 125.965V126.795C305.848 127.918 307.459 130.018 308.191 138.807L308.875 147.547C309.559 156.336 310.193 159.412 311.658 160.975L311.512 162H300.867C299.988 159.119 299.549 155.896 299.061 147.791L298.621 139.637C298.133 131.482 297.059 130.115 293.689 130.115H291.688V162ZM291.688 101.355V122.547H294.959C298.279 122.547 299.744 120.838 299.744 116.688V107.312C299.744 103.016 298.279 101.355 294.959 101.355H291.688ZM345.83 162.928C336.064 162.928 331.426 157.459 331.426 146.473V109.217C331.426 98.1816 336.113 92.7129 345.83 92.7129C355.156 92.7129 360.137 97.5957 360.137 108.924V118.201L350.518 119.91V109.461C350.518 102.43 348.955 100.232 345.928 100.232C342.803 100.232 341.289 102.723 341.289 107.947V147.547C341.289 152.771 342.803 155.262 345.977 155.262C348.906 155.262 350.615 152.967 350.615 145.74V133.973L360.332 135.877V146.57C360.332 158.045 355.107 162.928 345.83 162.928ZM378.59 162H368.775V93.6406H382.887C391.969 93.6406 396.461 98.2305 396.461 107.459V114.002C396.461 120.838 393.727 124.842 388.404 125.965V126.795C392.75 127.918 394.361 130.018 395.094 138.807L395.777 147.547C396.461 156.336 397.096 159.412 398.561 160.975L398.414 162H387.77C386.891 159.119 386.451 155.896 385.963 147.791L385.523 139.637C385.035 131.482 383.961 130.115 380.592 130.115H378.59V162ZM378.59 101.355V122.547H381.861C385.182 122.547 386.646 120.838 386.646 116.688V107.312C386.646 103.016 385.182 101.355 381.861 101.355H378.59ZM428.146 162H405.588V93.6406H427.512V101.697H415.402V122.156H426.242V129.578H415.402V153.943H428.146V162ZM443.475 162H433.953L443.182 93.6406H455.828L465.301 162H455.096L453.875 150.867H444.744L443.475 162ZM447.479 126.404L445.574 143.885H452.996L451.141 126.404C450.604 120.984 450.164 115.809 449.822 107.41H448.797C448.455 115.809 448.016 120.984 447.479 126.404ZM486.049 162H476.234V101.697H467.152V93.6406H495.082V101.697H486.049V162ZM511.973 162H502.158V93.6406H511.973V162ZM535.504 162.928C525.641 162.928 520.758 157.459 520.758 146.424V109.266C520.758 98.1816 525.641 92.7129 535.504 92.7129C545.465 92.7129 550.348 98.1816 550.348 109.266V146.424C550.348 157.459 545.465 162.928 535.504 162.928ZM535.553 155.262C538.873 155.262 540.436 152.771 540.436 147.596V108.24C540.436 102.918 538.873 100.379 535.553 100.379C532.232 100.379 530.621 102.918 530.621 108.24V147.596C530.621 152.771 532.232 155.262 535.553 155.262ZM568.703 162H559.084V93.6406H571.584L579.689 130.652C580.471 134.363 581.35 139.344 582.277 145.887L583.303 145.789C582.521 136.658 581.887 126.258 581.887 118.348L581.838 93.6406H591.506V162H579.25L570.998 125.232C570.168 121.375 569.436 117.225 568.312 109.266L567.287 109.363C567.922 117.371 568.654 130.311 568.654 138.465L568.703 162Z" fill="currentColor"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="832" height="256" viewBox="0 0 832 256" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g opacity="0.3">
|
|
3
|
+
<path d="M188.407 207.269C188.862 209.463 189.166 211.611 189.419 214.766H190.48C190.784 211.611 191.138 209.417 191.593 207.314L195.03 192H205.09L196.395 221.942L206 256H195.03L191.087 236.663C190.581 234.012 190.329 232 190.076 229.714H189.015C188.812 232 188.559 234.012 188.003 236.709L184.161 256H174L182.948 222.537L174.606 192H185.223L188.407 207.269ZM450.407 207.269C450.862 209.463 451.166 211.611 451.419 214.766H452.48C452.784 211.611 453.138 209.417 453.593 207.314L457.03 192H467.09L458.395 221.942L468 256H457.03L453.087 236.663C452.581 234.012 452.329 232 452.076 229.714H451.015C450.812 232 450.559 234.012 450.003 236.709L446.161 256H436L444.948 222.537L436.606 192H447.223L450.407 207.269ZM702.407 207.269C702.862 209.463 703.166 211.611 703.419 214.766H704.48C704.784 211.611 705.138 209.417 705.593 207.314L709.03 192H719.09L710.395 221.942L720 256H709.03L705.087 236.663C704.581 234.012 704.329 232 704.076 229.714H703.015C702.812 232 702.559 234.012 702.003 236.709L698.161 256H688L696.948 222.537L688.606 192H699.223L702.407 207.269ZM34.0576 121.605L64 112.91V122.97L48.6855 126.407C46.5827 126.862 44.3886 127.216 41.2344 127.52V128.581C44.3886 128.834 46.5372 129.138 48.7314 129.593L64 132.777V143.394L33.4629 135.052L0 144V133.839L19.291 129.997C21.9882 129.441 24.0004 129.188 26.2861 128.985V127.924C24.0004 127.671 21.9883 127.419 19.3369 126.913L0 122.97V112L34.0576 121.605ZM832 122.97L812.663 126.913C810.012 127.419 808 127.671 805.714 127.924V128.985C808 129.188 810.012 129.441 812.709 129.997L832 133.839V144L798.537 135.052L768 143.394V132.777L783.269 129.593C785.463 129.138 787.611 128.834 790.766 128.581V127.52C787.611 127.216 785.417 126.862 783.314 126.407L768 122.97V112.91L797.942 121.605L832 112V122.97ZM188.003 19.291C188.559 21.9882 188.812 24.0004 189.015 26.2861H190.076C190.329 24.0004 190.581 21.9883 191.087 19.3369L195.03 0H206L196.395 34.0576L205.09 64H195.03L191.593 48.6855C191.138 46.5827 190.784 44.3886 190.48 41.2344H189.419C189.166 44.3886 188.862 46.5372 188.407 48.7314L185.223 64H174.606L182.948 33.4629L174 0H184.161L188.003 19.291ZM450.003 19.291C450.559 21.9882 450.812 24.0004 451.015 26.2861H452.076C452.329 24.0004 452.581 21.9883 453.087 19.3369L457.03 0H468L458.395 34.0576L467.09 64H457.03L453.593 48.6855C453.138 46.5827 452.784 44.3886 452.48 41.2344H451.419C451.166 44.3886 450.862 46.5372 450.407 48.7314L447.223 64H436.606L444.948 33.4629L436 0H446.161L450.003 19.291ZM702.003 19.291C702.559 21.9882 702.812 24.0004 703.015 26.2861H704.076C704.329 24.0004 704.581 21.9883 705.087 19.3369L709.03 0H720L710.395 34.0576L719.09 64H709.03L705.593 48.6855C705.138 46.5827 704.784 44.3886 704.48 41.2344H703.419C703.166 44.3886 702.862 46.5372 702.407 48.7314L699.223 64H688.606L696.948 33.4629L688 0H698.161L702.003 19.291Z" fill="currentColor" fill-opacity="0.1"/>
|
|
4
|
+
</g>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<svg width="616" height="288" viewBox="0 0 616 288" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g opacity="0.3">
|
|
3
|
+
<path d="M144.308 239.269C144.791 241.463 145.113 243.611 145.382 246.766H146.511C146.833 243.611 147.209 241.417 147.692 239.314L151.345 224H162.033L152.795 253.942L163 288H151.345L147.155 268.663C146.618 266.012 146.35 264 146.081 261.714H144.952C144.737 264 144.469 266.012 143.878 268.709L139.796 288H129L138.507 254.537L129.645 224H140.924L144.308 239.269Z" fill="currentColor" fill-opacity="0.1"/>
|
|
4
|
+
<path d="M420.308 239.269C420.791 241.463 421.113 243.611 421.382 246.766H422.511C422.833 243.611 423.209 241.417 423.692 239.314L427.345 224H438.033L428.795 253.942L439 288H427.345L423.155 268.663C422.618 266.012 422.35 264 422.081 261.714H420.952C420.737 264 420.469 266.012 419.878 268.709L415.796 288H405L414.507 254.537L405.645 224H416.924L420.308 239.269Z" fill="currentColor" fill-opacity="0.1"/>
|
|
5
|
+
<path d="M34.0576 166.205L64 156.967V167.655L48.6855 171.308C46.5827 171.791 44.3886 172.167 41.2344 172.489V173.618C44.3886 173.887 46.5372 174.209 48.7314 174.692L64 178.076V189.355L33.4629 180.493L0 190V179.204L19.291 175.122C21.9882 174.531 24.0004 174.263 26.2861 174.048V172.919C24.0004 172.65 21.9883 172.382 19.3369 171.845L0 167.655V156L34.0576 166.205Z" fill="currentColor" fill-opacity="0.1"/>
|
|
6
|
+
<path d="M616 109.655L596.663 113.845C594.012 114.382 592 114.65 589.714 114.919V116.048C592 116.263 594.012 116.531 596.709 117.122L616 121.204V132L582.537 122.493L552 131.355V120.076L567.269 116.692C569.463 116.209 571.611 115.887 574.766 115.618V114.489C571.611 114.167 569.417 113.791 567.314 113.308L552 109.655V98.9668L581.942 108.205L616 98V109.655Z" fill="currentColor" fill-opacity="0.1"/>
|
|
7
|
+
<path d="M143.878 19.291C144.469 21.9882 144.737 24.0004 144.952 26.2861H146.081C146.35 24.0004 146.618 21.9883 147.155 19.3369L151.345 0H163L152.795 34.0576L162.033 64H151.345L147.692 48.6855C147.209 46.5827 146.833 44.3886 146.511 41.2344H145.382C145.113 44.3886 144.791 46.5372 144.308 48.7314L140.924 64H129.645L138.507 33.4629L129 0H139.796L143.878 19.291Z" fill="currentColor" fill-opacity="0.1"/>
|
|
8
|
+
<path d="M419.878 19.291C420.469 21.9882 420.737 24.0004 420.952 26.2861H422.081C422.35 24.0004 422.618 21.9883 423.155 19.3369L427.345 0H439L428.795 34.0576L438.033 64H427.345L423.692 48.6855C423.209 46.5827 422.833 44.3886 422.511 41.2344H421.382C421.113 44.3886 420.791 46.5372 420.308 48.7314L416.924 64H405.645L414.507 33.4629L405 0H415.796L419.878 19.291Z" fill="currentColor" fill-opacity="0.1"/>
|
|
9
|
+
</g>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="288" height="288" viewBox="0 0 288 288" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g opacity="0.3">
|
|
3
|
+
<path d="M142.407 239.269C142.862 241.463 143.166 243.611 143.419 246.766H144.48C144.784 243.611 145.138 241.417 145.593 239.314L149.03 224H159.09L150.395 253.942L160 288H149.03L145.087 268.663C144.581 266.012 144.329 264 144.076 261.714H143.015C142.812 264 142.559 266.012 142.003 268.709L138.161 288H128L136.948 254.537L128.606 224H139.223L142.407 239.269ZM34.0576 137.605L64 128.91V138.97L48.6855 142.407C46.5827 142.862 44.3886 143.216 41.2344 143.52V144.581C44.3886 144.834 46.5372 145.138 48.7314 145.593L64 148.777V159.394L33.4629 151.052L0 160V149.839L19.291 145.997C21.9882 145.441 24.0004 145.188 26.2861 144.985V143.924C24.0004 143.671 21.9883 143.419 19.3369 142.913L0 138.97V128L34.0576 137.605ZM288 138.97L268.663 142.913C266.012 143.419 264 143.671 261.714 143.924V144.985C264 145.188 266.012 145.441 268.709 145.997L288 149.839V160L254.537 151.052L224 159.394V148.777L239.269 145.593C241.463 145.138 243.611 144.834 246.766 144.581V143.52C243.611 143.216 241.417 142.862 239.314 142.407L224 138.97V128.91L253.942 137.605L288 128V138.97ZM142.003 19.291C142.559 21.9882 142.812 24.0004 143.015 26.2861H144.076C144.329 24.0004 144.581 21.9883 145.087 19.3369L149.03 0H160L150.395 34.0576L159.09 64H149.03L145.593 48.6855C145.138 46.5827 144.784 44.3886 144.48 41.2344H143.419C143.166 44.3886 142.862 46.5372 142.407 48.7314L139.223 64H128.606L136.948 33.4629L128 0H138.161L142.003 19.291Z" fill="currentColor" fill-opacity="0.1"/>
|
|
4
|
+
</g>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="656" height="256" viewBox="0 0 656 256" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g opacity="0.3">
|
|
3
|
+
<path d="M188.407 207.269C188.862 209.463 189.166 211.611 189.419 214.766H190.48C190.784 211.611 191.138 209.417 191.593 207.314L195.03 192H205.09L196.395 221.942L206 256H195.03L191.087 236.663C190.581 234.012 190.329 232 190.076 229.714H189.015C188.812 232 188.559 234.012 188.003 236.709L184.161 256H174L182.948 222.537L174.606 192H185.223L188.407 207.269ZM450.407 207.269C450.862 209.463 451.166 211.611 451.419 214.766H452.48C452.784 211.611 453.138 209.417 453.593 207.314L457.03 192H467.09L458.395 221.942L468 256H457.03L453.087 236.663C452.581 234.012 452.329 232 452.076 229.714H451.015C450.812 232 450.559 234.012 450.003 236.709L446.161 256H436L444.948 222.537L436.606 192H447.223L450.407 207.269ZM34.0576 121.605L64 112.91V122.97L48.6855 126.407C46.5827 126.862 44.3886 127.216 41.2344 127.52V128.581C44.3886 128.834 46.5372 129.138 48.7314 129.593L64 132.777V143.394L33.4629 135.052L0 144V133.839L19.291 129.997C21.9882 129.441 24.0004 129.188 26.2861 128.985V127.924C24.0004 127.671 21.9883 127.419 19.3369 126.913L0 122.97V112L34.0576 121.605ZM656 122.97L636.663 126.913C634.012 127.419 632 127.671 629.714 127.924V128.985C632 129.188 634.012 129.441 636.709 129.997L656 133.839V144L622.537 135.052L592 143.394V132.777L607.269 129.593C609.463 129.138 611.611 128.834 614.766 128.581V127.52C611.611 127.216 609.417 126.862 607.314 126.407L592 122.97V112.91L621.942 121.605L656 112V122.97ZM188.003 19.291C188.559 21.9882 188.812 24.0004 189.015 26.2861H190.076C190.329 24.0004 190.581 21.9883 191.087 19.3369L195.03 0H206L196.395 34.0576L205.09 64H195.03L191.593 48.6855C191.138 46.5827 190.784 44.3886 190.48 41.2344H189.419C189.166 44.3886 188.862 46.5372 188.407 48.7314L185.223 64H174.606L182.948 33.4629L174 0H184.161L188.003 19.291ZM450.003 19.291C450.559 21.9882 450.812 24.0004 451.015 26.2861H452.076C452.329 24.0004 452.581 21.9883 453.087 19.3369L457.03 0H468L458.395 34.0576L467.09 64H457.03L453.593 48.6855C453.138 46.5827 452.784 44.3886 452.48 41.2344H451.419C451.166 44.3886 450.862 46.5372 450.407 48.7314L447.223 64H436.606L444.948 33.4629L436 0H446.161L450.003 19.291Z" fill="currentColor" fill-opacity="0.1"/>
|
|
4
|
+
</g>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { useEffect } from 'react'
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Observes all elements with [data-reveal] inside a ref'd container,
|
|
5
|
+
* adds `.is-revealed` when each scrolls into view.
|
|
6
|
+
*/
|
|
7
|
+
export default function useReveal(ref) {
|
|
8
|
+
useEffect(() => {
|
|
9
|
+
const root = ref?.current ?? document
|
|
10
|
+
const nodes = root.querySelectorAll('[data-reveal]')
|
|
11
|
+
if (!nodes.length) return
|
|
12
|
+
|
|
13
|
+
const io = new IntersectionObserver(
|
|
14
|
+
(entries) => {
|
|
15
|
+
entries.forEach((e) => {
|
|
16
|
+
if (e.isIntersecting) {
|
|
17
|
+
e.target.classList.add('is-revealed')
|
|
18
|
+
io.unobserve(e.target)
|
|
19
|
+
}
|
|
20
|
+
})
|
|
21
|
+
},
|
|
22
|
+
{ threshold: 0.15, rootMargin: '0px 0px -10% 0px' },
|
|
23
|
+
)
|
|
24
|
+
|
|
25
|
+
nodes.forEach((n) => io.observe(n))
|
|
26
|
+
return () => io.disconnect()
|
|
27
|
+
}, [ref])
|
|
28
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { useEffect, useRef, useState } from 'react'
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Tracks which section id is currently in view. Borrowed pattern from vcap:
|
|
5
|
+
* IntersectionObserver with an edge-lock so first/last sections stay active
|
|
6
|
+
* when the user reaches the top/bottom of the page.
|
|
7
|
+
*/
|
|
8
|
+
export default function useScrollSpy(ids, { rootMargin = '-30% 0px -60% 0px', edgeOffset = 100 } = {}) {
|
|
9
|
+
const [activeId, setActiveId] = useState(null)
|
|
10
|
+
const edgeLockRef = useRef(null)
|
|
11
|
+
const key = ids.join(',')
|
|
12
|
+
|
|
13
|
+
useEffect(() => {
|
|
14
|
+
if (!ids.length) { setActiveId(null); return }
|
|
15
|
+
const elements = ids.map((id) => document.getElementById(id)).filter(Boolean)
|
|
16
|
+
if (!elements.length) return
|
|
17
|
+
|
|
18
|
+
const checkEdges = () => {
|
|
19
|
+
const atTop = window.scrollY < edgeOffset
|
|
20
|
+
const atBottom =
|
|
21
|
+
window.scrollY + window.innerHeight >=
|
|
22
|
+
document.documentElement.scrollHeight - edgeOffset * 0.8
|
|
23
|
+
if (atTop) {
|
|
24
|
+
edgeLockRef.current = 'top'
|
|
25
|
+
setActiveId(null)
|
|
26
|
+
} else if (atBottom) {
|
|
27
|
+
edgeLockRef.current = 'bottom'
|
|
28
|
+
setActiveId(ids[ids.length - 1])
|
|
29
|
+
} else {
|
|
30
|
+
edgeLockRef.current = null
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
const observer = new IntersectionObserver(
|
|
35
|
+
(entries) => {
|
|
36
|
+
if (edgeLockRef.current) return
|
|
37
|
+
const visible = entries
|
|
38
|
+
.filter((e) => e.isIntersecting)
|
|
39
|
+
.sort((a, b) => a.boundingClientRect.top - b.boundingClientRect.top)
|
|
40
|
+
if (visible[0]) setActiveId(visible[0].target.id)
|
|
41
|
+
},
|
|
42
|
+
{ rootMargin, threshold: 0 },
|
|
43
|
+
)
|
|
44
|
+
|
|
45
|
+
elements.forEach((el) => observer.observe(el))
|
|
46
|
+
window.addEventListener('scroll', checkEdges, { passive: true })
|
|
47
|
+
checkEdges()
|
|
48
|
+
|
|
49
|
+
return () => {
|
|
50
|
+
observer.disconnect()
|
|
51
|
+
window.removeEventListener('scroll', checkEdges)
|
|
52
|
+
}
|
|
53
|
+
}, [key, rootMargin, edgeOffset])
|
|
54
|
+
|
|
55
|
+
return activeId
|
|
56
|
+
}
|
package/src/index.js
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @kol/component - Canonical KOL design-system primitives
|
|
3
|
+
*
|
|
4
|
+
* Shared atoms/molecules consumed by both apps/web (via @kol/ui re-export)
|
|
5
|
+
* and apps/brand. Components emit canonical kol-* classes; CSS lives in
|
|
6
|
+
* @kol/theme (kol-components-*.css).
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
export { default as Divider } from './atoms/Divider.jsx'
|
|
10
|
+
export { default as DropdownTagFilter } from './molecules/DropdownTagFilter.jsx'
|
|
11
|
+
export { default as QuantityInput } from './molecules/QuantityInput.jsx'
|
|
12
|
+
export { default as QuantityStepper } from './molecules/QuantityStepper.jsx'
|
|
13
|
+
export { default as Pill } from './molecules/Pill.jsx'
|
|
14
|
+
export { default as ToggleCheckbox } from './atoms/ToggleCheckbox.jsx'
|
|
15
|
+
export { default as ToggleSwitch } from './atoms/ToggleSwitch.jsx'
|
|
16
|
+
export { default as ToggleBracket } from './molecules/ToggleBracket.jsx'
|
|
17
|
+
export { Icon } from '@kolkrabbi/kol-loader'
|
|
18
|
+
export { default as Tag } from './molecules/Tag.jsx'
|
|
19
|
+
export { default as Badge } from './molecules/Badge.jsx'
|
|
20
|
+
export { default as SectionLabel } from './molecules/SectionLabel.jsx'
|
|
21
|
+
export { default as Section } from './molecules/Section.jsx'
|
|
22
|
+
export { default as Button } from './atoms/Button.jsx'
|
|
23
|
+
export { default as Input } from './atoms/Input.jsx'
|
|
24
|
+
export { default as Slider } from './atoms/Slider.jsx'
|
|
25
|
+
export { default as Dropdown } from './molecules/Dropdown.jsx'
|
|
26
|
+
export { usePopover, PopoverPanel, Tooltip } from './molecules/Popover.jsx'
|
|
27
|
+
export { MenuItem, MenuDropdownItem, MenuDropdownDivider, MenuDropdownNest } from './molecules/MenuItem.jsx'
|
|
28
|
+
|
|
29
|
+
/* ── Folded from apps/brand (Phase 4 — brand is canonical, brand wins) ────── */
|
|
30
|
+
// atoms
|
|
31
|
+
export { default as Avatar } from './atoms/Avatar.jsx'
|
|
32
|
+
export { default as ColorSwatch } from './atoms/ColorSwatch.jsx'
|
|
33
|
+
export { default as Label } from './atoms/Label.jsx'
|
|
34
|
+
export { default as Stepper } from './atoms/Stepper.jsx'
|
|
35
|
+
export { default as Textarea } from './atoms/Textarea.jsx'
|
|
36
|
+
export { default as TransparentX } from './atoms/TransparentX.jsx'
|
|
37
|
+
// molecules
|
|
38
|
+
export { default as ContentFilters } from './molecules/ContentFilters.jsx'
|
|
39
|
+
export { default as LabeledControl } from './molecules/LabeledControl.jsx'
|
|
40
|
+
export { MenuPopover } from './molecules/MenuPopover.jsx'
|
|
41
|
+
export { ModalProvider, useModal } from './molecules/Modal.jsx'
|
|
42
|
+
export { default as PropertyInput } from './molecules/PropertyInput.jsx'
|
|
43
|
+
export { default as SegmentedToggle } from './molecules/SegmentedToggle.jsx'
|
|
44
|
+
export { default as ViewToggle } from './molecules/ViewToggle.jsx'
|
|
45
|
+
// primitives
|
|
46
|
+
export { Accordion, AccordionPanel } from './primitives/Accordion.jsx'
|
|
47
|
+
export { default as AssetPlaceholder } from './primitives/AssetPlaceholder.jsx'
|
|
48
|
+
export { default as Carousel } from './primitives/Carousel.jsx'
|
|
49
|
+
export { default as CodeBlock } from './primitives/CodeBlock.jsx'
|
|
50
|
+
export { default as ExitPreview } from './primitives/ExitPreview.jsx'
|
|
51
|
+
export { default as FullscreenOverlay } from './primitives/FullscreenOverlay.jsx'
|
|
52
|
+
export { default as Image } from './primitives/Image.jsx'
|
|
53
|
+
// graphics (SVG illustration loader — globs its own ./graphics/svg/**)
|
|
54
|
+
export { default as Graphic, GRAPHICS, GRAPHIC_RAW } from './graphics/Graphic.jsx'
|
|
55
|
+
// organisms
|
|
56
|
+
export { default as Table } from './organisms/Table.jsx'
|
|
57
|
+
// hooks
|
|
58
|
+
export { default as useReveal } from './hooks/useReveal.js'
|
|
59
|
+
export { default as useScrollSpy } from './hooks/useScrollSpy.js'
|