ssst-basic-template 1.0.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/App.js +36 -0
- package/README.md +47 -0
- package/app.json +29 -0
- package/assets/favicon.png +0 -0
- package/assets/splash.png +0 -0
- package/assets/ssst.svg +44 -0
- package/package.json +20 -0
package/App.js
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { View, Text, StyleSheet } from "react-native";
|
|
2
|
+
|
|
3
|
+
export default function App() {
|
|
4
|
+
return (
|
|
5
|
+
<View style={styles.container}>
|
|
6
|
+
<Text style={styles.title}>Sarajevo School of</Text>
|
|
7
|
+
<Text style={styles.title}>Science and Technology</Text>
|
|
8
|
+
<Text style={styles.subtitle}>React Native with Expo</Text>
|
|
9
|
+
</View>
|
|
10
|
+
);
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
const styles = StyleSheet.create({
|
|
14
|
+
container: {
|
|
15
|
+
flex: 1,
|
|
16
|
+
backgroundColor: "#333",
|
|
17
|
+
alignItems: "center",
|
|
18
|
+
justifyContent: "center",
|
|
19
|
+
},
|
|
20
|
+
title: {
|
|
21
|
+
fontSize: 24,
|
|
22
|
+
color: "white",
|
|
23
|
+
fontWeight: "bold",
|
|
24
|
+
textAlign: "center"
|
|
25
|
+
},
|
|
26
|
+
subtitle: {
|
|
27
|
+
fontSize: 18,
|
|
28
|
+
color: "white",
|
|
29
|
+
fontWeight: "bold",
|
|
30
|
+
textAlign: "center",
|
|
31
|
+
marginTop: 20,
|
|
32
|
+
borderTopColor: "white",
|
|
33
|
+
borderTopWidth: 1,
|
|
34
|
+
paddingTop: 20
|
|
35
|
+
},
|
|
36
|
+
});
|
package/README.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# My Universal React Project
|
|
2
|
+
|
|
3
|
+
<p>
|
|
4
|
+
<!-- iOS -->
|
|
5
|
+
<a href="https://itunes.apple.com/app/apple-store/id982107779">
|
|
6
|
+
<img alt="Supports Expo iOS" longdesc="Supports Expo iOS" src="https://img.shields.io/badge/iOS-4630EB.svg?style=flat-square&logo=APPLE&labelColor=999999&logoColor=fff" />
|
|
7
|
+
</a>
|
|
8
|
+
<!-- Android -->
|
|
9
|
+
<a href="https://play.google.com/store/apps/details?id=host.exp.exponent&referrer=blankexample">
|
|
10
|
+
<img alt="Supports Expo Android" longdesc="Supports Expo Android" src="https://img.shields.io/badge/Android-4630EB.svg?style=flat-square&logo=ANDROID&labelColor=A4C639&logoColor=fff" />
|
|
11
|
+
</a>
|
|
12
|
+
<!-- Web -->
|
|
13
|
+
<a href="https://docs.expo.dev/workflow/web/">
|
|
14
|
+
<img alt="Supports Expo Web" longdesc="Supports Expo Web" src="https://img.shields.io/badge/web-4630EB.svg?style=flat-square&logo=GOOGLE-CHROME&labelColor=4285F4&logoColor=fff" />
|
|
15
|
+
</a>
|
|
16
|
+
</p>
|
|
17
|
+
|
|
18
|
+
## Launch your own
|
|
19
|
+
|
|
20
|
+
[](https://launch.expo.dev/?github=https://github.com/expo/examples/tree/master/blank)
|
|
21
|
+
|
|
22
|
+
## 🚀 How to use
|
|
23
|
+
|
|
24
|
+
- Install packages with `yarn` or `npm install`.
|
|
25
|
+
- If you have native iOS code run `npx pod-install`
|
|
26
|
+
- Run `yarn start` or `npm run start` to start the bundler.
|
|
27
|
+
- Open the project in a React runtime to try it:
|
|
28
|
+
- iOS: [Client iOS](https://itunes.apple.com/app/apple-store/id982107779)
|
|
29
|
+
- Android: [Client Android](https://play.google.com/store/apps/details?id=host.exp.exponent&referrer=blankexample)
|
|
30
|
+
- Web: Any web browser
|
|
31
|
+
|
|
32
|
+
## Running/Modifying Native Code
|
|
33
|
+
|
|
34
|
+
You can generate native iOS and Android projects from your Expo config file (**app.json**/ **app.config.js**) by runnning `npx expo prebuild`. These native projects can then be compiled and run via XCode and Android Studio.
|
|
35
|
+
|
|
36
|
+
> 💡 Learn more about [native code in Expo](https://docs.expo.dev/workflow/customizing/)
|
|
37
|
+
|
|
38
|
+
## Publishing
|
|
39
|
+
|
|
40
|
+
- Deploy the native app to the App store and Play store using this guide: [Deployment](https://docs.expo.dev/distribution/app-stores/).
|
|
41
|
+
- Deploy the website using this guide: [Web deployment](https://docs.expo.dev/distribution/publishing-websites/).
|
|
42
|
+
|
|
43
|
+
## 📝 Notes
|
|
44
|
+
|
|
45
|
+
- Learn more about [Universal React](https://docs.expo.dev/).
|
|
46
|
+
- See what API and components are [available in the React runtimes](https://docs.expo.dev/versions/latest/).
|
|
47
|
+
- Find out more about developing apps and websites: [Guides](https://docs.expo.dev/guides/).
|
package/app.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"expo": {
|
|
3
|
+
"name": "ssst/basic-template",
|
|
4
|
+
"slug": "ssst-basic-template",
|
|
5
|
+
"version": "1.0.0",
|
|
6
|
+
"orientation": "portrait",
|
|
7
|
+
"icon": "./assets/splash.png",
|
|
8
|
+
"userInterfaceStyle": "light",
|
|
9
|
+
"newArchEnabled": true,
|
|
10
|
+
"splash": {
|
|
11
|
+
"image": "./assets/splash.png",
|
|
12
|
+
"resizeMode": "contain",
|
|
13
|
+
"backgroundColor": "#ffffff"
|
|
14
|
+
},
|
|
15
|
+
"ios": {
|
|
16
|
+
"supportsTablet": true
|
|
17
|
+
},
|
|
18
|
+
"android": {
|
|
19
|
+
"adaptiveIcon": {
|
|
20
|
+
"foregroundImage": "./assets/splash.png",
|
|
21
|
+
"backgroundColor": "#ffffff"
|
|
22
|
+
},
|
|
23
|
+
"edgeToEdgeEnabled": true
|
|
24
|
+
},
|
|
25
|
+
"web": {
|
|
26
|
+
"favicon": "./assets/favicon.png"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
Binary file
|
|
Binary file
|
package/assets/ssst.svg
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
<svg id="Group_9857" data-name="Group 9857" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="153.842" height="148.816" viewBox="0 0 153.842 148.816">
|
|
2
|
+
<defs>
|
|
3
|
+
<clipPath id="clip-path">
|
|
4
|
+
<path id="Path_272" data-name="Path 272" d="M20.909,76.031c0,37.9,29.35,68.628,65.556,68.628s65.556-30.726,65.556-68.628S122.671,7.4,86.465,7.4,20.909,38.128,20.909,76.031" transform="translate(-20.909 -7.402)" fill="none"/>
|
|
5
|
+
</clipPath>
|
|
6
|
+
<clipPath id="clip-path-2">
|
|
7
|
+
<rect id="Rectangle_8131" data-name="Rectangle 8131" width="153.842" height="148.816" fill="none"/>
|
|
8
|
+
</clipPath>
|
|
9
|
+
</defs>
|
|
10
|
+
<g id="Group_9837" data-name="Group 9837" transform="translate(11.847 4.194)">
|
|
11
|
+
<g id="Group_9836" data-name="Group 9836" clip-path="url(#clip-path)">
|
|
12
|
+
<rect id="Rectangle_8130" data-name="Rectangle 8130" width="153.842" height="148.816" transform="translate(-11.847 -4.194)" fill="#141c4e"/>
|
|
13
|
+
<path id="Path_249" data-name="Path 249" d="M86.638,144.617c36.087,0,65.33-30.62,65.33-68.39s-29.243-68.4-65.33-68.4-65.33,30.622-65.33,68.4S50.558,144.617,86.638,144.617Z" transform="translate(-21.082 -7.588)" fill="none" stroke="#fff" stroke-miterlimit="22.926" stroke-width="0.801"/>
|
|
14
|
+
<ellipse id="Ellipse_11" data-name="Ellipse 11" cx="66.169" cy="69.162" rx="66.169" ry="69.162" transform="translate(-0.792 -0.568)" fill="none" stroke="#fff" stroke-miterlimit="22.926" stroke-width="0.216"/>
|
|
15
|
+
<path id="Path_250" data-name="Path 250" d="M87.986,129.283c-27.248,0-49.342-23.116-49.342-51.648S60.738,25.988,87.986,25.988s49.335,23.122,49.335,51.647-22.085,51.648-49.335,51.648m0-118.189c-35.108,0-63.568,29.794-63.568,66.541s28.46,66.555,63.568,66.555,63.569-29.8,63.569-66.555-28.46-66.541-63.569-66.541" transform="translate(-22.43 -9.002)" fill="#fff"/>
|
|
16
|
+
<path id="Path_251" data-name="Path 251" d="M100.127,140.277c26.335,0,47.689-22.347,47.689-49.922s-21.353-49.93-47.689-49.93-47.7,22.355-47.7,49.93S73.785,140.277,100.127,140.277Z" transform="translate(-34.571 -21.715)" fill="none" stroke="#fff" stroke-miterlimit="22.926" stroke-width="0.585"/>
|
|
17
|
+
<path id="Path_252" data-name="Path 252" d="M144.557,51.2v67.68h-.029c-.225,8.549-6.432,15.98-15.8,19.919-1.762,5.06-7.925,8.8-15.27,8.8-7.287,0-13.407-3.683-15.227-8.686-9.513-3.908-15.851-11.4-16.076-20.034h-.022V51.2Z" transform="translate(-47.445 -26.386)" fill="#fff"/>
|
|
18
|
+
<path id="Path_253" data-name="Path 253" d="M142.341,123.345l.319,3.473c-1.493,10.2-12.7,13.908-17.894,15.068l-1.494,2.342c.928.334,10.108-3.75,12.167-5.2,0,0,2.269,1.371-3.184,6.461a11.425,11.425,0,0,1-8.817,3.379c.646,3.879,2.552,6.889,5.547,9.869-.05.023-.108.051-.166.079a10.016,10.016,0,0,1-3.075,4.286l-.051.036c-3.045-2.3-5-6.271-5.721-11.072-1-7.432.581-14.212,4.568-17.859-.094.074-.189.13-.291.2-4.814,3.386-6.8,12.306-5.249,18.925.9,3.806,3.22,8.063,6.577,9.9a17.389,17.389,0,0,1-20.651.007c3.552-1.718,6.011-6.155,6.94-10.1,1.545-6.6-.436-15.531-5.257-18.925-.093-.064-.2-.13-.29-.189,4,3.641,5.569,10.42,4.576,17.845-.739,4.967-2.806,9.056-6.033,11.319a10.075,10.075,0,0,1-3.139-4.278l-.044-.021a19.206,19.206,0,0,0,5.779-10.573c-.051,0-2.487.892-6.656-1.275-4.206-2.184-7.425-6.375-6.315-8.165a56.685,56.685,0,0,0,12.37,4.945c-.138-.13-1.494-2.342-1.494-2.342a44.992,44.992,0,0,1-11.595-4.735,16.821,16.821,0,0,1-5.743-7.708,9.45,9.45,0,0,1-.1-6.249c2.6,4.908,9.629,9.455,15.821,11.891a11.965,11.965,0,0,1-.421-2.495,38.676,38.676,0,0,1-14.908-10.753,9.861,9.861,0,0,1-1.921-6.446,6.075,6.075,0,0,1,1.262-3.284c2.574,5.111,7.635,9.324,14.089,11.8l.7-2.053c-8.034-2.979-15.2-10.165-15.8-14.726-.529-3.988.653-4.728.616-4.922,3,6.909,10.456,12.325,19.859,14.348a2.707,2.707,0,0,0,.117.3c-.022-.093-.036-.188-.058-.282.044.008.087.022.138.029a14.7,14.7,0,0,1-.175-2.3v-.123l-.2-.043a14.765,14.765,0,0,1,1.232-5.584l.015-.03a13.005,13.005,0,0,1,.551-1.21,9.635,9.635,0,0,1,4.184-4.125c.174-.066.333-.13.5-.189a6.518,6.518,0,0,1,3.1-.348l.051.007a4.789,4.789,0,0,1,4.082,3.335,4.511,4.511,0,0,1,.181.956.158.158,0,0,1,.058.007.709.709,0,0,1,.588.776.748.748,0,0,1-.247.486.9.9,0,0,0,.312.174,1.584,1.584,0,0,1,.921.957l-.051.015a1.37,1.37,0,0,0-1.269.057,1.027,1.027,0,0,1-.689.146.327.327,0,0,1-.073-.014c-.015-.008-.029-.008-.044-.015l-.007.007h-.022c-.711-.073-1.363.8-1.464,1.95,0,.023-.008.044-.008.074-.13,1.392.863,5.257,6.069,4.255a31.519,31.519,0,0,0,10.064-4.393c4.2-2.879,5.837-4.967,7.693-8.817,0,0,1.371,1.444.616,4.858-1.153,5.315-8,11.892-15.807,14.791.007.007.688,2.045.7,2.053s10.144-3.553,14.1-11.812a6.466,6.466,0,0,1,1.356,3.93c.145,2.646-2.176,9.846-16.939,16.553a16.438,16.438,0,0,1-.42,2.495c12.356-4.814,16.082-12.348,15.966-11.732" transform="translate(-49.327 -48.318)" fill="#fff"/>
|
|
19
|
+
<path id="Path_254" data-name="Path 254" d="M86.562,57.459h25.683a2.426,2.426,0,0,1,2.6,2.538h1.313a2.347,2.347,0,0,1,2.61-2.538h24.959V78.922a19.183,19.183,0,0,1-1.067,2.378V58.858h-.5V82.184a21.271,21.271,0,0,1-1.422,2.139V60.345h-.493V84.832h.116a26.073,26.073,0,0,1-10.4,7.7c-4.032,1.464-6.251,2.125-7.86,1.913-.79-.1-2.132-.521-2.038-1.819a.993.993,0,0,1,.726-1.009,5.916,5.916,0,0,1,1.131-.442,1.687,1.687,0,0,1,1.175.051.676.676,0,0,0,.224.094.3.3,0,0,0,.218.021.292.292,0,0,0,.036-.007.712.712,0,0,0,.406-.217.675.675,0,0,0,.181-.283,1.15,1.15,0,0,0,.043-.225.87.87,0,0,0-.065-.419c-.319-.914-1.08-.856-1.363-1.3-.377-.682.152-.726-.043-1.307a.894.894,0,0,0-.175-.325l-.007-.007a.634.634,0,0,0-.406-.224c-.015,0-.029-.007-.044-.007a.72.72,0,0,0-.181.007,7.13,7.13,0,0,0-6.083-5.149,6.748,6.748,0,0,0-3.154.428l-.022.006a6.2,6.2,0,0,0-1.19.617,14.049,14.049,0,0,0-1.327,1.124,11.675,11.675,0,0,0-1.739,2.37,14.418,14.418,0,0,0-1.821,8.193c-7.2-1.7-13.182-5.4-16.807-10.223h.1V60.149h-.5V83.867a20.774,20.774,0,0,1-1.24-2.023V58.713h-.5V80.895a18.64,18.64,0,0,1-1.073-2.973Z" transform="translate(-49.364 -29.098)" fill="#fff"/>
|
|
20
|
+
<path id="Path_255" data-name="Path 255" d="M85.927,56.228H111.6a2.434,2.434,0,0,1,2.61,2.537h1.32a2.344,2.344,0,0,1,2.6-2.537h24.957V77.69a19.55,19.55,0,0,1-1.066,2.386V57.635h-.5V80.961a20.566,20.566,0,0,1-1.422,2.132V59.114h-.493V83.6h.116a25.963,25.963,0,0,1-10.412,7.7c-4.025,1.48-6.243,2.125-7.853,1.922-.79-.1-2.139-.53-2.044-1.82a1,1,0,0,1,.725-1.014,7.563,7.563,0,0,1,1.13-.444,1.754,1.754,0,0,1,1.182.058.84.84,0,0,0,.225.095.292.292,0,0,0,.217.015.055.055,0,0,0,.037-.007.641.641,0,0,0,.406-.21.741.741,0,0,0,.181-.291,1.023,1.023,0,0,0,.044-.217.847.847,0,0,0-.073-.429c-.32-.906-1.08-.848-1.364-1.29-.377-.682.16-.733-.036-1.312a.744.744,0,0,0-.181-.32v-.007c0-.006,0-.006-.008-.006a.618.618,0,0,0-.4-.219.114.114,0,0,0-.044-.006.58.58,0,0,0-.189.006,7.145,7.145,0,0,0-6.076-5.154c-4.437-.457-7.286,3.625-7.809,4.561a13.908,13.908,0,0,0-1.871,8.033c-7.193-1.7-12.754-5.249-16.379-10.07h.1V59.02h-.5V82.636A19.927,19.927,0,0,1,87.5,80.619V57.6h-.493V79.656a17.289,17.289,0,0,1-1.08-2.965ZM141.7,103.119l.326,3.474c-1.5,10.208-12.7,13.906-17.9,15.067l-1.5,2.335c.935.34,10.122-3.742,12.182-5.192,0,0,2.262,1.371-3.19,6.461a11.413,11.413,0,0,1-8.817,3.371c.645,3.879,2.552,6.9,5.547,9.876-.059.021-.109.051-.167.071a9.973,9.973,0,0,1-3.074,4.286l-.044.051c-3.052-2.313-5.01-6.279-5.728-11.079-.993-7.432.58-14.22,4.568-17.86-.095.066-.189.131-.29.2-4.814,3.393-6.8,12.311-5.25,18.925.892,3.806,3.227,8.07,6.584,9.9a17.406,17.406,0,0,1-20.658.007c3.553-1.718,6.01-6.149,6.939-10.1,1.552-6.613-.435-15.531-5.257-18.925-.095-.066-.189-.13-.29-.2,3.994,3.648,5.568,10.428,4.575,17.86-.74,4.96-2.806,9.048-6.033,11.3a10.071,10.071,0,0,1-3.139-4.27.1.1,0,0,0-.044-.015,19.337,19.337,0,0,0,5.787-10.579c-.059,0-2.495.884-6.671-1.277-4.2-2.182-7.418-6.372-6.3-8.171a56.655,56.655,0,0,0,12.363,4.958c-.13-.137-1.494-2.342-1.494-2.342a45.1,45.1,0,0,1-11.593-4.741,16.789,16.789,0,0,1-5.742-7.708,9.438,9.438,0,0,1-.1-6.244c2.6,4.9,9.622,9.449,15.822,11.885a12.405,12.405,0,0,1-.42-2.5,38.511,38.511,0,0,1-14.9-10.745,9.824,9.824,0,0,1-1.929-6.44,6.175,6.175,0,0,1,1.254-3.3c2.581,5.118,7.649,9.324,14.1,11.811l.688-2.06C93.866,98.254,86.71,91.061,86.1,86.5c-.53-3.989.645-4.72.623-4.916,3,6.911,10.449,12.32,19.846,14.342a17.889,17.889,0,0,0-.123-2.422,14.635,14.635,0,0,1,1.189-5.584l.007-.028c.188-.429.334-.8.551-1.211a9.688,9.688,0,0,1,4.2-4.126c.16-.065.319-.138.493-.195a6.528,6.528,0,0,1,3.1-.342l.051.007a4.8,4.8,0,0,1,4.082,3.335,4.508,4.508,0,0,1,.174.965h.073a.7.7,0,0,1,.573.776.716.716,0,0,1-.24.486,1.035,1.035,0,0,0,.3.174,1.572,1.572,0,0,1,.928.963l-.051.007a1.368,1.368,0,0,0-1.269.059,1.006,1.006,0,0,1-.682.145.257.257,0,0,1-.079-.015c-.014-.007-.029-.007-.044-.015v.007h-.029c-.71-.079-1.371.791-1.465,1.935v.095c-.13,1.386.856,5.251,6.062,4.25A31.651,31.651,0,0,0,134.442,90.8a19.524,19.524,0,0,0,7.686-8.809s1.362,1.436.623,4.85c-1.167,5.309-8.005,11.892-15.807,14.785,0,.007.688,2.053.688,2.061s10.137-3.555,14.1-11.812a6.511,6.511,0,0,1,1.356,3.929c.146,2.64-2.168,9.848-16.93,16.554a17.636,17.636,0,0,1-.428,2.495c12.355-4.814,16.082-12.348,15.966-11.732M117.315,54.785c-2.218,0-2.378,2.355-2.378,2.355a2.393,2.393,0,0,0-2.407-2.355H84.868l-.007,65.366h.022c.218,8.121,6.649,15.162,15.59,18.838,1.711,4.706,7.468,8.164,14.32,8.164,6.9,0,12.7-3.517,14.357-8.274,8.81-3.7,14.807-10.686,15.016-18.728h.022V54.785Z" transform="translate(-48.627 -27.939)" fill="#141c4e"/>
|
|
21
|
+
<path id="Path_256" data-name="Path 256" d="M137.259,109.71a.824.824,0,0,0,.877-.8.863.863,0,0,0-.725-.958.83.83,0,0,0-.878.8.857.857,0,0,0,.726.958" transform="translate(-71.021 -50.982)" fill="#141c4e"/>
|
|
22
|
+
<path id="Path_257" data-name="Path 257" d="M106.171,71.357c0,.327-.007.327.32.327h.885c.848,0,.631-.754.826-.754.065,0,.087.108.087.181,0,.327-.014.645-.014.935,0,.247.014.486.014.74,0,.079-.036.123-.087.123-.254,0,.022-.827-.666-.827h-1.212c-.174,0-.152.16-.152.3V74.1c0,.544-.065.769.631.769a2.417,2.417,0,0,0,2.277-.956c.051,0,.066.087.066.115a1.578,1.578,0,0,1-.406.9c-.269.334-.45.312-.805.312-.63,0-1.247-.065-1.87-.044-.334.007-.675.044-1,.044-.072,0-.123-.022-.123-.095.015-.108.1-.087.355-.239.218-.109.232-.37.232-.806V69.849c0-.413,0-.863-.443-.942-.057-.015-.246-.036-.246-.146,0-.079.05-.115.29-.115,1.552,0,1.972.044,2.32.044.16,0,.922-.044,1.168-.044.065,0,.087.093.087.2,0,1.044-.116,1.109-.167,1.109-.195,0-.065-.442-.195-.659-.211-.312-1.067-.261-1.393-.261-.784,0-.776-.036-.776.588Z" transform="translate(-57.285 -33.946)" fill="#141c4e"/>
|
|
23
|
+
<path id="Path_258" data-name="Path 258" d="M116.339,70.98c.116.21.167.319.218.319s.109-.125.246-.349l.732-1.2a1.591,1.591,0,0,0,.269-.609c0-.275-.45-.2-.45-.413,0-.074.058-.08.109-.08.2-.007.2.044.754.044a2.444,2.444,0,0,0,.616-.044c.058,0,.073.057.073.087,0,.194-.341-.007-.8.754l-1.247,2.008a.426.426,0,0,0-.066.181.913.913,0,0,0,.1.239l1.422,2.545c.428.763.725.378.725.674,0,.089-.073.1-.138.1-.124,0-.42-.044-.747-.044-.312,0-.616.044-.733.044-.08,0-.109-.022-.109-.095,0-.188.348-.159.348-.4,0-.122-.022-.2-.181-.471l-1.023-1.828c-.028-.043-.044-.087-.087-.087-.022,0-.057.022-.108.1l-.892,1.507a2.056,2.056,0,0,0-.355.748c0,.34.522.2.522.427,0,.058-.051.095-.131.095-.21,0-.435-.044-.79-.044-.232,0-.471.044-.7.044-.073,0-.095-.036-.095-.087,0-.21.479-.123.747-.558l1.516-2.452a.609.609,0,0,0,.072-.16.7.7,0,0,0-.072-.181l-1.277-2.167c-.6-1.023-1-.625-1-.87a.1.1,0,0,1,.1-.116,8.7,8.7,0,0,0,.9.044c.254,0,.522-.044.769-.044.073,0,.138.029.138.123,0,.123-.363.079-.363.348a3.181,3.181,0,0,0,.406.827Z" transform="translate(-61.173 -33.946)" fill="#141c4e"/>
|
|
24
|
+
<path id="Path_259" data-name="Path 259" d="M129.58,73.542c-.029-.189.014-.291.094-.291.116,0,.116.109.16.3a1.8,1.8,0,0,0,1.718,1.392,1.444,1.444,0,0,0,1.538-1.464c0-1.79-3.321-.791-3.321-3.213a1.7,1.7,0,0,1,1.82-1.754,2.586,2.586,0,0,1,1.371.342c.073,0,.087-.1.174-.1.051,0,.087.021.094.123l.13,1.269c.008.072-.007.138-.095.138s-.144-.2-.173-.283a1.587,1.587,0,0,0-1.565-1.2A1.206,1.206,0,0,0,130.2,70c0,1.747,3.32.732,3.32,3.292,0,.783-.486,1.943-2.342,1.943a2.03,2.03,0,0,1-1.393-.5Z" transform="translate(-68.005 -33.89)" fill="#141c4e"/>
|
|
25
|
+
<path id="Path_260" data-name="Path 260" d="M141.449,75.238c1.827,0,3.1-1.349,3.1-3.437a3.048,3.048,0,0,0-2.959-3.284,3.115,3.115,0,0,0-3.009,3.335c0,1.959,1.087,3.386,2.864,3.386m-.109-6.418c1.6,0,2.611,1.639,2.611,3.335,0,1.719-.957,2.807-2.161,2.807-1.624,0-2.611-1.667-2.611-3.386,0-1.464.791-2.755,2.161-2.755" transform="translate(-71.912 -33.89)" fill="#141c4e"/>
|
|
26
|
+
<path id="Path_261" data-name="Path 261" d="M152.14,74.1c0,.544-.065.769.623.769a2.406,2.406,0,0,0,2.277-.956c.058,0,.066.087.066.115a1.529,1.529,0,0,1-.406.9c-.269.334-.442.312-.805.312-.623,0-1.246-.065-1.87-.044-.326.007-.667.044-1,.044-.074,0-.116-.022-.116-.095.014-.108.087-.087.355-.239.218-.109.232-.37.232-.806V69.37c0-.478-.69-.42-.69-.6,0-.1.051-.123.16-.123.174,0,.428.044.834.044.464,0,.661-.044.783-.044s.159.021.159.13c0,.217-.6-.015-.6.8Z" transform="translate(-77.208 -33.946)" fill="#141c4e"/>
|
|
27
|
+
<path id="Path_262" data-name="Path 262" d="M162.891,75.238c1.828,0,3.1-1.349,3.1-3.437a3.047,3.047,0,0,0-2.958-3.284,3.119,3.119,0,0,0-3.016,3.335c0,1.959,1.094,3.386,2.87,3.386m-.108-6.418c1.6,0,2.61,1.639,2.61,3.335,0,1.719-.957,2.807-2.154,2.807-1.624,0-2.618-1.667-2.618-3.386,0-1.464.783-2.755,2.161-2.755" transform="translate(-81.202 -33.89)" fill="#141c4e"/>
|
|
28
|
+
<path id="Path_263" data-name="Path 263" d="M105.941,89.214a4.054,4.054,0,0,1,.254.886c0,.362-.492.268-.492.486,0,.094.13.094.181.094.224,0,.449-.043.667-.043.333,0,.666.043,1.007.043.058,0,.116,0,.116-.08,0-.231-.486-.029-.725-.456a7.656,7.656,0,0,1-.413-1.059l-1.7-4.794c-.022-.071-.079-.34-.173-.34s-.131.153-.617,1.32l-1.95,4.735c-.218.529-.6.376-.6.573,0,.058.022.1.08.1.217,0,.427-.043.645-.043s.465.043.7.043c.108,0,.224.028.224-.145,0-.24-.588.044-.588-.61a1.122,1.122,0,0,1,.059-.325l.529-1.3c.073-.2.225-.2.378-.2h1.8c.232,0,.283.138.363.355ZM104.4,85.27c.05-.117.087-.117.123,0l.812,2.232c.036.124.044.189-.13.189h-1.624c-.1,0-.167-.036-.1-.167Z" transform="translate(-55.837 -40.579)" fill="#141c4e"/>
|
|
29
|
+
<path id="Path_264" data-name="Path 264" d="M113.683,89.828c0,.884-.581.652-.581.863,0,.058.015.094.08.094s.849-.043.921-.043c.421,0,.834.043,1.255.043,2.27,0,3.154-1.479,3.154-3.618a2.961,2.961,0,0,0-2.871-2.973c-.7,0-1.233.051-1.769.051-.254,0-.486-.051-.747-.051a.108.108,0,0,0-.108.094c0,.261.667-.043.667.907Zm.652-4.814c0-.436.037-.58.8-.58,1.567.007,2.77,1.175,2.77,3.241,0,2.153-1.1,2.856-2.269,2.856a1.841,1.841,0,0,1-1.254-.42,1.968,1.968,0,0,1-.051-.674Z" transform="translate(-60.83 -40.685)" fill="#141c4e"/>
|
|
30
|
+
<path id="Path_265" data-name="Path 265" d="M126.929,89.1c-.037-.189.006-.291.087-.291.117,0,.117.117.16.306A1.805,1.805,0,0,0,128.9,90.5a1.445,1.445,0,0,0,1.537-1.471c0-1.785-3.328-.784-3.328-3.205a1.691,1.691,0,0,1,1.82-1.748,2.676,2.676,0,0,1,1.378.334c.065,0,.087-.1.166-.1.051,0,.095.023.095.13l.13,1.262c.007.081-.007.138-.087.138s-.152-.188-.174-.275a1.582,1.582,0,0,0-1.566-1.211,1.212,1.212,0,0,0-1.334,1.211c0,1.748,3.328.725,3.328,3.292,0,.776-.493,1.943-2.35,1.943a2.017,2.017,0,0,1-1.384-.507Z" transform="translate(-66.854 -40.634)" fill="#141c4e"/>
|
|
31
|
+
<path id="Path_266" data-name="Path 266" d="M137.629,90.8a3.109,3.109,0,0,0,3.1-3.436,3.046,3.046,0,0,0-2.967-3.286,3.109,3.109,0,0,0-3.009,3.329c0,1.957,1.095,3.392,2.871,3.392m-.1-6.416c1.595,0,2.6,1.638,2.6,3.328,0,1.718-.957,2.813-2.154,2.813-1.624,0-2.618-1.66-2.618-3.385,0-1.473.79-2.756,2.168-2.756" transform="translate(-70.253 -40.635)" fill="#141c4e"/>
|
|
32
|
+
<path id="Path_267" data-name="Path 267" d="M147.174,89.646c0,.544-.065.769.617.769a2.459,2.459,0,0,0,2.291-.958c.05,0,.058.094.058.117a1.618,1.618,0,0,1-.406.905c-.269.326-.449.305-.8.305-.623,0-1.248-.058-1.863-.043-.333.014-.682.043-1.008.043-.073,0-.124-.015-.124-.087.022-.117.095-.095.363-.24.21-.116.232-.377.232-.812v-4.72c0-.485-.69-.421-.69-.6,0-.1.058-.13.159-.13.174,0,.428.05.827.05.471,0,.668-.05.79-.05s.16.028.16.138c0,.217-.6-.023-.6.789Z" transform="translate(-75.056 -40.685)" fill="#141c4e"/>
|
|
33
|
+
<path id="Path_268" data-name="Path 268" d="M155.173,86.919c0,.306-.015.306.312.306h.885c.856,0,.637-.741.826-.741.073,0,.095.1.095.181,0,.32-.022.639-.022.935,0,.24.022.487.022.74,0,.079-.037.116-.095.116-.246,0,.029-.812-.66-.812h-1.211c-.173,0-.152.153-.152.291v1.711c0,.544-.065.769.623.769a2.418,2.418,0,0,0,2.277-.958c.065,0,.065.095.065.117a1.569,1.569,0,0,1-.406.905c-.269.326-.442.306-.8.306-.623,0-1.24-.059-1.871-.044-.326.014-.667.044-.993.044-.08,0-.13-.015-.13-.087.022-.117.1-.094.363-.24.217-.116.231-.377.231-.812V85.4c0-.421,0-.87-.45-.942-.065-.021-.239-.043-.239-.153,0-.071.051-.115.282-.115,1.552,0,1.98.051,2.328.051.16,0,.914-.051,1.168-.051.065,0,.08.095.08.21,0,1.029-.116,1.1-.167,1.1-.188,0-.065-.443-.188-.661-.219-.317-1.066-.261-1.4-.261-.784,0-.768-.028-.768.587Z" transform="translate(-78.523 -40.685)" fill="#141c4e"/>
|
|
34
|
+
<path id="Path_269" data-name="Path 269" d="M168.03,89.93c.044.782.645.442.645.761,0,.095-.1.095-.188.095-.16,0-.449-.044-.776-.044-.254,0-.515.044-.718.044-.073,0-.095-.044-.095-.081,0-.282.515-.079.508-.767l-.073-3.6c0-.225-.044-.363-.1-.363s-.13.087-.2.275l-1.7,3.924c-.036.086-.167.457-.247.457s-.145-.2-.167-.261l-1.747-4.14c-.022-.079-.065-.109-.095-.109s-.057.051-.057.145l-.1,3.256c-.036,1.239.739.826.739,1.16,0,.095-.093.1-.2.1s-.478-.044-.725-.044c-.421,0-.559.044-.7.044-.065,0-.087-.044-.087-.11,0-.319.522.066.588-.907.094-1.514.189-2.5.189-3.487,0-2.182-.776-1.667-.776-1.986,0-.074.065-.1.138-.1.152,0,.3.051.457.051.138,0,.29-.051.435-.051.116,0,.13.159.174.268l1.943,4.728c.093.2.123.276.181.276s.123-.2.253-.5l1.943-4.444c.058-.11.124-.334.217-.327s.348.051.385.051c.2,0,.268-.051.4-.051.05,0,.08.058.08.116,0,.3-.653-.093-.623,1.009Z" transform="translate(-82.034 -40.685)" fill="#141c4e"/>
|
|
35
|
+
<path id="Path_270" data-name="Path 270" d="M135.657,233.972a1.584,1.584,0,0,0,1.686-1.532,1.658,1.658,0,0,0-1.394-1.841,1.594,1.594,0,0,0-1.686,1.532,1.646,1.646,0,0,0,1.394,1.841" transform="translate(-70.035 -104.136)" fill="#141c4e"/>
|
|
36
|
+
<path id="Path_271" data-name="Path 271" d="M101.985,138.586l-.547,2.257c-.04.164-.072.306-.1.422a.763.763,0,0,0-.022.28.21.21,0,0,0,.2.176l.363.051.043.214q-.417.057-.85.137t-.81.17l-.05-.2.363-.225a.45.45,0,0,0,.186-.206,2.309,2.309,0,0,0,.105-.31l.847-3.195-.237-1.454c-.031-.191-.061-.365-.087-.52s-.052-.3-.075-.425a.17.17,0,0,0-.16-.139l-.506-.093-.042-.2q.541-.084,1-.169c.312-.057.643-.124.995-.2l.049.2-.483.286a.158.158,0,0,0-.079.167c.018.128.039.27.063.429s.053.334.084.525l.22,1.353,1.826,2.668a3.477,3.477,0,0,0,.3.378.475.475,0,0,0,.269.137l.37.07.041.2q-.353.045-.947.155c-.344.063-.7.136-1.067.217l-.049-.2.342-.19a.23.23,0,0,0,.1-.092.183.183,0,0,0,.016-.117.665.665,0,0,0-.1-.236c-.057-.091-.123-.194-.2-.311Zm5.816.31.139-.079.628,1.118a2.872,2.872,0,0,0,.894-.148,1.816,1.816,0,0,0,1.2-1.285,4.118,4.118,0,0,0-.147-2.336,3.856,3.856,0,0,0-1.245-2.007,1.788,1.788,0,0,0-1.771-.288,2.205,2.205,0,0,0-.6.321l.38,1.231c.047.153.091.293.13.419s.078.239.113.342c.027.079.072.12.136.122l.513.019.069.2q-.482.153-.922.307t-.857.315l-.079-.192.357-.289a.167.167,0,0,0,.052-.177c-.036-.124-.071-.249-.11-.378s-.08-.265-.126-.413l-.456-1.477.013-.039a5.292,5.292,0,0,1,1.32-.712,2.714,2.714,0,0,1,2.335.134,3.48,3.48,0,0,1,1.508,2.125,4.058,4.058,0,0,1-.01,2.837,3.024,3.024,0,0,1-1.9,1.686,4.752,4.752,0,0,1-1.308.248l-.035-.029Zm6.125-3.832a4.453,4.453,0,0,1-.446-2.781,2.713,2.713,0,0,1,1.486-1.928,2.309,2.309,0,0,1,2.2-.11,3.867,3.867,0,0,1,1.709,1.95,4.237,4.237,0,0,1,.424,2.743,2.754,2.754,0,0,1-1.5,1.886,2.348,2.348,0,0,1-2.192.139,3.708,3.708,0,0,1-1.686-1.9m4.252-2.32a4.407,4.407,0,0,0-1.473-1.925,1.6,1.6,0,0,0-1.7-.041,1.691,1.691,0,0,0-.971,1.367,4.755,4.755,0,0,0,.587,2.367,4.332,4.332,0,0,0,1.429,1.875,1.593,1.593,0,0,0,1.709.017,1.684,1.684,0,0,0,.982-1.372,4.639,4.639,0,0,0-.563-2.287m5.8-1.384-1.962-3.351q-.268-.458-.535-.9l-1.611,1.067.216,1.373-.131.127-.792-1.525,0-.042q.863-.554,1.591-1.036l.831-.55q.4-.266.817-.553l.116.169-.318.421a.164.164,0,0,0-.014.187c.062.111.132.236.21.372s.167.287.263.452l1.955,3.342c.082.141.156.266.223.377s.129.213.184.3a.153.153,0,0,0,.161.088l.5-.111.11.173q-.436.266-.831.527t-.811.56l-.116-.168.321-.423a.158.158,0,0,0,.011-.185c-.054-.1-.134-.239-.24-.424l-.156-.269m2.412-4.034a4.355,4.355,0,0,1-1.05-2.592,2.813,2.813,0,0,1,1.016-2.245,2.342,2.342,0,0,1,2.115-.658,3.712,3.712,0,0,1,2.093,1.467,4.148,4.148,0,0,1,1.019,2.56,2.854,2.854,0,0,1-1.036,2.207,2.38,2.38,0,0,1-2.1.684,3.552,3.552,0,0,1-2.058-1.423M130.011,124a4.224,4.224,0,0,0-1.858-1.5,1.608,1.608,0,0,0-1.661.386,1.748,1.748,0,0,0-.641,1.572,4.618,4.618,0,0,0,1.094,2.153,4.154,4.154,0,0,0,1.8,1.465,1.607,1.607,0,0,0,1.665-.412,1.741,1.741,0,0,0,.65-1.58A4.521,4.521,0,0,0,130.011,124m6.788-4.619-2.75-2.61c-.267-.254-.492-.463-.673-.627-.066-.059-.125-.07-.181-.033l-.427.256-.159-.139c.224-.252.4-.46.543-.626s.312-.379.528-.652l.156.127-.193.5a.162.162,0,0,0,.036.184c.18.178.4.4.672.649l2.761,2.62q.34.323.57.53a.149.149,0,0,0,.178.037l.454-.257.152.132q-.348.386-.542.617a3.555,3.555,0,0,0-.223.3l-5.751-.794,2.628,2.495q.331.314.575.534a.138.138,0,0,0,.173.02l.423-.255.159.139q-.346.382-.552.629c-.139.165-.311.381-.518.648l-.156-.127.194-.516a.174.174,0,0,0-.054-.184q-.219-.219-.56-.543l-3.808-3.614.191-.285Zm3.151-8.122-1.469-1.032q-.45-.316-.76-.523a.14.14,0,0,0-.185,0l-.372.29-.171-.1c.178-.27.352-.541.523-.816s.343-.562.52-.865l.173.1-.124.524a.16.16,0,0,0,.059.177c.2.149.455.329.754.538l3.087,2.169c.253.178.465.325.635.438a.15.15,0,0,0,.182.007l.414-.325.168.108q-.292.435-.548.847c-.172.276-.337.554-.493.83l-.175-.1.112-.488a.147.147,0,0,0-.062-.173q-.271-.2-.639-.459l-1.289-.905-1.563,2.518,1.289.905q.369.259.648.445a.131.131,0,0,0,.175-.007l.371-.291.168.108q-.278.412-.533.823t-.508.855l-.172-.1.122-.539a.169.169,0,0,0-.079-.174q-.247-.184-.627-.45l-3.088-2.169c-.3-.21-.554-.386-.761-.525a.137.137,0,0,0-.176.01l-.4.319-.168-.108q.3-.449.552-.863c.171-.275.333-.546.489-.815l.172.1-.108.484a.163.163,0,0,0,.073.182q.3.22.751.537l1.469,1.032Zm3.578-3.174.042-.162,1.209.265a3.366,3.366,0,0,0,.5-.781,1.947,1.947,0,0,0-.074-1.8,3.529,3.529,0,0,0-1.606-1.435,3.169,3.169,0,0,0-2.192-.354,2.11,2.11,0,0,0-1.448,1.308,3.855,3.855,0,0,0-.3,1.384l-.206-.052a3.018,3.018,0,0,1,.167-1.955,2.615,2.615,0,0,1,1.675-1.559,3.3,3.3,0,0,1,2.475.313,3.6,3.6,0,0,1,1.888,1.938,3.275,3.275,0,0,1-.113,2.558,5.488,5.488,0,0,1-.738,1.215l-.045.01Zm5.151-8.966-.312.952q-.287.875-.589,1.858l-.043.01-1.258-.721.02-.168,1.081.128.592-1.807L145.8,98.5l-.117.356q-.133.407-.288.91a.153.153,0,0,0,.066.175l.534.35-.061.216c-.4-.157-.695-.271-.886-.342s-.48-.174-.88-.313l.052-.219.637.079c.082.007.134-.019.156-.078q.175-.506.31-.916l.115-.353-1.57-.582q-.478-.178-.947-.342l-.615,1.878.939.884-.023.187-1.472-.641-.022-.039q.344-1.007.626-1.865l.305-.933q.156-.474.309-.976l.19.054v.54a.157.157,0,0,0,.1.155c.114.045.242.1.383.15s.3.112.471.176l3.494,1.3.4.146.321.112a.151.151,0,0,0,.178-.039l.326-.423.188.06q-.184.5-.336.965m-4.766-7.574q.087-.5.178-1.113l.2.022.093.642a.145.145,0,0,0,.121.133c.226.05.516.11.87.179l4.479.876.249-1.439-1.135-.6,0-.169,1.623.209.032.035q-.191,1-.35,1.917l-.189,1.091q-.157.914-.314,1.931l-.041.016-1.53-.564,0-.169,1.273-.022.249-1.439-4.479-.876q-.531-.1-.873-.162a.138.138,0,0,0-.158.078l-.3.565-.194-.031q.123-.628.207-1.114M145.328,81c-.029.162-.048.321-.06.477s-.018.312-.022.469a2.014,2.014,0,0,0,.669,1.683,3.439,3.439,0,0,0,2.159.631,3.379,3.379,0,0,0,2.122-.483,2.05,2.05,0,0,0,.728-1.7c0-.125,0-.262,0-.414s-.01-.32-.019-.511Zm-.39-.411q.013-.5.011-1.028l.2-.01.156.514a.146.146,0,0,0,.139.116c.121.006.258.013.407.019s.318.01.5.015l3.7.1c.156,0,.294.008.419.01s.239,0,.338,0a.156.156,0,0,0,.159-.095l.19-.508.2,0q-.031.535-.044,1.039c-.007.276-.006.542,0,.8s.011.52,0,.791a2.56,2.56,0,0,1-2.96,2.824,3.89,3.89,0,0,1-2.6-.881,2.852,2.852,0,0,1-.878-2.3c.006-.269.017-.507.033-.717s.028-.441.034-.694m4.379-8.6-3.654.509c-.355.05-.652.093-.886.132-.084.015-.131.056-.142.124l-.1.511-.2.037c-.033-.345-.063-.626-.09-.846s-.066-.5-.119-.851l.193-.042.229.482a.145.145,0,0,0,.154.091c.245-.028.546-.067.9-.117l3.669-.511q.452-.063.75-.113a.16.16,0,0,0,.142-.12l.113-.534.194-.036q.047.533.084.84.023.185.065.372L146.3,76.028l3.492-.487c.294-.041.544-.079.756-.114a.147.147,0,0,0,.127-.126l.095-.507.2-.037c.031.352.06.639.087.856s.068.5.122.842l-.193.042-.24-.493a.153.153,0,0,0-.167-.077c-.2.022-.45.054-.753.1l-5.06.7-.078-.34Zm-3.794-6.858.45,1.638,2.2-1.525Zm3.909.161-4.866,3.431a1.692,1.692,0,0,0-.36.308.508.508,0,0,0-.1.283l-.02.411-.186.067c-.087-.351-.171-.674-.252-.971s-.186-.658-.308-1.066l.184-.075.226.339a.307.307,0,0,0,.1.093.174.174,0,0,0,.125,0A.965.965,0,0,0,144.2,68c.088-.058.2-.135.347-.235l1.07-.74-.527-1.917-1.284-.054-.426-.009a.786.786,0,0,0-.242.024.161.161,0,0,0-.1.071.336.336,0,0,0-.033.134l-.016.406-.2.07c-.094-.379-.175-.688-.24-.926s-.144-.505-.233-.8l.183-.079.246.36a.407.407,0,0,0,.223.172,1.887,1.887,0,0,0,.386.053l5.9.371Zm-3.711-10.378.4.914q.368.841.794,1.769l-.024.039-1.374.416-.1-.135.86-.71-.759-1.735L143.243,56.6l.15.342q.171.391.389.867a.137.137,0,0,0,.162.075l.612-.144.1.2c-.389.183-.676.321-.86.411s-.458.232-.836.428l-.107-.2.509-.416a.149.149,0,0,0,.06-.172q-.2-.493-.377-.887l-.148-.338-1.508.747q-.46.228-.9.457l.789,1.8,1.253-.062.106.152-1.476.631-.041-.012q-.412-.977-.773-1.8l-.392-.895c-.133-.3-.272-.614-.417-.929l.172-.1.355.386a.141.141,0,0,0,.173.037c.111-.052.236-.111.372-.177s.289-.141.454-.223l3.354-1.661c.141-.07.267-.133.379-.19s.215-.11.3-.158a.166.166,0,0,0,.1-.159l-.043-.546.175-.1c.13.329.26.642.391.941M142.48,51.92l-.1-.128.888-.912a3.432,3.432,0,0,0-.325-.879,1.726,1.726,0,0,0-1.435-.95,3.313,3.313,0,0,0-2.021.6,3.486,3.486,0,0,0-1.512,1.724,2.324,2.324,0,0,0,.2,2.011,3.606,3.606,0,0,0,.906,1.042l-.156.151a2.723,2.723,0,0,1-1.422-1.251,2.875,2.875,0,0,1-.263-2.351,3.658,3.658,0,0,1,1.641-2,3.313,3.313,0,0,1,2.571-.562,2.937,2.937,0,0,1,1.92,1.544,5.652,5.652,0,0,1,.526,1.334l-.018.045Zm-6.295-10.078-2.865,2.467q-.418.359-.69.605a.16.16,0,0,0-.06.184l.169.49-.155.144c-.2-.276-.361-.5-.492-.672s-.3-.388-.52-.659l.143-.143.432.283a.14.14,0,0,0,.177-.008c.194-.16.432-.361.71-.6l2.876-2.476q.354-.305.583-.513a.172.172,0,0,0,.063-.181l-.166-.518.148-.138q.3.428.484.669a3.579,3.579,0,0,0,.238.282L135.6,46.968l2.738-2.358q.345-.3.588-.517a.16.16,0,0,0,.046-.178l-.168-.484.155-.144c.2.283.364.511.494.681s.3.389.518.65l-.143.143-.446-.287a.15.15,0,0,0-.18.027q-.239.2-.594.5l-3.967,3.415-.233-.246Zm-3.951-6.069.7.685q.639.631,1.365,1.317l-.009.045-1.124.938-.137-.087.543-1-1.32-1.3-1.707,1.962.261.256q.3.293.669.645a.133.133,0,0,0,.177.005l.515-.38.161.145q-.442.49-.649.727t-.622.734l-.168-.138.322-.59a.152.152,0,0,0-.005-.184c-.244-.249-.465-.471-.665-.669l-.258-.253-1.13,1.3q-.344.4-.673.786l1.372,1.351,1.137-.562.152.1L130,42.781l-.042.006q-.73-.739-1.356-1.356l-.681-.671q-.347-.342-.717-.692l.122-.164.466.215a.141.141,0,0,0,.173-.035c.084-.093.18-.2.282-.314s.216-.247.341-.389l2.513-2.888c.107-.122.2-.23.284-.328s.159-.189.225-.269a.175.175,0,0,0,.037-.189l-.234-.487.127-.159q.356.377.7.713m-6.275,1.152c-.11.154-.211.293-.3.421s-.17.244-.241.348a.183.183,0,0,0,.014.218l.253.42-.113.171q-.391-.337-.76-.636t-.778-.613l.108-.176.482.167a.142.142,0,0,0,.169-.052c.076-.1.161-.215.253-.341s.194-.267.3-.422l2.245-3.129c.095-.132.178-.249.253-.355s.142-.2.2-.29a.176.176,0,0,0,.02-.192L127.791,32l.113-.171q.388.34.757.64t.781.609l-.107.175-.486-.169a.136.136,0,0,0-.166.055c-.067.089-.139.185-.217.291s-.161.223-.252.348Zm-1.395-5.556-.146-.063.393-1.244a3.184,3.184,0,0,0-.669-.621,1.646,1.646,0,0,0-1.686-.138,3.555,3.555,0,0,0-1.533,1.523,3.731,3.731,0,0,0-.595,2.272,2.214,2.214,0,0,0,1.045,1.687,3.322,3.322,0,0,0,1.256.48l-.074.211a2.546,2.546,0,0,1-1.8-.412,2.733,2.733,0,0,1-1.252-1.958,3.9,3.9,0,0,1,.591-2.576,3.532,3.532,0,0,1,2.037-1.76,2.764,2.764,0,0,1,2.373.428,5.209,5.209,0,0,1,1.045.926l0,.049ZM118.6,26.3a2.109,2.109,0,0,0-.6-.507,1.077,1.077,0,0,0-.864-.112,1.093,1.093,0,0,0-.634.625,1.319,1.319,0,0,0-.135.547,1.42,1.42,0,0,0,.083.51,2.343,2.343,0,0,0,.233.482c.1.156.2.314.309.473s.233.346.339.524a2.539,2.539,0,0,1,.25.558,1.756,1.756,0,0,1,.075.624,1.912,1.912,0,0,1-.189.7,1.692,1.692,0,0,1-1.16,1.033,2.329,2.329,0,0,1-1.618-.286,4.5,4.5,0,0,1-1.118-.884l0-.047.862-1.386.17.053-.329,1.359a2.007,2.007,0,0,0,.67.582,1.211,1.211,0,0,0,.945.143,1.13,1.13,0,0,0,.672-.658,1.32,1.32,0,0,0,.134-.539,1.36,1.36,0,0,0-.083-.5,2.65,2.65,0,0,0-.232-.467c-.1-.152-.2-.309-.3-.466-.121-.173-.235-.35-.342-.533a2.779,2.779,0,0,1-.252-.576,1.768,1.768,0,0,1-.066-.653,2.115,2.115,0,0,1,.208-.744,1.536,1.536,0,0,1,1.1-.937,2.218,2.218,0,0,1,1.511.263,5.35,5.35,0,0,1,1.08.771l.01.045-.84,1.246-.155-.045Zm-10.589.7c-.112.363-.2.662-.269.9a.154.154,0,0,0,.052.177l.45.372-.054.2q-.531-.2-.973-.356t-.924-.307l.047-.2.507-.011a.147.147,0,0,0,.144-.108c.082-.247.179-.553.291-.915l1.155-3.739c.049-.158.092-.3.129-.424s.071-.242.1-.343a.174.174,0,0,0-.04-.189l-.4-.339.054-.2q.472.186.913.34l.9.314q.828.29,1.756.593l.01.045-.654,1.347-.158-.02.1-1.147-1.709-.6-.814,2.635.355.124q.385.134.862.291a.132.132,0,0,0,.163-.075l.344-.571.179.054q-.21.641-.3.951t-.28.944l-.183-.043.04-.687c0-.088-.019-.141-.073-.163q-.482-.179-.871-.315l-.351-.123Zm-3.282-3.145a4.315,4.315,0,0,1-1.187,2.524,2.468,2.468,0,0,1-2.269.619,2.442,2.442,0,0,1-1.836-1.3,4.192,4.192,0,0,1-.293-2.649,4.105,4.105,0,0,1,1.184-2.478A2.507,2.507,0,0,1,102.58,20a2.475,2.475,0,0,1,1.844,1.269,4.011,4.011,0,0,1,.3,2.591m-4.718-.806a4.725,4.725,0,0,0,.117,2.479,1.7,1.7,0,0,0,1.347,1.1,1.536,1.536,0,0,0,1.543-.491,4.681,4.681,0,0,0,.844-2.278,4.651,4.651,0,0,0-.109-2.411,1.7,1.7,0,0,0-1.368-1.09,1.532,1.532,0,0,0-1.555.488,4.572,4.572,0,0,0-.818,2.2m-7.677-2.594L92.24,24.4q-.012.54-.016,1.064l1.9.049.528-1.274.175-.03L94.7,25.949l-.025.034q-1.006-.041-1.865-.063l-.978-.025c-.315-.008-.639-.014-.968-.015l-.01-.21.483-.166a.155.155,0,0,0,.109-.148c.005-.129.011-.274.016-.433s.009-.338.014-.531l.091-3.935c0-.166.007-.313.008-.446s0-.253,0-.359a.169.169,0,0,0-.09-.168l-.478-.2,0-.209q.5.033.966.045t.968.005l.01.209-.487.166a.149.149,0,0,0-.1.148c-.006.114-.012.278-.018.5s-.009.323-.008.316M88.183,22.25a4.443,4.443,0,0,1-.448,2.781,2.56,2.56,0,0,1-2,1.293,2.345,2.345,0,0,1-2.111-.675,4.081,4.081,0,0,1-1-2.444,4.227,4.227,0,0,1,.457-2.737,2.6,2.6,0,0,1,2-1.249,2.38,2.38,0,0,1,2.111.644,3.909,3.909,0,0,1,1,2.386m-4.735.686a4.637,4.637,0,0,0,.788,2.337,1.63,1.63,0,0,0,1.59.639,1.6,1.6,0,0,0,1.343-.946,4.793,4.793,0,0,0,.185-2.44,4.552,4.552,0,0,0-.762-2.274,1.625,1.625,0,0,0-1.607-.62,1.591,1.591,0,0,0-1.354.947,4.674,4.674,0,0,0-.184,2.356m-3.528.485a4.468,4.468,0,0,1-.062,2.821,2.624,2.624,0,0,1-1.8,1.59,2.32,2.32,0,0,1-2.18-.34,4,4,0,0,1-1.327-2.262,4.257,4.257,0,0,1,.077-2.779A2.664,2.664,0,0,1,76.431,20.9a2.355,2.355,0,0,1,2.177.31,3.826,3.826,0,0,1,1.312,2.206m-4.59,1.412a4.546,4.546,0,0,0,1.1,2.189,1.607,1.607,0,0,0,1.661.386,1.637,1.637,0,0,0,1.2-1.144,4.792,4.792,0,0,0-.15-2.443,4.468,4.468,0,0,0-1.066-2.131,1.6,1.6,0,0,0-1.675-.365,1.632,1.632,0,0,0-1.21,1.147,4.686,4.686,0,0,0,.142,2.36m-7.2,2.862.707,1.714c.144.35.269.644.371.878a.147.147,0,0,0,.155.109l.46-.029.09.186q-.431.184-.855.383t-.878.427l-.093-.185.371-.368a.162.162,0,0,0,.04-.184c-.094-.242-.215-.538-.359-.887l-1.487-3.6c-.122-.3-.224-.541-.31-.735a.158.158,0,0,0-.149-.111l-.513.033-.086-.188q.467-.2.892-.4c.285-.133.565-.271.837-.412l.1.182-.343.344a.149.149,0,0,0-.035.181q.125.325.3.754l.621,1.5,2.6-1.212-.621-1.5q-.178-.43-.317-.747a.136.136,0,0,0-.151-.095l-.46.03-.086-.188q.444-.185.867-.383t.863-.425l.093.184-.378.383a.173.173,0,0,0-.023.192q.114.3.3.741l1.487,3.6c.144.348.269.644.372.881a.143.143,0,0,0,.153.093l.5-.037.086.188q-.477.207-.9.406c-.284.133-.559.266-.826.4l-.093-.184.338-.344a.166.166,0,0,0,.031-.2c-.092-.239-.212-.534-.356-.885l-.707-1.714Zm-4.477.371-.123.1-.833-.968a3.007,3.007,0,0,0-.835.323,1.854,1.854,0,0,0-.929,1.5,3.876,3.876,0,0,0,.512,2.164,3.451,3.451,0,0,0,1.581,1.653,1.963,1.963,0,0,0,1.894-.158,3.528,3.528,0,0,0,1-.936l.138.17a2.8,2.8,0,0,1-1.211,1.48,2.426,2.426,0,0,1-2.216.219,3.582,3.582,0,0,1-1.833-1.8,3.907,3.907,0,0,1-.462-2.748,3.069,3.069,0,0,1,1.5-2A4.927,4.927,0,0,1,63.1,26.55l.042.02Zm-7.318,3.378a2.037,2.037,0,0,0-.693.35,1.221,1.221,0,0,0-.475.776,1.183,1.183,0,0,0,.247.881,1.177,1.177,0,0,0,.869.516,2.006,2.006,0,0,0,.51-.01c.175-.025.353-.053.535-.087.2-.039.395-.07.592-.092a2.188,2.188,0,0,1,.581.007,1.5,1.5,0,0,1,.559.2,1.756,1.756,0,0,1,.5.488,1.856,1.856,0,0,1,.359,1.564,2.616,2.616,0,0,1-.955,1.417,4.348,4.348,0,0,1-1.239.677l-.041-.016-.789-1.435.12-.139,1,.915a1.93,1.93,0,0,0,.788-.383,1.368,1.368,0,0,0,.537-.839,1.225,1.225,0,0,0-.258-.932,1.205,1.205,0,0,0-.4-.367,1.15,1.15,0,0,0-.457-.14,2.294,2.294,0,0,0-.5.015c-.172.024-.348.054-.528.085-.2.039-.4.07-.6.091a2.414,2.414,0,0,1-.6-.014,1.51,1.51,0,0,1-.58-.225,1.938,1.938,0,0,1-.536-.527,1.69,1.69,0,0,1-.305-1.461,2.49,2.49,0,0,1,.889-1.326,5.265,5.265,0,0,1,1.127-.69l.042.01.681,1.352-.106.127ZM52.2,38.582a4.3,4.3,0,0,1,1.277,2.474,2.841,2.841,0,0,1-.811,2.338,2.365,2.365,0,0,1-2.047.87,3.656,3.656,0,0,1-2.215-1.249,4.1,4.1,0,0,1-1.244-2.445,2.889,2.889,0,0,1,.834-2.3,2.4,2.4,0,0,1,2.029-.894A3.5,3.5,0,0,1,52.2,38.582M48.9,42.254a4.163,4.163,0,0,0,1.984,1.307,1.621,1.621,0,0,0,1.619-.553,1.765,1.765,0,0,0,.5-1.629,4.555,4.555,0,0,0-1.282-2.032,4.083,4.083,0,0,0-1.926-1.275,1.618,1.618,0,0,0-1.621.578,1.757,1.757,0,0,0-.506,1.638A4.454,4.454,0,0,0,48.9,42.254m-.872,6.777-5.468-1.969a1.726,1.726,0,0,0-.443-.117.434.434,0,0,0-.283.095l-.313.224-.163-.116q.244-.32.549-.765t.627-.944l.168.11-.117.391a.247.247,0,0,0-.013.139.2.2,0,0,0,.079.109,1,1,0,0,0,.222.118c.1.041.227.091.388.15l4.057,1.5L44.808,44.2c-.1-.152-.186-.274-.249-.364a.955.955,0,0,0-.169-.194.162.162,0,0,0-.12-.044.237.237,0,0,0-.116.056l-.307.24-.17-.122q.266-.354.521-.725t.475-.724l.168.109-.114.43a.432.432,0,0,0,0,.274,2.664,2.664,0,0,0,.234.428l3.264,5.106Zm-9.31,2.852.483-.867q.444-.8.923-1.7h.043l1.1.972-.052.16L40.177,50.1l-.917,1.646,2.163,1.363.181-.325q.206-.371.452-.831a.154.154,0,0,0-.032-.185l-.458-.456.1-.2c.361.238.631.412.8.522s.439.271.8.492l-.091.2-.61-.212c-.079-.023-.135-.008-.168.044q-.266.459-.474.832l-.178.322,1.431.9q.436.275.864.534L45,53.039l-.755-1.065L44.3,51.8l1.323.939.014.043q-.525.914-.96,1.7l-.473.849q-.241.433-.485.891l-.176-.093.1-.529a.162.162,0,0,0-.069-.173l-.348-.227L42.8,54.92l-3.184-2.006c-.134-.084-.253-.16-.361-.226s-.207-.125-.295-.177a.148.148,0,0,0-.181,0l-.4.346-.172-.1q.272-.45.508-.875m-2.478,5.282q.229-.476.426-.926t.391-.939l.185.07-.051.541a.153.153,0,0,0,.084.165c.1.051.2.106.314.164l.373.186,3.751,1.858c.271.134.513.265.727.394a3.968,3.968,0,0,1,.55.395,2.09,2.09,0,0,1,.377.433,1.789,1.789,0,0,1,.219.513,2.446,2.446,0,0,1,.07.619,5.51,5.51,0,0,1-.075.778l-.232-.046a2.582,2.582,0,0,0-.133-.813,1.77,1.77,0,0,0-.353-.587,2.578,2.578,0,0,0-.569-.46c-.225-.138-.486-.279-.781-.426l-3.858-1.911-.382-.188c-.113-.055-.216-.1-.309-.146a.149.149,0,0,0-.18.02l-.365.386Zm1.322,7.37.528-1.612-2.623-.117Zm-3.094-2.547L40.3,62.2a1.587,1.587,0,0,0,.461-.028A.466.466,0,0,0,40.994,62l.241-.322.188.061c-.121.339-.229.653-.325.946s-.208.651-.331,1.058l-.191-.053v-.416a.327.327,0,0,0-.031-.137.181.181,0,0,0-.1-.075.922.922,0,0,0-.24-.043c-.1-.007-.239-.015-.411-.023l-1.275-.059L37.9,64.824l1.015.837.342.271a.839.839,0,0,0,.21.13.153.153,0,0,0,.12,0,.3.3,0,0,0,.1-.088l.235-.321.2.064c-.13.367-.233.669-.31.9s-.159.5-.244.792l-.192-.049,0-.445a.453.453,0,0,0-.087-.278A2.03,2.03,0,0,0,39,66.363l-4.6-3.947Zm1.065,9.619q.057-.246.093-.458A1.227,1.227,0,0,0,34.5,69.524a1.365,1.365,0,0,0-1.046.118,1.34,1.34,0,0,0-.482.921c-.013.075-.024.158-.033.245s-.016.184-.022.286Zm1.893.37c.181.036.342.067.486.093s.275.05.392.07a.166.166,0,0,0,.193-.071l.227-.423.195.025c-.065.321-.126.644-.182.968s-.11.669-.161,1.015l-.2-.022L38.3,73.1a.153.153,0,0,0-.12-.137c-.119-.026-.253-.055-.4-.085s-.312-.063-.491-.1l-3.639-.712-.412-.079c-.123-.023-.235-.041-.334-.058a.152.152,0,0,0-.17.067l-.262.471-.194-.029q.109-.523.2-1.023c.012-.067.023-.151.036-.253s.029-.227.05-.373.038-.274.052-.374.028-.177.037-.236a2.171,2.171,0,0,1,.629-1.332,1.368,1.368,0,0,1,1.206-.25,1.774,1.774,0,0,1,1.026.534,2.12,2.12,0,0,1,.469,1.107c.317-.118.623-.223.916-.316s.563-.182.809-.263.461-.157.65-.228a2.792,2.792,0,0,0,.455-.212,1.2,1.2,0,0,0,.155-.113.689.689,0,0,0,.118-.126,1.42,1.42,0,0,0,.091-.146c.026-.052.056-.112.086-.175l.2.026a3.741,3.741,0,0,1-.044.5c-.019.112-.039.21-.06.292a1.276,1.276,0,0,1-.074.22.877.877,0,0,1-.1.165.855.855,0,0,1-.138.138,1.619,1.619,0,0,1-.46.253c-.193.075-.412.148-.654.222s-.5.15-.772.227-.539.164-.8.257c-.079.027-.142.051-.188.073a.357.357,0,0,0-.116.075.311.311,0,0,0-.069.11,1.069,1.069,0,0,0-.049.172l-.059.284Zm-2.018,7.369.042-1.707-2.532.738ZM31.73,77.921l5.619-1.685a1.625,1.625,0,0,0,.431-.176.489.489,0,0,0,.172-.239l.138-.385.2,0q-.027.543-.039,1.006t-.013,1.115l-.2.011-.118-.4a.327.327,0,0,0-.069-.121.178.178,0,0,0-.119-.039.924.924,0,0,0-.241.037c-.1.027-.232.063-.4.111l-1.232.356-.049,2,1.207.469c.169.063.3.112.4.147a.781.781,0,0,0,.237.056.155.155,0,0,0,.116-.035.321.321,0,0,0,.07-.117l.133-.381.206,0c-.019.392-.032.713-.037.96s-.008.528-.006.833l-.2.016-.132-.423a.429.429,0,0,0-.162-.236,1.963,1.963,0,0,0-.352-.176L31.788,78.35Zm.531,6.4a2.346,2.346,0,0,0-.1.81,1.247,1.247,0,0,0,.354.846,1.023,1.023,0,0,0,.829.257,1.133,1.133,0,0,0,.51-.158,1.294,1.294,0,0,0,.368-.339,2.284,2.284,0,0,0,.27-.461q.112-.254.222-.525c.076-.2.159-.39.248-.578a2.5,2.5,0,0,1,.321-.515,1.565,1.565,0,0,1,.465-.389,1.636,1.636,0,0,1,.66-.186,1.606,1.606,0,0,1,1.429.528,2.7,2.7,0,0,1,.6,1.623A5.027,5.027,0,0,1,38.3,86.7l-.036.028L36.7,86.659l-.045-.182,1.266-.4a2.238,2.238,0,0,0,.125-.911,1.409,1.409,0,0,0-.371-.935,1.058,1.058,0,0,0-.876-.275,1.136,1.136,0,0,0-.5.154,1.237,1.237,0,0,0-.358.332,2.6,2.6,0,0,0-.257.452c-.074.167-.147.34-.22.518-.078.2-.161.395-.254.586a2.751,2.751,0,0,1-.334.526,1.583,1.583,0,0,1-.493.4,1.8,1.8,0,0,1-.707.193,1.465,1.465,0,0,1-1.319-.52,2.575,2.575,0,0,1-.564-1.514,5.99,5.99,0,0,1,.067-1.382l.031-.032,1.436.126.044.164ZM39.434,93.1q.111.5.259,1.095l-.188.065-.329-.548a.137.137,0,0,0-.161-.07q-.338.077-.863.21l-4.431,1.121.318,1.423,1.265.059.066.154-1.564.507-.042-.019q-.2-1-.407-1.9l-.241-1.079q-.2-.9-.444-1.9l.031-.033,1.614-.141.066.154-1.157.566.318,1.423,4.431-1.121q.525-.133.86-.226a.147.147,0,0,0,.114-.139l.062-.647.189-.055q.126.627.233,1.108m-3.98,9.581-.312-.952q-.286-.875-.624-1.845l.028-.036,1.407-.267.082.144-.922.614.592,1.807,2.373-.88-.117-.356q-.133-.407-.306-.9a.139.139,0,0,0-.154-.093l-.622.078-.079-.209c.4-.141.7-.247.894-.318s.478-.182.873-.337l.087.206-.545.359a.149.149,0,0,0-.076.165q.158.512.292.922l.115.353,1.571-.582q.478-.178.942-.358l-.615-1.878-1.252-.073-.091-.162,1.528-.471.04.016q.318,1.017.6,1.875l.306.932q.155.475.327.969l-.18.083-.317-.422a.142.142,0,0,0-.168-.056c-.116.04-.246.086-.388.137s-.3.109-.473.173l-3.494,1.3-.395.148-.317.125a.165.165,0,0,0-.116.148l-.009.547-.182.076q-.148-.512-.3-.977m8.153,2.778q.224.452.508.991l-.167.113-.446-.443a.134.134,0,0,0-.173-.025q-.309.164-.787.432l-4.029,2.26.641,1.294,1.239-.278.1.131-1.4.9-.045-.007q-.431-.912-.84-1.735l-.486-.981q-.408-.823-.876-1.725l.022-.04,1.53-.564.1.131-.988.855.641,1.294,4.029-2.261q.477-.268.78-.448a.152.152,0,0,0,.078-.165l-.092-.643.171-.1q.269.574.486,1.012m1.252,5.366c.152-.107.29-.2.414-.292s.236-.171.336-.244a.18.18,0,0,0,.054-.211l-.109-.484.16-.122q.265.455.521.866t.545.852l-.156.128-.4-.326a.139.139,0,0,0-.176-.01c-.1.069-.219.147-.344.233s-.266.185-.418.292l-3.087,2.169c-.13.091-.246.173-.349.247s-.2.143-.278.2a.168.168,0,0,0-.079.173l.118.533-.159.122q-.262-.457-.517-.869t-.549-.848l.156-.128.406.33a.135.135,0,0,0,.174.007c.091-.061.189-.126.295-.2s.222-.154.345-.24Zm5.655,5.549-.142.144-6.389,1.39,1.446,1.9,1.035-.5.124.107-1.05,1.182-.046,0q-.6-.814-1.144-1.535l-.579-.761q-.348-.456-.715-.909l.141-.141,6.381-1.4-1.492-1.962-1.286.394-.135-.124,1.354-1.022.04,0q.677.913,1.214,1.619l.59.776q.343.453.653.835m1.1,6.374c-.1-.127-.2-.242-.3-.345a1.266,1.266,0,0,0-.929-.5,1.462,1.462,0,0,0-.968.543,1.562,1.562,0,0,0-.51.979,1.352,1.352,0,0,0,.431.95c.05.054.108.112.17.169s.132.12.207.184Zm1.373-1.435c.131-.137.248-.259.351-.369l.279-.3a.19.19,0,0,0,.056-.21l-.195-.44.132-.155c.209.241.423.48.64.715s.45.481.688.724l-.13.158-.456-.238a.139.139,0,0,0-.175.026c-.088.088-.188.188-.3.3s-.228.236-.358.372l-2.64,2.758c-.111.116-.21.219-.3.313s-.167.18-.237.257a.175.175,0,0,0-.046.187l.212.5-.134.152q-.339-.4-.674-.759c-.045-.049-.1-.107-.175-.177s-.158-.156-.258-.258-.189-.191-.257-.261-.121-.126-.16-.168a2.168,2.168,0,0,1-.662-1.314,1.568,1.568,0,0,1,.5-1.193,1.779,1.779,0,0,1,1-.585,1.834,1.834,0,0,1,1.121.228c.091-.343.186-.67.284-.978s.184-.595.263-.855.144-.492.2-.7a3.275,3.275,0,0,0,.1-.517,1.413,1.413,0,0,0,0-.2.774.774,0,0,0-.029-.176,1.636,1.636,0,0,0-.061-.163c-.025-.053-.054-.112-.085-.175l.135-.159a3.332,3.332,0,0,1,.36.326c.075.08.138.155.19.22a1.233,1.233,0,0,1,.126.192.894.894,0,0,1,.069.183.953.953,0,0,1,.026.2,1.843,1.843,0,0,1-.07.547c-.054.211-.123.444-.206.7s-.172.521-.27.8-.185.563-.265.848c-.024.084-.042.152-.053.205a.4.4,0,0,0-.008.144.318.318,0,0,0,.044.124,1.116,1.116,0,0,0,.1.141l.184.214Zm2.063,8.767-.754-.612q-.693-.562-1.476-1.173l0-.046,1.036-1.048.143.073-.451,1.053,1.43,1.161,1.525-2.125-.282-.229q-.321-.261-.724-.575a.132.132,0,0,0-.176.013l-.479.43-.174-.129q.4-.532.581-.789t.554-.793l.18.121-.269.619a.153.153,0,0,0,.022.182q.4.335.722.6l.279.227,1.009-1.407q.308-.428.6-.85l-1.486-1.207-1.082.674-.16-.082,1.031-1.288.042-.01q.792.662,1.471,1.213l.738.6q.376.305.775.617l-.108.175-.483-.167a.142.142,0,0,0-.169.052c-.075.1-.161.215-.253.341s-.194.267-.3.422l-2.244,3.129c-.095.132-.178.249-.253.355s-.141.2-.2.29a.174.174,0,0,0-.021.191l.276.462-.113.171q-.388-.34-.758-.64m8.617-2.048-1.434,5.949a2.042,2.042,0,0,0-.076.478.5.5,0,0,0,.11.294l.234.315-.1.181c-.212-.156-.464-.33-.758-.525s-.609-.4-.932-.594l.09-.186.375.094a.206.206,0,0,0,.131,0,.193.193,0,0,0,.1-.092,1.143,1.143,0,0,0,.095-.244c.031-.108.068-.248.11-.422l1.1-4.418L59.39,131.8c-.134.12-.242.218-.323.291a.982.982,0,0,0-.169.195.187.187,0,0,0-.032.13.263.263,0,0,0,.061.118l.248.307-.1.19q-.35-.255-.718-.5c-.245-.163-.483-.312-.714-.45l.09-.186.412.09a.361.361,0,0,0,.257-.022,2.433,2.433,0,0,0,.384-.28l4.54-3.847Zm3.62,3.809c.081-.174.155-.331.22-.474s.124-.273.175-.39a.18.18,0,0,0-.053-.211l-.322-.361.08-.19q.444.252.86.471t.873.445l-.074.194-.5-.067a.145.145,0,0,0-.158.086c-.056.114-.12.244-.188.385s-.143.3-.224.475l-1.648,3.525c-.069.148-.131.28-.185.4s-.1.229-.144.325a.175.175,0,0,0,.014.192l.354.4-.08.191c-.295-.171-.58-.329-.857-.476s-.572-.3-.875-.441l.074-.194.507.069a.139.139,0,0,0,.154-.087c.05-.1.1-.21.161-.329s.119-.252.185-.392Zm6.274,6.873,1.15-3.726c.112-.361.2-.665.271-.906a.16.16,0,0,0-.044-.19l-.391-.314.056-.21c.307.117.558.211.756.28s.451.152.772.254l-.048.2-.507.011a.146.146,0,0,0-.144.108c-.082.247-.179.553-.291.915l-1.154,3.739q-.142.461-.229.768a.173.173,0,0,0,.04.188l.4.34-.053.2q-.473-.185-.748-.282a3.237,3.237,0,0,0-.343-.1l-1.614-5.926-1.1,3.56q-.139.449-.231.774a.159.159,0,0,0,.052.177l.389.31-.057.21q-.467-.184-.762-.287c-.2-.069-.453-.151-.766-.247l.047-.2.522-.016a.16.16,0,0,0,.137-.127c.067-.2.149-.455.244-.764l1.592-5.158.322.073Zm8.444,3.564q-.486-.136-.939-.244t-.949-.206l.029-.207.508-.062a.145.145,0,0,0,.13-.124c.026-.111.054-.231.083-.362s.058-.273.091-.428l.546-2.593a3.771,3.771,0,0,0,.051-1.962,1.31,1.31,0,0,0-1-.79,1.246,1.246,0,0,0-1.242.273,3.5,3.5,0,0,0-.73,1.724l-.559,2.652c-.032.155-.063.3-.089.43s-.048.254-.066.365a.157.157,0,0,0,.068.171l.411.268-.037.215q-.478-.134-.823-.216c-.219-.052-.488-.11-.809-.173l.029-.207.517-.07a.162.162,0,0,0,.125-.14c.025-.1.052-.22.08-.349s.059-.275.093-.435l.513-2.432a4.127,4.127,0,0,1,.992-2.177,1.793,1.793,0,0,1,1.752-.363,1.959,1.959,0,0,1,1.435,1.047,3.576,3.576,0,0,1,.07,2.2l-.573,2.72c-.034.16-.065.306-.091.436s-.048.248-.067.352a.172.172,0,0,0,.057.183l.432.3Z" transform="translate(-25.599 -12.46)" fill="#141c4e"/>
|
|
37
|
+
</g>
|
|
38
|
+
</g>
|
|
39
|
+
<g id="Group_9839" data-name="Group 9839">
|
|
40
|
+
<g id="Group_9838" data-name="Group 9838" clip-path="url(#clip-path-2)">
|
|
41
|
+
<ellipse id="Ellipse_12" data-name="Ellipse 12" cx="65.556" cy="68.629" rx="65.556" ry="68.629" transform="translate(11.847 4.194)" fill="none" stroke="#fff" stroke-miterlimit="22.926" stroke-width="0.216"/>
|
|
42
|
+
</g>
|
|
43
|
+
</g>
|
|
44
|
+
</svg>
|
package/package.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ssst-basic-template",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"public": true,
|
|
5
|
+
|
|
6
|
+
"scripts": {
|
|
7
|
+
"start": "expo start",
|
|
8
|
+
"android": "expo start --android",
|
|
9
|
+
"ios": "expo start --ios",
|
|
10
|
+
"web": "expo start --web"
|
|
11
|
+
},
|
|
12
|
+
|
|
13
|
+
"dependencies": {
|
|
14
|
+
"expo": "^54.0.1",
|
|
15
|
+
"react": "19.1.0",
|
|
16
|
+
"react-dom": "19.1.0",
|
|
17
|
+
"react-native": "0.81.4",
|
|
18
|
+
"react-native-web": "^0.21.0"
|
|
19
|
+
}
|
|
20
|
+
}
|