@omega.js/web 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +98 -0
- package/README.md +640 -0
- package/bin/omega +2 -0
- package/bin/omega-web +2 -0
- package/bin/omg +2 -0
- package/core/_includes/admin/sections/sidebar.json +100 -0
- package/core/_includes/admin/sections/topbar.json +11 -0
- package/core/_includes/backend/sections/sidebar.json +39 -0
- package/core/_includes/backend/sections/topbar.json +16 -0
- package/core/_includes/core/body.html +102 -0
- package/core/_includes/core/foot.html +536 -0
- package/core/_includes/core/head.html +423 -0
- package/core/_includes/core/pricing/price-per-unit.html +33 -0
- package/core/_includes/core/showcase/entry-body.html +94 -0
- package/core/_includes/core/showcase/index-body.html +43 -0
- package/core/_includes/core/showcase/nav.html +60 -0
- package/core/_includes/frontend/sections/footer.json +74 -0
- package/core/_includes/frontend/sections/nav.json +70 -0
- package/core/_includes/global/sections/account.json +31 -0
- package/core/_includes/modules/engagement/giscus.html +26 -0
- package/core/_layouts/blueprint/404.html +10 -0
- package/core/_layouts/blueprint/about.html +10 -0
- package/core/_layouts/blueprint/account/index.html +11 -0
- package/core/_layouts/blueprint/admin/calendar/index.html +590 -0
- package/core/_layouts/blueprint/admin/dashboard/index.html +301 -0
- package/core/_layouts/blueprint/admin/firebase/index.html +214 -0
- package/core/_layouts/blueprint/admin/posts/editor.html +157 -0
- package/core/_layouts/blueprint/admin/posts/index.html +126 -0
- package/core/_layouts/blueprint/admin/stackblitz/index.html +30 -0
- package/core/_layouts/blueprint/admin/studio/index.html +85 -0
- package/core/_layouts/blueprint/admin/users/index.html +272 -0
- package/core/_layouts/blueprint/admin/users/new.html +82 -0
- package/core/_layouts/blueprint/admin/verts/index.html +204 -0
- package/core/_layouts/blueprint/alternatives/alternative.html +15 -0
- package/core/_layouts/blueprint/alternatives/index.html +10 -0
- package/core/_layouts/blueprint/app.html +10 -0
- package/core/_layouts/blueprint/auth/reset.html +19 -0
- package/core/_layouts/blueprint/auth/signin.html +19 -0
- package/core/_layouts/blueprint/auth/signup.html +19 -0
- package/core/_layouts/blueprint/auth/token.html +19 -0
- package/core/_layouts/blueprint/blog/categories/category.html +8 -0
- package/core/_layouts/blueprint/blog/categories/index.html +11 -0
- package/core/_layouts/blueprint/blog/index.html +10 -0
- package/core/_layouts/blueprint/blog/post.html +5 -0
- package/core/_layouts/blueprint/blog/tags/index.html +11 -0
- package/core/_layouts/blueprint/blog/tags/tag.html +8 -0
- package/core/_layouts/blueprint/careers.md +13 -0
- package/core/_layouts/blueprint/collection/category.html +9 -0
- package/core/_layouts/blueprint/collection/document.html +9 -0
- package/core/_layouts/blueprint/collection/index.html +9 -0
- package/core/_layouts/blueprint/connections/callback.html +11 -0
- package/core/_layouts/blueprint/contact.html +14 -0
- package/core/_layouts/blueprint/dashboard/index.html +10 -0
- package/core/_layouts/blueprint/download.html +20 -0
- package/core/_layouts/blueprint/extension/index.html +14 -0
- package/core/_layouts/blueprint/extension/installed.html +11 -0
- package/core/_layouts/blueprint/feedback.html +10 -0
- package/core/_layouts/blueprint/index.html +16 -0
- package/core/_layouts/blueprint/legal/cookies.md +57 -0
- package/core/_layouts/blueprint/legal/privacy.md +109 -0
- package/core/_layouts/blueprint/legal/terms.md +155 -0
- package/core/_layouts/blueprint/payment/checkout.html +15 -0
- package/core/_layouts/blueprint/payment/confirmation.html +14 -0
- package/core/_layouts/blueprint/portal/email-preferences.html +15 -0
- package/core/_layouts/blueprint/pricing.html +20 -0
- package/core/_layouts/blueprint/status.html +10 -0
- package/core/_layouts/blueprint/team/index.html +10 -0
- package/core/_layouts/blueprint/team/member.html +5 -0
- package/core/_layouts/blueprint/updates/index.html +10 -0
- package/core/_layouts/blueprint/updates/update.html +10 -0
- package/core/_layouts/core/root.html +45 -0
- package/core/_layouts/modules/utilities/redirect.html +129 -0
- package/core/css/_studio.scss +237 -0
- package/core/css/components/_index.scss +146 -0
- package/core/css/core/_.scss +0 -0
- package/core/css/core/_alert.scss +87 -0
- package/core/css/core/_animations.scss +343 -0
- package/core/css/core/_bindings.scss +116 -0
- package/core/css/core/_blog-search.scss +57 -0
- package/core/css/core/_chatsy.scss +61 -0
- package/core/css/core/_consent.scss +424 -0
- package/core/css/core/_custom-font-awesome.scss +146 -0
- package/core/css/core/_exit-popup.scss +42 -0
- package/core/css/core/_generated-badge.scss +33 -0
- package/core/css/core/_initialize.scss +29 -0
- package/core/css/core/_lazy-loading.scss +104 -0
- package/core/css/core/_social-sharing.scss +41 -0
- package/core/css/core/_tones.scss +32 -0
- package/core/css/core/_utilities.scss +157 -0
- package/core/css/main.scss +54 -0
- package/core/css/motion/_index.scss +368 -0
- package/core/css/pages/404/index.scss +0 -0
- package/core/css/pages/admin/calendar/index.scss +692 -0
- package/core/css/pages/admin/firebase/index.scss +33 -0
- package/core/css/pages/admin/index.scss +9 -0
- package/core/css/pages/admin/users/index.scss +9 -0
- package/core/css/pages/admin/verts/index.scss +9 -0
- package/core/css/pages/alternatives/[alternative]/index.scss +0 -0
- package/core/css/pages/blog/[slug].scss +55 -0
- package/core/css/pages/dashboard/account/index.scss +242 -0
- package/core/css/pages/download/index.scss +480 -0
- package/core/css/pages/extension/installed/index.scss +317 -0
- package/core/css/pages/feedback/index.scss +31 -0
- package/core/css/pages/payment/confirmation/index.scss +14 -0
- package/core/css/pages/pricing/index.scss +0 -0
- package/core/css/pages/status/index.scss +162 -0
- package/core/css/pages/test/libraries/layers/index.scss +28 -0
- package/core/css/pages/updates/[update].scss +46 -0
- package/core/css/pages/updates/index.scss +13 -0
- package/core/css/shell/_index.scss +207 -0
- package/core/css/tokens/_index.scss +166 -0
- package/core/icons/flags/ar.svg +1 -0
- package/core/icons/flags/bd.svg +1 -0
- package/core/icons/flags/ca.svg +1 -0
- package/core/icons/flags/ch.svg +1 -0
- package/core/icons/flags/cn.svg +1 -0
- package/core/icons/flags/co.svg +1 -0
- package/core/icons/flags/cw.svg +1 -0
- package/core/icons/flags/cz.svg +1 -0
- package/core/icons/flags/de.svg +1 -0
- package/core/icons/flags/dk.svg +1 -0
- package/core/icons/flags/eg.svg +1 -0
- package/core/icons/flags/es.svg +1 -0
- package/core/icons/flags/fi.svg +1 -0
- package/core/icons/flags/fr.svg +1 -0
- package/core/icons/flags/gb.svg +1 -0
- package/core/icons/flags/gq.svg +1 -0
- package/core/icons/flags/gr.svg +1 -0
- package/core/icons/flags/gt.svg +1 -0
- package/core/icons/flags/hn.svg +1 -0
- package/core/icons/flags/id.svg +1 -0
- package/core/icons/flags/ie.svg +1 -0
- package/core/icons/flags/in.svg +1 -0
- package/core/icons/flags/ir.svg +1 -0
- package/core/icons/flags/it.svg +1 -0
- package/core/icons/flags/jp.svg +1 -0
- package/core/icons/flags/kp.svg +1 -0
- package/core/icons/flags/kr.svg +1 -0
- package/core/icons/flags/ly.svg +1 -0
- package/core/icons/flags/ma.svg +1 -0
- package/core/icons/flags/mu.svg +1 -0
- package/core/icons/flags/mx.svg +1 -0
- package/core/icons/flags/ng.svg +1 -0
- package/core/icons/flags/pa.svg +1 -0
- package/core/icons/flags/ph.svg +1 -0
- package/core/icons/flags/pk.svg +1 -0
- package/core/icons/flags/pt.svg +1 -0
- package/core/icons/flags/ru.svg +1 -0
- package/core/icons/flags/sa.svg +1 -0
- package/core/icons/flags/sd.svg +1 -0
- package/core/icons/flags/se.svg +1 -0
- package/core/icons/flags/th.svg +1 -0
- package/core/icons/flags/tm.svg +1 -0
- package/core/icons/flags/tr.svg +1 -0
- package/core/icons/flags/us.svg +1 -0
- package/core/icons/flags/uy.svg +1 -0
- package/core/icons/flags/vn.svg +1 -0
- package/core/icons/flags/za.svg +1 -0
- package/core/images/exit-popup/subscriber-1.jpg +0 -0
- package/core/images/exit-popup/subscriber-2.jpg +0 -0
- package/core/images/exit-popup/subscriber-3.jpg +0 -0
- package/core/images/exit-popup/subscriber-4.jpg +0 -0
- package/core/images/placeholder/photo-1.jpg +0 -0
- package/core/images/placeholder/photo-2.jpg +0 -0
- package/core/images/placeholder/photo-3.jpg +0 -0
- package/core/js/core/analytics-loader.js +253 -0
- package/core/js/core/app-shell.js +136 -0
- package/core/js/core/appearance.js +195 -0
- package/core/js/core/auth.js +457 -0
- package/core/js/core/complete.js +72 -0
- package/core/js/core/consent.js +384 -0
- package/core/js/core/dev-icon-audit.js +63 -0
- package/core/js/core/dev-palette.js +670 -0
- package/core/js/core/dev-sections.js +53 -0
- package/core/js/core/exit-popup.js +276 -0
- package/core/js/core/initialize.js +8 -0
- package/core/js/core/language-switcher.js +167 -0
- package/core/js/core/lazy-loading.js +479 -0
- package/core/js/core/motion.js +28 -0
- package/core/js/core/query-strings.js +146 -0
- package/core/js/core/service-worker.js +28 -0
- package/core/js/core/social-sharing.js +293 -0
- package/core/js/first-paint.js +35 -0
- package/core/js/layouts/modules/utilities/redirect.js +122 -0
- package/core/js/libs/admin-helpers.js +62 -0
- package/core/js/libs/alert-dismiss.js +35 -0
- package/core/js/libs/analytics.js +368 -0
- package/core/js/libs/auth/email.js +144 -0
- package/core/js/libs/auth/errors.js +119 -0
- package/core/js/libs/auth/forms.js +206 -0
- package/core/js/libs/auth/index.js +181 -0
- package/core/js/libs/auth/oauth.js +394 -0
- package/core/js/libs/auth/orphan.js +110 -0
- package/core/js/libs/auth/password-toggle.js +44 -0
- package/core/js/libs/auth/session-params.js +266 -0
- package/core/js/libs/auth/tracking.js +41 -0
- package/core/js/libs/charts.js +516 -0
- package/core/js/libs/consent-region.js +127 -0
- package/core/js/libs/dev.js +150 -0
- package/core/js/libs/graph.js +201 -0
- package/core/js/libs/initialize-tooltips.js +31 -0
- package/core/js/libs/logger.js +38 -0
- package/core/js/libs/omega-copy.js +89 -0
- package/core/js/libs/path-prefix.js +44 -0
- package/core/js/libs/payment-config.js +76 -0
- package/core/js/libs/recaptcha.js +94 -0
- package/core/js/libs/sale-name.js +295 -0
- package/core/js/libs/showcase-frames.js +37 -0
- package/core/js/libs/srcset.js +69 -0
- package/core/js/libs/tracking-consent.js +161 -0
- package/core/js/main.js +144 -0
- package/core/js/pages/404/index.js +57 -0
- package/core/js/pages/admin/calendar/calendar-core.js +701 -0
- package/core/js/pages/admin/calendar/calendar-events.js +853 -0
- package/core/js/pages/admin/calendar/calendar-renderer.js +807 -0
- package/core/js/pages/admin/calendar/campaign-preview.js +105 -0
- package/core/js/pages/admin/calendar/index.js +40 -0
- package/core/js/pages/admin/firebase/index.js +727 -0
- package/core/js/pages/admin/index.js +531 -0
- package/core/js/pages/admin/posts/editor/index.js +230 -0
- package/core/js/pages/admin/posts/index.js +237 -0
- package/core/js/pages/admin/studio/index.js +538 -0
- package/core/js/pages/admin/users/index.js +669 -0
- package/core/js/pages/admin/users/new/index.js +65 -0
- package/core/js/pages/admin/verts/index.js +407 -0
- package/core/js/pages/alternatives/[alternative]/index.js +17 -0
- package/core/js/pages/app/index.js +135 -0
- package/core/js/pages/blog/[slug].js +132 -0
- package/core/js/pages/blog/_search.mjs +108 -0
- package/core/js/pages/blog/index.js +193 -0
- package/core/js/pages/blog/page/[num]/index.js +7 -0
- package/core/js/pages/connections/callback/index.js +148 -0
- package/core/js/pages/contact/index.js +170 -0
- package/core/js/pages/cookies.js +2 -0
- package/core/js/pages/dashboard/account/index.js +366 -0
- package/core/js/pages/dashboard/account/modules/orders.js +82 -0
- package/core/js/pages/dashboard/account/sections/api-keys.js +149 -0
- package/core/js/pages/dashboard/account/sections/billing.js +1667 -0
- package/core/js/pages/dashboard/account/sections/connections.js +333 -0
- package/core/js/pages/dashboard/account/sections/data-request.js +225 -0
- package/core/js/pages/dashboard/account/sections/delete.js +80 -0
- package/core/js/pages/dashboard/account/sections/notifications.js +167 -0
- package/core/js/pages/dashboard/account/sections/orders.js +151 -0
- package/core/js/pages/dashboard/account/sections/profile.js +200 -0
- package/core/js/pages/dashboard/account/sections/referrals.js +217 -0
- package/core/js/pages/dashboard/account/sections/refund.js +253 -0
- package/core/js/pages/dashboard/account/sections/security.js +726 -0
- package/core/js/pages/dashboard/account/sections/team.js +247 -0
- package/core/js/pages/download/index.js +418 -0
- package/core/js/pages/extension/index.js +164 -0
- package/core/js/pages/extension/installed/index.js +135 -0
- package/core/js/pages/feedback/index.js +193 -0
- package/core/js/pages/legal/_document.js +91 -0
- package/core/js/pages/payment/checkout/index.js +420 -0
- package/core/js/pages/payment/checkout/modules/api.js +139 -0
- package/core/js/pages/payment/checkout/modules/dev-section.js +175 -0
- package/core/js/pages/payment/checkout/modules/discount.js +69 -0
- package/core/js/pages/payment/checkout/modules/pricing.js +73 -0
- package/core/js/pages/payment/checkout/modules/state.js +339 -0
- package/core/js/pages/payment/checkout/modules/tracking.js +54 -0
- package/core/js/pages/payment/confirmation/index.js +91 -0
- package/core/js/pages/payment/confirmation/modules/celebration.js +45 -0
- package/core/js/pages/payment/confirmation/modules/state.js +112 -0
- package/core/js/pages/payment/confirmation/modules/tracking.js +133 -0
- package/core/js/pages/payment/confirmation/modules/verify.js +142 -0
- package/core/js/pages/portal/email-preferences/index.js +183 -0
- package/core/js/pages/pricing/index.js +425 -0
- package/core/js/pages/privacy.js +2 -0
- package/core/js/pages/reset/index.js +12 -0
- package/core/js/pages/signin/index.js +22 -0
- package/core/js/pages/signup/index.js +23 -0
- package/core/js/pages/status/index.js +687 -0
- package/core/js/pages/terms.js +2 -0
- package/core/js/pages/test/components/[category]/[name]/index.js +26 -0
- package/core/js/pages/test/libraries/appearance/index.js +220 -0
- package/core/js/pages/test/libraries/form-manager/index.js +328 -0
- package/core/js/pages/test/libraries/layers/index.js +16 -0
- package/core/js/pages/test/libraries/verts/index.js +68 -0
- package/core/js/pages/test/sections/[category]/[name]/index.js +28 -0
- package/core/js/pages/test/styleguide/index.js +35 -0
- package/core/js/pages/token/index.js +203 -0
- package/core/logos/brandmarks/original/apple-app-store.svg +1 -0
- package/core/logos/brandmarks/original/apple.svg +6 -0
- package/core/logos/brandmarks/original/bitbucket.svg +14 -0
- package/core/logos/brandmarks/original/bitcoin.svg +1 -0
- package/core/logos/brandmarks/original/bluesky.svg +7 -0
- package/core/logos/brandmarks/original/bootstrap.svg +43 -0
- package/core/logos/brandmarks/original/brave.svg +1 -0
- package/core/logos/brandmarks/original/chrome.svg +1 -0
- package/core/logos/brandmarks/original/discord.svg +1 -0
- package/core/logos/brandmarks/original/dropbox.svg +10 -0
- package/core/logos/brandmarks/original/edge.svg +1 -0
- package/core/logos/brandmarks/original/facebook-f.svg +1 -0
- package/core/logos/brandmarks/original/facebook.svg +8 -0
- package/core/logos/brandmarks/original/figma.svg +10 -0
- package/core/logos/brandmarks/original/firefox.svg +1 -0
- package/core/logos/brandmarks/original/github.svg +6 -0
- package/core/logos/brandmarks/original/gitlab.svg +17 -0
- package/core/logos/brandmarks/original/google-a-s.svg +1 -0
- package/core/logos/brandmarks/original/google-chrome-webstore.svg +49 -0
- package/core/logos/brandmarks/original/google-play-store.svg +1 -0
- package/core/logos/brandmarks/original/google-web-search.svg +1 -0
- package/core/logos/brandmarks/original/google.svg +1 -0
- package/core/logos/brandmarks/original/gulp.svg +4 -0
- package/core/logos/brandmarks/original/html-5.svg +1 -0
- package/core/logos/brandmarks/original/instagram.svg +1 -0
- package/core/logos/brandmarks/original/javascript.svg +1 -0
- package/core/logos/brandmarks/original/jira.svg +18 -0
- package/core/logos/brandmarks/original/kick.svg +7 -0
- package/core/logos/brandmarks/original/linkedin.svg +1 -0
- package/core/logos/brandmarks/original/linux.svg +28 -0
- package/core/logos/brandmarks/original/messenger.svg +16 -0
- package/core/logos/brandmarks/original/microsoft.svg +1 -0
- package/core/logos/brandmarks/original/npm.svg +8 -0
- package/core/logos/brandmarks/original/opera.svg +1 -0
- package/core/logos/brandmarks/original/patreon.svg +6 -0
- package/core/logos/brandmarks/original/pinterest.svg +6 -0
- package/core/logos/brandmarks/original/reddit.svg +1 -0
- package/core/logos/brandmarks/original/safari.svg +31 -0
- package/core/logos/brandmarks/original/sass.svg +3 -0
- package/core/logos/brandmarks/original/signal.svg +6 -0
- package/core/logos/brandmarks/original/skype.svg +47 -0
- package/core/logos/brandmarks/original/slack.svg +33 -0
- package/core/logos/brandmarks/original/soundcloud.svg +1 -0
- package/core/logos/brandmarks/original/spotify.svg +5 -0
- package/core/logos/brandmarks/original/steam.svg +6 -0
- package/core/logos/brandmarks/original/telegram.svg +14 -0
- package/core/logos/brandmarks/original/tiktok.svg +1 -0
- package/core/logos/brandmarks/original/trello.svg +16 -0
- package/core/logos/brandmarks/original/tumblr.svg +1 -0
- package/core/logos/brandmarks/original/twitch.svg +6 -0
- package/core/logos/brandmarks/original/twitter.svg +6 -0
- package/core/logos/brandmarks/original/unity.svg +6 -0
- package/core/logos/brandmarks/original/x.svg +7 -0
- package/core/logos/brandmarks/original/yahoo-y.svg +1 -0
- package/core/logos/brandmarks/original/youtube-square.svg +1 -0
- package/core/logos/brandmarks/original/youtube.svg +1 -0
- package/core/logos/combomarks/dark/airbnb.svg +30 -0
- package/core/logos/combomarks/dark/slack.svg +38 -0
- package/core/logos/combomarks/dark/spotify.svg +35 -0
- package/core/logos/combomarks/dark/twilio.svg +26 -0
- package/core/logos/combomarks/dark/weebly.svg +35 -0
- package/core/logos/combomarks/gray/airbnb.svg +33 -0
- package/core/logos/combomarks/gray/alphabet.svg +23 -0
- package/core/logos/combomarks/gray/amazon.svg +38 -0
- package/core/logos/combomarks/gray/boring-company.svg +91 -0
- package/core/logos/combomarks/gray/burberry.svg +239 -0
- package/core/logos/combomarks/gray/embark.svg +21 -0
- package/core/logos/combomarks/gray/fitbit.svg +61 -0
- package/core/logos/combomarks/gray/fred-perry.svg +94 -0
- package/core/logos/combomarks/gray/google.svg +27 -0
- package/core/logos/combomarks/gray/hollister.svg +34 -0
- package/core/logos/combomarks/gray/hubspot.svg +27 -0
- package/core/logos/combomarks/gray/kaplan.svg +33 -0
- package/core/logos/combomarks/gray/lenovo.svg +27 -0
- package/core/logos/combomarks/gray/levis.svg +25 -0
- package/core/logos/combomarks/gray/mapbox.svg +37 -0
- package/core/logos/combomarks/gray/netflix.svg +15 -0
- package/core/logos/combomarks/gray/new-balance.svg +32 -0
- package/core/logos/combomarks/gray/nike.svg +17 -0
- package/core/logos/combomarks/gray/paypal.svg +41 -0
- package/core/logos/combomarks/gray/puma.svg +82 -0
- package/core/logos/combomarks/gray/samsung.svg +26 -0
- package/core/logos/combomarks/gray/shopify.svg +36 -0
- package/core/logos/combomarks/gray/slack.svg +42 -0
- package/core/logos/combomarks/gray/spotify.svg +38 -0
- package/core/logos/combomarks/gray/stripe.svg +24 -0
- package/core/logos/combomarks/gray/tnf.svg +30 -0
- package/core/logos/combomarks/gray/twilio.svg +29 -0
- package/core/logos/combomarks/gray/uber.svg +24 -0
- package/core/logos/combomarks/gray/weebly.svg +38 -0
- package/core/logos/combomarks/original/airbnb.svg +33 -0
- package/core/logos/combomarks/original/alphabet.svg +23 -0
- package/core/logos/combomarks/original/amazon.svg +38 -0
- package/core/logos/combomarks/original/asana.svg +8 -0
- package/core/logos/combomarks/original/boring-company.svg +91 -0
- package/core/logos/combomarks/original/discord.svg +6 -0
- package/core/logos/combomarks/original/embark.svg +24 -0
- package/core/logos/combomarks/original/fitbit.svg +60 -0
- package/core/logos/combomarks/original/github.svg +6 -0
- package/core/logos/combomarks/original/gitlab.svg +20 -0
- package/core/logos/combomarks/original/google.svg +28 -0
- package/core/logos/combomarks/original/hubspot.svg +29 -0
- package/core/logos/combomarks/original/instagram.svg +7 -0
- package/core/logos/combomarks/original/kickstarter.svg +6 -0
- package/core/logos/combomarks/original/lenovo.svg +24 -0
- package/core/logos/combomarks/original/linkedin.svg +6 -0
- package/core/logos/combomarks/original/mapbox.svg +39 -0
- package/core/logos/combomarks/original/mastodon.svg +7 -0
- package/core/logos/combomarks/original/medium.svg +6 -0
- package/core/logos/combomarks/original/meta.svg +22 -0
- package/core/logos/combomarks/original/microsoft.svg +13 -0
- package/core/logos/combomarks/original/monday.svg +12 -0
- package/core/logos/combomarks/original/netflix.svg +15 -0
- package/core/logos/combomarks/original/notion.svg +9 -0
- package/core/logos/combomarks/original/paypal.svg +41 -0
- package/core/logos/combomarks/original/reddit.svg +13 -0
- package/core/logos/combomarks/original/samsung.svg +25 -0
- package/core/logos/combomarks/original/shopify.svg +35 -0
- package/core/logos/combomarks/original/slack.svg +47 -0
- package/core/logos/combomarks/original/spotify.svg +37 -0
- package/core/logos/combomarks/original/stackoverflow.svg +28 -0
- package/core/logos/combomarks/original/stripe.svg +24 -0
- package/core/logos/combomarks/original/tiktok.svg +12 -0
- package/core/logos/combomarks/original/tumblr.svg +6 -0
- package/core/logos/combomarks/original/uber.svg +24 -0
- package/core/logos/combomarks/original/weebly.svg +34 -0
- package/core/logos/combomarks/original/whatsapp.svg +20 -0
- package/core/logos/combomarks/original/youtube.svg +10 -0
- package/core/logos/combomarks/original/zoom.svg +7 -0
- package/core/logos/combomarks/white/airbnb.svg +33 -0
- package/core/logos/combomarks/white/alphabet.svg +23 -0
- package/core/logos/combomarks/white/amazon.svg +38 -0
- package/core/logos/combomarks/white/boring-company.svg +91 -0
- package/core/logos/combomarks/white/embark.svg +21 -0
- package/core/logos/combomarks/white/fitbit.svg +61 -0
- package/core/logos/combomarks/white/google.svg +27 -0
- package/core/logos/combomarks/white/hubspot.svg +27 -0
- package/core/logos/combomarks/white/kaplan.svg +33 -0
- package/core/logos/combomarks/white/lenovo.svg +27 -0
- package/core/logos/combomarks/white/mapbox.svg +37 -0
- package/core/logos/combomarks/white/netflix.svg +15 -0
- package/core/logos/combomarks/white/paypal.svg +40 -0
- package/core/logos/combomarks/white/samsung.svg +26 -0
- package/core/logos/combomarks/white/shopify.svg +36 -0
- package/core/logos/combomarks/white/slack.svg +42 -0
- package/core/logos/combomarks/white/spotify.svg +38 -0
- package/core/logos/combomarks/white/stripe.svg +24 -0
- package/core/logos/combomarks/white/twilio.svg +29 -0
- package/core/logos/combomarks/white/uber.svg +24 -0
- package/core/logos/combomarks/white/weebly.svg +38 -0
- package/defaults/pages/404.md +4 -0
- package/defaults/pages/about.md +4 -0
- package/defaults/pages/admin/calendar/index.html +4 -0
- package/defaults/pages/admin/firebase/index.html +4 -0
- package/defaults/pages/admin/index.md +4 -0
- package/defaults/pages/admin/posts/editor.html +4 -0
- package/defaults/pages/admin/posts/index.html +4 -0
- package/defaults/pages/admin/stackblitz/index.html +4 -0
- package/defaults/pages/admin/studio/index.html +4 -0
- package/defaults/pages/admin/users/index.html +4 -0
- package/defaults/pages/admin/users/new.html +4 -0
- package/defaults/pages/admin/verts/index.html +4 -0
- package/defaults/pages/ads-txt.html +11 -0
- package/defaults/pages/alternatives/index.md +4 -0
- package/defaults/pages/app.md +4 -0
- package/defaults/pages/auth/reset.md +4 -0
- package/defaults/pages/auth/signin.md +4 -0
- package/defaults/pages/auth/signup.md +4 -0
- package/defaults/pages/auth/token.md +4 -0
- package/defaults/pages/blog/categories/category.html +21 -0
- package/defaults/pages/blog/categories.md +4 -0
- package/defaults/pages/blog/index-json.html +27 -0
- package/defaults/pages/blog/tags/tag.html +21 -0
- package/defaults/pages/blog/tags.md +4 -0
- package/defaults/pages/blog.md +22 -0
- package/defaults/pages/careers.md +4 -0
- package/defaults/pages/connections/callback.md +4 -0
- package/defaults/pages/contact.md +4 -0
- package/defaults/pages/dashboard/account.md +4 -0
- package/defaults/pages/dashboard/index.md +12 -0
- package/defaults/pages/download.md +4 -0
- package/defaults/pages/extension/index.html +4 -0
- package/defaults/pages/extension/installed.html +4 -0
- package/defaults/pages/feedback.md +4 -0
- package/defaults/pages/feeds/posts-json.html +40 -0
- package/defaults/pages/feeds/posts-xml.html +38 -0
- package/defaults/pages/humans.html +25 -0
- package/defaults/pages/index.md +4 -0
- package/defaults/pages/legal/cookies.md +4 -0
- package/defaults/pages/legal/privacy.md +4 -0
- package/defaults/pages/legal/terms.md +4 -0
- package/defaults/pages/llms-txt.html +46 -0
- package/defaults/pages/opensearch.html +16 -0
- package/defaults/pages/pages-json.html +42 -0
- package/defaults/pages/payment/checkout.md +4 -0
- package/defaults/pages/payment/confirmation.md +4 -0
- package/defaults/pages/portal/email-preferences.md +4 -0
- package/defaults/pages/pricing.md +4 -0
- package/defaults/pages/redirects/account.md +12 -0
- package/defaults/pages/redirects/admin/dashboard.md +11 -0
- package/defaults/pages/redirects/auth/change-password.md +9 -0
- package/defaults/pages/redirects/auth/forgot.md +9 -0
- package/defaults/pages/redirects/auth/join.md +9 -0
- package/defaults/pages/redirects/auth/login.md +9 -0
- package/defaults/pages/redirects/auth/recover.md +9 -0
- package/defaults/pages/redirects/auth/register.md +9 -0
- package/defaults/pages/redirects/auth/reset-password.md +9 -0
- package/defaults/pages/redirects/billing/cancel.md +9 -0
- package/defaults/pages/redirects/billing/refund.md +9 -0
- package/defaults/pages/robots.html +36 -0
- package/defaults/pages/security-txt.html +11 -0
- package/defaults/pages/sitemap.html +37 -0
- package/defaults/pages/status.md +4 -0
- package/defaults/pages/team/index.md +4 -0
- package/defaults/pages/test/account/dashboard.html +16 -0
- package/defaults/pages/test/index.md +12 -0
- package/defaults/pages/test/libraries/appearance.html +268 -0
- package/defaults/pages/test/libraries/cover.html +50 -0
- package/defaults/pages/test/libraries/error.html +30 -0
- package/defaults/pages/test/libraries/firestore.html +202 -0
- package/defaults/pages/test/libraries/form-manager.html +374 -0
- package/defaults/pages/test/libraries/layers.html +52 -0
- package/defaults/pages/test/libraries/lazy-loading.html +450 -0
- package/defaults/pages/test/libraries/verts.html +149 -0
- package/defaults/pages/test/redirect/external.md +13 -0
- package/defaults/pages/test/redirect/internal.md +13 -0
- package/defaults/pages/test/styleguide/index.html +588 -0
- package/defaults/pages/test/translation/index.md +50 -0
- package/defaults/pages/updates/index.md +4 -0
- package/defaults/sample-posts/2026-01-12-welcome-to-the-blog.md +26 -0
- package/defaults/sample-posts/2026-02-03-a-field-guide-to-good-defaults.md +50 -0
- package/defaults/sample-posts/2026-02-24-shipping-week-notes.md +37 -0
- package/defaults/sample-posts/2026-03-17-the-case-for-one-config.md +36 -0
- package/defaults/sample-posts/2026-04-09-write-release-notes-people-read.md +34 -0
- package/defaults/sample-posts/2026-05-21-dark-mode-done-properly.md +38 -0
- package/defaults/sample-posts/2026-06-02-the-boring-deploy-is-the-good-deploy.md +30 -0
- package/defaults/sample-posts/2026-06-11-naming-things-a-survival-guide.md +30 -0
- package/defaults/sample-posts/2026-06-19-your-pricing-page-is-a-product.md +28 -0
- package/defaults/sample-posts/2026-06-30-email-is-an-api-with-feelings.md +28 -0
- package/defaults/sample-posts/2026-07-08-ship-the-docs-with-the-diff.md +30 -0
- package/defaults/sample-team/avery-quinn.md +22 -0
- package/defaults/sample-team/jordan-reyes.md +25 -0
- package/defaults/sample-team/riley-nakamura.md +22 -0
- package/defaults/sample-team/sam-okafor.md +22 -0
- package/defaults/sample-updates/v1.0.0.md +28 -0
- package/defaults/sample-updates/v1.1.0.md +27 -0
- package/defaults/sample-updates/v1.2.0.md +27 -0
- package/defaults/sample-updates/v1.3.0.md +28 -0
- package/defaults/showcase/components.html +62 -0
- package/defaults/showcase/entry.html +76 -0
- package/defaults/showcase/frame.html +62 -0
- package/defaults/showcase/index.html +59 -0
- package/dist/assets.js +1349 -0
- package/dist/brand-tokens.js +195 -0
- package/dist/build.js +192 -0
- package/dist/cachebreak-html.js +71 -0
- package/dist/cli-run.js +25 -0
- package/dist/cli.js +47 -0
- package/dist/collections.js +183 -0
- package/dist/commands/audit.js +470 -0
- package/dist/commands/build.js +197 -0
- package/dist/commands/clean.js +18 -0
- package/dist/commands/customize.js +125 -0
- package/dist/commands/deploy.js +441 -0
- package/dist/commands/dev.js +1067 -0
- package/dist/commands/install.js +31 -0
- package/dist/commands/lib/deploy-precheck.js +43 -0
- package/dist/commands/lib/ensure-target.js +115 -0
- package/dist/commands/migrate.js +86 -0
- package/dist/commands/purge.js +31 -0
- package/dist/commands/test.js +237 -0
- package/dist/commands/translate.js +57 -0
- package/dist/commands/update.js +22 -0
- package/dist/commands/version.js +11 -0
- package/dist/config-sections.js +245 -0
- package/dist/consumer-scan.js +118 -0
- package/dist/consumer.js +49 -0
- package/dist/customize.js +328 -0
- package/dist/decisions.js +153 -0
- package/dist/dist-audit.js +417 -0
- package/dist/dynamic-pages.js +357 -0
- package/dist/engine.js +1402 -0
- package/dist/firebase-auth-helpers.js +198 -0
- package/dist/font-metrics.js +420 -0
- package/dist/frontmatter-liquid.js +253 -0
- package/dist/github-secrets.js +80 -0
- package/dist/hero-animations.js +170 -0
- package/dist/imagemin.js +261 -0
- package/dist/index.js +41 -0
- package/dist/inline-icons.js +65 -0
- package/dist/language-flags.js +55 -0
- package/dist/layers.js +80 -0
- package/dist/layouts.js +44 -0
- package/dist/limit-collections.js +199 -0
- package/dist/link-resolver.js +303 -0
- package/dist/markdown-images.js +85 -0
- package/dist/merge.js +20 -0
- package/dist/migrate/codemod.js +172 -0
- package/dist/migrate/config-convert.js +448 -0
- package/dist/migrate/consumer-assets.js +130 -0
- package/dist/migrate/index.js +223 -0
- package/dist/migrate/lint.js +108 -0
- package/dist/migrate/rules.js +1929 -0
- package/dist/minify-html.js +148 -0
- package/dist/mode-helpers.js +96 -0
- package/dist/omega-bin.js +7 -0
- package/dist/overrides.js +190 -0
- package/dist/path-prefix.js +167 -0
- package/dist/paths.js +37 -0
- package/dist/pricing.js +301 -0
- package/dist/purge.js +95 -0
- package/dist/redirect-page.js +45 -0
- package/dist/sample-content.js +210 -0
- package/dist/scaffold.js +123 -0
- package/dist/sections.js +810 -0
- package/dist/service-worker.js +200 -0
- package/dist/social-pages.js +142 -0
- package/dist/srcset.js +67 -0
- package/dist/static-assets.js +154 -0
- package/dist/target-shortlinks.js +123 -0
- package/dist/theme-vocabulary.js +76 -0
- package/dist/translate/collect-text-nodes.js +93 -0
- package/dist/translate/default-routes.js +152 -0
- package/dist/translate/generate-defaults.js +297 -0
- package/dist/translate/index.js +568 -0
- package/dist/translate/packaged-defaults.js +127 -0
- package/dist/translate/sitemap.js +108 -0
- package/dist/vendor/account/engine.js +182 -0
- package/dist/vendor/account/features.js +220 -0
- package/dist/vendor/account/index.js +53 -0
- package/dist/vendor/account/schema.js +272 -0
- package/dist/vendor/account/subscription.js +38 -0
- package/dist/vendor/config/company.js +31 -0
- package/dist/vendor/config/defaults.js +173 -0
- package/dist/vendor/config/demo.js +18 -0
- package/dist/vendor/config/desktop-artifacts.js +110 -0
- package/dist/vendor/config/edit.js +769 -0
- package/dist/vendor/config/env-delivery.js +145 -0
- package/dist/vendor/config/env-rules.js +93 -0
- package/dist/vendor/config/env-schema.js +1078 -0
- package/dist/vendor/config/env.js +445 -0
- package/dist/vendor/config/hooks.js +97 -0
- package/dist/vendor/config/index.js +237 -0
- package/dist/vendor/config/instances.js +208 -0
- package/dist/vendor/config/load.js +490 -0
- package/dist/vendor/config/merge.js +68 -0
- package/dist/vendor/config/order.js +139 -0
- package/dist/vendor/config/ports.js +374 -0
- package/dist/vendor/config/providers.js +32 -0
- package/dist/vendor/config/repo.js +142 -0
- package/dist/vendor/config/retired-keys.js +430 -0
- package/dist/vendor/config/schema.js +1610 -0
- package/dist/vendor/config/secrets.js +50 -0
- package/dist/vendor/config/seed.js +34 -0
- package/dist/vendor/config/site-global.js +205 -0
- package/dist/vendor/config/validate.js +554 -0
- package/dist/vendor/config/winback.js +61 -0
- package/dist/vendor/devkit/actions-secrets.js +145 -0
- package/dist/vendor/devkit/attach-log-file.js +262 -0
- package/dist/vendor/devkit/bare-requires.js +153 -0
- package/dist/vendor/devkit/bundle.js +292 -0
- package/dist/vendor/devkit/ci-workflows.js +520 -0
- package/dist/vendor/devkit/cli-router.js +156 -0
- package/dist/vendor/devkit/command-path.js +46 -0
- package/dist/vendor/devkit/defaults-engine.js +372 -0
- package/dist/vendor/devkit/deploy-precheck.js +54 -0
- package/dist/vendor/devkit/deploy-record.js +180 -0
- package/dist/vendor/devkit/deploy.js +286 -0
- package/dist/vendor/devkit/env-watch.js +132 -0
- package/dist/vendor/devkit/framework-deps.js +46 -0
- package/dist/vendor/devkit/icons.js +178 -0
- package/dist/vendor/devkit/license.js +155 -0
- package/dist/vendor/devkit/local-https.js +360 -0
- package/dist/vendor/devkit/local.js +1905 -0
- package/dist/vendor/devkit/logger.js +128 -0
- package/dist/vendor/devkit/merge-line-files.js +296 -0
- package/dist/vendor/devkit/omega-bin.js +345 -0
- package/dist/vendor/devkit/reads.js +274 -0
- package/dist/vendor/devkit/safe-install.js +18 -0
- package/dist/vendor/devkit/scaffold-guard.js +96 -0
- package/dist/vendor/devkit/stop-signals.js +28 -0
- package/dist/vendor/devkit/strip-dev-blocks-plugin.js +29 -0
- package/dist/vendor/devkit/strip-dev-blocks.js +32 -0
- package/dist/vendor/devkit/target-secrets.js +165 -0
- package/dist/vendor/devkit/test/scope.js +162 -0
- package/dist/vendor/devkit/translate/cache.js +84 -0
- package/dist/vendor/devkit/translate/engine.js +243 -0
- package/dist/vendor/devkit/translate/index.js +49 -0
- package/dist/vendor/devkit/translate/languages.js +134 -0
- package/dist/vendor/devkit/translate/providers.js +188 -0
- package/dist/vendor/devkit/update.js +569 -0
- package/dist/vendor/template-kit/data/language-flags.js +54 -0
- package/dist/vendor/template-kit/data/languages.js +195 -0
- package/dist/vendor/template-kit/data/social-urls.js +26 -0
- package/dist/vendor/template-kit/filters.js +227 -0
- package/dist/vendor/template-kit/index.js +28 -0
- package/dist/vendor/template-kit/jekyll-compat.js +268 -0
- package/dist/vendor/template-kit/register-liquid.js +0 -0
- package/dist/vendor/template-kit/tags/collections.js +191 -0
- package/dist/vendor/template-kit/tags/conditionals.js +101 -0
- package/dist/vendor/template-kit/tags/content.js +175 -0
- package/dist/vendor/template-kit/tags/index.js +33 -0
- package/dist/vendor/template-kit/tags/media.js +376 -0
- package/dist/vendor/template-kit/variable-resolver.js +163 -0
- package/docs/ads-system.md +109 -0
- package/docs/classy-v2/DIRECTION.md +92 -0
- package/docs/classy-v2/draft-1.html +1932 -0
- package/docs/classy-v2/draft-2.html +1956 -0
- package/docs/frontmatter.md +153 -0
- package/docs/index.md +254 -0
- package/docs/libs.md +298 -0
- package/docs/omega-sections-spec.md +159 -0
- package/docs/page-contract.md +112 -0
- package/docs/sections.md +845 -0
- package/docs/shared/agent-docs.md +89 -0
- package/docs/shared/analytics.md +612 -0
- package/docs/shared/brands.md +51 -0
- package/docs/shared/breaking-changes.md +497 -0
- package/docs/shared/config.md +1387 -0
- package/docs/shared/deploys.md +215 -0
- package/docs/shared/icons.md +201 -0
- package/docs/shared/local-dev.md +147 -0
- package/docs/shared/logging.md +202 -0
- package/docs/shared/monitoring.md +153 -0
- package/docs/shared/publishing.md +183 -0
- package/docs/shared/rulings.md +34 -0
- package/docs/shared/testing.md +147 -0
- package/docs/shared/theming.md +604 -0
- package/docs/shared/translation.md +291 -0
- package/docs/shared/updates.md +61 -0
- package/docs/template-kit.md +128 -0
- package/docs/test-framework.md +163 -0
- package/package.json +122 -0
- package/runtime/boot.js +149 -0
- package/runtime/icons.js +77 -0
- package/runtime/manager.js +36 -0
- package/scaffold/.github/workflows/build.yml +139 -0
- package/scaffold/.nvmrc +1 -0
- package/scaffold/AGENTS.md +55 -0
- package/scaffold/CLAUDE.md +1 -0
- package/scaffold/_.gitattributes +4 -0
- package/scaffold/_.gitignore +27 -0
- package/scaffold/config/omega.json5 +20 -0
- package/scaffold/src/assets/css/pages/.gitkeep +0 -0
- package/scaffold/src/assets/images/.gitkeep +0 -0
- package/scaffold/src/assets/js/pages/.gitkeep +0 -0
- package/scaffold/src/pages/.gitkeep +0 -0
- package/scaffold/src/pages/example.md.txt +94 -0
- package/scaffold/src/service-worker.js +16 -0
- package/sw/entry.js +19 -0
- package/sw/manager.js +281 -0
- package/themes/_template/README.md +115 -0
- package/themes/_template/_config.scss +60 -0
- package/themes/_template/_theme.js +14 -0
- package/themes/_template/_theme.scss +28 -0
- package/themes/_template/css/base/_root.scss +19 -0
- package/themes/_template/css/components/_components.scss +23 -0
- package/themes/base/README.md +5 -0
- package/themes/base/_components/data/org-chart/component.html +33 -0
- package/themes/base/_components/data/org-chart/component.json5 +33 -0
- package/themes/base/_components/data/org-chart/component.scss +183 -0
- package/themes/base/_components/heading/masthead/component.html +22 -0
- package/themes/base/_components/heading/masthead/component.json5 +30 -0
- package/themes/base/_components/heading/section-head/component.html +18 -0
- package/themes/base/_components/heading/section-head/component.json5 +27 -0
- package/themes/base/_components/pricing/features/component.html +29 -0
- package/themes/base/_components/pricing/features/component.json5 +30 -0
- package/themes/base/_hero/orbit/index.html +30 -0
- package/themes/base/_hero/orbit/script.js +33 -0
- package/themes/base/_hero/orbit/style.scss +133 -0
- package/themes/base/_includes/admin/sections/sidebar.html +3 -0
- package/themes/base/_includes/admin/sections/topbar.html +3 -0
- package/themes/base/_includes/backend/sections/sidebar.html +3 -0
- package/themes/base/_includes/backend/sections/topbar.html +3 -0
- package/themes/base/_includes/frontend/components/connection-card.html +49 -0
- package/themes/base/_includes/frontend/components/post-card.html +54 -0
- package/themes/base/_includes/frontend/sections/account-connections.html +42 -0
- package/themes/base/_includes/frontend/sections/account-section-header.html +11 -0
- package/themes/base/_includes/frontend/sections/footer.html +154 -0
- package/themes/base/_includes/frontend/sections/nav.html +276 -0
- package/themes/base/_includes/global/sections/account.html +72 -0
- package/themes/base/_includes/global/sections/app-sidebar.html +248 -0
- package/themes/base/_includes/global/sections/app-topbar.html +228 -0
- package/themes/base/_includes/global/sections/page-header.html +99 -0
- package/themes/base/_layouts/admin/core/minimal-viewport-locked.html +22 -0
- package/themes/base/_layouts/admin/core/minimal.html +23 -0
- package/themes/base/_layouts/backend/core/base.html +57 -0
- package/themes/base/_layouts/backend/core/minimal-viewport-locked.html +32 -0
- package/themes/base/_layouts/backend/core/minimal.html +32 -0
- package/themes/base/_layouts/backend/pages/dashboard/index.html +230 -0
- package/themes/base/_layouts/frontend/core/base.html +31 -0
- package/themes/base/_layouts/frontend/core/cover.html +40 -0
- package/themes/base/_layouts/frontend/core/minimal.html +47 -0
- package/themes/base/_layouts/frontend/pages/404.html +54 -0
- package/themes/base/_layouts/frontend/pages/about.html +144 -0
- package/themes/base/_layouts/frontend/pages/account/index.html +2104 -0
- package/themes/base/_layouts/frontend/pages/alternatives/alternative.html +319 -0
- package/themes/base/_layouts/frontend/pages/alternatives/index.html +186 -0
- package/themes/base/_layouts/frontend/pages/app.html +142 -0
- package/themes/base/_layouts/frontend/pages/auth/reset.html +53 -0
- package/themes/base/_layouts/frontend/pages/auth/signin.html +90 -0
- package/themes/base/_layouts/frontend/pages/auth/signup.html +141 -0
- package/themes/base/_layouts/frontend/pages/auth/token.html +44 -0
- package/themes/base/_layouts/frontend/pages/blog/categories/category.html +88 -0
- package/themes/base/_layouts/frontend/pages/blog/categories/index.html +88 -0
- package/themes/base/_layouts/frontend/pages/blog/index.html +255 -0
- package/themes/base/_layouts/frontend/pages/blog/post.html +261 -0
- package/themes/base/_layouts/frontend/pages/blog/tags/index.html +84 -0
- package/themes/base/_layouts/frontend/pages/blog/tags/tag.html +88 -0
- package/themes/base/_layouts/frontend/pages/collection/category.html +72 -0
- package/themes/base/_layouts/frontend/pages/collection/document.html +54 -0
- package/themes/base/_layouts/frontend/pages/collection/index.html +84 -0
- package/themes/base/_layouts/frontend/pages/connections/callback.html +55 -0
- package/themes/base/_layouts/frontend/pages/contact.html +214 -0
- package/themes/base/_layouts/frontend/pages/download.html +793 -0
- package/themes/base/_layouts/frontend/pages/extension/index.html +253 -0
- package/themes/base/_layouts/frontend/pages/extension/installed.html +198 -0
- package/themes/base/_layouts/frontend/pages/feedback.html +171 -0
- package/themes/base/_layouts/frontend/pages/index.html +66 -0
- package/themes/base/_layouts/frontend/pages/legal/document.html +78 -0
- package/themes/base/_layouts/frontend/pages/payment/checkout.html +459 -0
- package/themes/base/_layouts/frontend/pages/payment/confirmation.html +131 -0
- package/themes/base/_layouts/frontend/pages/portal/email-preferences.html +104 -0
- package/themes/base/_layouts/frontend/pages/pricing.html +596 -0
- package/themes/base/_layouts/frontend/pages/status.html +361 -0
- package/themes/base/_layouts/frontend/pages/team/index.html +210 -0
- package/themes/base/_layouts/frontend/pages/team/member.html +125 -0
- package/themes/base/_layouts/frontend/pages/updates/index.html +119 -0
- package/themes/base/_layouts/frontend/pages/updates/update.html +118 -0
- package/themes/base/_sections/about/hero/section.html +68 -0
- package/themes/base/_sections/about/hero/section.json5 +58 -0
- package/themes/base/_sections/about/letter/section.html +60 -0
- package/themes/base/_sections/about/letter/section.json5 +56 -0
- package/themes/base/_sections/about/photo-band/section.html +24 -0
- package/themes/base/_sections/about/photo-band/section.json5 +23 -0
- package/themes/base/_sections/about/principles/section.html +17 -0
- package/themes/base/_sections/about/principles/section.json5 +34 -0
- package/themes/base/_sections/about/timeline/section.html +20 -0
- package/themes/base/_sections/about/timeline/section.json5 +34 -0
- package/themes/base/_sections/marketing/bento/section.html +91 -0
- package/themes/base/_sections/marketing/bento/section.json5 +152 -0
- package/themes/base/_sections/marketing/cta/section.html +44 -0
- package/themes/base/_sections/marketing/cta/section.json5 +47 -0
- package/themes/base/_sections/marketing/faq/section.html +52 -0
- package/themes/base/_sections/marketing/faq/section.json5 +68 -0
- package/themes/base/_sections/marketing/hero/section.html +349 -0
- package/themes/base/_sections/marketing/hero/section.json5 +335 -0
- package/themes/base/_sections/marketing/newsletter-cta/section.html +38 -0
- package/themes/base/_sections/marketing/newsletter-cta/section.js +86 -0
- package/themes/base/_sections/marketing/newsletter-cta/section.json5 +29 -0
- package/themes/base/_sections/marketing/pricing-cards/section.html +115 -0
- package/themes/base/_sections/marketing/pricing-cards/section.json5 +72 -0
- package/themes/base/_sections/marketing/product-demo/section.html +62 -0
- package/themes/base/_sections/marketing/product-demo/section.js +44 -0
- package/themes/base/_sections/marketing/product-demo/section.json5 +52 -0
- package/themes/base/_sections/marketing/prose/section.html +22 -0
- package/themes/base/_sections/marketing/prose/section.json5 +41 -0
- package/themes/base/_sections/marketing/showcase/section.html +35 -0
- package/themes/base/_sections/marketing/showcase/section.json5 +52 -0
- package/themes/base/_sections/marketing/stats/section.html +32 -0
- package/themes/base/_sections/marketing/stats/section.json5 +44 -0
- package/themes/base/_sections/marketing/testimonials/section.html +54 -0
- package/themes/base/_sections/marketing/testimonials/section.json5 +70 -0
- package/themes/base/_sections/marketing/trusted-by/section.html +30 -0
- package/themes/base/_sections/marketing/trusted-by/section.json5 +38 -0
- package/themes/base/_sections/verts/unit/section.html +7 -0
- package/themes/base/_sections/verts/unit/section.js +22 -0
- package/themes/base/_sections/verts/unit/section.json5 +24 -0
- package/themes/base/_sections/verts/unit/section.scss +24 -0
- package/themes/base/_theme.js +13 -0
- package/themes/base/_theme.scss +4 -0
- package/themes/bootstrap/_theme.js +16 -0
- package/themes/bootstrap/_theme.scss +11 -0
- package/themes/bootstrap/js/index.esm.js +19 -0
- package/themes/bootstrap/js/index.umd.js +34 -0
- package/themes/bootstrap/js/src/alert.js +87 -0
- package/themes/bootstrap/js/src/base-component.js +86 -0
- package/themes/bootstrap/js/src/button.js +72 -0
- package/themes/bootstrap/js/src/carousel.js +474 -0
- package/themes/bootstrap/js/src/collapse.js +297 -0
- package/themes/bootstrap/js/src/dom/data.js +55 -0
- package/themes/bootstrap/js/src/dom/event-handler.js +317 -0
- package/themes/bootstrap/js/src/dom/manipulator.js +71 -0
- package/themes/bootstrap/js/src/dom/selector-engine.js +126 -0
- package/themes/bootstrap/js/src/dropdown.js +458 -0
- package/themes/bootstrap/js/src/modal.js +378 -0
- package/themes/bootstrap/js/src/offcanvas.js +282 -0
- package/themes/bootstrap/js/src/popover.js +97 -0
- package/themes/bootstrap/js/src/scrollspy.js +296 -0
- package/themes/bootstrap/js/src/tab.js +315 -0
- package/themes/bootstrap/js/src/toast.js +224 -0
- package/themes/bootstrap/js/src/tooltip.js +632 -0
- package/themes/bootstrap/js/src/util/backdrop.js +151 -0
- package/themes/bootstrap/js/src/util/component-functions.js +35 -0
- package/themes/bootstrap/js/src/util/config.js +65 -0
- package/themes/bootstrap/js/src/util/focustrap.js +115 -0
- package/themes/bootstrap/js/src/util/index.js +306 -0
- package/themes/bootstrap/js/src/util/sanitizer.js +117 -0
- package/themes/bootstrap/js/src/util/scrollbar.js +114 -0
- package/themes/bootstrap/js/src/util/swipe.js +146 -0
- package/themes/bootstrap/js/src/util/template-factory.js +160 -0
- package/themes/bootstrap/overrides/_accordion.scss +21 -0
- package/themes/bootstrap/overrides/_avatars.scss +51 -0
- package/themes/bootstrap/overrides/_blog-images.scss +45 -0
- package/themes/bootstrap/overrides/_buttons-adaptive.scss +141 -0
- package/themes/bootstrap/overrides/_color-shades.scss +25 -0
- package/themes/bootstrap/overrides/_cursor-utilities.scss +13 -0
- package/themes/bootstrap/overrides/_index.scss +30 -0
- package/themes/bootstrap/overrides/_links.scss +26 -0
- package/themes/bootstrap/overrides/_soft-colors.scss +99 -0
- package/themes/bootstrap/overrides/_spacing-extended.scss +74 -0
- package/themes/bootstrap/overrides/_spinners.scss +22 -0
- package/themes/bootstrap/overrides/_typography-utilities.scss +40 -0
- package/themes/bootstrap/scss/_accordion.scss +153 -0
- package/themes/bootstrap/scss/_alert.scss +68 -0
- package/themes/bootstrap/scss/_badge.scss +38 -0
- package/themes/bootstrap/scss/_breadcrumb.scss +40 -0
- package/themes/bootstrap/scss/_button-group.scss +147 -0
- package/themes/bootstrap/scss/_buttons.scss +216 -0
- package/themes/bootstrap/scss/_card.scss +238 -0
- package/themes/bootstrap/scss/_carousel.scss +226 -0
- package/themes/bootstrap/scss/_close.scss +66 -0
- package/themes/bootstrap/scss/_containers.scss +41 -0
- package/themes/bootstrap/scss/_dropdown.scss +250 -0
- package/themes/bootstrap/scss/_forms.scss +9 -0
- package/themes/bootstrap/scss/_functions.scss +302 -0
- package/themes/bootstrap/scss/_grid.scss +39 -0
- package/themes/bootstrap/scss/_helpers.scss +12 -0
- package/themes/bootstrap/scss/_images.scss +42 -0
- package/themes/bootstrap/scss/_list-group.scss +199 -0
- package/themes/bootstrap/scss/_maps.scss +174 -0
- package/themes/bootstrap/scss/_mixins.scss +42 -0
- package/themes/bootstrap/scss/_modal.scss +240 -0
- package/themes/bootstrap/scss/_nav.scss +197 -0
- package/themes/bootstrap/scss/_navbar.scss +289 -0
- package/themes/bootstrap/scss/_offcanvas.scss +147 -0
- package/themes/bootstrap/scss/_pagination.scss +109 -0
- package/themes/bootstrap/scss/_placeholders.scss +51 -0
- package/themes/bootstrap/scss/_popover.scss +196 -0
- package/themes/bootstrap/scss/_progress.scss +68 -0
- package/themes/bootstrap/scss/_reboot.scss +611 -0
- package/themes/bootstrap/scss/_root.scss +187 -0
- package/themes/bootstrap/scss/_spinners.scss +85 -0
- package/themes/bootstrap/scss/_tables.scss +171 -0
- package/themes/bootstrap/scss/_toasts.scss +73 -0
- package/themes/bootstrap/scss/_tooltip.scss +119 -0
- package/themes/bootstrap/scss/_transitions.scss +27 -0
- package/themes/bootstrap/scss/_type.scss +106 -0
- package/themes/bootstrap/scss/_utilities.scss +806 -0
- package/themes/bootstrap/scss/_variables-dark.scss +102 -0
- package/themes/bootstrap/scss/_variables.scss +1753 -0
- package/themes/bootstrap/scss/bootstrap-grid.scss +62 -0
- package/themes/bootstrap/scss/bootstrap-reboot.scss +10 -0
- package/themes/bootstrap/scss/bootstrap-utilities.scss +19 -0
- package/themes/bootstrap/scss/bootstrap.scss +52 -0
- package/themes/bootstrap/scss/forms/_floating-labels.scss +97 -0
- package/themes/bootstrap/scss/forms/_form-check.scss +189 -0
- package/themes/bootstrap/scss/forms/_form-control.scss +214 -0
- package/themes/bootstrap/scss/forms/_form-range.scss +91 -0
- package/themes/bootstrap/scss/forms/_form-select.scss +80 -0
- package/themes/bootstrap/scss/forms/_form-text.scss +11 -0
- package/themes/bootstrap/scss/forms/_input-group.scss +132 -0
- package/themes/bootstrap/scss/forms/_labels.scss +36 -0
- package/themes/bootstrap/scss/forms/_validation.scss +12 -0
- package/themes/bootstrap/scss/helpers/_clearfix.scss +3 -0
- package/themes/bootstrap/scss/helpers/_color-bg.scss +7 -0
- package/themes/bootstrap/scss/helpers/_colored-links.scss +30 -0
- package/themes/bootstrap/scss/helpers/_focus-ring.scss +5 -0
- package/themes/bootstrap/scss/helpers/_icon-link.scss +25 -0
- package/themes/bootstrap/scss/helpers/_position.scss +36 -0
- package/themes/bootstrap/scss/helpers/_ratio.scss +26 -0
- package/themes/bootstrap/scss/helpers/_stacks.scss +15 -0
- package/themes/bootstrap/scss/helpers/_stretched-link.scss +15 -0
- package/themes/bootstrap/scss/helpers/_text-truncation.scss +7 -0
- package/themes/bootstrap/scss/helpers/_visually-hidden.scss +8 -0
- package/themes/bootstrap/scss/helpers/_vr.scss +8 -0
- package/themes/bootstrap/scss/mixins/_alert.scss +18 -0
- package/themes/bootstrap/scss/mixins/_backdrop.scss +14 -0
- package/themes/bootstrap/scss/mixins/_banner.scss +7 -0
- package/themes/bootstrap/scss/mixins/_border-radius.scss +78 -0
- package/themes/bootstrap/scss/mixins/_box-shadow.scss +18 -0
- package/themes/bootstrap/scss/mixins/_breakpoints.scss +127 -0
- package/themes/bootstrap/scss/mixins/_buttons.scss +70 -0
- package/themes/bootstrap/scss/mixins/_caret.scss +69 -0
- package/themes/bootstrap/scss/mixins/_clearfix.scss +9 -0
- package/themes/bootstrap/scss/mixins/_color-mode.scss +21 -0
- package/themes/bootstrap/scss/mixins/_color-scheme.scss +7 -0
- package/themes/bootstrap/scss/mixins/_container.scss +11 -0
- package/themes/bootstrap/scss/mixins/_deprecate.scss +10 -0
- package/themes/bootstrap/scss/mixins/_forms.scss +163 -0
- package/themes/bootstrap/scss/mixins/_gradients.scss +47 -0
- package/themes/bootstrap/scss/mixins/_grid.scss +151 -0
- package/themes/bootstrap/scss/mixins/_image.scss +16 -0
- package/themes/bootstrap/scss/mixins/_list-group.scss +26 -0
- package/themes/bootstrap/scss/mixins/_lists.scss +7 -0
- package/themes/bootstrap/scss/mixins/_pagination.scss +10 -0
- package/themes/bootstrap/scss/mixins/_reset-text.scss +17 -0
- package/themes/bootstrap/scss/mixins/_resize.scss +6 -0
- package/themes/bootstrap/scss/mixins/_table-variants.scss +24 -0
- package/themes/bootstrap/scss/mixins/_text-truncate.scss +8 -0
- package/themes/bootstrap/scss/mixins/_transition.scss +26 -0
- package/themes/bootstrap/scss/mixins/_utilities.scss +97 -0
- package/themes/bootstrap/scss/mixins/_visually-hidden.scss +38 -0
- package/themes/bootstrap/scss/tests/jasmine.js +16 -0
- package/themes/bootstrap/scss/tests/mixins/_auto-import-of-variables-dark.test.scss +7 -0
- package/themes/bootstrap/scss/tests/mixins/_color-modes.test.scss +69 -0
- package/themes/bootstrap/scss/tests/mixins/_media-query-color-mode-full.test.scss +8 -0
- package/themes/bootstrap/scss/tests/mixins/_utilities.test.scss +393 -0
- package/themes/bootstrap/scss/tests/sass-true/register.js +14 -0
- package/themes/bootstrap/scss/tests/sass-true/runner.js +17 -0
- package/themes/bootstrap/scss/tests/utilities/_api.test.scss +75 -0
- package/themes/bootstrap/scss/utilities/_api.scss +47 -0
- package/themes/bootstrap/scss/vendor/_rfs.scss +348 -0
- package/themes/classy/README.md +89 -0
- package/themes/classy/_config.scss +245 -0
- package/themes/classy/_theme.js +31 -0
- package/themes/classy/_theme.scss +57 -0
- package/themes/classy/css/app/_panels.scss +183 -0
- package/themes/classy/css/base/_fonts.scss +79 -0
- package/themes/classy/css/base/_no-raise.scss +49 -0
- package/themes/classy/css/base/_root.scss +113 -0
- package/themes/classy/css/base/_typography.scss +154 -0
- package/themes/classy/css/base/_utilities.scss +284 -0
- package/themes/classy/css/components/_alerts.scss +51 -0
- package/themes/classy/css/components/_badges.scss +46 -0
- package/themes/classy/css/components/_buttons.scss +175 -0
- package/themes/classy/css/components/_cards.scss +41 -0
- package/themes/classy/css/components/_dropdowns.scss +48 -0
- package/themes/classy/css/components/_forms.scss +171 -0
- package/themes/classy/css/components/_receipt.scss +45 -0
- package/themes/classy/css/layout/_footer.scss +298 -0
- package/themes/classy/css/layout/_general.scss +209 -0
- package/themes/classy/css/layout/_nav.scss +154 -0
- package/themes/classy/css/layout/_shell.scss +458 -0
- package/themes/classy/css/marketing/_bento.scss +238 -0
- package/themes/classy/css/marketing/_content.scss +1328 -0
- package/themes/classy/css/marketing/_downloads.scss +246 -0
- package/themes/classy/css/marketing/_hero.scss +311 -0
- package/themes/classy/css/marketing/_sections.scss +649 -0
- package/themes/classy/css/pages/404/index.scss +67 -0
- package/themes/classy/css/pages/_auth.scss +235 -0
- package/themes/classy/css/pages/admin/firebase/index.scss +22 -0
- package/themes/classy/css/pages/blog/[slug].scss +56 -0
- package/themes/classy/css/pages/cookies.scss +2 -0
- package/themes/classy/css/pages/dashboard/account/index.scss +31 -0
- package/themes/classy/css/pages/feedback/index.scss +39 -0
- package/themes/classy/css/pages/legal/_document.scss +192 -0
- package/themes/classy/css/pages/payment/checkout/index.scss +585 -0
- package/themes/classy/css/pages/payment/confirmation/index.scss +9 -0
- package/themes/classy/css/pages/privacy.scss +2 -0
- package/themes/classy/css/pages/status/index.scss +164 -0
- package/themes/classy/css/pages/terms.scss +2 -0
- package/themes/classy/css/pages/updates/index.scss +128 -0
- package/themes/classy/fonts/inter-italic-latin-ext.woff2 +0 -0
- package/themes/classy/fonts/inter-italic-latin.woff2 +0 -0
- package/themes/classy/fonts/inter-normal-latin-ext.woff2 +0 -0
- package/themes/classy/fonts/inter-normal-latin.woff2 +0 -0
- package/themes/classy/fonts/newsreader-italic-latin-ext.woff2 +0 -0
- package/themes/classy/fonts/newsreader-italic-latin.woff2 +0 -0
- package/themes/classy/fonts/newsreader-normal-latin-ext.woff2 +0 -0
- package/themes/classy/fonts/newsreader-normal-latin.woff2 +0 -0
- package/themes/classy/js/hero-demo-form.js +56 -0
- package/themes/neobrutalism/README.md +118 -0
- package/themes/neobrutalism/_config.scss +139 -0
- package/themes/neobrutalism/_layouts/frontend/core/base.html +30 -0
- package/themes/neobrutalism/_layouts/frontend/pages/index.html +275 -0
- package/themes/neobrutalism/_theme.js +24 -0
- package/themes/neobrutalism/_theme.scss +61 -0
- package/themes/neobrutalism/css/base/_mixins.scss +46 -0
- package/themes/neobrutalism/css/base/_root.scss +169 -0
- package/themes/neobrutalism/css/base/_typography.scss +61 -0
- package/themes/neobrutalism/css/base/_utilities.scss +89 -0
- package/themes/neobrutalism/css/components/_billing-toggle.scss +74 -0
- package/themes/neobrutalism/css/components/_buttons.scss +148 -0
- package/themes/neobrutalism/css/components/_cards.scss +47 -0
- package/themes/neobrutalism/css/components/_forms.scss +88 -0
- package/themes/neobrutalism/css/components/_marketing.scss +244 -0
- package/themes/neobrutalism/css/layout/_general.scss +213 -0
- package/themes/neobrutalism/css/layout/_navigation.scss +171 -0
- package/themes/neobrutalism/css/pages/index.scss +203 -0
- package/themes/neobrutalism/css/pages/pricing/index.scss +58 -0
- package/themes/neobrutalism/css/pages/test/libraries/layers/index.scss +7 -0
- package/themes/neobrutalism/js/pages/test/libraries/layers/index.js +9 -0
- package/themes/newsflash/README.md +117 -0
- package/themes/newsflash/_components/heading/lede/component.html +14 -0
- package/themes/newsflash/_components/heading/lede/component.json5 +23 -0
- package/themes/newsflash/_components/heading/rule-head/component.html +17 -0
- package/themes/newsflash/_components/heading/rule-head/component.json5 +23 -0
- package/themes/newsflash/_components/news/byline/component.html +12 -0
- package/themes/newsflash/_components/news/byline/component.json5 +18 -0
- package/themes/newsflash/_components/news/story-card/component.html +25 -0
- package/themes/newsflash/_components/news/story-card/component.json5 +21 -0
- package/themes/newsflash/_config.scss +147 -0
- package/themes/newsflash/_layouts/frontend/core/base.html +51 -0
- package/themes/newsflash/_layouts/frontend/pages/blog/index.html +299 -0
- package/themes/newsflash/_layouts/frontend/pages/blog/post.html +235 -0
- package/themes/newsflash/_layouts/frontend/pages/index.html +328 -0
- package/themes/newsflash/_sections/marketing/desks/section.html +39 -0
- package/themes/newsflash/_sections/marketing/desks/section.json5 +49 -0
- package/themes/newsflash/_sections/marketing/newsletter-cta/section.html +103 -0
- package/themes/newsflash/_sections/marketing/newsletter-cta/section.json5 +50 -0
- package/themes/newsflash/_sections/marketing/rundown/section.html +28 -0
- package/themes/newsflash/_sections/marketing/rundown/section.json5 +40 -0
- package/themes/newsflash/_theme.js +24 -0
- package/themes/newsflash/_theme.scss +70 -0
- package/themes/newsflash/css/base/_fonts.scss +80 -0
- package/themes/newsflash/css/base/_mixins.scss +51 -0
- package/themes/newsflash/css/base/_root.scss +257 -0
- package/themes/newsflash/css/base/_typography.scss +49 -0
- package/themes/newsflash/css/base/_utilities.scss +122 -0
- package/themes/newsflash/css/components/_badges.scss +65 -0
- package/themes/newsflash/css/components/_billing-toggle.scss +61 -0
- package/themes/newsflash/css/components/_buttons.scss +139 -0
- package/themes/newsflash/css/components/_cards.scss +47 -0
- package/themes/newsflash/css/components/_editorial.scss +173 -0
- package/themes/newsflash/css/components/_forms.scss +75 -0
- package/themes/newsflash/css/components/_infinite-scroll.scss +102 -0
- package/themes/newsflash/css/components/_panels.scss +156 -0
- package/themes/newsflash/css/components/_ticker.scss +67 -0
- package/themes/newsflash/css/layout/_general.scss +330 -0
- package/themes/newsflash/css/layout/_navigation.scss +168 -0
- package/themes/newsflash/css/pages/404/index.scss +79 -0
- package/themes/newsflash/css/pages/blog/[slug].scss +186 -0
- package/themes/newsflash/css/pages/blog/index.scss +17 -0
- package/themes/newsflash/css/pages/index.scss +157 -0
- package/themes/newsflash/css/pages/pricing/index.scss +55 -0
- package/themes/newsflash/css/pages/test/libraries/layers/index.scss +7 -0
- package/themes/newsflash/fonts/fraunces-italic-latin-ext.woff2 +0 -0
- package/themes/newsflash/fonts/fraunces-italic-latin.woff2 +0 -0
- package/themes/newsflash/fonts/fraunces-normal-latin-ext.woff2 +0 -0
- package/themes/newsflash/fonts/fraunces-normal-latin.woff2 +0 -0
- package/themes/newsflash/fonts/schibsted-grotesk-italic-latin-ext.woff2 +0 -0
- package/themes/newsflash/fonts/schibsted-grotesk-italic-latin.woff2 +0 -0
- package/themes/newsflash/fonts/schibsted-grotesk-normal-latin-ext.woff2 +0 -0
- package/themes/newsflash/fonts/schibsted-grotesk-normal-latin.woff2 +0 -0
- package/themes/newsflash/js/pages/blog/[slug].js +29 -0
- package/themes/newsflash/js/pages/test/libraries/layers/index.js +9 -0
- package/translations/es/pages/404.json +86 -0
- package/translations/es/pages/account.json +36 -0
- package/translations/es/pages/app.json +44 -0
- package/translations/es/pages/cancel.json +36 -0
- package/translations/es/pages/change-password.json +36 -0
- package/translations/es/pages/connections/callback.json +41 -0
- package/translations/es/pages/dashboard/account.json +475 -0
- package/translations/es/pages/dashboard.json +36 -0
- package/translations/es/pages/forgot.json +36 -0
- package/translations/es/pages/join.json +36 -0
- package/translations/es/pages/login.json +36 -0
- package/translations/es/pages/payment/checkout.json +83 -0
- package/translations/es/pages/payment/confirmation.json +62 -0
- package/translations/es/pages/portal/email-preferences.json +46 -0
- package/translations/es/pages/recover.json +36 -0
- package/translations/es/pages/refund.json +36 -0
- package/translations/es/pages/register.json +36 -0
- package/translations/es/pages/reset-password.json +36 -0
- package/translations/es/pages/reset.json +42 -0
- package/translations/es/pages/signin.json +45 -0
- package/translations/es/pages/signup.json +60 -0
- package/translations/es/pages/token.json +39 -0
- package/translations/fa/pages/404.json +86 -0
- package/translations/fa/pages/account.json +36 -0
- package/translations/fa/pages/app.json +44 -0
- package/translations/fa/pages/cancel.json +36 -0
- package/translations/fa/pages/change-password.json +36 -0
- package/translations/fa/pages/connections/callback.json +41 -0
- package/translations/fa/pages/dashboard/account.json +475 -0
- package/translations/fa/pages/dashboard.json +36 -0
- package/translations/fa/pages/forgot.json +36 -0
- package/translations/fa/pages/join.json +36 -0
- package/translations/fa/pages/login.json +36 -0
- package/translations/fa/pages/payment/checkout.json +83 -0
- package/translations/fa/pages/payment/confirmation.json +62 -0
- package/translations/fa/pages/portal/email-preferences.json +46 -0
- package/translations/fa/pages/recover.json +36 -0
- package/translations/fa/pages/refund.json +36 -0
- package/translations/fa/pages/register.json +36 -0
- package/translations/fa/pages/reset-password.json +36 -0
- package/translations/fa/pages/reset.json +42 -0
- package/translations/fa/pages/signin.json +45 -0
- package/translations/fa/pages/signup.json +60 -0
- package/translations/fa/pages/token.json +39 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 200.4 66.5" style="enable-background:new 0 0 200.4 66.5;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.samsung-original-0{fill:#034EA2;}
|
|
7
|
+
</style>
|
|
8
|
+
<path id="samsung_1_" class="samsung-original-0" d="M200.3,16.1C197.6,0.5,150.7-4.4,95.7,5.2C71.7,9.4,50,15.6,33.5,22.6c0.9-0.2,1.8-0.3,2.9-0.3
|
|
9
|
+
c2.9,0,7,0.7,7,5.2V29h-5.1c0,0,0-0.9,0-1.3c0-1.1-0.7-1.9-1.9-1.9c-1.3,0-1.7,0.7-1.9,1.4c0,0.2-0.1,0.7,0,1.1
|
|
10
|
+
c0.6,2.4,8.4,3.7,9.3,8c0.1,0.4,0.3,1.6,0,3.4c-0.5,3.4-3.6,4.7-7.3,4.7c-3.9,0-7.5-1.4-7.5-6l0-1.6h5.5v2c0,1.1,0.8,1.9,2.1,1.9
|
|
11
|
+
c1.4,0,1.8-0.7,2-1.4c0.1-0.4,0.2-1,0-1.5c-1.1-2.7-8.4-3.9-9.3-8.1c-0.2-1-0.2-1.9,0-2.8c0.2-1.4,0.9-2.5,1.9-3.2
|
|
12
|
+
C11.2,32.5-0.6,42.3,0.9,50.8c2.7,15.6,49.5,20.5,104.6,10.9c24.6-4.3,46.6-10.7,63.3-17.9c-0.9,0.2-1.8,0.3-2.8,0.3
|
|
13
|
+
c-3.7,0-6.9-1.3-7.3-5.1c-0.1-0.7-0.1-1-0.1-1.4l0-8.7c0-0.4,0-1,0.1-1.4c0.5-3.9,3.6-5.1,7.2-5.1c3.7,0,6.9,1.2,7.2,5.1
|
|
14
|
+
c0.1,0.7,0,1.4,0,1.4v0.7h-5.2v-1.2c0,0,0-0.5-0.1-0.8c-0.1-0.5-0.5-1.5-2.1-1.5c-1.5,0-1.9,1-2.1,1.5c-0.1,0.3-0.1,0.6-0.1,1v9.4
|
|
15
|
+
c0,0.3,0,0.5,0.1,0.8c0.1,0.6,0.6,1.5,2.1,1.5c1.5,0,2-0.9,2.1-1.5c0-0.2,0-0.5,0-0.8v-3H166v-3h7.3v5.5c0,0.4,0,0.7-0.1,1.4
|
|
16
|
+
c-0.2,1.7-0.9,2.9-2,3.7C190.4,34,201.7,24.4,200.3,16.1z M58.5,43.6l-2.8-18.7h-0.1l-2.8,18.7h-5.6L51,23h9.2L64,43.6L58.5,43.6
|
|
17
|
+
L58.5,43.6z M85.9,43.6l-0.1-18.6h-0.1l-3.5,18.6H77l-3.5-18.6h-0.1l-0.1,18.6h-5.2L68.6,23H77l2.5,15.8h0.1L82.2,23h8.4l0.4,20.6
|
|
18
|
+
L85.9,43.6L85.9,43.6L85.9,43.6z M110.8,39.7c-0.5,3.4-3.5,4.7-7.2,4.7c-3.8,0-7.4-1.4-7.4-5.9l0-1.6h5.5l0,2c0,1.1,0.8,1.9,2.1,1.9
|
|
19
|
+
c1.4,0,1.8-0.7,2-1.4c0.1-0.4,0.2-1,0-1.5c-1.1-2.6-8.3-3.9-9.2-8c-0.2-1-0.2-1.8,0-2.8c0.5-3.3,3.5-4.5,7.1-4.5
|
|
20
|
+
c2.9,0,6.9,0.7,6.9,5.1V29h-5.1c0,0,0-0.9,0-1.3c0-1.1-0.7-1.8-1.9-1.8c-1.3,0-1.7,0.7-1.9,1.4c-0.1,0.2-0.1,0.7,0,1.1
|
|
21
|
+
c0.6,2.4,8.3,3.7,9.2,7.9C110.8,36.8,111,37.9,110.8,39.7z M130.1,39.2c-0.4,3.9-3.4,5.1-7.2,5.1c-3.8,0-6.8-1.3-7.2-5.1
|
|
22
|
+
c0-0.2-0.1-1,0-1.4V23h5.2v15.3c0,0.3,0,0.6,0,0.8c0.1,0.5,0.5,1.5,2,1.5c1.4,0,1.9-1,2-1.5c0-0.2,0.1-0.5,0-0.8V23h5.2v14.8
|
|
23
|
+
C130.2,38.2,130.2,39,130.1,39.2z M153.3,43.4h-7.3l-5.1-16.8h-0.1l0.3,16.8h-5.1V23h7.7l4.7,16.2h0.1L148.2,23h5.1L153.3,43.4
|
|
24
|
+
L153.3,43.4z"/>
|
|
25
|
+
</svg>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 200.4 66.5" style="enable-background:new 0 0 200.4 66.5;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.shopify-original-0{fill:#95BF47;}
|
|
7
|
+
.shopify-original-1{fill:#5E8E3E;}
|
|
8
|
+
.shopify-original-2{fill:#FFFFFF;}
|
|
9
|
+
</style>
|
|
10
|
+
<path class="shopify-original-0" d="M43,15.5c0-0.3-0.3-0.4-0.5-0.5c-0.2,0-4.5-0.3-4.5-0.3s-3-3-3.3-3.3c-0.3-0.3-1-0.2-1.2-0.2
|
|
11
|
+
c0,0-0.7,0.2-1.7,0.5c-1-2.9-2.7-5.5-5.8-5.5h-0.3c-0.9-1.2-2-1.7-2.9-1.7c-7.2,0-10.6,9-11.7,13.6c-2.8,0.9-4.8,1.5-5,1.5
|
|
12
|
+
c-1.5,0.5-1.6,0.5-1.8,2C4.1,22.9,0,54.6,0,54.6l31.9,6l17.3-3.7C49.1,56.8,43.1,15.8,43,15.5z M30.1,12.3c-0.8,0.3-1.7,0.5-2.7,0.8
|
|
13
|
+
v-0.6c0-1.8-0.3-3.2-0.7-4.4C28.3,8.5,29.4,10.3,30.1,12.3z M24.8,8.6c0.4,1.1,0.7,2.7,0.7,4.8v0.3c-1.7,0.5-3.7,1.1-5.6,1.7
|
|
14
|
+
C21,11.4,23,9.3,24.8,8.6z M22.6,6.6c0.3,0,0.6,0.1,0.9,0.3c-2.3,1.1-4.8,3.8-5.8,9.3c-1.5,0.5-3,0.9-4.4,1.4
|
|
15
|
+
C14.6,13.4,17.5,6.6,22.6,6.6z"/>
|
|
16
|
+
<path class="shopify-original-1" d="M42.6,15.1c-0.2,0-4.5-0.3-4.5-0.3s-3-3-3.3-3.3c-0.1-0.1-0.3-0.2-0.5-0.2l-2.4,49.3l17.3-3.7
|
|
17
|
+
c0,0-6.1-41-6.1-41.3C43,15.2,42.8,15.1,42.6,15.1z"/>
|
|
18
|
+
<path class="shopify-original-2" d="M26,24.6l-2.1,6.3c0,0-1.9-1-4.2-1c-3.4,0-3.5,2.1-3.5,2.6c0,2.9,7.5,4,7.5,10.8c0,5.3-3.4,8.8-7.9,8.8
|
|
19
|
+
c-5.5,0-8.3-3.4-8.3-3.4L9,43.9c0,0,2.9,2.5,5.3,2.5c1.6,0,2.2-1.3,2.2-2.2c0-3.8-6.2-4-6.2-10.2c0-5.2,3.8-10.3,11.3-10.3
|
|
20
|
+
C24.6,23.8,26,24.6,26,24.6z"/>
|
|
21
|
+
<path d="M69.3,36.5c-1.7-0.9-2.6-1.7-2.6-2.8c0-1.4,1.2-2.3,3.2-2.3c2.2,0,4.2,0.9,4.2,0.9l1.6-4.8c0,0-1.5-1.1-5.7-1.1
|
|
22
|
+
c-5.9,0-10.1,3.4-10.1,8.2c0,2.7,1.9,4.8,4.5,6.3c2.1,1.2,2.8,2,2.8,3.3c0,1.3-1,2.3-3,2.3c-2.9,0-5.6-1.5-5.6-1.5L57,49.7
|
|
23
|
+
c0,0,2.5,1.7,6.7,1.7c6.1,0,10.5-3,10.5-8.4C74.2,40.1,72,38,69.3,36.5L69.3,36.5z M93.6,26.4c-3,0-5.4,1.4-7.2,3.6l-0.1,0l2.6-13.6
|
|
24
|
+
h-6.8L75.5,51h6.8l2.3-11.9c0.9-4.5,3.2-7.3,5.4-7.3c1.5,0,2.1,1,2.1,2.5c0,0.9-0.1,2.1-0.3,3l-2.6,13.6H96l2.7-14
|
|
25
|
+
c0.3-1.5,0.5-3.3,0.5-4.4C99.1,28.7,97.1,26.4,93.6,26.4L93.6,26.4z M114.5,26.4c-8.2,0-13.6,7.4-13.6,15.6c0,5.3,3.3,9.5,9.4,9.5
|
|
26
|
+
c8,0,13.4-7.2,13.4-15.6C123.7,31,120.9,26.4,114.5,26.4L114.5,26.4z M111.2,46.2c-2.3,0-3.3-2-3.3-4.4c0-3.9,2-10.3,5.7-10.3
|
|
27
|
+
c2.4,0,3.2,2.1,3.2,4.1C116.8,39.8,114.8,46.2,111.2,46.2z M141.1,26.4c-4.6,0-7.2,4-7.2,4h-0.1l0.4-3.6h-6c-0.3,2.5-0.8,6.2-1.4,9
|
|
28
|
+
l-4.7,24.9h6.8l1.9-10.1h0.1c0,0,1.4,0.9,4,0.9c8,0,13.2-8.2,13.2-16.4C148.1,30.4,146.1,26.4,141.1,26.4L141.1,26.4z M134.6,46.3
|
|
29
|
+
c-1.8,0-2.8-1-2.8-1l1.1-6.4c0.8-4.2,3-7.1,5.4-7.1c2.1,0,2.7,1.9,2.7,3.7C141,40.1,138.4,46.3,134.6,46.3z M157.8,16.6
|
|
30
|
+
c-2.2,0-3.9,1.7-3.9,3.9c0,2,1.3,3.4,3.2,3.4h0.1c2.1,0,3.9-1.4,4-3.9C161.2,18,159.9,16.6,157.8,16.6L157.8,16.6z M148.3,50.9h6.8
|
|
31
|
+
l4.6-24.1h-6.8 M177,26.9h-4.7l0.2-1.1c0.4-2.3,1.8-4.4,4-4.4c1.2,0,2.2,0.3,2.2,0.3l1.3-5.3c0,0-1.2-0.6-3.7-0.6
|
|
32
|
+
c-2.4,0-4.8,0.7-6.7,2.3c-2.3,2-3.4,4.8-3.9,7.7l-0.2,1.1h-3.2l-1,5.1h3.2l-3.6,19h6.8l3.6-19h4.7L177,26.9L177,26.9z M193.3,26.9
|
|
33
|
+
c0,0-4.3,10.7-6.2,16.5h-0.1c-0.1-1.9-1.7-16.5-1.7-16.5h-7.2l4.1,22.1c0.1,0.5,0,0.8-0.1,1.1c-0.8,1.5-2.1,3-3.7,4.1
|
|
34
|
+
c-1.3,0.9-2.7,1.5-3.8,1.9l1.9,5.8c1.4-0.3,4.2-1.4,6.7-3.7c3.1-2.9,6-7.4,8.9-13.5l8.3-17.8L193.3,26.9L193.3,26.9z"/>
|
|
35
|
+
</svg>
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 23.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 200.4 66.5" style="enable-background:new 0 0 200.4 66.5;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.st0{fill:#E01E5A;}
|
|
7
|
+
.st1{fill:#36C5F0;}
|
|
8
|
+
.st2{fill:#2EB67D;}
|
|
9
|
+
.st3{fill:#ECB22E;}
|
|
10
|
+
</style>
|
|
11
|
+
<title>slack_cmyk</title>
|
|
12
|
+
<desc>Created with Sketch.</desc>
|
|
13
|
+
<g>
|
|
14
|
+
<g>
|
|
15
|
+
<path d="M64.1,47.8l2.5-5.8c2.7,2,6.3,3.1,9.9,3.1c2.6,0,4.3-1,4.3-2.5c0-4.3-15.7-0.9-15.8-11.7c0-5.5,4.8-9.7,11.7-9.7
|
|
16
|
+
c4.1,0,8.2,1,11.1,3.3l-2.3,5.9c-2.7-1.7-6-2.9-9.1-2.9c-2.1,0-3.6,1-3.6,2.3c0,4.2,15.8,1.9,16,12.2c0,5.6-4.7,9.5-11.5,9.5
|
|
17
|
+
C72.1,51.5,67.6,50.3,64.1,47.8"/>
|
|
18
|
+
<path d="M160.2,39.9c-1.3,2.2-3.6,3.7-6.3,3.7c-4,0-7.2-3.2-7.2-7.2s3.2-7.2,7.2-7.2c2.7,0,5,1.5,6.3,3.7l6.9-3.8
|
|
19
|
+
c-2.6-4.6-7.6-7.8-13.2-7.8c-8.4,0-15.1,6.8-15.1,15.1s6.8,15.1,15.1,15.1c5.7,0,10.6-3.1,13.2-7.8L160.2,39.9z"/>
|
|
20
|
+
<rect x="92.1" y="8.6" width="8.6" height="42.3"/>
|
|
21
|
+
<polygon points="170.5,8.6 170.5,50.9 179.1,50.9 179.1,38.3 189.4,50.9 200.5,50.9 187.4,35.9 199.5,21.8 188.9,21.8 179.1,33.5
|
|
22
|
+
179.1,8.6 "/>
|
|
23
|
+
<path d="M126.4,40c-1.3,2.1-3.8,3.6-6.7,3.6c-4,0-7.2-3.2-7.2-7.2s3.2-7.2,7.2-7.2c2.9,0,5.5,1.6,6.7,3.7V40z M126.4,21.8v3.4
|
|
24
|
+
c-1.4-2.4-4.9-4-8.6-4c-7.6,0-13.6,6.7-13.6,15.1s6,15.2,13.6,15.2c3.7,0,7.2-1.7,8.6-4v3.4h8.6V21.8
|
|
25
|
+
C135.1,21.8,126.4,21.8,126.4,21.8z"/>
|
|
26
|
+
</g>
|
|
27
|
+
<g>
|
|
28
|
+
<g>
|
|
29
|
+
<path class="st0" d="M10.6,40c0,2.9-2.4,5.3-5.3,5.3S0,42.9,0,40s2.4-5.3,5.3-5.3h5.3V40z"/>
|
|
30
|
+
<path class="st0" d="M13.3,40c0-2.9,2.4-5.3,5.3-5.3S24,37,24,40v13.3c0,2.9-2.4,5.3-5.3,5.3s-5.3-2.4-5.3-5.3V40z"/>
|
|
31
|
+
</g>
|
|
32
|
+
<g>
|
|
33
|
+
<path class="st1" d="M18.6,18.5c-2.9,0-5.3-2.4-5.3-5.3c0-2.9,2.4-5.3,5.3-5.3s5.3,2.4,5.3,5.3v5.3H18.6z"/>
|
|
34
|
+
<path class="st1" d="M18.6,21.3c2.9,0,5.3,2.4,5.3,5.3s-2.4,5.3-5.3,5.3H5.3c-2.9,0-5.3-2.4-5.3-5.3s2.4-5.3,5.3-5.3H18.6z"/>
|
|
35
|
+
</g>
|
|
36
|
+
<g>
|
|
37
|
+
<path class="st2" d="M40,26.6c0-2.9,2.4-5.3,5.3-5.3s5.3,2.4,5.3,5.3s-2.4,5.3-5.3,5.3H40V26.6z"/>
|
|
38
|
+
<path class="st2" d="M37.3,26.6c0,2.9-2.4,5.3-5.3,5.3c-2.9,0-5.3-2.4-5.3-5.3V13.2c0-2.9,2.4-5.3,5.3-5.3c2.9,0,5.3,2.4,5.3,5.3
|
|
39
|
+
V26.6z"/>
|
|
40
|
+
</g>
|
|
41
|
+
<g>
|
|
42
|
+
<path class="st3" d="M32,48c2.9,0,5.3,2.4,5.3,5.3c0,2.9-2.4,5.3-5.3,5.3c-2.9,0-5.3-2.4-5.3-5.3V48H32z"/>
|
|
43
|
+
<path class="st3" d="M32,45.3c-2.9,0-5.3-2.4-5.3-5.3s2.4-5.3,5.3-5.3h13.4c2.9,0,5.3,2.4,5.3,5.3s-2.4,5.3-5.3,5.3H32z"/>
|
|
44
|
+
</g>
|
|
45
|
+
</g>
|
|
46
|
+
</g>
|
|
47
|
+
</svg>
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 200.4 66.5" style="enable-background:new 0 0 200.4 66.5;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.spotify-original-0{fill:#1ED760;}
|
|
7
|
+
</style>
|
|
8
|
+
<path class="spotify-original-0" d="M30.1,3.2C13.5,3.2,0,16.6,0,33.2c0,16.6,13.5,30.1,30.1,30.1c16.6,0,30.1-13.5,30.1-30.1
|
|
9
|
+
C60.1,16.6,46.7,3.2,30.1,3.2C30.1,3.2,30.1,3.2,30.1,3.2z M43.8,46.5c-0.5,0.9-1.7,1.2-2.6,0.6c-7.1-4.3-15.9-5.3-26.4-2.9
|
|
10
|
+
c-1,0.2-2-0.4-2.2-1.4c-0.2-1,0.4-2,1.4-2.2C25.5,38,35.3,39.1,43.2,44C44.1,44.5,44.4,45.6,43.8,46.5z M47.5,38.3
|
|
11
|
+
c-0.7,1.1-2.1,1.5-3.2,0.8c-8.1-5-20.4-6.4-29.9-3.5c-1.2,0.4-2.5-0.3-2.9-1.6c-0.4-1.2,0.3-2.5,1.6-2.9c10.9-3.3,24.5-1.7,33.8,4
|
|
12
|
+
C47.8,35.8,48.2,37.2,47.5,38.3L47.5,38.3z M47.8,29.8c-9.7-5.8-25.7-6.3-34.9-3.5c-1.5,0.5-3.1-0.4-3.5-1.9C9,23,9.8,21.4,11.3,21
|
|
13
|
+
c10.6-3.2,28.3-2.6,39.4,4c1.3,0.8,1.8,2.5,1,3.9C50.9,30.2,49.2,30.6,47.8,29.8L47.8,29.8z M81.8,30.9c-5.2-1.2-6.1-2.1-6.1-3.9
|
|
14
|
+
c0-1.7,1.6-2.9,4-2.9c2.3,0,4.7,0.9,7.1,2.7c0.1,0.1,0.2,0.1,0.3,0.1c0.1,0,0.2-0.1,0.2-0.1l2.5-3.6c0.1-0.1,0.1-0.3-0.1-0.5
|
|
15
|
+
c-2.9-2.3-6.2-3.5-10-3.5c-5.6,0-9.5,3.4-9.5,8.2c0,5.2,3.4,7,9.2,8.4c5,1.1,5.8,2.1,5.8,3.8c0,1.9-1.7,3.1-4.4,3.1
|
|
16
|
+
c-3,0-5.5-1-8.3-3.4c-0.1-0.1-0.2-0.1-0.2-0.1c-0.1,0-0.2,0.1-0.2,0.1l-2.8,3.4c-0.1,0.1-0.1,0.4,0,0.5c3.2,2.9,7.2,4.4,11.4,4.4
|
|
17
|
+
c6,0,9.9-3.3,9.9-8.4C90.7,34.9,88.1,32.5,81.8,30.9C81.8,30.9,81.8,30.9,81.8,30.9z M104.3,25.8c-2.6,0-4.8,1-6.5,3.1v-2.4
|
|
18
|
+
c0-0.2-0.2-0.3-0.3-0.3h-4.6c-0.2,0-0.3,0.2-0.3,0.3V53c0,0.2,0.2,0.3,0.3,0.3h4.6c0.2,0,0.3-0.2,0.3-0.3v-8.3c1.8,2,3.9,3,6.5,3
|
|
19
|
+
c4.9,0,9.8-3.7,9.8-10.9C114.1,29.6,109.2,25.8,104.3,25.8L104.3,25.8L104.3,25.8z M108.7,36.7c0,3.6-2.2,6.2-5.5,6.2
|
|
20
|
+
c-3.2,0-5.6-2.7-5.6-6.2c0-3.5,2.4-6.2,5.6-6.2C106.4,30.5,108.7,33.1,108.7,36.7L108.7,36.7z M126.7,25.8c-6.3,0-11.2,4.8-11.2,11
|
|
21
|
+
c0,6.1,4.9,10.9,11.1,10.9c6.3,0,11.2-4.8,11.2-10.9C137.9,30.6,133,25.8,126.7,25.8L126.7,25.8z M126.7,42.9
|
|
22
|
+
c-3.3,0-5.8-2.7-5.8-6.2c0-3.6,2.4-6.1,5.8-6.1c3.4,0,5.9,2.7,5.9,6.2C132.5,40.4,130.1,42.9,126.7,42.9z M151.2,26.2h-5.1V21
|
|
23
|
+
c0-0.2-0.2-0.3-0.3-0.3h-4.6c-0.2,0-0.3,0.2-0.3,0.3v5.2h-2.2c-0.2,0-0.3,0.2-0.3,0.3v4c0,0.2,0.2,0.3,0.3,0.3h2.2v10.3
|
|
24
|
+
c0,4.2,2.1,6.3,6.2,6.3c1.7,0,3-0.3,4.3-1.1c0.1-0.1,0.2-0.2,0.2-0.3v-3.8c0-0.1-0.1-0.2-0.2-0.3c-0.1-0.1-0.2-0.1-0.3,0
|
|
25
|
+
c-0.9,0.4-1.8,0.7-2.7,0.7c-1.5,0-2.2-0.7-2.2-2.2v-9.6h5.1c0.2,0,0.3-0.2,0.3-0.3v-4C151.6,26.4,151.4,26.2,151.2,26.2L151.2,26.2
|
|
26
|
+
L151.2,26.2z M169,26.3v-0.6c0-1.9,0.7-2.7,2.3-2.7c1,0,1.7,0.2,2.6,0.5c0.1,0,0.2,0,0.3,0c0.1-0.1,0.1-0.2,0.1-0.3v-3.9
|
|
27
|
+
c0-0.1-0.1-0.3-0.2-0.3c-0.9-0.3-2.1-0.6-3.9-0.6c-4.3,0-6.6,2.4-6.6,7v1h-2.2c-0.2,0-0.3,0.2-0.3,0.3v4c0,0.2,0.2,0.3,0.3,0.3h2.2
|
|
28
|
+
v15.9c0,0.2,0.2,0.3,0.3,0.3h4.6c0.2,0,0.3-0.2,0.3-0.3V30.9h4.3l6.6,15.9c-0.8,1.7-1.5,2-2.5,2c-0.8,0-1.7-0.2-2.6-0.7
|
|
29
|
+
c-0.1,0-0.2-0.1-0.3,0c-0.1,0-0.2,0.1-0.2,0.2l-1.6,3.5c-0.1,0.2,0,0.4,0.1,0.4c1.6,0.9,3.1,1.3,5,1.3c3.4,0,5.3-1.6,7-5.9l8.1-20.8
|
|
30
|
+
c0-0.1,0-0.2,0-0.3c-0.1-0.1-0.2-0.1-0.3-0.1H188c-0.1,0-0.3,0.1-0.3,0.2l-5,14.2l-5.4-14.2c-0.1-0.1-0.2-0.2-0.3-0.2L169,26.3
|
|
31
|
+
L169,26.3L169,26.3z M158.7,26.2h-4.6c-0.2,0-0.3,0.2-0.3,0.3v20.3c0,0.2,0.2,0.3,0.3,0.3h4.6c0.2,0,0.3-0.2,0.3-0.3V26.6
|
|
32
|
+
C159.1,26.4,158.9,26.2,158.7,26.2C158.7,26.2,158.7,26.2,158.7,26.2z M156.4,17c-1.8,0-3.3,1.5-3.3,3.3c0,1.8,1.5,3.3,3.3,3.3
|
|
33
|
+
c1.8,0,3.3-1.5,3.3-3.3C159.7,18.5,158.3,17,156.4,17z M197.1,32.8c-1.8,0-3.3-1.5-3.3-3.3s1.4-3.3,3.3-3.3s3.3,1.5,3.3,3.3
|
|
34
|
+
C200.4,31.3,199,32.8,197.1,32.8z M197.1,26.5c-1.7,0-2.9,1.3-2.9,3c0,1.6,1.3,2.9,2.9,2.9c1.7,0,2.9-1.3,2.9-3
|
|
35
|
+
C200.1,27.8,198.8,26.5,197.1,26.5z M197.9,29.8l0.9,1.3H198l-0.8-1.2h-0.7v1.2h-0.7v-3.4h1.5c0.8,0,1.3,0.4,1.3,1.1
|
|
36
|
+
C198.7,29.3,198.3,29.7,197.9,29.8L197.9,29.8z M197.3,28.3h-0.9v1.1h0.9c0.4,0,0.7-0.2,0.7-0.5C198,28.4,197.7,28.3,197.3,28.3z"/>
|
|
37
|
+
</svg>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
|
2
|
+
<svg width="512px" height="114px" viewBox="0 0 512 114" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
|
|
3
|
+
<g>
|
|
4
|
+
<g transform="translate(97.523810, 51.397683)" fill="#0A0B09">
|
|
5
|
+
<path d="M15.4390734,54.2252149 C9.19161905,54.2252149 4.2996139,52.795305 0.235243243,48.8818327 L3.84757786,45.2688391 C6.78317632,48.354018 10.7724273,49.5592278 15.3639537,49.5592278 C21.4598507,49.5592278 25.2237426,47.3761441 25.2237426,43.0106358 C25.2237426,39.7745586 23.3411377,37.9683912 19.051408,37.5914749 L12.954852,37.0649781 C5.72952381,36.4627027 1.89117117,33.2266255 1.89117117,27.1300695 C1.89117117,20.3561184 7.61081081,16.2924067 15.5141931,16.2924067 C20.7824556,16.2924067 25.5242214,17.5720772 28.8360772,20.2803398 L25.2982033,23.8175547 C22.6644015,21.7866873 19.277426,20.8826152 15.4390734,20.8826152 C10.0192535,20.8826152 7.15943372,23.2165972 7.15943372,26.9791712 C7.15943372,30.1407876 8.96560103,32.0227336 13.6322471,32.398332 L19.5779048,32.9248288 C26.0513771,33.5277632 30.4913462,36.0106667 30.4913462,42.936175 C30.4913462,50.0857246 24.3947902,54.2252149 15.4390734,54.2252149"></path>
|
|
6
|
+
<path d="M46.9708932,53.7738378 C40.6483192,53.7738378 37.4873616,49.3325508 37.4873616,43.8389292 L37.4873616,21.1092921 L32.8213745,21.1092921 L32.8213745,16.9691429 L37.4873616,16.9691429 L37.4873616,5.37896525 L42.9065225,5.37896525 L42.9065225,16.9691429 L50.8092458,16.9691429 L50.8092458,21.1092921 L42.9065225,21.1092921 L42.9065225,43.6880309 C42.9065225,47.0750064 44.4873308,49.1071918 47.949426,49.1071918 L50.8092458,49.1071918 L50.8092458,53.7738378 L46.9708932,53.7738378"></path>
|
|
7
|
+
<path d="M78.8348211,36.6887207 L68.4485354,36.6887207 C62.8784762,36.6887207 60.1688958,38.9469241 60.1688958,43.2359949 C60.1688958,47.5263835 62.8033565,49.5592278 68.6738945,49.5592278 C71.8355109,49.5592278 74.6195521,49.3325508 76.9528752,47.0750064 C78.2325457,45.8711145 78.8348211,43.7638095 78.8348211,40.6773127 L78.8348211,36.6887207 L78.8348211,36.6887207 Z M78.8348211,53.7738378 L78.8348211,50.235964 C75.824103,53.2473411 73.1145225,54.2252149 68.1473977,54.2252149 C63.0293745,54.2252149 60.0186564,53.2473411 57.6846744,50.8388983 C55.879166,49.0314131 54.9006332,46.2473719 54.9006332,43.3117735 C54.9006332,36.839619 59.416381,32.6236911 67.6953616,32.6236911 L78.8348211,32.6236911 L78.8348211,29.0864762 C78.8348211,23.6686332 76.1252407,20.9583938 69.3512896,20.9583938 C64.6101828,20.9583938 62.2010811,22.087825 60.0186564,25.1730039 L56.3305431,21.7866873 C59.642399,17.4962986 63.4056319,16.2924067 69.4270682,16.2924067 C79.3613179,16.2924067 84.253323,20.5814775 84.253323,28.6344402 L84.253323,53.7738378 L78.8348211,53.7738378 L78.8348211,53.7738378 Z"></path>
|
|
8
|
+
<path d="M105.477931,54.2252149 C96.1452973,54.2252149 89.0702085,47.9026409 89.0702085,35.2588108 C89.0702085,22.6143218 96.1452973,16.2924067 105.477931,16.2924067 C110.595954,16.2924067 113.832031,17.646538 117.670384,21.7866873 L113.982929,25.2481236 C111.198229,22.1622857 109.015145,21.1092921 105.477931,21.1092921 C101.864937,21.1092921 98.8548777,22.5385431 96.8978121,25.3239022 C95.1667645,27.7323449 94.4893694,30.5928237 94.4893694,35.2588108 C94.4893694,39.9247979 95.1667645,42.7852767 96.8978121,45.1937194 C98.8548777,47.9784196 101.864937,49.4083295 105.477931,49.4083295 C109.015145,49.4083295 111.198229,48.2795573 113.982929,45.1937194 L117.670384,48.7315933 C113.832031,52.8697658 110.595954,54.2252149 105.477931,54.2252149"></path>
|
|
9
|
+
<path d="M147.33739,53.7738378 L135.595655,34.8067748 L128.370327,43.0857555 L128.370327,53.7738378 L122.951166,53.7738378 L122.951166,0.184504505 L128.370327,0.184504505 L128.370327,36.0106667 L145.079187,16.7431248 L151.853138,16.7431248 L139.283768,30.8926435 L154.034903,53.7738378 L147.33739,53.7738378"></path>
|
|
10
|
+
<path d="M175.893416,26.1923912 C174.82329,25.1222651 173.396015,24.551619 171.541745,24.551619 C169.686816,24.551619 168.332026,25.1222651 167.2619,26.1923912 C165.335145,28.1178275 165.121647,31.327547 165.121647,35.1803964 C165.121647,39.0319279 165.335145,42.3134723 167.2619,44.2382497 C168.332026,45.3083758 169.686816,45.8796808 171.541745,45.8796808 C173.396015,45.8796808 174.82329,45.3083758 175.893416,44.2382497 C177.818193,42.3134723 178.033009,39.0319279 178.033009,35.1803964 C178.033009,31.327547 177.818193,28.1178275 175.893416,26.1923912 L175.893416,26.1923912 Z M183.097658,49.6600463 C180.814414,52.0856216 177.034049,54.2252149 171.541745,54.2252149 C166.049441,54.2252149 162.340242,52.0856216 160.057658,49.6600463 C156.704947,46.1650039 155.848978,41.9556654 155.848978,35.1803964 C155.848978,28.4749755 156.704947,24.266296 160.057658,20.7705946 C162.340242,18.3456782 166.049441,16.205426 171.541745,16.205426 C177.034049,16.205426 180.814414,18.3456782 183.097658,20.7705946 C186.449709,24.266296 187.306337,28.4749755 187.306337,35.1803964 C187.306337,41.9556654 186.449709,46.1650039 183.097658,49.6600463 L183.097658,49.6600463 Z"></path>
|
|
11
|
+
<path d="M208.14678,53.7969009 L200.870713,53.7969009 L187.175207,16.63374 L196.947356,16.63374 L204.508746,39.602574 L211.998311,16.63374 L221.770461,16.63374 L208.14678,53.7969009"></path>
|
|
12
|
+
<path d="M243.752196,27.7613385 C242.753894,25.5499202 240.684808,23.9098069 237.545596,23.9098069 C234.407701,23.9098069 232.338615,25.5499202 231.340973,27.7613385 C230.769668,29.1167876 230.554852,30.1144299 230.484345,31.755861 L244.608165,31.755861 C244.53634,30.1144299 244.322842,29.1167876 243.752196,27.7613385 L243.752196,27.7613385 Z M230.484345,38.1041338 C230.484345,42.8834595 233.408741,46.3785019 238.615722,46.3785019 C242.682069,46.3785019 244.679331,45.2378687 247.03374,42.8834595 L252.669035,48.3757632 C248.88801,52.1561287 245.249977,54.2252149 238.545215,54.2252149 C229.770708,54.2252149 221.354008,50.2313514 221.354008,35.1803964 C221.354008,23.0531789 227.916438,16.205426 237.545596,16.205426 C247.88905,16.205426 253.738502,23.766816 253.738502,33.9672793 L253.738502,38.1041338 L230.484345,38.1041338 L230.484345,38.1041338 Z"></path>
|
|
13
|
+
<path d="M278.544474,26.7623784 C277.117199,25.3357632 275.9054,24.551619 273.622816,24.551619 C270.769586,24.551619 267.630373,26.6912124 267.630373,31.3993719 L267.630373,53.7969009 L258.357045,53.7969009 L258.357045,16.63374 L267.416875,16.63374 L267.416875,20.1999485 C269.19932,18.0596963 272.766847,16.205426 276.76071,16.205426 C280.398744,16.205426 282.966651,17.1325611 285.535218,19.7011274 L278.544474,26.7623784"></path>
|
|
14
|
+
<path d="M323.320422,53.7969009 C315.687866,53.7969009 312.478147,48.4475882 312.478147,43.1687825 L312.478147,1.42727413 L321.751475,1.42727413 L321.751475,42.5974775 C321.751475,44.8095547 322.67861,45.9501879 325.031701,45.9501879 L328.59791,45.9501879 L328.59791,53.7969009 L323.320422,53.7969009 L323.320422,53.7969009 Z M301.220736,23.7108057 L301.220736,53.7969009 L291.947408,53.7969009 L291.947408,23.7108057 L288.095876,23.7108057 L288.095876,16.6495547 L291.947408,16.6495547 L291.947408,12.0119022 C291.947408,6.73441441 295.228293,1.38444273 302.789683,1.38444273 L308.068489,1.38444273 L308.068489,9.23049678 L304.501622,9.23049678 C302.290862,9.23049678 301.220736,10.442955 301.220736,12.5832072 L301.220736,16.6495547 L308.068489,16.6495547 L308.068489,23.7108057 L301.220736,23.7108057 L301.220736,23.7108057 Z"></path>
|
|
15
|
+
<path d="M349.972757,26.1923912 C348.90329,25.1222651 347.476015,24.551619 345.621086,24.551619 C343.766816,24.551619 342.411367,25.1222651 341.341241,26.1923912 C339.415145,28.1178275 339.201647,31.327547 339.201647,35.1803964 C339.201647,39.0319279 339.415145,42.3134723 341.341241,44.2382497 C342.411367,45.3083758 343.766816,45.8796808 345.621086,45.8796808 C347.476015,45.8796808 348.90329,45.3083758 349.972757,44.2382497 C351.898193,42.3134723 352.113009,39.0319279 352.113009,35.1803964 C352.113009,31.327547 351.898193,28.1178275 349.972757,26.1923912 L349.972757,26.1923912 Z M357.176999,49.6600463 C354.894414,52.0856216 351.11339,54.2252149 345.621086,54.2252149 C340.128782,54.2252149 336.420242,52.0856216 334.137658,49.6600463 C330.784947,46.1650039 329.928319,41.9556654 329.928319,35.1803964 C329.928319,28.4749755 330.784947,24.266296 334.137658,20.7705946 C336.420242,18.3456782 340.128782,16.205426 345.621086,16.205426 C351.11339,16.205426 354.894414,18.3456782 357.176999,20.7705946 C360.529709,24.266296 361.386337,28.4749755 361.386337,35.1803964 C361.386337,41.9556654 360.529709,46.1650039 357.176999,49.6600463 L357.176999,49.6600463 Z"></path>
|
|
16
|
+
<path d="M403.00001,53.7969009 L395.368113,53.7969009 L387.593225,30.4722368 L379.818337,53.7969009 L372.185781,53.7969009 L360.77286,16.63374 L370.616834,16.63374 L376.607959,39.602574 L384.170008,16.63374 L390.945277,16.63374 L398.577833,39.602574 L404.570275,16.63374 L414.342425,16.63374 L403.00001,53.7969009"></path>
|
|
17
|
+
</g>
|
|
18
|
+
<g>
|
|
19
|
+
<path d="M63.2771377,73.1751454 L19.8520257,62.642574 L21.9586718,53.9576834 L65.3837838,64.4895959 L63.2771377,73.1751454" fill="#B58F52"></path>
|
|
20
|
+
<path d="M66.1883552,62.784906 L26.397982,42.4525097 L30.4643295,34.494435 L70.2547027,54.8268314 L66.1883552,62.784906" fill="#C78431"></path>
|
|
21
|
+
<path d="M72.3171995,52.021704 L38.6668726,22.622888 L44.5459768,15.8930862 L78.1969627,45.2912432 L72.3171995,52.021704" fill="#E9812C"></path>
|
|
22
|
+
<path d="M81.574713,42.5605766 L56.4814414,5.58785071 L63.8761184,0.569328185 L88.96939,37.5420541 L81.574713,42.5605766" fill="#E5712A"></path>
|
|
23
|
+
<path d="M62.5819511,84.0378481 L17.9641493,81.6017297 L18.4511094,72.6776422 L63.0689112,75.1144196 L62.5819511,84.0378481" fill="#9D8469"></path>
|
|
24
|
+
<path d="M71.8328752,105.058842 L71.8328752,68.0353771 L80.7615753,68.0353771 L80.7681647,113.997426 L0,113.997426 L0.00197683398,67.9964994 L8.9385843,67.9964994 L8.9385843,105.058842 L71.8328752,105.058842" fill="#797B7B"></path>
|
|
25
|
+
<path d="M17.8402677,87.2205508 L62.8277375,87.2205508 L62.8277375,96.1571583 L17.8402677,96.1571583 L17.8402677,87.2205508 Z" fill="#797B7B"></path>
|
|
26
|
+
</g>
|
|
27
|
+
</g>
|
|
28
|
+
</svg>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 200.4 66.5" style="enable-background:new 0 0 200.4 66.5;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.stripe-original-0{fill:#6772E5;}
|
|
7
|
+
</style>
|
|
8
|
+
<g id="Stripe">
|
|
9
|
+
<path class="stripe-original-0" d="M179.6,34.2c0-11.3-5.5-20.3-16-20.3c-10.5,0-16.9,8.9-16.9,20.2c0,13.3,7.5,20,18.3,20
|
|
10
|
+
c5.3,0,9.2-1.2,12.2-2.9v-8.8c-3,1.5-6.5,2.4-10.8,2.4c-4.3,0-8.1-1.5-8.6-6.7h21.6C179.5,37.6,179.6,35.3,179.6,34.2z M157.7,30
|
|
11
|
+
c0-5,3.1-7.1,5.8-7.1c2.7,0,5.6,2.1,5.6,7.1H157.7z"/>
|
|
12
|
+
<path class="stripe-original-0" d="M129.6,14c-4.3,0-7.1,2-8.7,3.4l-0.6-2.7h-9.7v51.6l11.1-2.3l0-12.5c1.6,1.1,3.9,2.8,7.8,2.8
|
|
13
|
+
c7.9,0,15.1-6.4,15.1-20.4C144.7,21,137.4,14,129.6,14z M127,44.4c-2.6,0-4.2-0.9-5.2-2.1l0-16.4c1.1-1.3,2.7-2.2,5.3-2.2
|
|
14
|
+
c4,0,6.8,4.5,6.8,10.3C133.8,40,131,44.4,127,44.4z"/>
|
|
15
|
+
<polygon class="stripe-original-0" points="95.4,11.4 106.5,9 106.5,0 95.4,2.3 "/>
|
|
16
|
+
<rect x="95.4" y="14.7" class="stripe-original-0" width="11.1" height="38.7"/>
|
|
17
|
+
<path class="stripe-original-0" d="M83.5,18l-0.7-3.3h-9.6v38.7h11.1V27.2c2.6-3.4,7-2.8,8.4-2.3V14.7C91.3,14.2,86.2,13.2,83.5,18z"/>
|
|
18
|
+
<path class="stripe-original-0" d="M61.4,5.1L50.6,7.4l0,35.4c0,6.5,4.9,11.4,11.5,11.4c3.6,0,6.3-0.7,7.7-1.5v-9c-1.4,0.6-8.4,2.6-8.4-3.9V24.1
|
|
19
|
+
h8.4v-9.4h-8.4L61.4,5.1z"/>
|
|
20
|
+
<path class="stripe-original-0" d="M31.5,26c0-1.7,1.4-2.4,3.8-2.4c3.4,0,7.6,1,11,2.8V16c-3.7-1.5-7.3-2-11-2c-9,0-14.9,4.7-14.9,12.5
|
|
21
|
+
c0,12.2,16.8,10.3,16.8,15.5c0,2-1.8,2.7-4.2,2.7c-3.7,0-8.4-1.5-12.1-3.5v10.5c4.1,1.8,8.3,2.5,12.1,2.5c9.2,0,15.5-4.6,15.5-12.5
|
|
22
|
+
C48.4,28.6,31.5,30.9,31.5,26z"/>
|
|
23
|
+
</g>
|
|
24
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="512px" height="150px" viewBox="0 0 512 150" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
|
|
3
|
+
<title>TikTok</title>
|
|
4
|
+
<g>
|
|
5
|
+
<path d="M97.844224,53.853184 C107.476992,60.735488 119.277568,64.784896 132.022784,64.784896 L132.022784,40.271872 C129.610752,40.272384 127.204864,40.020992 124.845056,39.52128 L124.845056,58.816512 C112.100864,58.816512 100.301824,54.767104 90.666496,47.885312 L90.666496,97.909248 C90.666496,122.93376 70.369792,143.218688 45.334016,143.218688 C35.992576,143.218688 27.31008,140.396032 20.097536,135.555072 C28.329472,143.967744 39.809536,149.18656 52.510208,149.18656 C77.54752,149.18656 97.845248,128.901632 97.845248,103.876096 L97.845248,53.853184 L97.844224,53.853184 Z M106.698752,29.12256 C101.775872,23.747072 98.543616,16.800256 97.844224,9.120256 L97.844224,5.96736 L91.042304,5.96736 C92.754432,15.72864 98.594304,24.068096 106.698752,29.12256 L106.698752,29.12256 Z M35.932672,116.352 C33.182208,112.74752 31.695872,108.338176 31.702528,103.804416 C31.702528,92.359168 40.986112,83.079168 52.439552,83.079168 C54.57408,83.078656 56.695808,83.405312 58.729984,84.050432 L58.729984,58.989568 C56.352768,58.663936 53.953536,58.525696 51.555328,58.576384 L51.555328,78.08256 C49.519616,77.43744 47.396864,77.10976 45.261824,77.111808 C33.808384,77.111808 24.525312,86.390784 24.525312,97.837568 C24.525312,105.931264 29.165568,112.938496 35.932672,116.352 Z" fill="#FF004F"></path>
|
|
6
|
+
<path d="M90.666496,47.8848 C100.301824,54.766592 112.100864,58.816 124.845056,58.816 L124.845056,39.520768 C117.731328,38.006272 111.433728,34.290688 106.698752,29.12256 C98.593792,24.067584 92.754432,15.728128 91.042304,5.96736 L73.175552,5.96736 L73.175552,103.875072 C73.135104,115.289088 63.867392,124.5312 52.438528,124.5312 C45.70368,124.5312 39.720448,121.322496 35.931136,116.352 C29.164544,112.938496 24.524288,105.930752 24.524288,97.83808 C24.524288,86.39232 33.80736,77.11232 45.2608,77.11232 C47.455232,77.11232 49.570304,77.453824 51.554304,78.083072 L51.554304,58.576896 C26.958336,59.0848 7.177216,79.171584 7.177216,103.875584 C7.177216,116.207616 12.103168,127.387136 20.098048,135.555584 C27.310592,140.396032 35.993088,143.2192 45.334528,143.2192 C70.370816,143.2192 90.667008,122.933248 90.667008,97.909248 L90.667008,47.8848 L90.666496,47.8848 Z" fill="#000000"></path>
|
|
7
|
+
<path d="M124.845056,39.520768 L124.845056,34.303488 C118.430208,34.313216 112.141312,32.517632 106.698752,29.122048 C111.516672,34.394112 117.860864,38.029312 124.845056,39.520768 Z M91.042304,5.96736 C90.878976,5.034496 90.753536,4.095488 90.666496,3.152896 L90.666496,0 L65.997312,0 L65.997312,97.908736 C65.957888,109.321216 56.690688,118.563328 45.2608,118.563328 C41.905152,118.563328 38.736896,117.767168 35.931136,116.352512 C39.720448,121.322496 45.70368,124.530688 52.438528,124.530688 C63.866368,124.530688 73.135616,115.2896 73.175552,103.875584 L73.175552,5.96736 L91.042304,5.96736 Z M51.555328,58.576896 L51.555328,53.02272 C49.494016,52.74112 47.415808,52.599808 45.33504,52.6008265 C20.296704,52.6008265 0,72.886272 0,97.908736 C0,113.596416 7.97696,127.421952 20.09856,135.55456 C12.10368,127.386624 7.177728,116.206592 7.177728,103.875072 C7.177728,79.171584 26.958336,59.0848 51.555328,58.576896 Z" fill="#00F2EA"></path>
|
|
8
|
+
<path d="M410.688512,122.705408 C428.60288,122.705408 443.12576,108.299776 443.12576,90.531328 C443.12576,72.763392 428.60288,58.3552 410.688512,58.3552 L405.801472,58.3552 C423.716352,58.3552 438.239232,72.76288 438.239232,90.531328 C438.239232,108.299776 423.716352,122.705408 405.801472,122.705408 L410.688512,122.705408 Z" fill="#FF004F"></path>
|
|
9
|
+
<path d="M405.358592,58.3552 L400.472064,58.3552 C382.558208,58.3552 368.032768,72.76288 368.032768,90.531328 C368.032768,108.299776 382.558208,122.705408 400.472064,122.705408 L405.358592,122.705408 C387.442176,122.705408 372.919296,108.299776 372.919296,90.531328 C372.918784,72.763392 387.442176,58.3552 405.358592,58.3552 Z" fill="#00F2EA"></path>
|
|
10
|
+
<path d="M266.725376,43.812864 L266.725376,80.390656 L285.38368,61.88032 L308.043776,61.88032 L284.493312,84.801536 L310.711296,122.704896 L290.717696,122.704896 L272.502272,96.69888 L266.725376,101.992448 L266.725376,122.264576 L248.061952,122.264576 L248.061952,43.812864 L266.725376,43.812864 Z M468.00896,43.812864 L468.00896,80.390656 L486.672384,61.88032 L509.331456,61.88032 L485.782016,84.801536 L512,122.704896 L492.00384,122.704896 L473.783296,96.69888 L468.00896,101.992448 L468.00896,122.264576 L449.342976,122.264576 L449.342976,43.812864 L468.00896,43.812864 Z M405.799936,58.3552 C423.713792,58.3552 438.239232,72.763392 438.239232,90.531328 C438.239232,108.299776 423.713792,122.705408 405.799936,122.705408 L405.799936,122.705408 L405.357056,122.705408 C387.442176,122.705408 372.919296,108.299776 372.919296,90.531328 C372.919296,72.76288 387.442176,58.3552 405.357056,58.3552 L405.357056,58.3552 Z M217.84832,43.812864 L212.516352,60.56192 L196.965888,60.56192 L196.965888,122.265088 L177.854976,122.265088 L177.854976,60.1216 L158.751744,60.1216 L158.751744,43.812864 L217.84832,43.812864 Z M374.25408,43.812864 L368.922624,60.56192 L353.372672,60.56192 L353.372672,122.265088 L334.26176,122.265088 L334.26176,60.1216 L315.158528,60.1216 L315.158528,43.812864 L374.25408,43.812864 Z M240.062464,68.936192 L240.062464,122.265088 L221.406208,122.265088 L221.406208,68.936192 L240.062464,68.936192 Z M405.582336,74.887168 C396.869632,74.887168 389.804032,81.888256 389.804032,90.531328 C389.804032,99.1744 396.869632,106.178048 405.582336,106.179584 C414.288896,106.179584 421.353984,99.1744 421.353984,90.531328 C421.353984,81.888256 414.288896,74.887168 405.582336,74.887168 Z M230.729728,43.812864 C235.887104,43.812864 240.062464,47.957504 240.062464,53.067776 C240.062464,58.17856 235.889664,62.3232 230.729728,62.3232 C225.57696,62.32064 221.406208,58.17856 221.406208,53.067776 C221.406208,47.957504 225.57696,43.812864 230.729728,43.812864 Z" fill="#000000"></path>
|
|
11
|
+
</g>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg width="512px" height="108px" viewBox="0 0 512 108" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
|
|
3
|
+
<g>
|
|
4
|
+
<path d="M46.7969671,88.1498256 C38.39648,88.3674264 36.7708742,82.3733478 36.6995596,78.0195037 L36.6995596,47.8296816 L56.2781439,47.8296816 L56.2781439,30.3320191 L36.7781885,30.3320191 L36.7781885,4.32598335 L21.403505,4.32598335 C21.1511613,4.32598335 20.710474,4.54358413 20.6483023,5.0939861 C19.7468134,13.1031576 15.9159426,27.1612649 0,32.7768278 L0,47.8296816 L12.1161576,47.8296816 L12.1161576,79.6103665 C12.1161576,91.1011504 19.2823546,107.424866 42.1395791,107.040864 C49.8525209,106.912864 58.4212372,103.751253 60.3174726,101.024843 L55.2687688,86.3779335 C53.3158476,87.2849082 49.5855485,88.078511 46.7969671,88.1498256 L46.7969671,88.1498256 Z M140.526216,86.2883332 L140.526216,30.3338477 L106.143465,30.3338477 L106.143465,46.7636206 L112.768403,46.7654492 C114.948068,46.7654492 115.864185,47.6925382 115.893442,49.7240883 L115.858699,75.2473795 C115.858699,77.7488741 114.053893,87.1441077 101.528134,87.3818228 C92.9923321,87.5445663 91.1966686,82.5104912 91.1966686,75.9093247 L91.1966686,30.3338477 L65.8781781,30.3338477 L65.8781781,77.2112722 C65.8781781,89.0732575 71.2944261,107.733896 96.5708592,107.050007 C104.868946,106.823264 114.375723,102.650449 119.31654,96.5301984 L119.52317,105.954689 L147.736299,105.954689 L147.736299,89.8814889 C147.736299,89.8814889 145.454234,89.7041168 143.746342,89.590745 C141.751363,89.460916 140.526216,88.3875407 140.526216,86.2883332 L140.526216,86.2883332 Z M287.260455,86.1310755 C287.260455,86.1310755 287.262283,67.4612946 287.262283,63.191565 C287.262283,55.0141644 287.16354,46.5661342 281.752778,39.6705667 C276.797331,33.3583156 268.572388,28.7283562 256.086857,29.3299584 C247.796085,29.7304169 238.951253,33.5832307 234.06895,40.1825686 L233.299119,41.1535435 L232.831003,40.5903414 C227.811556,33.3418584 219.796899,28.7283562 207.313198,29.3299584 C199.018768,29.7304169 190.173936,33.5832307 185.291633,40.1825686 L184.558373,30.3301905 L153.964436,30.3301905 L153.964436,46.7636206 L161.004461,46.8678496 C163.182297,46.8678496 164.102072,47.7949386 164.131329,49.8264887 L164.133158,81.9856893 L164.133158,86.1310755 C164.133158,88.230283 162.898867,89.37863 160.905718,89.508459 C159.197826,89.6218308 155.738156,89.8686889 155.738156,89.8686889 L155.738156,105.941889 L197.111561,105.954689 L197.111561,89.8686889 C197.111561,89.8686889 193.851207,89.638288 191.944,89.508459 C189.949021,89.3731442 188.718388,88.230283 188.718388,86.1310755 C188.718388,86.1310755 188.751303,65.6034593 188.751303,61.4946447 C188.751303,57.3876586 192.148801,48.9633999 202.933753,48.9633999 C211.634127,48.9633999 213.416991,54.266276 213.416991,60.435898 C213.416991,66.6055201 213.426134,86.1329041 213.426134,86.1329041 C213.426134,88.2339402 212.193672,89.37863 210.200522,89.5102876 C208.49263,89.625488 205.032961,89.872346 205.032961,89.872346 L205.032961,105.941889 L246.36248,105.941889 L246.36248,89.8686889 C246.36248,89.8686889 243.102125,89.638288 241.19309,89.508459 C239.19994,89.3731442 237.985764,88.230283 237.985764,86.1310755 L237.923593,86.1310755 C237.923593,86.1310755 237.958336,65.6034593 237.958336,61.4946447 C237.958336,57.3876586 240.988289,48.9633999 251.775071,48.9633999 C260.473616,48.9633999 262.651452,54.266276 262.651452,60.435898 L262.651452,81.9856893 L262.647795,86.1329041 C262.647795,88.2339402 261.413505,89.37863 259.420355,89.5102876 C257.710635,89.625488 254.252794,89.872346 254.252794,89.872346 L254.252794,105.941889 L295.633513,105.941889 L295.633513,89.8686889 C295.633513,89.8686889 292.374987,89.638288 290.46778,89.508459 C288.470973,89.3731442 287.260455,88.230283 287.260455,86.1310755 L287.260455,86.1310755 Z M341.836192,88.3381691 C338.396637,88.5923414 332.0277,88.0126822 327.931685,80.8245423 L327.931685,70.2955904 L327.935343,70.2901047 L327.931685,70.2901047 L327.931685,58.113604 C327.931685,52.8491281 332.793874,48.2301402 340.318473,47.9503677 C347.938157,47.6687667 354.681952,52.8692424 354.681952,67.5600378 C354.681952,87.3763371 345.990721,88.030968 341.836192,88.3381691 L341.836192,88.3381691 Z M345.582949,29.2495009 C339.327383,29.5237876 332.726217,31.9173962 327.931685,36.0847253 L327.931685,0.987 L319.074054,0.987 C319.074054,0.987 304.591716,6.13261838 293.378876,7.507709 L293.013161,23.5790807 L300.102558,23.5882236 C302.278565,23.5882236 303.214797,24.5153126 303.242226,26.5486913 L303.242226,105.887032 L323.499212,105.865089 L326.392023,99.3553513 C327.011911,99.7027811 336.304744,108.437898 351.145483,106.689778 C369.829892,104.486341 379.642042,89.6931454 379.642042,67.2491795 C379.642042,55.474966 376.028772,27.9182962 345.582949,29.2495009 L345.582949,29.2495009 Z M501.26259,43.8397245 C500.437902,25.9105176 476.159872,25.0858289 463.467712,37.1965007 L461.152733,30.2533902 L431.805885,30.2533902 L431.805885,46.6849918 L437.95905,46.6758489 C440.138715,46.6758489 440.946946,47.6011093 440.976203,49.6326594 L440.976203,86.0670753 C440.976203,88.1662828 439.738256,89.3146297 437.745106,89.4426302 C436.035386,89.556002 432.595831,89.8028601 432.595831,89.8028601 L432.595831,105.87606 L473.916207,105.87606 L473.916207,89.8028601 C473.916207,89.8028601 470.498595,89.556002 468.792531,89.4426302 C466.795724,89.3146297 465.559606,88.1662828 465.559606,86.0670753 L465.550463,61.3629871 C465.550463,56.7330277 466.611038,49.0054572 474.782953,47.0287644 C475.792328,54.7563349 483.256583,57.0640003 486.89911,57.0640003 C496.095029,57.0640003 501.26259,50.1775757 501.26259,43.8397245 L501.26259,43.8397245 Z M416.052686,86.0670753 L416.074629,0.987 L407.125568,0.987 C407.125568,0.987 392.257401,6.36484778 381.54742,7.507709 L381.54742,23.5790807 L388.307673,23.5790807 C390.48368,23.5790807 391.394312,24.5061697 391.423569,26.5377198 L391.423569,86.0670753 C391.423569,88.1662828 390.192936,89.3146297 388.197958,89.4426302 C386.490066,89.556002 382.662852,89.8046886 382.662852,89.8046886 L382.662852,105.87606 L424.81706,105.87606 L424.81706,89.8046886 C424.81706,89.8046886 420.986189,89.556002 419.280126,89.4426302 C417.283319,89.3146297 416.052686,88.1662828 416.052686,86.0670753 L416.052686,86.0670753 Z M497.183033,77.8128744 C488.998318,77.8128744 482.367894,84.3098119 482.367894,92.3208119 C482.367894,100.326326 488.998318,106.825092 497.183033,106.825092 C505.369576,106.825092 512,100.326326 512,92.3208119 C512,84.3098119 505.369576,77.8128744 497.183033,77.8128744 L497.183033,77.8128744 Z" fill="#303D4D"></path>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 200.4 66.5" style="enable-background:new 0 0 200.4 66.5;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.uber-original-0{fill:#000203;}
|
|
7
|
+
</style>
|
|
8
|
+
<g id="Page-1">
|
|
9
|
+
<g id="Group">
|
|
10
|
+
<path id="Fill-1" class="uber-original-0" d="M31.5,13.4v23.1c0,7.7-3.4,10.9-11.4,10.9c-8,0-11.4-3.2-11.4-10.9V12.4H1c-0.7,0-1,0.3-1,1v23.4
|
|
11
|
+
c0,12.9,8.2,17.4,20.1,17.4c11.9,0,20.1-4.5,20.1-17.4V12.4h-7.7C31.9,12.4,31.5,12.8,31.5,13.4"/>
|
|
12
|
+
<path id="Fill-2" class="uber-original-0" d="M143.2,19.1c0.6,0,0.9-0.2,1.1-0.7l2.2-5.5c0.1-0.3,0-0.5-0.3-0.5h-31c-2.9,0-4,0.9-4,2.9v35.8
|
|
13
|
+
c0,1.7,0.8,2.4,3.1,2.4h28.9c0.6,0,0.9-0.2,1.1-0.7l2.2-5.5c0.1-0.3,0-0.5-0.3-0.5h-26.5v-7.3c0-2.5,1.4-3.7,5.1-3.7h11.5
|
|
14
|
+
c0.6,0,0.9-0.2,1.1-0.7l2.1-5.3c0.1-0.3,0-0.5-0.3-0.5h-19.6V19.1H143.2"/>
|
|
15
|
+
<path id="Fill-3" class="uber-original-0" d="M80.5,46.9H65.3v-7.5c0-2.5,1.4-3.7,5.1-3.7h10.1c4.8,0,6.2,1.9,6.2,5.6
|
|
16
|
+
C86.7,45.2,85.3,46.9,80.5,46.9z M65.3,19h13.6c4.5,0,5.8,1.7,5.8,5.3c0,3.5-1.3,5.3-5.8,5.3H65.3V19z M88.6,31.9
|
|
17
|
+
c3.4-1.8,4.8-5.1,4.8-9c0-9.1-7.4-10.4-15.1-10.4H60.8c-2.9,0-4,0.9-4,2.9v35.8c0,1.7,0.8,2.4,3.1,2.4h21.5
|
|
18
|
+
c8.1,0,13.9-3.2,13.9-11.4C95.3,37.3,93.2,33.1,88.6,31.9L88.6,31.9z"/>
|
|
19
|
+
<path id="Fill-4" class="uber-original-0" d="M184.2,31.5h-14.3V19h14.3c5.3,0,6.5,2.1,6.5,6.2C190.8,29.5,189.6,31.5,184.2,31.5z M200.3,52.8
|
|
20
|
+
L191.1,37c4.6-1.2,8.3-4.2,8.3-11.9c0-10-6.2-12.7-16.4-12.7h-17.6c-2.9,0-4,0.9-4,2.9v37.2c0,0.7,0.3,1,1,1h7.5v-12
|
|
21
|
+
c0-2.5,1.4-3.7,5.1-3.7h7.6l8.3,15c0.3,0.4,0.5,0.7,1.1,0.7h7.8C200.5,53.6,200.5,53.1,200.3,52.8L200.3,52.8z"/>
|
|
22
|
+
</g>
|
|
23
|
+
</g>
|
|
24
|
+
</svg>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 23.0.3, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 200.4 66.5" style="enable-background:new 0 0 200.4 66.5;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.weebly-original-0{fill:#0099D6;}
|
|
7
|
+
</style>
|
|
8
|
+
<g id="layer1" transform="translate(-55.605517,-332.37293)">
|
|
9
|
+
<path id="path11537" class="weebly-original-0" d="M157.7,357.2c-3.6,0-6.1,2.8-6.5,6.3h13C163.8,359.9,161.6,357.2,157.7,357.2L157.7,357.2z
|
|
10
|
+
M189.6,357.9c-4.4,0-6.4,4.1-6.4,8.1c0,3.9,1.9,8.5,6.4,8.5c4.3,0,6.4-4.4,6.4-8.2C195.9,362.4,193.9,357.9,189.6,357.9z
|
|
11
|
+
M125.7,357.2c-3.6,0-6.1,2.8-6.5,6.3h13C131.8,359.9,129.6,357.2,125.7,357.2z M241.9,345.6c-4.1,0-7.4,2.3-8.9,6.2l-1,2.7l-1-2.7
|
|
12
|
+
c-1.4-3.8-4.8-6.3-8.9-6.3c-0.5,0-1,0.1-1.6,0.2v-3.7c0-5.6-4-9.7-9.3-9.7s-9.3,4.2-9.3,9.7v7.1c-3.1-2.6-6.9-3.9-11-3.9
|
|
13
|
+
c-0.9,0-1.8,0.1-2.7,0.2v-3.4c0-5.6-3.9-9.7-9.1-9.7c-5.2,0-9.1,4.2-9.1,9.7v7.8c-3.5-3-7.8-4.7-12.6-4.7c-5.6,0-10.7,2.3-14.4,6.5
|
|
14
|
+
c-0.6,0.6-1.1,1.4-1.6,2.2c-0.5-0.7-1-1.4-1.6-2.1c-3.8-4.3-9-6.6-14.5-6.6c-4.2,0-8.1,1.3-11.3,3.7c-1.6-2.3-4.3-3.7-7.6-3.7
|
|
15
|
+
c-4.2,0-7.8,2.9-8.9,7.1c-2-6.4-7-7.1-9.1-7.1s-7.1,0.7-9.1,7.1c-1.1-4.2-4.6-7.1-8.9-7.1c-5.2,0-9.4,3.7-9.4,8.5
|
|
16
|
+
c0,2.1,0.5,3.8,1.1,5.6l7.1,20.1c2.4,6.7,7.2,7.6,9.9,7.6c4.2,0,7.5-2.2,9.2-6c1.7,3.8,5,6,9.2,6c2.7,0,7.5-1,9.9-7.7l0.8-2.3
|
|
17
|
+
c3.5,6.2,9.9,10,17.7,10c5.7,0,13.2-2.4,16.7-6.9c3.7,4.3,9.2,6.9,15.6,6.9c4.3,0,9.8-1.4,13.6-4.1c1.6,2.3,4.3,3.7,7.4,3.7
|
|
18
|
+
c1.8,0,3.5-0.4,4.8-1.2c2.1,1,4.3,1.6,6.7,1.6c4.7,0,9-1.7,12.3-5c1.5,3.1,4.5,5,8.2,5c3.9,0,7.2-2.4,8.5-5.8c0,0-1.4,7.5-1.4,8.9
|
|
19
|
+
c0,4.9,4.1,8.7,9.4,8.7c3.8,0,7-2.4,8.6-6.5l13.7-34c0.5-1.2,0.8-2.6,0.8-4.1C250.9,349.1,246.2,345.6,241.9,345.6L241.9,345.6z
|
|
20
|
+
M109.6,357.6l-7.1,20.1c-0.9,2.4-2.3,4.2-5,4.2c-2.5,0-4.1-1.4-4.8-3.8l-4.3-13.4h-0.1L84,378.1c-0.8,2.4-2.3,3.8-4.8,3.8
|
|
21
|
+
c-2.8,0-4.2-1.8-5-4.2l-7.1-20c-0.6-1.7-0.9-2.8-0.9-3.9c0-1.9,1.7-3.4,4.2-3.4c2.1,0,3.5,1.3,3.9,3.3l4.8,16h0.1l4.9-15.6
|
|
22
|
+
c0.6-2.3,1.8-3.7,4.2-3.7c2.4,0,3.6,1.4,4.2,3.7l4.9,15.6h0.1l4.8-16c0.4-2,1.9-3.3,3.9-3.3c2.4,0,4.2,1.5,4.2,4.1
|
|
23
|
+
C110.4,355.4,109.9,356.3,109.6,357.6z M126.6,375c4.2,0,7.1-3.4,9.3-3.4c1.7,0,3.4,1.7,3.4,3.5c0,3.5-7.3,6.9-13.4,6.9
|
|
24
|
+
c-9.3,0-15.3-6.7-15.3-15.7c0-8.3,6.1-15.8,14.7-15.8c8.9,0,14.7,8.1,14.7,14.9c0,2.4-1.1,3.7-3.6,3.7h-17.5
|
|
25
|
+
C119.5,373.1,122.8,375,126.6,375z M168.6,369.1h-17.5c0.5,4,3.9,5.8,7.7,5.8c4.2,0,7.1-3.4,9.3-3.4c1.7,0,3.4,1.7,3.4,3.5
|
|
26
|
+
c0,3.5-7.3,6.9-13.4,6.9c-9.3,0-15.3-6.7-15.3-15.7c0-8.3,6.1-15.8,14.7-15.8c8.9,0,14.7,8.1,14.7,14.9
|
|
27
|
+
C172.2,367.9,171,369.1,168.6,369.1L168.6,369.1z M190.7,382c-2.8,0-6-1.2-7.5-3.7c-0.5,2.2-1.8,3.4-4.1,3.4
|
|
28
|
+
c-2.4,0-4.1-1.8-4.1-4.5v-35c0-2.8,1.6-4.5,4-4.5c2.4,0,4,1.8,4,4.5v11.1c2.3-1.9,5-2.9,7.8-2.9c8.8,0,13.3,8.2,13.3,16.2
|
|
29
|
+
C204.2,374.3,198.9,382,190.7,382L190.7,382z M215.4,377.4c0,2.8-1.7,4.5-4.1,4.5c-2.4,0-4.1-1.8-4.1-4.5v-35.4
|
|
30
|
+
c0-2.8,1.7-4.5,4.1-4.5s4.1,1.8,4.1,4.5V377.4z M245.4,356.4l-13.6,34.1c-0.6,1.7-1.9,3.2-3.8,3.2c-2.8,0-4.3-1.7-4.3-3.5
|
|
31
|
+
c0-0.8,0.2-1.6,0.5-2.4l3.6-8.9l-9-22.6c-0.2-0.6-0.4-1.2-0.4-2.1c0-2.1,2.2-3.5,3.8-3.5c2,0,3.4,1.1,4.1,2.9l5.6,15.4l6.1-15.4
|
|
32
|
+
c0.6-1.8,2.1-2.9,4.1-2.9c1.7,0,3.8,1.5,3.8,3.5C245.8,355.2,245.7,355.7,245.4,356.4z"/>
|
|
33
|
+
</g>
|
|
34
|
+
</svg>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="512px" height="119px" viewBox="0 0 512 119" version="1.1" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid">
|
|
3
|
+
<title>WhatsApp</title>
|
|
4
|
+
<defs>
|
|
5
|
+
<linearGradient x1="49.9999726%" y1="100.000225%" x2="49.9999726%" y2="4.85578831e-05%" id="whatsappLinearGradient-1">
|
|
6
|
+
<stop stop-color="#1FAF38" offset="0%"></stop>
|
|
7
|
+
<stop stop-color="#60D669" offset="100%"></stop>
|
|
8
|
+
</linearGradient>
|
|
9
|
+
<linearGradient x1="50.0000414%" y1="100.000108%" x2="50.0000414%" y2="-0.000129944756%" id="whatsappLinearGradient-2">
|
|
10
|
+
<stop stop-color="#F9F9F9" offset="0%"></stop>
|
|
11
|
+
<stop stop-color="#FFFFFF" offset="100%"></stop>
|
|
12
|
+
</linearGradient>
|
|
13
|
+
</defs>
|
|
14
|
+
<g>
|
|
15
|
+
<path d="M500.136794,72.0669772 C499.818507,73.6715496 499.270313,75.0718929 498.496392,76.2745757 C497.718888,77.4778557 496.703714,78.4572002 495.447883,79.200666 C494.195039,79.9501034 492.631074,80.3263151 490.761362,80.3263151 C488.943603,80.3263151 487.393969,79.9501034 486.112461,79.200666 C484.828564,78.4572002 483.802044,77.4778557 483.02454,76.2745757 C482.254202,75.0718929 481.690482,73.6715496 481.341739,72.0669772 C480.994789,70.4659878 480.822209,68.8333488 480.822209,67.1816007 C480.822209,65.4653592 480.985831,63.8094309 481.304118,62.2096358 C481.624197,60.6056606 482.173585,59.1903883 482.946909,57.9548616 C483.72083,56.7288895 484.737796,55.72745 485.993029,54.9541261 C487.244679,54.1790108 488.808644,53.7866758 490.681342,53.7866758 C492.497309,53.7866758 494.032014,54.1790108 495.286053,54.9541261 C496.544869,55.72745 497.570195,56.7396384 498.373376,57.9972601 C499.17835,59.2542846 499.752222,60.6856802 500.097978,62.2866758 C500.449109,63.891242 500.6193,65.5226866 500.6193,67.1816007 C500.6193,68.8333488 500.456872,70.4659878 500.136794,72.0669772 L500.136794,72.0669772 Z M510.87674,59.0393065 C510.127899,56.3431233 508.980155,53.9765731 507.429327,51.9450304 C505.879694,49.9152791 503.932948,48.2832373 501.581327,47.0560709 C499.228511,45.8247243 496.421256,45.2132311 493.16195,45.2132311 C490.600725,45.2132311 488.24791,45.7184296 486.112461,46.7342009 C483.974623,47.7505695 482.211206,49.3808198 480.822209,51.6255491 L480.665753,51.6255491 L480.665753,46.3323114 L469.843996,46.3323114 L469.843996,102.292296 L481.222307,102.292296 L481.222307,82.6516611 L481.383541,82.6516611 C482.772538,84.6843982 484.552676,86.2185055 486.713802,87.2575662 C488.876123,88.2996126 491.243271,88.8239202 493.808676,88.8239202 C496.851212,88.8239202 499.50858,88.2315362 501.78257,87.0587115 C504.049992,85.8846924 505.950756,84.3057979 507.470532,82.3274025 C508.996876,80.3490072 510.127899,78.0803914 510.87674,75.5149865 C511.628566,72.9483873 512,70.2766877 512,67.4980962 C512,64.5588683 511.628566,61.7408642 510.87674,59.0393065 L510.87674,59.0393065 Z M454.780005,72.0669772 C454.456344,73.6715496 453.906955,75.0718929 453.134826,76.2745757 C452.360308,77.4778557 451.343939,78.4572002 450.084526,79.200666 C448.832876,79.9501034 447.267716,80.3263151 445.399198,80.3263151 C443.580245,80.3263151 442.03718,79.9501034 440.754478,79.200666 C439.469984,78.4572002 438.442866,77.4778557 437.667154,76.2745757 C436.892039,75.0718929 436.331901,73.6715496 435.983756,72.0669772 C435.635014,70.4659878 435.46542,68.8333488 435.46542,67.1816007 C435.46542,65.4653592 435.621279,63.8094309 435.941358,62.2096358 C436.266214,60.6056606 436.810228,59.1903883 437.587732,57.9548616 C438.357472,56.7288895 439.375632,55.72745 440.635046,54.9541261 C441.888487,54.1790108 443.447078,53.7866758 445.320373,53.7866758 C447.134549,53.7866758 448.67642,54.1790108 449.92807,54.9541261 C451.183303,55.72745 452.2146,56.7396384 453.014199,57.9972601 C453.813798,59.2542846 454.38767,60.6856802 454.736412,62.2866758 C455.085752,63.891242 455.254748,65.5226866 455.254748,67.1816007 C455.254748,68.8333488 455.098889,70.4659878 454.780005,72.0669772 L454.780005,72.0669772 Z M462.069553,51.9450304 C460.522308,49.9152791 458.570188,48.2832373 456.218567,47.0560709 C453.866348,45.8247243 451.06387,45.2132311 447.806356,45.2132311 C445.238562,45.2132311 442.889329,45.7184296 440.754478,46.7342009 C438.611266,47.7505695 436.853223,49.3808198 435.46542,51.6255491 L435.301798,51.6255491 L435.301798,46.3323114 L424.479444,46.3323114 L424.479444,102.292296 L435.86731,102.292296 L435.86731,82.6516611 L436.021377,82.6516611 C437.40918,84.6843982 439.190512,86.2185055 441.355819,87.2575662 C443.514557,88.2996126 445.88051,88.8239202 448.445915,88.8239202 C451.493229,88.8239202 454.149403,88.2315362 456.419213,87.0587115 C458.690217,85.8846924 460.587399,84.3057979 462.11016,82.3274025 C463.634713,80.3490072 464.765139,78.0803914 465.518757,75.5149865 C466.261028,72.9483873 466.639628,70.2766877 466.639628,67.4980962 C466.639628,64.5588683 466.261028,61.7408642 465.518757,59.0393065 C464.765139,56.3431233 463.619187,53.9765731 462.069553,51.9450304 L462.069553,51.9450304 Z M387.217774,65.6546593 L394.670944,44.6495109 L394.829789,44.6495109 L402.044094,65.6546593 L387.217774,65.6546593 Z M388.418068,30.540381 L366.781123,87.7794851 L379.443928,87.7794851 L383.929207,75.0324802 L405.330273,75.0324802 L409.654318,87.7794851 L422.720804,87.7794851 L401.324515,30.540381 L388.418068,30.540381 Z M365.817305,69.6227961 C365.069659,68.3138185 364.08076,67.2180276 362.852399,66.3336317 C361.624038,65.4546103 360.21832,64.7445855 358.645397,64.2077375 C357.0671,63.6762639 355.451779,63.2254072 353.794059,62.8497927 C352.192473,62.4741783 350.618953,62.1266304 349.069319,61.8053576 C347.519685,61.4828905 346.14084,61.1228023 344.938157,60.7244957 C343.737266,60.3226061 342.765684,59.8048673 342.016844,59.1581416 C341.266212,58.5185819 340.895972,57.6915135 340.895972,56.6745478 C340.895972,55.8194128 341.104382,55.138649 341.534338,54.6298675 C341.9631,54.1246691 342.484421,53.7359171 343.098303,53.4660002 C343.713977,53.2008606 344.39056,53.028281 345.140595,52.9452755 C345.888241,52.8664502 346.585128,52.8288291 347.224091,52.8288291 C349.255633,52.8288291 351.019051,53.2151924 352.517925,53.9897106 C354.009634,54.764826 354.840286,56.2481746 354.997936,58.4379651 L365.817305,58.4379651 C365.603521,55.8743517 364.950226,53.7508461 363.853838,52.0626711 C362.760436,50.3816621 361.382188,49.0314804 359.727454,48.0175006 C358.073914,47.0017292 356.189273,46.2815527 354.075322,45.8527909 C351.964954,45.4246262 349.789496,45.2132311 347.548946,45.2132311 C345.301231,45.2132311 343.109052,45.4138773 340.977186,45.8103924 C338.835766,46.2134763 336.912907,46.9109607 335.205622,47.8974711 C333.493561,48.8857731 332.12009,50.2329689 331.075655,51.9450304 C330.032414,53.6547031 329.51169,55.8486737 329.51169,58.5185819 C329.51169,60.3357437 329.889095,61.8752255 330.637936,63.1298614 C331.379013,64.387483 332.372689,65.4253494 333.59687,66.2548064 C334.829411,67.0830691 336.23274,67.7536812 337.808051,68.2576854 C339.38396,68.7706469 341.000476,69.2083661 342.654015,69.5839806 C346.718892,70.4403099 349.885638,71.292459 352.154254,72.1505798 C354.425259,73.0039233 355.560462,74.2860286 355.560462,75.99809 C355.560462,77.0132642 355.322195,77.8504843 354.840286,78.5199021 C354.357779,79.1917086 353.758229,79.722585 353.037456,80.1238774 C352.311905,80.5263641 351.509917,80.8219589 350.632687,81.0046903 C349.75068,81.1933933 348.906891,81.2877447 348.106098,81.2877447 C346.984032,81.2877447 345.902573,81.1533834 344.863512,80.8864523 C343.819077,80.6189241 342.897657,80.203897 342.096864,79.6425654 C341.29607,79.0824281 340.637999,78.3622516 340.131606,77.4778557 C339.627602,76.5952513 339.368434,75.5442474 339.368434,74.3117065 L328.55026,74.3117065 C328.65954,77.0908952 329.285365,79.4037009 330.43729,81.2465406 C331.580853,83.0905747 333.049273,84.5721318 334.842548,85.6965865 C336.631644,86.8168611 338.677518,87.6206402 340.977186,88.1031466 C343.270883,88.5826671 345.622504,88.8239202 348.023092,88.8239202 C350.375311,88.8239202 352.686325,88.5946103 354.959121,88.1443507 C357.229528,87.6887166 359.246739,86.8998665 361.010156,85.7754118 C362.777156,84.6551373 364.200192,83.1723858 365.298969,81.3271574 C366.391177,79.4807347 366.938176,77.1965927 366.938176,74.4705514 C366.938176,72.5435119 366.564951,70.9317736 365.817305,69.6227961 L365.817305,69.6227961 Z M318.775924,33.9083707 L307.393432,33.9083707 L307.393432,46.3323114 L300.503983,46.3323114 L300.503983,53.9473122 L307.393432,53.9473122 L307.393432,78.3998727 C307.393432,80.4869514 307.744563,82.1685576 308.436673,83.4500658 C309.132366,84.7309767 310.079464,85.7258475 311.280355,86.4185545 C312.483038,87.1136503 313.87323,87.5794361 315.449735,87.8200921 C317.021464,88.0589566 318.698293,88.1801804 320.45753,88.1801804 C321.583776,88.1801804 322.729132,88.1515166 323.906734,88.1031466 C325.079558,88.0482077 326.147283,87.9443016 327.111101,87.7794851 L327.111101,78.96001 C326.57485,79.0686934 326.014713,79.152296 325.425315,79.200666 C324.8395,79.2550077 324.224423,79.2836714 323.583072,79.2836714 C321.661407,79.2836714 320.37751,78.96001 319.734965,78.319256 C319.097197,77.6796962 318.775924,76.3963966 318.775924,74.4705514 L318.775924,53.9473122 L327.111101,53.9473122 L327.111101,46.3323114 L318.775924,46.3323114 L318.775924,33.9083707 Z M286.157183,71.7433158 C286.157183,72.3900415 286.092092,73.2445793 285.956536,74.3117065 C285.823967,75.383611 285.462684,76.4352121 284.875675,77.4778557 C284.287471,78.5199021 283.376203,79.4186299 282.150828,80.16329 C280.922467,80.9139218 279.185922,81.2877447 276.939401,81.2877447 C276.033507,81.2877447 275.150306,81.2077251 274.295768,81.0441029 C273.439439,80.8864523 272.693584,80.6033979 272.052233,80.203897 C271.412076,79.8032018 270.902697,79.2550077 270.528277,78.559912 C270.156843,77.8654134 269.967543,77.0132642 269.967543,75.9980962 C269.967543,74.9297685 270.156843,74.0423868 270.528277,73.350874 C270.902697,72.6593612 271.397744,72.0825034 272.013417,71.6268694 C272.624911,71.1730268 273.347476,70.8129385 274.175739,70.5430216 C275.003404,70.2766877 275.84361,70.0635011 276.701134,69.9028647 C277.607027,69.7458113 278.517698,69.607867 279.423592,69.5015723 C280.335457,69.3970691 281.202535,69.259722 282.029007,69.1020714 C282.859658,68.9420322 283.631788,68.7389974 284.35495,68.4983414 C285.076321,68.2576854 285.675273,67.9280523 286.157183,67.4980962 L286.157183,71.7433158 Z M297.536688,78.559912 L297.536688,56.9970149 C297.536688,54.4811744 296.978342,52.465755 295.852693,50.9447852 C294.733016,49.4202324 293.289677,48.2324786 291.528648,47.3767465 C289.762843,46.5222087 287.811319,45.9465452 285.675273,45.653339 C283.539228,45.3595357 281.427665,45.2132311 279.345364,45.2132311 C277.049279,45.2132311 274.762748,45.4383609 272.495327,45.893995 C270.218948,46.3478376 268.179642,47.1110097 266.361883,48.1775398 C264.544721,49.2464585 263.044652,50.6647166 261.876007,52.4263424 C260.696614,54.1897597 260.029585,56.4082139 259.870143,59.0811078 L271.249051,59.0811078 C271.462835,56.8351842 272.214064,55.2306118 273.496766,54.2697793 C274.778274,53.3071553 276.539303,52.8288291 278.785824,52.8288291 C279.799206,52.8288291 280.746304,52.8957111 281.630103,53.028281 C282.509721,53.1632394 283.285434,53.4265875 283.954255,53.8296714 C284.623075,54.2303666 285.156937,54.7899068 285.555841,55.5136662 C285.956536,56.2344399 286.157183,57.211993 286.157183,58.4379651 C286.21033,59.6173586 285.861588,60.507129 285.116928,61.1228023 C284.366296,61.7408642 283.352913,62.2096358 282.070211,62.5261313 C280.787508,62.8497927 279.317894,63.0910459 277.660772,63.2463078 C276.003649,63.40993 274.322043,63.6278939 272.614162,63.891242 C270.902697,64.1593674 269.205565,64.5194557 267.526348,64.9738954 C265.843547,65.4253494 264.342881,66.1102934 263.035695,67.0149927 C261.725523,67.9280523 260.657798,69.1420812 259.827147,70.6660368 C259.000676,72.1899925 258.58744,74.1289752 258.58744,76.4776105 C258.58744,78.6148508 258.947528,80.4582877 259.668899,82.0067269 C260.389673,83.5611378 261.391112,84.8390629 262.675009,85.8554315 C263.958309,86.8712028 265.453004,87.6206402 267.162676,88.1031466 C268.86996,88.5826671 270.714592,88.8239202 272.693584,88.8239202 C275.257795,88.8239202 277.770052,88.4483058 280.223788,87.7036456 C282.682898,86.9500281 284.822527,85.6452307 286.639092,83.7719357 C286.692239,84.4664343 286.785396,85.150184 286.917369,85.816616 C287.051133,86.4818536 287.226101,87.1405225 287.439885,87.7794851 L298.981819,87.7794851 C298.447956,86.9291275 298.071148,85.6452307 297.859752,83.9319749 C297.642983,82.2228993 297.536688,80.4355956 297.536688,78.559912 L297.536688,78.559912 Z M250.652361,49.8991558 C249.532086,48.4289447 247.994993,47.2817978 246.04765,46.4511465 C244.094933,45.6270639 241.597007,45.2132311 238.553276,45.2132311 C236.415439,45.2132311 234.225648,45.7590366 231.979127,46.856619 C229.73619,47.9494242 227.892155,49.7014954 226.450608,52.1080554 L226.209952,52.1080554 L226.209952,30.540381 L214.829252,30.540381 L214.829252,87.7794851 L226.209952,87.7794851 L226.209952,66.0541602 C226.209952,61.832827 226.903854,58.8016363 228.294045,56.9546164 C229.681848,55.112971 231.92598,54.1897597 235.026441,54.1897597 C237.750094,54.1897597 239.647275,55.0311599 240.716194,56.7169462 C241.785113,58.3985524 242.318975,60.9520141 242.318975,64.3707625 L242.318975,87.7794851 L253.700272,87.7794851 L253.700272,62.2866696 C253.700272,59.7230562 253.470962,57.3857669 253.018314,55.2706216 C252.563874,53.1632394 251.775621,51.3711584 250.652361,49.8991558 L250.652361,49.8991558 Z M190.545688,69.9834815 L190.387441,69.9834815 L180.610119,30.540381 L168.828724,30.540381 L158.889571,69.5015723 L158.730129,69.5015723 L149.673581,30.540381 L137.09199,30.540381 L152.238986,87.7794851 L164.983005,87.7794851 L174.517879,48.8176967 L174.678516,48.8176967 L184.375818,87.7794851 L196.878584,87.7794851 L212.266833,30.540381 L199.925301,30.540381 L190.545688,69.9834815 Z" fill="#FFFFFF"></path>
|
|
16
|
+
<path d="M2.51703484,58.7212584 C2.51404904,68.7081838 5.12364388,78.4598277 10.085457,87.0547702 L10.085457,87.0547702 L2.04229162,116.421968 L32.0956279,108.541828 C40.3752692,113.054576 49.6981513,115.436652 59.1858499,115.439041 L59.1858499,115.439041 L59.2109307,115.439041 C90.4544094,115.439041 115.887509,90.0148987 115.900651,58.7660455 L115.900651,58.7660455 C115.906618,43.6232295 110.015025,29.3845157 99.3109085,18.6720393 L99.3109085,18.6720393 C88.6085839,7.96016001 74.3746473,2.05781781 59.208542,2.05124904 L59.208542,2.05124904 C27.9614803,2.05124904 2.53017239,27.4735995 2.51703484,58.7212584" fill="url(#whatsappLinearGradient-1)"></path>
|
|
17
|
+
<path d="M0.493255227,58.7027464 C0.489672259,69.0491629 3.19302142,79.149549 8.33159433,88.0520295 L8.33159433,88.0520295 L3.39446894e-14,118.472023 L31.1312124,110.309425 C39.7088372,114.986392 49.3661296,117.452071 59.193613,117.455654 L59.193613,117.455654 L59.2186938,117.455654 C91.5830443,117.455654 117.9298,91.1172585 117.943539,58.7499221 L117.943539,58.7499221 C117.94891,43.0630922 111.845324,28.3126111 100.759025,17.21616 L100.759025,17.21616 C89.6709338,6.12090323 74.9276187,0.0065687742 59.2186938,0 L59.2186938,0 C26.8483717,0 0.506392775,26.3342158 0.493255227,58.7027464 L0.493255227,58.7027464 Z M19.0321275,86.5191165 L17.8700516,84.6738881 C12.9834808,76.9042226 10.4043412,67.9259025 10.4079204,58.7063294 L10.4079204,58.7063294 C10.418673,31.8030189 32.3135918,9.91526608 59.2372058,9.91526608 L59.2372058,9.91526608 C72.2750282,9.92064053 84.5287779,15.0030803 93.7447681,24.2250421 L93.7447681,24.2250421 C102.960758,33.4476011 108.031852,45.7073224 108.028271,58.7463392 L108.028271,58.7463392 C108.016326,85.6502468 86.1208099,107.540985 59.2186938,107.540985 L59.2186938,107.540985 L59.1995846,107.540985 C50.4398256,107.536208 41.8490633,105.18399 34.3564806,100.738721 L34.3564806,100.738721 L32.5733569,99.6811485 L14.0995752,104.524724 L19.0321275,86.5191165 Z" fill="url(#whatsappLinearGradient-2)"></path>
|
|
18
|
+
<path d="M44.5413052,34.1614477 C43.4419313,31.7178637 42.2852299,31.6688965 41.2396005,31.6259008 C40.3838683,31.589474 39.405121,31.5918305 38.427568,31.5918305 C37.4488206,31.5918305 35.8591772,31.959714 34.5149672,33.4275365 C33.1695628,34.8959561 29.3787829,38.4454828 29.3787829,45.6645656 C29.3787829,52.8842456 34.6373852,59.8602839 35.3701021,60.8402255 C36.1040134,61.8183757 45.5212469,77.1068991 60.4353502,82.9883407 C72.8306271,87.8761058 75.3530364,86.9039272 78.043248,86.6590911 C80.7334596,86.4148521 86.7247789,83.1107587 87.947168,79.6842472 C89.1701543,76.2583329 89.1701543,73.3214937 88.8034973,72.708209 C88.4368403,72.0967159 87.4580929,71.7294617 85.9908676,70.9961476 C84.5230452,70.2622364 77.3093368,66.7121125 75.9645296,66.2224402 C74.6191252,65.7333652 73.640975,65.4891262 72.6622276,66.958143 C71.6840774,68.4253683 68.8738364,71.7294617 68.0175071,72.708209 C67.161775,73.6887479 66.3054457,73.8111659 64.8382204,73.0772547 C63.3703979,72.3409548 58.6444635,70.7931128 53.0383133,65.7948728 C48.67605,61.9055613 45.7314477,57.102593 44.8751184,55.6335762 C44.0193863,54.1663509 44.7837527,53.3715293 45.5194554,52.6400067 C46.1787215,51.9825321 46.9872779,50.9267509 47.7211891,50.0704216 C48.4533089,49.2134952 48.6975478,48.602002 49.1866229,47.6232547 C49.6762952,46.6439102 49.4314591,45.7869837 49.064802,45.0530725 C48.6975478,44.3191612 45.8461027,37.0630544 44.5413052,34.1614477" fill="#FFFFFF"></path>
|
|
19
|
+
</g>
|
|
20
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="512px" height="116px" viewBox="0 0 512 116" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
|
|
3
|
+
<g>
|
|
4
|
+
<g>
|
|
5
|
+
<path d="M159.889142,17.9305215 C157.980727,10.8778981 152.47152,5.36869078 145.418897,3.46027607 C132.731218,0 81.6659313,0 81.6659313,0 C81.6659313,0 30.600645,0.104856851 17.9129661,3.56513292 C10.8603427,5.47354763 5.35113537,10.9827549 3.44272066,18.0353783 C-0.395040075,40.5796012 -1.88400735,74.9307055 3.54757751,96.5731595 C5.45599222,103.625783 10.9651995,109.13499 18.0178229,111.043405 C30.7055018,114.503681 81.7707881,114.503681 81.7707881,114.503681 C81.7707881,114.503681 132.836074,114.503681 145.523753,111.043405 C152.576377,109.13499 158.085584,103.625783 159.993999,96.5731595 C164.041473,73.9974796 165.28927,39.6673466 159.889142,17.9305215 Z" fill="#FF0000"></path>
|
|
6
|
+
<polygon fill="#FFFFFF" points="65.4131194 81.7883436 107.775287 57.2518405 65.4131194 32.7153374"></polygon>
|
|
7
|
+
</g>
|
|
8
|
+
<path d="M491.23679,33.2396217 C496.794203,33.2396217 500.988477,34.2881902 503.924469,36.2804703 C506.860461,38.2727505 508.957598,41.418456 510.21588,45.7175869 C511.474162,50.0167178 511.998447,55.8887014 511.998447,63.4383947 L511.998447,75.7066462 L485.050236,75.7066462 L485.050236,79.4814928 L485.469663,89.8623211 C485.784234,92.1691718 486.308518,93.8468814 487.147373,94.8954499 C487.986228,95.9440184 489.349367,96.4683027 491.131933,96.4683027 C493.543641,96.4683027 495.221351,95.524591 496.060205,93.6371677 C497.003917,91.7497444 497.423344,88.6040389 497.528201,84.304908 L511.474162,85.1437628 C511.579019,85.7729039 511.579019,86.6117587 511.579019,87.6603272 C511.579019,94.2663088 509.796453,99.1945808 506.126463,102.445143 C502.456473,105.695706 497.423344,107.373415 490.817363,107.373415 C482.848242,107.373415 477.290829,104.856851 474.145124,99.9285787 C470.999418,95.0003067 469.321708,87.2408998 469.321708,76.8600716 L469.321708,64.1723926 C469.678222,46.346728 472.813442,33.2920501 491.23679,33.2396217 Z M297.356473,34.6027607 L297.356473,87.1360429 C297.356473,90.2817485 297.671044,92.5885992 298.405042,93.9517382 C299.894009,96.8667587 303.752741,96.1222751 305.849878,94.6857362 C307.060626,93.8673257 308.03656,92.7468087 308.681013,91.4351738 L308.681013,34.6027607 L324.724111,34.6027607 L324.724111,106.21999 L312.141289,106.21999 L310.77815,97.4120143 L310.46358,97.4120143 C307.003303,104.017996 301.865318,107.373415 295.049623,107.373415 C284.559219,107.346677 281.993214,99.7894861 281.382173,92.1137327 L281.34221,91.5718144 C281.262321,90.3976499 281.224876,89.2247914 281.208518,88.0797546 L281.208518,34.6027607 L297.356473,34.6027607 Z M380.088528,34.6027607 L380.088528,87.1360429 C380.088528,90.2817485 380.403099,92.5885992 381.137097,93.9517382 C382.626064,96.8667587 386.484796,96.1222751 388.581933,94.6857362 C389.792681,93.8673257 390.768615,92.7468087 391.413068,91.4351738 L391.413068,34.6027607 L407.456166,34.6027607 L407.456166,106.21999 L394.873344,106.21999 L393.510205,97.4120143 L393.195635,97.4120143 C389.735359,104.017996 384.597373,107.373415 377.781678,107.373415 C367.291274,107.346677 364.72527,99.7894861 364.114228,92.1137327 L364.074265,91.5718144 C363.994377,90.3976499 363.956931,89.2247914 363.940573,88.0797546 L363.940573,34.6027607 L380.088528,34.6027607 Z M250.800032,33.2396217 C256.042874,33.2396217 260.342005,34.2881902 263.48771,36.490184 C266.633416,38.6921779 269.045124,42.0475971 270.513119,46.6612986 C271.981115,51.275 272.715113,57.4615542 272.715113,65.1161043 L272.715113,75.4969325 C272.715113,83.1514826 271.981115,89.23318 270.513119,93.8468814 C269.045124,98.4605828 266.738273,101.816002 263.48771,104.017996 C260.237148,106.115133 255.83316,107.268558 250.380604,107.268558 C244.718334,107.373415 240.314346,106.21999 237.063784,104.122853 C233.813222,101.920859 231.506371,98.5654397 230.143232,93.9517382 C228.780093,89.3380368 228.150952,83.2563395 228.150952,75.6017894 L228.150952,65.2209611 C228.150952,57.566411 228.88495,51.275 230.457802,46.6612986 C232.030655,41.9427403 234.442363,38.5873211 237.797782,36.490184 C241.153201,34.393047 245.452332,33.2396217 250.800032,33.2396217 Z M432.621811,4.50884458 L432.621811,42.2573108 L432.726667,42.2573108 C434.194663,39.5310327 436.082087,37.3290389 438.703508,35.6513292 C441.151777,34.0047112 444.036719,33.1282731 446.987199,33.1347648 C450.866903,33.1347648 453.802894,34.1833333 456.004888,36.1756135 C458.206882,38.2727505 459.779735,41.5233129 460.723447,46.0321575 C461.637667,50.4001007 462.158265,56.4409407 462.18991,64.059347 L462.191443,64.8015337 L462.191443,76.1260736 C462.191443,86.7166155 460.828303,94.5808793 458.311739,99.6140082 C455.690318,104.647137 451.705757,107.163701 446.253201,107.163701 C443.212353,107.163701 440.486074,106.429703 437.96951,105.066564 C435.742056,103.768558 433.897942,101.908197 432.619841,99.6750483 L432.412097,99.2994376 L432.097526,99.2994376 L430.419817,106.115133 L417.102997,106.115133 L417.102997,4.50884458 L432.621811,4.50884458 Z M368.449418,8.17883436 L368.449418,21.1810838 L352.511177,21.1810838 L352.511177,106.21999 L336.782649,106.21999 L336.782649,21.1810838 L320.739551,21.1810838 L320.739551,8.17883436 L368.449418,8.17883436 Z M195.540471,8.17883436 L195.549368,8.21831506 C195.702992,8.90029808 197.823461,18.3253965 200.15457,29.3057636 L200.33901,30.1757348 C200.431417,30.6122051 200.52408,31.0508039 200.616892,31.4910893 L200.80268,32.3737779 C200.833667,32.5212237 200.864663,32.6688243 200.895663,32.8165631 L201.081684,33.7045241 C201.112686,33.8527505 201.143684,34.0010824 201.174675,34.1495034 L201.360496,35.0409685 L201.360496,35.0409685 L201.630891,36.3438432 C203.204721,43.9476033 204.707581,51.573842 205.606729,57.0421268 L206.026156,57.0421268 C206.888169,52.1367136 208.138966,45.8595566 209.473227,39.4509076 L209.822988,37.7769188 C209.998614,36.9392485 210.175209,36.1011759 210.352094,35.2654533 L210.627389,33.9677196 C213.194244,21.8944685 215.74837,10.6155298 216.223526,8.52432128 L216.254224,8.38927119 C216.285747,8.2506583 216.302128,8.17883436 216.302128,8.17883436 L232.345226,8.17883436 L213.785563,74.3435072 L213.785563,106.115133 L197.952179,106.115133 L197.952179,74.448364 L197.847322,74.448364 L179.497373,8.17883436 L195.540471,8.17883436 Z M250.485461,44.3544479 C248.283467,44.3544479 246.815471,45.5078732 245.87176,47.9195808 C244.928048,50.3312883 244.50862,54.0012781 244.50862,59.1392638 L244.50862,81.473773 C244.50862,86.7166155 244.928048,90.596319 245.766903,92.9031697 C246.605757,95.2100204 248.17861,96.3634458 250.485461,96.3634458 C252.687455,96.3634458 254.260308,95.2100204 255.204019,92.9031697 C256.147731,90.596319 256.567158,86.7166155 256.567158,81.473773 L256.567158,59.1392638 C256.567158,54.0012781 256.147731,50.2264315 255.204019,47.9195808 C254.260308,45.5078732 252.687455,44.3544479 250.485461,44.3544479 Z M435.452946,46.4515849 C434.175003,47.6312244 433.265697,49.087342 432.725029,50.906337 L432.621811,51.275 L432.621811,91.9594581 C433.922036,94.1614519 435.767516,95.6294479 439.018079,95.7343047 C440.695788,95.7343047 442.058927,95.1051636 443.107496,93.8468814 C444.156064,92.5885992 444.890062,90.4914622 445.30949,87.5554703 C445.71214,84.7369182 445.921518,80.8553692 445.937624,75.9108235 L445.938631,75.2872188 L445.938631,65.9549591 C445.938631,60.2926892 445.728917,55.9935583 445.414346,52.9527096 C444.994919,49.9118609 444.470635,47.7098671 443.526923,46.4515849 C441.702414,43.8301636 437.759796,43.8616207 435.452946,46.4515849 Z M490.92222,44.0398773 C489.139653,44.1447342 487.881371,44.6690184 487.147373,45.6127301 C486.308518,46.6612986 485.784234,48.2341513 485.469663,50.541002 C485.161384,52.8017157 485.054514,60.7018825 485.050363,61.0169849 L485.050236,66.1646728 L496.794203,66.1646728 L496.793373,61.6248446 L496.793236,61.7122499 C496.787382,63.2993708 496.754477,60.7909373 496.681842,57.7119157 L496.671921,57.2983077 C496.605889,54.5919004 496.509592,51.574591 496.374776,50.541002 C496.060205,48.1292945 495.535921,46.4515849 494.697066,45.5078732 C493.858211,44.5641616 492.599929,44.0398773 490.92222,44.0398773 Z" fill="#282828"></path>
|
|
9
|
+
</g>
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="512px" height="117px" viewBox="0 0 512 117" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
|
|
3
|
+
<title>Zoom</title>
|
|
4
|
+
<g>
|
|
5
|
+
<path d="M107.471744,114.705655 L16.3477088,114.705655 C10.3795212,114.705655 4.55689908,111.503213 1.79115359,106.117287 C-1.41128855,99.8579687 -0.246764136,92.4341255 4.70246463,87.6304623 L68.1690453,24.1638816 L22.6070275,24.1638816 C10.0883901,24.1638816 0.0443669685,13.974293 0.0443669685,1.60122107 L84.0356905,1.60122107 C90.0038781,1.60122107 95.8265002,4.80366322 98.5922457,10.1895886 C101.794688,16.4489074 100.630163,23.8727505 95.6809346,28.6764137 L32.214354,92.1429944 L84.7635182,92.1429944 C97.2821557,92.1429944 107.471744,102.332583 107.471744,114.705655 Z M468.183182,0 C455.082283,0 443.437038,5.67705653 435.285367,14.7021208 C427.133697,5.67705653 415.488452,0 402.387553,0 C378.223671,0 358.426756,20.6703084 358.426756,44.83419 L358.426756,114.705655 C370.945393,114.705655 380.989417,104.516066 380.989417,92.1429944 L380.989417,44.6886245 C380.989417,33.0433803 390.014481,23.1449228 401.659725,22.7082261 C413.887231,22.2715295 423.931254,32.0244214 423.931254,44.1063623 L423.931254,92.1429944 C423.931254,104.661632 434.120843,114.705655 446.493915,114.705655 L446.493915,44.5430589 C446.493915,32.8978148 455.518979,22.9993572 467.164223,22.5626606 C479.39173,22.1259639 489.435753,31.8788559 489.435753,43.9607967 L489.435753,91.9974289 C489.435753,104.516066 499.625341,114.560089 511.999211,114.560089 L511.999211,44.6886245 C512.143979,20.6703084 492.347064,0 468.183182,0 Z M221.595137,58.2262208 C221.595137,90.3962078 195.538903,116.452442 163.368916,116.452442 C131.198929,116.452442 105.142696,90.3962078 105.142696,58.2262208 C105.142696,26.0562338 131.198929,0 163.368916,0 C195.538903,0 221.595137,26.0562338 221.595137,58.2262208 Z M199.032477,58.2262208 C199.032477,38.5748713 183.020266,22.5626606 163.368916,22.5626606 C143.717567,22.5626606 127.705356,38.5748713 127.705356,58.2262208 C127.705356,77.8775703 143.717567,93.889781 163.368916,93.889781 C183.020266,93.889781 199.032477,77.8775703 199.032477,58.2262208 Z M347.072643,58.2262208 C347.072643,90.3962078 321.016409,116.452442 288.846422,116.452442 C256.676435,116.452442 230.620201,90.3962078 230.620201,58.2262208 C230.620201,26.0562338 256.676435,0 288.846422,0 C321.016409,0 347.072643,26.0562338 347.072643,58.2262208 Z M324.509982,58.2262208 C324.509982,38.5748713 308.497772,22.5626606 288.846422,22.5626606 C269.195073,22.5626606 253.182862,38.5748713 253.182862,58.2262208 C253.182862,77.8775703 269.195073,93.889781 288.846422,93.889781 C308.497772,93.889781 324.509982,77.8775703 324.509982,58.2262208 Z" fill="#0B5CFF"></path>
|
|
6
|
+
</g>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 200.4 66.5" style="enable-background:new 0 0 200.4 66.5;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.airbnb-white-0{fill:#FFFFFF;}
|
|
7
|
+
</style>
|
|
8
|
+
<path class="airbnb-white-0" d="M105.7,17.9c0,2.3-1.8,4.1-4.1,4.1s-4.1-1.8-4.1-4.1s1.8-4.1,4.1-4.1C104,13.9,105.7,15.7,105.7,17.9z M89,26.1
|
|
9
|
+
c0,0.4,0,1,0,1s-1.9-2.5-6.1-2.5c-6.8,0-12.1,5.2-12.1,12.4c0,7.1,5.3,12.4,12.1,12.4c4.2,0,6.1-2.6,6.1-2.6v1.1
|
|
10
|
+
c0,0.5,0.4,0.9,0.9,0.9h5.1V25.2c0,0-4.6,0-5.1,0C89.3,25.2,89,25.6,89,26.1z M89,41.1c-0.9,1.4-2.8,2.6-5.1,2.6
|
|
11
|
+
c-4,0-7.1-2.5-7.1-6.8s3.1-6.8,7.1-6.8c2.2,0,4.2,1.3,5.1,2.6V41.1z M98.6,25.2h6v23.5h-6V25.2z M188.3,24.6c-4.1,0-6.1,2.5-6.1,2.5
|
|
12
|
+
V13.9h-6v34.8c0,0,4.6,0,5.1,0c0.5,0,0.9-0.4,0.9-0.9v-1.1l0,0c0,0,1.9,2.6,6.1,2.6c6.8,0,12.1-5.3,12.1-12.4
|
|
13
|
+
C200.4,29.8,195.1,24.6,188.3,24.6z M187.3,43.6c-2.3,0-4.1-1.2-5.1-2.6v-8.4c0.9-1.3,2.9-2.6,5.1-2.6c4,0,7.1,2.5,7.1,6.8
|
|
14
|
+
S191.3,43.6,187.3,43.6z M173.1,34.8v14h-6V35.5c0-3.9-1.3-5.4-4.6-5.4c-1.8,0-3.7,0.9-4.9,2.3v16.4h-6V25.2h4.8
|
|
15
|
+
c0.5,0,0.9,0.4,0.9,0.9v1c1.8-1.8,4.1-2.5,6.4-2.5c2.6,0,4.8,0.8,6.6,2.3C172.3,28.6,173.1,30.8,173.1,34.8z M137,24.6
|
|
16
|
+
c-4.1,0-6.1,2.5-6.1,2.5V13.9h-6v34.8c0,0,4.6,0,5.1,0c0.5,0,0.9-0.4,0.9-0.9v-1.1l0,0c0,0,1.9,2.6,6.1,2.6
|
|
17
|
+
c6.8,0,12.1-5.3,12.1-12.4C149.2,29.8,143.9,24.6,137,24.6z M136,43.6c-2.3,0-4.1-1.2-5.1-2.6v-8.4c0.9-1.3,2.9-2.6,5.1-2.6
|
|
18
|
+
c4,0,7.1,2.5,7.1,6.8S140,43.6,136,43.6z M119.8,24.6c1.8,0,2.8,0.3,2.8,0.3v5.6c0,0-5-1.7-8.1,1.9v16.4h-6V25.2c0,0,4.6,0,5.1,0
|
|
19
|
+
c0.5,0,0.9,0.4,0.9,0.9v1C115.5,25.8,117.9,24.6,119.8,24.6z M57.4,46.6c-0.3-0.8-0.6-1.6-0.9-2.3c-0.5-1.1-1-2.2-1.4-3.2L55,41.1
|
|
20
|
+
c-4.3-9.4-8.9-18.9-13.8-28.3L41,12.4c-0.5-0.9-1-1.9-1.5-2.9c-0.6-1.1-1.3-2.3-2.3-3.4c-2-2.5-4.9-3.9-7.9-3.9
|
|
21
|
+
c-3.1,0-5.9,1.4-8,3.8c-0.9,1.1-1.6,2.3-2.3,3.4c-0.5,1-1,2-1.5,2.9l-0.2,0.4C12.5,22.1,7.9,31.6,3.5,41l-0.1,0.1
|
|
22
|
+
c-0.4,1-0.9,2.1-1.4,3.2c-0.3,0.7-0.6,1.4-0.9,2.3C0.3,48.8,0,51,0.3,53.3C1,58,4.2,61.9,8.5,63.7c1.6,0.7,3.3,1,5.1,1
|
|
23
|
+
c0.5,0,1.1-0.1,1.6-0.1c2.1-0.3,4.2-0.9,6.3-2.1c2.6-1.4,5-3.5,7.8-6.5c2.8,3,5.3,5.1,7.8,6.5c2.1,1.2,4.2,1.9,6.3,2.1
|
|
24
|
+
c0.5,0.1,1.1,0.1,1.6,0.1c1.8,0,3.5-0.3,5.1-1c4.4-1.8,7.4-5.8,8.1-10.4C58.5,51.1,58.3,48.9,57.4,46.6z M29.2,49.8
|
|
25
|
+
c-3.4-4.3-5.6-8.3-6.3-11.6c-0.3-1.4-0.4-2.7-0.2-3.8c0.1-1,0.5-1.9,1-2.6c1.2-1.7,3.2-2.8,5.5-2.8s4.4,1,5.5,2.8
|
|
26
|
+
c0.5,0.8,0.9,1.6,1,2.6c0.2,1.1,0.1,2.4-0.2,3.8C34.8,41.5,32.6,45.5,29.2,49.8z M54.2,52.8c-0.4,3.3-2.6,6.1-5.7,7.3
|
|
27
|
+
c-1.5,0.6-3.1,0.8-4.8,0.6c-1.6-0.2-3.1-0.7-4.8-1.6c-2.3-1.3-4.5-3.2-7.1-6.1c4.1-5.1,6.6-9.7,7.6-13.8c0.4-1.9,0.5-3.7,0.3-5.3
|
|
28
|
+
c-0.3-1.6-0.8-3-1.7-4.3c-1.9-2.8-5.2-4.4-8.8-4.4s-6.9,1.7-8.8,4.4c-0.9,1.3-1.4,2.7-1.7,4.3c-0.3,1.6-0.2,3.4,0.3,5.3
|
|
29
|
+
c0.9,4.1,3.5,8.8,7.6,13.9c-2.6,2.9-4.9,4.8-7.1,6.1c-1.6,0.9-3.2,1.4-4.8,1.6C13,61,11.4,60.7,10,60.2c-3.1-1.3-5.3-4.1-5.7-7.3
|
|
30
|
+
c-0.2-1.6-0.1-3.1,0.6-4.9c0.2-0.6,0.5-1.3,0.8-2c0.4-1,0.9-2.1,1.4-3.1l0.1-0.1c4.3-9.3,8.9-18.8,13.8-28.1l0.2-0.4
|
|
31
|
+
c0.5-0.9,1-1.9,1.5-2.9c0.5-1,1.1-1.9,1.8-2.8c1.3-1.5,3.1-2.3,5-2.3s3.7,0.8,5,2.3c0.7,0.8,1.3,1.8,1.8,2.8c0.5,0.9,1,1.9,1.5,2.9
|
|
32
|
+
l0.2,0.4c4.8,9.3,9.4,18.8,13.7,28.1v0.1c0.5,1,0.9,2.1,1.4,3.1c0.3,0.8,0.6,1.4,0.8,2C54.2,49.6,54.4,51.1,54.2,52.8z"/>
|
|
33
|
+
</svg>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 22.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 200.4 66.5" style="enable-background:new 0 0 200.4 66.5;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.alphabet-white-0{fill:#FFFFFF;}
|
|
7
|
+
</style>
|
|
8
|
+
<path class="alphabet-white-0" d="M188.4,39.7V26.4h-4.5v-4.4h4.5v-7.8h4.8v7.8h6.2v4.4h-6.2v13c0,2.9,1.2,4.1,3.4,4.1c0.9,0,1.5-0.1,2.2-0.4
|
|
9
|
+
l1.7,4.1c-1.1,0.5-2.2,0.7-3.8,0.7C191.2,47.9,188.4,44.9,188.4,39.7z M157.6,34.8c0-7.2,5-13.5,12.4-13.5c7.6,0,12.4,5.3,12.4,13.5
|
|
10
|
+
c0,0.4-0.1,0.9-0.1,0.9h-20.1c0.3,5.4,4.1,8.3,8.1,8.3c2.8,0,5.6-1.1,6.9-4.4l4.2,1.8c-1.5,3.6-5.2,6.9-11.1,6.9
|
|
11
|
+
C162.8,48.3,157.6,42.4,157.6,34.8L157.6,34.8z M170,25.6c-3.5,0-6.3,2.4-7.3,6.1h14.7C177.3,29.5,175.4,25.6,170,25.6z M134.3,43.9
|
|
12
|
+
h-0.2v3.5h-4.6V10.4h4.8v11.7l-0.2,3.5h0.2c1.5-2.3,4.6-4.4,8.7-4.4c6.4,0,12.1,5.8,12.1,13.5s-5.6,13.5-12.1,13.5
|
|
13
|
+
C138.9,48.3,135.7,46.3,134.3,43.9z M150.2,34.8c0-5.7-3.8-9.2-8.1-9.2c-4.2,0-8.1,3.4-8.1,9.2s3.8,9.2,8.1,9.2
|
|
14
|
+
C146.4,43.9,150.2,40.5,150.2,34.8z M102.1,39.8c0-5.8,5.2-8.9,11.1-8.9c3.4,0,5.9,1,6.9,1.6v-0.7c0-3.8-3.1-6.2-6.6-6.2
|
|
15
|
+
c-2.6,0-5.2,1.3-6.1,3.7l-4.4-1.9c0.9-2.3,3.9-6.2,10.3-6.2c6.2,0,11.3,3.7,11.3,10.9v15.3h-4.6v-3.5h-0.2c-1.4,2.1-4,4.4-8.3,4.4
|
|
16
|
+
C106.4,48.3,102.1,45.1,102.1,39.8z M120.1,36.5c0,0-2-1.7-6.1-1.7c-5,0-7,2.7-7,5c0,2.7,2.8,4,5.3,4
|
|
17
|
+
C116.1,43.9,120.1,40.7,120.1,36.5z M80.4,22.1l-0.2,3.5h0.2c1.3-2.3,4.6-4.4,8-4.4c6.5,0,9.7,4.4,9.7,10.7v15.5h-4.8V32.6
|
|
18
|
+
c0-5.3-2.6-7-6.3-7c-4.1,0-6.7,3.9-6.7,7.8v14h-4.8V10.4h4.8L80.4,22.1L80.4,22.1z M51.4,43.9h-0.2l0.2,3.5v11.2h-4.8V22.1h4.6v3.5
|
|
19
|
+
h0.2c1.5-2.3,4.6-4.4,8.7-4.4c6.4,0,12.1,5.8,12.1,13.5S66.5,48.3,60,48.3C56,48.3,52.8,46.3,51.4,43.9z M67.3,34.8
|
|
20
|
+
c0-5.7-3.8-9.2-8.1-9.2c-4.2,0-8.1,3.4-8.1,9.2s3.8,9.2,8.1,9.2C63.5,43.9,67.3,40.5,67.3,34.8z M36.8,47.5h4.8V10.4h-4.8
|
|
21
|
+
C36.8,10.4,36.8,47.5,36.8,47.5z M14.7,10.4l-14,37.1h5.3l3.6-10.1h15.6l3.6,10.1H34L20,10.4H14.7z M17.2,16.2h0.2L23.5,33H11.2
|
|
22
|
+
C11.2,33,17.2,16.2,17.2,16.2z"/>
|
|
23
|
+
</svg>
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 22.0.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 200.4 66.5" style="enable-background:new 0 0 200.4 66.5;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.amazon-white-0{fill:#FFFFFF;}
|
|
7
|
+
</style>
|
|
8
|
+
<g>
|
|
9
|
+
<path id="arrow_1_" class="amazon-white-0" d="M120.9,47.6c-12.1,5.1-25.2,7.6-37.1,7.6c-17.7,0-34.8-4.8-48.7-12.9c-1.2-0.7-2.1,0.6-1.1,1.5
|
|
10
|
+
c12.8,11.5,29.8,18.5,48.7,18.5c13.4,0,29-4.3,39.8-12.2C124.2,48.8,122.6,46.8,120.9,47.6z"/>
|
|
11
|
+
<path id="arrow" class="amazon-white-0" d="M114.1,43.1c-0.9,0.7-0.7,1.6,0.3,1.5c3.4-0.4,11.2-1.3,12.6,0.5c1.4,1.8-1.5,9-2.8,12.3
|
|
12
|
+
c-0.4,1,0.5,1.4,1.3,0.7c5.8-4.8,7.3-15,6-16.4C130.3,40,120.2,38.8,114.1,43.1z"/>
|
|
13
|
+
<path id="z" class="amazon-white-0" d="M135.1,30.8c-3.3-1.9-7.2-2.4-10.8-2.3l9.8-14c0.9-1.2,1.4-2,1.4-2.6V8.3c0-0.7-0.5-1-1.1-1h-18.9
|
|
14
|
+
c-0.6,0-1,0.5-1,1v4.2l0,0c0,0.7,0.5,1,1.1,1h9.9l-11.4,16.2c-0.7,1-0.7,2.2-0.7,2.9v4.3c0,0.7,0.7,1.3,1.3,0.9
|
|
15
|
+
c6.4-3.4,14.1-3.1,19.9,0c0.7,0.4,1.4-0.4,1.4-0.9v-4.4C136,31.8,135.8,31.3,135.1,30.8z"/>
|
|
16
|
+
<path id="m" class="amazon-white-0" d="M40.1,38.8h5.8c0.7,0,1.1-0.5,1.1-1V22.2c0-3.4-0.2-8.1,4-8.1c4.1,0,3.5,4.8,3.5,8.1v15.6
|
|
17
|
+
c0,0.6,0.5,1,1,1h5.8c0.7,0,1.1-0.5,1.1-1V22.2c0-1.7-0.1-4.2,0.6-5.7c0.6-1.5,2-2.4,3.4-2.4c1.7,0,3,0.6,3.3,2.5
|
|
18
|
+
c0.3,1.2,0.2,4.3,0.2,5.5v15.6c0,0.6,0.5,1,1,1h5.8c0.7,0,1.1-0.5,1.1-1V19.1c0-3.2,0.4-6.8-1.5-9.2c-1.6-2.2-4.3-3.3-6.6-3.3
|
|
19
|
+
c-3.3,0-6.5,1.8-7.9,5.5c-1.6-3.7-3.8-5.5-7.4-5.5c-3.5,0-6.1,1.8-7.5,5.5h-0.1V8.3c0-0.6-0.5-0.9-1-1h-5.3c-0.7,0-1.1,0.5-1.1,1
|
|
20
|
+
v29.4C39.1,38.3,39.5,38.7,40.1,38.8z"/>
|
|
21
|
+
<path id="o" class="amazon-white-0" d="M151.7,6.7c-8.3,0-12.9,7.2-12.9,16.3s4.6,16.4,12.9,16.4c8,0,13.1-7.2,13.1-16.1
|
|
22
|
+
C164.9,14.1,160.3,6.7,151.7,6.7z M151.7,33.3c-4.5,0-4.5-7.7-4.5-11.3s0.3-9.3,4.5-9.3c1.9,0,3.1,0.8,3.7,2.9
|
|
23
|
+
c0.7,2.3,0.8,5.3,0.8,7.8C156.4,27.2,156.2,33.3,151.7,33.3z"/>
|
|
24
|
+
<path id="n" class="amazon-white-0" d="M184.5,6.7c-4,0-6.2,2-7.8,6h-0.1V8.2c-0.1-0.5-0.6-0.8-1-0.8h-5.3c-0.6,0-1,0.5-1.1,0.9v29.4
|
|
25
|
+
c0,0.6,0.5,1,1,1h5.7c0.7,0,1.1-0.5,1.1-1V21.9c0-2,0.1-3.8,0.9-5.6c0.7-1.4,2-2.3,3.3-2.3c4,0,3.6,4.7,3.6,7.9v16
|
|
26
|
+
c0.1,0.5,0.5,0.9,1,0.9h5.8c0.6,0,1-0.4,1.1-0.9V19.4c0-2.9,0-6.8-1.5-9.1C189.6,7.6,187.1,6.7,184.5,6.7z"/>
|
|
27
|
+
<path id="a_1_" class="amazon-white-0" d="M99.6,18.9c-3.3,0.4-7.6,0.7-10.8,2c-3.6,1.6-6.1,4.7-6.1,9.4c0,6,3.7,8.9,8.6,8.9
|
|
28
|
+
c4.1,0,6.3-0.9,9.5-4.2c1,1.5,1.4,2.2,3.3,3.8c0.5,0.2,0.9,0.2,1.4-0.1l0,0c1.1-1,3.3-2.8,4.4-3.8c0.5-0.4,0.4-1,0-1.5
|
|
29
|
+
c-1-1.5-2.1-2.6-2.1-5.3v-8.9c0-3.8,0.3-7.3-2.5-9.9c-2.1-2.1-5.9-2.9-8.7-2.9c-5.5,0-11.5,2-12.8,8.7c-0.1,0.7,0.4,1.1,0.8,1.2
|
|
30
|
+
L90,17c0.6,0,0.9-0.6,1-1c0.5-2.3,2.4-3.4,4.6-3.4c1.2,0,2.5,0.5,3.3,1.5c0.8,1.2,0.7,2.8,0.7,4.2V18.9L99.6,18.9z M98.4,30.8
|
|
31
|
+
c-0.9,1.6-2.3,2.6-4,2.6c-2.2,0-3.5-1.7-3.5-4.2c0-4.9,4.4-5.8,8.6-5.8v1.2C99.6,27,99.6,28.9,98.4,30.8z"/>
|
|
32
|
+
<path id="a" class="amazon-white-0" d="M34.6,33.4c-1-1.5-2.1-2.6-2.1-5.3v-8.9c0-3.8,0.3-7.3-2.5-9.9c-2.2-2.1-5.9-2.9-8.7-2.9
|
|
33
|
+
c-5.5,0-11.5,2-12.8,8.7c-0.1,0.7,0.4,1.1,0.8,1.2l5.6,0.6c0.6,0,0.9-0.6,1-1c0.5-2.3,2.4-3.4,4.7-3.4c1.2,0,2.5,0.5,3.3,1.5
|
|
34
|
+
c0.8,1.2,0.7,2.8,0.7,4.2v0.7c-3.4,0.4-7.7,0.7-10.9,2c-3.6,1.6-6.1,4.7-6.1,9.4c0,6,3.7,8.9,8.6,8.9c4.1,0,6.3-0.9,9.5-4.2
|
|
35
|
+
c1,1.5,1.4,2.2,3.3,3.8c0.5,0.2,0.9,0.2,1.4-0.1l0,0c1.1-1,3.3-2.8,4.4-3.8C35.1,34.5,35,33.9,34.6,33.4z M23.4,30.8
|
|
36
|
+
c-0.9,1.6-2.3,2.6-4,2.6c-2.2,0-3.4-1.7-3.4-4.2c0-4.9,4.4-5.8,8.6-5.8v1.2C24.4,27,24.5,28.9,23.4,30.8z"/>
|
|
37
|
+
</g>
|
|
38
|
+
</svg>
|