diff --git a/.eslintrc.cjs b/.eslintrc.cjs new file mode 100644 index 0000000..ee71034 --- /dev/null +++ b/.eslintrc.cjs @@ -0,0 +1,20 @@ +/* eslint-env node */ + +module.exports = { + env: { browser: true, es2020: true }, + extends: [ + 'eslint:recommended', + 'plugin:react/recommended', + 'plugin:react/jsx-runtime', + 'plugin:react-hooks/recommended', + ], + parserOptions: { ecmaVersion: 'latest', sourceType: 'module' }, + settings: { react: { version: '18.2' } }, + plugins: ['react-refresh'], + rules: { + 'react-refresh/only-export-components': [ + 'warn', + { allowConstantExport: true }, + ], + }, +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a355cb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,26 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? +.env +sheets_creds.json diff --git a/index.html b/index.html new file mode 100644 index 0000000..8f477b2 --- /dev/null +++ b/index.html @@ -0,0 +1,107 @@ + + + + + + + + + + + + Hackathon | BostonBridge | Home + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + \ No newline at end of file diff --git a/index.mjs b/index.mjs new file mode 100644 index 0000000..86a087f --- /dev/null +++ b/index.mjs @@ -0,0 +1,47 @@ +import { config } from "dotenv"; +config(); +import { MongoClient } from "mongodb"; +import express from "express"; +import cors from "cors"; +import sheet from "./sheetsService.mjs"; +import path from "path"; + +const __dirname = path.resolve(); +const app = express(); +const port = 5555; +const mongo_uri = process.env.mongodb_uri; +const client = new MongoClient(mongo_uri); +client.connect(); + +client.on("open", () => console.log("Connected To Database")); +client.on("error", (err) => console.log("Error Occurred - MongoDB", err)); +client.on("close", () => console.log("Disconnected from mongodb")); + +const corsOptions = { + origin: ["https://hackatank.tech", "http://localhost:4444"], +}; +app.use(express.json()); +app.post("/api/verify", async (req, res) => { + const requestData = req.body; + + const id = parseInt(requestData.id); + const code = requestData.code; + const authBy = requestData.authemail; + + const db = client.db(process.env.mongodb_collection); + const response = await db.collection("qr-details").findOne({ + id, + }); + console.log(response); + if (response) { + const timestamp = new Date().toString(); + const name = response.name; + const Sheetres = await sheet([[id, timestamp, name, code, authBy]]); + + return res.status(200).json({ name, id, code }); + } else { + return res.status(404).json({ error: "Not found", id }); + } +}); + +app.listen(port, () => console.log("Server Started on port: ", port)); diff --git a/index.mjs-prod.js b/index.mjs-prod.js new file mode 100644 index 0000000..6016fbb --- /dev/null +++ b/index.mjs-prod.js @@ -0,0 +1,57 @@ +import { config } from "dotenv"; +config(); +import { MongoClient } from "mongodb"; +import express from "express"; +import cors from "cors"; +import sheet from "./sheetsService.mjs"; +import path from "path"; + +const __dirname = path.resolve(); +const app = express(); +const port = 4444; +const mongo_uri = process.env.mongodb_uri; +const client = new MongoClient(mongo_uri); +client.connect(); + +client.on("open", () => console.log("Connected To Database")); +client.on("error", (err) => console.log("Error Occurred - MongoDB", err)); +client.on("close", () => console.log("Disconnected from mongodb")); + +const corsOptions = { + origin: ["https://hackatank.tech"], +}; +app.use(express.json()); +app.post("/api/verify", cors(corsOptions), async (req, res) => { + const requestData = req.body; + + const id = parseInt(requestData.id); + const code = requestData.code; + const authBy = requestData.authemail; + + const db = client.db(process.env.mongodb_collection); + const response = await db.collection("qr-details").findOne({ + id, + }); + if (response) { + const timestamp = new Date().toString(); + const name = response.name; + const Sheetres = await sheet([[id, timestamp, name, code, authBy]]); + + return res.status(200).json({ name, id, code }); + } else { + return res.status(404).json({ error: "Not found", id }); + } +}); + +app.use(express.static(path.join(__dirname, "dist"))); +app.get( + ["/", "/about", "/set1", "/set2", "/events", "/guidelines", "/judges"], + (req, res) => { + res.status(200).sendFile(path.join(__dirname, "dist", "index.html")); + } +); + +app.use((req, res) => { + res.status(404).sendFile(path.join(__dirname, "dist", "index.html")); +}); +app.listen(port, () => console.log("Server Started on port: ", port)); diff --git a/package.json b/package.json new file mode 100644 index 0000000..b7df7b6 --- /dev/null +++ b/package.json @@ -0,0 +1,60 @@ +{ + "name": "hackathon", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vite --host --port 4444", + "build": "vite build", + "lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0", + "preview": "vite preview" + }, + "dependencies": { + "@ant-design/icons": "^5.1.4", + "@emotion/react": "^11.11.1", + "@emotion/styled": "^11.11.0", + "@mui/icons-material": "^5.14.1", + "@mui/material": "^5.14.1", + "@mui/styled-engine-sc": "^5.12.0", + "@typeform/embed-react": "^3.11.0", + "@vercel/analytics": "^1.1.3", + "autoprefixer": "^10.4.14", + "body-parser": "^1.20.2", + "compression": "^1.7.4", + "cors": "^2.8.5", + "daisyui": "^3.2.1", + "dotenv": "^16.3.1", + "express": "^4.18.2", + "firebase": "^10.3.1", + "googleapis": "^126.0.1", + "lottie-react": "^2.4.0", + "mongodb": "^6.0.0", + "ms": "^2.1.3", + "path": "^0.12.7", + "postcss": "^8.4.26", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "react-firebase-hooks": "^5.1.1", + "react-ga": "^3.3.1", + "react-google-button": "^0.7.2", + "react-icons": "^4.10.1", + "react-router-dom": "^6.14.2", + "react-social-icons": "^5.15.0", + "sitemap": "^7.1.1", + "spdy": "^4.0.2", + "styled-components": "^6.0.4", + "tailwindcss": "^3.3.3", + "vanilla-tilt": "^1.8.0", + "vite-plugin-svgr": "^3.2.0" + }, + "devDependencies": { + "@types/react": "^18.2.14", + "@types/react-dom": "^18.2.6", + "@vitejs/plugin-react-swc": "^3.3.2", + "eslint": "^8.44.0", + "eslint-plugin-react": "^7.32.2", + "eslint-plugin-react-hooks": "^4.6.0", + "eslint-plugin-react-refresh": "^0.4.1", + "vite": "^4.4.0" + } +} diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..2e7af2b --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,6 @@ +export default { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +} diff --git a/public/Ads.txt b/public/Ads.txt new file mode 100644 index 0000000..10a7e72 --- /dev/null +++ b/public/Ads.txt @@ -0,0 +1 @@ +google.com, pub-9181067698689655, DIRECT, f08c47fec0942fa0 \ No newline at end of file diff --git a/public/docs/Abstract_Reference_Hackathon.pdf b/public/docs/Abstract_Reference_Hackathon.pdf new file mode 100644 index 0000000..605db89 Binary files /dev/null and b/public/docs/Abstract_Reference_Hackathon.pdf differ diff --git a/public/fonts/Disamber.ttf b/public/fonts/Disamber.ttf new file mode 100644 index 0000000..0969855 Binary files /dev/null and b/public/fonts/Disamber.ttf differ diff --git a/public/fonts/ErbosDraco.ttf b/public/fonts/ErbosDraco.ttf new file mode 100644 index 0000000..1e1c6ef Binary files /dev/null and b/public/fonts/ErbosDraco.ttf differ diff --git a/public/fonts/LoremIpsum.woff b/public/fonts/LoremIpsum.woff new file mode 100644 index 0000000..e2eeec0 Binary files /dev/null and b/public/fonts/LoremIpsum.woff differ diff --git a/public/fonts/acetone.ttf b/public/fonts/acetone.ttf new file mode 100644 index 0000000..8b665f3 Binary files /dev/null and b/public/fonts/acetone.ttf differ diff --git a/public/fonts/atomed.otf b/public/fonts/atomed.otf new file mode 100644 index 0000000..904cb3b Binary files /dev/null and b/public/fonts/atomed.otf differ diff --git a/public/fonts/blanka.otf b/public/fonts/blanka.otf new file mode 100644 index 0000000..60b18d7 Binary files /dev/null and b/public/fonts/blanka.otf differ diff --git a/public/fonts/corneta.ttf b/public/fonts/corneta.ttf new file mode 100644 index 0000000..75d4ea5 Binary files /dev/null and b/public/fonts/corneta.ttf differ diff --git a/public/fonts/falzon.ttf b/public/fonts/falzon.ttf new file mode 100644 index 0000000..d3e32f8 Binary files /dev/null and b/public/fonts/falzon.ttf differ diff --git a/public/fonts/freedom45.ttf b/public/fonts/freedom45.ttf new file mode 100644 index 0000000..2cd018a Binary files /dev/null and b/public/fonts/freedom45.ttf differ diff --git a/public/fonts/liger.ttf b/public/fonts/liger.ttf new file mode 100644 index 0000000..833fa81 Binary files /dev/null and b/public/fonts/liger.ttf differ diff --git a/public/fonts/mars/Mars Bold.otf b/public/fonts/mars/Mars Bold.otf new file mode 100644 index 0000000..33deb2c Binary files /dev/null and b/public/fonts/mars/Mars Bold.otf differ diff --git a/public/fonts/mars/Mars Bold.ttf b/public/fonts/mars/Mars Bold.ttf new file mode 100644 index 0000000..b342b1e Binary files /dev/null and b/public/fonts/mars/Mars Bold.ttf differ diff --git a/public/fonts/mars/Mars Thin.otf b/public/fonts/mars/Mars Thin.otf new file mode 100644 index 0000000..15e4e09 Binary files /dev/null and b/public/fonts/mars/Mars Thin.otf differ diff --git a/public/fonts/mars/Mars Thin.ttf b/public/fonts/mars/Mars Thin.ttf new file mode 100644 index 0000000..6f4963c Binary files /dev/null and b/public/fonts/mars/Mars Thin.ttf differ diff --git a/public/fonts/mars/Mars.otf b/public/fonts/mars/Mars.otf new file mode 100644 index 0000000..867295a Binary files /dev/null and b/public/fonts/mars/Mars.otf differ diff --git a/public/fonts/mars/Mars.ttf b/public/fonts/mars/Mars.ttf new file mode 100644 index 0000000..6749f64 Binary files /dev/null and b/public/fonts/mars/Mars.ttf differ diff --git a/public/fonts/miamagon.otf b/public/fonts/miamagon.otf new file mode 100644 index 0000000..bc4730f Binary files /dev/null and b/public/fonts/miamagon.otf differ diff --git a/public/fonts/neonenergy.otf b/public/fonts/neonenergy.otf new file mode 100644 index 0000000..97d661d Binary files /dev/null and b/public/fonts/neonenergy.otf differ diff --git a/public/fonts/proxon.ttf b/public/fonts/proxon.ttf new file mode 100644 index 0000000..ce4148c Binary files /dev/null and b/public/fonts/proxon.ttf differ diff --git a/public/fonts/rostave.otf b/public/fonts/rostave.otf new file mode 100644 index 0000000..160722c Binary files /dev/null and b/public/fonts/rostave.otf differ diff --git a/public/fonts/spacecrusaders.otf b/public/fonts/spacecrusaders.otf new file mode 100644 index 0000000..8fc68ff Binary files /dev/null and b/public/fonts/spacecrusaders.otf differ diff --git a/public/fonts/suggested.ttf b/public/fonts/suggested.ttf new file mode 100644 index 0000000..40ec871 Binary files /dev/null and b/public/fonts/suggested.ttf differ diff --git a/public/fonts/technology/1001fonts-technology-eula.txt b/public/fonts/technology/1001fonts-technology-eula.txt new file mode 100644 index 0000000..31aafe8 --- /dev/null +++ b/public/fonts/technology/1001fonts-technology-eula.txt @@ -0,0 +1,38 @@ +1001Fonts Free For Personal Use License (FFP) + +Preamble +In this license, 'Technology' refers to the given .zip file, which may contain one or numerous fonts. These fonts can be of any type (.ttf, .otf, ...) and together they form a 'font family' or in short a 'typeface'. + +1. Copyright +Technology is the intellectual property of its respective author, provided it is original, and is protected by copyright laws in many parts of the world. + +2. Personal Use +Technology may be downloaded and used free of charge for personal use, as long as the usage is not racist or illegal. Personal use refers to all usage that does not generate financial income in a business manner, for instance: + + - personal scrapbooking for yourself + - recreational websites and blogs for friends and family + - prints such as flyers, posters, t-shirts for churches, charities, and non-profit organizations + +3. Commercial Use +Commercial use is not allowed without prior written permission from the respective author. Please contact the author to ask for commercial licensing. Commercial use refers to usage in a business environment, including: + + - business cards, logos, advertising, websites, mobile apps for companies + - t-shirts, books, apparel that will be sold for money + - flyers, posters for events that charge admission + - freelance graphic design work + - anything that will generate direct or indirect income + +4. Modification +Technology may not be modified, altered, adapted or built upon without written permission by its respective author. This pertains all files within the downloadable font zip-file. + +5. Conversion +Technology may be converted to other formats such as WOFF, SVG or EOT webfonts, as long as the font is not modified in any other way, such as changing names or altering individual glyphs. + +6. Distribution +While Technology may freely be copied and passed along to other individuals for private use as its original downloadable zip-file, it may not be sold or published without written permission by its respective author. + +7. Embedding +Technology may be embedded into an application such as a web- or mobile app, as long as the application is of personal use and does not distribute Technology, such as offering it as a download. + +8. Disclaimer +Technology is offered 'as is' without any warranty. 1001fonts.com and the respective author of Technology shall not be liable for any damage derived from using this typeface. By using Technology you agree to the terms of this license. \ No newline at end of file diff --git a/public/fonts/technology/Technology-Bold.ttf b/public/fonts/technology/Technology-Bold.ttf new file mode 100644 index 0000000..5c9c2cb Binary files /dev/null and b/public/fonts/technology/Technology-Bold.ttf differ diff --git a/public/fonts/technology/Technology-BoldItalic.ttf b/public/fonts/technology/Technology-BoldItalic.ttf new file mode 100644 index 0000000..8be9b61 Binary files /dev/null and b/public/fonts/technology/Technology-BoldItalic.ttf differ diff --git a/public/fonts/technology/Technology-Italic.ttf b/public/fonts/technology/Technology-Italic.ttf new file mode 100644 index 0000000..e7181d6 Binary files /dev/null and b/public/fonts/technology/Technology-Italic.ttf differ diff --git a/public/fonts/technology/Technology.ttf b/public/fonts/technology/Technology.ttf new file mode 100644 index 0000000..821a55b Binary files /dev/null and b/public/fonts/technology/Technology.ttf differ diff --git a/public/fonts/technorace.otf b/public/fonts/technorace.otf new file mode 100644 index 0000000..950b604 Binary files /dev/null and b/public/fonts/technorace.otf differ diff --git a/public/fonts/zeniq.ttf b/public/fonts/zeniq.ttf new file mode 100644 index 0000000..692c47c Binary files /dev/null and b/public/fonts/zeniq.ttf differ diff --git a/public/fonts/zian.ttf b/public/fonts/zian.ttf new file mode 100644 index 0000000..8bf7530 Binary files /dev/null and b/public/fonts/zian.ttf differ diff --git a/public/images/bg11.webp b/public/images/bg11.webp new file mode 100644 index 0000000..4436a91 Binary files /dev/null and b/public/images/bg11.webp differ diff --git a/public/images/bg2.webp b/public/images/bg2.webp new file mode 100644 index 0000000..6119fcf Binary files /dev/null and b/public/images/bg2.webp differ diff --git a/public/images/bg4.webp b/public/images/bg4.webp new file mode 100644 index 0000000..e6a06f4 Binary files /dev/null and b/public/images/bg4.webp differ diff --git a/public/images/bg6.webp b/public/images/bg6.webp new file mode 100644 index 0000000..6e0df79 Binary files /dev/null and b/public/images/bg6.webp differ diff --git a/public/images/bg9.webp b/public/images/bg9.webp new file mode 100644 index 0000000..2016a6f Binary files /dev/null and b/public/images/bg9.webp differ diff --git a/public/images/circles.svg b/public/images/circles.svg new file mode 100644 index 0000000..646a336 --- /dev/null +++ b/public/images/circles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/images/circles.webp b/public/images/circles.webp new file mode 100644 index 0000000..2a2d58f Binary files /dev/null and b/public/images/circles.webp differ diff --git a/public/images/csi.webp b/public/images/csi.webp new file mode 100644 index 0000000..73a5c31 Binary files /dev/null and b/public/images/csi.webp differ diff --git a/public/images/csi1.webp b/public/images/csi1.webp new file mode 100644 index 0000000..02c21e4 Binary files /dev/null and b/public/images/csi1.webp differ diff --git a/public/images/diamond.ico b/public/images/diamond.ico new file mode 100644 index 0000000..9f97b76 Binary files /dev/null and b/public/images/diamond.ico differ diff --git a/public/images/diamond.jpg b/public/images/diamond.jpg new file mode 100644 index 0000000..36f0136 Binary files /dev/null and b/public/images/diamond.jpg differ diff --git a/public/images/diamond.png b/public/images/diamond.png new file mode 100644 index 0000000..636253a Binary files /dev/null and b/public/images/diamond.png differ diff --git a/public/images/diamond.webp b/public/images/diamond.webp new file mode 100644 index 0000000..540152c Binary files /dev/null and b/public/images/diamond.webp differ diff --git a/public/images/discord.svg b/public/images/discord.svg new file mode 100644 index 0000000..9b4ed8f --- /dev/null +++ b/public/images/discord.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/public/images/flurry.svg b/public/images/flurry.svg new file mode 100644 index 0000000..cacf1f2 --- /dev/null +++ b/public/images/flurry.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/images/flurry.webp b/public/images/flurry.webp new file mode 100644 index 0000000..886b015 Binary files /dev/null and b/public/images/flurry.webp differ diff --git a/public/images/food.svg b/public/images/food.svg new file mode 100644 index 0000000..212d82f --- /dev/null +++ b/public/images/food.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/images/giridharan.webp b/public/images/giridharan.webp new file mode 100644 index 0000000..0fe271d Binary files /dev/null and b/public/images/giridharan.webp differ diff --git a/public/images/hebesec.webp b/public/images/hebesec.webp new file mode 100644 index 0000000..195233d Binary files /dev/null and b/public/images/hebesec.webp differ diff --git a/public/images/jigsaw.svg b/public/images/jigsaw.svg new file mode 100644 index 0000000..3fe9234 --- /dev/null +++ b/public/images/jigsaw.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/public/images/jigsaw.webp b/public/images/jigsaw.webp new file mode 100644 index 0000000..24050de Binary files /dev/null and b/public/images/jigsaw.webp differ diff --git a/public/images/judgeP/balaji.jpeg b/public/images/judgeP/balaji.jpeg new file mode 100644 index 0000000..00f4e5c Binary files /dev/null and b/public/images/judgeP/balaji.jpeg differ diff --git a/public/images/judgeP/bg.png b/public/images/judgeP/bg.png new file mode 100644 index 0000000..6060270 Binary files /dev/null and b/public/images/judgeP/bg.png differ diff --git a/public/images/judgeP/dhivakar.jpg b/public/images/judgeP/dhivakar.jpg new file mode 100644 index 0000000..c0799ac Binary files /dev/null and b/public/images/judgeP/dhivakar.jpg differ diff --git a/public/images/judgeP/hariharan.jpg b/public/images/judgeP/hariharan.jpg new file mode 100644 index 0000000..a470aa1 Binary files /dev/null and b/public/images/judgeP/hariharan.jpg differ diff --git a/public/images/judgeP/jon.jpg b/public/images/judgeP/jon.jpg new file mode 100644 index 0000000..32708be Binary files /dev/null and b/public/images/judgeP/jon.jpg differ diff --git a/public/images/judgeP/kiruthika.jpg b/public/images/judgeP/kiruthika.jpg new file mode 100644 index 0000000..4c8ae46 Binary files /dev/null and b/public/images/judgeP/kiruthika.jpg differ diff --git a/public/images/judgeP/rajakumar.jpg b/public/images/judgeP/rajakumar.jpg new file mode 100644 index 0000000..4fc1d7b Binary files /dev/null and b/public/images/judgeP/rajakumar.jpg differ diff --git a/public/images/judgeP/ramSundar.jpg b/public/images/judgeP/ramSundar.jpg new file mode 100644 index 0000000..b29d037 Binary files /dev/null and b/public/images/judgeP/ramSundar.jpg differ diff --git a/public/images/judgeP/rameshKumar.jpg b/public/images/judgeP/rameshKumar.jpg new file mode 100644 index 0000000..124f3ce Binary files /dev/null and b/public/images/judgeP/rameshKumar.jpg differ diff --git a/public/images/judgeP/sabarish.jpg b/public/images/judgeP/sabarish.jpg new file mode 100644 index 0000000..09ffaf6 Binary files /dev/null and b/public/images/judgeP/sabarish.jpg differ diff --git a/public/images/judgeP/snega.jpg b/public/images/judgeP/snega.jpg new file mode 100644 index 0000000..0dbb069 Binary files /dev/null and b/public/images/judgeP/snega.jpg differ diff --git a/public/images/judgeP/sneha.jpg b/public/images/judgeP/sneha.jpg new file mode 100644 index 0000000..cd80edc Binary files /dev/null and b/public/images/judgeP/sneha.jpg differ diff --git a/public/images/judgeP/sonali.jpg b/public/images/judgeP/sonali.jpg new file mode 100644 index 0000000..c07fb38 Binary files /dev/null and b/public/images/judgeP/sonali.jpg differ diff --git a/public/images/judgeP/sruthi.jpg b/public/images/judgeP/sruthi.jpg new file mode 100644 index 0000000..a3ca3ed Binary files /dev/null and b/public/images/judgeP/sruthi.jpg differ diff --git a/public/images/judgeP/surya.jpeg b/public/images/judgeP/surya.jpeg new file mode 100644 index 0000000..606e0cd Binary files /dev/null and b/public/images/judgeP/surya.jpeg differ diff --git a/public/images/kishore.webp b/public/images/kishore.webp new file mode 100644 index 0000000..4f4831a Binary files /dev/null and b/public/images/kishore.webp differ diff --git a/public/images/light.webp b/public/images/light.webp new file mode 100644 index 0000000..db021f7 Binary files /dev/null and b/public/images/light.webp differ diff --git a/public/images/motherboard.webp b/public/images/motherboard.webp new file mode 100644 index 0000000..b98b752 Binary files /dev/null and b/public/images/motherboard.webp differ diff --git a/public/images/nandhashree.webp b/public/images/nandhashree.webp new file mode 100644 index 0000000..3b1b732 Binary files /dev/null and b/public/images/nandhashree.webp differ diff --git a/public/images/planet2.webp b/public/images/planet2.webp new file mode 100644 index 0000000..af0090e Binary files /dev/null and b/public/images/planet2.webp differ diff --git a/public/images/purple4.webp b/public/images/purple4.webp new file mode 100644 index 0000000..ce0fc8b Binary files /dev/null and b/public/images/purple4.webp differ diff --git a/public/images/rrr.png b/public/images/rrr.png new file mode 100644 index 0000000..9e84014 Binary files /dev/null and b/public/images/rrr.png differ diff --git a/public/images/rrr.webp b/public/images/rrr.webp new file mode 100644 index 0000000..3ade3ee Binary files /dev/null and b/public/images/rrr.webp differ diff --git a/public/images/senthilkumar.webp b/public/images/senthilkumar.webp new file mode 100644 index 0000000..e69ad0e Binary files /dev/null and b/public/images/senthilkumar.webp differ diff --git a/public/images/shree.webp b/public/images/shree.webp new file mode 100644 index 0000000..a7c680d Binary files /dev/null and b/public/images/shree.webp differ diff --git a/public/images/sivasankari.webp b/public/images/sivasankari.webp new file mode 100644 index 0000000..e36348e Binary files /dev/null and b/public/images/sivasankari.webp differ diff --git a/public/images/srm.webp b/public/images/srm.webp new file mode 100644 index 0000000..c903e17 Binary files /dev/null and b/public/images/srm.webp differ diff --git a/public/images/srmvec.webp b/public/images/srmvec.webp new file mode 100644 index 0000000..2959b7d Binary files /dev/null and b/public/images/srmvec.webp differ diff --git a/public/images/target.webp b/public/images/target.webp new file mode 100644 index 0000000..fd0b541 Binary files /dev/null and b/public/images/target.webp differ diff --git a/public/images/texture.svg b/public/images/texture.svg new file mode 100644 index 0000000..ecdfc62 --- /dev/null +++ b/public/images/texture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/images/topography.svg b/public/images/topography.svg new file mode 100644 index 0000000..cbe9e4c --- /dev/null +++ b/public/images/topography.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/images/topography.webp b/public/images/topography.webp new file mode 100644 index 0000000..8bffc2d Binary files /dev/null and b/public/images/topography.webp differ diff --git a/public/images/vision.webp b/public/images/vision.webp new file mode 100644 index 0000000..4e06ef7 Binary files /dev/null and b/public/images/vision.webp differ diff --git a/public/images/whitehatians.webp b/public/images/whitehatians.webp new file mode 100644 index 0000000..7fe9d1b Binary files /dev/null and b/public/images/whitehatians.webp differ diff --git a/public/next.svg b/public/next.svg new file mode 100644 index 0000000..5174b28 --- /dev/null +++ b/public/next.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/public/robots.txt b/public/robots.txt new file mode 100644 index 0000000..1ed29c9 --- /dev/null +++ b/public/robots.txt @@ -0,0 +1,4 @@ +User-agent: * +Disallow: /images/ +Disallow: /fonts/ +Sitemap: https://www.hackatank.tech/sitemap.xml diff --git a/public/sitemap.xml b/public/sitemap.xml new file mode 100644 index 0000000..82e2914 --- /dev/null +++ b/public/sitemap.xml @@ -0,0 +1 @@ +https://www.hackatank.tech/daily1.0https://www.hackatank.tech/aboutdaily1.0https://www.hackatank.tech/guidelinesdaily1.0https://www.hackatank.tech/eventsdaily1.0https://www.hackatank.tech/set1daily1.0https://www.hackatank.tech/set2daily1.0https://www.hackatank.tech/judgesdaily1.0https://www.hackatank.tech/#contactdaily1.0 \ No newline at end of file diff --git a/public/vercel.svg b/public/vercel.svg new file mode 100644 index 0000000..d2f8422 --- /dev/null +++ b/public/vercel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/sheetsService.mjs b/sheetsService.mjs new file mode 100644 index 0000000..716af00 --- /dev/null +++ b/sheetsService.mjs @@ -0,0 +1,30 @@ +import { google } from "googleapis"; +import { config } from "dotenv"; +config(); +const scope = ["https://www.googleapis.com/auth/spreadsheets"]; +const sheetId = process.env.sheetsId; + +export default async function sheet(values) { + const auth = new google.auth.GoogleAuth({ + keyFile: "./sheets_creds.json", + scopes: scope[0], + }); + + const sheets = google.sheets({ + version: "v4", + auth, + }); + + const data = await sheets.spreadsheets.values.append({ + auth, + spreadsheetId: sheetId, + valueInputOption: "USER_ENTERED", + insertDataOption: "INSERT_ROWS", + range: "Sheet1", + resource: { + values: values, + }, + }); + + return data.status; +} diff --git a/sitemap.cjs b/sitemap.cjs new file mode 100644 index 0000000..f7a279e --- /dev/null +++ b/sitemap.cjs @@ -0,0 +1,45 @@ +const { SitemapStream, streamToPromise } = require("sitemap"); +const { createReadStream, createWriteStream } = require("fs"); +const { Readable } = require("stream"); +const { StaticRouter } = require("react-router-dom"); +const React = require("react"); +const ReactDOMServer = require("react-dom/server"); + +const renderToString = (element) => + ReactDOMServer.renderToString(React.createElement(element)); + +async function generateSitemap() { + const staticRoutes = [ + "/", + "about", + "guidelines", + "events", + "/set1", + "/set2", + "/judges", + "/#contact", + ]; + + const smStream = new SitemapStream({ + hostname: "https://www.hackatank.tech", + }); + + staticRoutes.forEach((route) => { + smStream.write({ + url: route, + changefreq: "daily", + priority: 1, + }); + }); + + smStream.end(); + + const sitemapXml = await streamToPromise(Readable.from(smStream), { + encoding: "utf-8", + }); + + const writeStream = createWriteStream("./public/sitemap.xml"); + writeStream.write(sitemapXml); + writeStream.end(); +} +generateSitemap(); diff --git a/src/assets/arrow-right-black.svg b/src/assets/arrow-right-black.svg new file mode 100644 index 0000000..f7983b0 --- /dev/null +++ b/src/assets/arrow-right-black.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/src/assets/arrow-right-white.svg b/src/assets/arrow-right-white.svg new file mode 100644 index 0000000..438c113 --- /dev/null +++ b/src/assets/arrow-right-white.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/src/assets/calender.svg b/src/assets/calender.svg new file mode 100644 index 0000000..1d0157a --- /dev/null +++ b/src/assets/calender.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/src/assets/copyright.svg b/src/assets/copyright.svg new file mode 100644 index 0000000..033533c --- /dev/null +++ b/src/assets/copyright.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/src/assets/denied.json b/src/assets/denied.json new file mode 100644 index 0000000..f4e7d93 --- /dev/null +++ b/src/assets/denied.json @@ -0,0 +1 @@ +{"v":"4.8.0","meta":{"g":"LottieFiles AE 1.0.0","a":"","k":"","d":"","tc":""},"fr":30,"ip":0,"op":68,"w":500,"h":500,"nm":"Cross","ddd":0,"assets":[{"id":"image_0","w":376,"h":376,"u":"","p":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAXgAAAF4CAYAAABeneKmAAAACXBIWXMAAAABAAAAAQBPJcTWAAAAJHpUWHRDcmVhdG9yAAAImXNMyU9KVXBMK0ktUnBNS0tNLikGAEF6Bs5qehXFAAAU9UlEQVR4nO3d63Uc17GA0WolIGVgZiA5AiODqwwMRWA5A94MmIHhCExHYCoDMoJLZUBFcO6PAWWQwmOm5pzu89h7LS394WoMu6s+NhvDQQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwOq2o1/AY0opryLiJiJ+ePDft4/80t8i4n1EfLz//7tt297v8iKBqZRSvotTd27i1JxXEfGnJ375r3Hqzrv4b3s+NX6J4yqlvCqlvCmlfCzX+VRKuSul/HD07wnoWynlu1LKbSnl/ZXdKaWUt/fH+u7o31c3Sik3pZR3FU7uY96XUm6P/j0CfSmnG8q7crohrO1TKeV1WTn09ye4Vdi/9rGUcnP07xk4Vjndsb/eqTufSimvj/49727HE/y1t2XlP1VhYeX0tODaR8AZH8sKj4zL6U/PGs+6nGzgbOX0/b2j/Xz0eWimlPJDafO8K+NT8WwepldON5VvD+7NQ3dHn5PqSl9xf+j26HMDtFH6eGLwmN0eFTd/H3w5PQ55F4+/j70HP23bdnf0iwDquQ/ou4j4/uCX8pR/b9v2Y+sv0jTw5fQPlt5Hv3H/TORhEgPE/bN/btt22/ILfNPqwPcn+W30H/eIiH8Uj2tgeAPFPSLir6XxN16b3cGXUt5ExN9aHb8Rd/IwqMHi/tCfW33ESpPAl9M/KvpPi2PvQORhMAPHPSLiw7ZtTd663eoRzV2j4+7B4xoYyOBxj4j4vlVzqgf+/oU+9QlsoxB5GMAEcf/sTYu3Tra4g3/d4JhHEHno2ERxjzi9GeW29kGrBn6Su/eHRB46NFncP6v+jprad/DN37h/AJGHjkwa94iIP5VSqja0WuDvT/r/1DpeZ0QeOjBx3D/rM/Ax5937QyIPB1og7hEdB/6m4rF6JfJwgEXiHhHxban4ceY1A7/KZ6yLPOxoobh/1mXgVzn5ESIPu1gw7hERr2odqErga/6VYiAiDw0tGveIio+7a93Br/pzTkUeGlg47lU1+7jghYg8VCTunT2iQeShBnGPiIqfBiDw9Yg8XEHc6xP4ukQeEsT9Cx9qHUjg6xN5uIC4/8GnWgeqFfiPlY4zC5GHM4j7o/oK/LZtH2scZzIiD88Q9ydV+/msNR/R/FLxWLMQeXiEuD+ry8A3+angExB5eEDcX9Rl4N9VPNZsRB5C3M/woeYj72qB37btbUT8Vut4ExJ5libuZ3lX82C13yb5tvLxZiPyLEncz/am5sFqB77qi5uUyLMUcT/bL7XfkVg18Nu2vQ/vpjmHyLMEcb9I9RvkrfYBSyk3EfGf2sed1E/btt0d/SKgBXG/yIdt26r/XI3qH1Wwbdu7cBd/LnfyTEncL/Zzi4O2+iya2/COmnOJPFMR94v9+/7GuLomgb//RsHrFseelMgzBXG/2K9xuiFuovoz+IdKKXcR8deWX2MynskzLHFP+fP9m1OaaP1xwT9Hxc82XoA7eYYk7ik/tYx7ROM7+AgXPsmdPMOw4ym77HjzwEcYgCSRp3t2O2W33d4l8BEGIUnk6ZadTtl1p3cLfISBSBJ5umOXU3bf5V0DH2EwkkSebtjhlEN2ePfARxiQJJHncHY35bDdPSTwEQYlSeQ5jJ1NOXRnDwt8hIFJEnl2Z1dTDt/VQwMfYXCSDh8c1mFHU7rY0cMDH2GAkroYIOZmN1O62c0uAh9hkJK6GSTmYydTutrJbgIfYaCSuhoo5mAXU7rbxa4CH2GwkrobLMZlB1O63MHuAh9hwJK6HDDGYvdSut29LgMfYdCSuh00+mfnUrreuW4DH2HgkroeOPpk11K637WuAx9h8JK6Hzz6YcdShtix7gMfYQCThhhAjmW3UobZrSECH2EQk4YZRPZnp1KG2qlhAh9hIJOGGkj2YZdShtuloQIfYTCThhtM2rFDKUPu0HCBjzCgSUMOKHXZnZRhd2fIwEcY1KRhB5Xr2ZmUoXdm2MBHGNikoQeWHLuSMvyuDB34CIObNPzgcj47kjLFjgwf+AgDnDTFAPM8u5EyzW5MEfgIg5w0zSDzR3YiZaqdmCbwEQY6aaqB5sQupEy3C1MFPsJgJ0032CuzAylT7sB0gY8w4ElTDvhqzH7KtLM/ZeAjDHrStIO+AjOfMvXMTxv4CAOfNPXAz8qsp0w/61MHPsLgJ00/+DMx4ylLzPj0gY+wAElLLMDozHbKMrO9ROAjLELSMoswIjOdstRMLxP4CAuRtNRCjMIspyw3y0sFPsJiJC23GD0zwylLzvBygY+wIElLLkhvzG7KsrO7ZOAjLErSsovSAzObsvTMLhv4CAuTtPTCHMWspiw/q0sHPsLiJC2/OHsyoylmNAQ+IixQkgXagdlMMZv3BP6eRUqxSA2ZyRQz+YDAP2ChUixUA2YxxSx+ReC/YrFSLFZFZjDFDD5C4B9hwVIsWAVmL8XsPUHgn2DRUizaFcxcipl7hsA/w8KlWLgEs5Zi1l4g8C+weCkW7wJmLMWMnUHgz2ABUyzgGcxWitk6k8CfySKmWMRnmKkUM3UBgb+AhUyxkI8wSylm6UICfyGLmWIxHzBDKWYoQeATLGiKBQ2zk2R2kgQ+yaKmLL2oZiZl6Zm5lsBfwcKmLLmwZiVlyVmpSeCvZHFTllpcM5Ky1Iy0IvAVWOCUJRbYbKQsMRt7EPhKLHLK1ItsJlKmnom9CXxFFjplyoU2CylTzsKRBL4yi50y1WKbgZSpZqAXAt+ABU+ZYsFd+5Qprn2PBL4Ri54y9KK75ilDX/PeCXxDFj5lyIV3rVOGvNYjEfjGLH7KUIvvGqcMdY1HJfA7EICUIQLg2qYMcW1nIPA7EYKUrkPgmqZ0fU1nI/A7EoSULoPgWqZ0eS1nJvA7E4aUrsLgGqZ0dQ1XIfAHEIiULgLh2qV0ce1WJPAHEYqUQ0PhmqWI+4EE/kCCkXJIMFyrFHE/mMAfTDhSdg2Ha5Qi7h0Q+A4ISMouAXFtUsS9EwLfCSFJaRoS1yRF3Dsi8B0RlJQmQXEtUsS9MwLfGWFJqRoW1yBF3Dsk8B0SmJQqgXHuU8S9UwLfKaFJuSo0znmKuHdM4DsmOCmp4DjXKeLeOYHvnPCkXBQe5zhF3Acg8AMQoJSzAuTcpoj7IAR+EEKU8myInNMUcR+IwA9EkFIeDZJzmSLugxH4wQhTyhdhcg5TxH1AAj8ggUr5adu2O+cuRdwHJfCDEqqUv0fEbThnlxD3gQn8wESexsR9cAI/OJGnEXGfgMBPQOSpTNwnIfCTEHkqEfeJCPxERJ4riftkBH4yIk+SuE9I4Cck8lxI3Ccl8JMSec4k7hMT+ImJPC8Q98kJ/OREnieI+wIEfgEiz1fEfRECvwiR5564L0TgFyLyyxP3xQj8YkR+WeK+IIFfkMgvR9wXJfCLEvlliPvCBH5hIj89cV+cwC9O5Kcl7gg8Ij8hcSciBJ57Ij8Nced3As/vRH544s4XBJ4viPywxJ0/EHj+QOSHI+48SuB5lMgPQ9x5ksDzJJHvnrjzLIHnWSLfLXHnRQLPi0S+O+LOWQSes4h8N8Sdswk8ZxP5w4k7FxF4LiLyhxF3LibwXEzkdyfupAg8KSK/G3EnTeBJE/nmxJ2rCDxXEflmxJ2rCTxXE/nqxJ0qBJ4qRL4acacagacakb+auFOVwFOVyKeJO9V9c/QLAKANd/BU4+79au7iqUrgqULcqxF5qhF4ribu1Yk8VQg8VxH3ZkSeqwk8aeLenMhzFYEnRdx3I/KkCTwXE/fdiTwpAs9FxP0wIs/FBJ6zifvhRJ6LCDxnEfduiDxnE3heJO7dEXnOIvA8S9y7JfK8SOB5krh3T+R5lsDzKHEfhsjzJIHnD8R9OCLPowSeL4j7sESePxB4fifuwxN5viDwRIS4T0Tk+Z3AI+7zEXkiQuCXJ+7TEnkEfmXiPj2RX5zAL0rclyHyCxP4BYn7ckR+UQK/GHFflsgvSOAXIu7LE/nFCPwixJ17Ir8QgV+AuPMVkV+EwE9O3HmCyC9A4Ccm7rxA5Ccn8JMSd84k8hMT+AmJOxcS+UkJ/GTEnSSRn5DAT0TcuZLIT0bgJyHuVCLyExH4CYg7lYn8JAR+cOJOIyI/AYEfmLjTmMgP7pujXwA54p7y94j4cPSLGMg/Sim3R78I8gR+QOKe8tO2bW8i4iZE/hIiPzCPaAYj7ilfPGpwDlM8rhmQwA9EmFIeDZNzmSLygxH4QQhSyrNBck5TRH4gAj8AIUo5K0TObYrID0LgOydAKRcFyDlOEfkBCHzHhCclFR7nOkXkOyfwnRKclKuC45yniHzHBL5DQpNSJTTOfYrId0rgOyMwKVUD4xqkiHyHBL4jwpLSJCyuRYrId0bgOyEoKU2D4pqkiHxHBL4DQpKyS0hcmxSR74TAH0xAUnYNiGuUIvIdEPgDCUfKIeFwrVJE/mACfxDBSDk0GK5ZisgfSOAPIBQpXYTCtUvp4tqtSOB3JhApXQXCNUzp6hquQuB3JAwpXYbBtUzp8lrOTOB3IggpXQfBNU3p+prORuB3IAQpQ4TAtU0Z4trOQOAbE4CUoQLgGqcMdY1HJfANWfyUIRfftU4Z8lqPROAbsfApQy+8a54y9DXvncA3YNFTplh01z5limvfI4GvzIKnTLXgZiBlqhnohcBXZLFTplxss5Ay5SwcSeArsdApUy+0mUiZeib2JvAVWOSUJRbZbKQsMRt7EPgrWeCUpRbYjKQsNSOtCPwVLG7KkotrVlKWnJWaBD7JwqYsvbBmJmXpmbmWwCdY1BSLGmYnyewkCfyFLGiKBX3ADKWYoQSBv4DFTLGYjzBLKWbpQgJ/JguZYiGfYaZSzNQFBP4MFjHFIp7BbKWYrTMJ/AssYIoFvIAZSzFjZxD4Z1i8FIuXYNZSzNoLBP4JFi7Fwl3BzKWYuWcI/CMsWopFq8DspZi9Jwj8VyxYigWryAymmMFHCPwDFivFYjVgFlPM4lcE/p6FSrFQDZnJFDP5gMCHRUqySDswmylm897ygbdAKRZoR2Y0xYzG4oG3OCkW5wBmNWX5WV028BYmZfmFOZKZTVl6ZpcMvEVJWXpRemF2U5ad3eUCb0FSll2QHpnhlCVneKnAW4yUJRejd2Y5ZblZXibwFiJluYUYiZlOWWqmlwi8RUhZahFGZbZTlpnt6QNvAVKWWYAZmPGUJWZ86sAb/JQlBn82Zj1l+lmfNvAGPmX6gZ+ZmU+ZeuanDLxBT5l60Fdh9lOmnf3pAm/AU6Yd8BXZgZQpd2CqwBvslCkHe3V2IWW6XZgm8AY6ZbqB5r/sRMpUOzFF4A1yylSDzOPsRso0uzF84A1wyjQDzMvsSMoUOzJ04A1uyhSDy2XsSsrwuzJs4A1syvADS56dSRl6Z4YMvEFNGXpQqcPupAy7O8MF3oCmDDug1GeHUobcoaECbzBThhxM2rJLKcPt0jCBN5Apww0k+7FTKUPt1BCBN4gpQw0ix7BbKcPsVveBN4Apwwwgx7NjKUPsWNeBN3gpQwwefbFrKd3vWreBN3Ap3Q8c/bJzKV3vXJeBN2gpXQ8aY7B7Kd3uXneBN2Ap3Q4Y47GDKV3uYFeBN1gpXQ4WY7OLKd3tYjeBN1Ap3Q0U87CTKV3tZBeBN0gpXQ0Sc7KbKd3s5uGBN0Ap3QwQ87OjKV3s6KGBNzgpXQwOa7GrKYfv6mGBNzAphw8M67KzKYfu7CGBNygp4s7h7G7KYbu7e+ANSIq40w07nHLIDu8aeIORIu50xy6n7L7LuwXeQKSIO92y0ym77vQugTcIKeJO9+x2ym673TzwBiBF3BmGHU/ZZce/af0FIuJtuPCXEHeGsm3bp4i4iYgPB7+UkfyjlHLb+os0vYMvpdxFxF9bfo3JiDvDcid/sd8i4mbbtvetvkCzwJdSfoyIf7U6/oTEneGJ/MU+xCnyn1ocvMkjmvuLfNfi2JMSd6bgcc3Fvo+I160O3uoZ/JuI+LbRsWcj7kxF5C/2t1LKTYsDV39Ec/9C/1P7uJMSd6blcc1Fftm27ab2QVvcwb9ucMwZiTtTcyd/kb+0uIuvegdfSnkVEf9X85iTEneW4U7+bNXv4mvfwb+ufLwZiTtLcSd/tr/c3yRXUzvwP1Y+3mzEnSWJ/NmqNrRa4O+fH3nnzNPEnaWJ/Fluax6s5h28u/eniTuEyJ/h+/vvWVRRM/A/VDzWTMQdHhD5F93UOlDNwP+l4rFmIe7wCJF/VrWb5SqBr/2d30mIOzxD5J/UV+Aj4lWl48xC3OEMIv+oLp/BcyLucAGRb0fg6xJ3SBD5L1T7fqbA1yPucAWRr0/g6xB3qEDkIyLi11oHEvjriTtUJPLxsdaBagW+yY+bGoC4QwMiX0eVwLf8obEdE3doaOHIV+tpzUc01Z4bDUDcYQeLRv5jrQPVDPy7isfqmbjDjhaM/LtaBxL4y4g7HGChyP9W85G3wJ9P3OFAi0T+bc2DVQv8tm0fI+KXWsfrjLhDBxaIfJ+Bv3dX+Xg9EHfoyMSR/3Xbtn4Dfx/Cmd5NI+7QoUkjf1f7gC3+Jetdg2MeQdyhY5NF/reIeFP7oNUDv23b6xj/Ll7cYQATRf7N/e+lqq32ASMiSik/RsS/Whx7B+IOg7n/QdXvIuL7g19Kxq/btr1qceAmHzZ2/42Cf7c4dmPiDgMa/E7+x1YHbvlpkrcx1qMacYeBDRr5/235WV5NHtF8Vkr5IU5/bfq25depQNxhEgM9rvnntm23Lb9A08BHDPE8XtxhMgNE/kNE3LT4xuruSim3pU+3R58boI1SynellPdHR+YR78vpD6B5lFJuSimfDj6xD90efU6Atkp/kX9bZov7Z6WUH8rxJ/tTKeXm6HMB7KeUcndwd0oppfo/ZOpOOf2J+uagE/yulPLq6HMA7K+U8mM55inCp3L6XuQ6yumRzV538x+LRzKwvHK6wdzzbv5NmfWRzDnK6RuwHxud3I+llNdLn2DgD0opr0rb0N8VTwv+q5zu6O9Knb9CvS3u2IEXlFPoX5c6N5nvSyk/l45uKJu/Dz6jnL4J+vm/VxHxp2d++W9x+ink7z7/f4r3lgK7Kqc77h8j4of7/156D/0vcfoB2e/i1J2P7V5dTpeBf0r58t0v74UcaK2c/kX+57vyjz2GHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKjg/wFDOUBw8eL9OwAAAABJRU5ErkJggg==","e":1}],"layers":[{"ddd":0,"ind":1,"ty":2,"nm":"cross","refId":"image_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[250,250,0],"ix":2},"a":{"a":0,"k":[188,188,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.559,0.559,0.333],"y":[0,0,0]},"t":35,"s":[0,0,100]},{"t":45,"s":[46,46,100]}],"ix":6}},"ao":0,"ip":0,"op":68,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"circle-3-white","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[248.391,252.391,0],"ix":2},"a":{"a":0,"k":[12,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.563,0.563,0.563],"y":[1.161,1.161,0.998]},"o":{"x":[0.184,0.184,0.184],"y":[0,0,0]},"t":0,"s":[96,96,100]},{"i":{"x":[0.842,0.842,0.842],"y":[1,1,1]},"o":{"x":[0.375,0.375,0.375],"y":[-0.296,-0.296,0.003]},"t":7,"s":[96,96,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":22,"s":[96,96,100]},{"t":34,"s":[0,0,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[375.219,375.219],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"st","c":{"a":0,"k":[0.8,0.243137254902,0.243137254902,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":18,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":true},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[13.609,-2.391],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":68,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"circle-2-red","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":19,"s":[0]},{"t":22,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[248.391,252.391,0],"ix":2},"a":{"a":0,"k":[12,0,0],"ix":1},"s":{"a":0,"k":[96,96,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[375.219,375.219],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"st","c":{"a":0,"k":[0.8,0.243137254902,0.243137254902,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":18,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":true},{"ty":"fl","c":{"a":0,"k":[0.799862132353,0.241343195298,0.241343195298,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[13.609,-2.391],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":68,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"circle-1-line","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[248.391,252.391,0],"ix":2},"a":{"a":0,"k":[12,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[375.219,375.219],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"st","c":{"a":0,"k":[0.8,0.243137254902,0.243137254902,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":18,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.799862132353,0.241343195298,0.241343195298,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":true},{"ty":"tr","p":{"a":0,"k":[13.609,-2.391],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.786],"y":[1]},"o":{"x":[0.699],"y":[0]},"t":0,"s":[0]},{"t":22,"s":[100]}],"ix":1},"e":{"a":0,"k":0,"ix":2},"o":{"a":0,"k":-62,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":68,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"Shadows","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":40,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":50,"s":[100]},{"t":64,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[248.391,252.391,0],"ix":2},"a":{"a":0,"k":[12,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":40,"s":[96,96,100]},{"t":50,"s":[118,118,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[375.219,375.219],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"st","c":{"a":0,"k":[0.8,0.243137254902,0.243137254902,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":18,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":true},{"ty":"fl","c":{"a":0,"k":[1,0.817784926471,0.817784926471,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[13.609,-2.391],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":68,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/src/assets/discord.svg b/src/assets/discord.svg new file mode 100644 index 0000000..6412c05 --- /dev/null +++ b/src/assets/discord.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/assets/info.svg b/src/assets/info.svg new file mode 100644 index 0000000..7b75907 --- /dev/null +++ b/src/assets/info.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/src/assets/link-launch.svg b/src/assets/link-launch.svg new file mode 100644 index 0000000..4d33bbf --- /dev/null +++ b/src/assets/link-launch.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/src/assets/location.svg b/src/assets/location.svg new file mode 100644 index 0000000..6414dd3 --- /dev/null +++ b/src/assets/location.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/assets/mic.json b/src/assets/mic.json new file mode 100644 index 0000000..393e652 --- /dev/null +++ b/src/assets/mic.json @@ -0,0 +1 @@ +{"v":"5.4.4","fr":24,"ip":0,"op":36,"w":300,"h":300,"nm":"Voiceover","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Plavi krug Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[58.32,158.083,0],"ix":2},"a":{"a":0,"k":[18.5,18.5,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":6,"s":[100,0,100],"e":[90,110,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":14,"s":[90,110,100],"e":[110,90,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":19.818,"s":[110,90,100],"e":[100,100,100]},{"t":28}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.164,-0.154],[1.12,0],[0.536,0.033],[3.198,4.606],[0.31,2.553],[0,0.16],[0.195,0.64],[0,0.56],[-0.673,1.585],[-4.89,2.089],[-1.461,0.142],[-0.203,0.182],[-0.16,0],[-0.56,0.192],[-0.48,0],[-0.463,-0.027],[-3.008,-3.876],[0.059,-3.286],[-0.154,-0.164],[0,-0.16],[0.062,-0.631],[0,-0.381],[3.806,-3.287],[1.678,-0.722],[1.733,-0.193]],"o":[[-1.12,0],[-0.517,-0.28],[-6.049,-0.375],[-1.566,-2.256],[0,-0.16],[0.195,-0.64],[0,-0.56],[0.401,-1.608],[2.107,-4.964],[1.366,-0.583],[0.231,-0.022],[0.16,0],[0.56,0.192],[0.48,0],[0.441,0.268],[5.181,0.305],[1.996,2.571],[-0.004,0.195],[0,0.16],[-0.253,0.619],[0,0.381],[0.167,5.27],[-1.361,1.176],[-1.667,0.718],[-0.194,0.021]],"v":[[1.672,18.24],[-1.688,18.24],[-3.323,18.051],[-16.275,9.304],[-18.248,1.92],[-18.248,1.44],[-18.248,-0.48],[-18.248,-2.16],[-17.349,-7.046],[-6.72,-17.484],[-2.371,-18.12],[-1.688,-18.24],[-1.208,-18.24],[0.472,-18.24],[1.912,-18.24],[3.311,-18.095],[15.047,-10.958],[18.114,-2.244],[18.232,-1.68],[18.232,-1.2],[18.112,0.698],[18.112,1.842],[11.907,14.317],[7.372,17.166],[2.237,18.118]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.500096250048,0.797767130534,0.689887731216,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[18.267,18.741],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":36,"st":-12,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Zuti krug Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[58.5,97.5,0],"ix":2},"a":{"a":0,"k":[6.5,15,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":11,"s":[100,0,100],"e":[90,110,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":19,"s":[90,110,100],"e":[110,90,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":24.818,"s":[110,90,100],"e":[100,100,100]},{"t":33}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.215,0.778],[-0.722,0.006],[0.01,-3.704],[3.896,-0.288],[0.608,3.724],[-0.006,0.82]],"o":[[0.722,-0.006],[4.104,1.061],[-0.011,3.88],[-3.68,0.272],[0.006,-0.82],[0.677,-3.331]],"v":[[-1.218,-7.431],[0.949,-7.449],[7.244,-0.122],[0.403,7.177],[-7.255,1.013],[-7.236,-1.447]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.790365839939,0.902092189415,0.046071512559,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[7.473,8.53],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.727,0.505],[0.001,0.078],[-0.72,0],[-0.002,-0.072]],"o":[[0.002,-0.078],[0.72,0],[0.002,0.072],[-0.718,0.538]],"v":[[-1.084,-0.143],[-1.082,-0.377],[1.078,-0.377],[1.084,-0.161]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.964311427696,0.985856418984,0.805224669213,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[7.339,1.242],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0.8],[-0.073,0.012],[0.592,-0.816],[0.063,0.034]],"o":[[0.074,-0.003],[0.554,0.824],[-0.071,0.009],[0,-0.8]],"v":[[-0.397,-1.213],[-0.176,-1.235],[-0.195,1.226],[-0.397,1.187]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.865891041475,0.94121315152,0.32971385881,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0.413,8.317],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":36,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Note Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[87.583,57.688,0],"ix":2},"a":{"a":0,"k":[8.125,16.875,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":11,"s":[100,0,100],"e":[90,110,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":19,"s":[90,110,100],"e":[110,90,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":24.818,"s":[110,90,100],"e":[100,100,100]},{"t":33}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.16,0],[0.141,-0.983],[0,-0.303],[-0.029,-2.634],[1.966,0.59],[-0.719,0.894],[-1.237,-0.615],[0,2.945],[2.248,-0.686],[-0.032,-0.618],[-0.164,-2.79],[1.188,-0.446],[0.673,0.957],[0.235,0.301],[0,0.4],[-1.519,-1.454],[1.847,3.205],[-0.372,0.12],[-2.994,0.993],[-0.34,0.226]],"o":[[-0.133,0.984],[-0.044,0.306],[0.003,2.634],[0.022,2.027],[-1.091,-0.327],[0.648,-0.806],[0,-2.909],[-2.441,0.778],[-0.617,0.188],[0.143,2.791],[0.067,1.145],[-1.105,0.415],[-0.219,-0.312],[0,-0.4],[1.293,-0.659],[-0.16,-3.608],[0.523,-0.168],[3.002,-0.968],[0.374,-0.124],[0.16,0]],"v":[[7.2,-8.985],[6.797,-6.033],[6.624,-5.123],[6.671,2.778],[2.982,5.52],[2.335,3.395],[5.378,3.027],[5.378,-5.663],[-1.546,-3.468],[-2.28,-2.337],[-1.917,6.04],[-3.191,8.573],[-6.498,7.521],[-7.2,6.615],[-7.2,5.415],[-3.121,5.277],[-4.576,-4.994],[-3.308,-5.402],[5.695,-8.321],[6.72,-8.985]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.668604891908,0.105824683694,0.003186231501,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[7.2,9.015],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":36,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"Voiceover Proba Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[151,273,0],"ix":2},"a":{"a":0,"k":[66,242,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":7,"s":[100,0,100],"e":[90,110,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":15,"s":[90,110,100],"e":[110,90,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":20.818,"s":[110,90,100],"e":[100,100,100]},{"t":29}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.098,-0.51],[0.406,-0.015],[0.037,0.525],[-0.404,0.018]],"o":[[-0.034,0.451],[-0.427,0.015],[-0.032,-0.449],[0.429,-0.019]],"v":[[0.82,-0.03],[0.098,0.6],[-0.788,0.031],[-0.081,-0.597]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.415211756089,0.586472694547,0.462977211148,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[61.091,84.732],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.452,-0.039],[-0.314,-1.09],[1.169,-0.12],[0.554,0.46],[-0.973,0.368]],"o":[[0.94,0.029],[0.182,0.632],[-0.744,0.076],[-0.682,-0.567],[0.421,-0.159]],"v":[[0.152,-1.445],[2.363,-0.235],[0.148,1.408],[-1.863,0.786],[-1.145,-1.25]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.415211756089,0.586472694547,0.462977211148,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[52.075,87.977],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.26,0.011],[0.758,0.361],[0.032,1.415],[-1.336,0.654],[-1.809,-1.21],[1.981,-1.356]],"o":[[-0.741,0.027],[-1.145,-0.546],[-0.034,-1.52],[1.923,-0.941],[1.986,1.329],[-0.942,0.645]],"v":[[-0.484,3.761],[-2.8,3.248],[-4.716,0.493],[-2.901,-2.848],[2.763,-2.481],[2.763,2.791]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.414564633837,0.581664919386,0.458786609126,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[40.223,86.619],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.276,-2.985],[2.928,-0.018],[-0.014,2.208],[-2.127,-0.105]],"o":[[0.259,2.585],[-2.908,0.018],[0.017,-2.72],[3.146,0.155]],"v":[[5.429,-0.051],[-0.006,5.196],[-5.69,-0.114],[-0.187,-5.109]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.414564633837,0.581664919386,0.458786609126,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[51.239,98.118],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.478,-0.01],[-0.026,1.518],[-1.494,0.006],[-0.005,-1.581]],"o":[[-1.585,0.011],[0.025,-1.471],[1.749,-0.007],[0.006,1.774]],"v":[[0.274,2.764],[-2.74,-0.151],[-0.047,-2.768],[2.76,-0.249]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.414847938687,0.581718414905,0.464152885886,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[66.858,64.098],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.47,-0.088],[-0.002,-1.603],[2.689,-0.513],[1.012,-0.196],[-0.16,0.662],[-0.337,1.652],[-0.73,-0.034]],"o":[[0.002,1.603],[-2.689,0.509],[-1.013,0.193],[-0.573,0.111],[0.396,-1.646],[0.152,-0.745],[3.471,0.16]],"v":[[6.062,-3.481],[6.069,1.327],[-1.998,2.856],[-5.032,3.458],[-5.91,2.742],[-5.526,-2.246],[-4.335,-3.227]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.414564633837,0.581664919386,0.458786609126,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[90.433,70.801],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.005,1.66],[-1.735,0.001],[0.003,-1.535],[1.681,0.005]],"o":[[0.005,-1.695],[1.89,-0.002],[-0.003,1.47],[-1.635,-0.005]],"v":[[-2.762,-0.174],[-0.352,-2.524],[2.764,0.008],[-0.124,2.521]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.414847938687,0.581718414905,0.464152885886,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[81.977,89.291],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.65,-0.132],[-0.035,0.915],[-0.749,-0.025],[0.069,-0.862]],"o":[[-0.811,-0.142],[0.035,-0.914],[0.687,0.022],[-0.064,0.798]],"v":[[0.036,1.307],[-1.334,0.031],[0.052,-1.282],[1.299,0.034]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.415211756089,0.586472694547,0.462977211148,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[50.066,155.093],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.065,0.012],[0.008,2.314],[-0.585,1.604],[2.4,-0.24],[2.717,-0.458],[-0.025,0.715],[-0.062,0.993],[2.865,3.496],[1.722,1.37],[-3.37,-1.83],[-1.892,-2.552],[-1.131,-2.17],[0.001,-0.258],[0.004,-5.204]],"o":[[-0.008,-2.314],[-0.603,-1.602],[0.046,-2.388],[-2.737,0.274],[-0.658,0.111],[0.035,-0.996],[0.289,-4.654],[-1.385,-1.69],[3.692,1.095],[2.95,1.602],[1.131,2.17],[0.135,0.198],[-0.012,5.204],[-0.066,-0.003]],"v":[[10.098,17.12],[10.075,10.177],[10.068,5.369],[7.696,3.037],[-0.51,3.422],[-1.454,2.613],[-1.44,-0.377],[-5.862,-12.367],[-10.313,-17.141],[0.112,-12.425],[6.697,-5.64],[10.089,0.871],[10.312,1.529],[10.293,17.141]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.414564633837,0.581664919386,0.458786609126,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[86.427,61.951],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.015,1.554],[-3.631,-0.387],[-2.367,-0.271],[-3.233,-0.371],[-3.044,-0.267],[-0.065,-1.223],[-0.254,-4.05],[-0.473,-2.809],[1.426,-0.18],[4.253,-0.529],[4.135,-0.521],[4.209,-0.561],[0.008,9.411]],"o":[[3.632,0.378],[2.369,0.252],[3.233,0.37],[3.037,0.349],[1.04,0.091],[0.216,4.059],[0.177,2.822],[0.242,1.435],[-4.252,0.535],[-4.136,0.515],[-4.212,0.53],[-0.013,-9.411],[-0.001,-1.554]],"v":[[-19.745,-16.448],[-8.849,-15.311],[-1.746,-14.519],[7.952,-13.394],[17.066,-12.387],[18.661,-10.898],[19.165,1.281],[19.547,9.749],[18.043,11.641],[5.292,13.29],[-7.124,14.772],[-19.751,16.448],[-19.787,-11.785]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.571280086742,0.705128508923,0.589520981733,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[48.845,93.133],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[4.722,0.301],[2.978,0.198],[4.362,0.297],[1.352,0.102],[4.446,0.315],[3.741,0.114],[0.883,-0.077],[-0.427,2.983],[-0.34,0.014],[-2.988,0.334],[-0.313,0.479],[-2.242,2.649],[0.429,-0.641],[0.894,-1.958],[-1.018,0.059],[-3.441,0.378],[0.064,0.467],[-3.404,4.801],[-1.568,1.233],[-3.908,-0.536],[-0.564,-0.169],[-0.935,-1.207],[-1.188,-2.289],[-0.115,-2.2],[0.02,-1.158],[-0.876,0.048],[-2.75,0.156],[0.03,-1.889],[0.219,-0.283],[0.358,0.009],[2.797,0.101],[0.076,-1.688],[0.114,-0.876],[-1.273,0.239],[-2.857,0.563],[-0.542,-0.602],[0.202,-2.282]],"o":[[-4.721,-0.319],[-2.979,-0.19],[-4.363,-0.29],[-1.349,-0.092],[-4.444,-0.336],[-3.73,-0.264],[-0.867,-0.026],[0.022,-2.991],[0.04,0.369],[2.988,-0.121],[0.673,-0.075],[1.908,-2.915],[-0.034,0.849],[-1.19,1.78],[-0.318,0.697],[3.452,-0.199],[0.751,-0.082],[-0.807,-5.901],[1.158,-1.633],[3.918,0.073],[0.565,0.169],[1.435,0.633],[1.565,2.019],[1.044,2.012],[0.06,1.155],[-0.014,0.816],[2.747,-0.151],[1.92,-0.109],[-0.005,0.311],[-0.309,0.226],[-2.793,-0.069],[-1.651,-0.06],[-0.039,0.876],[-0.17,1.309],[2.862,-0.536],[0.595,-0.118],[-0.017,2.285],[0,0]],"v":[[33.709,17.669],[19.545,16.716],[10.605,16.211],[-2.48,15.28],[-6.533,15.057],[-19.881,14.275],[-31.074,13.553],[-33.686,13.346],[-33.517,4.375],[-32.939,4.736],[-23.968,4.488],[-22.675,3.617],[-15.918,-4.263],[-16.815,-2.076],[-20.095,3.429],[-19.521,4.466],[-9.172,3.749],[-8.542,2.727],[-4.427,-13.288],[-0.114,-17.397],[11.639,-17.133],[13.333,-16.626],[16.742,-13.687],[21.103,-7.396],[22.526,-1.021],[22.533,2.453],[23.673,3.491],[31.924,3.184],[33.832,5.067],[33.699,5.993],[32.67,6.24],[24.305,6.506],[22.324,8.443],[22.223,11.072],[23.452,12.267],[32.029,10.61],[33.816,10.783],[33.743,17.635]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.571280086742,0.705128508923,0.589520981733,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[62.782,61.436],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.034,0.275],[-2.479,1.319],[-1.809,0.361],[-0.248,-0.444],[0.217,-0.261],[-0.475,-1.821],[1.502,-0.007],[2.271,0.042]],"o":[[1.848,-2.232],[1.622,-0.863],[0.41,-0.082],[0.194,0.348],[-1.12,1.346],[0.369,1.416],[-2.272,0.01],[-0.901,-0.017]],"v":[[-6.456,3.651],[-0.039,-1.674],[5.071,-3.607],[6.262,-3.482],[5.72,-2.654],[4.453,1.953],[3.162,3.494],[-3.654,3.492]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.557635198855,0.733546717027,0.59341693953,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[43.287,227.991],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.651,-0.341],[-0.012,-1.455],[1.994,0.148],[-0.08,1.677]],"o":[[1.989,0.004],[0.013,1.5],[-2.01,-0.15],[0.077,-1.613]],"v":[[-0.188,-2.803],[3.264,-0.285],[0.089,2.995],[-3.197,0.151]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.414564633837,0.581664919386,0.458786609126,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[59.636,138.772],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.319,-2.962],[2.762,0.01],[0.005,2.518],[-3.1,0.122]],"o":[[0.32,2.558],[-2.733,-0.009],[-0.006,-3.265],[2.285,-0.09]],"v":[[4.644,0.133],[-0.354,4.735],[-4.959,0.466],[-0.124,-4.656]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.414564633837,0.581664919386,0.458786609126,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[44.823,136.992],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.001,2.235],[-0.014,1.519],[0.851,-0.096],[5.03,-0.698],[2.597,-0.33],[-0.068,0.779],[-0.19,2.177],[-0.207,2.412],[-0.18,2.178],[-0.934,-0.121],[-3.347,-0.401],[-3.019,-0.455],[0.002,2.31],[0.004,0.999],[-0.037,0.031],[-0.04,-0.027],[0.002,-3.068],[0.01,-8.29],[0.07,0.002]],"o":[[0.001,-1.519],[0.005,-0.591],[-5.046,0.573],[-2.593,0.359],[-0.696,0.088],[0.191,-2.177],[0.211,-2.411],[0.187,-2.177],[0.072,-0.871],[3.343,0.433],[3.032,0.363],[2.329,0.351],[-0.001,-0.999],[0.037,-0.031],[0.04,0.027],[0.006,3.068],[-0.006,8.29],[-0.07,-0.001],[0.001,-2.235]],"v":[[12.278,10.37],[12.286,5.812],[11.448,5.024],[-3.659,6.969],[-11.453,7.952],[-12.448,7.052],[-11.915,0.519],[-11.247,-6.713],[-10.738,-13.248],[-9.305,-14.328],[0.74,-13.149],[9.827,-11.993],[12.28,-13.988],[12.266,-16.985],[12.377,-17.077],[12.496,-16.997],[12.513,-7.792],[12.484,17.077],[12.274,17.074]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.571280086742,0.705128508923,0.589520981733,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[84.224,96.089],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.577,-0.157],[0.003,0.794],[-0.56,0.07],[-10.746,1.325],[-1.353,0.129],[0.055,0.891],[0.194,3.905],[0.335,2.902],[0.874,0.104],[9.481,1.14],[2.26,0.274],[0.406,0.401],[0.001,0.635],[-0.402,-0.036],[-2.785,-0.221],[-2.986,-0.196],[-3.344,-0.221],[-2.827,-0.194],[-4.538,-0.311],[-2.988,-0.168],[-2.343,-0.247],[-0.233,-0.173],[-0.031,-1.665],[0.387,0],[1.788,0.187],[4.972,0.485],[0.108,-1.203],[0.63,-6.198],[-1.39,0.169],[-6.696,0.888],[0.027,-2.938],[0.258,-0.983],[2.967,-0.236],[3.479,-0.293],[2.296,-0.185],[3.678,-0.302],[2.218,-0.157],[3.712,-0.378],[2.535,-0.194]],"o":[[-0.003,-0.795],[0.398,-0.469],[10.745,-1.332],[1.349,-0.166],[0.9,-0.086],[-0.24,-3.905],[-0.145,-2.909],[-0.1,-0.87],[-9.482,-1.129],[-2.258,-0.271],[-0.506,-0.061],[-0.001,-0.635],[0.309,-0.312],[2.783,0.252],[2.983,0.237],[3.344,0.219],[2.827,0.187],[4.537,0.311],[2.985,0.205],[2.351,0.132],[0.28,0.03],[0.378,1.653],[0.012,0.674],[-1.805,0],[-4.968,-0.52],[-1.194,-0.116],[-0.556,6.205],[-0.139,1.366],[6.705,-0.816],[2.895,-0.384],[-0.009,0.99],[-2.955,0.38],[-3.48,0.278],[-2.295,0.193],[-3.678,0.296],[-2.216,0.181],[-3.721,0.263],[-2.528,0.256],[-1.58,0.122]],"v":[[-33.857,18.78],[-33.866,16.396],[-32.35,15.785],[-0.124,11.715],[3.916,11.18],[5.055,9.717],[4.578,-2.007],[4.194,-10.737],[2.848,-12.065],[-25.611,-15.344],[-32.404,-16.038],[-33.86,-16.499],[-33.864,-18.404],[-32.754,-18.744],[-24.392,-18.207],[-15.434,-17.597],[-5.402,-16.939],[3.08,-16.394],[16.695,-15.504],[25.656,-14.943],[32.7,-14.437],[33.487,-14.182],[33.631,-9.188],[32.614,-8.695],[27.251,-9.257],[12.359,-10.933],[10.872,-9.672],[9.245,8.945],[10.662,10.317],[30.764,7.756],[33.648,10.301],[33.543,13.274],[24.643,13.999],[14.211,14.92],[7.32,15.432],[-3.712,16.351],[-10.363,16.864],[-21.515,17.782],[-29.124,18.316]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.653126974667,0.858819400563,0.702903418447,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[62.96,93.185],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.055,-1.156],[0.998,-3.941],[1.016,-1.388],[1.391,0.639],[-0.088,1.097],[-0.099,0.255],[0.07,6.261],[0.699,2.81],[1.506,2.804],[0.265,0.956],[-0.56,0.364],[-1.444,-1.243],[-0.928,-3.037],[-0.442,-4.913]],"o":[[-0.327,3.992],[-0.449,1.773],[-0.85,1.162],[-0.957,-0.439],[0.022,-0.272],[2.274,-5.845],[-0.033,-2.911],[-0.76,-3.055],[-0.463,-0.862],[-0.203,-0.733],[1.386,-0.899],[2.526,2.174],[1.449,4.745],[0.104,1.153]],"v":[[6.424,4.933],[5.269,16.898],[2.681,21.403],[-2.002,22.183],[-3.92,18.832],[-3.736,18.026],[-0.363,-0.146],[-2.109,-8.654],[-5.281,-17.525],[-6.221,-20.348],[-5.407,-21.922],[-0.677,-21.239],[3.768,-13.064],[6.198,1.478]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.28854750091,0.548825432273,0.274023976045,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[115.066,91.921],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 25","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.987,1.406],[-0.567,0.537],[-3.03,1.756],[-6.005,-0.37],[0.32,-0.26],[-0.509,-7.405],[1.464,-0.196],[3.103,-0.156],[-0.611,1.519],[-1.1,2.161],[0.675,-0.771],[1.21,-1.792],[0.506,-0.075],[3.069,-0.086],[-0.184,0.49],[-0.6,1.706],[-0.012,0.073]],"o":[[0.567,-0.537],[2.95,-1.896],[5.248,-3.042],[0.074,0.556],[-5.94,4.83],[0.1,1.45],[-3.085,0.414],[-1.684,0.085],[0.919,-2.284],[-0.508,0.916],[-1.42,1.622],[-0.282,0.418],[-3.059,0.453],[-0.454,0.013],[0.018,-1.871],[0.038,-0.064],[0.721,-2.372]],"v":[[-10.869,-0.299],[-9.168,-1.91],[-0.085,-7.192],[16.757,-11.116],[16.039,-10.113],[8.567,8.521],[7.135,10.387],[-2.165,11.043],[-3.329,9.251],[0.358,2.989],[-1.651,5.321],[-5.733,10.327],[-6.932,11.033],[-16.14,11.319],[-16.646,10.657],[-15.17,5.446],[-15.096,5.241]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.623779416552,0.776052437577,0.646610933192,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[45.911,55.154],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 26","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.46,0.115],[4.725,-1.202],[6.288,-4.068],[1.215,-5.801],[0.285,-5.256],[0.063,-1.916],[0.827,0.984],[0.214,1.966],[-2.067,6.559],[-3.727,3.37],[-5.73,1.653],[-2.022,0.438],[-2.721,-0.446],[-2.118,-0.826],[-2.645,-1.545],[-2.393,-2.62],[0.026,-0.345],[4.495,1.502]],"o":[[-4.733,-0.98],[-7.252,1.844],[-5.067,3.278],[-1.093,5.217],[-0.104,1.914],[-1.544,0.361],[-1.338,-1.592],[-0.746,-6.843],[1.46,-4.633],[4.531,-4.097],[1.999,-0.577],[2.724,-0.59],[2.19,0.359],[2.86,1.116],[3.021,1.764],[0.228,0.249],[-3.499,-3.123],[-0.448,-0.15]],"v":[[18.714,-19.84],[4.495,-19.944],[-15.841,-11.08],[-24.778,2.833],[-25.776,18.595],[-25.97,24.344],[-29.253,22.706],[-31.173,17.126],[-29.4,-3.083],[-21.602,-15.053],[-6.108,-23.241],[0.021,-24.115],[8.181,-24.079],[14.764,-23.08],[23.247,-19.514],[31.539,-13.094],[31.893,-12.24],[20.092,-19.489]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.105607373107,0.199204598221,0.05632796194,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[56.675,34.098],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 27","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0.287],[-0.029,19.787],[-0.397,0.352],[-0.01,-19.764],[-0.266,-0.526],[0,0]],"o":[[-0.2,-0.044],[0.032,-19.787],[0,-0.42],[0.007,19.764],[0,0.554],[-0.001,0],[0,0]],"v":[[0.117,30.479],[-0.222,30.108],[-0.142,-29.252],[0.095,-30.494],[0.118,28.798],[0.302,30.446],[0.215,30.494]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.206855399936,0.116997423359,0.029376620872,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[102.17,111.026],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 33","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.178,1.213],[-6.313,0.174],[-0.011,-0.722],[5.784,0.049],[-0.109,-1.062]],"o":[[6.311,-0.014],[0.011,0.722],[-5.785,0.001],[-1.005,-0.009],[-0.333,-1.204]],"v":[[-9.421,-1.822],[9.51,-1.588],[9.544,0.577],[-7.81,0.557],[-9.211,1.835]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.32189764883,0.458488374598,0.367480259316,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[63.203,195.395],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 34","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.018,1.12],[-7.291,0.164],[-2.585,0.033],[-0.118,-0.661],[0.498,-0.356],[1.383,-0.526],[-0.002,-0.588],[0.515,-0.015],[5.415,0.037],[0.35,0.319],[1.489,1.106]],"o":[[7.29,-0.35],[2.582,-0.057],[0.402,-0.006],[0.133,0.619],[-1.199,0.859],[-0.487,0.186],[-0.414,0.404],[-5.418,0.163],[-0.443,-0.003],[-1.415,-1.23],[-0.884,-0.657]],"v":[[-15.406,-2.218],[6.472,-2.523],[14.227,-2.695],[15.273,-2.218],[14.64,-0.833],[10.833,1.365],[9.96,2.329],[8.499,2.716],[-7.742,2.469],[-8.97,2.095],[-13.921,0.288]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.210570750517,0.409182888854,0.293587299422,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[62.752,191.479],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 35","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.507,1.405],[-8.548,0.188],[-1.45,-0.523],[0.85,-1.497],[3.231,-0.074],[4.793,0.04],[1.682,0.104],[0.456,0.437]],"o":[[8.545,-0.572],[1.488,-0.033],[0.701,1.407],[-3.234,-0.24],[-4.791,0.11],[-1.683,-0.014],[-0.55,-0.034],[-0.091,-1.454]],"v":[[-15.333,-2.107],[10.317,-2.383],[14.739,-2.125],[14.989,2.203],[5.297,2.31],[-9.083,2.325],[-14.104,2.576],[-15.691,2.203]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.32189764883,0.458488374598,0.367480259316,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[63.037,187.058],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 36","np":2,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.427,0.213],[-0.869,0.117],[-3.031,0.249],[-0.309,0.364],[-0.518,-0.084],[-0.987,-1.784],[0.116,-0.918],[0.615,-0.742],[1.186,0.112],[2.241,0.232],[3.766,0.567],[0.857,0.527],[-0.669,0.997],[-1.461,0.489]],"o":[[0.87,0.431],[3.017,-0.406],[0.451,-0.037],[0.415,0.343],[1.968,0.317],[0.507,0.917],[-0.112,0.883],[-1.179,0.954],[-2.242,-0.213],[-3.778,-0.391],[-0.927,-0.139],[0.062,-1.15],[1.013,-1.511],[0.449,-0.15]],"v":[[-6.464,-3.69],[-3.781,-3.537],[5.295,-4.446],[6.47,-4.917],[7.896,-4.43],[12.445,-1.388],[12.374,1.403],[11.557,3.962],[7.895,4.086],[1.165,3.467],[-10.191,2.548],[-12.952,2.053],[-11.892,-1.1],[-7.801,-3.214]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.322247763241,0.458550726199,0.371991295908,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[63.624,219.384],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 37","np":2,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.001,0.65],[-3.147,-0.083],[-3.936,-0.161],[-3.54,-0.119],[-1.233,-0.038],[-0.034,0.666],[-0.034,3.504],[1.879,-0.137],[3.08,-0.289],[2.096,-0.19],[3.28,-0.284],[3.246,-0.256],[0,0.81],[-2.648,0.246],[-3.203,0.284],[-2.297,0.199],[-3.282,0.294],[-1.901,0.156],[0.021,-0.346],[0.294,-2.806],[0.178,-1.706],[-0.066,-1.32],[0.504,0.114],[1.7,0.13],[4.884,0.326],[4.005,0.294],[2.169,0.304]],"o":[[3.151,-0.078],[3.936,0.103],[3.537,0.145],[1.224,0.042],[0.676,0.021],[0.18,-3.496],[0.018,-1.832],[-3.084,0.224],[-2.095,0.196],[-3.279,0.298],[-3.244,0.282],[0,-0.809],[2.65,-0.235],[3.202,-0.299],[2.297,-0.203],[3.283,-0.285],[1.9,-0.17],[0.58,-0.048],[-0.174,2.818],[-0.179,1.704],[-0.135,1.294],[0.037,0.741],[-1.684,-0.378],[-4.88,-0.372],[-4.009,-0.267],[-2.18,-0.161],[0.001,-0.65]],"v":[[-20.285,5.107],[-10.847,5.416],[0.962,5.883],[11.572,6.368],[15.261,6.572],[16.171,5.67],[16.646,-4.822],[14.814,-6.613],[5.577,-5.723],[-0.714,-5.195],[-10.549,-4.277],[-20.287,-3.503],[-20.288,-5.932],[-12.339,-6.64],[-2.736,-7.557],[4.161,-8.083],[14.005,-8.99],[19.708,-9.453],[20.225,-8.732],[19.646,-0.283],[19.332,4.834],[19.03,8.759],[18.056,9.387],[12.948,9.012],[-1.717,8.215],[-13.746,7.481],[-20.289,7.057]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.653126974667,0.858819400563,0.702903418447,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[49.387,155.57],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 38","np":2,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.346,0.789],[-0.036,0.456],[0.108,3.987],[1.627,0.391],[-0.311,1.426],[-1.427,0.01],[-5.34,-0.014],[-0.387,-0.347],[1.151,-1.766],[-0.308,-3.487],[-0.63,-0.997],[0.461,-0.042],[3.422,-0.254]],"o":[[0.285,-0.353],[0.311,-3.98],[-0.04,-1.473],[-1.097,-0.264],[-0.161,-1.434],[5.34,-0.034],[0.481,0.001],[0.273,2.038],[-1.885,2.893],[0.104,1.184],[-0.058,0.642],[-3.418,0.312],[-0.571,0.043]],"v":[[-6.19,9.671],[-5.742,8.461],[-5.553,-3.49],[-7.654,-6.345],[-9.359,-8.792],[-7.971,-10.426],[8.049,-10.433],[9.397,-10.05],[8.172,-4.378],[5.735,5.183],[6.743,8.445],[5.706,9.218],[-4.541,10.211]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.210570750517,0.409182888854,0.293587299422,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[63.35,206.023],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 39","np":2,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.303,0.318],[0.001,2.87],[-0.886,0.086],[-6.528,0.585],[-4.463,0.343],[0.096,-1.686],[0.317,-3.463],[1.513,0.065],[2.667,0.237],[1.952,0.073],[2.757,0.064],[3.911,0.162]],"o":[[0,-2.87],[0.792,-0.622],[6.523,-0.632],[4.459,-0.399],[1.672,-0.129],[-0.197,3.47],[-0.139,1.518],[-2.673,-0.115],[-1.951,-0.173],[-2.754,-0.104],[-3.913,-0.091],[-0.403,-0.016]],"v":[[-18.727,5.194],[-18.728,-3.416],[-16.072,-3.953],[3.509,-5.74],[16.885,-6.937],[18.632,-5.117],[18.096,5.295],[16.26,7.001],[8.242,6.62],[2.376,6.381],[-5.888,6.043],[-17.622,5.57]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.571280086742,0.705128508923,0.589520981733,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[47.828,155.484],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 40","np":2,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.402,-0.273],[-0.013,0.991],[0.156,5.342],[0.02,3.035],[0.016,1.037],[0.006,0.2],[-0.057,8.824],[0.012,2.317],[0.17,5.38],[-0.374,0.223],[-0.692,-2.241],[-0.078,-1.357],[0.024,-4.298],[0.001,-0.43],[-0.004,-19.464],[-0.238,-0.409]],"o":[[-0.761,0.02],[0.071,-5.342],[-0.088,-3.033],[-0.007,-1.038],[-0.086,-0.188],[-0.265,-8.82],[0.015,-2.317],[-0.028,-5.38],[0.036,-0.391],[1.978,-1.282],[0.4,1.294],[0.247,4.294],[-0.241,0.411],[-0.007,19.464],[0,0.433],[-1.331,0.565]],"v":[[-1.165,40.875],[-2.305,39.763],[-2.478,23.736],[-2.54,14.631],[-2.586,11.519],[-2.67,10.931],[-2.938,-15.536],[-2.896,-22.488],[-2.976,-38.628],[-2.486,-39.613],[2.084,-37.986],[2.737,-34.006],[2.971,-21.117],[2.849,-19.827],[2.847,38.565],[2.993,39.857]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.205305869907,0.129332778033,0.029387230967,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[99.294,101.648],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 41","np":2,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.218,-0.171],[-0.003,1.035],[-2.997,0.359],[-2.528,0.27],[-2.763,0.289],[-2.607,0.277],[-2.684,0.278],[-2.722,0.323],[0.004,-0.724],[0.167,-5.234],[0.21,-6.66],[0.382,-2.523],[0.467,-1.657],[1.968,-0.972],[4.222,-0.674],[2.92,0.254],[3.046,0.778],[3.402,2.521],[0.357,-0.021],[0.5,1.964],[-3.214,-1.323],[-3.913,-0.775],[-2.331,-0.128],[-3.887,1.859],[-1.344,0.608],[-0.168,0.625],[0.261,4.69],[0.156,9.302],[-0.114,1.081],[0.662,-0.066],[1.856,-0.187],[2.092,-0.214],[3.001,-0.294],[2.727,-0.266],[3.042,-0.281]],"o":[[0.003,-1.035],[3.014,-0.187],[2.524,-0.301],[2.763,-0.295],[2.608,-0.272],[2.684,-0.286],[2.727,-0.283],[0.884,-0.105],[-0.026,5.24],[-0.213,6.666],[-0.082,2.59],[-0.251,1.656],[-0.616,2.187],[-3.802,1.877],[-2.877,0.46],[-3.142,-0.273],[-4.036,-1.03],[-0.253,-0.187],[-1.045,-1.731],[2.429,2.469],[3.69,1.518],[2.313,0.458],[4.364,0.239],[1.331,-0.637],[0.606,-0.274],[1.217,-4.538],[-0.517,-9.299],[-0.018,-1.069],[0.084,-0.8],[-1.857,0.185],[-2.092,0.212],[-2.999,0.307],[-2.726,0.267],[-3.04,0.296],[-2.215,0.205]],"v":[[-25.043,-21.115],[-25.034,-24.22],[-16.026,-25.118],[-8.441,-25.909],[-0.154,-26.814],[7.673,-27.593],[15.719,-28.497],[23.905,-29.296],[24.858,-28.355],[24.806,-12.637],[24.833,7.347],[24.471,15.099],[23.93,20.094],[20.063,24.619],[8.198,28.941],[-0.494,29.116],[-9.773,27.598],[-21.135,22.737],[-21.978,22.33],[-24.337,16.806],[-15.966,22.664],[-4.513,25.946],[2.477,26.615],[14.765,23.653],[18.773,21.774],[19.811,20.42],[21.242,6.584],[20.987,-21.325],[20.773,-24.534],[19.756,-25.426],[14.186,-24.875],[7.911,-24.229],[-1.088,-23.314],[-9.271,-22.547],[-18.39,-21.635]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.653126974667,0.858819400563,0.702903418447,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[54.137,148.442],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 42","np":2,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.499,-1.034],[0.023,-4.438],[0.302,-0.393],[1.928,0.879],[-0.099,18.507],[-0.232,3.739],[-0.899,2.792],[-1.31,1.214],[-1.742,-1.637],[0.148,-0.322],[0.203,-1.553],[0.093,-2.876],[0.022,-0.686],[-0.008,-7.578],[0.087,-3.309],[0.518,-0.782],[0,-4.086]],"o":[[-0.013,4.438],[-0.002,0.427],[-2.09,-0.206],[0.007,-18.507],[0.02,-3.747],[0.18,-2.888],[0.474,-1.474],[1.745,-1.618],[0.271,0.346],[-0.655,1.431],[-0.156,2.877],[0.038,0.686],[0.084,7.579],[0.004,3.31],[-0.032,0.843],[0,4.085],[0.483,1.036]],"v":[[2.198,26.887],[2.153,40.2],[1.988,41.477],[-4.079,40.012],[-4.017,-15.51],[-3.776,-26.759],[-2.855,-35.402],[-1.166,-39.777],[3.844,-39.84],[3.812,-38.826],[2.599,-34.332],[2.515,-25.7],[2.518,-23.643],[2.55,-0.907],[2.518,9.023],[2.207,11.525],[2.206,23.782]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.205305869907,0.129332778033,0.029387230967,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[26.896,100.44],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 43","np":2,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.587,-0.206],[-0.283,-0.148],[-6.179,-3.512],[-0.544,-0.658],[0.127,-0.304],[0.292,0.012],[4.157,-0.057],[16.271,-0.022],[1.967,0.34],[-0.081,0.653],[-1.199,1.509],[-6.722,1.159],[-1.531,0.231],[-1.387,-0.109],[-6.17,-0.779]],"o":[[-0.156,0.533],[6.311,3.285],[0.732,0.416],[0.2,0.241],[-0.146,0.352],[-4.158,-0.159],[-16.271,0.225],[-1.953,0.002],[-0.642,-0.111],[0.219,-1.767],[4.331,-5.448],[1.526,-0.263],[1.402,-0.08],[6.195,0.491],[0.601,0.076]],"v":[[13.036,-6.284],[13.635,-5.562],[32.069,5.149],[34.055,6.672],[34.424,7.5],[33.566,7.683],[21.093,7.704],[-27.72,7.843],[-33.58,7.932],[-34.47,6.973],[-32.88,1.96],[-16.067,-7.496],[-11.473,-8.193],[-7.312,-7.865],[11.264,-6.301]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.414564633837,0.581664919386,0.458786609126,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[62.145,229.631],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 44","np":2,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.359,4.597],[-2.689,-1.216],[-3.822,-0.299],[-2.788,0.01],[-3.156,1.083],[-2.071,2.255],[-1.232,6.448],[-0.44,3.147],[-0.281,3.333],[0.125,5.419],[0.471,2.281],[-1.066,0.071],[-1.778,0.18],[-0.134,0.076],[-0.094,-0.149],[-0.015,-0.359],[0.005,-0.239],[0.12,-7.172],[0.319,-1.514],[-0.285,-0.456],[-0.019,-0.974],[0.073,-3.356],[2.815,-5.628],[7.008,-1.773],[0.131,-0.081],[1.655,-0.016],[6.993,-0.001],[0.954,-0.146],[0.365,0.338]],"o":[[2.676,1.245],[3.466,1.568],[2.797,0.219],[3.318,-0.012],[2.926,-1.004],[4.439,-4.832],[0.597,-3.128],[0.467,-3.339],[0.457,-5.416],[-0.053,-2.29],[-0.24,-1.164],[1.783,-0.119],[0.14,-0.015],[0.164,-0.064],[0.187,0.322],[0.01,0.239],[-0.156,7.172],[-0.025,1.506],[-0.139,0.659],[-1.029,0.134],[0.065,3.356],[-0.134,6.183],[-3.183,6.364],[-0.143,0.036],[-1.654,0.206],[-6.993,0.065],[-0.959,0],[-0.436,0.067],[-5.316,-2.084]],"v":[[-31.691,25.666],[-23.659,29.396],[-12.759,32.19],[-4.389,32.351],[5.279,30.554],[13.005,25.97],[21.422,8.948],[22.386,-0.529],[22.664,-10.572],[23.06,-26.826],[22.873,-33.703],[24.32,-35.31],[29.658,-35.81],[30.061,-36.031],[30.447,-35.902],[30.669,-34.863],[30.679,-34.146],[30.936,-12.639],[30.993,-8.115],[31.691,-6.672],[30.491,-4.958],[30.494,5.115],[26.792,23.001],[11.733,35.5],[11.338,35.738],[6.364,35.851],[-14.615,35.879],[-17.487,35.998],[-18.734,35.757]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.414564633837,0.581664919386,0.458786609126,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[66.438,149.194],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 45","np":2,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.38,0.34],[0.008,2.106],[0.192,0.452],[-0.001,0.56],[-0.006,3.777],[-0.25,0.479],[-0.723,0.063],[-5.365,0.527],[-5.402,0.566],[-3.375,0.373],[-0.088,-1.501],[-0.182,-8.788],[-0.005,-3.158],[0.592,-2.971],[0.599,-0.284],[3.364,-0.942],[2.908,0.164],[5.186,1.949],[2.208,1.953],[0.417,0.684],[-0.154,0.977],[-0.407,-0.034],[-2.705,-0.205],[-3.504,-0.228],[-3.466,-0.19],[-2.631,-0.13],[-0.087,0.584],[-0.107,1.788],[-0.253,3.502],[0.78,-0.052],[3.42,-0.297],[5.293,-0.419],[3.866,-0.237]],"o":[[-0.013,-2.105],[-0.002,-0.477],[-0.154,-0.538],[0.003,-3.776],[0.001,-0.514],[0.59,-0.619],[5.372,-0.465],[5.405,-0.532],[3.376,-0.353],[1.382,-0.153],[0.514,8.787],[0.065,3.154],[0.005,3.09],[-0.133,0.668],[-3.142,1.488],[-2.793,0.782],[-5.578,-0.313],[-2.759,-1.037],[-0.607,-0.537],[-0.475,-0.809],[0.31,-0.313],[2.705,0.228],[3.502,0.264],[3.464,0.225],[2.63,0.144],[0.73,0.036],[0.266,-1.781],[0.209,-3.506],[0.067,-0.927],[-3.426,0.228],[-5.289,0.459],[-3.86,0.305],[-0.431,0.027]],"v":[[-23.117,0.632],[-23.152,-5.685],[-23.331,-7.09],[-23.538,-8.737],[-23.532,-20.066],[-23.309,-21.582],[-21.176,-22.181],[-5.075,-23.723],[11.143,-25.3],[21.28,-26.293],[23.045,-24.579],[23.299,1.791],[23.54,11.253],[21.946,20.2],[20.702,21.58],[11.095,25.611],[2.551,26.282],[-13.519,22.665],[-20.944,18.12],[-22.415,16.241],[-23.117,13.621],[-22.006,13.295],[-13.881,13.798],[-3.366,14.426],[7.029,15.069],[14.92,15.491],[15.854,14.565],[16.276,9.195],[16.963,-1.317],[15.851,-2.366],[5.586,-1.521],[-10.284,-0.173],[-21.857,0.812]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.571280086742,0.705128508923,0.589520981733,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[52.215,149.007],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 46","np":2,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.707,0.738],[0.719,1.454],[-0.407,-0.28],[-5.585,-0.968],[-2.278,-0.119],[-5.005,2.409],[-0.76,0.352],[-0.195,2.868],[-0.155,2.382],[0.016,2.395],[0.377,3.192],[-0.007,1.797],[0.001,5.239],[1.466,-0.171],[4.731,-0.499],[6.561,-0.669],[4.098,-0.4],[0.599,0.614],[0.001,0.438],[-0.012,3.183],[-0.211,0.402],[-0.527,0.037],[-4.372,0.379],[-4.531,0.395],[-3.541,0.26],[-3.222,0.251],[-3.538,0.303],[-2.469,0.152],[-0.396,-0.292],[0.004,-0.659],[0.153,-1.537],[0.526,-0.068],[1.504,-0.208],[-0.086,-1.241],[0.168,-4.141],[0.868,-8.117],[1.052,-3.037],[3.77,-3.798],[2.432,-0.982],[6.461,0.375],[4.392,2.198],[0.925,0.382]],"o":[[-1.158,-1.176],[0.582,-0.328],[4.772,3.288],[2.247,0.389],[5.636,0.295],[0.757,-0.364],[2.821,-1.306],[0.162,-2.381],[0.156,-2.401],[-0.021,-3.196],[-0.212,-1.796],[0.021,-5.239],[0,-1.537],[-4.725,0.553],[-6.559,0.691],[-4.096,0.417],[-0.703,0.069],[-0.222,-0.401],[-0.011,-3.183],[0.002,-0.438],[0.333,-0.472],[4.378,-0.312],[4.531,-0.392],[3.536,-0.308],[3.223,-0.236],[3.54,-0.276],[2.464,-0.212],[0.434,-0.027],[0.408,0.611],[-0.009,1.541],[-0.18,0.629],[-1.505,0.194],[-1.208,0.167],[0.288,4.145],[-0.33,8.132],[-0.341,3.186],[-1.725,4.977],[-1.849,1.863],[-6.147,2.482],[-4.973,-0.289],[-0.894,-0.447],[-0.926,-0.382]],"v":[[-28.077,30.692],[-30.665,26.604],[-29.255,26.963],[-13.434,32.526],[-6.642,33.22],[9.199,29.568],[11.445,28.427],[15.151,21.875],[15.627,14.73],[15.788,7.541],[15.584,-2.046],[15.794,-7.431],[15.801,-23.149],[14.273,-24.602],[0.084,-23.079],[-19.594,-21.015],[-31.876,-19.708],[-33.913,-20.034],[-34.144,-21.313],[-34.143,-30.862],[-33.918,-32.142],[-32.554,-32.77],[-19.427,-33.784],[-5.827,-34.882],[4.792,-35.702],[14.455,-36.495],[25.072,-37.355],[32.473,-37.897],[33.747,-37.745],[34.005,-35.783],[33.944,-31.162],[32.711,-30.418],[28.185,-29.929],[26.844,-28.294],[27.029,-15.85],[25.953,8.548],[24.411,17.976],[16.658,31.469],[10.085,35.555],[-8.921,37.577],[-22.839,33.529],[-25.555,32.264]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.571280086742,0.705128508923,0.589520981733,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[62.824,144.168],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 47","np":2,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.16,0],[0.16,0.266]],"o":[[-0.16,0.327],[0.16,0]],"v":[[0.24,-0.163],[-0.24,-0.163]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.714866428749,0.75979608274,0.512240301394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[74.661,0.777],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 48","np":2,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.16,0],[0.16,0.33]],"o":[[-0.16,0.277],[0.16,0]],"v":[[0.24,-0.165],[-0.24,-0.165]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.759929821538,0.777491850011,0.51765017042,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[67.221,0.778],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 49","np":2,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0.24],[0.372,-0.24]],"o":[[0.3,0.24],[0,-0.24]],"v":[[-0.186,-0.36],[-0.186,0.36]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.631470743815,0.731724219229,0.472369504442,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0.207,107.534],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 50","np":2,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0.48],[0.352,-0.48]],"o":[[0.393,0.48],[0,-0.48]],"v":[[-0.197,-0.72],[-0.197,0.72]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.353098701028,0.503294941023,0.262705425188,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0.218,96.134],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 51","np":2,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.56,0],[0.005,-0.075],[0.505,0.469]],"o":[[0,0.075],[-0.557,-0.078],[0.56,0]],"v":[[0.84,-0.234],[0.833,-0.01],[-0.84,-0.234]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.405987638586,0.485208040125,0.166470172358,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[69.261,0.848],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 52","np":2,"cix":2,"bm":0,"ix":39,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.96,0],[0.961,-0.095],[-0.027,0.049],[-0.026,0]],"o":[[-0.93,0.491],[-0.074,-0.052],[0.026,-0.048],[0.96,0]],"v":[[1.492,-0.245],[-1.395,-0.021],[-1.466,-0.173],[-1.388,-0.245]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.318038132611,0.44703949573,0.184854410209,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[71.489,0.859],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 53","np":2,"cix":2,"bm":0,"ix":40,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0.24],[0.777,-0.64],[0,0.16],[0.18,0.24]],"o":[[0.772,0.64],[0,-0.16],[0.18,-0.24],[0,-0.24]],"v":[[-0.388,-0.96],[-0.388,0.96],[-0.388,0.48],[-0.388,-0.24]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.117887399711,0.271959342209,0.134272362204,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0.409,107.414],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 54","np":2,"cix":2,"bm":0,"ix":41,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0.56],[0.004,-0.064],[1.025,-1.023],[0,0.16],[0.196,0.48]],"o":[[0.132,0.073],[-0.073,1.133],[0,-0.16],[0.196,-0.48],[0,-0.56]],"v":[[-0.513,-1.8],[-0.134,-1.583],[-0.513,1.8],[-0.513,1.32],[-0.513,-0.12]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.12507574044,0.280761898265,0.137582008511,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0.534,95.534],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 55","np":2,"cix":2,"bm":0,"ix":42,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0.08],[-0.18,1.301],[-1.348,4.035],[-0.871,1.611],[0.059,-1.73],[0.084,-2.015],[0.024,-1.314],[-2.501,-5.647],[-2.103,-3.726],[-1.052,-1.717],[-0.022,-1.693],[2.718,-0.148],[1.116,0.013],[1.51,4.448],[0.377,3.287],[0.374,0.121],[0,0.16],[0.365,0.64],[0,0.48],[0.205,2.24],[0,0.32],[0.383,1.2]],"o":[[0.669,-1.223],[0.585,-4.219],[0.576,-1.724],[-0.014,1.729],[-0.068,2.014],[-0.055,1.315],[-0.114,6.183],[1.725,3.894],[0.994,1.761],[0.921,1.503],[0.035,2.703],[-1.149,0.062],[-3.217,-3.471],[-1.064,-3.133],[-0.028,-0.248],[0,-0.16],[0.365,-0.64],[0,-0.48],[0.205,-2.24],[0,-0.32],[0.383,-1.2],[0,-0.08]],"v":[[-8.653,-8.444],[-8.004,-12.348],[-5.198,-24.751],[-3.098,-29.797],[-3.437,-24.628],[-4.052,-18.598],[-4.337,-14.672],[-0.73,3.071],[4.66,14.655],[7.222,20.172],[8.618,24.892],[3.929,29.735],[0.635,29.264],[-6.256,17.265],[-8.371,7.621],[-8.653,6.916],[-8.653,6.436],[-8.653,4.516],[-8.653,3.076],[-8.653,-3.644],[-8.653,-4.604],[-8.653,-8.204]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.149238571466,0.309879347857,0.143343861898,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[8.674,101.938],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 57","np":2,"cix":2,"bm":0,"ix":43,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.157,-0.328],[-0.233,-1.356],[0.364,-1.926],[-1.238,-1.129],[-2.273,-4.533],[-0.814,-6.564],[0.852,-6.683],[4.893,-5.81],[6.899,-1.941],[0.12,0.005],[0.016,0.455],[0,0.52],[0.014,19.343],[0.116,2.825],[0.374,2.287],[0.207,0.563],[1.493,-0.312],[0.434,0.339],[-0.013,0.278],[-0.118,2.509],[-0.098,3.646],[0.402,2.064],[0.861,2.658],[1.272,1.132],[0.387,1.021],[1.599,1.318],[4.445,1.683],[1.144,0.017],[1.819,0.229],[1.128,-0.195],[3.05,-0.962],[4.1,-3.616],[1.603,-4.393],[0.332,-3.51],[-0.914,-4.213],[-2.622,-0.525],[-0.034,-0.206],[0.204,-0.479],[0.166,0.015],[0.178,0.093],[0.736,-2.24],[0.117,-2.975],[0.178,-22.344],[0.584,-0.692],[3.669,4.3],[-0.522,-0.11],[-1.042,0.43],[0.152,2.356],[0.815,1.206],[0.615,1.212],[2.072,5.544],[-0.538,6.02],[-0.026,3.441],[-0.058,0.958],[-1.604,2.337],[-1.573,1.545],[0.24,0.535],[-0.098,2.007],[-0.392,2.405],[-2.054,2.339],[0.433,2.143],[-2.371,3.279],[-8.599,3.108],[-5.765,0.522],[-1.574,0.245],[-0.4,0],[-0.16,0.151],[-0.32,0],[-0.583,-0.062],[-0.925,0.274],[-0.48,0],[-0.16,0.151],[-0.24,0],[-1.622,-0.202],[-4.516,-2.927],[-2.359,-2.745],[-1.108,-3],[-0.987,-4.284],[-0.121,-2.307],[0.101,-1.456]],"o":[[-0.07,1.36],[0.413,1.897],[-0.959,1.34],[3.816,3.482],[2.98,5.944],[0.828,6.683],[-0.942,7.389],[-4.637,5.506],[-0.109,0.031],[-0.448,-0.248],[-0.018,-0.52],[-0.004,-19.345],[-0.02,-2.828],[-0.095,-2.303],[-0.096,-0.591],[-0.531,-1.439],[-0.405,0.085],[-0.164,-0.239],[0.116,-2.51],[-0.168,-3.635],[-0.051,-2.11],[-0.41,-2.777],[-0.728,-1.485],[-0.604,-0.867],[-1.158,-1.79],[-3.758,-3.097],[-1.095,-0.415],[-1.853,-0.027],[-1.178,-0.148],[-3.104,0.535],[-5.132,1.619],[-3.615,3.188],[-1.207,3.307],[-0.405,4.275],[0.531,2.448],[0.138,0.162],[0.044,0.501],[-0.076,0.149],[-0.198,-0.044],[-2.074,-1.086],[-0.929,2.829],[-0.881,22.34],[-0.006,0.776],[-5.292,-1.931],[0.513,-0.478],[1.083,0.228],[2.186,-0.903],[-0.091,-1.41],[-0.764,-1.131],[-2.676,-5.274],[-2.096,-5.605],[0.305,-3.415],[0.007,-0.956],[0.844,-2.752],[1.244,-1.814],[0.309,-0.303],[-0.878,-1.959],[0.118,-2.428],[0.48,-2.948],[1.46,-1.662],[-0.87,-4.307],[5.436,-7.521],[5.424,-1.96],[1.578,-0.143],[0.4,0],[0.16,0.151],[0.32,0],[0.569,0.262],[0.934,-0.073],[0.48,0],[0.16,0.151],[0.24,0],[1.575,0.539],[5.392,0.671],[3.064,1.986],[2.036,2.37],[1.516,4.111],[0.523,2.27],[0.076,1.443],[0.166,0.324]],"v":[[47.399,-24.362],[47.452,-20.284],[47.663,-14.554],[47.944,-12.087],[56.496,0.352],[61.825,19.234],[62,39.308],[53.85,59.409],[36.429,70.419],[36.072,70.409],[35.535,69.281],[35.523,67.722],[35.515,9.689],[35.483,1.202],[35.01,-5.703],[34.586,-7.443],[31.475,-9.154],[30.231,-9.087],[29.998,-9.878],[29.753,-17.386],[29.272,-28.292],[28.455,-34.535],[26.34,-42.635],[23.655,-46.765],[21.829,-49.358],[17.291,-53.571],[4.56,-59.852],[1.147,-60.464],[-4.33,-61.071],[-7.783,-60.989],[-17.114,-59.486],[-30.979,-51.902],[-38.642,-40.493],[-40.67,-30.156],[-40.053,-17.403],[-35.602,-12.64],[-35.366,-12.08],[-35.499,-10.6],[-35.861,-10.401],[-36.412,-10.632],[-41.264,-8.664],[-42.731,0.052],[-43.212,67.086],[-43.582,69.389],[-57.09,60.139],[-55.504,60.092],[-52.328,59.892],[-49.449,55.345],[-50.685,51.39],[-52.424,47.709],[-59.751,31.567],[-62.228,14.165],[-61.409,3.903],[-61.044,1.057],[-57.021,-6.397],[-52.77,-11.427],[-52.299,-12.539],[-52.703,-18.572],[-51.819,-25.823],[-48.475,-33.888],[-46.841,-39.845],[-43.598,-50.863],[-22.154,-66.335],[-5.366,-70.158],[-0.618,-70.45],[0.582,-70.45],[1.062,-70.45],[2.022,-70.45],[3.775,-70.326],[6.582,-70.45],[8.022,-70.45],[8.502,-70.45],[9.222,-70.45],[14.086,-69.627],[28.786,-63.952],[37.083,-56.986],[41.98,-48.974],[46.05,-36.489],[46.825,-29.601],[47.387,-25.34]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.176668533624,0.354055935729,0.169430317598,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[66.399,71.063],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 59","np":4,"cix":2,"bm":0,"ix":44,"mn":"ADBE Vector Group","hd":false}],"ip":5,"op":36,"st":5,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"veliki krug Image/Voiceover Proba Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[154.575,138.03,0],"ix":2},"a":{"a":0,"k":[143.575,121.53,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[100,0,100],"e":[90,110,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":8,"s":[90,110,100],"e":[110,90,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":13.818,"s":[110,90,100],"e":[100,100,100]},{"t":22}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.012,0.242],[-0.151,-0.019],[0.256,0.004]],"o":[[0.151,0.019],[-0.019,0.217],[-0.396,-0.007]],"v":[[-0.168,-0.315],[0.284,-0.257],[0.07,0.311]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.74900004069,0.286000001197,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[112.049,35.314],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.04,0.241],[-0.264,-0.367],[1.69,-1.612],[0.054,-1.119],[0.372,1.624],[-1.309,0.602]],"o":[[0.456,0.145],[-1.453,1.86],[-0.669,0.639],[-0.371,-1.624],[1.091,-1.033],[0.961,-0.443]],"v":[[2.932,-3.939],[3.932,-3.078],[-1.129,1.77],[-2.816,3.939],[-3.932,-0.934],[-0.074,-2.888]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.980000035903,0.769000004787,0.322000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[106.975,34.72],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":4,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.377,-0.23],[0.086,0.087],[-0.407,0.146]],"o":[[-0.086,-0.086],[0.233,-0.392],[-0.059,0.479]],"v":[[-0.253,0.488],[-0.511,0.23],[0.511,-0.488]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.964999988032,0.804000016755,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[196.338,93.358],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":4,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.028,-0.144],[0.559,-0.473],[-0.552,0.493]],"o":[[-0.559,0.474],[0.178,-0.809],[0.145,0.027]],"v":[[0.839,-0.581],[-0.839,0.84],[0.58,-0.84]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.952999997606,0.689999988032,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[195.247,94.428],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":4,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.241,0.161],[0.568,0.329]],"o":[[-0.063,0.426],[0.24,-0.161]],"v":[[0.361,-0.406],[-0.361,0.077]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.991999966491,0.933000033509,0.681999954523,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[189.721,80.577],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":4,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.046,0.093],[-0.217,0.024],[0.315,-0.056]],"o":[[0.102,-0.214],[0.007,0.278],[-0.029,0.005]],"v":[[-0.258,0.018],[0.251,-0.288],[-0.122,0.284]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.423999980852,0.556999954523,0.310000011968,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[93.101,81.637],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":4,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.036,-0.277],[0.13,-0.064],[-0.067,0.317]],"o":[[-0.13,0.065],[0.067,-0.316],[0.23,0.21]],"v":[[0.176,0.281],[-0.215,0.475],[-0.015,-0.475]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.991999966491,0.922000002394,0.776000019148,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[96.998,75.095],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":4,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.044,-0.044],[0.12,0.012],[-0.101,0.106],[-0.098,0.045]],"o":[[-0.134,0.123],[-0.38,-0.04],[0.068,-0.073],[0.044,0.044]],"v":[[0.39,-0.114],[-0.01,0.233],[-0.03,-0.104],[0.257,-0.245]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.816000007181,0.808000033509,0.560999971278,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[64.559,102.774],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":4,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.432,-0.069],[-0.263,0.214]],"o":[[0.105,-0.349],[-0.024,0.418]],"v":[[-0.326,0.38],[0.326,-0.38]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.987999949736,0.894000004787,0.694000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[94.005,80.521],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":4,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.23,-0.026],[0.089,0.092],[-0.088,0.079],[-0.006,-0.315]],"o":[[-0.088,-0.092],[0.089,-0.08],[0.183,0.072],[0.004,0.239]],"v":[[-0.135,0.314],[-0.401,0.04],[-0.136,-0.198],[0.398,0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.976000019148,0.875,0.698000021542,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[191.664,51.294],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":4,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.493,0.041],[-0.49,-0.031]],"o":[[0.328,-0.394],[-0.342,0.358]],"v":[[-0.626,0.232],[0.627,-0.242]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.991999966491,0.922000002394,0.616000007181,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[121.581,88.328],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":4,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.461,0.074],[0.514,-0.004]],"o":[[-0.192,0.426],[0.231,-0.376]],"v":[[0.491,-0.374],[-0.49,0.374]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.991999966491,0.925,0.592000026329,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[185.745,83.382],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":4,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.502,-0.076],[-0.518,0.047]],"o":[[0.273,-0.477],[-0.29,0.446]],"v":[[-0.617,0.352],[0.617,-0.352]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.987999949736,0.882000014361,0.57599995931,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[176.775,59.162],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":4,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.473,0.201],[-0.48,-0.187]],"o":[[0.477,-0.163],[-0.484,0.148]],"v":[[-0.682,-0.016],[0.682,0.002]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.910000011968,0.816000007181,0.517999985639,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[54.113,107.167],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":4,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.13,0.187],[-0.228,-0.143],[0.374,0.346]],"o":[[0.228,0.143],[-0.351,0.1],[-0.023,-0.022]],"v":[[-0.145,-0.443],[0.539,-0.013],[-0.516,0.097]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.991999966491,0.941000007181,0.830999995213,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[118.757,89.057],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":4,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.602,0.222],[0,-0.071],[0.555,-0.234]],"o":[[-0.001,0.071],[-0.555,0.234],[0.264,-0.835]],"v":[[0.833,-0.459],[0.832,-0.245],[-0.833,0.459]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.991999966491,0.929000016755,0.728999956916,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[187.089,52.793],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":4,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.483,-0.037],[-0.243,-0.062],[0.65,-0.147],[-0.027,0.047],[-0.028,0]],"o":[[0.175,0.27],[-0.651,0.148],[-0.083,-0.048],[0.028,-0.047],[0.399,-0.19]],"v":[[0.316,-0.319],[1.03,-0.087],[-0.921,0.355],[-1.004,0.214],[-0.921,0.143]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.972999961703,0.898000021542,0.752999997606,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[188.842,52.192],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":4,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.44,-0.41],[0.001,0.087],[-0.65,0.126]],"o":[[-0.001,-0.086],[0.299,-0.463],[-0.44,0.41]],"v":[[-0.659,0.615],[-0.662,0.357],[0.662,-0.615]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.987999949736,0.855000035903,0.388000009574,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[82.022,99.947],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":4,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.209,0.495],[-0.089,-0.09],[0.83,0.22]],"o":[[0.089,0.09],[-0.291,0.47],[0.105,-0.576]],"v":[[0.346,-0.724],[0.612,-0.455],[-0.612,0.504]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.980000035903,0.948999980852,0.804000016755,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[52.461,106.81],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 20","np":4,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.069,0.595],[-0.702,0.176],[0.054,-0.229],[0.629,0.091]],"o":[[0.744,-0.015],[0.253,-0.066],[-0.481,0.401],[-0.267,0.013]],"v":[[-1.212,0.005],[0.892,-0.535],[1.158,-0.258],[-0.498,0.238]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.987999949736,0.957000014361,0.894000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[190.371,51.868],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 21","np":4,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.648,-0.472],[0.084,0.084],[-0.636,0.57],[0.024,-0.058],[0.024,0]],"o":[[-0.083,-0.083],[0.456,-0.775],[0.074,0.057],[-0.024,0.058],[-0.473,0.647]],"v":[[-0.762,0.971],[-1.012,0.721],[0.913,-0.971],[0.988,-0.799],[0.916,-0.712]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.991999966491,0.913999968884,0.438999998803,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[80.448,101.275],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 22","np":4,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.947,0.416],[-0.011,-0.086],[1.197,0.362]],"o":[[0.011,0.086],[-0.971,0.291],[0.948,-0.416]],"v":[[1.405,-0.805],[1.438,-0.546],[-1.438,0.443]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.991999966491,0.929000016755,0.552999997606,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[170.884,91.98],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 23","np":4,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.697,-0.597],[0.081,0.078],[-0.864,0.385]],"o":[[-0.081,-0.078],[0.737,-0.596],[-0.372,1.012]],"v":[[-0.962,0.844],[-1.206,0.61],[1.206,-0.844]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.991999966491,0.944999964097,0.732999973671,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[177.586,88.414],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 24","np":4,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.977,-0.605],[-0.294,0.809],[-0.206,-0.088]],"o":[[0.295,-0.809],[0.078,-0.171],[0.411,1.28]],"v":[[-0.843,1.355],[0.041,-1.072],[0.432,-1.266]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.980000035903,0.976000019148,0.948999980852,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[96.741,76.642],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 25","np":4,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.051,-0.216],[1.497,-0.6],[-0.012,0.06],[-0.018,0],[-1.36,0.725]],"o":[[-1.24,1.109],[-0.065,-0.05],[0.012,-0.062],[1.197,-1.034],[0.257,-0.105]],"v":[[2.171,-0.918],[-2.13,1.258],[-2.21,1.094],[-2.164,1],[1.927,-1.152]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.991999966491,0.961000031116,0.827000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[174.452,90.176],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 26","np":4,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.077,0.101],[-1.444,1.533],[0.646,-0.983],[0.633,-0.705]],"o":[[1.281,-1.672],[-0.304,1.206],[-0.515,0.783],[-0.161,-0.018]],"v":[[-2.043,2.27],[2.043,-2.539],[0.098,0.408],[-1.777,2.539]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.991999966491,0.929000016755,0.654999976065,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[54.85,103.816],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 27","np":4,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.3,1.175],[-1.205,-0.46],[-1.381,-0.517],[1.232,-1.121]],"o":[[-0.065,-0.559],[1.182,0.443],[-1.197,1.09],[-0.345,-1.353]],"v":[[-2.012,-1.159],[-1.271,-2.084],[2.475,-0.68],[-1.068,2.544]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.011999999776,0.263000009574,0.847000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[60.73,126.679],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 28","np":4,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.748,2.226],[-4.026,2.683],[-3.316,-1.059],[-0.412,-0.152],[-0.873,-0.83],[-0.42,-2.133],[-0.063,-0.36],[0.625,-0.642],[0.522,-0.715],[0.211,-0.258],[0.109,-0.15],[0.217,-0.024],[2.49,0.371]],"o":[[-2.437,-4.817],[2.918,-1.944],[0.417,0.133],[0.969,0.685],[1.795,1.707],[0.209,0.363],[-0.008,0.927],[-0.522,0.715],[-0.161,0.301],[-0.11,0.149],[-0.133,0.163],[-2.218,1.129],[-2.807,-0.417]],"v":[[-7.882,4.876],[-5.394,-7.024],[4.001,-8.219],[5.236,-7.768],[8.059,-5.598],[10.109,0.548],[10.085,1.622],[9.025,3.924],[7.458,6.068],[6.807,6.827],[6.48,7.275],[5.971,7.583],[-1.071,8.908]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.234999997008,0.717999985639,0.470999983245,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[86.872,74.073],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 29","np":4,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.056,0.012],[-0.096,0.054],[0.02,-0.138],[0.036,-0.102]],"o":[[0.027,-0.178],[0.368,-0.204],[-0.016,0.105],[-0.057,-0.012]],"v":[[-0.226,0.342],[-0.136,-0.174],[0.049,0.072],[-0.057,0.378]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.834999952129,0.791999966491,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[254.142,75.48],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 30","np":4,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.322,0.077],[-0.434,0.014]],"o":[[0.313,-0.249],[-0.426,0.307]],"v":[[-0.501,0.042],[0.501,-0.1]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.917999985639,0.804000016755,0.752999997606,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[223.597,50.275],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 31","np":4,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.298,-0.334]],"o":[[0,0],[0.587,-0.328],[0.001,0]],"v":[[0.612,0.16],[-0.612,0.16],[0.607,0.169]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.941000007181,0.859000052658,0.823999980852,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[225.001,50.483],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 32","np":4,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.331,0.426],[0,0],[-0.335,-0.389]],"o":[[-0.401,-0.062],[0,0],[0.409,0.012],[0,0]],"v":[[0.6,0.089],[-0.596,-0.14],[-0.6,-0.131],[0.589,0.103]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.889999988032,0.741000007181,0.675,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[226.208,50.783],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 33","np":4,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.284,0.328]],"o":[[0,0],[-0.492,0.335],[0,0]],"v":[[-0.547,-0.161],[0.548,-0.161],[-0.536,-0.174]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.898000021542,0.752999997606,0.689999988032,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[227.344,51.046],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 34","np":4,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.082,-0.07],[-0.079,0.085],[-0.115,0.088],[0.03,-0.041]],"o":[[-0.203,-0.048],[0.097,-0.104],[0.029,0.083],[-0.08,0.112]],"v":[[-0.055,0.253],[-0.184,0.016],[0.156,-0.253],[0.233,-0.01]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.936999990426,0.851000019148,0.816000007181,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[246.867,84.653],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 35","np":4,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.03,0.33],[-0.075,0.011],[0.217,-0.327]],"o":[[0.075,0.011],[-0.03,0.33],[-0.218,-0.327]],"v":[[-0.112,-0.503],[0.113,-0.503],[0.001,0.503]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.964999988032,0.925,0.910000011968,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[254.52,71.292],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 36","np":4,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.075,0.119],[0,0],[-0.03,-0.311]],"o":[[0,0],[0.328,0.489],[-0.075,0.119]],"v":[[-0.164,0.51],[-0.164,-0.629],[0.061,0.51]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.764999988032,0.705999995213,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[254.571,70.279],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 37","np":4,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.343,0.136],[-0.32,-0.06]],"o":[[0.345,-0.209],[-0.315,0.229]],"v":[[-0.454,0.021],[0.454,-0.041]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.834999952129,0.791999966491,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[220.216,53.874],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 38","np":4,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.499,-0.136],[0.386,0.159]],"o":[[-0.498,0.156],[0.376,-0.209]],"v":[[0.594,0.01],[-0.594,0.025]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.862999949736,0.944999964097,0.941000007181,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[49.49,71.147],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 39","np":4,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.008,-0.072],[0.392,0],[0.003,0.071]],"o":[[0.012,0.071],[-0.392,0],[-0.002,-0.071],[0,0]],"v":[[0.582,-0.107],[0.588,0.107],[-0.588,0.107],[-0.596,-0.107]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.875,0.702000038297,0.62400004069,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[217.563,49.564],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 40","np":4,"cix":2,"bm":0,"ix":39,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.071,-0.47],[0.133,0.398]],"o":[[-0.298,-0.067],[0.392,0.116]],"v":[[0.272,0.32],[-0.343,-0.32]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894000004787,0.957000014361,0.952999997606,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[41.492,103.305],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 41","np":4,"cix":2,"bm":0,"ix":40,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.496,-0.215],[-0.465,-0.147]],"o":[[0.339,-0.572],[-0.342,0.148]],"v":[[-0.541,0.307],[0.541,-0.16]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.925,0.819999964097,0.773000021542,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[235.025,90.734],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 42","np":4,"cix":2,"bm":0,"ix":41,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.034,0.106],[-0.298,-0.125],[0.246,0.13]],"o":[[0.251,0.105],[-0.399,0.314],[-0.01,-0.005]],"v":[[-0.359,-0.324],[0.437,0.01],[-0.426,-0.109]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.910000011968,0.783999992819,0.728999956916,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[238.024,54.296],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 43","np":4,"cix":2,"bm":0,"ix":42,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.137,-0.363],[-0.096,0.371]],"o":[[-0.218,-0.346],[0.276,0.353]],"v":[[-0.001,0.519],[-0.057,-0.519]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.764999988032,0.705999995213,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[254.532,73.458],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 44","np":4,"cix":2,"bm":0,"ix":43,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.224,-0.32],[-0.168,0.299]],"o":[[-0.158,-0.482],[0.21,0.432]],"v":[[-0.151,0.485],[0.099,-0.485]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.842999985639,0.936999990426,0.933000033509,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[36.253,81.483],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 45","np":4,"cix":2,"bm":0,"ix":44,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.335,-0.23],[-0.286,0.18]],"o":[[0.032,-0.5],[0.066,0.459]],"v":[[-0.309,0.408],[0.243,-0.408]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.816000007181,0.877999997606,0.859000052658,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[167.646,218.184],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 46","np":4,"cix":2,"bm":0,"ix":45,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.35,-0.088],[-0.355,0.084]],"o":[[-0.001,-0.388],[0.005,0.391]],"v":[[-0.272,0.326],[0.269,-0.326]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811999990426,0.925,0.922000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[38.525,77.758],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 47","np":4,"cix":2,"bm":0,"ix":46,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.236,-0.338],[-0.217,0.184]],"o":[[-0.105,-0.459],[0.29,0.344]],"v":[[-0.233,0.418],[0.049,-0.418]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.941000007181,0.859000052658,0.819999964097,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[249.345,76.416],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 48","np":4,"cix":2,"bm":0,"ix":47,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.445,0.432]],"o":[[0,0],[-0.474,0.194],[0,0]],"v":[[-0.702,-0.208],[0.702,-0.208],[-0.695,-0.216]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.760999971278,0.698000021542,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[221.738,50.133],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 49","np":4,"cix":2,"bm":0,"ix":48,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.066,0.408],[-0.087,-0.001],[0.112,-0.49]],"o":[[0.087,0.001],[-0.093,0.406],[-0.426,-0.526]],"v":[[0.101,-0.653],[0.362,-0.649],[0.064,0.653]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.783999992819,0.855000035903,0.830999995213,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[172.211,208.74],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 50","np":4,"cix":2,"bm":0,"ix":49,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.226,0.44],[-0.353,-0.116]],"o":[[0.352,0.116],[-0.453,0.184]],"v":[[-0.528,-0.266],[0.529,0.082]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.834999952129,0.791999966491,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[235.048,53.06],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 51","np":4,"cix":2,"bm":0,"ix":50,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.06,0.581],[0.018,-0.435]],"o":[[0.336,0.384],[-0.33,-0.262]],"v":[[-0.229,-0.577],[0.271,0.577]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894000004787,0.941000007181,0.925,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[108.769,211.874],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 52","np":4,"cix":2,"bm":0,"ix":51,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.635,0.007],[-0.076,0.074],[-0.498,-0.472],[0,0]],"o":[[0.076,-0.074],[0.554,0.1],[0,0],[-0.635,-0.007]],"v":[[-0.952,0.208],[-0.724,-0.015],[0.945,0.236],[0.952,0.228]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.905999995213,0.776000019148,0.717999985639,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[220.091,49.689],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 53","np":4,"cix":2,"bm":0,"ix":52,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.023,0],[-0.354,-0.373],[0.099,-0.051],[0.306,0.177],[-0.022,0.048]],"o":[[0.417,0.017],[-0.052,0.098],[-0.361,0.064],[-0.072,-0.046],[0.023,-0.049]],"v":[[-0.565,-0.174],[0.656,0.043],[0.428,0.266],[-0.559,0.04],[-0.634,-0.101]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.936999990426,0.851000019148,0.816000007181,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[218.71,49.631],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 54","np":4,"cix":2,"bm":0,"ix":53,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-0.041],[0,0],[-0.001,0.041],[0,0]],"o":[[0,0],[0,-0.041],[0,0],[-0.001,0.041]],"v":[[0.831,0.061],[-0.833,0.061],[-0.832,-0.061],[0.832,-0.061]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.922000002394,0.816000007181,0.769000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[218.271,53.639],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 55","np":4,"cix":2,"bm":0,"ix":54,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.434,0.167],[0.618,-0.405]],"o":[[-0.146,0.463],[0.312,-0.72]],"v":[[0.547,-0.567],[-0.547,0.567]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.885999971278,0.728999956916,0.658999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[248.367,83.469],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 56","np":4,"cix":2,"bm":0,"ix":55,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.391,-0.224],[-0.542,0.306]],"o":[[0.149,-0.452],[-0.179,0.642]],"v":[[-0.486,0.542],[0.486,-0.542]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.788000009574,0.859000052658,0.834999952129,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[166.555,219.458],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 57","np":4,"cix":2,"bm":0,"ix":56,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.005,-0.041],[0,0],[0.001,0.041],[0,0]],"o":[[0,0],[-0.001,-0.041],[0,0],[-0.005,0.041]],"v":[[0.788,0.061],[-0.801,0.061],[-0.803,-0.061],[0.803,-0.061]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.866999966491,0.944999964097,0.941000007181,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[54.358,70.935],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 58","np":4,"cix":2,"bm":0,"ix":57,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.036,-0.27],[-0.212,-3.696],[0.488,-0.06],[2.393,1.267],[0.645,0.372],[-3.161,2.355]],"o":[[0.212,3.696],[-0.572,0.425],[-2.393,-1.268],[-0.482,-0.279],[3.14,-2.34],[0.054,0.401]],"v":[[4.437,-5.287],[5.072,5.803],[3.716,5.496],[-3.463,1.692],[-5.072,0.763],[4.31,-6.228]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.626999978458,0.13300000359,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[78.885,50.874],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 66","np":4,"cix":2,"bm":0,"ix":58,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.195,2.106],[-1.164,1.14],[-4.195,3.784],[-2.091,1.9],[-2.835,2.558],[0.063,-0.23],[1.188,-1.227],[4.367,-5.322],[0.975,-1.092],[0.533,-0.08],[3.216,-3.491]],"o":[[1.207,-1.095],[4.041,-3.955],[2.099,-1.893],[2.826,-2.569],[0.228,-0.062],[-1.151,1.263],[-4.787,4.941],[-0.928,1.131],[-1.061,-0.344],[-2.932,3.733],[-0.546,-2.052]],"v":[[-15.623,10.937],[-12.007,7.645],[0.562,-3.724],[6.808,-9.457],[15.31,-17.135],[15.56,-16.885],[12.103,-13.101],[-1.749,2.182],[-4.667,5.464],[-5.409,6.389],[-14.663,17.197]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.964999988032,0.481999984442,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[64.126,119.131],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 67","np":4,"cix":2,"bm":0,"ix":59,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.443,2.512],[0.312,1.776],[1.544,2.353],[-0.43,0.367],[-0.692,0.711],[-1.963,-0.613],[-1.241,-1.899],[0.502,-1.771],[0.13,0.185],[1.15,0.83],[0.535,0.072],[2.311,0.244],[-0.259,-1.272],[0.088,-1.705],[-0.471,-3.68],[0.148,-0.661],[0.634,-0.803],[1.735,0.15],[-0.411,1.714],[-2.548,0.219],[0.154,0.782]],"o":[[-0.312,-1.776],[-0.286,-2.693],[-0.304,-0.464],[0.691,-0.59],[1.176,2.297],[2.071,0.647],[0.756,1.591],[-0.169,0.122],[-0.158,-1.266],[-0.537,-0.067],[-2.262,-0.652],[0.38,1.235],[0.321,1.638],[0.577,3.658],[0.089,0.699],[-0.367,1.017],[-1.278,0.87],[-1.765,-0.153],[0.579,-2.417],[0.843,-0.073],[-0.493,-2.502]],"v":[[-3.174,0.179],[-4.112,-5.149],[-6.168,-12.907],[-5.998,-13.98],[-4.019,-15.982],[1.488,-13.144],[6.717,-9.851],[7.441,-4.858],[6.988,-4.916],[5.514,-8.273],[4.139,-8.95],[-2.771,-10.006],[-2.049,-6.194],[-1.234,-1.257],[0.811,9.659],[0.682,11.664],[-1.233,14.063],[-5.424,15.832],[-7.532,13.015],[-2.64,8.797],[-1.827,7.711]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.764999988032,0.435000011968,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[104.892,39.915],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 68","np":4,"cix":2,"bm":0,"ix":60,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.325,-1.819],[0.383,-0.315],[3.453,-3.314],[1.51,-1.233],[-0.026,-1.027],[0.003,0.451],[0.221,2.856],[-0.431,0.354],[-4.612,2.494],[-1.537,0.577],[-0.021,-0.057]],"o":[[-0.764,-0.349],[-3.691,3.034],[-1.408,1.351],[-0.884,0.722],[-0.607,-0.2],[-0.019,-2.867],[-0.036,-0.472],[4.194,-3.126],[1.437,-0.777],[0.073,0.031],[0.595,1.689]],"v":[[9.251,-5.628],[7.788,-4.911],[-3.085,4.431],[-7.454,8.328],[-8.51,10.955],[-9.062,9.763],[-9.517,1.185],[-9.145,-0.135],[3.928,-8.774],[8.314,-10.955],[8.517,-10.846]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.980000035903,0.769000004787,0.322000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[92.467,45.721],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 69","np":4,"cix":2,"bm":0,"ix":61,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.003,-0.17],[2.108,-1.877],[3.718,-3.294],[-0.027,-0.112],[0.872,-1.097],[1.811,-1.784],[0.479,0.526],[-1.807,3.006],[-2.266,2.981],[-2.988,3.364],[-0.153,-0.075],[-2.104,-1.302]],"o":[[-2.095,1.892],[-3.711,3.304],[-0.175,0.155],[0.472,1.99],[-1.573,1.977],[-0.233,0.23],[1.385,-3.259],[1.913,-3.182],[2.73,-3.593],[0.132,-0.11],[2.215,1.094],[0.143,0.088]],"v":[[13.248,-11],[6.962,-5.326],[-4.193,4.559],[-4.682,5.029],[-6.977,8.737],[-12.309,14.176],[-13.251,14.437],[-9.005,4.714],[-2.725,-4.563],[6.069,-14.803],[6.51,-14.888],[13.051,-11.411]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.980000035903,0.769000004787,0.322000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[69.354,67.369],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 70","np":4,"cix":2,"bm":0,"ix":62,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.078,0.133],[1.245,-1.585],[3.196,-3.908],[2.331,-2.715],[0.279,0.775],[0.229,1.21],[0.477,3.034],[-0.462,0.425],[-2.008,1.903],[-0.118,0.021],[-0.113,-1.251],[0,0],[-0.003,0.014],[0.3,1.135],[-0.141,0.409],[-2.864,0.698]],"o":[[-0.963,1.797],[-3.118,3.97],[-2.265,2.769],[-0.122,0.142],[-0.316,-1.193],[-0.57,-3.017],[-0.023,-0.628],[2.034,-1.874],[0.085,-0.081],[1.315,0.645],[0.004,-0.018],[0,0],[0.194,-1.202],[-0.098,-0.37],[2.847,-0.767],[2.007,-0.49]],"v":[[11.452,-12.853],[7.855,-7.982],[-1.618,3.834],[-8.561,12.022],[-9.228,12.078],[-9.666,8.434],[-11.429,-0.606],[-10.781,-2.202],[-4.644,-7.787],[-4.314,-7.91],[-2.693,-4.789],[-2.679,-4.733],[-2.637,-4.832],[-3.013,-8.306],[-3.193,-9.436],[5.354,-11.719]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.964999988032,0.481999984442,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[114.802,39.501],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 71","np":4,"cix":2,"bm":0,"ix":63,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.539,-0.101],[0.396,-0.417],[3.43,-3.51],[0.1,-0.066],[0.521,0.153],[2.418,-3.36],[-1.269,-2.848],[0.293,-0.581],[3.29,-2.404],[2.514,-3.215],[1.349,-2.014],[1.303,-1.613],[0.438,-0.343],[1.392,-1.088],[-0.705,1.669],[-1.037,3.621],[-2.152,4.178],[-1.226,1.18],[-1.222,1.425],[0.035,0.337],[-0.741,0.687],[-2.956,2.625],[-2.064,2.004],[-0.564,0.18],[-0.389,0.364],[-0.715,0.621],[-3.2,2.697],[-2.132,1.673],[-0.635,-0.836],[-0.424,-2.594],[0.7,-0.114],[0.593,-2.277],[-1.594,-0.094],[-0.862,0.54]],"o":[[0.092,0.785],[-3.378,3.558],[-0.081,0.083],[-0.586,0.246],[-4.271,-1.256],[-1.798,2.499],[0.199,0.446],[-2.986,2.737],[-3.284,2.399],[-1.486,1.901],[-1.165,1.724],[-0.314,0.463],[-1.207,1.261],[0.029,-1.75],[1.478,-3.502],[1.276,-4.458],[1.487,-0.896],[1.346,-1.296],[0.233,-0.272],[-0.133,-1.266],[2.9,-2.687],[2.149,-1.908],[0.397,-0.386],[0.395,-0.179],[-0.003,-0.941],[3.156,-2.743],[2.073,-1.746],[0.448,-0.352],[0.55,2.571],[0.161,0.984],[-2.252,0.367],[-0.395,1.52],[1.059,0.063],[0.395,-0.247]],"v":[[27.651,-21.26],[26.652,-19.692],[16.396,-9.132],[16.1,-8.932],[14.488,-9.175],[3.456,-5.759],[2.615,2.279],[2.982,3.712],[-5.903,11.999],[-14.603,20.372],[-19.115,26.04],[-23.003,30.895],[-24.16,32.076],[-27.743,35.896],[-26.867,30.779],[-24.149,19.816],[-19.906,6.568],[-16.107,3.137],[-12.292,-0.998],[-11.672,-1.849],[-10.128,-4.36],[-1.236,-12.205],[5.168,-17.977],[6.468,-19.009],[7.657,-19.032],[8.749,-21.318],[18.079,-29.705],[24.352,-34.874],[25.955,-35.061],[27.396,-27.309],[26.089,-26.175],[21.703,-22.33],[23.551,-19.876],[26.356,-20.746]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.964999988032,0.481999984442,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[76.009,75.238],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 72","np":4,"cix":2,"bm":0,"ix":64,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.823,-2.35],[2.319,-2.37],[0.16,-0.092],[0.681,-0.132],[0.419,-0.135],[0.417,-0.586],[1.699,-0.968],[1.402,-0.664],[0.378,-0.292],[4.176,-2.411],[3.253,-1.773],[4.435,-2.272],[3.707,-1.859],[2.555,-0.919],[0.395,-0.217],[0.627,0.092],[0.092,0.359],[-0.501,0.283],[-2.362,2.242],[-3.02,2.793],[-3.923,3.618],[-3.58,3.362],[-1.367,2.109],[-1.009,0.97],[-2.262,2.626],[-1.05,1.432],[-4.542,-2.74]],"o":[[-2.762,1.824],[-0.027,0.193],[-0.602,0.408],[-0.469,-0.049],[-0.586,0.233],[-1.906,0.618],[-1.332,0.76],[-0.402,0.251],[-4.154,2.449],[-3.208,1.852],[-4.377,2.384],[-3.69,1.891],[-2.424,1.216],[-0.413,0.17],[-0.519,0.276],[-0.222,-0.153],[-0.077,-0.263],[2.891,-1.634],[2.984,-2.833],[3.922,-3.629],[3.615,-3.334],[1.827,-1.716],[0.814,-1.255],[2.499,-2.399],[1.148,-1.333],[4.996,1.813],[3.135,1.892]],"v":[[40.518,-15.547],[32.843,-9.321],[32.536,-8.913],[30.543,-8.339],[29.273,-7.985],[27.571,-7.164],[22.546,-4.148],[18.707,-1.606],[17.473,-0.902],[5.007,6.437],[-4.697,11.854],[-17.877,18.915],[-29.079,24.327],[-36.478,27.671],[-37.73,28.144],[-39.389,28.628],[-40.072,28.198],[-40.016,27.424],[-32.658,20.996],[-23.88,12.312],[-12.438,1.108],[-1.906,-9.198],[3.339,-14.552],[6.342,-17.493],[13.456,-25.061],[17.225,-28.72],[31.484,-21.781]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.964999988032,0.481999984442,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[158.684,60.416],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 73","np":4,"cix":2,"bm":0,"ix":65,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.02,-7.288],[2.632,-0.531],[1.584,-1.286],[6.221,-3.539],[0.902,-0.826],[3.133,-2.9],[4.912,-4.732],[2.185,-2.042],[5.043,-4.65],[2.273,-2.062],[5.392,-4.259],[4.907,-4.056],[4.797,-3.936],[0.655,-0.639],[1.075,0.685],[0.612,0.037],[0.712,0.974],[-1.969,2.698],[-0.582,0.38],[-8.288,5.392],[-1.171,1.244],[-4.035,4.36],[-2.925,3.16],[-4.037,4.358],[-3.006,3.249],[-3.903,4.318],[-2.931,3.667],[-1.866,1.247],[-0.599,0.436],[-0.237,0.345],[-1.434,1.181],[-4.283,3.366],[-2.746,2.107],[-0.412,0.048]],"o":[[-2.556,0.868],[-2.091,0.421],[-5.537,4.495],[-1.087,0.618],[-3.149,2.882],[-5.004,4.633],[-2.153,2.075],[-5.013,4.683],[-2.258,2.081],[-5.073,4.601],[-4.994,3.945],[-4.783,3.953],[-0.708,0.581],[-0.813,0.793],[-0.499,-0.318],[-0.96,-0.551],[1.99,-2.683],[0.408,-0.558],[8.279,-5.406],[1.466,-0.953],[4.071,-4.327],[2.925,-3.16],[4.036,-4.36],[3.008,-3.247],[3.954,-4.272],[3.151,-3.486],[1.358,-1.699],[0.431,-0.605],[0.289,-0.288],[1.239,-1.413],[4.205,-3.461],[2.72,-2.139],[0.32,-0.246],[3.577,6.264]],"v":[[69.874,-44.697],[62.035,-42.779],[56.7,-40.031],[39.328,-27.609],[36.461,-25.275],[27.138,-16.494],[12.197,-2.518],[5.629,3.592],[-9.409,17.64],[-16.158,23.907],[-31.456,37.629],[-46.148,49.831],[-60.547,61.63],[-62.611,63.443],[-65.324,63.912],[-67.01,63.353],[-69.874,61.673],[-63.913,53.617],[-62.484,52.199],[-37.651,35.974],[-33.867,32.499],[-21.742,19.436],[-12.973,9.951],[-0.861,-3.123],[8.16,-12.865],[20.007,-25.694],[28.794,-36.7],[33.14,-41.563],[34.698,-43.111],[35.582,-43.961],[39.832,-47.584],[52.608,-57.773],[60.843,-64.095],[61.911,-64.597]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.823999980852,0.458999992819,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[161.268,136.83],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 74","np":4,"cix":2,"bm":0,"ix":66,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.384,-4.895],[2.678,-2.188],[2.483,-2.052],[2.571,-2.132],[-0.036,-0.134],[0.652,-0.428],[7.581,-4.937],[6.481,-4.216],[8.384,-5.456],[6.621,-4.293],[5.362,-3.45],[2.984,-2.119],[1.042,0.796],[-0.574,-0.261],[-0.697,0.581],[-10.406,8.553],[-4.435,4.15],[-4.927,4.616],[-3.571,3.317],[-4.915,4.569],[-4.673,4.417],[-1.64,0.944],[-4.369,3.858],[-4.147,0.721],[-1.394,-0.097],[-0.131,-0.464]],"o":[[-2.691,2.172],[-2.496,2.038],[-2.575,2.127],[-0.18,0.149],[0.329,1.212],[-7.563,4.964],[-6.479,4.218],[-8.385,5.454],[-6.614,4.304],[-5.349,3.469],[-3.079,1.981],[-1.209,-0.503],[0.723,-0.45],[0.85,0.387],[10.345,-8.626],[4.699,-3.862],[4.929,-4.613],[3.556,-3.331],[4.917,-4.567],[4.709,-4.38],[1.365,-1.291],[5.077,-2.922],[3.282,-2.897],[1.334,-0.232],[0.483,0.073],[1.328,4.705]],"v":[[70.352,-39.795],[62.28,-33.275],[54.831,-27.116],[47.105,-20.735],[46.675,-20.193],[45.317,-18.308],[22.594,-3.466],[3.145,9.169],[-22.004,25.542],[-41.852,38.443],[-57.917,48.823],[-66.964,55.039],[-70.352,53.109],[-68.462,53.438],[-66.285,53.084],[-35.152,27.324],[-21.592,15.165],[-6.796,1.336],[3.893,-8.638],[18.603,-22.383],[32.708,-35.544],[37.197,-38.928],[51.388,-49.142],[62.543,-54.198],[66.535,-54.942],[67.464,-54.13]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.964999988032,0.481999984442,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[164.609,147.075],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 75","np":4,"cix":2,"bm":0,"ix":67,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.085,0.115],[2.797,-0.377],[4.478,0.299],[3.153,0.132],[5.492,0.062],[5.648,1.121],[0.987,0.661],[1.109,0.547],[1.13,0.592],[-0.436,0.327],[-6.076,4.067],[-3.747,2.451],[-12.548,8.199],[-8.208,5.342],[-6.438,4.178],[-0.037,0.771],[-0.4,0.333],[-6.468,5.219],[-0.76,0.648],[-0.654,-0.137],[-0.123,-1.851],[0.975,-6.735],[4.129,-8.564],[5.159,-6.093],[9.299,-5.469],[4.157,-1.672],[0.532,-0.526],[0.812,-0.457]],"o":[[-2.813,0.26],[-4.442,0.599],[-3.146,-0.21],[-5.492,-0.23],[-5.826,-0.066],[-0.994,-0.197],[-1.015,-0.68],[-1.144,-0.564],[0.208,-0.575],[5.862,-4.387],[3.72,-2.49],[12.544,-8.206],[8.199,-5.357],[6.432,-4.187],[0.545,-0.353],[0.027,-0.553],[6.387,-5.317],[0.775,-0.625],[0.408,-0.347],[0.524,1.813],[0.449,6.777],[-1.367,9.434],[-3.461,7.18],[-6.983,8.248],[-3.859,2.269],[-0.67,0.27],[-0.726,0.719],[-0.089,0.112]],"v":[[5.451,49.689],[-2.985,50.49],[-16.335,50.955],[-25.806,50.847],[-42.273,50.005],[-59.394,47.644],[-62.482,47.083],[-65.825,45.485],[-69.217,43.716],[-68.027,42.579],[-49.764,30.433],[-38.506,23.109],[-0.823,-1.43],[23.804,-17.452],[43.107,-30.003],[44.184,-31.462],[45.13,-32.644],[64.38,-48.485],[66.662,-50.424],[68.098,-51.118],[68.768,-45.566],[67.917,-25.307],[59.64,1.68],[46.674,21.575],[22.211,42.1],[10.166,47.989],[8.319,49.059],[5.711,49.693]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.972999961703,0.603999956916,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[166.861,158.398],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 76","np":4,"cix":2,"bm":0,"ix":68,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.983,3.089],[-1.061,1.021],[-3.201,3.066],[-1.536,1.391],[-0.075,0.171],[-1.857,1.464],[-3.383,1.834],[-3.853,1.486],[-3.529,1.515],[-2.853,0.333],[-2.843,1.138],[-3.649,1.381],[-2.389,1.406],[-1.648,0.589],[-2.056,1.112],[-1.409,0.5],[-3.431,1.686],[-1,0.262],[-1.259,0.954],[-0.632,0.736],[-2.276,1.065],[-0.315,0.265],[-1.048,0.776],[-0.214,0.201],[-2.741,2.288],[-5.347,3.951],[-0.031,0.511],[-2.477,-4.424],[2.7,-2.052],[5.943,-4.967],[0.303,-0.315],[0.386,-0.655],[3.099,-3.91],[2.375,-2.589],[3.827,-4.132],[2.436,-2.644],[3.504,-3.832],[2.326,-2.529],[3.579,-3.872],[4.01,-2.478],[7.075,-4.67],[0.596,-0.828],[1.728,-2.303],[0.487,0.148],[5.763,6.398],[3.891,7.934]],"o":[[1.097,-0.983],[3.194,-3.074],[1.496,-1.432],[0.147,-0.134],[0.992,-2.3],[2.984,-2.353],[3.662,-1.985],[3.559,-1.374],[2.587,-1.11],[2.984,-0.349],[3.624,-1.451],[2.565,-0.971],[1.498,-0.882],[2.215,-0.793],[1.351,-0.731],[3.622,-1.287],[1.107,0.021],[1.302,-0.875],[0.733,-0.588],[2.222,-1.156],[0.363,-0.201],[0.81,-1.092],[0.447,0.147],[2.662,-2.384],[5.104,-4.26],[0.358,-0.265],[3.242,3.896],[-2.588,2.197],[-6.168,4.688],[-0.349,0.25],[-0.544,0.514],[-3.582,3.52],[-2.19,2.763],[-3.806,4.151],[-2.443,2.637],[-3.52,3.818],[-2.318,2.535],[-3.569,3.88],[-3.109,3.364],[-7.208,4.454],[-0.848,0.56],[-1.682,2.337],[-0.195,0.26],[-7.27,-4.601],[-5.928,-6.581],[-1.422,-2.9]],"v":[[-84.846,22.029],[-81.561,19.073],[-72.014,9.816],[-67.409,5.64],[-66.999,5.208],[-62.188,0.007],[-52.9,-6.614],[-41.456,-11.343],[-30.641,-15.065],[-22.32,-16.934],[-13.503,-18.795],[-2.314,-22.137],[5.197,-25.488],[10.023,-27.562],[16.505,-30.297],[20.678,-32.033],[31.115,-36.789],[34.001,-37.879],[38.141,-40.053],[40.46,-41.643],[46.923,-45.456],[47.904,-46.203],[51.027,-48.557],[51.749,-49.04],[59.749,-56.175],[75.456,-68.456],[76.238,-69.439],[84.846,-56.979],[76.797,-50.757],[58.689,-36.202],[57.639,-35.457],[56.152,-33.786],[46.732,-22.15],[39.76,-14.24],[28.288,-1.836],[20.943,6.064],[10.374,17.508],[3.365,25.065],[-7.368,36.682],[-17.574,45.851],[-38.893,59.715],[-41.018,61.79],[-46.133,68.749],[-46.939,69.292],[-66.452,52.775],[-81.128,30.977]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.995999983245,0.964999988032,0.481999984442,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[138.333,129.212],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 77","np":4,"cix":2,"bm":0,"ix":69,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.48,0.136],[0.794,5.119],[-0.915,1.091],[-1.874,2.281],[-0.565,-0.094],[-0.236,-0.794],[-0.473,0.499],[-0.675,0.701],[0.757,0.973],[-0.713,0.833],[-3.756,3.877],[-2.504,2.521],[-0.56,0.601],[-0.232,0.202],[0.185,-0.171],[0.591,-0.641],[3.373,-3.043],[2.931,-2.58],[3.767,-3.556],[0.376,0.133],[-0.384,5.894],[-0.076,0.431],[-1.355,1.171],[-0.354,0.337],[-1.005,1.86],[-1.251,1.598],[-1.112,1.36],[-1.404,0.959],[-2.081,2.222],[-1.225,1.321],[-0.311,-0.006],[-0.637,-0.482],[-3.576,1.126],[-0.661,0.156],[-0.089,0.337],[-0.151,0.134],[-0.116,0.346],[-0.608,0.688],[0.329,1.122],[0.08,0.268],[0.083,0.9],[1.223,1.103],[0.33,0.752],[-0.335,0.319],[-3.138,3.058],[-0.38,0.756],[-0.711,0.734],[-0.697,0.822],[-5.553,7.327],[-0.419,0.318],[-2.052,0.205],[-3.834,-0.119],[-10.178,-3.94],[-0.141,-0.074],[0.487,-0.393],[2.153,-2.131],[1.972,-1.146],[0.1,-0.174],[2.162,-2.017],[2.819,-2.656],[4.229,-3.945],[3.996,-3.671],[2.196,-1.296],[0.062,-0.288],[0.195,-0.183],[-0.364,0.083],[-0.518,0.173],[-0.391,0.228],[-6.135,2.994],[-5.876,3.24],[-5.514,3.305],[-0.339,0.123],[-0.403,0.313],[-2.709,1.655],[-0.313,0.073],[-0.605,0.194],[-0.617,0.16],[-0.482,0.298],[0.196,0.193],[-0.429,0.323],[-2.042,1.321],[-0.435,-0.112],[-1.954,-2.024],[-2.539,-3.552],[0.44,-0.33],[4.41,-3.635],[2.932,-2.639],[0.371,-0.243],[0.276,-0.184],[0.963,-0.884],[0.346,-0.267],[2.243,-1.089],[0.813,-0.494],[1.261,-0.9],[0.97,-0.397],[3.742,-1.312],[3.074,-1.134],[0.925,-0.393],[4.242,-1.259],[3.347,-1.318],[3.188,-0.476],[3.432,-1.345],[2.661,-0.98],[3.855,-2.373],[2.902,-2.235],[1.056,-1.477],[1.372,-1.276],[2.812,-2.783],[1.535,-1.46]],"o":[[-1.831,-4.839],[0.559,-1.375],[1.897,-2.259],[0.254,-0.31],[0.517,0.701],[0.136,0.457],[0.65,-0.687],[-0.888,-0.864],[0.314,-1.137],[3.505,-4.095],[2.471,-2.551],[0.542,-0.62],[0.239,-0.196],[-0.194,0.163],[-0.593,0.639],[-3.315,3.105],[-2.899,2.615],[-3.889,3.424],[-0.225,0.212],[-0.807,-5.863],[0.028,-0.434],[1.025,-1.463],[0.823,0.184],[1.315,-1.622],[0.888,-1.872],[1.08,-1.381],[1.08,-1.322],[2.523,-1.725],[1.231,-1.316],[0.188,-0.203],[0.772,0.324],[2.987,2.261],[0.648,-0.204],[0.219,-0.011],[0.085,-0.185],[0.303,-0.193],[0.539,-0.741],[0.721,-0.659],[-0.019,-0.279],[-0.182,-0.891],[-0.163,-1.769],[-0.55,-0.495],[0.024,-0.545],[3.177,-3.021],[0.595,-0.58],[0.545,-0.873],[1.086,-0.454],[5.941,-7.012],[0.316,-0.416],[1.997,-0.603],[3.81,-0.38],[10.887,0.339],[0.147,0.057],[0.058,0.82],[-2.378,1.918],[-1.583,1.567],[-0.174,0.101],[-1.508,2.607],[-2.831,2.642],[-4.217,3.971],[-3.974,3.707],[-1.844,1.694],[-0.255,0.15],[-0.055,0.275],[0.299,-0.24],[0.553,-0.053],[0.445,-0.085],[6.315,-2.621],[6.028,-2.941],[5.633,-3.106],[0.309,-0.185],[0.494,-0.138],[2.608,-1.807],[0.273,-0.167],[0.602,-0.204],[0.601,-0.241],[0.542,-0.097],[0.42,-0.024],[0.074,-0.621],[1.938,-1.454],[0.338,-0.219],[2.331,1.608],[3.004,3.114],[0.298,0.807],[-4.575,3.424],[-3.044,2.509],[-0.326,0.294],[-0.278,0.179],[-1.079,0.721],[-0.376,0.225],[-2.154,1.238],[-0.832,0.461],[-1.303,0.819],[-0.939,0.463],[-3.503,1.849],[-3.098,1.086],[-0.936,0.345],[-4.037,1.718],[-3.447,1.022],[-3.069,1.209],[-3.644,0.544],[-2.633,1.031],[-4.194,1.544],[-3.149,1.938],[-1.46,1.123],[-1.084,1.517],[-2.897,2.695],[-1.507,1.492],[-0.278,0.265]],"v":[[-77.779,62.992],[-81.802,48.079],[-79.151,44.714],[-73.42,37.966],[-72.418,37.255],[-71.643,39.615],[-70.868,39.924],[-68.776,37.971],[-71.819,36.399],[-69.861,33.719],[-59.099,21.649],[-51.749,13.93],[-49.954,12.25],[-49.303,11.599],[-49.848,12.125],[-51.754,13.905],[-61.796,23.114],[-70.47,30.988],[-81.931,41.482],[-82.762,41.819],[-83.22,24.179],[-82.999,22.885],[-79.46,18.907],[-78.372,17.922],[-74.556,12.957],[-70.893,8.088],[-67.494,4.068],[-63.72,0.59],[-56.818,-5.311],[-52.876,-8.986],[-52.157,-9.37],[-50.409,-7.772],[-40.585,-6.048],[-38.679,-6.743],[-38.102,-6.983],[-37.752,-7.464],[-37.112,-8.261],[-35.436,-10.438],[-34.357,-12.893],[-34.522,-13.71],[-35.031,-16.388],[-37.489,-20.421],[-39.184,-21.846],[-38.394,-22.99],[-29.237,-32.413],[-27.717,-34.391],[-25.746,-36.727],[-23.402,-39.031],[-6.061,-60.459],[-5.011,-61.602],[1.118,-62.52],[12.586,-63.008],[44.221,-56.772],[44.645,-56.552],[43.54,-54.971],[37.21,-48.451],[32.306,-43.922],[31.882,-43.507],[25.918,-37.018],[17.661,-28.839],[5.265,-16.679],[-6.378,-5.299],[-12.048,-0.35],[-12.519,0.312],[-12.946,0.965],[-11.926,0.547],[-10.355,0.085],[-9.103,-0.387],[9.391,-9.199],[27.094,-18.773],[43.762,-28.473],[44.734,-28.938],[46.068,-29.637],[53.985,-34.919],[54.853,-35.301],[56.638,-35.967],[58.509,-36.356],[60.081,-36.826],[60.183,-37.212],[61.15,-38.525],[66.842,-43.038],[67.937,-43.379],[74.399,-37.924],[83.306,-28.477],[82.468,-27.102],[68.941,-16.576],[60.039,-8.781],[59.047,-7.914],[58.222,-7.358],[55.063,-5.085],[54.017,-4.296],[47.619,-0.474],[45.171,0.991],[41.099,3.142],[38.25,4.463],[27.451,9.366],[18.449,13.277],[15.635,14.302],[3.576,19.58],[-6.778,22.584],[-16.257,24.433],[-26.805,27.462],[-34.88,30.118],[-47.137,35.499],[-55.926,42.093],[-59.528,46.033],[-63.537,49.97],[-72.128,58.158],[-76.76,62.508]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.980000035903,0.769000004787,0.322000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[131.265,88.249],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 78","np":4,"cix":2,"bm":0,"ix":70,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":36,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/src/assets/navgrid.svg b/src/assets/navgrid.svg new file mode 100644 index 0000000..4c4e6b4 --- /dev/null +++ b/src/assets/navgrid.svg @@ -0,0 +1,7 @@ + + + + + + menu_navigation_grid [#ffffff] Created with Sketch. + \ No newline at end of file diff --git a/src/assets/phone.svg b/src/assets/phone.svg new file mode 100644 index 0000000..63bb74e --- /dev/null +++ b/src/assets/phone.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/src/assets/verified.json b/src/assets/verified.json new file mode 100644 index 0000000..f0303d9 --- /dev/null +++ b/src/assets/verified.json @@ -0,0 +1 @@ +{"v":"5.6.7","fr":60,"ip":0,"op":240,"w":1200,"h":1200,"nm":"Comp 1","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"check","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[575.25,603.465,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":114,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":130,"s":[105,105,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":136,"s":[95,95,100]},{"t":142,"s":[100,100,100]}],"ix":6}},"ao":0,"ef":[{"ty":5,"nm":"Excite - Skew - Transform","np":8,"mn":"Pseudo/BNCA2506f0b33","ix":1,"en":1,"ef":[{"ty":7,"nm":"Enable","mn":"Pseudo/BNCA2506f0b33-0001","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":6,"nm":"Properties","mn":"Pseudo/BNCA2506f0b33-0002","ix":2,"v":0},{"ty":0,"nm":"Overshoot","mn":"Pseudo/BNCA2506f0b33-0003","ix":3,"v":{"a":0,"k":10,"ix":3,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":0,"nm":"Bounce","mn":"Pseudo/BNCA2506f0b33-0004","ix":4,"v":{"a":0,"k":15,"ix":4,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":0,"nm":"Friction","mn":"Pseudo/BNCA2506f0b33-0005","ix":5,"v":{"a":0,"k":40,"ix":5,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":6,"nm":"","mn":"Pseudo/BNCA2506f0b33-0006","ix":6,"v":0}]},{"ty":5,"nm":"Excite - Scale - Transform","np":8,"mn":"Pseudo/BNCA2506f0b33","ix":2,"en":1,"ef":[{"ty":7,"nm":"Enable","mn":"Pseudo/BNCA2506f0b33-0001","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":6,"nm":"Properties","mn":"Pseudo/BNCA2506f0b33-0002","ix":2,"v":0},{"ty":0,"nm":"Overshoot","mn":"Pseudo/BNCA2506f0b33-0003","ix":3,"v":{"a":0,"k":10,"ix":3,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":0,"nm":"Bounce","mn":"Pseudo/BNCA2506f0b33-0004","ix":4,"v":{"a":0,"k":15,"ix":4,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":0,"nm":"Friction","mn":"Pseudo/BNCA2506f0b33-0005","ix":5,"v":{"a":0,"k":40,"ix":5,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":6,"nm":"","mn":"Pseudo/BNCA2506f0b33-0006","ix":6,"v":0}]},{"ty":5,"nm":"Excite - Position - Transform","np":8,"mn":"Pseudo/BNCA2506f0b33","ix":3,"en":1,"ef":[{"ty":7,"nm":"Enable","mn":"Pseudo/BNCA2506f0b33-0001","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":6,"nm":"Properties","mn":"Pseudo/BNCA2506f0b33-0002","ix":2,"v":0},{"ty":0,"nm":"Overshoot","mn":"Pseudo/BNCA2506f0b33-0003","ix":3,"v":{"a":0,"k":10,"ix":3,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":0,"nm":"Bounce","mn":"Pseudo/BNCA2506f0b33-0004","ix":4,"v":{"a":0,"k":15,"ix":4,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":0,"nm":"Friction","mn":"Pseudo/BNCA2506f0b33-0005","ix":5,"v":{"a":0,"k":40,"ix":5,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":6,"nm":"","mn":"Pseudo/BNCA2506f0b33-0006","ix":6,"v":0}]},{"ty":5,"nm":"Excite - Anchor Point - Transform","np":8,"mn":"Pseudo/BNCA2506f0b33","ix":4,"en":1,"ef":[{"ty":7,"nm":"Enable","mn":"Pseudo/BNCA2506f0b33-0001","ix":1,"v":{"a":0,"k":1,"ix":1}},{"ty":6,"nm":"Properties","mn":"Pseudo/BNCA2506f0b33-0002","ix":2,"v":0},{"ty":0,"nm":"Overshoot","mn":"Pseudo/BNCA2506f0b33-0003","ix":3,"v":{"a":0,"k":10,"ix":3,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":0,"nm":"Bounce","mn":"Pseudo/BNCA2506f0b33-0004","ix":4,"v":{"a":0,"k":15,"ix":4,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":0,"nm":"Friction","mn":"Pseudo/BNCA2506f0b33-0005","ix":5,"v":{"a":0,"k":40,"ix":5,"x":"var $bm_rt;\n$bm_rt = clamp(value, 0, 100);"}},{"ty":6,"nm":"","mn":"Pseudo/BNCA2506f0b33-0006","ix":6,"v":0}]}],"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[214,-137],[-68,130],[-164,34]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":56,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2,"x":"var $bm_rt;\nvar enable, amp, freq, decay, n, t, v;\ntry {\n $bm_rt = enable = effect('Excite - Position - Transform')('Pseudo/BNCA2506f0b33-0001');\n if (enable == 0) {\n $bm_rt = value;\n } else {\n amp = $bm_div(effect('Excite - Position - Transform')('Pseudo/BNCA2506f0b33-0003'), 2.5);\n freq = $bm_div(effect('Excite - Position - Transform')('Pseudo/BNCA2506f0b33-0004'), 20);\n decay = $bm_div(effect('Excite - Position - Transform')('Pseudo/BNCA2506f0b33-0005'), 20);\n n = 0, 0 < numKeys && (n = nearestKey(time).index, key(n).time > time && n--), t = 0 === n ? 0 : $bm_sub(time, key(n).time), $bm_rt = 0 < n ? (v = velocityAtTime($bm_sub(key(n).time, $bm_div(thisComp.frameDuration, 10))), $bm_sum(value, $bm_div($bm_mul($bm_mul($bm_div(v, 100), amp), Math.sin($bm_mul($bm_mul($bm_mul(freq, t), 2), Math.PI))), Math.exp($bm_mul(decay, t))))) : value;\n }\n} catch (err) {\n $bm_rt = value = value;\n}"},"a":{"a":0,"k":[0,0],"ix":1,"x":"var $bm_rt;\nvar enable, amp, freq, decay, n, t, v;\ntry {\n $bm_rt = enable = effect('Excite - Anchor Point - Transform')('Pseudo/BNCA2506f0b33-0001');\n if (enable == 0) {\n $bm_rt = value;\n } else {\n amp = $bm_div(effect('Excite - Anchor Point - Transform')('Pseudo/BNCA2506f0b33-0003'), 2.5);\n freq = $bm_div(effect('Excite - Anchor Point - Transform')('Pseudo/BNCA2506f0b33-0004'), 20);\n decay = $bm_div(effect('Excite - Anchor Point - Transform')('Pseudo/BNCA2506f0b33-0005'), 20);\n n = 0, 0 < numKeys && (n = nearestKey(time).index, key(n).time > time && n--), t = 0 === n ? 0 : $bm_sub(time, key(n).time), $bm_rt = 0 < n ? (v = velocityAtTime($bm_sub(key(n).time, $bm_div(thisComp.frameDuration, 10))), $bm_sum(value, $bm_div($bm_mul($bm_mul($bm_div(v, 100), amp), Math.sin($bm_mul($bm_mul($bm_mul(freq, t), 2), Math.PI))), Math.exp($bm_mul(decay, t))))) : value;\n }\n} catch (err) {\n $bm_rt = value = value;\n}"},"s":{"a":0,"k":[99,99],"ix":3,"x":"var $bm_rt;\nvar enable, amp, freq, decay, n, t, v;\ntry {\n $bm_rt = enable = effect('Excite - Scale - Transform')('Pseudo/BNCA2506f0b33-0001');\n if (enable == 0) {\n $bm_rt = value;\n } else {\n amp = $bm_div(effect('Excite - Scale - Transform')('Pseudo/BNCA2506f0b33-0003'), 2.5);\n freq = $bm_div(effect('Excite - Scale - Transform')('Pseudo/BNCA2506f0b33-0004'), 20);\n decay = $bm_div(effect('Excite - Scale - Transform')('Pseudo/BNCA2506f0b33-0005'), 20);\n n = 0, 0 < numKeys && (n = nearestKey(time).index, key(n).time > time && n--), t = 0 === n ? 0 : $bm_sub(time, key(n).time), $bm_rt = 0 < n ? (v = velocityAtTime($bm_sub(key(n).time, $bm_div(thisComp.frameDuration, 10))), $bm_sum(value, $bm_div($bm_mul($bm_mul($bm_div(v, 100), amp), Math.sin($bm_mul($bm_mul($bm_mul(freq, t), 2), Math.PI))), Math.exp($bm_mul(decay, t))))) : value;\n }\n} catch (err) {\n $bm_rt = value = value;\n}"},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4,"x":"var $bm_rt;\nvar enable, amp, freq, decay, n, t, v;\ntry {\n $bm_rt = enable = effect('Excite - Skew - Transform')('Pseudo/BNCA2506f0b33-0001');\n if (enable == 0) {\n $bm_rt = value;\n } else {\n amp = $bm_div(effect('Excite - Skew - Transform')('Pseudo/BNCA2506f0b33-0003'), 2.5);\n freq = $bm_div(effect('Excite - Skew - Transform')('Pseudo/BNCA2506f0b33-0004'), 20);\n decay = $bm_div(effect('Excite - Skew - Transform')('Pseudo/BNCA2506f0b33-0005'), 20);\n n = 0, 0 < numKeys && (n = nearestKey(time).index, key(n).time > time && n--), t = 0 === n ? 0 : $bm_sub(time, key(n).time), $bm_rt = 0 < n ? (v = velocityAtTime($bm_sub(key(n).time, $bm_div(thisComp.frameDuration, 10))), $bm_sum(value, $bm_div($bm_mul($bm_mul($bm_div(v, 100), amp), Math.sin($bm_mul($bm_mul($bm_mul(freq, t), 2), Math.PI))), Math.exp($bm_mul(decay, t))))) : value;\n }\n} catch (err) {\n $bm_rt = value = value;\n}"},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.5],"y":[1]},"o":{"x":[0.5],"y":[0]},"t":42,"s":[100]},{"t":58,"s":[0]}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":1800,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"circle - stroke","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[100]},{"t":36,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[617.721,614.58,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[172.277,0],[0,-172.277],[-172.277,0],[0,172.277]],"o":[[-172.277,0],[0,172.277],[172.277,0],[0,-172.277]],"v":[[0,-311.936],[-311.936,0],[0,311.936],[311.936,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.10980392156862745,0.13333333333333333,0.22745098039215686,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":40,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-17.721,-14.58],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[130.536,130.536],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.5],"y":[1]},"o":{"x":[0.5],"y":[0]},"t":0,"s":[100]},{"t":23,"s":[0]}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":0,"ix":3},"m":2,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":1800,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"circle - bg","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[617.585,614.469,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.5,0.5,0.5],"y":[1,1,1]},"o":{"x":[0.5,0.5,0.5],"y":[0,0,0]},"t":19,"s":[0,0,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.5,0.5,0.5],"y":[0,0,0]},"t":33,"s":[114.99999999999999,114.99999999999999,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":40,"s":[95,95,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":45,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":114,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":130,"s":[110.00000000000001,110.00000000000001,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0,0,0]},"t":136,"s":[95,95,100]},{"t":142,"s":[105,105,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[172.277,0],[0,-172.277],[-172.277,0],[0,172.277]],"o":[[-172.277,0],[0,172.277],[172.277,0],[0,-172.277]],"v":[[0,-311.936],[-311.936,0],[0,311.936],[311.936,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.10980392156862745,0.13333333333333333,0.22745098039215686,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-17.721,-14.58],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[130.536,130.536],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":1800,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"burst","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[612.759,610.498,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[72,72,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[172.277,0],[0,-172.277],[-172.277,0],[0,172.277]],"o":[[-172.277,0],[0,172.277],[172.277,0],[0,-172.277]],"v":[[0,-311.936],[-311.936,0],[0,311.936],[311.936,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.10980392156862745,0.13333333333333333,0.22745098039215686,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.5],"y":[1]},"o":{"x":[0.5],"y":[0]},"t":30,"s":[40]},{"t":68,"s":[0]}],"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"d":[{"n":"d","nm":"dash","v":{"a":0,"k":0,"ix":1}},{"n":"g","nm":"gap","v":{"a":0,"k":0,"ix":2}},{"n":"o","nm":"offset","v":{"a":0,"k":0,"ix":7}}],"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-17.721,-14.58],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.5,0.5],"y":[1,1]},"o":{"x":[0.5,0.5],"y":[0,0]},"t":26,"s":[167.536,167.536]},{"t":68,"s":[251.536,251.536]}],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":26,"s":[0]},{"t":34,"s":[100]}],"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":1800,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"burst 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[612.759,610.498,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[72,72,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[172.277,0],[0,-172.277],[-172.277,0],[0,172.277]],"o":[[-172.277,0],[0,172.277],[172.277,0],[0,-172.277]],"v":[[0,-311.936],[-311.936,0],[0,311.936],[311.936,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.10980392156862745,0.13333333333333333,0.22745098039215686,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.5],"y":[1]},"o":{"x":[0.5],"y":[0]},"t":122,"s":[40]},{"t":170,"s":[0]}],"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"d":[{"n":"d","nm":"dash","v":{"a":0,"k":0,"ix":1}},{"n":"g","nm":"gap","v":{"a":0,"k":0,"ix":2}},{"n":"o","nm":"offset","v":{"a":0,"k":0,"ix":7}}],"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-17.721,-14.58],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.5,0.5],"y":[1,1]},"o":{"x":[0.5,0.5],"y":[0,0]},"t":118,"s":[167.536,167.536]},{"t":170,"s":[251.536,251.536]}],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":124,"s":[0]},{"t":132,"s":[100]}],"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":1800,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/src/components/about/about.css b/src/components/about/about.css new file mode 100644 index 0000000..2bd4525 --- /dev/null +++ b/src/components/about/about.css @@ -0,0 +1,478 @@ +.bg-about { + position: absolute; + isolation: isolate; +} + +.parent-about { + position: relative; + padding-top: 10vh; + padding-left: 3vw; + padding: 3vw; + height: 100vh; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + padding: 0; + padding-top: 1vh; + } +} + +.parent-about::before { + content: ""; + position: absolute; + z-index: -1; + inset: 0; + opacity: 0.1; + /* background-color: #6a5acd; */ +} + +.parent-about::after { + content: ""; + position: absolute; + z-index: -1; + inset: 0; + opacity: 0.1; + background-image: url("/images/jigsaw.svg"); +} + +.about-title { + text-transform: uppercase; + font-family: russo one; + font-weight: 900; + font-size: 5vw; + text-align: center; + background-color: #a4508b; + background-image: linear-gradient(326deg, #a4508b 0%, #5f0a87 74%); + background-clip: text; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; +} + +.foundation { + display: flex; + align-items: center; + gap: 1vw; + justify-content: space-between; + flex-direction: row-reverse; + padding-top: 5vh; + margin-right: -3vw; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + padding: 0; + margin-top: 3vh; + margin-right: 0; + flex-direction: column; + gap: 1vh; + } +} + +.foundation-title { + display: flex; + justify-content: center; + align-items: center; + + font-family: russo one; + font-size: 3vw; + font-weight: 900; + text-transform: uppercase; + letter-spacing: 2px; + background-color: #a4508b; + background-image: linear-gradient(326deg, #a4508b 0%, #5f0a87 74%); + background-clip: text; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + text-align: center; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 6vw; + margin: 0; + padding: 0vh 2vw; + text-align: center; + } +} + +.foundation-description { + width: 70%; + text-align: justify; + padding: 4vh 2vw; + border-top: 5px solid; + position: relative; + z-index: 99; + border-right: 5px solid; + border-bottom: 5px solid; + margin-left: -3vw; + border-image: linear-gradient(to right top, + #bf00ff, + #d500ed, + #e400db, + #f000cb, + #f800bc, + #fb00b0, + #fc00a4, + #fd0099, + #fb008d, + #f80082, + #f40077, + #f0006d); + border-image-slice: 1; + font-family: raleway; + font-size: 1.3vw; + font-weight: 600; + position: relative; + isolation: isolate; + background: rgb(0, 0, 0, 0.9); + color: white; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 3vw; + width: 90%; + padding: 1vh 2vw; + border-left: 5px solid; + } +} + +.foundation-description::after { + content: ""; + position: absolute; + inset: 0; + z-index: -1; + opacity: 0.5; + background-image: url("/images/flurry.svg"); + /* background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='12'%3E%3Cpath d='M9.8 12 0 2.2V.8l10 10 10-10v1.4L10.2 12h-.4zm-4 0L0 6.2V4.8L7.2 12H5.8zm8.4 0L20 6.2V4.8L12.8 12h1.4zM9.8 0l.2.2.2-.2h-.4zm-4 0L10 4.2 14.2 0h-1.4L10 2.8 7.2 0H5.8z' fill='%239C92AC' fill-opacity='.26' fill-rule='evenodd'/%3E%3C/svg%3E"); */ +} + +.srmvec { + display: flex; + align-items: center; + justify-content: space-between; + padding-top: 5vh; + margin-right: -3vw; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + padding: 0; + margin-top: 3vh; + margin-right: 0; + flex-direction: column; + gap: 1vh; + } +} + +.about-srmvec-title { + display: flex; + justify-content: center; + align-items: center; + gap: 1vw; + font-family: russo one; + font-size: 3.5vw; + font-weight: 900; + text-transform: uppercase; + letter-spacing: 2px; + background-color: #a4508b; + background-image: linear-gradient(326deg, #a4508b 0%, #5f0a87 74%); + background-clip: text; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + opacity: 0; + cursor: pointer; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 7vw; + margin: 0; + padding: 0vh 2vw; + justify-content: start; + width: 100%; + } +} + +.about-srmvec-description { + width: 50%; + text-align: justify; + padding: 4vh 2vw; + border-top: 5px solid; + border-left: 5px solid; + border-bottom: 5px solid; + border-image: linear-gradient(to right top, + #bf00ff, + #d500ed, + #e400db, + #f000cb, + #f800bc, + #fb00b0, + #fc00a4, + #fd0099, + #fb008d, + #f80082, + #f40077, + #f0006d); + border-image-slice: 1; + font-family: raleway; + font-size: 1.3vw; + font-weight: 600; + position: relative; + isolation: isolate; + background: rgb(0, 0, 0, 0.9); + color: white; + opacity: 0; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 3vw; + width: 90%; + padding: 1vh 2vw; + border-right: 5px solid; + } +} + +.about-srmvec-description::after { + content: ""; + position: absolute; + inset: 0; + z-index: -1; + opacity: 0.7; + background-image: url("/images/flurry.svg"); + /* background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='12'%3E%3Cpath d='M9.8 12 0 2.2V.8l10 10 10-10v1.4L10.2 12h-.4zm-4 0L0 6.2V4.8L7.2 12H5.8zm8.4 0L20 6.2V4.8L12.8 12h1.4zM9.8 0l.2.2.2-.2h-.4zm-4 0L10 4.2 14.2 0h-1.4L10 2.8 7.2 0H5.8z' fill='%239C92AC' fill-opacity='.26' fill-rule='evenodd'/%3E%3C/svg%3E"); */ +} + +.csi { + margin-top: 15vh; + display: flex; + align-items: center; + justify-content: space-between; + flex-direction: row-reverse; + margin-left: -3vw; + position: relative; + isolation: isolate; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + margin-top: 3vh; + margin-left: 0; + padding-bottom: 3vh; + flex-direction: column; + gap: 1vh; + } +} + +.csi::after { + content: ""; + position: absolute; + inset: 0; + z-index: -1; + /* background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='12'%3E%3Cpath d='M9.8 12 0 2.2V.8l10 10 10-10v1.4L10.2 12h-.4zm-4 0L0 6.2V4.8L7.2 12H5.8zm8.4 0L20 6.2V4.8L12.8 12h1.4zM9.8 0l.2.2.2-.2h-.4zm-4 0L10 4.2 14.2 0h-1.4L10 2.8 7.2 0H5.8z' fill='%239C92AC' fill-opacity='.26' fill-rule='evenodd'/%3E%3C/svg%3E"); */ +} + +.about-csi-title { + margin-right: 5vw; + display: flex; + justify-content: center; + align-items: center; + gap: 2vw; + font-family: russo one; + text-transform: uppercase; + letter-spacing: 2px; + font-size: 3.5vw; + font-weight: 900; + background-color: #a4508b; + background-image: linear-gradient(326deg, #a4508b 0%, #5f0a87 74%); + background-clip: text; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + cursor: pointer; + opacity: 0; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 7vw; + margin: 0; + padding: 0vh 2vw; + width: 100%; + justify-content: start; + } +} + +.about-csi-description { + width: 50%; + text-align: justify; + padding: 4vh 2vw; + border-top: 5px solid; + border-right: 5px solid; + border-bottom: 5px solid; + border-image: linear-gradient(to right top, + #bf00ff, + #d500ed, + #e400db, + #f000cb, + #f800bc, + #fb00b0, + #fc00a4, + #fd0099, + #fb008d, + #f80082, + #f40077, + #f0006d); + border-image-slice: 1; + font-family: raleway; + font-size: 1.3vw; + font-weight: 600; + position: relative; + isolation: isolate; + background: rgb(0, 0, 0, 0.9); + color: white; + opacity: 0; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 3vw; + width: 90%; + padding: 1vh 2vw; + border-left: 5px solid; + } +} + +.about-csi-description::after { + content: ""; + position: absolute; + inset: 0; + z-index: -1; + opacity: 0.7; + background-image: url("/images/flurry.svg"); +} + +.whitehatians { + display: flex; + align-items: center; + gap: 1vh; + justify-content: space-between; + margin-top: 15vh; + margin-right: -3vw; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + margin-top: 3vh; + margin-left: 0; + margin-right: 0; + padding-bottom: 3vh; + flex-direction: column; + gap: 1vh; + } +} + +.about-whitehatians-title { + font-family: russo one; + display: flex; + justify-content: center; + align-items: center; + gap: 2vw; + line-height: normal; + text-transform: uppercase; + letter-spacing: 2px; + font-size: 3.5vw; + font-weight: 900; + background-color: #a4508b; + background-image: linear-gradient(326deg, #a4508b 0%, #5f0a87 74%); + background-clip: text; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + opacity: 0; + cursor: pointer; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 7vw; + margin: 0; + padding: 0vh 2vw; + + justify-content: center; + } +} + +.about-whitehatians-description { + width: 60%; + text-align: justify; + padding: 3vh 2vw; + border-top: 5px solid; + border-left: 5px solid; + border-bottom: 5px solid; + border-image: linear-gradient(to right top, + #bf00ff, + #d500ed, + #e400db, + #f000cb, + #f800bc, + #fb00b0, + #fc00a4, + #fd0099, + #fb008d, + #f80082, + #f40077, + #f0006d); + border-image-slice: 1; + font-family: raleway; + font-size: 1.3vw; + font-weight: 600; + position: relative; + isolation: isolate; + background: rgb(0, 0, 0, 0.9); + color: white; + opacity: 0; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 3vw; + width: 90%; + padding: 1vh 2vw; + border-right: 5px solid; + } +} + +.about-whitehatians-description::after { + content: ""; + position: absolute; + inset: 0; + z-index: -1; + opacity: 0.7; + background-image: url("/images/flurry.svg"); + /* background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='12'%3E%3Cpath d='M9.8 12 0 2.2V.8l10 10 10-10v1.4L10.2 12h-.4zm-4 0L0 6.2V4.8L7.2 12H5.8zm8.4 0L20 6.2V4.8L12.8 12h1.4zM9.8 0l.2.2.2-.2h-.4zm-4 0L10 4.2 14.2 0h-1.4L10 2.8 7.2 0H5.8z' fill='%239C92AC' fill-opacity='.26' fill-rule='evenodd'/%3E%3C/svg%3E"); */ +} + +.aboutScrollAnimateRight { + animation: aboutDes 0.3s linear forwards; +} + +@keyframes aboutDes { + 0% { + transform: translateX(50vw); + opacity: 0; + } + + 100% { + transform: translateX(0); + opacity: 1; + } +} + +.aboutScrollAnimateLeft { + animation: aboutDes1 0.3s linear forwards; +} + +@keyframes aboutDes1 { + 0% { + transform: translateX(-50vw); + opacity: 0; + } + + 100% { + transform: translateX(0); + opacity: 1; + } +} + +.about-srmvec-logo, +.about-csi-logo, +.about-whitehatians-logo { + width: 10vw; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + width: 15vw; + } +} + +.about-srm-logo { + width: 7vw; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + width: 10vw; + } +} \ No newline at end of file diff --git a/src/components/about/about.jsx b/src/components/about/about.jsx new file mode 100644 index 0000000..fbd664b --- /dev/null +++ b/src/components/about/about.jsx @@ -0,0 +1,133 @@ +import React, { useEffect } from "react"; +import ReactGA from "react-ga"; +import "./about.css"; + +const about = () => { + const handleWebClicks = (webLink) => { + ReactGA.event({ + category: "Button", + action: "click", + label: webLink, + }); + window.open(webLink); + }; + useEffect(() => { + document.title = "About Us"; + const observer = new IntersectionObserver( + (entryies) => { + entryies.forEach((entry) => { + if (entry.isIntersecting) { + if (entry.target.id == "about-left") + entry.target.classList.add("aboutScrollAnimateLeft"); + if (entry.target.id == "about-right") + entry.target.classList.add("aboutScrollAnimateRight"); + } + }); + }, + { + threshold: 1, + } + ); + const divs = document.querySelectorAll( + ".foundation-title,.foundation-description,.about-srmvec-title,.about-srmvec-description,.about-csi-title,.about-csi-description,.about-whitehatians-title,.about-whitehatians-description" + ); + divs.forEach((div) => observer.observe(div)); + }); + + return ( + +
+

About Us

+
+
+ {/* srm logo */} + Computer Science Club + {/* srmvec logo */} +
+
+ Welcome to the UMass Boston Computer Science Club! We are a club dedicated to connecting students interested in all things technology! Here, we want to create a healthy, inclusive space to foster discussion on emerging technologies and innovation. Non-computer science majors are welcome as well. Please bring your computer and your passion. Our club centers around two aspects of computer science: career and experience. +
+
+ + {/*
+
handleWebClicks("https://www.srmvalliammai.ac.in")} + > + srmvec logo + About Srmvec +
+
+ SRM Valliammai Engineering college (An Autonomous Institution) was + established on September 9, 1999 and presently conducts 11 Under + graduate courses and 8 Post graduate courses. The college has highly + qualified, dynamic and dedicated renowned faculty both from academic + and industrial background. The serene atmosphere with the + surrounding greenery is conductive to the pursuit of higher studies. +
+
+
+
handleWebClicks("http://www.csi-kancheepuram.org/")} + > + csi logo + About csi +
+
+ Computer Society of India is a body of computer professionals in + India. It was started on 6 March 1965 by a few computer + professionals and has now grown to be the national body representing + computer professionals. It has 72 chapters across India, 511 student + branches, and 100,000 members. The society promotes knowledge + sharing,and professional development in the field of computer + science. +
+
+
+
handleWebClicks("https://www.whitehatians.tech")} + > + whitehatians logo + About whitehatians +
+
+ WhiteHatians Cyber Security club. The main goal of this club is to + provide a technical opportunity for students to broaden their + knowledge in the area of Cyber Security and to interact with other + students who have a shared interest in cyber security. Through the + club’s activities, members can also network with professionals in + the field, gain hands-on experience, and prepare for careers in + cyber security. +
+
*/} +
+
+ ); +}; + +export default about; diff --git a/src/components/events/events.css b/src/components/events/events.css new file mode 100644 index 0000000..d382865 --- /dev/null +++ b/src/components/events/events.css @@ -0,0 +1,137 @@ +.parent-events { + padding: 0vh 12vw; + padding-top: 5vh; + height: 100vh; + display: flex; + flex-direction: column; + align-items: center; + max-width: 100%; + gap: 5vh; + color: white; + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + padding: 5vh 3vw; + gap: 5vh; + } +} + +.events-progress-bar { + width: 100%; +} +#line { + position: relative; + margin-top: 2vh; + isolation: isolate; + height: 0.7vh; + border-radius: 1vw; + overflow: hidden; + left: 9vw; +} +#line-progress { + position: absolute; + z-index: 1; + width: 0.3%; + height: 0.7vh; + background-color: white; + transition: all 0.3s ease-in-out; +} +#line::before { + content: " "; + position: absolute; + z-index: -1; + background-color: slategrey; + opacity: 0.3; + width: 75%; + top: 0; + left: 0; + right: 0; + bottom: 0; +} +.events-progress-bar ul { + display: flex; + align-items: center; + justify-content: space-around; + width: 100%; +} + +.events-progress-bar ul li { + cursor: pointer; + font-family: exo; + font-weight: 600; + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 4vw; + } +} +.events-container { + display: flex; + justify-content: space-between; + border: 2px dotted purple; + padding: 1vh 1vw; + border-radius: 1vw; + background-color: rgb(255, 255, 255, 0.1); + backdrop-filter: blur(0.8vw); + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 3.5vw; + border-radius: 3vw; + padding: 2vh 3vw; + } +} + +.section-content { + display: none; + color: white; +} +.section-format { + display: flex; + flex-direction: column; + align-items: center; + gap: 2vh; +} +.section-format > h1 { + font-size: 2vw; + text-transform: uppercase; + font-family: audiowide; + letter-spacing: 2px; + color: yellow; + display: flex; + align-items: center; + width: 100%; + justify-content: space-around; + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 7vw; + } +} +.section-format > h1 > span { + font-family: fira sans condensed; + text-transform: capitalize; + letter-spacing: normal; + font-size: 1.1vw; + font-weight: 700; + color: yellowgreen; + cursor: pointer; + padding: 0.2vh 1vw; + border: 1px solid white; + border-radius: 0.3vw; + display: flex; + align-items: center; + gap: 1vw; +} +.section-format > h1 > span > span { + font-size: 1vw; +} +.section-format p { + width: 100%; +} +.active { + display: block; + animation: eventsFade 0.5s ease-in forwards; +} +@keyframes eventsFade { + 0% { + opacity: 0; + transform: translateY(3vh); + } + 100% { + opacity: 1; + transform: translateY(0); + } +} diff --git a/src/components/events/events.jsx b/src/components/events/events.jsx new file mode 100644 index 0000000..feaf23f --- /dev/null +++ b/src/components/events/events.jsx @@ -0,0 +1,172 @@ +import React, { useEffect } from "react"; +import "./events.css"; +import ReactGA from "react-ga"; + +const events = () => { + const handleAbstract = () => { + ReactGA.event({ + category: "Button", + action: "click", + label: `Abstract Reference Download`, + }); + window.open("/docs/Abstract_Reference_Hackathon.pdf"); + }; + useEffect(() => { + document.title = "Stages"; + }); + const handleStage = (stage) => { + ReactGA.event({ + category: "Button", + action: "click", + label: `Events Stage-${stage}`, + }); + if (stage == "1") { + document.querySelector("#line-progress").style.width = "0%"; + document + .querySelectorAll(".section-content") + .forEach((stage) => stage.classList.remove("active")); + document.querySelector(".stage1-content").classList.add("active"); + } + if (stage == "2") { + document.querySelector("#line-progress").style.width = "25%"; + document + .querySelectorAll(".section-content") + .forEach((stage) => stage.classList.remove("active")); + document.querySelector(".stage2-content").classList.add("active"); + } + if (stage == "3") { + document.querySelector("#line-progress").style.width = "50%"; + document + .querySelectorAll(".section-content") + .forEach((stage) => stage.classList.remove("active")); + document.querySelector(".stage3-content").classList.add("active"); + } + if (stage == "4") { + document.querySelector("#line-progress").style.width = "75%"; + document + .querySelectorAll(".section-content") + .forEach((stage) => stage.classList.remove("active")); + document.querySelector(".stage4-content").classList.add("active"); + } + }; + return ( + +
+
+
    +
  • handleStage("1")}>Stage 1
  • +
  • handleStage("2")}>Stage 2
  • +
  • handleStage("3")}>Stage 3
  • +
  • handleStage("4")}>Stage 4
  • +
+
+
+
+
+ +
+
+
+ {" "} +

Registration

+

+ 🔗 Scan the QR in the poster or search www.hackatank.tech and + register for the event. +

+ 1️⃣ It will redirect you to the respective Google forms. Kindly + fill in the requested details. +

+ 2️⃣Our registration team will contact you further upon + registration. +

+ 3️⃣For any queries/issues, kindly check the contacts column for + Point of Contact (POC). +

+ 4️⃣Last date for registration is on or before the 25th of August + 2023. +

+ 5️⃣The first round is free for all the teams that register for + the event. +

+
+
+
+
+

+ Abstract Submission + + click here to downlaod - + ABSTRACT SUBMISSION REFERENCE + +

+

+ 📋 The problem statements are available on the home page, and it + is provided at the bottom of this page as a PDF for downloading. +

+ 📥 We also accept your own/inspired problem statements for + review. Kindly submit it as an abstract and the registration + team will contact you. +

+ 📝 The abstract format is given at the top right of this page as + a PDF for downloading. Kindly download and use it for reference. +

+ 📄 Abstract of the project must be submitted only in PDF file + format. +

⏰ The last date for abstract submission is on or + before the 28th of August 2023. +

+
+
+
+
+

Scrutinization

+

+ 🔍 The teams will be shortlisted by the judging panel on various + criteria which includes the scope of the project, execution + ideology, etc. +

+ 📢 The scrutinized/shortlisted teams for the final round of + "HACK-A-TANK" will be announced on the 30th of August 2023. +

+ 💰 The Shortlisted team should proceed with their registration + by completing the payment of Rs 999/- per team on or before 3rd + September 2023. +

+ 🔄 After the completion of payment, the registration team will + assess you for the further procedures of the final round. +

+
+
+
+
+

The Grand Finale

+

+ 🎉 The commencement of the inaugural function is scheduled at + 10:00 am on the 8th of September 2023. +

+ ⏱️ The "HACK-A-TANK" event will begin at 1:00 pm on the 8th of + September 2023 and will wrap up at 1:00 pm on the 9th of + September 2023. +

+ 🍔🍕 The lunch and dinner for the 8th of September will be + provided by the organizing committee to the participants. +

+ 🍳🍔 The breakfast and lunch for the 9th of September will be + provided by the organizing committee to the participants. +

+ 🍪 Refreshments will be provided to all the participating teams + at all feasible times by the organizing committee. +

+ 🏆 The event will be concluded with the announcement of the cash + prize winners of the "HACK-A-TANK" event on the 9th of September + 2023 by 4:00 pm. +

+
{" "} +
+
+
+
+ ); +}; + +export default events; diff --git a/src/components/footer/footer.css b/src/components/footer/footer.css new file mode 100644 index 0000000..256f50f --- /dev/null +++ b/src/components/footer/footer.css @@ -0,0 +1,27 @@ +.parent-footer { + background-color: rgb(0, 0, 0); + border-radius: 1vw 1vw 0 0; +} +.copyright { + padding-top: 1vh; + padding-bottom: 1vh; + display: flex; + justify-content: center; + align-items: center; + gap: 0.1vw; + font-size: 1vw; + color: slategrey; + font-weight: 400; + font-family: press start 2p; + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 3vw; + gap: 0.5vw; + } +} +.copyright-icon { + width: 15px; + height: 100%; + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + width: 15px; + } +} diff --git a/src/components/footer/footer.jsx b/src/components/footer/footer.jsx new file mode 100644 index 0000000..7020452 --- /dev/null +++ b/src/components/footer/footer.jsx @@ -0,0 +1,18 @@ +import React from "react"; +import { ReactComponent as Copyright } from "../../assets/copyright.svg"; +import "./footer.css"; +const footer = () => { + return ( + +
+

+ Copyrights + + {(new Date().getFullYear())} - {"All Rights Reserved."} +

+
+
+ ); +}; + +export default footer; diff --git a/src/components/guidelines/guidelines.css b/src/components/guidelines/guidelines.css new file mode 100644 index 0000000..22d5fc5 --- /dev/null +++ b/src/components/guidelines/guidelines.css @@ -0,0 +1,80 @@ +.parent-guidelines { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + width: 100%; + height: 100vh; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + padding-bottom: 3vh; + height: 100%; + } +} + +.guidelines-title { + padding-bottom: 2vw; + font-size: 3.5vw; + color: white; + font-family: audiowide; + letter-spacing: 3px; + font-weight: bold; + text-transform: uppercase; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 10vw; + } +} + +.guidelines-container { + display: flex; + flex-direction: column; + align-items: center; + color: white; + padding: 0vh 3vw; +} + +.guidelines-content { + display: flex; + align-items: flex-start; + color: white; + gap: 4vw; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + flex-direction: column; + gap: 3vh; + justify-content: center; + align-items: center; + } +} + +.guidelines-1, +.guidelines-2 { + flex-basis: 50%; + padding: 2vh 1vw; + border: 1px solid slategrey; + border-radius: 1vw; + font-size: 1.2vw; + background-color: rgb(0, 0, 0, 0.3); + backdrop-filter: blur(1vw); + font-family: lato; + font-weight: 400; + box-shadow: 0vw 0vw 2vw 0vw white; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 4vw; + padding: 2vh 2vw; + } +} + +.guidelines-1 a, +.guidelines-2 a { + color: white; + text-decoration: underline; + font-weight: 600; + transition: 0.3s; +} + +@keyframes fadeGuidelines { + 0% {} +} \ No newline at end of file diff --git a/src/components/guidelines/guildelines.jsx b/src/components/guidelines/guildelines.jsx new file mode 100644 index 0000000..71c45d9 --- /dev/null +++ b/src/components/guidelines/guildelines.jsx @@ -0,0 +1,49 @@ +import React, { useEffect } from "react"; +import "./guidelines.css"; + +const guildelines = () => { + useEffect(() => { + document.title = "Guidelines"; + }); + return ( + +
+
Guidelines
+
+
+
+ 1. All projects must be submitted by 7:00 PM on February 18th. ⏰🏁 +

+ 2. Submissions are to be made through our GitHub repository issues. For more information, visit our repository. 💻📥 +

+ 3. The maximum number of members per team is 4. There are two tracks: Undergraduate and Graduate. 👥🎓 +

+ 4. Plagiarism will result in immediate disqualification and a ban from future hackathons. 🚫🔍 +

+ 5. Each submission must include a 3-minute fast-forward presentation followed by a 2-minute FAQ session. Get more presentation tips on our Discord server. 🎤🕒 +

+ 6. Teams are allowed to start working on their projects 24 hours prior to the submission deadline, starting on February 17th. ⏳🛠️ +

+
+
+ 7. All participants are expected to adhere to the event's code of conduct. Unprofessional behavior will not be tolerated. 🚫⚖️ +

+ 8. Ensure your project adheres to the hackathon theme and addresses the specified challenges. 💡 +

+ 9. Teams are responsible for their own technical needs, including laptops, software, and any other necessary equipment. :laptop:⚙️ +

+ 10. Networking and collaboration with other teams is encouraged, but the final project must be the work of your team only. 🤝👥 +

+ 11. The judging panel's decisions are final. Feedback will be provided after the event. 🧑‍⚖️📝 +

+ 12. Enjoy the process, learn new things, and make the most of this opportunity to connect with the community! 😃✨ +

+
+
+
+
+
+ ); +}; + +export default guildelines; diff --git a/src/components/hero/agenda.css b/src/components/hero/agenda.css new file mode 100644 index 0000000..7f8be3c --- /dev/null +++ b/src/components/hero/agenda.css @@ -0,0 +1,386 @@ +.section2 { + position: relative; + isolation: isolate; +} + +.section2::after { + content: ""; + position: absolute; + z-index: -1; + inset: 0; + opacity: 0.1; + background-image: url("/images/topography.svg"); +} +@media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + .section2::after { + content: ""; + position: absolute; + z-index: -1; + inset: 0; + opacity: 0.1; + background-image: url("/images/topography.svg"); + } +} +.agenda { + position: relative; + padding: 3vw; + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + padding: 0vh 1vw; + padding-top: 5vh; + } +} +.agenda::after { + content: ""; + z-index: -1; + position: absolute; + top: 14.5vh; + left: 0vw; + right: 0; + bottom: 0; + /* background-color: red; */ + background-image: url("/images/circles.svg"); + background-size: 75%; + background-repeat: no-repeat; +} + +.agenda .title2 { + display: flex; + align-items: center; +} + +.agenda .title2 .title-name { + font-size: 45px; + margin-left: 6vw; + font-family: "russo one"; + font-weight: 800; + display: flex; + align-items: center; + gap: 2vw; + position: relative; + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 40px; + margin-left: 17vw; + } +} + +.title-name::after { + content: ""; + z-index: -1; + border-bottom: 4px solid #d500ed; + border-image: linear-gradient( + to right top, + #ffda00, + #ffaa17, + #ff7545, + #ff3c6f, + #ff0099, + #ed00ae, + #d100c4, + #aa0ada, + #9700e1, + #7f00e7, + #5e00ef, + #1b0cf6 + ); + border-image-slice: 1; + width: 35vw; +} + +.agenda .title2 img { + position: absolute; + z-index: -1; + width: 60px; + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + width: 55px; + left: 3vw; + } +} + +.agenda-text { + display: flex; + align-items: center; + margin-top: 5vh; + gap: 5vw; + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + padding: 1vh 2vw; + margin: 0; + } +} +.agenda-lottie-animation { + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + display: none; + } +} +.agenda-des { + text-align: justify; + padding: 3vh 3vw; + border: 5px solid; + border-image: linear-gradient( + to right top, + #bf00ff, + #d500ed, + #e400db, + #f000cb, + #f800bc, + #fb00b0, + #fc00a4, + #fd0099, + #fb008d, + #f80082, + #f40077, + #f0006d + ); + border-image-slice: 1; + font-family: raleway; + font-size: 1.5vw; + font-weight: 600; + position: relative; + /* isolation: isolate; */ + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 3.5vw; + padding: 2vh 3vw; + } +} +.agenda-des::after { + content: ""; + position: absolute; + z-index: 2; + inset: 0; + background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='12'%3E%3Cpath d='M9.8 12 0 2.2V.8l10 10 10-10v1.4L10.2 12h-.4zm-4 0L0 6.2V4.8L7.2 12H5.8zm8.4 0L20 6.2V4.8L12.8 12h1.4zM9.8 0l.2.2.2-.2h-.4zm-4 0L10 4.2 14.2 0h-1.4L10 2.8 7.2 0H5.8z' fill='%239C92AC' fill-opacity='.26' fill-rule='evenodd'/%3E%3C/svg%3E"); + background-color: rgb(255, 60, 111, 0.1); +} + +.parent-vision { + position: relative; + padding: 0vh 3vw; + padding-bottom: 10vh; + position: 99; + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + padding: 0; + } +} +.parent-vision::before { + content: ""; + position: absolute; + z-index: -1; + inset: 0; + opacity: 0.1; + /* background-color: #6a5acd; */ +} +/* .parent-vision::after { + content: ""; + position: absolute; + z-index: -1; + inset: 0; + opacity: 0.1; + background-image: url("/images/jigsaw.svg"); +} */ +.about-vision-image, +.about-mission-image { + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + display: none; + } +} +.vision { + display: flex; + align-items: center; + justify-content: space-between; + padding-top: 5vh; + margin-right: -3vw; + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + padding: 0; + margin-top: 3vh; + margin-right: 0; + } +} +.about-vision-title { + display: flex; + justify-content: center; + align-items: center; + font-family: russo one; + font-size: 4vw; + font-weight: 900; + text-transform: uppercase; + letter-spacing: 2px; + background-color: #a4508b; + background-image: linear-gradient(326deg, #a4508b 0%, #5f0a87 74%); + background-clip: text; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + opacity: 0; + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 6vw; + margin: 0; + padding: 0vh 2vw; + } +} + +.about-vision-description { + width: 50%; + text-align: justify; + padding: 2vh 2vw; + border-top: 5px solid; + border-left: 5px solid; + border-bottom: 5px solid; + border-image: linear-gradient( + to right top, + #bf00ff, + #d500ed, + #e400db, + #f000cb, + #f800bc, + #fb00b0, + #fc00a4, + #fd0099, + #fb008d, + #f80082, + #f40077, + #f0006d + ); + border-image-slice: 1; + font-family: raleway; + font-size: 1.3vw; + font-weight: 600; + position: relative; + isolation: isolate; + background: rgb(0, 0, 0, 0.9); + color: white; + opacity: 0; + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 2.5vw; + width: 70%; + padding: 1vh 2vw; + } +} + +.about-vision-description::after { + content: ""; + position: absolute; + inset: 0; + z-index: -1; + background-size: cover; + background-position: center; + background-image: url("/images/bg11.webp"); + /* background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='12'%3E%3Cpath d='M9.8 12 0 2.2V.8l10 10 10-10v1.4L10.2 12h-.4zm-4 0L0 6.2V4.8L7.2 12H5.8zm8.4 0L20 6.2V4.8L12.8 12h1.4zM9.8 0l.2.2.2-.2h-.4zm-4 0L10 4.2 14.2 0h-1.4L10 2.8 7.2 0H5.8z' fill='%239C92AC' fill-opacity='.26' fill-rule='evenodd'/%3E%3C/svg%3E"); */ +} + +.mission { + margin-top: 10vh; + display: flex; + align-items: center; + justify-content: space-between; + flex-direction: row-reverse; + margin-left: -3vw; + position: relative; + isolation: isolate; + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + margin-top: 3vh; + margin-left: 0; + padding-bottom: 3vh; + } +} +.mission::after { + content: ""; + position: absolute; + inset: 0; + z-index: -1; + /* background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='12'%3E%3Cpath d='M9.8 12 0 2.2V.8l10 10 10-10v1.4L10.2 12h-.4zm-4 0L0 6.2V4.8L7.2 12H5.8zm8.4 0L20 6.2V4.8L12.8 12h1.4zM9.8 0l.2.2.2-.2h-.4zm-4 0L10 4.2 14.2 0h-1.4L10 2.8 7.2 0H5.8z' fill='%239C92AC' fill-opacity='.26' fill-rule='evenodd'/%3E%3C/svg%3E"); */ +} +.about-mission-title { + margin-right: 5vw; + display: flex; + justify-content: center; + align-items: center; + font-family: russo one; + text-transform: uppercase; + letter-spacing: 2px; + font-size: 4vw; + font-weight: 900; + background-color: #a4508b; + background-image: linear-gradient(326deg, #a4508b 0%, #5f0a87 74%); + background-clip: text; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + opacity: 0; + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 6vw; + margin: 0; + padding: 0vh 2vw; + } +} + +.about-mission-description { + width: 50%; + text-align: justify; + padding: 2vh 2vw; + border-top: 5px solid; + border-right: 5px solid; + border-bottom: 5px solid; + border-image: linear-gradient( + to right top, + #bf00ff, + #d500ed, + #e400db, + #f000cb, + #f800bc, + #fb00b0, + #fc00a4, + #fd0099, + #fb008d, + #f80082, + #f40077, + #f0006d + ); + border-image-slice: 1; + font-family: raleway; + font-size: 1.3vw; + font-weight: 600; + position: relative; + isolation: isolate; + background: rgb(0, 0, 0, 0.9); + color: white; + opacity: 0; + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 2.5vw; + width: 70%; + padding: 1vh 2vw; + } +} + +.about-mission-description::after { + content: ""; + position: absolute; + inset: 0; + z-index: -1; + background-size: cover; + background-position: center; + background-image: url("/images/bg11.webp"); +} + +.agendaScrollAnimateRight { + animation: aboutDes 0.3s linear forwards; +} +@keyframes aboutDes { + 0% { + transform: translateX(50vw); + opacity: 0; + } + 100% { + transform: translateX(0); + opacity: 1; + } +} + +.agendaScrollAnimateLeft { + animation: aboutDes1 0.3s linear forwards; +} +@keyframes aboutDes1 { + 0% { + transform: translateX(-50vw); + opacity: 0; + } + 100% { + transform: translateX(0); + opacity: 1; + } +} diff --git a/src/components/hero/agenda.jsx b/src/components/hero/agenda.jsx new file mode 100644 index 0000000..68c5a90 --- /dev/null +++ b/src/components/hero/agenda.jsx @@ -0,0 +1,103 @@ +import Lottie from "lottie-react"; +import React, { useEffect, useRef } from "react"; +import animationData from "../../assets/mic.json"; +import "./agenda.css"; + +const section2 = () => { + useEffect(() => { + const callback = (entries) => { + entries.forEach((entry) => { + if (entry.isIntersecting) { + if (entry.target.id == "agenda-left") + entry.target.classList.add("agendaScrollAnimateLeft"); + if (entry.target.id == "agenda-right") + entry.target.classList.add("agendaScrollAnimateRight"); + } + }); + }; + + const options = { + threshold: 0.5, + }; + const observer = new IntersectionObserver(callback, options); + const divs = document.querySelectorAll( + ".about-vision-title,.about-vision-description,.about-mission-title,.about-mission-description" + ); + divs.forEach((div) => observer.observe(div)); + }); + + const ref = useRef(); + return ( + +
+
+
+ arrow-logo +

Agenda

+
+
+
+ { + ref.current.stop(); + ref.current.setSpeed(0.5); + ref.current.play(); + }} + onMouseLeave={() => ref.current.goToAndStop(1000)} + /> +
+
+ A hackathon is an event where individuals or teams come together + to collaboratively work on solving specific problems or challenges + within a limited timeframe, usually ranging from a few hours to a + couple of days. It is a great platform for programmers, designers, + entrepreneurs, and other creative minds to showcase their skills, + creativity, and problem-solving abilities. +
+
+
+
+
+
+ vision-image + Vision +
+
+ At the BostonBridge Hackathon 2024, our vision is to foster a dynamic and inclusive environment where the brightest minds from UMass Boston and beyond come together to innovate, collaborate, and create solutions that bridge the gap between commuter students and the vibrant city life of Boston. +
+
+
+
+ mission-image + Mission +
+
+ The mission of the BostonBridge Hackathon at UMass Boston is to inspire and empower students from diverse backgrounds to leverage their computer science skills in addressing the unique challenges associated with commuter student life. Our goal is to create a platform where innovative ideas can flourish, fostering a sense of community, collaboration, and technological advancement. +
+
+
+
+
+ ); +}; + +export default section2; diff --git a/src/components/hero/contact.css b/src/components/hero/contact.css new file mode 100644 index 0000000..10f8feb --- /dev/null +++ b/src/components/hero/contact.css @@ -0,0 +1,382 @@ +.parent-contact { + margin: 7vh 0vw; + width: 100%; + position: relative; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + margin: 5vh 1vw; + } +} + +.contact-title { + font-size: 45px; + font-family: "russo one"; + letter-spacing: 2px; + font-weight: 900; + padding-bottom: 5vh; + display: flex; + align-items: center; + gap: 2vw; + margin-left: 6vw; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 40px; + padding-bottom: 0; + padding-left: 10vw; + } +} + +.contact-title::after { + content: ""; + z-index: -1; + border-bottom: 4px solid #d500ed; + border-image: linear-gradient(to right top, + #ffda00, + #ffaa17, + #ff7545, + #ff3c6f, + #ff0099, + #ed00ae, + #d100c4, + #aa0ada, + #9700e1, + #7f00e7, + #5e00ef, + #1b0cf6); + border-image-slice: 1; + width: 35vw; +} + +.contact-title img { + position: absolute; + inset: 0; + z-index: -1; + width: 60px; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + width: 55px; + } +} + +.parent-container { + display: flex; + justify-content: space-evenly; + align-items: center; + width: 100%; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + flex-direction: column; + gap: 3vh; + } +} + +.contact-container { + height: 53vh; + width: 19vw; + perspective: 45vw; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + height: 40vh; + width: 65vw; + perspective: 200vw; + } +} + +.contact-card, +.contact-card1 { + height: 100%; + width: 100%; + position: relative; + transition: all 0.5s linear; + /* ----------------------- Flip Transition */ + transform-style: preserve-3d; +} + +.contact-card-flip { + cursor: pointer; + transform: rotateY(180deg); +} + +.contact-card-front, +.contact-card-back, +.contact-card-back1 { + height: 100%; + width: 100%; + border-radius: 1vw; + box-shadow: 0 0 5px 2px black; + position: absolute; + backface-visibility: hidden; + overflow: hidden; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + border-radius: 5vw; + } +} + +.contact-card-front img { + object-fit: cover; + height: 100%; + width: 100%; + transition: all 0.3s ease-in-out; + /* ----------------------- Rocket Transition */ +} + +.contact-card-front:hover img { + transform: rotate(-2deg); + scale: 1.1; +} + +.contact-card-front .contact-card-details { + position: absolute; + background-color: rgb(0, 0, 0, 0.5); + border-radius: 1vw; + backdrop-filter: blur(0.5vw); + width: 100%; + bottom: -17vh; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + padding: 3vh 1vw; + transition: all 0.3s linear; +} + +.contact-card-front:hover .contact-card-details { + bottom: 0vh; +} + +.contact-card-front .contact-card-name { + font-size: 2vw; + color: white; + font-weight: 700; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 8vw; + } +} + +.contact-card-front .contact-card-description { + font-size: 1vw; + color: white; + text-align: center; + position: relative; + padding-bottom: 2vh; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 4vw; + } +} + +.contact-card-options { + position: absolute; + z-index: 1; + color: white; + font-size: 0.8vw; + bottom: 1vh; + right: 1vw; + cursor: pointer; + transition: all 0.1s linear; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 3vw; + padding: 1vh 2vw; + } +} + +.contact-card-options:hover { + scale: 1.1; + color: rgb(255, 0, 119); +} + +.contact-card-back { + /* background-image: url("/images/judgeP/jon.jpg"); */ + background-size: cover; + background-repeat: no-repeat; +} + +.contact-card-back::before { + content: " "; + position: absolute; + inset: 0; + z-index: -2; +} + +.contact-card-back { + position: relative; + transform: rotateY(180deg); + display: flex; + justify-content: center; + padding-top: 10%; + cursor: pointer; +} + +.contact-card-back::after { + content: " "; + position: absolute; + inset: 0; + z-index: -1; + backdrop-filter: blur(1vw); + background-color: rgb(0, 0, 0, 0.5); +} + +@media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + .contact-card-back::after { + background-color: rgb(0, 0, 0, 0.7); + } +} + +.contact-card-back1::before { + content: " "; + position: absolute; + inset: 0; + z-index: -2; + /* background-image: url("/images/kishore.webp"); */ + background-size: cover; + background-repeat: no-repeat; +} + +.contact-card-back1 { + position: relative; + transform: rotateY(180deg); + display: flex; + justify-content: center; + padding-top: 10%; + cursor: pointer; +} + +.contact-card-back1::after { + content: " "; + position: absolute; + inset: 0; + z-index: -1; + backdrop-filter: blur(1vw); + background-color: rgb(0, 0, 0, 0.7); +} + +@media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + .contact-card-back1::after { + background-color: rgb(0, 0, 0, 0.7); + } +} + +.contact-card-back .contact-card-details, +.contact-card-back1 .contact-card-details { + height: 100%; + padding-top: 2vh; + display: flex; + align-items: center; + flex-direction: column; + gap: 3vh; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + padding: 0; + gap: 5vh; + } +} + +.contact-card-back .contact-card-name, +.contact-card-back1 .contact-card-name { + font-size: 2vw; + color: white; + font-weight: 700; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 7vw; + text-transform: uppercase; + } +} + +.contact-card-back .contact-card-description, +.contact-card-back1 .contact-card-description { + display: flex; + flex-direction: column; + gap: 2vh; + width: 100%; + height: 100%; +} + +.contact-card-back .contact-card-phone, +.contact-card-back1 .contact-card-phone, +.contact-card-back .contact-card-email, +.contact-card-back1 .contact-card-email, +.contact-card-back .contact-card-instagram, +.contact-card-back1 .contact-card-instagram, +.contact-card-back .contact-card-discord, +.contact-card-back1 .contact-card-discord { + font-size: 1vw; + color: white; + position: relative; + display: flex; + justify-content: flex-start; + align-items: center; + width: 100%; + gap: 0.5vw; + font-weight: 600; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 3.5vw; + gap: 1vw; + font-weight: 600; + } +} + +.contact-card-back .contact-card-phone:hover, +.contact-card-back1 .contact-card-phone:hover, +.contact-card-back .contact-card-email:hover, +.contact-card-back1 .contact-card-email:hover, +.contact-card-back .contact-card-instagram:hover, +.contact-card-back1 .contact-card-instagram:hover, +.contact-card-back .contact-card-discord:hover, +.contact-card-back1 .contact-card-discord:hover { + /* color: rgb(255, 0, 119); */ + color: #c34ea8; +} + +.phone, +.email, +.instagram, +.discord { + color: white; + border: 1px solid white; + padding: 1vh 0.5vw; + border-radius: 50%; +} + +.contact-card-launch { + animation: launch 3s ease-in-out; +} + +@keyframes launch { + 0% { + transform: rotate(-10deg); + } + + 5% { + transform: rotate(10deg); + } + + 10% { + transform: rotate(0deg); + } + + 15% { + transform: rotate(10deg); + } + + 20% { + transform: rotate(0deg); + } + + 25% { + transform: rotate(10deg); + } + + 50% { + transform: translateX(100px) translateY(-100px) rotate(5deg); + } + + 100% { + transform: translateX(500px) translateY(-400px) rotate(-5deg); + opacity: 0; + } +} \ No newline at end of file diff --git a/src/components/hero/contact.jsx b/src/components/hero/contact.jsx new file mode 100644 index 0000000..cfb19c8 --- /dev/null +++ b/src/components/hero/contact.jsx @@ -0,0 +1,16 @@ +import React from "react"; +import "./contact.css"; + +const contact = () => { + + return ( + +
+
+
+ ); +}; + + + +export default contact; diff --git a/src/components/hero/convener.css b/src/components/hero/convener.css new file mode 100644 index 0000000..a5a1d92 --- /dev/null +++ b/src/components/hero/convener.css @@ -0,0 +1,133 @@ +.parent-convener { + width: 100%; + position: relative; + padding: 0; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + padding: 2vh 2vw; + } +} + +.convener-logo { + position: absolute; + z-index: -1; + inset: 0; + width: 60px; + object-fit: contain; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + width: 50px; + } +} + +.convener-title { + position: relative; +} + +.convener-title-name { + font-size: 45px; + margin-left: 6vw; + font-family: "russo one"; + font-weight: 800; + display: flex; + align-items: center; + gap: 2vw; + position: relative; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 40px; + margin-left: 15vw; + } +} + +.convener-title-name::after { + content: ""; + z-index: -1; + border-bottom: 4px solid #d500ed; + border-image: linear-gradient(to right top, + #ffda00, + #ffaa17, + #ff7545, + #ff3c6f, + #ff0099, + #ed00ae, + #d100c4, + #aa0ada, + #9700e1, + #7f00e7, + #5e00ef, + #1b0cf6); + border-image-slice: 1; + width: 35vw; +} + +@media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + .convener-title-name::after { + display: none; + } +} + +.convener-container { + display: flex; + justify-content: space-around; + flex-wrap: wrap; + align-items: start; + padding: 5vh 0vw; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + flex-direction: column; + justify-content: center; + align-items: center; + gap: 5vh; + } +} + +.convener-card { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + font-family: "Russo One"; + line-height: normal; +} + +.convener-card>img { + border-radius: 50%; + width: 250px; + height: 250px; + object-fit: cover; + object-position: top; + border: 4px solid #ff007b; +} + +.convener-name { + font-size: 40px; + font-family: inherit; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 30px; + } +} + +.convener-position { + width: 300px; + text-align: center; + font-size: 20px; + font-family: "exo"; + font-weight: 700; + text-wrap: wrap; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 15px; + } +} + +.convener-dep { + font-size: 20px; + font-family: "exo"; + font-weight: 700; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 15px; + } +} \ No newline at end of file diff --git a/src/components/hero/convener.jsx b/src/components/hero/convener.jsx new file mode 100644 index 0000000..c0a0649 --- /dev/null +++ b/src/components/hero/convener.jsx @@ -0,0 +1,70 @@ +import React from "react"; +import "./convener.css"; +const convener = () => { + return ( + +
+
+ +

Staff

+
+ +
+ + + + + + + + +
+
+
+ ); +}; + +const ConvenerCard = ({ name, image, position }) => { + return ( +
+ {name} +

{name}

+ +

+ {position}{" "} +

+
+ ); +}; + +export default convener; diff --git a/src/components/hero/coordinators.jsx b/src/components/hero/coordinators.jsx new file mode 100644 index 0000000..dad397a --- /dev/null +++ b/src/components/hero/coordinators.jsx @@ -0,0 +1,41 @@ +import React from "react"; +import "./convener.css"; +const coordinators = () => { + return ( + +
+ {/*
+ +

Coordinators

+
+ +
+
+ Giridharan - Assistant professor +

Mr. S. Giridharan

+

+ Assistant Professor - Cyber Security +

+
+
+ Nandhashree - Assistant professor +

Ms. K.R. Nandhashree

+

+ Assistant Professor - Cyber Security +

+
+
*/} +
+
+ ); +}; + +export default coordinators; diff --git a/src/components/hero/faqs.css b/src/components/hero/faqs.css new file mode 100644 index 0000000..80b2bab --- /dev/null +++ b/src/components/hero/faqs.css @@ -0,0 +1,128 @@ +.parent-faqs { + margin: 7vh 0vw; + width: 100%; + position: relative; + display: flex; + flex-direction: column; + gap: 2vh; + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + margin: 5vh 1vw; + } +} +.faqs-title { + font-size: 45px; + font-family: "russo one"; + letter-spacing: 2px; + font-weight: 900; + display: flex; + align-items: center; + gap: 2vw; + position: relative; + padding-left: 6vw; + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 40px; + padding-left: 15vw; + } +} + +.faqs-title::after { + content: ""; + z-index: -1; + border-bottom: 4px solid #d500ed; + border-image: linear-gradient( + to right top, + #ffda00, + #ffaa17, + #ff7545, + #ff3c6f, + #ff0099, + #ed00ae, + #d100c4, + #aa0ada, + #9700e1, + #7f00e7, + #5e00ef, + #1b0cf6 + ); + border-image-slice: 1; + width: 50vw; +} +.faqs-title img { + position: absolute; + inset: 0; + z-index: -1; + width: 60px; + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + width: 55px; + } +} + +.faqs-section { + display: flex; + flex-direction: column; + margin-left: 10vw; + gap: 5vh; + width: 80%; + height: 100%; + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + width: 100%; + margin: 0; + gap: 3vh; + } +} + +.faqs-content { + border: 2px dotted black; + padding: 0.5vh 1vw; + border-radius: 0.5vw; + display: flex; + flex-direction: column; + justify-content: flex-start; + gap: 2vh; + overflow-y: hidden; + position: relative; + cursor: pointer; + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + border-radius: 1vw; + } +} +.faqs-view { + display: block; +} +.faqs-content-title { + font-size: 1.6vw; + font-weight: 800; + font-family: Arial; + letter-spacing: 1px; + text-transform: uppercase; + display: flex; + justify-content: space-between; + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 4vw; + } +} + +.faqs-content-description { + padding: 0vh 0vw; + text-align: justify; + animation: faqsFade 0.3s ease-in forwards; + display: none; +} +@keyframes faqsFade { + 0% { + opacity: 0; + transform: translateY(5vh); + } + 100% { + opacity: 1; + transform: translateY(0vh); + } +} + +.arrow-transform { + transform: rotate(90deg); +} + +.faq-visible { + display: block; +} diff --git a/src/components/hero/faqs.jsx b/src/components/hero/faqs.jsx new file mode 100644 index 0000000..8906f53 --- /dev/null +++ b/src/components/hero/faqs.jsx @@ -0,0 +1,141 @@ +import ChevronRightIcon from "@mui/icons-material/ChevronRight"; +import React from "react"; +import ReactGA from "react-ga"; +import "./faqs.css"; + +const faqs = () => { + const handleArrow = (element) => { + ReactGA.event({ + category: "Button", + action: "click", + label: "FAQs", + }); + const elementVisible = element.currentTarget.querySelector( + ".faqs-content-description" + ); + const arrow = element.currentTarget.querySelector(".faqs-arrow"); + + elementVisible.classList.toggle("faq-visible"); + arrow.classList.toggle("arrow-transform"); + }; + + const styles = { + container: { + position: "relative", + zIndex: "-1", + fontSize: "2.5vw", + transition: "all 0.3s linear", + cursor: "pointer", + }, + }; + + if (window.innerWidth <= 768) { + styles.container = { + ...styles.container, + fontSize: "5vw", + }; + } + + return ( + +
+

+ arrow-logo + FAQs +

+ +
+
+

+ What is a hackathon? + +

+

+ A hackathon is an event, typically lasting several hours or days, where individuals and teams collaborate intensively on software and hardware projects. It's a creative forum for exploring new technologies, solving problems, and building innovative solutions. +

+
+ +
+

+ Who can participate? + +

+

+ The hackathon is open to all UMass Boston students, regardless of their major or year. It's an opportunity for students from various disciplines to come together and innovate. +

+
+ +
+

+ How much is the registration fee? + +

+

+ Registration for the hackathon is completely free, thanks to the UMB Computer Science Club! Our aim is to make this event accessible to all interested students. +

+
+ +
+

+ Is the hackathon online or offline? + +

+

+ It is in-person, at CC Ballroom Sections, however, we will stream the whole event at our discord stage 🙂 +

+
+
+

+ What is the prize money of the winning team? + +

+

+ The winners of each track will receive a selection of prizes from our list, which includes items such as a Razer Kraken Kitty Gaming Headset, Logitech G502 X Plus Lightspeed Mouse, CORSAIR K100 RGB Mechanical Gaming Keyboard, FLEXISPOT EN1 Electric Stand-Up Desk, Raspberry Pi 5 (8GB RAM), and more. +

+
+
+

+ What is the team size to participate in the Hackathon? + +

+

+ Teams can have a maximum of 4. This size is ideal for promoting effective collaboration while ensuring each member can significantly contribute. +

+
+
+

+ What are the prerequisites considered for registering? + +

+

+ There are no special prerequisites! Just be a UMB student, fill out the registration form, join our Discord server, and you're all set to participate in the hackathon. +

+
+
+
+
+ ); +}; + +export default faqs; diff --git a/src/components/hero/hero.css b/src/components/hero/hero.css new file mode 100644 index 0000000..f4b2215 --- /dev/null +++ b/src/components/hero/hero.css @@ -0,0 +1,864 @@ +.parent_hero { + padding-right: 1vw; + padding-left: 6vw; + padding-top: 3vh; + position: relative; + isolation: isolate; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + padding: 0 2vw; + } +} + +.parent_hero::after { + content: ""; + position: absolute; + z-index: -2; + inset: 0; + opacity: 0.1; + background-image: url("/images/topography.svg"); +} + +@media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + .parent_hero::after { + content: ""; + position: absolute; + z-index: -2; + inset: 0; + opacity: 0.1; + background-image: url("/images/topography.svg"); + } +} + +.tag-hero-mobile { + display: flex; + align-items: flex-end; + gap: 1vw; + position: relative; + z-index: -1; + padding: 0; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + display: flex; + justify-content: space-evenly; + align-items: center; + gap: 2vw; + } +} + +/* .hero-srm-logo { + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + width: 10vw; + } +} */ + +/* .hero-srmvec-logo { + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + width: 15vw; + } +} */ + +.parent_hero .tag { + position: relative; + font-family: poppins; + font-weight: 500; + color: black; + border: 1px solid grey; + font-size: 1.1vw; + padding: 0vh 0.4vw; + border-radius: 1vw; + margin-bottom: 2vh; + margin-top: 5vh; + font-weight: 600; + display: flex; + gap: 0.3vw; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 2.5vw; + padding: 0.2vh 1vw; + margin-top: 3vh; + text-align: center; + font-weight: 600; + gap: 1vw; + } +} + +.tag>div { + display: flex; + align-items: flex-start; +} + +.tag>div>span { + font-size: 0.7vw; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 2vw; + } +} + +.parent_hero .column { + display: flex; + justify-content: space-between; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + display: flex; + align-items: center; + flex-direction: column; + width: 100%; + } +} + +.parent_hero .column .left_side { + padding-top: 2vh; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + padding: 0; + } +} + +.parent_hero .title1 { + position: relative; + font-size: 4.7vw; + text-transform: uppercase; + font-weight: 600; + line-height: 110%; + font-family: liger; + margin-top: 3vh; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 9vw; + } +} + +/* .title1::after { + content: ""; + position: absolute; + z-index: -1; + left: -24.5vw; + top: -28vh; + bottom: 0; + right: 0; + scale: 0.45; + background-size: contain; + transform: rotate(-23deg); + background-repeat: no-repeat; + background-image: url("/images/curve.webp"); +} +.curve { + position: absolute; + z-index: -1; + left: 0; + top: -30vh; + bottom: 0; + right: 0.5vw; + scale: 0.19; + background-size: contain; + transform: rotate(-40deg) scaleX(-1); + background-repeat: no-repeat; + background-image: url("/images/curve.webp"); +} */ +/* .tag1 { + position: absolute; + font-size: 1vw; + top: 7vh; + left: 0vw; + font-weight: 500; + letter-spacing: 1px; + font-family: suggested; +} */ + +.br { + display: block; + margin-bottom: 0em; +} + +.parent_hero .title1 .hackathon { + position: relative; + font-family: liger; +} + +.parent_hero .title1 .hackathon::after { + content: ""; + z-index: -1; + position: absolute; + height: 4vh; + width: 0; + left: 0; + bottom: 1vh; + background: rgb(243, 158, 172, 0.7); + animation: line 1s ease-in-out forwards; +} + +@media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + .parent_hero .title1 .hackathon::after { + height: 2vh; + } +} + +@keyframes line { + 100% { + width: 100%; + } +} + +.parent_hero .title1 .description { + margin-top: 8vh; + font-size: 1.2vw; + font-weight: 500; + font-family: "arial"; + line-height: normal; + text-transform: none; + letter-spacing: 0px; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + margin-top: 0; + font-size: 2.8vw; + font-weight: 400; + } +} + +.parent_hero .title1 .description span { + font-weight: 700; +} + +.register_now { + margin-top: 5vh; + position: relative; + padding: 0.5vh 0.5vw; + background-color: black; + border-radius: 2vw; + cursor: pointer; + color: white; + display: flex; + align-items: center; + justify-content: space-evenly; + width: 20vw; + height: fit-content; + transition: all 0.3s ease-in-out; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + margin-top: 2vh; + padding: 0 1vw; + width: 60vw; + } +} + +.register_now:hover { + /* width: 40vw; + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + width: 62vw; + } */ +} + +.register_now a { + text-decoration: none; + font-size: 1.4vw; + letter-spacing: -10px; + color: white; + font-family: mars; + font-weight: bold; + margin-right: 0.5rem; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 4vw; + letter-spacing: -6px; + } +} + +.countdown-main { + margin-top: 5vh; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + margin-top: 2vh; + } +} + +.countdown-text { + font-size: 3vw; + font-family: "Franklin Gothic Medium"; + font-weight: 600; + background-color: #6b0f1a; + background-image: linear-gradient(315deg, #6b0f1a 0%, #b91372 74%); + background-clip: text; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; +} + +.countdown { + position: relative; + display: flex; + gap: 1.5vw; + align-items: center; + background-image: url("/images/purple4.webp"); + width: fit-content; + background-repeat: no-repeat; + background-position: center; + background-size: cover; + border-radius: 1vw; + padding: 2vh 1vw; + isolation: isolate; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + border-radius: 3vw; + overflow: hidden; + padding: 1vh 1vw; + } +} + +.countdown::after { + content: ""; + position: absolute; + inset: 0; + background: rgb(0, 0, 0, 0.3); + z-index: -1; + border-radius: 1vw; +} + +.countdown .day-card, +.hour-card, +.min-card, +.sec-card { + position: relative; + display: flex; + flex-direction: column; + align-items: center; + font-size: 1.2vw; + width: 7vw; + border-radius: 1vw; + color: white; + backdrop-filter: blur(0.5vw); + isolation: isolate; + overflow: hidden; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 3vw; + width: 18vw; + } +} + +.countdown .day-card::after, +.hour-card::after, +.min-card::after, +.sec-card::after { + content: ""; + position: absolute; + inset: 0; + z-index: -1; + opacity: 1; + background: rgb(255, 255, 255, 0.1); +} + +.sep { + color: white; + margin-bottom: 5vh; + font-size: 4vw; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 10vw; + margin-bottom: 2vh; + } +} + +.countdown .day, +.hours, +.minutes, +.seconds { + letter-spacing: 15px; + color: white; + font-family: technology; + font-weight: 900; + padding: 0vh 0vw; + font-size: 4vw; + border-radius: 1vw; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 10vw; + } +} + +.right_side { + display: grid; + flex-basis: 43%; + grid-template-columns: 1fr 1fr; + gap: 0.5vh 1vw; + margin-top: -2vh; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + margin-top: 5vh; + display: grid; + grid-template-columns: 1fr; + gap: 0vh 5vw; + } +} + +.animated-div { + animation: slide 0.8s ease-in-out forwards; + opacity: 0; +} + +@keyframes slide { + 0% { + opacity: 0; + transform: translateY(-5vh); + } + + 100% { + opacity: 1; + transform: translateY(0); + } +} + +.animated-div:nth-child(2) { + animation-delay: 0.4s; +} + +.animated-div:nth-child(3) { + animation-delay: 0.2s; +} + +.animated-div:nth-child(4) { + animation-delay: 0.8s; +} + +.animated-div:nth-child(6) { + animation-delay: 1.2s; +} + +.arrow-right-icon { + width: 30px; + height: 100%; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + width: 40px; + } +} + +.right_side .col1 { + position: relative; + padding: 1vw; + margin-top: 9vh; + height: fit-content; + background-repeat: no-repeat; + background-size: cover; + border-radius: 1vw; + background-color: #4d4855; + background-image: linear-gradient(147deg, #4d4855 0%, #000000 74%); + background-image: url("/images/planet2.webp"); + isolation: isolate; + transition: all 0.1s linear; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + margin: 0; + padding: 2vh 5vw; + border-radius: 3vw; + width: 90vw; + } +} + +.col1:hover { + transition: all 0.1s linear; + scale: 1.01; +} + +.col2:hover { + transition: all 0.1s linear; + scale: 1.01; +} + +.col3:hover { + transition: all 0.1s linear; + scale: 1.01; +} + +.col4:hover { + transition: all 0.1s linear; + scale: 1.01; +} + +.col6:hover { + transition: all 0.1s linear; + scale: 1.01; +} + +.right_side .col1::after { + content: ""; + position: absolute; + inset: 0; + z-index: -1; + backdrop-filter: blur(1.5px); + border-radius: 1vw; + box-shadow: 0vw 15vh 1vw 1vw black; +} + +@media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + .right_side .col1::after { + content: ""; + position: absolute; + inset: 0; + z-index: -1; + backdrop-filter: blur(1.5px); + border-radius: 5vw; + box-shadow: 0vw 0vh 0vw 0vw black; + } +} + +.right_side .col1 .text { + color: #d9e4f5; + background-image: linear-gradient(315deg, #d9e4f5 0%, #f5e3e6 74%); + background-clip: text; + font-family: poppins; + font-weight: 900; + font-size: 1.5vw; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + border-bottom: 2px dotted white; + display: flex; + align-items: center; + justify-content: space-between; + gap: 5vw; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 8vw; + } +} + +.right_side .col1 .text>div { + display: flex; + gap: 0.3vw; +} + +.right_side .col1 .text>div>div { + display: flex; + align-items: flex-start; +} + +.right_side .col1 .text>div>div>div:nth-child(2) { + font-size: 1vw; +} + +.calender-icon { + width: 25px; + height: 100%; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + width: 35px; + } +} + +.right_side .col1 .text2 { + color: white; + margin-top: 10vh; + font-size: 1.2vw; + display: flex; + align-items: center; + justify-content: space-between; + border-bottom: 2px dotted slategrey; + cursor: pointer; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 5vw; + } +} + +.right_side .col1 .text3 { + color: white; + margin-top: 3vh; + font-size: 1.2vw; + display: flex; + align-items: center; + justify-content: space-between; + border-bottom: 2px dotted slategrey; + cursor: pointer; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 5vw; + } +} + +.right_side .col2 { + position: relative; + height: fit-content; + padding: 1vw; + background-repeat: no-repeat; + background-size: cover; + border-radius: 1vw; + background-color: #4d4855; + background-image: linear-gradient(147deg, #4d4855 0%, #000000 74%); + background-image: url("/images/light.webp"); + isolation: isolate; + overflow: hidden; + transition: all 0.1s linear; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + margin-top: 1vh; + padding: 5vw; + border-radius: 5vw; + } +} + +.right_side .col2::after { + content: ""; + position: absolute; + inset: 0; + z-index: -1; + backdrop-filter: blur(1.5px); + background: black; + opacity: 0.6; +} + +.info-icon { + width: 25px; + height: 100%; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + width: 40px; + } +} + +.right_side .col2 .text4 { + color: #d9e4f5; + background-image: linear-gradient(315deg, #d9e4f5 0%, #f5e3e6 74%); + background-clip: text; + font-family: poppins; + font-weight: 900; + font-size: 1.3vw; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + border-bottom: 2px dotted white; + display: flex; + align-items: center; + justify-content: space-between; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 7vw; + } +} + +.right_side .col2 .text5 { + color: white; + margin-top: 10vh; + font-size: 1.2vw; + display: flex; + align-items: center; + justify-content: space-between; + border-bottom: 2px dotted slategrey; + cursor: pointer; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 5vw; + } +} + +.right_side .col2 .text6 { + margin-top: 3vh; + font-size: 1.2vw; + display: flex; + align-items: center; + border-bottom: 2px dotted slategrey; + color: white; + justify-content: space-between; + cursor: pointer; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 5vw; + } +} + +.right_side .col3 { + /* margin-top: 1vh; */ + position: relative; + height: fit-content; + padding: 1vw; + background-repeat: no-repeat; + border-radius: 1vw; + background-color: #4d4855; + background-image: url("/images/motherboard.webp"); + isolation: isolate; + overflow: hidden; + border: 0.2vw solid black; + transition: all 0.1s linear; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + margin-top: 2vh; + border-radius: 4vw; + padding: 2vh 5vw; + } +} + +.right_side .col3::after { + content: ""; + position: absolute; + inset: 0; + z-index: -1; + backdrop-filter: blur(3px); + background-color: rgb(213, 254, 253); + background-image: linear-gradient(315deg, #d5fefd 0%, #fffcff 74%); + opacity: 0.4; + animation: dissolve 7s infinite alternate; +} + +@keyframes dissolve { + 0% { + opacity: 0.5; + } + + 50% { + opacity: 1; + } + + 100% { + opacity: 0.5; + } +} + +.right_side .col3 .text7 { + color: purple; + text-transform: uppercase; + font-family: exo; + font-weight: 900; + text-align: center; + font-size: 1.3vw; + letter-spacing: 2px; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 6vw; + } +} + +.right_side .col3 .text8 { + margin-top: 5vh; + border-bottom: 3px dotted black; + color: black; + font-size: 1.2vw; + font-weight: 700; + cursor: pointer; + display: flex; + align-items: center; + justify-content: space-between; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 5vw; + } +} + +.right_side .col3 .text9 { + cursor: pointer; + margin-top: 3vh; + padding-bottom: 1vh; + color: black; + border-bottom: 3px dotted black; + font-size: 1.2vw; + font-weight: 700; + display: flex; + align-items: center; + justify-content: space-between; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 5vw; + } +} + +.right_side .col4 { + margin-top: -4vh; + position: relative; + height: fit-content; + padding: 1vw; + background-repeat: no-repeat; + background-size: cover; + border-radius: 1vw; + background-color: #537895; + background-image: linear-gradient(315deg, #537895 0%, #09203f 74%); + isolation: isolate; + overflow: hidden; + transition: all 0.1s linear; + cursor: pointer; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + margin-top: 2vh; + border-radius: 2vw; + padding: 2vh 5vw; + } +} + +.right_side .col4::after { + content: ""; + position: absolute; + inset: 0; + z-index: -1; + opacity: 0; +} + +.right_side .col4 .text10, +.text13 { + color: white; + font-weight: 600; + font-size: 1.2vw; + display: flex; + align-items: center; + justify-content: space-between; + border-bottom: 2px dotted white; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 6vw; + } +} + +.location-icon { + width: 35px; + height: 100%; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + width: 45px; + } +} + +.right_side .col4 .text11, +.text14 { + font-family: zeniq; + font-size: 0.92vw; + padding-top: 2vh; + color: white; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 3.5vw; + padding-top: 1.5vh; + } +} + +.right_side .col4 .text12, +.text15 { + padding-top: 0.7vh; + font-family: zeniq; + font-size: 0.9vw; + color: white; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 3.5vw; + } +} + +.venue-text-mobile { + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + font-size: 4vw; + } +} + +.right_side .col6 { + margin-top: -10vh; + position: relative; + height: fit-content; + padding: 1vw; + background-repeat: no-repeat; + background-size: cover; + border-radius: 1vw; + background-color: #485461; + background-image: linear-gradient(147deg, #4d4855 0%, #000000 74%); + isolation: isolate; + transition: all 0.1s linear; + + @media all and (max-width: 768px) and (max-height: 1024px) and (orientation: portrait) { + margin-top: 0.5vh; + border-radius: 2vw; + padding: 1vh 3vw; + } +} \ No newline at end of file diff --git a/src/components/hero/hero.jsx b/src/components/hero/hero.jsx new file mode 100644 index 0000000..636f23b --- /dev/null +++ b/src/components/hero/hero.jsx @@ -0,0 +1,265 @@ +import KeyboardDoubleArrowRightSharpIcon from "@mui/icons-material/KeyboardDoubleArrowRightSharp"; +import { Sidetab, Widget } from '@typeform/embed-react'; +import React, { useEffect, useState } from "react"; +import ReactGA from "react-ga"; +import VanillaTilt from "vanilla-tilt"; +import { Footer } from "../"; +import { ReactComponent as ArrowRightBlack } from "../../assets/arrow-right-black.svg"; +import { ReactComponent as ArrowRightWhite } from "../../assets/arrow-right-white.svg"; +import { ReactComponent as Calender } from "../../assets/calender.svg"; +import { ReactComponent as Info } from "../../assets/info.svg"; +import { ReactComponent as Location } from "../../assets/location.svg"; +import Agenda from "./agenda"; +import "./hero.css"; +import Schedule from "./schedule"; +import Sponsors from "./sponsors"; + +const hero = () => { + const handleRegisterClick = () => { + ReactGA.event({ + category: "Button", + action: "click", + label: "register", + }); + window.open("http://bit.ly/bostonbridgeumass"); + }; + const handleCardClicks = (card) => { + ReactGA.event({ + category: "Button", + action: "click", + label: `${card}`, + }); + window.open(`${card}`, "_self"); + }; + const [countdown, setCountdown] = useState({ + days: 0, + hours: 0, + minutes: 0, + seconds: 0, + }); + const handleCountdown = () => { + const countDate = new Date("February 18, 2024 10:00:00").getTime(); + const now = new Date().getTime(); + const diff = countDate - now; + { + if (now > countDate) return; + } + const second = 1000; + const minute = second * 60; + const hour = minute * 60; + const day = hour * 24; + + var textDay = Math.floor(diff / day); + var textHour = Math.floor((diff % day) / hour); + var textMinute = Math.floor((diff % hour) / minute); + var textSecond = Math.floor((diff % minute) / second); + + if (textDay.toString().length == 1) { + textDay = `0${textDay}`; + } + if (textHour.toString().length == 1) { + textHour = `0${textHour}`; + } + if (textMinute.toString().length == 1) { + textMinute = `0${textMinute}`; + } + if (textSecond.toString().length == 1) { + textSecond = `0${textSecond}`; + } + + setCountdown({ + days: textDay, + hours: textHour, + minutes: textMinute, + seconds: textSecond, + }); + }; + + useEffect(() => { + const tilt = VanillaTilt.init( + document.querySelectorAll(".anim"), + { + max: 10, + speed: 400, + }, + [] + ); + const interval = setInterval(() => handleCountdown(), 1000); + return () => { + clearInterval(interval); + }; + }, []); + return ( + +
+ {/*
*/} +
+ {/* srm logo */} +
+
+
Celebrating 2
+ nd +
+ Hackathon at UMass Boston +
+ {/* srmvec logo */} +
+ + {/* ----------------------- Page 1 ------------------------- */} +
+
+
+ +
+ {"BostonBridge"} +
+ {/*

A National Level 24 Hour Hackathon

*/} + {/* Hackathon */} +

+ We are excited to announce the BostonBridge Hackathon + happening
on February 18th, 2024 +

+
+ +
+
+ REGISTER + NOW +
+
+ {" "} + +
+
+
+ {/*

+ Join us for the ultimate coding extravaganza! +

*/} +
+
+

{countdown.days}

+

Days

+
+
:
+
+

{countdown.hours}

+

Hours

+
+
:
+
+

{countdown.minutes}

+

Minutes

+
+
:
+
+

{countdown.seconds}

+

Seconds

+
+
+
+
+ +
+ {/* -------------------------- Column 1 * ---------------------------------- */} + +
+

+
+
+
18
th
{" "} +
{" "} + February +
+ +

+

handleCardClicks("/guidelines")} + > + Guidelines +

+
+ {/* -------------------------- Column 2 * ---------------------------------- */} +
+

+ Information Details +

+

handleCardClicks("/about")}> + About + +

+

handleCardClicks("/judges")}> + Judge Panel + +

+
+ {/* -------------------------- Column 3 * ---------------------------------- */} +
+
+

Problem Statements

+
+

handleCardClicks("/set1")}> + See more +

+ {/*

handleCardClicks("/set2")}> + Collection 2 +

*/} +
+ {/* -------------------------- Column 4 ---------------------------------- */} +
+ window.open("https://maps.app.goo.gl/4pkLzcBznrQA2EVA6") + } + > +

+ Boston +

+
+

+ University of Massachusetts Boston +

+
+
+
+ {/* -------------------------- Column 5 ---------------------------------- */} +
+ {/* -------------------------- Column 6 ---------------------------------- */} +
+

+ Organized By +
+

+
+

UMass Boston

+

Computer Science Club - CSC

+
+
+
+
+
+ {/* -------------------------- Page 2 -------------------------- */} +
+ + +
+ +
+ + +