@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,60 @@
|
|
|
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
|
+
.fitbit-original-0{fill:#00B0B9;}
|
|
7
|
+
.fitbit-original-1{fill:#002A3A;}
|
|
8
|
+
</style>
|
|
9
|
+
<g id="blue">
|
|
10
|
+
<g>
|
|
11
|
+
<path class="fitbit-original-0" d="M29,10.9c0,2.1-1.8,3.9-3.9,3.9s-3.9-1.8-3.9-3.9S23,7,25.1,7S29,8.8,29,10.9z M25.1,18
|
|
12
|
+
c-2.3,0-4.1,1.8-4.1,4.1c0,2.3,1.8,4.1,4.1,4.1s4.1-1.8,4.1-4.1C29.2,19.7,27.4,18,25.1,18z M25.1,28.9c-2.3,0-4.2,1.9-4.2,4.2
|
|
13
|
+
c0,2.3,1.9,4.2,4.2,4.2c2.3,0,4.2-1.9,4.2-4.2C29.4,30.9,27.4,28.9,25.1,28.9z M25.1,40.1c-2.3,0-4.1,1.8-4.1,4.1
|
|
14
|
+
c0,2.3,1.8,4.1,4.1,4.1s4.1-1.8,4.1-4.1C29.2,42,27.4,40.1,25.1,40.1z M25.1,51.4c-2.1,0-3.9,1.8-3.9,3.9c0,2.1,1.8,3.9,3.9,3.9
|
|
15
|
+
c2.1,0,3.9-1.8,3.9-3.9C29,53.2,27.2,51.4,25.1,51.4z M35.9,17.4c-2.5,0-4.6,2.1-4.6,4.6c0,2.5,2.1,4.6,4.6,4.6
|
|
16
|
+
c2.5,0,4.6-2.1,4.6-4.6C40.5,19.5,38.4,17.4,35.9,17.4z M35.9,28.4c-2.7,0-4.8,2.1-4.8,4.8c0,2.7,2.1,4.8,4.8,4.8
|
|
17
|
+
c2.7,0,4.8-2.1,4.8-4.8C40.7,30.5,38.6,28.4,35.9,28.4z M35.9,39.5c-2.5,0-4.6,2.1-4.6,4.6c0,2.5,2.1,4.6,4.6,4.6
|
|
18
|
+
c2.5,0,4.6-2.1,4.6-4.6C40.5,41.7,38.4,39.5,35.9,39.5z M47.1,27.9c-2.8,0-5.3,2.3-5.3,5.3c0,2.8,2.3,5.3,5.3,5.3
|
|
19
|
+
c3,0,5.3-2.3,5.3-5.3C52.2,30.2,49.9,27.9,47.1,27.9z M14.2,18.5c-1.9,0-3.5,1.6-3.5,3.5c0,1.9,1.6,3.5,3.5,3.5
|
|
20
|
+
c1.9,0,3.5-1.6,3.5-3.5C17.7,20.1,16.1,18.5,14.2,18.5z M14.2,29.5c-2.1,0-3.7,1.6-3.7,3.7s1.6,3.7,3.7,3.7s3.7-1.6,3.7-3.7
|
|
21
|
+
S16.3,29.5,14.2,29.5z M14.2,40.6c-1.9,0-3.5,1.6-3.5,3.5c0,1.9,1.6,3.5,3.5,3.5c1.9,0,3.5-1.6,3.5-3.5
|
|
22
|
+
C17.7,42.2,16.1,40.6,14.2,40.6z M3.2,30C1.4,30,0,31.4,0,33.2c0,1.8,1.4,3.2,3.2,3.2s3.2-1.4,3.2-3.2C6.4,31.4,5,30,3.2,30z"/>
|
|
23
|
+
</g>
|
|
24
|
+
</g>
|
|
25
|
+
<g id="wordmark">
|
|
26
|
+
<g>
|
|
27
|
+
<path class="fitbit-original-1" d="M92.3,26.3c-0.4,0-0.7,0.4-0.7,0.7v27.8c0,0.4,0.4,0.7,0.7,0.7h3.4c0.4,0,0.7-0.4,0.7-0.7V27
|
|
28
|
+
c0-0.4-0.4-0.7-0.7-0.7L92.3,26.3L92.3,26.3z"/>
|
|
29
|
+
<g>
|
|
30
|
+
<g>
|
|
31
|
+
<path class="fitbit-original-1" d="M94.1,14.6c-1.8,0-3.2,1.4-3.2,3.2s1.4,3.2,3.2,3.2c1.8,0,3.2-1.4,3.2-3.2S95.9,14.6,94.1,14.6z"/>
|
|
32
|
+
</g>
|
|
33
|
+
</g>
|
|
34
|
+
<path class="fitbit-original-1" d="M163.6,26.3c-0.4,0-0.7,0.4-0.7,0.7v27.8c0,0.4,0.4,0.7,0.7,0.7h3.4c0.4,0,0.7-0.4,0.7-0.7V27
|
|
35
|
+
c0-0.4-0.4-0.7-0.7-0.7L163.6,26.3L163.6,26.3z"/>
|
|
36
|
+
<g>
|
|
37
|
+
<g>
|
|
38
|
+
<path class="fitbit-original-1" d="M165.2,14.6c-1.8,0-3.2,1.4-3.2,3.2s1.4,3.2,3.2,3.2s3.2-1.4,3.2-3.2S167,14.6,165.2,14.6z"/>
|
|
39
|
+
</g>
|
|
40
|
+
</g>
|
|
41
|
+
<path class="fitbit-original-1" d="M198.8,52.8c0.2-0.2,0.2-0.4,0.2-0.5l0,0c0-0.2,0-0.2,0-0.2s0-0.2-0.2-0.2c0,0-0.2-0.2-0.4-0.2
|
|
42
|
+
c-0.2,0-0.2,0-0.4,0h-0.9v2.5h0.4v-0.9h0.5l0,0l0.7,0.9h0.4l-0.9-1.1C198.6,53.2,198.8,53,198.8,52.8z M197.6,53v-0.9h0.7
|
|
43
|
+
c0.2,0,0.4,0,0.5,0.2c0.2,0,0.2,0.2,0.2,0.4l0,0c0,0.2,0,0.4-0.2,0.4c-0.2,0-0.4,0.2-0.5,0.2h-0.7V53z"/>
|
|
44
|
+
<path class="fitbit-original-1" d="M198.1,50.7c-1.2,0-2.3,1.1-2.3,2.3s1.1,2.3,2.3,2.3c1.2,0,2.3-1.1,2.3-2.3S199.3,50.7,198.1,50.7z
|
|
45
|
+
M198.1,55.1c-1.2,0-2.1-0.9-2.1-2.1c0-1.2,0.9-2.1,2.1-2.1c1.2,0,2.1,0.9,2.1,2.1C200.2,54.2,199.2,55.1,198.1,55.1z"/>
|
|
46
|
+
<path class="fitbit-original-1" d="M119.9,30.9c0.4,0,0.7-0.4,0.7-0.7v-3.4c0-0.4-0.4-0.7-0.7-0.7h-7.1V15.5c0-0.4-0.4-0.7-0.7-0.7h-3.4
|
|
47
|
+
c-0.4,0-0.7,0.4-0.7,0.7v10.6h-3.5c-0.4,0-0.7,0.4-0.7,0.7v3.4c0,0.4,0.4,0.7,0.7,0.7h3.5V47c0,5,3.4,8.1,8.1,8.1h3.5
|
|
48
|
+
c0.4,0,0.7-0.4,0.7-0.7V51c0-0.4-0.4-0.7-0.7-0.7h-3c-2.3,0-3.9-1.6-3.9-4.1V30.7h7.1L119.9,30.9L119.9,30.9z"/>
|
|
49
|
+
<path class="fitbit-original-1" d="M190.3,30.9c0.4,0,0.7-0.4,0.7-0.7v-3.4c0-0.4-0.4-0.7-0.7-0.7h-7.1V15.5c0-0.4-0.4-0.7-0.7-0.7h-3.4
|
|
50
|
+
c-0.4,0-0.7,0.4-0.7,0.7v10.6h-3.5c-0.4,0-0.7,0.4-0.7,0.7v3.4c0,0.4,0.4,0.7,0.7,0.7h3.5V47c0,5,3.4,8.1,8.1,8.1h3.5
|
|
51
|
+
c0.4,0,0.7-0.4,0.7-0.7V51c0-0.4-0.4-0.7-0.7-0.7H187c-2.3,0-3.9-1.6-3.9-4.1V30.7h7.3L190.3,30.9L190.3,30.9z"/>
|
|
52
|
+
<path class="fitbit-original-1" d="M71.3,30.9v23.7c0,0.4,0.4,0.7,0.7,0.7h3.4c0.4,0,0.7-0.4,0.7-0.7V30.9h7.8c0.4,0,0.7-0.4,0.7-0.7v-3.4
|
|
53
|
+
c0-0.4-0.4-0.7-0.7-0.7h-7.8v-6.2c0-2.5,1.8-4.2,3.9-4.2h3.9c0.4,0,0.7-0.4,0.7-0.7v-3.4c0-0.4-0.4-0.7-0.7-0.7h-3.7
|
|
54
|
+
c-5,0-8.8,4.1-8.8,8.8v6.4h-3.5c-0.4,0-0.7,0.4-0.7,0.7v3.4c0,0.4,0.4,0.7,0.7,0.7L71.3,30.9L71.3,30.9z"/>
|
|
55
|
+
</g>
|
|
56
|
+
<path class="fitbit-original-1" d="M152.3,29.6c-2.7-2.8-6.4-4.4-10.3-4.4c-3.7,0-7.4,1.6-9.7,3.9V11.4c0-0.4-0.4-0.7-0.7-0.7h-3.4
|
|
57
|
+
c-0.4,0-0.7,0.4-0.7,0.7v29.2c0,10.8,7.3,15.6,14.3,15.6c7.1,0,14.3-4.8,14.3-15.6C156.4,36.3,155,32.5,152.3,29.6z M142,51.7
|
|
58
|
+
c-7.1,0-9.7-5.7-9.7-11c0-6.5,3.9-10.8,9.7-10.8c5.8,0,9.7,4.4,9.7,10.8C151.6,46.1,149.1,51.7,142,51.7z"/>
|
|
59
|
+
</g>
|
|
60
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg width="512px" height="139px" viewBox="0 0 512 139" 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="M98.6961598,59.3124474 L55.6354962,59.3124474 C54.5247282,59.3124474 53.623096,60.2151464 53.623096,61.3259144 L53.623096,82.3792882 C53.623096,83.4900562 54.5247282,84.3938224 55.6354962,84.3938224 L72.4335936,84.3938224 L72.4335936,110.550753 C72.4335936,110.550753 68.6616775,111.836513 58.2336902,111.836513 C45.930948,111.836513 28.744455,107.341157 28.744455,69.5494382 C28.744455,31.7491835 46.6405165,26.7758029 63.4418154,26.7758029 C77.9852995,26.7758029 84.2508415,29.336651 88.2372288,30.5701264 C89.4899103,30.9542537 90.648694,29.706907 90.648694,28.5950722 L95.4524188,8.25340062 C95.4524188,7.73376182 95.2763603,7.10742103 94.6830971,6.68167999 C93.0644278,5.52716422 83.1870225,-1.42108547e-14 58.2336902,-1.42108547e-14 C29.487101,-1.42108547e-14 0,12.2301846 0,71.022993 C0,129.817935 33.7605165,138.579238 62.2094068,138.579238 C85.7649432,138.579238 100.054476,128.51297 100.054476,128.51297 C100.643471,128.187529 100.707493,127.364856 100.707493,126.987131 L100.707493,61.3259144 C100.707493,60.2151464 99.8069278,59.3124474 98.6961598,59.3124474 Z M320.495497,7.35923776 C320.495497,6.23886664 319.607737,5.33510059 318.496969,5.33510059 L294.251072,5.33510059 C293.143503,5.33510059 292.24294,6.23886664 292.24294,7.35923776 C292.24294,7.36457288 292.24934,54.215292 292.24934,54.215292 L254.456556,54.215292 L254.456556,7.35923776 C254.456556,6.23886664 253.564526,5.33510059 252.455893,5.33510059 L228.211061,5.33510059 C227.107764,5.33510059 226.208265,6.23886664 226.208265,7.35923776 L226.208265,134.231131 C226.208265,135.350435 227.107764,136.26167 228.211061,136.26167 L252.455893,136.26167 C253.564526,136.26167 254.456556,135.350435 254.456556,134.231131 L254.456556,79.9635547 L292.24934,79.9635547 C292.24934,79.9635547 292.183187,134.226863 292.183187,134.231131 C292.183187,135.350435 293.082684,136.26167 294.191317,136.26167 L318.494835,136.26167 C319.605604,136.26167 320.493364,135.350435 320.495497,134.231131 L320.495497,7.35923776 Z M144.371023,24.3216565 C144.371023,15.591298 137.371371,8.53616094 128.735977,8.53616094 C120.10912,8.53616094 113.104133,15.591298 113.104133,24.3216565 C113.104133,33.042412 120.10912,40.1167554 128.735977,40.1167554 C137.371371,40.1167554 144.371023,33.042412 144.371023,24.3216565 Z M142.447186,107.534288 L142.447186,48.9698214 C142.447186,47.8579864 141.549822,46.9488852 140.441188,46.9488852 L116.272115,46.9488852 C115.163481,46.9488852 114.171153,48.0927309 114.171153,49.2045657 L114.171153,133.109693 C114.171153,135.575576 115.707662,136.308619 117.696587,136.308619 L139.472334,136.308619 C141.861392,136.308619 142.447186,135.135964 142.447186,133.070213 L142.447186,107.534288 Z M413.161929,46.9488852 L389.10169,46.9488852 C387.998389,46.9488852 387.099963,47.8579864 387.099963,48.9772906 L387.099963,111.186697 C387.099963,111.186697 380.988068,115.658579 372.312128,115.658579 C363.637256,115.658579 361.334627,111.722341 361.334627,103.227794 L361.334627,48.9772906 C361.334627,47.8579864 360.43833,46.9488852 359.333962,46.9488852 L334.915206,46.9488852 C333.812978,46.9488852 332.910277,47.8579864 332.910277,48.9772906 L332.910277,107.335822 C332.910277,132.566579 346.972537,138.739291 366.317608,138.739291 C382.1874,138.739291 394.983106,129.971587 394.983106,129.971587 C394.983106,129.971587 395.592374,134.591784 395.867664,135.140232 C396.144024,135.686546 396.862125,136.238196 397.63785,136.238196 L413.172597,136.169906 C414.274829,136.169906 415.177528,135.258671 415.177528,134.144702 L415.170059,48.9772906 C415.170059,47.8579864 414.27056,46.9488852 413.161929,46.9488852 Z M468.596822,115.706595 C460.251661,115.452644 454.591116,111.665789 454.591116,111.665789 L454.591116,71.4882139 C454.591116,71.4882139 460.175898,68.0652134 467.027235,67.4527437 C475.691441,66.6770202 484.039804,69.2944203 484.039804,89.9626002 C484.039804,111.757553 480.272156,116.058711 468.596822,115.706595 Z M478.086899,44.2237159 C464.421573,44.2237159 455.12676,50.3206689 455.12676,50.3206689 L455.12676,7.35923776 C455.12676,6.23886664 454.231532,5.33510059 453.126097,5.33510059 L428.811913,5.33510059 C427.706479,5.33510059 426.808048,6.23886664 426.808048,7.35923776 L426.808048,134.231131 C426.808048,135.350435 427.706479,136.26167 428.815112,136.26167 L445.684702,136.26167 C446.444417,136.26167 447.019542,135.870074 447.444215,135.18398 C447.863555,134.502154 448.468557,129.334575 448.468557,129.334575 C448.468557,129.334575 458.41105,138.756363 477.232216,138.756363 C499.328069,138.756363 512,127.548384 512,88.4410293 C512,49.3336752 491.761829,44.2237159 478.086899,44.2237159 Z M212.229235,46.731213 L194.041876,46.731213 C194.041876,46.731213 194.014134,22.7093892 194.014134,22.704054 C194.014134,21.7949529 193.545712,21.3404024 192.494697,21.3404024 L167.709954,21.3404024 C166.746435,21.3404024 166.22893,21.7640094 166.22893,22.6901829 L166.22893,47.5197408 C166.22893,47.5197408 153.808816,50.5180675 152.969071,50.760281 C152.132527,51.0024947 151.516857,51.77395 151.516857,52.6937215 L151.516857,68.2967567 C151.516857,69.4192619 152.413154,70.3240948 153.521788,70.3240948 L166.22893,70.3240948 L166.22893,107.859729 C166.22893,135.739897 185.785275,138.478938 198.98218,138.478938 C205.011911,138.478938 212.224966,136.542296 213.41576,136.102684 C214.135999,135.838063 214.554271,135.092216 214.554271,134.283415 L214.574544,117.119329 C214.574544,116.000025 213.629165,115.094125 212.564279,115.094125 C211.504728,115.094125 208.79343,115.525201 206.002106,115.525201 C197.069013,115.525201 194.041876,111.371292 194.041876,105.994577 C194.041876,100.622131 194.04081,70.3240948 194.04081,70.3240948 L212.229235,70.3240948 C213.337868,70.3240948 214.235233,69.4192619 214.235233,68.2967567 L214.235233,48.7532162 C214.235233,47.633912 213.337868,46.731213 212.229235,46.731213 Z" fill="#11110F"></path>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="512px" height="111px" viewBox="0 0 512 111" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
|
|
3
|
+
<title>GitLab</title>
|
|
4
|
+
<g>
|
|
5
|
+
<g transform="translate(143.4116, 7.0854)" fill="#171321">
|
|
6
|
+
<path d="M63.3257599,34.6151298 L80.1535843,34.6151298 C77.3489469,16.7540181 61.849635,4.28076233 41.7005296,4.28076233 C21.5514241,4.28076233 -4.19539941e-14,21.7728429 -4.19539941e-14,51.1477292 C-4.19539941e-14,80.5226155 17.0492431,97.8670835 42.2171733,97.8670835 C67.3851035,97.8670835 80.8916467,83.4010591 80.8916467,59.8568663 L80.8916467,48.9335418 L43.914717,48.9335418 L43.914717,61.849635 L64.8756911,61.849635 C64.5804661,74.8395345 55.9451352,83.0320279 42.2171733,83.0320279 C28.4892113,83.0320279 16.5325993,71.5920596 16.5325993,51.0001167 C16.5325993,30.4081738 27.1606989,19.115818 41.8481421,19.115818 C56.5355852,19.115818 60.2997038,25.0203177 63.2519537,34.6151298 L63.3257599,34.6151298 L63.3257599,34.6151298 Z"></path>
|
|
7
|
+
<path d="M92.03639,96.6123773 L108.126152,96.6123773 L108.126152,28.3415989 L92.03639,28.3415989 L92.03639,96.6123773 Z M100.081271,17.4920805 C105.173902,17.4920805 109.380858,13.5803495 109.380858,8.78294339 C109.380858,3.98553734 105.173902,0 100.081271,0 C94.9886399,0 90.7078776,3.91173109 90.7078776,8.78294339 C90.7078776,13.6541557 94.9148337,17.4920805 100.081271,17.4920805 Z"></path>
|
|
8
|
+
<path d="M156.321631,28.3415989 L142.815088,28.3415989 L142.815088,11.956612 L126.725326,11.956612 L126.725326,28.3415989 L117.056708,28.3415989 L117.056708,40.8148546 L126.725326,40.8148546 L126.725326,78.8250718 C126.725326,91.6673588 135.951107,98.014696 148.055332,97.6456648 C152.631319,97.4980523 155.804987,96.6123773 157.502531,96.0219274 L154.7717,83.4010591 C153.886025,83.6224779 152.040869,83.9915091 150.0481,83.9915091 C145.988757,83.9915091 142.741282,82.5891904 142.741282,76.0942407 L142.741282,40.8148546 L156.247825,40.8148546 L156.247825,28.3415989 L156.321631,28.3415989 L156.321631,28.3415989 Z"></path>
|
|
9
|
+
<polygon points="168.794887 96.6123773 225.404278 96.6123773 225.404278 82.8106091 185.327486 82.8106091 185.327486 5.53546853 168.794887 5.53546853 168.794887 96.6123773"></polygon>
|
|
10
|
+
<path d="M256.25529,98.014696 C266.957195,98.014696 273.378339,92.9958712 276.330589,87.238984 L276.847233,87.238984 L276.847233,96.6123773 L292.346544,96.6123773 L292.346544,50.9263104 C292.346544,32.8437799 277.659101,27.4559239 264.595396,27.4559239 C251.53169,27.4559239 239.206047,33.8770674 235.663347,46.2765169 L250.719821,48.416898 C252.343559,43.7671045 256.84574,39.7815671 264.743008,39.7815671 C272.640276,39.7815671 276.330589,43.619492 276.330589,50.3358605 L276.330589,50.6310854 C276.330589,55.280879 271.459377,55.5022978 259.428958,56.757004 C246.143834,58.1593226 233.522966,62.14486 233.522966,77.4965594 C233.522966,92.8482587 243.339196,98.014696 256.402902,98.014696 L256.25529,98.014696 Z M261.495533,86.1318903 C254.779165,86.1318903 249.981759,83.0320279 249.981759,77.1275281 C249.981759,71.2230284 255.369615,68.3445847 262.602627,67.3112973 C266.809583,66.7208473 275.297301,65.6875598 277.363876,63.9900162 L277.363876,72.0348971 C277.363876,79.6369405 271.237958,86.058084 261.495533,86.058084 L261.495533,86.058084 L261.495533,86.1318903 Z"></path>
|
|
11
|
+
<path d="M304.155544,96.6123773 L319.950081,96.6123773 L319.950081,85.8366653 L320.909562,85.8366653 C323.418974,90.7816838 328.733024,97.7932773 340.468217,97.7932773 C352.203411,97.7932773 368.588398,85.0247966 368.588398,62.5138912 C368.588398,40.0029859 356.188948,27.3821176 340.394411,27.3821176 C324.599874,27.3821176 323.345168,34.6151298 320.835756,39.5601484 L320.1715,39.5601484 L320.1715,5.46166228 L304.081738,5.46166228 L304.081738,96.5385711 L304.155544,96.5385711 L304.155544,96.6123773 Z M319.950081,62.440085 C319.950081,49.1549605 325.633162,40.5934359 336.039843,40.5934359 C346.446523,40.5934359 352.277217,49.7454105 352.277217,62.440085 C352.277217,75.1347595 346.667942,84.5819591 336.039843,84.5819591 C325.411743,84.5819591 319.950081,75.6514032 319.950081,62.440085 Z"></path>
|
|
12
|
+
</g>
|
|
13
|
+
<g transform="translate(-0, 0)">
|
|
14
|
+
<path d="M113.077235,43.8409107 L112.929622,43.3980732 L97.282698,2.58321865 C96.9874731,1.77134993 96.3970231,1.10709371 95.6589606,0.664256223 C94.9208981,0.221418741 94.1090294,0 93.2233545,0 C92.3376795,0 91.5258108,0.369031235 90.8615546,0.885674964 C90.1972983,1.40231869 89.6806546,2.14038116 89.4592359,3.02605613 L78.9049425,35.3531923 L36.1711255,35.3531923 L25.6168322,3.02605613 C25.3954135,2.21418741 24.8787697,1.47612494 24.2145135,0.885674964 C23.5502573,0.369031235 22.7383886,0 21.8527136,0 C20.9670386,0 20.1551699,0.147612494 19.4171074,0.664256223 C18.679045,1.10709371 18.088595,1.77134993 17.79337,2.58321865 L2.14644564,43.3980732 L1.99883315,43.8409107 C-2.65096041,55.9451352 1.33457693,69.5992909 11.6674515,77.4227531 L11.815064,77.4227531 C11.815064,77.4965594 35.6544818,95.3576711 35.6544818,95.3576711 L47.4634813,104.288227 L54.6226873,109.676083 C56.320231,111.004596 58.7558371,111.004596 60.4533808,109.676083 L67.6125867,104.288227 L79.4215863,95.3576711 L103.408617,77.4227531 L103.408617,77.4227531 C113.741491,69.5992909 117.653222,55.9451352 113.003429,43.8409107 L113.077235,43.8409107 Z" fill="#E24329"></path>
|
|
15
|
+
<path d="M113.077235,43.8409107 L112.929622,43.3980732 C105.179966,45.0218107 98.0207605,48.2692855 91.894842,52.8452729 C91.8210358,52.8452729 73.2956678,66.942266 57.5011309,78.8250718 C69.1625179,87.6818214 79.34778,95.3576711 79.34778,95.3576711 L103.33481,77.4227531 L103.33481,77.4227531 C113.667685,69.5992909 117.579416,55.9451352 112.929622,43.8409107 L113.077235,43.8409107 Z" fill="#FC6D26"></path>
|
|
16
|
+
<path d="M35.5806755,95.3576711 L47.3896751,104.288227 L54.548881,109.676083 C56.2464247,111.004596 58.6820309,111.004596 60.3795745,109.676083 L67.5387805,104.288227 L79.34778,95.3576711 C79.34778,95.3576711 69.1625179,87.6818214 57.5011309,78.8250718 C45.7659376,87.6818214 35.5806755,95.3576711 35.5806755,95.3576711 L35.5806755,95.3576711 L35.5806755,95.3576711 Z" fill="#FCA326"></path>
|
|
17
|
+
<path d="M23.1074198,52.8452729 C16.9815013,48.2692855 9.82229533,44.9480044 2.0726394,43.3980732 L1.9250269,43.8409107 C-2.72476666,55.9451352 1.26077068,69.5992909 11.5936453,77.4227531 L11.7412578,77.4227531 C11.7412578,77.4965594 35.5806755,95.3576711 35.5806755,95.3576711 C35.5806755,95.3576711 45.7659376,87.6818214 57.5011309,78.8250718 C41.7804003,66.942266 23.2550323,52.9190791 23.1074198,52.8452729 L23.1074198,52.8452729 L23.1074198,52.8452729 Z" fill="#FC6D26"></path>
|
|
18
|
+
</g>
|
|
19
|
+
</g>
|
|
20
|
+
</svg>
|
|
@@ -0,0 +1,28 @@
|
|
|
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
|
+
.google-original-0{fill:#4885ED;}
|
|
7
|
+
.google-original-1{fill:#DB3236;}
|
|
8
|
+
.google-original-2{fill:#F4C20D;}
|
|
9
|
+
.google-original-3{fill:#3CBA54;}
|
|
10
|
+
</style>
|
|
11
|
+
<path id="g_1_" class="google-original-0" d="M49.5,23.2H26.1v6.9h16.6C41.9,39.8,33.8,44,26.1,44c-9.8,0-18.3-7.7-18.3-18.5C7.9,15,16,7,26.2,7
|
|
12
|
+
c7.9,0,12.5,5,12.5,5l4.9-5c0,0-6.2-6.9-17.6-6.9C11.4,0,0.3,12.2,0.3,25.4c0,12.9,10.5,25.5,26,25.5c13.6,0,23.6-9.3,23.6-23.1
|
|
13
|
+
C49.9,24.9,49.5,23.2,49.5,23.2L49.5,23.2z"/>
|
|
14
|
+
<path id="o_1_" class="google-original-1" d="M68.6,18.2c-9.6,0-16.5,7.5-16.5,16.2c0,8.9,6.7,16.5,16.6,16.5c9,0,16.3-6.9,16.3-16.3
|
|
15
|
+
C85,23.7,76.5,18.2,68.6,18.2L68.6,18.2z M68.7,24.6c4.7,0,9.2,3.8,9.2,9.9c0,6-4.4,9.9-9.2,9.9c-5.2,0-9.3-4.2-9.3-10
|
|
16
|
+
C59.3,28.8,63.4,24.6,68.7,24.6L68.7,24.6z"/>
|
|
17
|
+
<path id="o" class="google-original-2" d="M104.4,18.2c-9.6,0-16.5,7.5-16.5,16.2c0,8.9,6.7,16.5,16.6,16.5c9,0,16.3-6.9,16.3-16.3
|
|
18
|
+
C120.8,23.7,112.3,18.2,104.4,18.2L104.4,18.2z M104.5,24.6c4.7,0,9.2,3.8,9.2,9.9c0,6-4.4,9.9-9.2,9.9c-5.2,0-9.3-4.2-9.3-10
|
|
19
|
+
C95.1,28.8,99.2,24.6,104.5,24.6L104.5,24.6z"/>
|
|
20
|
+
<path id="g" class="google-original-0" d="M139.5,18.2c-8.8,0-15.7,7.7-15.7,16.4c0,9.8,8,16.4,15.6,16.4c4.7,0,7.1-1.9,9-4v3.2c0,5.6-3.4,9-8.6,9
|
|
21
|
+
c-5,0-7.5-3.7-8.4-5.8L125,56c2.2,4.7,6.7,9.6,14.7,9.6c8.7,0,15.4-5.5,15.4-17.1V19.2h-6.9v2.8C146.2,19.7,143.3,18.2,139.5,18.2
|
|
22
|
+
L139.5,18.2z M140.1,24.6c4.3,0,8.7,3.7,8.7,10c0,6.4-4.4,9.9-8.8,9.9c-4.7,0-9.1-3.8-9.1-9.9C131,28.3,135.5,24.6,140.1,24.6
|
|
23
|
+
L140.1,24.6z"/>
|
|
24
|
+
<path id="e" class="google-original-1" d="M185.7,18.1c-8.3,0-15.3,6.6-15.3,16.3c0,10.3,7.8,16.4,16.1,16.4c6.9,0,11.2-3.8,13.7-7.2l-5.7-3.8
|
|
25
|
+
c-1.5,2.3-3.9,4.5-8,4.5c-4.6,0-6.7-2.5-8-5l21.9-9.1l-1.1-2.7C197.1,22.5,192.2,18.1,185.7,18.1L185.7,18.1z M185.9,24.4
|
|
26
|
+
c3,0,5.1,1.6,6.1,3.5L177.3,34C176.7,29.3,181.2,24.4,185.9,24.4L185.9,24.4z"/>
|
|
27
|
+
<path id="l" class="google-original-3" d="M159.9,49.9h7.2V1.7h-7.2V49.9z"/>
|
|
28
|
+
</svg>
|
|
@@ -0,0 +1,29 @@
|
|
|
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
|
+
.hubspot-original-0{fill:#45535E;}
|
|
7
|
+
.hubspot-original-1{fill:#F8761F;}
|
|
8
|
+
</style>
|
|
9
|
+
<path class="hubspot-original-0" d="M0,14.7h7v15.5h14.7V14.7h7v38.1h-7V36.9H7v15.9H0V14.7z M50.9,40.4c0,3.2-2.6,5.8-5.8,5.8
|
|
10
|
+
c-3.2,0-5.8-2.6-5.8-5.8V24h-6.6v16.4c0,6.8,5.6,12.4,12.4,12.4c6.8,0,12.4-5.6,12.4-12.4V24h-6.6V40.4 M76,24.1
|
|
11
|
+
c-3.3,0-5.6,1-7.8,3.1V14.7h-6.6V38c0,8.7,6.3,14.7,13.4,14.7c7.9,0,14.8-6.1,14.8-14.3C89.8,30.4,83.4,24.1,76,24.1L76,24.1z
|
|
12
|
+
M76.2,46.6c-4.5,0-8-3.8-8-8.2c0-4.4,3.4-8.2,8-8.2c3.8,0,7.3,3.8,7.3,8.2C83.4,42.9,80,46.6,76.2,46.6z M101,25.8
|
|
13
|
+
c0-3.3,2.2-4.4,4.7-4.4c2,0,4.6,1.5,6.3,3.3l4.3-5.1c-2.2-2.9-6.6-4.9-10.2-4.9c-7.2,0-12.4,4.2-12.4,11.1c0,12.9,15.9,8.8,15.9,16
|
|
14
|
+
c0,2.2-2.2,4.2-4.7,4.2c-3.9,0-5.2-1.9-7-3.9l-4.8,5c3.1,3.8,6.9,5.7,11.5,5.7c6.8,0,12.4-4.2,12.4-10.9C116.8,27.6,101,32,101,25.8
|
|
15
|
+
M134.3,23.8c-7.1,0-13.4,6-13.4,14.7v23.4h6.6V49.3c2.2,2.2,4.5,3.1,7.8,3.1c7.4,0,13.8-6.2,13.8-14.3
|
|
16
|
+
C149.1,29.9,142.2,23.8,134.3,23.8L134.3,23.8z M135.5,46.3c-4.5,0-8-3.8-8-8.2c0-4.4,3.4-8.2,8-8.2c3.8,0,7.3,3.8,7.3,8.2
|
|
17
|
+
C142.8,42.5,139.3,46.3,135.5,46.3z M198.1,46.6c-3.9,0-5-1.7-5-4.3V30.8h6.1V25H193v-7.7l-6.7,3v23.4c0,6,4.1,9,9.8,9
|
|
18
|
+
c0.8,0,2-0.1,2.7-0.2l1.6-6C199.7,46.6,198.8,46.6,198.1,46.6"/>
|
|
19
|
+
<path class="hubspot-original-1" d="M180.5,31.2c-1.3-2.2-3.1-4-5.3-5.3c-1.7-1-3.4-1.6-5.4-1.9v-7c2-0.8,3.2-2.7,3.2-4.8c0-2.9-2.3-5.3-5.3-5.3
|
|
20
|
+
c-2.9,0-5.3,2.4-5.3,5.3c0,2.1,1.1,4,3.1,4.8v7c-1.6,0.2-3.2,0.7-4.7,1.5c-3-2.3-13-9.8-18.8-14.3c0.1-0.5,0.2-1,0.2-1.5
|
|
21
|
+
c0-3.2-2.6-5.9-5.9-5.9s-5.9,2.6-5.9,5.9c0,3.2,2.6,5.9,5.9,5.9c1.1,0,2.1-0.3,3-0.9l1.2,0.9l16.8,12.1c-0.9,0.8-1.7,1.7-2.4,2.8
|
|
22
|
+
c-1.3,2.1-2.2,4.5-2.2,7v0.5c0,1.8,0.3,3.5,0.9,5.1c0.5,1.4,1.3,2.7,2.2,3.8l-5.6,5.6c-1.7-0.6-3.5-0.2-4.8,1
|
|
23
|
+
c-0.9,0.8-1.3,2-1.3,3.2c0,1.2,0.5,2.3,1.3,3.2c0.8,0.9,2,1.3,3.2,1.3c1.2,0,2.4-0.5,3.2-1.3c0.9-0.8,1.3-2,1.3-3.2
|
|
24
|
+
c0-0.5-0.1-0.9-0.2-1.4l5.8-5.8c0.8,0.5,1.6,1,2.6,1.4c1.8,0.8,3.8,1.3,6,1.3h0.4c2.4,0,4.7-0.6,6.9-1.7c2.3-1.2,4-2.9,5.4-5.1
|
|
25
|
+
c1.3-2.2,2.1-4.5,2.1-7.2v-0.1C182.4,35.7,181.8,33.3,180.5,31.2L180.5,31.2z M173.5,43.3c-1.6,1.7-3.4,2.8-5.4,2.8h-0.3
|
|
26
|
+
c-1.2,0-2.3-0.3-3.4-0.9c-1.3-0.6-2.2-1.6-3-2.7c-0.8-1.1-1.2-2.4-1.2-3.7v-0.4c0-1.3,0.2-2.5,0.9-3.7c0.7-1.3,1.6-2.3,2.8-3
|
|
27
|
+
c1.2-0.8,2.5-1.2,3.9-1.2h0.1c1.3,0,2.5,0.3,3.6,0.8c1.2,0.6,2.1,1.5,2.9,2.6c0.7,1.1,1.1,2.3,1.3,3.6c0,0.3,0,0.6,0,0.8
|
|
28
|
+
C175.5,40.1,174.8,41.8,173.5,43.3L173.5,43.3z"/>
|
|
29
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg width="512px" height="146px" viewBox="0 0 512 146" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
|
|
3
|
+
<g fill="#343433">
|
|
4
|
+
<path d="M27.1265503,0.902013423 C16.6803758,5.27806711 5.19645638,17.6253423 1.56950336,33.1348188 C-3.02389262,52.7806711 16.0910604,61.0895034 17.6588456,58.3688591 C19.5041074,55.168 14.2337718,54.0855839 13.1487785,43.8919732 C11.7467919,30.7260134 17.8675973,16.014604 25.571651,9.55962416 C27.0028456,8.36037584 26.9349799,10.0295302 26.9349799,13.1169933 C26.9349799,18.6381745 26.6300134,68.2016644 26.6300134,78.5456107 C26.6300134,92.5422819 26.0518658,96.9621477 25.0132617,101.329611 C23.9617718,105.75549 22.2702819,108.745879 23.5511409,109.897879 C24.9831946,111.18647 31.0971275,108.121342 34.6364564,103.181745 C38.8802148,97.2576644 40.3655302,90.1429262 40.632698,82.4165369 C40.9548456,73.102604 40.9411007,58.3233289 40.9548456,49.8933691 C40.9668725,42.1618255 41.0845638,19.5221477 40.8191141,5.91205369 C40.7538255,2.57374497 31.4957315,-0.928644295 27.1265503,0.902013423"></path>
|
|
5
|
+
<path d="M398.069691,66.4053691 C397.73294,73.6816107 396.122201,79.3694497 394.123168,83.3812617 C390.253101,91.1480268 382.222604,93.5594094 378.812993,82.3950604 C376.954846,76.3094765 376.868081,66.1450738 378.203919,57.6524027 C379.563812,49.0008054 383.360859,42.4667919 389.648322,43.0561074 C395.849879,43.6385503 398.752644,51.6295302 398.069691,66.4053691 L398.069691,66.4053691 Z M293.520322,111.550711 C293.436134,123.641128 291.533315,134.241933 287.452779,137.320805 C281.665289,141.68655 273.886497,138.411812 275.497235,129.589262 C276.922416,121.782121 283.662604,113.809181 293.536644,104.067436 C293.536644,104.067436 293.557262,106.288966 293.520322,111.550711 L293.520322,111.550711 Z M291.939651,66.3340671 C291.585718,72.9617181 289.867597,79.6194362 287.993128,83.3812617 C284.123919,91.1480268 276.035007,93.5757315 272.682953,82.3950604 C270.39098,74.7554362 270.939919,64.8685101 272.073879,58.638604 C273.54545,50.5557047 277.112268,43.0569664 283.518282,43.0569664 C289.74647,43.0569664 292.817611,49.8899329 291.939651,66.3340671 L291.939651,66.3340671 Z M231.375034,66.233557 C230.995329,73.2520805 229.625987,79.1194631 227.42851,83.3812617 C223.452779,91.0947651 215.587221,93.5405101 212.118336,82.3950604 C209.617611,74.3576913 210.46894,63.3995168 211.509262,57.4797315 C213.052993,48.6949799 216.918765,42.4667919 222.953664,43.0569664 C229.152644,43.662604 232.166228,51.6295302 231.375034,66.233557 L231.375034,66.233557 Z M508.928,74.4315705 C507.412617,74.4315705 506.721074,75.9942013 506.14894,78.6229262 C504.16451,87.765906 502.078711,89.8293691 499.388993,89.8293691 C496.384,89.8293691 493.683973,85.3029799 492.989852,76.2407517 C492.444349,69.1148456 492.531973,55.9969933 493.22953,42.9478658 C493.372134,40.2667383 492.632483,37.6139597 485.441289,35.001557 C482.346953,33.877906 477.848913,32.2233557 475.609342,37.6294228 C469.281503,52.9026577 466.805691,65.0282953 466.223248,69.9532886 C466.193181,70.2084295 465.880483,70.2608322 465.825503,69.6646443 C465.454389,65.7198389 464.624537,58.5501208 464.52145,43.4882148 C464.501691,40.5493691 463.878872,38.0477852 460.63506,35.9997852 C458.530362,34.6708188 452.138953,32.3204295 449.83753,35.1166711 C447.843651,37.4034899 445.534497,43.5577987 443.135141,50.8529396 C441.185074,56.7821745 439.826899,60.7931275 439.826899,60.7931275 C439.826899,60.7931275 439.852671,44.7948456 439.875866,38.726443 C439.886174,36.437047 438.315812,35.6742013 437.84247,35.5358926 C435.711141,34.9182282 431.512054,33.8847785 429.729503,33.8847785 C427.530309,33.8847785 426.991678,35.1132349 426.991678,36.9043758 C426.991678,37.1397584 426.644617,57.9676779 426.644617,72.5321879 C426.644617,73.1653154 426.645477,73.8551409 426.648054,74.5887785 C425.431624,81.2825772 421.486819,90.3697181 417.196671,90.3697181 C412.901369,90.3697181 410.874846,86.570953 410.874846,69.2076242 C410.874846,59.079302 411.178953,54.6740403 411.32843,47.3479732 C411.415195,43.1282685 411.582711,39.8878926 411.573262,39.1525369 C411.541477,36.8975034 407.642201,35.7609664 405.827866,35.3408859 C404.00494,34.9182282 402.420832,34.7532886 401.183785,34.8237315 C399.43302,34.9233826 398.194255,36.0710872 398.194255,37.6508993 C398.194255,38.4987919 398.203705,40.1086711 398.203705,40.1086711 C395.948671,36.565047 392.321718,34.0986846 389.908617,33.3839463 C383.408966,31.4536376 376.626685,33.1648859 371.51098,40.3225772 C367.445047,46.0104161 364.994148,52.4525101 364.029423,61.7080268 C363.324134,68.4748456 363.554362,75.3361611 364.807732,81.1391141 C363.293208,87.6868725 360.481503,90.3697181 357.402631,90.3697181 C352.93294,90.3697181 349.692564,83.0745772 350.068832,70.456698 C350.317101,62.1581745 351.977664,56.333745 353.792859,47.9080805 C354.566872,44.316349 353.93804,42.4358658 352.360805,40.633557 C350.914148,38.9807248 347.831839,38.1362685 343.400805,39.1748725 C340.244617,39.9153826 335.731973,40.7117315 331.603329,41.3233826 C331.603329,41.3233826 331.852456,40.3294497 332.056913,38.5769664 C333.130738,29.3867383 323.144161,30.1324027 319.957906,33.0678121 C318.055946,34.8202953 316.761342,36.8871946 316.26996,40.6034899 C315.490792,46.5009396 320.300671,49.2825772 320.300671,49.2825772 C318.722577,56.5072752 314.854228,65.9431946 310.860456,72.7658523 C308.721396,76.4211544 307.084886,79.1297718 304.972456,82.0093423 C304.964725,80.9372349 304.958711,79.8642685 304.955275,78.7973154 C304.907168,63.6099866 305.109047,51.6578792 305.198389,47.3488322 C305.285154,43.1291275 305.454389,39.9746577 305.44494,39.239302 C305.420886,37.5907651 304.457879,36.9670872 302.45455,36.1784698 C300.683168,35.4809128 298.588779,34.9981208 296.416215,34.829745 C293.674094,34.616698 292.022121,36.0702282 292.065074,37.7900671 C292.073664,38.1147919 292.073664,40.1086711 292.073664,40.1086711 C289.818631,36.565047 286.191678,34.0986846 283.778577,33.3839463 C277.278926,31.4544966 270.496644,33.1648859 265.38094,40.3225772 C261.315866,46.0104161 258.653638,53.9919463 257.899383,61.6375839 C257.196671,68.7634899 257.326389,74.8181477 258.284242,79.9201074 C257.250792,85.0280805 254.279302,90.3697181 250.919517,90.3697181 C246.624215,90.3697181 244.180188,86.570953 244.180188,69.2076242 C244.180188,59.079302 244.484295,54.6740403 244.633772,47.3488322 C244.720537,43.1291275 244.888054,39.8878926 244.878604,39.153396 C244.846819,36.8983624 240.947544,35.7618255 239.133208,35.3408859 C237.234685,34.901906 235.595597,34.7404027 234.337074,34.8340403 C232.67651,34.9568859 231.509047,36.4439195 231.509047,37.5529664 L231.509047,40.1086711 C229.254013,36.565047 225.62706,34.0986846 223.21396,33.3839463 C216.714309,31.4544966 209.969826,33.1923758 204.816322,40.3225772 C201.455678,44.9718121 198.735034,50.1261745 197.334765,61.5362148 C196.930148,64.8332886 196.751463,67.9216107 196.774658,70.8071946 C195.434523,79.0034899 189.515597,88.4488591 184.673933,88.4488591 C181.840752,88.4488591 179.142443,82.9534497 179.142443,71.2418792 C179.142443,55.6413423 180.108027,33.4303356 180.271248,31.289557 C180.271248,31.289557 186.388617,31.1856107 187.573262,31.1718658 C190.624644,31.1383624 193.388242,31.2105235 197.452456,31.0026309 C199.491007,30.8986846 201.454819,23.5829262 199.35098,22.6774765 C198.397423,22.2677047 191.658094,21.9086174 188.986416,21.8519195 C186.739973,21.8012349 180.486013,21.3382013 180.486013,21.3382013 C180.486013,21.3382013 181.04698,6.59500671 181.177557,5.0375302 C181.288376,3.73948993 179.608913,3.07114094 178.645906,2.66566443 C176.304107,1.67516779 174.208859,1.20096644 171.725315,0.688966443 C168.294228,-0.0188993289 166.737611,0.673503356 166.433503,3.56939597 C165.975624,7.96434899 165.738523,20.8373691 165.738523,20.8373691 C163.220617,20.8373691 154.619705,20.3451275 152.10094,20.3451275 C149.760859,20.3451275 147.235221,30.4090201 150.470443,30.5327248 C154.192752,30.677047 160.679517,30.8024698 164.979973,30.9313289 C164.979973,30.9313289 164.788403,53.5091544 164.788403,60.4804295 C164.788403,61.2217987 164.791839,61.9356779 164.796134,62.6289396 C162.429423,74.9641879 154.093101,81.6279195 154.093101,81.6279195 C155.883383,73.4668456 152.226362,67.3383087 145.639087,62.150443 C143.212242,60.2390336 138.421262,56.6198121 133.060725,52.6535302 C133.060725,52.6535302 136.165369,49.5944161 138.918658,43.4375302 C140.869584,39.0760805 140.953772,34.0866577 136.165369,32.9862013 C128.253423,31.1667114 121.729718,36.977396 119.783946,43.1806711 C118.276295,47.9871141 119.080376,51.5522148 122.033826,55.2564832 C122.24945,55.5270872 122.483114,55.8037047 122.72451,56.0820403 C120.938523,59.5242953 118.485047,64.1589262 116.40698,67.7532349 C110.639248,77.7320805 106.282094,85.6251275 102.989315,85.6251275 C100.357154,85.6251275 100.392376,77.610953 100.392376,70.1079195 C100.392376,63.6400537 100.870013,53.9154899 101.251436,43.847302 C101.377718,40.5175839 99.7128591,38.6207785 96.9217718,36.9026577 C95.2259866,35.8588993 91.6067651,33.806604 89.5106577,33.806604 C86.3733691,33.806604 77.3214497,34.233557 68.7686443,58.9736376 C67.6905235,62.0920268 65.5729396,67.7738523 65.5729396,67.7738523 L65.7559195,38.0228725 C65.7559195,37.3253154 65.3839463,36.650953 64.5334765,36.1896376 C63.0919732,35.4070336 59.2425235,33.806604 55.8200268,33.806604 C54.1895302,33.806604 53.3751409,34.5651544 53.3751409,36.0771007 L53.077047,82.6227114 C53.077047,86.1603221 53.1689664,90.2855302 53.518604,92.089557 C53.8673826,93.8961611 54.4317852,95.3660134 55.1302013,96.2405369 C55.8286174,97.1133423 56.6361342,97.7791141 57.9668188,98.0540134 C59.2055839,98.3091544 65.990443,99.1802416 66.3426577,96.5875973 C66.7653154,93.4803758 66.7816376,90.1197315 70.3441611,77.5860403 C75.890255,58.0724832 83.1201074,48.5515168 86.5202685,45.170255 C87.1147383,44.5792215 87.793396,44.544 87.7607517,45.511302 C87.6155705,49.7894228 87.1052886,60.4804295 86.7616644,69.561557 C85.8407517,93.866094 90.2623356,98.3710067 96.5807248,98.3710067 C101.414658,98.3710067 108.228725,93.568 115.533315,81.4097181 C120.087195,73.8328054 124.508779,66.403651 127.685584,61.0491275 C129.899383,63.0988456 132.383785,65.3040537 134.86647,67.6604564 C140.635919,73.1361074 142.530148,78.3394362 141.273342,83.2755973 C140.312054,87.0494497 136.691973,90.9384161 130.24902,87.1585503 C128.371114,86.0555168 127.569611,85.2033289 125.681396,83.9602685 C124.666846,83.2927785 123.11796,83.0926174 122.189315,83.7927517 C119.777074,85.6113826 118.397423,87.9248322 117.609664,90.7889396 C116.843383,93.5757315 119.63447,95.0490201 122.527785,96.3376107 C125.01906,97.4466577 130.373584,98.4517584 133.788349,98.5660134 C147.093477,99.0110067 157.751839,92.1419597 165.171544,74.4229799 C166.499651,89.7262819 172.152268,98.3847517 181.973047,98.3847517 C188.538846,98.3847517 195.121826,89.898094 198.000537,81.5488859 C198.826953,84.9524832 200.050255,87.9119463 201.630067,90.4152483 C209.19753,102.405154 223.878013,99.8245369 231.252188,89.642953 C233.532134,86.4970738 233.879195,85.3665503 233.879195,85.3665503 C234.954738,94.9802953 242.696591,98.3392215 247.129342,98.3392215 C252.093852,98.3392215 257.219866,95.9922685 260.812456,87.9042148 C261.233396,88.7821745 261.692993,89.6206174 262.194685,90.4152483 C269.762148,102.405154 284.442631,99.8245369 291.816805,89.642953 C292.164725,89.1653154 292.466255,88.732349 292.729987,88.3431946 L292.94647,94.6581477 C292.94647,94.6581477 288.739651,98.517047 286.157315,100.884617 C274.777342,111.31447 266.132617,119.225557 265.496913,128.438121 C264.687678,140.184913 274.208644,144.550658 281.423034,145.122792 C289.070389,145.730148 295.631034,141.501852 299.65745,135.584644 C303.201074,130.376161 305.520537,119.166282 305.350443,108.094711 C305.282577,103.661101 305.170899,98.0239463 305.083275,91.9813154 C309.077906,87.3423893 313.578523,81.478443 317.722631,74.6162685 C322.238711,67.1372886 327.078658,57.0931544 329.557047,49.2765638 C329.557047,49.2765638 333.762148,49.3126443 338.249879,49.0188456 C339.685369,48.9252081 340.097718,49.2181477 339.832268,50.2704966 C339.511839,51.541906 334.16247,72.1748188 339.04451,85.9197852 C342.386255,95.3290738 349.919356,98.3564027 354.385611,98.3564027 C359.613852,98.3564027 364.615302,94.4081611 367.29557,88.5450738 C367.618577,89.1988188 367.956188,89.8310872 368.324725,90.4152483 C375.892188,102.405154 390.521128,99.8090738 397.946846,89.642953 C399.622872,87.3492617 400.573852,85.3665503 400.573852,85.3665503 C402.167409,95.3161879 409.904966,98.389906 414.336859,98.389906 C418.95345,98.389906 423.334658,96.497396 426.88945,88.0863356 C427.038067,91.789745 427.271732,94.8179329 427.641128,95.772349 C427.866201,96.3565101 429.177987,97.0892886 430.132403,97.4432215 C434.355544,99.0092886 438.662872,98.2687785 440.25643,97.9466309 C441.360322,97.7232752 442.221101,96.8375839 442.338792,94.5507651 C442.648054,88.5459329 442.458201,78.4571275 444.27855,70.9583893 C447.334228,58.3748725 450.184591,53.4936913 451.536752,51.0771544 C452.293584,49.7232752 453.14749,49.4999195 453.178416,50.9328322 C453.241987,53.8321611 453.386309,62.3463087 454.570094,73.785557 C455.439463,82.1983356 456.600913,87.1714362 457.493477,88.7452349 C460.040591,93.2458523 463.18647,93.4588993 465.748188,93.4588993 C467.377826,93.4588993 470.785718,93.0087517 470.480752,90.1446443 C470.332134,88.7486711 470.59243,80.1211275 473.605154,67.7240268 C475.572403,59.6282416 478.852295,52.3142013 480.035221,49.6390872 C480.471624,48.6528859 480.674362,49.4303356 480.66749,49.5815302 C480.418362,55.1568322 479.859114,73.3929664 482.13047,83.3666577 C485.209342,96.8779597 494.116081,98.389906 497.219866,98.389906 C503.845799,98.389906 509.264752,93.3497987 511.090255,80.0876242 C511.530094,76.8962148 510.878926,74.4315705 508.928,74.4315705 L508.928,74.4315705 Z"></path>
|
|
6
|
+
</g>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="512px" height="55px" viewBox="0 0 512 55" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
|
|
3
|
+
<g fill="#05CE78">
|
|
4
|
+
<path d="M48.0837333,41.464 C48.0837333,48.0202667 42.6112,53.5136 35.7936,53.4250667 C32.0256,53.4250667 28.168,51.6533333 25.8357333,48.2864 L23.3237333,44.7424 C22.1578667,49.8810667 17.6725333,53.4250667 11.9312,53.4250667 C5.2928,53.4250667 0,48.1093333 0,41.5525333 L0,11.8725333 C0,5.31573333 5.2032,0 11.9312,0 C17.7621333,0 22.3370667,3.8096 23.4138667,9.03733333 L26.2842667,5.13866667 C28.6170667,1.94933333 32.3845333,0.0885333333 36.1525333,0.0885333333 C42.6112,0.0885333333 48.0837333,5.13866667 48.0837333,11.6949333 C48.0837333,14.1754667 47.3658667,16.6565333 45.8410667,18.6944 L40.0997333,26.5797333 L45.8410667,34.4650667 C47.3658667,36.5909333 48.0837333,38.9834667 48.0837333,41.464 Z M64.6010667,0 C71.7989333,0 77.5568,5.85706667 77.4666667,12.7797333 L77.4666667,40.6464 C77.4666667,47.5685333 71.7989333,53.4261333 64.5109333,53.4261333 C57.4032,53.4261333 51.6453333,47.6570667 51.6453333,40.6464 L51.6453333,12.7797333 C51.6453333,5.85706667 57.4032,0 64.6010667,0 Z M127.332267,38.7429333 C127.332267,47.3226667 120.1616,53.4261333 108.653867,53.4261333 C93.2512,53.4261333 81.92,42.0154667 81.92,26.7130667 C81.92,11.4106667 93.2512,0 108.653867,0 C120.1616,0 127.332267,6.10346667 127.332267,14.6832 C127.332267,20.4325333 124.499733,24.3248 118.834133,26.7130667 C124.499733,29.1013333 127.332267,33.0816 127.332267,38.7429333 Z M179.867733,41.464 C179.867733,48.0202667 174.3856,53.5136 167.6448,53.4250667 C163.869867,53.4250667 160.005333,51.6533333 157.668267,48.2864 L155.152,44.7424 C153.983467,49.8810667 149.4896,53.4250667 143.7376,53.4250667 C137.086933,53.4250667 131.784533,48.1093333 131.784533,41.5525333 L131.784533,11.8725333 C131.784533,5.31573333 136.997333,0 143.7376,0 C149.579733,0 154.163733,3.8096 155.242133,9.03733333 L158.028267,5.13866667 C160.3648,1.94933333 164.139733,0.0885333333 167.914133,0.0885333333 C174.3856,0.0885333333 179.867733,5.13866667 179.867733,11.6949333 C179.867733,14.1754667 179.1488,16.6565333 177.6208,18.6944 L171.8688,26.5797333 L177.6208,34.4650667 C179.1488,36.5909333 179.867733,38.9834667 179.867733,41.464 Z M225.28,36.9856 C225.28,47.616 217.070933,54.3168 203.240533,54.3168 C189.1424,54.3168 182.5392,49.4922667 182.5392,41.6309333 C182.5392,36.1813333 186.7328,32.6976 192.710933,32.6976 L192.800533,32.6976 L189.588267,29.7488 C185.5728,26.0858667 182.806933,22.4234667 182.806933,17.0629333 C182.806933,6.61066667 190.480533,0 203.597333,0 C216.981867,0 223.3168,4.73493333 223.3168,12.6858667 C223.3168,17.4202667 220.104533,20.6368 215.2864,21.3514667 L218.587733,24.2992 C222.6032,27.8730667 225.28,31.6250667 225.28,36.9856 Z M261.5888,42.296 C261.5888,48.8848 255.968533,54.3168 248.742933,54.3168 C241.784,54.3168 236.163733,48.8848 236.163733,42.296 L236.163733,23.8634667 C230.186667,23.5072 225.28,18.6101333 225.28,12.3770667 C225.28,5.8768 230.4544,0.890666667 236.788267,0.890666667 L260.9648,0.890666667 C267.2992,0.890666667 272.473067,5.96586667 272.473067,12.3770667 C272.473067,18.6101333 267.5664,23.5968 261.5888,23.8634667 L261.5888,42.296 Z M292.881067,44.1386667 C289.843733,50.4186667 285.5552,53.4261333 280.3728,53.4261333 C270.990933,53.4261333 264.200533,44.8464 268.4,35.2048 L279.389867,9.7296 C282.16,3.4496 286.180267,0 292.970667,0 C299.850667,0 303.871467,3.4496 306.552,9.7296 L317.541867,35.2048 C321.651733,44.8464 314.9504,53.4261333 305.479467,53.4261333 C300.208533,53.4261333 295.919467,50.4186667 292.881067,44.1386667 Z M322.3376,14.1578667 C322.3376,5.43146667 327.003733,0.890666667 335.3488,0.890666667 L350.873067,0.890666667 C360.294933,0.890666667 367.653333,8.01386667 367.653333,17.1856 C367.653333,22.1717333 365.5888,26.2677333 362.1792,28.8501333 L366.845333,36.2405333 C368.101333,38.1994667 368.64,40.3370667 368.64,42.5626667 C368.64,49.152 363.4352,54.3168 356.8848,54.3168 C352.846933,54.3168 348.898667,52.2688 346.655467,48.5285333 L345.398933,46.3024 C343.8736,51.0218667 339.656,54.3168 334.272,54.3168 C327.7216,54.3168 322.3376,48.7957333 322.3376,42.1178667 L322.3376,14.1578667 Z M405.860267,42.296 C405.860267,48.8848 400.339733,54.3168 392.9488,54.3168 C386.003733,54.3168 380.3936,48.8848 380.3936,42.296 L380.3936,23.8634667 C374.427733,23.5072 369.530133,18.6101333 369.530133,12.3770667 C369.530133,5.8768 374.694933,0.890666667 381.017067,0.890666667 L405.2368,0.890666667 C411.558933,0.890666667 416.7232,5.96586667 416.7232,12.3770667 C416.7232,18.6101333 411.826133,23.5968 405.860267,23.8634667 L405.860267,42.296 Z M462.135467,44.0789333 C462.135467,49.8261333 457.534933,54.4053333 451.960533,54.3152 L433.380267,54.3152 C424.885867,54.3152 420.285333,49.8261333 420.285333,41.0266667 L420.285333,14.1792 C420.285333,5.46986667 424.885867,0.890666667 433.380267,0.890666667 L451.960533,0.890666667 C457.534933,0.890666667 462.135467,5.46986667 462.135467,11.2165333 C462.135467,16.424 458.9504,20.1952 454.349333,21.0933333 C456.473067,22.44 457.623467,24.6848 457.623467,27.6474667 C457.623467,30.6106667 456.384533,32.8554667 454.349333,34.2026667 C458.861867,35.1002667 462.135467,38.9616 462.135467,44.0789333 Z M465.6976,14.1578667 C465.6976,5.43146667 470.274133,0.890666667 478.7088,0.890666667 L494.233067,0.890666667 C503.654933,0.890666667 511.0128,8.01386667 511.0128,17.1856 C511.0128,22.1717333 508.9488,26.2677333 505.5392,28.8501333 L510.205333,36.2405333 C511.461333,38.1994667 512,40.3370667 512,42.5626667 C512,49.152 506.7952,54.3168 500.2448,54.3168 C496.206933,54.3168 492.258133,52.2688 490.014933,48.5285333 L488.758933,46.3024 C487.2336,51.0218667 483.016,54.3168 477.632,54.3168 C471.081067,54.3168 465.6976,48.7957333 465.6976,42.1178667 L465.6976,14.1578667 L465.6976,14.1578667 Z"></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
|
+
.lenovo-original-0{fill:#E2231B;}
|
|
7
|
+
</style>
|
|
8
|
+
<path id="n" class="lenovo-original-0" d="M80.4,21.5c-3.5,0-7.4,1.6-9.8,4.8l0,0l0,0l0-4.3h-8.3v30.1h8.3V35c0-3.1,2.4-6.4,6.8-6.4
|
|
9
|
+
c3.4,0,7,2.4,7,6.4v17.1h8.3V33.5C92.6,26.6,87.7,21.5,80.4,21.5z"/>
|
|
10
|
+
<polygon id="v" class="lenovo-original-0" points="151.3,22.1 143.9,42.5 136.4,22.1 127,22.1 139.3,52.1 148.4,52.1 160.8,22.1 "/>
|
|
11
|
+
<path id="e" class="lenovo-original-0" d="M55.8,26.5c-2.8-3.2-6.9-4.9-11.9-4.9c-9.1,0-15.9,6.7-15.9,15.6c0,9.1,6.9,15.6,16.8,15.6
|
|
12
|
+
c5.6,0,11.3-2.6,14-5.7l-5.2-4c-3.5,2.6-5.5,3.2-8.6,3.2c-2.9,0-5.1-0.9-6.7-2.4l21.1-8.8C58.9,31.6,57.7,28.7,55.8,26.5z M36,38.3
|
|
13
|
+
c-0.4-3.1,0.4-5.5,1.7-7.2c1.4-1.9,3.6-3,6.4-3c3,0,5.2,1.7,6.4,4.2L36,38.3z"/>
|
|
14
|
+
<polygon id="l" class="lenovo-original-0" points="8.4,13.1 0,13.1 0,52.1 27.2,52.1 27.2,44.5 8.4,44.5 "/>
|
|
15
|
+
<path id="o_1_" class="lenovo-original-0" d="M175.7,21.5c-9.1,0-16.2,6.8-16.2,15.6c0,8.8,7.1,15.5,16.1,15.5c9.1,0,16.2-6.8,16.2-15.5
|
|
16
|
+
C191.8,28.3,184.7,21.5,175.7,21.5z M175.7,45.6c-4.5,0-8.1-3.7-8.1-8.5c0-5,3.3-8.5,8-8.5c4.5,0,8.1,3.7,8.1,8.5
|
|
17
|
+
C183.7,42,180.3,45.6,175.7,45.6z"/>
|
|
18
|
+
<path id="o" class="lenovo-original-0" d="M112.1,21.5c-9.1,0-16.2,6.8-16.2,15.6c0,8.8,7.1,15.5,16.1,15.5c9.1,0,16.2-6.8,16.2-15.5
|
|
19
|
+
C128.2,28.3,121.1,21.5,112.1,21.5z M112.1,45.6c-4.5,0-8.1-3.7-8.1-8.5c0-5,3.3-8.5,8-8.5c4.5,0,8.1,3.7,8.1,8.5
|
|
20
|
+
C120.1,42,116.7,45.6,112.1,45.6z"/>
|
|
21
|
+
<polygon id="t" class="lenovo-original-0" points="191.6,48.6 193,48.6 193,52.1 193.8,52.1 193.8,48.6 195.1,48.6 195.1,47.8 191.6,47.8 "/>
|
|
22
|
+
<polygon id="m" class="lenovo-original-0" points="199.5,47.8 198.2,49.9 196.9,47.8 196,47.8 196,52.1 196.8,52.1 196.8,49.1 198.2,51.1
|
|
23
|
+
198.3,51.1 199.6,49.1 199.6,52.1 200.4,52.1 200.4,47.8 "/>
|
|
24
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="512px" height="128px" viewBox="0 0 512 128" 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="M202.057143,74.9714286 L230.308571,109.714286 L208,109.714286 L182.857143,77.8057143 L182.857143,109.714286 L164.571429,109.714286 L164.571429,18.2857143 L182.857143,18.2857143 L182.857143,72.0457143 L206.08,45.7142857 L229.394286,45.7142857 L202.057143,74.9714286 Z M128.914286,43.8857143 C120.787189,44.0072946 113.236551,48.1071889 108.708571,54.8571429 L108.708571,45.7142857 L91.4285714,45.7142857 L91.4285714,109.714286 L109.714286,109.714286 L109.714286,79.8171429 C109.228856,75.4306044 110.587451,71.0395336 113.465306,67.6935939 C116.343161,64.3476542 120.481628,62.3475617 124.891429,62.1714286 C135.497143,62.1714286 137.142857,72.5942857 137.142857,79.8171429 L137.142857,109.714286 L155.428571,109.714286 L155.428571,75.7942857 C155.428571,55.68 148.754286,43.8857143 129.28,43.8857143 L128.914286,43.8857143 L128.914286,43.8857143 Z M292.571429,79.1771429 C292.641384,80.5171829 292.641384,81.85996 292.571429,83.2 L244.571429,83.2 L244.571429,83.84 C246.180812,91.7157313 253.271666,97.2566715 261.302857,96.9142857 C267.534814,97.1852048 273.608543,94.9075564 278.125714,90.6057143 L290.285714,99.7485714 C282.492218,107.701692 271.697708,111.986282 260.571429,111.542857 C251.352,112.12578 242.332413,108.684541 235.84426,102.108711 C229.356108,95.5328807 226.036241,86.4679167 226.742857,77.2571429 C226.553601,68.1728489 230.14904,59.4186661 236.668659,53.0897809 C243.188278,46.7608958 252.045327,43.4268918 261.12,43.8857143 C278.308571,43.8857143 292.571429,56.0457143 292.571429,79.1771429 L292.571429,79.1771429 Z M275.565714,71.3142857 C275.429974,67.6543136 273.796386,64.2108816 271.047593,61.7905603 C268.298799,59.3702389 264.676286,58.1856575 261.028571,58.5142857 C252.988748,57.6450726 245.707994,63.3078811 244.571429,71.3142857 L275.565714,71.3142857 Z M18.2857143,18.2857143 L0,18.2857143 L0,109.714286 L54.8571429,109.714286 L54.8571429,91.4285714 L18.2857143,91.4285714 L18.2857143,18.2857143 Z M347.428571,18.2857143 L365.714286,18.2857143 L365.714286,109.714286 L348.434286,109.714286 L348.434286,103.314286 C343.984638,108.796268 337.202524,111.848219 330.148571,111.542857 C321.559196,111.322256 313.441626,107.566635 307.712892,101.162914 C301.984158,94.7591935 299.152166,86.2751236 299.885714,77.7142857 C299.012676,69.1378257 301.783463,60.5891918 307.521582,54.1555424 C313.259702,47.7218931 321.437059,43.995336 330.057143,43.8857143 C336.471312,43.6048667 342.729753,45.9106081 347.428571,50.2857143 L347.428571,18.2857143 L347.428571,18.2857143 Z M348.8,77.7142857 C349.381889,73.4426146 348.085439,69.1282627 345.245304,65.8848994 C342.40517,62.6415361 338.299673,60.7869982 333.988571,60.7999321 C325.241789,61.4350869 318.614232,68.9571605 319.085714,77.7142857 C318.614232,86.4714109 325.241789,93.9934846 333.988571,94.6286393 C338.299673,94.6415732 342.40517,92.7870353 345.245304,89.543672 C348.085439,86.3003087 349.381889,81.9859569 348.8,77.7142857 L348.8,77.7142857 Z M73.1428571,16.4571429 C67.0426002,16.5439794 62.0499364,21.3369367 61.7142857,27.4285714 C61.7142857,33.7403971 66.8310314,38.8571429 73.1428571,38.8571429 C79.4546829,38.8571429 84.5714286,33.7403971 84.5714286,27.4285714 C84.2357779,21.3369367 79.2431141,16.5439794 73.1428571,16.4571429 L73.1428571,16.4571429 Z M64,109.714286 L82.2857143,109.714286 L82.2857143,45.7142857 L64,45.7142857 L64,109.714286 Z M512,9.14285714 L512,118.857143 C512,123.906603 507.906603,128 502.857143,128 L393.142857,128 C388.093397,128 384,123.906603 384,118.857143 L384,9.14285714 C384,4.09339657 388.093397,-3.55271368e-15 393.142857,-3.55271368e-15 L502.857143,-3.55271368e-15 C507.906603,-3.55271368e-15 512,4.09339657 512,9.14285714 Z M420.571429,45.7142857 L402.285714,45.7142857 L402.285714,109.714286 L420.571429,109.714286 L420.571429,45.7142857 Z M422.857143,27.4285714 C422.857143,21.1167457 417.740397,16 411.428571,16 C405.116746,16 400,21.1167457 400,27.4285714 C400,33.7403971 405.116746,38.8571429 411.428571,38.8571429 C417.740397,38.8571429 422.857143,33.7403971 422.857143,27.4285714 Z M493.714286,75.7942857 C493.714286,55.68 487.04,43.8857143 467.565714,43.8857143 C459.308825,43.8867299 451.594988,48.0007766 446.994286,54.8571429 L446.994286,45.7142857 L429.714286,45.7142857 L429.714286,109.714286 L448,109.714286 L448,79.8171429 C447.51457,75.4306044 448.873165,71.0395336 451.75102,67.6935939 C454.628875,64.3476542 458.767343,62.3475617 463.177143,62.1714286 C473.782857,62.1714286 475.428571,72.5942857 475.428571,79.8171429 L475.428571,109.714286 L493.714286,109.714286 L493.714286,75.7942857 Z" fill="#0A66C2"></path>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,39 @@
|
|
|
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
|
+
.mapbox-original-0{fill:#4264FB;}
|
|
7
|
+
</style>
|
|
8
|
+
<g>
|
|
9
|
+
<g>
|
|
10
|
+
<path class="mapbox-original-0" d="M149.6,24c-2.5,0-4.9,1-6.7,2.9v-9.7c0-0.3-0.3-0.6-0.6-0.6l0,0h-3.4c-0.3,0-0.6,0.3-0.6,0.6v26.1
|
|
11
|
+
c0,0.3,0.3,0.6,0.6,0.6h3.4c0.3,0,0.6-0.3,0.6-0.6l0,0v-1.8c1.8,1.8,4.1,2.9,6.7,2.9c5.3,0,9.6-4.6,9.6-10.2S154.9,24,149.6,24z
|
|
12
|
+
M148.8,40.3c-3.2,0-5.8-2.7-5.9-6v-0.2c0.1-3.3,2.6-6,5.9-6c3.2,0,5.9,2.7,5.9,6.1S152,40.3,148.8,40.3L148.8,40.3z"/>
|
|
13
|
+
<path class="mapbox-original-0" d="M171.7,24c-5.7,0-10.4,4.6-10.4,10.2s4.6,10.2,10.4,10.2S182,39.9,182,34.2S177.4,24,171.7,24z M171.6,40.3
|
|
14
|
+
c-3.2,0-5.9-2.7-5.9-6.1c0-3.4,2.6-6.1,5.9-6.1s5.9,2.7,5.9,6.1C177.5,37.6,174.9,40.3,171.6,40.3L171.6,40.3z"/>
|
|
15
|
+
<path class="mapbox-original-0" d="M108.2,24.5h-3.4c-0.3,0-0.6,0.3-0.6,0.6l0,0v1.8c-1.8-1.8-4.1-2.9-6.7-2.9c-5.3,0-9.6,4.6-9.6,10.2
|
|
16
|
+
s4.3,10.2,9.6,10.2c2.5,0,4.9-1,6.7-2.9v1.8c0,0.3,0.3,0.6,0.6,0.6l0,0h3.4c0.3,0,0.6-0.3,0.6-0.6l0,0V25.1
|
|
17
|
+
C108.8,24.8,108.5,24.5,108.2,24.5z M98.4,40.3c-3.2,0-5.9-2.7-5.9-6.1c0-3.4,2.6-6.1,5.9-6.1s5.8,2.7,5.9,6v0.2
|
|
18
|
+
C104.2,37.7,101.6,40.3,98.4,40.3L98.4,40.3z"/>
|
|
19
|
+
<path class="mapbox-original-0" d="M125.2,24c-2.5,0-4.9,1-6.7,2.9v-1.8c0-0.3-0.3-0.6-0.6-0.6l0,0h-3.4c-0.3,0-0.6,0.3-0.6,0.6l0,0v26.1
|
|
20
|
+
c0,0.3,0.3,0.6,0.6,0.6l0,0h3.4c0.3,0,0.6-0.3,0.6-0.6l0,0v-9.7c1.8,1.8,4.1,2.9,6.7,2.9c5.3,0,9.6-4.6,9.6-10.2
|
|
21
|
+
S130.5,24,125.2,24z M124.4,40.3c-3.2,0-5.8-2.7-5.9-6v-0.2c0.1-3.3,2.6-6,5.9-6c3.2,0,5.9,2.7,5.9,6.1S127.7,40.3,124.4,40.3
|
|
22
|
+
L124.4,40.3z"/>
|
|
23
|
+
<path class="mapbox-original-0" d="M77.8,24c-2.5,0-4.8,1.5-5.9,3.8c-1.2-2.4-3.7-3.8-6.4-3.8c-2.1,0-4,1-5.3,2.7v-1.6c0-0.3-0.3-0.6-0.6-0.6
|
|
24
|
+
l0,0h-3.4c-0.3,0-0.6,0.3-0.6,0.6l0,0v18.3c0,0.3,0.3,0.6,0.6,0.6l0,0h3.4c0.3,0,0.6-0.3,0.6-0.6l0,0V32.4
|
|
25
|
+
c0.1-2.4,1.8-4.4,3.9-4.4c2.2,0,4,1.8,4,4.2v11.2c0,0.3,0.3,0.6,0.6,0.6h3.4c0.3,0,0.6-0.3,0.6-0.6l0,0l0-11.4
|
|
26
|
+
c0.3-2.2,1.9-4,3.9-4c2.2,0,4,1.8,4,4.2v11.2c0,0.3,0.3,0.6,0.6,0.6h3.4c0.3,0,0.6-0.3,0.6-0.6l0,0l0-12.6C85,27,81.8,24,77.8,24z
|
|
27
|
+
"/>
|
|
28
|
+
<path class="mapbox-original-0" d="M200.3,43.1l-5.9-9l5.8-8.9c0.2-0.2,0.1-0.6-0.2-0.7c-0.1-0.1-0.2-0.1-0.3-0.1h-3.9c-0.3,0-0.6,0.2-0.7,0.4
|
|
29
|
+
l-3.4,5.8l-3.4-5.7c-0.2-0.3-0.4-0.4-0.7-0.4h-3.9c-0.3,0-0.5,0.2-0.5,0.5c0,0.1,0,0.2,0.1,0.3l5.8,8.9l-5.9,9
|
|
30
|
+
c-0.2,0.2-0.1,0.6,0.2,0.7c0.1,0.1,0.2,0.1,0.3,0.1h3.9c0.3,0,0.6-0.2,0.7-0.4l3.5-5.8l3.5,5.8c0.2,0.3,0.4,0.4,0.7,0.4h3.9
|
|
31
|
+
c0.3,0,0.5-0.2,0.5-0.5C200.4,43.3,200.4,43.2,200.3,43.1z"/>
|
|
32
|
+
</g>
|
|
33
|
+
<g>
|
|
34
|
+
<path class="mapbox-original-0" d="M22.6,11.7C10.1,11.7,0,21.8,0,34.2s10.1,22.6,22.6,22.6s22.6-10.1,22.6-22.6S35,11.7,22.6,11.7z M33.3,39.8
|
|
35
|
+
C25.5,47.5,11.8,45,11.8,45S9.3,31.3,17,23.5c4.3-4.3,11.4-4.1,15.9,0.4S37.5,35.5,33.3,39.8L33.3,39.8z"/>
|
|
36
|
+
<polygon class="mapbox-original-0" points="25.1,24.9 22.9,29.4 18.4,31.6 22.9,33.8 25.1,38.4 27.3,33.8 31.9,31.6 27.3,29.4 "/>
|
|
37
|
+
</g>
|
|
38
|
+
</g>
|
|
39
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="512px" height="127px" viewBox="0 0 512 127" 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="M115.235143,75.6712862 C113.503617,84.5756376 99.7339459,94.3197343 83.9178441,96.2082643 C75.6702167,97.1933502 67.5508837,98.0967942 58.8923553,97.7002478 C44.7315208,97.0515983 33.558242,94.3197343 33.558242,94.3197343 C33.558242,95.6986752 33.6434726,97.0112259 33.8130366,98.2385461 C35.6540168,112.21277 47.6706296,113.050722 59.0529476,113.440988 C70.5411309,113.833946 80.7696961,110.607744 80.7696961,110.607744 L81.2425015,120.995108 C81.2425015,120.995108 73.2066048,125.309569 58.8923553,126.102661 C50.9982104,126.536889 41.1975924,125.904388 29.7811822,122.883638 C5.02304814,116.329855 0.765108431,89.9388832 0.113767465,63.1603361 C-0.0854029136,55.20967 0.037508536,47.7120715 0.037508536,41.4426904 C0.037508536,14.0594549 17.9780944,6.033427 17.9780944,6.033427 C27.0241976,1.87866113 42.5469268,0.131883088 58.6842133,0 L59.0807597,0 C75.2180461,0.131883088 90.7506441,1.87866113 99.7967474,6.033427 C99.7967474,6.033427 117.737333,14.0594549 117.737333,41.4426904 C117.737333,41.4426904 117.961624,61.6450264 115.235143,75.6712862" fill="#3088D4"></path>
|
|
5
|
+
<path d="M24.8747724,34.8056516 C24.8747724,30.8195525 28.1063567,27.5888655 32.0915586,27.5888655 C36.0776576,27.5888655 39.3083447,30.8195525 39.3083447,34.8056516 C39.3083447,38.7908535 36.0776576,42.0224377 32.0915586,42.0224377 C28.1063567,42.0224377 24.8747724,38.7908535 24.8747724,34.8056516 M128.3768,43.5660979 L128.3768,76.7216857 L115.241423,76.7216857 L115.241423,44.5404178 C115.241423,37.7560647 112.386648,34.3136469 106.677097,34.3136469 C100.365549,34.3136469 97.2012523,38.398434 97.2012523,46.4747031 L97.2012523,64.0887213 L84.1430323,64.0887213 L84.1430323,46.4747031 C84.1430323,38.398434 80.9787353,34.3136469 74.6671875,34.3136469 C68.9576367,34.3136469 66.1028613,37.7560647 66.1028613,44.5404178 L66.1028613,76.7216857 L52.9674851,76.7216857 L52.9674851,43.5660979 C52.9674851,36.7898192 54.6927312,31.4050417 58.1584752,27.420737 C61.7327761,23.4373294 66.41328,21.3953844 72.222416,21.3953844 C78.9448648,21.3953844 84.0353726,23.9783192 87.3997371,29.1459831 L90.6725909,34.6312429 L93.9445475,29.1459831 C97.3098092,23.9783192 102.39942,21.3953844 109.122766,21.3953844 C114.931902,21.3953844 119.611509,23.4373294 123.185809,27.420737 C126.651553,31.4050417 128.3768,36.7898192 128.3768,43.5660979 M173.628309,60.047985 C176.338641,57.1842379 177.644015,53.5776392 177.644015,49.2281888 C177.644015,44.8787383 176.338641,41.2721396 173.628309,38.5142579 C171.01846,35.6496136 167.704336,34.2715699 163.688631,34.2715699 C159.672028,34.2715699 156.358802,35.6496136 153.748952,38.5142579 C151.138206,41.2721396 149.832832,44.8787383 149.832832,49.2281888 C149.832832,53.5776392 151.138206,57.1842379 153.748952,60.047985 C156.358802,62.8058667 159.672028,64.1848076 163.688631,64.1848076 C167.704336,64.1848076 171.01846,62.8058667 173.628309,60.047985 M177.644015,22.7080249 L190.59637,22.7080249 L190.59637,75.7483526 L177.644015,75.7483526 L177.644015,69.4888403 C173.728792,74.6870078 168.306333,77.2331588 161.278849,77.2331588 C154.551914,77.2331588 148.828906,74.5811424 144.009342,69.1703472 C139.291157,63.760449 136.881375,57.0774754 136.881375,49.2281888 C136.881375,41.4847674 139.291157,34.8008966 144.009342,29.3909985 C148.828906,23.9811004 154.551914,21.2232187 161.278849,21.2232187 C168.306333,21.2232187 173.728792,23.7693697 177.644015,28.96664 L177.644015,22.7080249 L177.644015,22.7080249 Z M234.173772,48.2736064 C237.988513,51.1373535 239.89678,55.1683107 239.796298,60.2597156 C239.796298,65.6705109 237.88803,69.9131988 233.972807,72.8837084 C230.056687,75.7483526 225.338502,77.2331588 219.615494,77.2331588 C209.273886,77.2331588 202.245504,72.9895737 198.530349,64.6091661 L209.776298,57.9270896 C211.281739,62.4873735 214.594965,64.8217939 219.615494,64.8217939 C224.233196,64.8217939 226.543393,63.3360905 226.543393,60.2597156 C226.543393,58.0320578 223.530717,56.0170277 217.406676,54.4263562 C215.096479,53.7893698 213.189109,53.1532807 211.683668,52.6221597 C209.575333,51.7743398 207.768445,50.8188603 206.262107,49.6525473 C202.546951,46.7888002 200.639581,42.9686765 200.639581,38.0898994 C200.639581,32.8917319 202.446469,28.7549093 206.061142,25.7843998 C209.776298,22.7080249 214.293518,21.2232187 219.715976,21.2232187 C228.350281,21.2232187 234.676184,24.9356828 238.791474,32.4673734 L227.748284,38.8318539 C226.141464,35.2261523 223.431132,33.4228529 219.715976,33.4228529 C215.799856,33.4228529 213.892485,34.9076591 213.892485,37.7714062 C213.892485,39.9990641 216.904265,42.0140941 223.029202,43.6056628 C227.748284,44.6661105 231.462543,46.2576792 234.173772,48.2736064 M275.340764,35.8622415 L263.995229,35.8622415 L263.995229,57.9270896 C263.995229,60.579106 265.000053,62.1697775 266.907423,62.911732 C268.313279,63.442853 271.124094,63.5487184 275.340764,63.3360905 L275.340764,75.7483526 C266.606874,76.8088003 260.280971,75.9600833 256.565816,73.0954391 C252.851557,70.3375573 251.043772,65.2461524 251.043772,57.9270896 L251.043772,35.8622415 L242.308985,35.8622415 L242.308985,22.7080249 L251.043772,22.7080249 L251.043772,11.994094 L263.995229,7.85727142 L263.995229,22.7080249 L275.340764,22.7080249 L275.340764,35.8622415 Z M316.609046,59.7299404 C319.219792,56.9711615 320.524269,53.4704281 320.524269,49.2277402 C320.524269,44.9850522 319.219792,41.4843188 316.609046,38.7264371 C313.998299,35.9676582 310.785555,34.5896145 306.869435,34.5896145 C302.954211,34.5896145 299.741468,35.9676582 297.130721,38.7264371 C294.620456,41.5901842 293.315083,45.0909176 293.315083,49.2277402 C293.315083,53.3654599 294.620456,56.8661933 297.130721,59.7299404 C299.741468,62.4878221 302.954211,63.866763 306.869435,63.866763 C310.785555,63.866763 313.998299,62.4878221 316.609046,59.7299404 M287.994004,69.1707957 C282.87389,63.7608976 280.363625,57.1837893 280.363625,49.2277402 C280.363625,41.3775563 282.87389,34.8013452 287.994004,29.3914471 C293.114118,23.981549 299.440021,21.2236673 306.869435,21.2236673 C314.299746,21.2236673 320.624751,23.981549 325.745762,29.3914471 C330.866774,34.8013452 333.476623,41.4843188 333.476623,49.2277402 C333.476623,57.077924 330.866774,63.7608976 325.745762,69.1707957 C320.624751,74.581591 314.400228,77.2327102 306.869435,77.2327102 C299.339538,77.2327102 293.114118,74.581591 287.994004,69.1707957 M376.752309,60.047985 C379.363056,57.1842379 380.667532,53.5776392 380.667532,49.2281888 C380.667532,44.8787383 379.363056,41.2721396 376.752309,38.5142579 C374.14246,35.6496136 370.828336,34.2715699 366.812631,34.2715699 C362.796028,34.2715699 359.482802,35.6496136 356.77247,38.5142579 C354.16262,41.2721396 352.85635,44.8787383 352.85635,49.2281888 C352.85635,53.5776392 354.16262,57.1842379 356.77247,60.047985 C359.482802,62.8058667 362.896511,64.1848076 366.812631,64.1848076 C370.828336,64.1848076 374.14246,62.8058667 376.752309,60.047985 M380.667532,1.49189379 L393.619887,1.49189379 L393.619887,75.7483526 L380.667532,75.7483526 L380.667532,69.4888403 C376.852792,74.6870078 371.430333,77.2331588 364.402849,77.2331588 C357.675914,77.2331588 351.853321,74.5811424 347.033756,69.1703472 C342.314674,63.760449 339.904892,57.0774754 339.904892,49.2281888 C339.904892,41.4847674 342.314674,34.8008966 347.033756,29.3909985 C351.853321,23.9811004 357.675914,21.2232187 364.402849,21.2232187 C371.430333,21.2232187 376.852792,23.7693697 380.667532,28.96664 L380.667532,1.49189379 Z M439.105198,59.7299404 C441.715048,56.9711615 443.020421,53.4704281 443.020421,49.2277402 C443.020421,44.9850522 441.715048,41.4843188 439.105198,38.7264371 C436.494451,35.9676582 433.281707,34.5896145 429.365587,34.5896145 C425.450364,34.5896145 422.236723,35.9676582 419.626873,38.7264371 C417.115712,41.5901842 415.811235,45.0909176 415.811235,49.2277402 C415.811235,53.3654599 417.115712,56.8661933 419.626873,59.7299404 C422.236723,62.4878221 425.450364,63.866763 429.365587,63.866763 C433.281707,63.866763 436.494451,62.4878221 439.105198,59.7299404 M410.490156,69.1707957 C405.369145,63.7608976 402.859778,57.1837893 402.859778,49.2277402 C402.859778,41.3775563 405.369145,34.8013452 410.490156,29.3914471 C415.611168,23.981549 421.936173,21.2236673 429.365587,21.2236673 C436.795898,21.2236673 443.120903,23.981549 448.241915,29.3914471 C453.362926,34.8013452 455.972776,41.4843188 455.972776,49.2277402 C455.972776,57.077924 453.362926,63.7608976 448.241915,69.1707957 C443.120903,74.581591 436.896381,77.2327102 429.365587,77.2327102 C421.835691,77.2327102 415.611168,74.581591 410.490156,69.1707957 M511.999762,43.1814837 L511.999762,75.7476349 L499.047407,75.7476349 L499.047407,44.8789178 C499.047407,41.3781844 498.143963,38.726168 496.337075,36.7111379 C494.629772,34.9078386 492.21999,33.952359 489.107729,33.952359 C481.7779,33.952359 478.063642,38.3018095 478.063642,47.1065756 L478.063642,75.7476349 L465.111287,75.7476349 L465.111287,22.7082043 L478.063642,22.7082043 L478.063642,28.6483263 C481.175903,23.6627867 486.095053,21.2233981 493.023849,21.2233981 C498.545893,21.2233981 503.06401,23.1325628 506.578201,27.0576547 C510.191977,30.9827466 511.999762,36.2867794 511.999762,43.1814837" fill="#FFFFFF"></path>
|
|
6
|
+
</g>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="512px" height="78px" viewBox="0 0 512 78" 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="M38.4,0.853333333 C59.5626667,0.853333333 76.8,18.0906667 76.8,39.424 C76.8,60.7573333 59.5626667,77.9946667 38.4,77.9946667 C17.2373333,77.9946667 0,60.928 0,39.424 C0,17.92 17.2373333,0.853333333 38.4,0.853333333 Z M339.456,0 L339.456,67.584 C339.456,72.704 341.504,74.0693333 345.429333,75.0933333 L345.429333,75.0933333 L345.6,75.9466667 L323.925333,75.9466667 L323.925333,67.584 C321.365333,73.728 316.074667,77.4826667 309.248,77.4826667 C297.642667,77.4826667 289.962667,66.9013333 289.962667,51.2 C289.962667,42.3253333 292.522667,34.816 297.301333,29.184 C301.909333,23.7226667 308.224,20.8213333 315.221333,20.8213333 C318.634667,20.8213333 321.536,21.504 323.925333,23.04 L323.925333,23.04 L323.925333,13.824 C323.925333,11.776 323.413333,10.4106667 322.389333,9.38666667 C321.024,8.192 318.805333,7.68 315.392,8.02133333 L315.392,8.02133333 L315.221333,8.02133333 L315.221333,7.168 L339.456,0 Z M421.717333,20.992 L421.717333,67.584 C421.717333,72.704 423.765333,74.0693333 427.690667,75.0933333 L427.690667,75.0933333 L427.690667,75.9466667 L406.016,75.9466667 L406.016,67.4133333 C403.456,73.5573333 397.824,77.4826667 391.509333,77.4826667 C384,77.4826667 379.221333,74.0693333 377.344,67.4133333 L377.344,67.4133333 L377.002667,65.7066667 C376.661333,64 376.490667,62.2933333 376.490667,60.5866667 L376.490667,60.5866667 L376.490667,35.6693333 C376.490667,30.208 375.296,28.5013333 370.517333,28.16 L370.517333,28.16 L370.346667,28.16 L370.346667,27.3066667 L392.021333,20.992 L392.021333,60.2453333 C392.021333,66.048 394.581333,69.2906667 399.36,69.2906667 C402.261333,69.2906667 404.650667,67.7546667 406.016,65.1946667 L406.016,65.1946667 L406.016,35.6693333 C406.016,30.0373333 404.992,28.3306667 401.066667,27.9893333 L401.066667,27.9893333 L400.896,27.9893333 L400.896,27.136 L421.717333,20.992 Z M265.216,20.8213333 C271.018667,20.8213333 276.650667,22.8693333 280.405333,26.4533333 C284.672,30.5493333 286.890667,36.5226667 287.061333,44.3733333 L287.061333,44.3733333 L287.061333,44.544 L254.464,44.544 C253.781333,55.808 260.778667,65.024 269.994667,65.3653333 C276.650667,65.8773333 282.453333,61.7813333 285.696,55.1253333 L285.696,55.1253333 L286.549333,55.4666667 C284.672,67.9253333 277.333333,77.312 264.533333,77.312 C250.026667,77.312 241.834667,65.1946667 241.493333,50.0053333 L241.493333,50.0053333 L241.493333,46.08 C242.176,39.424 244.224,33.4506667 247.808,29.0133333 C250.026667,26.2826667 252.586667,24.2346667 255.658667,22.8693333 C258.218667,21.504 261.973333,20.8213333 265.045333,20.8213333 L265.045333,20.8213333 Z M491.008,20.992 C500.224,20.992 505.856,26.7946667 505.856,36.6933333 L505.856,36.6933333 L505.856,68.4373333 C505.856,72.192 507.562667,74.0693333 511.829333,75.0933333 L511.829333,75.0933333 L512,75.0933333 L512,75.9466667 L490.154667,75.9466667 L490.154667,37.2053333 C490.154667,31.0613333 487.936,27.9893333 483.328,27.9893333 C479.573333,27.9893333 477.696,30.72 476.672,33.1093333 C476.842667,34.304 477.013333,35.4986667 477.013333,36.6933333 L477.013333,36.6933333 L477.013333,68.9493333 C477.013333,72.8746667 478.208,74.24 481.621333,75.0933333 L481.621333,75.0933333 L481.792,75.0933333 L481.792,75.9466667 L461.482667,75.9466667 L461.482667,37.2053333 C461.482667,31.0613333 459.093333,27.9893333 454.656,27.9893333 C451.072,27.9893333 449.194667,30.5493333 448.341333,32.5973333 L448.341333,32.5973333 L448.341333,69.12 C448.341333,73.0453333 449.536,74.4106667 452.949333,75.264 L452.949333,75.264 L453.12,75.264 L453.12,76.1173333 L432.810667,76.1173333 L432.810667,35.4986667 C432.810667,30.0373333 431.445333,28.3306667 426.837333,27.9893333 L426.837333,27.9893333 L426.666667,27.9893333 L426.666667,27.136 L448.341333,21.1626667 L448.341333,30.208 C450.56,24.4053333 455.68,20.992 462.165333,20.992 C469.504,20.992 474.624,24.576 476.330667,31.0613333 C478.549333,24.9173333 484.181333,20.992 491.008,20.992 Z M179.712,3.41333333 L200.021333,51.0293333 L220.330667,3.41333333 L242.176,3.41333333 L242.005333,4.26666667 L241.757331,4.32185803 C237.993778,5.17964448 236.032,6.58700709 236.032,11.264 L236.032,11.264 L236.032,69.2906667 C236.373333,73.0453333 238.421333,74.24 242.005333,75.0933333 L242.005333,75.0933333 L242.176,75.0933333 L242.176,75.9466667 L214.357333,75.9466667 L214.357333,75.0933333 L214.528,75.0933333 C218.112,74.24 220.16,73.0453333 220.501333,69.2906667 L220.501333,69.2906667 L220.501333,12.8 L193.706667,75.776 L192.170667,75.776 L166.058667,14.5066667 L166.058667,67.9253333 C166.058667,72.704 168.106667,74.0693333 172.032,74.9226667 L172.032,74.9226667 L172.202667,74.9226667 L172.202667,75.776 L156.16,75.776 L156.16,74.9226667 L156.330667,74.9226667 C160.256,74.0693333 162.304,72.704 162.304,67.9253333 L162.304,67.9253333 L162.304,11.264 C162.304,6.48533333 160.256,5.12 156.330667,4.26666667 L156.330667,4.26666667 L156.16,4.26666667 L156.16,3.41333333 L179.712,3.41333333 Z M365.909333,20.992 L365.909333,67.584 L365.911998,67.899142 C365.995481,72.7607407 368.039111,74.0906667 371.882667,75.0933333 L371.882667,75.0933333 L372.053333,75.9466667 L350.378667,75.9466667 L350.378667,35.6693333 C350.378667,30.208 349.184,28.5013333 344.405333,28.16 L344.405333,28.16 L344.234667,28.16 L344.234667,27.3066667 L365.909333,20.992 Z M99.84,3.072 C110.250667,3.072 118.954667,19.456 118.954667,39.424 C118.954667,59.5626667 110.421333,75.776 99.84,75.776 C89.2586667,75.776 80.7253333,59.5626667 80.7253333,39.424 C80.7253333,19.2853333 89.2586667,3.072 99.84,3.072 Z M129.194667,6.82666667 C133.12,6.82666667 136.021333,21.504 136.021333,39.424 C136.021333,57.344 132.949333,72.0213333 129.194667,72.0213333 C125.477547,72.0213333 122.429508,57.6360789 122.368919,39.9606158 L122.368,39.424 C122.368,21.504 125.44,6.82666667 129.194667,6.82666667 Z M317.781333,23.8933333 C310.954667,23.8933333 306.688,32.9386667 306.688,46.9333333 C306.688,53.5893333 307.882667,59.392 309.930667,63.3173333 C311.808,67.072 314.538667,69.12 317.610667,69.12 C320.682667,69.12 322.901333,67.7546667 323.925333,65.1946667 L323.925333,65.1946667 L323.925333,27.648 C322.730667,25.2586667 320.512,23.8933333 317.781333,23.8933333 Z M265.045333,24.064 C258.901333,24.064 255.317333,31.4026667 254.805333,41.6426667 L254.805333,41.6426667 L254.805333,41.8133333 L273.408,41.8133333 C273.749333,33.792 272.384,28.5013333 269.824,25.9413333 C268.458667,24.7466667 266.922667,24.064 265.045333,24.064 Z M357.546667,0.512 C362.496,0.512 366.250667,4.26666667 366.250667,9.216 C366.250667,14.1653333 362.496,17.92 357.546667,17.92 C352.597333,17.92 348.842667,14.1653333 348.842667,9.216 C348.842667,4.26666667 352.597333,0.512 357.546667,0.512 Z" fill="#000000"></path>
|
|
5
|
+
</g>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="512px" height="104px" viewBox="0 0 512 104" version="1.1" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid">
|
|
3
|
+
<title>Meta</title>
|
|
4
|
+
<defs>
|
|
5
|
+
<linearGradient x1="13.8784354%" y1="55.9337491%" x2="89.143574%" y2="58.6936324%" id="linearGradient-1">
|
|
6
|
+
<stop stop-color="#0064E1" offset="0%"></stop>
|
|
7
|
+
<stop stop-color="#0064E1" offset="40%"></stop>
|
|
8
|
+
<stop stop-color="#0073EE" offset="83%"></stop>
|
|
9
|
+
<stop stop-color="#0082FB" offset="100%"></stop>
|
|
10
|
+
</linearGradient>
|
|
11
|
+
<linearGradient x1="54.3150272%" y1="82.782443%" x2="54.3150272%" y2="39.3067715%" id="linearGradient-2">
|
|
12
|
+
<stop stop-color="#0082FB" offset="0%"></stop>
|
|
13
|
+
<stop stop-color="#0064E0" offset="100%"></stop>
|
|
14
|
+
</linearGradient>
|
|
15
|
+
</defs>
|
|
16
|
+
<g>
|
|
17
|
+
<path d="M16.7750211,68.0290295 C16.7750211,73.9591561 18.0766245,78.5120675 19.7778903,81.2664979 C22.0084388,84.8742616 25.3353586,86.4027004 28.7270886,86.4027004 C33.1017722,86.4027004 37.1037975,85.3171308 44.8162025,74.6504641 C50.9947679,66.1009283 58.2751055,54.1002532 63.1736709,46.5768776 L71.4693671,33.8308861 C77.2320675,24.978903 83.9021097,15.1385654 91.5497046,8.46852321 C97.7930802,3.02447257 104.527932,0 111.305992,0 C122.68557,0 133.525063,6.59443038 141.820759,18.9623629 C150.899578,32.5076793 155.306667,49.5689451 155.306667,67.1756962 C155.306667,77.6425316 153.243544,85.3333333 149.732996,91.4092827 C146.341266,97.2854008 139.730633,103.156118 128.610295,103.156118 L128.610295,86.4027004 C138.131983,86.4027004 140.508354,77.6533333 140.508354,67.6401688 C140.508354,53.3711392 137.181435,37.535865 129.852489,26.221097 C124.651477,18.195443 117.911224,13.2914768 110.495865,13.2914768 C102.475612,13.2914768 96.0216034,19.3404219 88.76827,30.1259072 C84.9120675,35.8562025 80.9532489,42.8394937 76.5083544,50.7193249 L71.6151899,59.3876793 C61.785654,76.8162025 59.295865,80.7858228 54.381097,87.3370464 C45.7667511,98.8084388 38.4108017,103.156118 28.7270886,103.156118 C17.2394937,103.156118 9.97535865,98.1819409 5.4764557,90.6855696 C1.80388186,84.5772152 0,76.5623629 0,67.4295359 L16.7750211,68.0290295 Z" fill="#0081FB"></path>
|
|
18
|
+
<path d="M13.2266667,20.1451477 C20.9174684,8.29029536 32.0162025,0 44.7459916,0 C52.1181435,0 59.4470886,2.18194093 67.1000844,8.4307173 C75.4713924,15.2627848 84.3935865,26.5127426 95.5247257,45.0538397 L99.5159494,51.7076793 C109.151055,67.7589873 114.632911,76.0168776 117.841013,79.9108861 C121.967257,84.9120675 124.856709,86.4027004 128.610295,86.4027004 C138.131983,86.4027004 140.508354,77.6533333 140.508354,67.6401688 L155.306667,67.1756962 C155.306667,77.6425316 153.243544,85.3333333 149.732996,91.4092827 C146.341266,97.2854008 139.730633,103.156118 128.610295,103.156118 C121.697215,103.156118 115.572658,101.654684 108.8,95.2654852 C103.593586,90.361519 97.5068354,81.6499578 92.8243038,73.8187342 L78.8955274,50.5518987 C71.9068354,38.8752743 65.4960338,30.1691139 61.785654,26.2264979 C57.7944304,21.9868354 52.6636287,16.8668354 44.4759494,16.8668354 C37.8491139,16.8668354 32.2214346,21.516962 27.5118987,28.6298734 L13.2266667,20.1451477 Z" fill="url(#linearGradient-1)"></path>
|
|
19
|
+
<path d="M44.4759494,16.8668354 C37.8491139,16.8668354 32.2214346,21.516962 27.5118987,28.6298734 C20.8526582,38.6808439 16.7750211,53.6519831 16.7750211,68.0290295 C16.7750211,73.9591561 18.0766245,78.5120675 19.7778903,81.2664979 L5.4764557,90.6855696 C1.80388186,84.5772152 0,76.5623629 0,67.4295359 C0,50.8219409 4.55831224,33.5122363 13.2266667,20.1451477 C20.9174684,8.29029536 32.0162025,0 44.7459916,0 L44.4759494,16.8668354 Z" fill="url(#linearGradient-2)"></path>
|
|
20
|
+
<path d="M187.916962,3.2621097 L207.322194,3.2621097 L240.315949,62.9522363 L273.315105,3.2621097 L292.299072,3.2621097 L292.299072,101.341435 L276.469198,101.341435 L276.469198,26.1724895 L247.531477,78.2258228 L232.679156,78.2258228 L203.746835,26.1724895 L203.746835,101.341435 L187.916962,101.341435 L187.916962,3.2621097 Z M341.900422,39.8312236 C330.547848,39.8312236 323.71038,48.3753586 322.073924,58.9556118 L360.603544,58.9556118 C359.80962,48.0567089 353.523038,39.8312236 341.900422,39.8312236 Z M306.379072,64.9829536 C306.379072,42.7206751 320.76692,26.5181435 342.175865,26.5181435 C363.233755,26.5181435 375.80692,42.515443 375.80692,66.1711392 L375.80692,70.5188186 L322.073924,70.5188186 C323.980422,82.0280169 331.617215,89.7836287 343.931139,89.7836287 C353.755274,89.7836287 359.896034,86.7861603 365.718143,81.3043038 L374.127257,91.6037131 C366.204219,98.8894515 356.126245,103.091308 343.369451,103.091308 C320.19443,103.091308 306.379072,86.1920675 306.379072,64.9829536 Z M395.001519,41.235443 L380.430042,41.235443 L380.430042,28.2734177 L395.001519,28.2734177 L395.001519,6.83746835 L410.275105,6.83746835 L410.275105,28.2734177 L432.413165,28.2734177 L432.413165,41.235443 L410.275105,41.235443 L410.275105,74.0887764 C410.275105,85.3063291 413.861266,89.2921519 422.675443,89.2921519 C426.699072,89.2921519 429.005232,88.9464979 432.413165,88.3794093 L432.413165,101.201013 C428.168101,102.4 424.117468,102.950886 419.731983,102.950886 C403.243207,102.950886 395.001519,93.9422785 395.001519,75.9088608 L395.001519,41.235443 Z M496.726414,53.8410127 C493.658734,46.0962025 486.815865,40.3929114 476.759494,40.3929114 C463.689451,40.3929114 455.323544,49.6661603 455.323544,64.7723207 C455.323544,79.5004219 463.025148,89.2219409 476.132996,89.2219409 C486.437806,89.2219409 493.793755,83.2270042 496.726414,75.7684388 L496.726414,53.8410127 Z M512,101.341435 L497.007257,101.341435 L497.007257,91.1122363 C492.816203,97.1341772 485.190211,103.091308 472.838481,103.091308 C452.974177,103.091308 439.698903,86.4621097 439.698903,64.7723207 C439.698903,42.8772996 453.292827,26.5181435 473.681013,26.5181435 C483.758987,26.5181435 491.665823,30.547173 497.007257,37.6600844 L497.007257,28.2734177 L512,28.2734177 L512,101.341435 Z" fill="#192830"></path>
|
|
21
|
+
</g>
|
|
22
|
+
</svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="512px" height="110px" viewBox="0 0 512 110" version="1.1" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid">
|
|
3
|
+
<title>Microsoft</title>
|
|
4
|
+
<g>
|
|
5
|
+
<path d="M512,49.4486428 L512,40.4443376 L500.818267,40.4443376 L500.818267,26.445689 L500.441899,26.5614622 L489.939328,29.7746322 L489.732546,29.8377811 L489.732546,40.4443376 L473.155932,40.4443376 L473.155932,34.5361909 C473.155932,31.7848754 473.771326,29.6792895 474.983539,28.2751528 C476.187703,26.887732 477.910061,26.1825681 480.106037,26.1825681 C481.685382,26.1825681 483.320445,26.554652 484.965415,27.2882948 L485.377741,27.4721698 L485.377741,17.9892942 L485.183961,17.9180969 C483.649192,17.3664717 481.560941,17.0884923 478.973689,17.0884923 C475.712228,17.0884923 472.748559,17.7979899 470.164403,19.204603 C467.578389,20.6130735 465.544001,22.6239359 464.119433,25.1808516 C462.6992,27.7346717 461.978558,30.6841016 461.978558,33.9480385 L461.978558,40.4443376 L454.192658,40.4443376 L454.192658,49.4486428 L461.978558,49.4486428 L461.978558,87.3820026 L473.155932,87.3820026 L473.155932,49.4486428 L489.732546,49.4486428 L489.732546,73.5548468 C489.732546,83.482861 494.415478,88.5143509 503.650711,88.5143509 C505.168764,88.5143509 506.765468,88.3360478 508.396792,87.9874901 C510.056645,87.6302648 511.187136,87.2730396 511.852652,86.8916691 L512,86.804994 L512,77.7171093 L511.545574,78.0179956 C510.938849,78.4228922 510.183537,78.7528767 509.297619,78.9980435 C508.407936,79.248163 507.665006,79.373842 507.089879,79.373842 C504.926073,79.373842 503.325704,78.7906423 502.33201,77.6403399 C501.327818,76.4795126 500.818317,74.4488387 500.818317,71.6089908 L500.818317,49.4486428 L512,49.4486428 L512,49.4486428 Z M429.231837,79.3747087 C425.174823,79.3747087 421.976511,78.0293872 419.72234,75.3796054 C417.454547,72.7162033 416.305483,68.9192146 416.305483,64.0951259 C416.305483,59.1181175 417.454547,55.2226906 419.723578,52.5122363 C421.978988,49.8197361 425.146963,48.453365 429.140828,48.453365 C433.016444,48.453365 436.101458,49.7584444 438.311054,52.3345523 C440.532414,54.9236615 441.65919,58.788133 441.65919,63.8233375 C441.65919,68.9204529 440.599277,72.8356911 438.509169,75.4545175 C436.433919,78.0541515 433.312996,79.3747087 429.231837,79.3747087 L429.231837,79.3747087 Z M429.7296,39.3134751 C421.989513,39.3134751 415.841771,41.5812673 411.459107,46.0543219 C407.078918,50.5279955 404.857559,56.7184554 404.857559,64.4560658 C404.857559,71.8048765 407.025675,77.7161186 411.301853,82.0226332 C415.578032,86.331005 421.397645,88.5133604 428.597251,88.5133604 C436.10022,88.5133604 442.125378,86.2139936 446.506804,81.6790283 C450.887611,77.1483967 453.107114,71.0167521 453.107114,63.4599211 C453.107114,55.9959564 451.024435,50.0407576 446.914797,45.762722 C442.803301,41.4828292 437.020214,39.3134751 429.7296,39.3134751 L429.7296,39.3134751 Z M386.836254,39.3132275 C381.57136,39.3132275 377.216556,40.6597871 373.88947,43.3151409 C370.542573,45.9859724 368.844979,49.4895039 368.844979,53.7285357 C368.844979,55.9319407 369.21149,57.8895598 369.932752,59.549388 C370.658346,61.2154074 371.781408,62.6814549 373.272839,63.9122414 C374.753744,65.1331222 377.038253,66.4121991 380.066928,67.7129447 C382.612082,68.7604754 384.510885,69.6470379 385.716907,70.3453916 C386.895689,71.0295058 387.732723,71.7179537 388.205102,72.3878285 C388.663861,73.0434638 388.897265,73.9405511 388.897265,75.0487542 C388.897265,78.2018707 386.535987,79.7360201 381.676609,79.7360201 C379.874386,79.7360201 377.818329,79.3602216 375.566014,78.6179112 C373.312462,77.8768391 371.206875,76.8113543 369.30869,75.4449832 L368.844979,75.1125223 L368.844979,85.8732367 L369.015234,85.9524825 C370.597054,86.6824106 372.590582,87.2978039 374.940715,87.7825654 C377.286515,88.2673268 379.417484,88.5143509 381.269236,88.5143509 C386.982364,88.5143509 391.582955,87.160981 394.939758,84.4901496 C398.318229,81.8007449 400.030682,78.214872 400.030682,73.8284926 C400.030682,70.6648512 399.10883,67.9513013 397.291749,65.763374 C395.487668,63.5927817 392.35622,61.6004926 387.987795,59.8391306 C384.507789,58.4424232 382.278383,57.2828341 381.359007,56.393176 C380.472444,55.5332351 380.022353,54.3173073 380.022353,52.7775859 C380.022353,51.412453 380.577693,50.3191085 381.718709,49.4331651 C382.868392,48.5428879 384.468166,48.0903201 386.475315,48.0903201 C388.337591,48.0903201 390.243205,48.3843963 392.137675,48.9607858 C394.031526,49.5371752 395.69445,50.3092027 397.083109,51.2539614 L397.539392,51.5659918 L397.539392,41.3581408 L397.364185,41.2826096 C396.08325,40.733461 394.394324,40.2635581 392.343219,39.8821876 C390.300163,39.5045318 388.447173,39.3132275 386.836254,39.3132275 L386.836254,39.3132275 Z M339.706047,79.3747087 C335.650271,79.3747087 332.450721,78.0293872 330.197169,75.3796054 C327.928757,72.7162033 326.78155,68.9204529 326.78155,64.0951259 C326.78155,59.1181175 327.929996,55.2226906 330.199645,52.5122363 C332.453198,49.8197361 335.620554,48.453365 339.616276,48.453365 C343.490654,48.453365 346.575668,49.7584444 348.785883,52.3345523 C351.007243,54.9236615 352.134019,58.788133 352.134019,63.8233375 C352.134019,68.9204529 351.073487,72.8356911 348.983379,75.4545175 C346.908129,78.0541515 343.788444,79.3747087 339.706047,79.3747087 L339.706047,79.3747087 Z M340.205048,39.3134751 C332.463103,39.3134751 326.315362,41.5812673 321.934555,46.0543219 C317.554366,50.5279955 315.331769,56.7184554 315.331769,64.4560658 C315.331769,71.8079721 317.501123,77.7161186 321.777301,82.0226332 C326.05348,86.331005 331.872475,88.5133604 339.072699,88.5133604 C346.573811,88.5133604 352.600826,86.2139936 356.982252,81.6790283 C361.361822,77.1483967 363.582562,71.0167521 363.582562,63.4599211 C363.582562,55.9959564 361.499264,50.0407576 357.389006,45.762722 C353.276273,41.4828292 347.494424,39.3134751 340.205048,39.3134751 L340.205048,39.3134751 Z M298.36487,48.5726051 L298.36487,40.4443376 L287.323699,40.4443376 L287.323699,87.3807644 L298.36487,87.3807644 L298.36487,63.3711411 C298.36487,59.2881245 299.290436,55.9344171 301.116804,53.4010275 C302.920265,50.8979744 305.323643,49.6294223 308.257595,49.6294223 C309.251881,49.6294223 310.368133,49.7934859 311.577251,50.1178985 C312.773986,50.4404537 313.640738,50.7902495 314.152121,51.1586188 L314.615833,51.4947944 L314.615833,40.3638536 L314.436911,40.2870842 C313.408573,39.849994 311.954288,39.6295916 310.11368,39.6295916 C307.339458,39.6295916 304.856216,40.521107 302.72958,42.2762778 C300.86297,43.8190947 299.513314,45.9345864 298.481881,48.5726051 L298.36487,48.5726051 L298.36487,48.5726051 Z M267.551563,39.3132275 C262.486641,39.3132275 257.968391,40.3997618 254.12497,42.5406369 C250.274118,44.6864649 247.296209,47.7504299 245.269869,51.6464758 C243.252816,55.5332351 242.228811,60.0731534 242.228811,65.1355986 C242.228811,69.5702685 243.22186,73.6402837 245.184432,77.2267758 C247.148243,80.8194589 249.928037,83.6302088 253.446427,85.5797795 C256.959865,87.5268739 261.020593,88.5143509 265.516555,88.5143509 C270.763494,88.5143509 275.243359,87.464963 278.835423,85.3965235 L278.980295,85.3129439 L278.980295,75.1979592 L278.516583,75.5366112 C276.889567,76.7215837 275.071248,77.6675806 273.114866,78.3492184 C271.163438,79.0302371 269.384122,79.3744611 267.824589,79.3744611 C263.492073,79.3744611 260.014543,78.0186148 257.489821,75.3465451 C254.959527,72.6701417 253.676736,68.9127759 253.676736,64.1840298 C253.676736,59.4255665 255.014628,55.5716199 257.651408,52.7274381 C260.279521,49.891924 263.76386,48.4537364 268.006607,48.4537364 C271.635817,48.4537364 275.172161,49.6826655 278.517821,52.1095685 L278.980295,52.4457441 L278.980295,41.7878017 L278.831089,41.703603 C277.571824,40.9990582 275.855037,40.4170968 273.72283,39.9756729 C271.600528,39.5354872 269.524659,39.3132275 267.551563,39.3132275 L267.551563,39.3132275 Z M234.624557,40.4444614 L223.583387,40.4444614 L223.583387,87.3808881 L234.624557,87.3808881 L234.624557,40.4444614 L234.624557,40.4444614 Z M229.216649,20.4491338 C227.399568,20.4491338 225.814652,21.0676225 224.512667,22.2934562 C223.205112,23.5230044 222.541428,25.0707742 222.541428,26.8971424 C222.541428,28.6950318 223.197064,30.2143226 224.491618,31.4110581 C225.778124,32.6040791 227.367993,33.2089474 229.216649,33.2089474 C231.064686,33.2089474 232.660747,32.6040791 233.96273,31.4129155 C235.273382,30.2143226 235.937685,28.6950318 235.937685,26.8971424 C235.937685,25.1345423 235.291336,23.6022502 234.016593,22.3429848 C232.743707,21.0861958 231.128455,20.4491338 229.216649,20.4491338 L229.216649,20.4491338 Z M201.668884,36.9815433 L201.668884,87.3806406 L212.936647,87.3806406 L212.936647,21.8864546 L197.341939,21.8864546 L177.519342,70.5334766 L158.283041,21.8864546 L142.053128,21.8864546 L142.053128,87.3806406 L152.64173,87.3806406 L152.64173,36.9765905 L153.005765,36.9765905 L173.318695,87.3806406 L181.309521,87.3806406 L201.305467,36.9815433 L201.668884,36.9815433 L201.668884,36.9815433 Z" fill="#706D6E"></path>
|
|
6
|
+
<g>
|
|
7
|
+
<polygon fill="#F1511B" points="51.9394377 51.9394377 0 51.9394377 0 0 51.9394377 0"></polygon>
|
|
8
|
+
<polygon fill="#80CC28" points="109.286783 51.9394377 57.3479642 51.9394377 57.3479642 0 109.286783 0"></polygon>
|
|
9
|
+
<polygon fill="#00ADEF" points="51.9381995 109.307213 0 109.307213 0 57.3677757 51.9381995 57.3677757"></polygon>
|
|
10
|
+
<polygon fill="#FBBC09" points="109.286783 109.307213 57.3479642 109.307213 57.3479642 57.3677757 109.286783 57.3677757"></polygon>
|
|
11
|
+
</g>
|
|
12
|
+
</g>
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="512px" height="95px" viewBox="0 0 512 95" 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(0.000000, 22.493938)">
|
|
5
|
+
<path d="M10.6149248,51.1611483 C6.77458242,51.1694454 3.226802,49.1107421 1.32853858,45.7723449 C-0.542361676,42.4544917 -0.430171419,38.3751293 1.62025752,35.1651202 L20.7440545,5.13427627 C22.7367518,1.84839764 26.3432621,-0.111191208 30.1844035,0.00488494986 C34.0227489,0.0968672046 37.5140641,2.24894177 39.3208785,5.6366811 C41.1036054,9.00765549 40.8807645,13.063359 38.7455439,16.2276992 L19.6339019,46.2585431 C17.6641633,49.3279411 14.2619523,51.1773011 10.6149248,51.1611483 L10.6149248,51.1611483 Z" fill="#F62B54"></path>
|
|
6
|
+
<path d="M43.4170986,51.1610783 C39.559926,51.1610783 36.0106789,49.0987511 34.146919,45.7844999 C32.2801678,42.4756448 32.3923747,38.4065879 34.438638,35.2056367 L53.5259701,5.24367087 C55.4898989,1.91063795 59.1071034,-0.0949561312 62.9744224,0.00488494986 C66.8640082,0.0899696399 70.3889453,2.26570671 72.1716722,5.66909432 C73.9422441,9.07248192 73.6829383,13.1524954 71.4828914,16.3087322 L52.3996109,46.2706981 C50.436104,49.3268025 47.0495969,51.1705165 43.4170986,51.1610783 Z" fill="#FFCC00"></path>
|
|
7
|
+
<ellipse fill="#00CA72" cx="75.4859275" cy="41.7733645" rx="9.84551454" ry="9.63887948"></ellipse>
|
|
8
|
+
</g>
|
|
9
|
+
<path d="M503.202609,55.1875506 C506.176521,55.1875506 507.955196,57.3025129 507.955196,60.7666753 L507.955196,72.6380154 L511.994693,72.6380154 L511.994693,60.4952146 C511.994693,54.6041128 509.219312,51.1885702 504.000784,51.1885702 C501.958752,51.1885702 498.71743,51.7476982 496.784792,55.5035795 C495.869893,53.2464791 493.788958,51.6744937 491.367734,51.4114111 C490.619714,51.2744323 489.857739,51.2295302 489.098808,51.2777065 C487.437631,51.4114111 484.479925,52.4445823 483.373824,54.7864371 L483.373824,51.6383036 L479.330276,51.6383036 L479.330276,72.6380154 L483.373824,72.6380154 L483.373824,61.305545 C483.373824,56.8973477 486.2586,55.1875506 489.147428,55.1875506 C491.853932,55.1875506 493.632607,57.2579448 493.632607,60.7221071 L493.632607,72.6380154 L497.651846,72.6380154 L497.651846,61.305545 C497.651846,57.7968145 499.758705,55.1470341 503.202609,55.1875506 L503.202609,55.1875506 Z M464.489075,69.1292849 C466.336628,69.1698014 468.119355,68.4324007 469.411832,67.0953556 C470.70836,65.7583105 471.397141,63.9391188 471.328263,62.0713072 C471.328263,57.8413826 468.216595,55.1875506 464.489075,55.1875506 C460.757503,55.1875506 457.649886,57.8413826 457.649886,62.0713072 C457.576957,63.9350671 458.265737,65.7502072 459.554163,67.0832006 C460.842588,68.4202458 462.617212,69.1616981 464.456662,69.1292849 L464.489075,69.1292849 Z M464.489075,73.0674905 C458.581766,73.0674905 453.650906,68.7038614 453.650906,62.0469973 C453.650906,55.3901332 458.581766,51.1642603 464.489075,51.1642603 C470.396383,51.1642603 475.36776,55.3901332 475.36776,62.0469973 C475.36776,68.7038614 470.368022,73.0877488 464.460713,73.0877488 L464.489075,73.0674905 Z M432.845673,62.0469973 L432.805157,62.0713072 C432.805157,55.4144431 437.86567,51.1885702 443.813495,51.1642603 C446.835152,51.1057984 449.740013,52.3307576 451.807404,54.5352347 L448.744355,57.1444985 C447.430247,55.8541316 445.655044,55.1423002 443.813495,55.1672924 C440.085975,55.1672924 436.844654,57.8211244 436.844654,62.0469973 C436.844654,64.9034119 438.542296,67.4762109 441.147508,68.5701569 C443.75272,69.6641029 446.750943,69.0563551 448.744355,67.0386325 L451.851972,69.6478963 C449.777943,71.875108 446.856442,73.1179237 443.813495,73.0674905 C437.910238,73.0674905 432.845673,68.7038614 432.845673,62.0469973 L432.845673,62.0469973 Z M419.908749,68.6066218 C419.900102,67.8651573 420.186381,67.1506316 420.704597,66.6202579 C421.222814,66.0898841 421.93051,65.7871156 422.671975,65.7785687 C423.413441,65.7871156 424.121137,66.0898841 424.639353,66.6202579 C425.15757,67.1506316 425.443849,67.8651573 425.435202,68.6066218 C425.36032,70.0825246 424.149698,71.2452182 422.671975,71.2604538 C421.194253,71.2452182 419.983631,70.0825246 419.908749,68.6066218 L419.908749,68.6066218 Z" fill="#333333"></path>
|
|
10
|
+
<path d="M430.961655,24.9419691 L416.574239,24.9419691 L406.489678,50.9414194 L396.457788,24.9419691 L382.070372,24.9419691 L399.561353,66.0257195 L388.682668,93.1879939 L402.964741,93.1879939 L430.961655,24.9419691 Z M343.462181,47.7932859 C343.462181,54.356962 349.19932,58.6760229 354.835168,58.6760229 C360.373776,58.6760229 365.815144,54.6567842 365.815144,47.7892343 C365.815144,40.9216843 360.373776,36.8983939 354.835168,36.8983939 C349.19932,36.8983939 343.462181,41.2215065 343.462181,47.7892343 L343.462181,47.7932859 Z M365.815144,70.733739 L365.815144,65.5354696 C362.897955,69.9517702 356.09118,71.6210508 352.598656,71.6210508 C341.035241,71.6210508 329.467775,62.504834 329.467775,47.7892343 C329.467775,33.0776862 341.031189,23.9614694 352.598656,23.9614694 C355.511793,23.9614694 362.318569,24.9338658 365.815144,30.0389472 L365.815144,24.9581758 L379.226112,24.9581758 L379.226112,70.7418423 L365.815144,70.7377907 L365.815144,70.733739 Z M325.651119,70.733739 L312.240151,70.733739 L312.240151,65.0452197 C309.999588,69.2589377 304.566322,71.7142388 298.926423,71.7142388 C287.261717,71.7142388 276.958366,62.399491 276.958366,47.9756102 C276.958366,33.2802688 287.261717,23.9533661 298.926423,23.9533661 C304.558219,23.9533661 310.007691,26.3033242 312.240151,30.5210938 L312.240151,0 L325.651119,0 L325.651119,70.733739 Z M311.948432,47.687943 C311.948432,40.8244446 306.993262,36.8011543 301.454654,36.8011543 C295.717515,36.8011543 290.952772,41.1161636 290.952772,47.687943 C290.952772,54.4704082 295.717515,58.7651702 301.450602,58.7651702 C307.094553,58.7732626 311.948432,54.2597223 311.948432,47.687943 L311.948432,47.687943 Z M243.799647,46.5048606 C243.799647,39.5441226 247.397514,37.1901129 252.158205,37.1901129 C256.724417,37.1901129 260.030565,40.2288518 260.030565,46.3063297 L260.030565,70.7256357 L273.538772,70.7256357 L273.538772,43.368882 C273.538772,30.3306662 267.120955,23.9533661 256.914844,23.9533661 C251.570715,23.9533661 246.226586,26.992105 243.795595,31.6028849 L243.795595,24.9419691 L230.295491,24.9419691 L230.295491,70.7256357 L243.799647,70.7256357 L243.799647,46.5048606 Z M202.865808,71.5116562 C190.038278,71.5116562 179.337865,62.0996688 179.337865,47.6838913 C179.337865,33.2600105 190.026123,23.9412111 202.865808,23.9412111 C215.705493,23.9412111 226.486938,33.2600105 226.486938,47.6838913 C226.486938,62.1077721 215.693338,71.5157078 202.865808,71.5157078 L202.865808,71.5116562 Z M202.865808,58.1817214 C208.497604,58.1817214 213.169159,54.0571398 213.169159,47.687943 C213.169159,41.5091738 208.501656,37.2914042 202.865808,37.2914042 C200.12336,37.2484935 197.483677,38.3339567 195.564731,40.2936782 C193.63509,42.2633848 192.586848,44.9315049 192.659697,47.687943 C192.663748,54.0652431 197.3272,58.1817214 202.865808,58.1817214 L202.865808,58.1817214 Z M155.121142,37.1941645 C159.103916,37.1941645 162.604543,40.3341947 162.604543,46.3103813 L162.604543,70.733739 L176.015511,70.733739 L176.015511,44.7302371 C176.015511,30.9060008 169.29382,23.9452628 158.520478,23.9452628 C155.319673,23.9452628 149.290815,24.9176592 144.915031,32.0809798 C142.3868,26.7854708 137.528869,24.0384508 130.349342,24.0384508 C125.258342,24.0125547 120.62244,26.9658427 118.494208,31.5907299 L118.494208,24.9460208 L104.977898,24.9460208 L104.977898,70.7296874 L118.482053,70.7296874 L118.482053,46.5048606 C118.482053,39.5441226 122.2744,37.1901129 126.354413,37.1901129 C130.243999,37.1901129 133.736523,40.2288518 133.837814,46.0146107 L133.837814,70.7296874 L147.346022,70.7296874 L147.346022,46.5048606 C147.346022,39.8479965 150.846649,37.1982162 155.121142,37.1982162 L155.121142,37.1941645 Z" fill="#333333"></path>
|
|
11
|
+
</g>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,15 @@
|
|
|
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
|
+
.netflix-original-0{fill:#D81F26;}
|
|
7
|
+
</style>
|
|
8
|
+
<path class="netflix-original-0" d="M27.6,56.8c-3,0.5-6.1,0.7-9.3,1.1L8.6,29.6v29.6c-3,0.3-5.8,0.7-8.6,1.2V6.1h8l11,30.7V6.1h8.5L27.6,56.8
|
|
9
|
+
L27.6,56.8z M44.2,26c3.3,0,8.3-0.2,11.3-0.2v8.5c-3.8,0-8.1,0-11.3,0.2V47c5-0.3,9.9-0.7,15-0.9v8.1l-23.4,1.9v-50h23.4v8.5h-15
|
|
10
|
+
C44.2,14.6,44.2,26,44.2,26z M90.7,14.6h-8.8v38.9c-2.9,0-5.7,0-8.5,0.1v-39h-8.8V6.1h26C90.7,6.1,90.7,14.6,90.7,14.6z M104.4,25.4
|
|
11
|
+
H116v8.5h-11.6v19.2h-8.3V6.1h23.6v8.5h-15.3C104.4,14.6,104.4,25.4,104.4,25.4z M133.5,45.7c4.8,0.1,9.7,0.5,14.4,0.7v8.4
|
|
12
|
+
c-7.6-0.5-15.1-1-22.8-1.1V6.1h8.5V45.7L133.5,45.7z M155,55.3c2.7,0.2,5.6,0.3,8.3,0.6V6.1H155V55.3z M200.4,6.1l-10.7,25.8
|
|
13
|
+
l10.7,28.4c-3.2-0.4-6.3-1-9.5-1.5l-6.1-15.7l-6.2,14.4c-3.1-0.5-6-0.7-9.1-1.1l10.9-24.8l-9.8-25.4h9.1l5.6,14.2l5.9-14.2
|
|
14
|
+
L200.4,6.1L200.4,6.1z"/>
|
|
15
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="512px" height="178px" viewBox="0 0 512 178" version="1.1" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMidYMid">
|
|
3
|
+
<title>Notion</title>
|
|
4
|
+
<g>
|
|
5
|
+
<path d="M10.6909756,7.66552529 L109.012413,0.403954086 C121.089365,-0.63256709 124.193006,0.0663443314 131.786264,5.58655996 L163.172125,27.6970374 C168.348808,31.4995894 170.072395,32.5361105 170.072395,36.6762723 L170.072395,157.937404 C170.072395,165.536585 167.312287,170.032125 157.651909,170.719191 L43.4746596,177.631306 C36.2249343,177.974839 32.7718381,176.938318 28.9752091,172.099245 L5.86374837,142.046054 C1.71766366,136.513992 0,132.37383 0,127.534757 L0,19.7484007 C0,13.5351966 2.76010782,8.35259076 10.6909756,7.66552529 Z" fill="#FFFFFF"></path>
|
|
6
|
+
<path d="M109.012413,0.403954086 L10.6909756,7.66552529 C2.76010782,8.35259076 0,13.5351966 0,19.7484007 L0,127.534757 C0,132.37383 1.71766366,136.513992 5.86374837,142.046054 L28.9752091,172.099245 C32.7718381,176.938318 36.2249343,177.974839 43.4746596,177.631306 L157.651909,170.719191 C167.306364,170.032125 170.072395,165.536585 170.072395,157.937404 L170.072395,36.6762723 C170.072395,32.7493377 168.520574,31.6180489 163.953958,28.2656433 C163.691191,28.07636 163.428605,27.8868246 163.166202,27.6970374 L131.786264,5.58655996 C124.193006,0.0663443314 121.089365,-0.63256709 109.012413,0.403954086 Z M46.0570781,34.6920746 C36.7343105,35.3199103 34.6198073,35.4620617 29.3246648,31.1560566 L15.8617355,20.4473121 C14.4935275,19.0613353 15.180593,17.3318256 18.6277663,16.9882929 L113.146652,10.0821004 C121.083442,9.38911194 125.217681,12.1551427 128.321322,14.5717178 L144.532513,26.3169835 C145.225501,26.6664392 146.949088,28.7335586 144.876045,28.7335586 L47.2653656,34.6091529 L46.0570781,34.6920746 Z M35.1884132,156.900883 L35.1884132,53.9595225 C35.1884132,49.4639821 36.5684671,47.3909397 40.7027058,47.041484 L152.812836,40.4788242 C156.615388,40.1352915 158.333052,42.5518666 158.333052,47.041484 L158.333052,149.295779 C158.333052,153.791319 157.640063,157.593871 151.432782,157.937404 L44.1498791,164.156531 C37.942598,164.500064 35.1884132,162.432944 35.1884132,156.900883 Z M141.091262,59.4797381 C141.778328,62.5893017 141.091262,65.6988652 137.981699,66.0542439 L132.810939,67.0789191 L132.810939,143.082575 C128.321322,145.49915 124.187083,146.879204 120.733987,146.879204 C115.213771,146.879204 113.833717,145.149694 109.699478,139.973011 L75.885196,86.7728214 L75.885196,138.243502 L86.5820946,140.666 C86.5820946,140.666 86.5820946,146.885127 77.9523154,146.885127 L54.1597122,148.265181 C53.4667237,146.879204 54.1597122,143.426107 56.5703643,142.739042 L62.7835684,141.015455 L62.7835684,72.9604364 L54.1597122,72.261525 C53.4667237,69.1519614 55.1903104,64.662344 60.0234605,64.3128883 L85.5514964,62.5952246 L120.733987,116.48248 L120.733987,68.8084287 L111.766598,67.7778305 C111.073609,63.9693556 113.833717,61.2033248 117.28089,60.865715 L141.091262,59.4797381 L141.091262,59.4797381 Z" fill="#000000"></path>
|
|
7
|
+
<path d="M245.412677,125.8704 L245.412677,79.019643 L246.224125,79.019643 L280.008792,125.8704 L290.646461,125.8704 L290.646461,57.0217022 L278.818273,57.0217022 L278.818273,103.825076 L278.006825,103.825076 L244.222158,57.0217022 L233.543028,57.0217022 L233.543028,125.864477 L245.4186,125.864477 L245.412677,125.8704 Z M324.075749,126.92469 C339.682797,126.92469 349.177331,116.713476 349.177331,99.7737585 C349.177331,82.8814248 339.635413,72.6228266 324.075749,72.6228266 C308.569393,72.6228266 298.980091,82.9288086 298.980091,99.7737585 C298.980091,116.713476 308.427241,126.92469 324.075749,126.92469 Z M324.075749,116.997779 C315.825041,116.997779 311.104427,110.701653 311.104427,99.7737585 C311.104427,88.8932476 315.825041,82.549738 324.075749,82.549738 C332.284997,82.549738 337.005611,88.8932476 337.005611,99.7737585 C337.005611,110.701653 332.332381,116.997779 324.075749,116.997779 Z M359.986766,60.8894069 L359.986766,74.0088035 L351.736057,74.0088035 L351.736057,83.4559537 L359.986766,83.4559537 L359.986766,111.939556 C359.986766,122.056002 364.760686,126.113242 376.736948,126.113242 C379.023218,126.113242 381.220643,125.876323 382.938306,125.538713 L382.938306,116.281099 C381.504945,116.42325 380.59873,116.518018 378.92845,116.518018 C373.970917,116.518018 371.773492,114.231748 371.773492,109.078757 L371.773492,83.4559537 L382.938306,83.4559537 L382.938306,74.0088035 L371.773492,74.0088035 L371.773492,60.8834839 L359.986766,60.8834839 L359.986766,60.8894069 Z M390.028111,125.8704 L401.814838,125.8704 L401.814838,73.6711938 L390.028111,73.6711938 L390.028111,125.8704 Z M395.897782,65.0414146 C399.806948,65.0414146 402.957972,61.8844673 402.957972,57.9279179 C402.957972,53.9654455 399.812871,50.7670373 395.897782,50.7670373 C392.036001,50.7670373 388.837592,53.9654455 388.837592,57.9279179 C388.837592,61.8844673 392.036001,65.0354916 395.897782,65.0354916 L395.897782,65.0414146 Z M434.148375,126.92469 C449.7495,126.92469 459.244034,116.713476 459.244034,99.7737585 C459.244034,82.8814248 449.702116,72.6228266 434.148375,72.6228266 C418.636095,72.6228266 409.046794,82.9288086 409.046794,99.7737585 C409.046794,116.713476 418.493944,126.92469 434.148375,126.92469 Z M434.148375,116.997779 C425.891744,116.997779 421.165207,110.701653 421.165207,99.7737585 C421.165207,88.8932476 425.891744,82.549738 434.148375,82.549738 C442.3517,82.549738 447.078237,88.8932476 447.078237,99.7737585 C447.078237,110.701653 442.399084,116.997779 434.148375,116.997779 Z M466.286455,125.8704 L478.120565,125.8704 L478.120565,95.4795993 C478.120565,87.7974967 482.562799,82.9288086 489.617066,82.9288086 C496.82533,82.9288086 500.159967,86.9386648 500.159967,94.9050704 L500.159967,125.8704 L512,125.8704 L512,92.0916558 C512,79.6356328 505.650567,72.6228266 494.011915,72.6228266 C486.229122,72.6228266 480.981363,76.2003054 478.499636,82.022593 L477.688188,82.022593 L477.688188,73.6711938 L466.286455,73.6711938 L466.286455,125.8704 L466.286455,125.8704 Z" fill="#000000"></path>
|
|
8
|
+
</g>
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,41 @@
|
|
|
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
|
+
.paypal-0{fill:#179BD7;}
|
|
7
|
+
.paypal-1{fill:#253B80;}
|
|
8
|
+
.paypal-2{fill:#222D65;}
|
|
9
|
+
</style>
|
|
10
|
+
<path class="paypal-0" d="M161.8,22.6c-1.6-1.8-4.3-2.8-8-2.8h-11c-0.8,0-1.4,0.5-1.5,1.3l-4.5,28.3c-0.1,0.6,0.3,1.1,0.9,1.1h5.7
|
|
11
|
+
c0.5,0,1-0.4,1.1-0.9l1.3-8c0.1-0.7,0.8-1.3,1.5-1.3h3.5c7.3,0,11.5-3.5,12.6-10.5C163.7,26.7,163.2,24.3,161.8,22.6z M155.1,30.1
|
|
12
|
+
c-0.6,4-3.6,4-6.6,4h-1.7l1.2-7.4c0.1-0.4,0.5-0.8,0.9-0.8h0.8c2,0,3.9,0,4.8,1.1C155.1,27.7,155.3,28.7,155.1,30.1z"/>
|
|
13
|
+
<path class="paypal-0" d="M186.8,30h-5.3c-0.5,0-0.8,0.3-0.9,0.8l-0.2,1.5l-0.4-0.5c-1.1-1.7-3.7-2.2-6.2-2.2c-5.8,0-10.8,4.4-11.8,10.6
|
|
14
|
+
c-0.5,3.1,0.2,6.1,2,8.1c1.6,1.9,3.9,2.7,6.7,2.7c4.7,0,7.3-3,7.3-3l-0.2,1.5c-0.1,0.6,0.3,1.1,0.9,1.1h4.8c0.8,0,1.4-0.6,1.5-1.3
|
|
15
|
+
l2.9-18.1C187.8,30.5,187.3,30,186.8,30z M179.4,40.3c-0.5,3-2.9,5-6,5c-1.5,0-2.8-0.5-3.5-1.4c-0.8-0.9-1.1-2.2-0.8-3.7
|
|
16
|
+
c0.5-3,2.9-5.1,5.9-5.1c1.5,0,2.7,0.5,3.5,1.4C179.3,37.5,179.6,38.8,179.4,40.3z"/>
|
|
17
|
+
<path class="paypal-0" d="M199,19.8h-5.1c-0.5,0-0.8,0.3-0.9,0.8l-4.5,28.8c-0.1,0.6,0.3,1.1,0.9,1.1h4.6c0.8,0,1.4-0.5,1.5-1.3l4.5-28.3
|
|
18
|
+
C200,20.3,199.6,19.8,199,19.8z"/>
|
|
19
|
+
<path class="paypal-1" d="M83.1,22.6c-1.6-1.8-4.4-2.8-8-2.8H64c-0.8,0-1.4,0.5-1.5,1.3L58,49.4c-0.1,0.6,0.3,1.1,0.9,1.1h5.3
|
|
20
|
+
c0.8,0,1.4-0.5,1.5-1.3l1.2-7.6c0.1-0.7,0.8-1.3,1.5-1.3H72c7.3,0,11.5-3.5,12.6-10.5C85,26.7,84.5,24.3,83.1,22.6z M76.3,30.1
|
|
21
|
+
c-0.6,4-3.6,4-6.6,4h-1.7l1.2-7.4c0.1-0.4,0.5-0.8,0.9-0.8H71c2,0,3.9,0,4.8,1.1C76.4,27.7,76.6,28.7,76.3,30.1z"/>
|
|
22
|
+
<path class="paypal-1" d="M108,30h-5.3c-0.5,0-0.8,0.3-0.9,0.8l-0.2,1.5l-0.4-0.5c-1.1-1.7-3.7-2.2-6.2-2.2c-5.8,0-10.8,4.4-11.8,10.6
|
|
23
|
+
c-0.5,3.1,0.2,6.1,2,8.1c1.6,1.9,3.9,2.7,6.7,2.7c4.7,0,7.3-3,7.3-3l-0.2,1.5c-0.1,0.6,0.3,1.1,0.9,1.1h4.8c0.8,0,1.4-0.6,1.5-1.3
|
|
24
|
+
L109,31C109,30.5,108.6,30,108,30z M100.7,40.3c-0.5,3-2.9,5-6,5c-1.5,0-2.8-0.5-3.5-1.4c-0.8-0.9-1.1-2.2-0.8-3.7
|
|
25
|
+
c0.5-3,2.9-5.1,5.9-5.1c1.5,0,2.7,0.5,3.5,1.4C100.6,37.5,100.9,38.8,100.7,40.3z"/>
|
|
26
|
+
<path class="paypal-1" d="M136.2,30h-5.3c-0.5,0-1,0.3-1.3,0.7l-7.3,10.8l-3.1-10.4c-0.2-0.6-0.8-1.1-1.5-1.1h-5.2
|
|
27
|
+
c-0.6,0-1.1,0.6-0.9,1.2l5.8,17.2l-5.5,7.8c-0.4,0.6,0,1.5,0.8,1.5h5.3c0.5,0,1-0.2,1.3-0.7l17.7-25.5C137.4,30.8,136.9,30,136.2,30
|
|
28
|
+
z"/>
|
|
29
|
+
<path class="paypal-0" d="M39.8,22.9c-0.6-0.7-1.3-1.2-2.2-1.7l0,0c0,0.3-0.1,0.6-0.2,0.9c-0.1,0.3-0.1,0.6-0.2,0.8
|
|
30
|
+
C35.4,31.4,30,35,23,35.8c-0.5,0.1-0.9,0.1-1.4,0.1c-0.5,0-1.1,0-1.6,0h-4.4c-1.1,0-2,0.8-2.1,1.8l-2,12.8l-0.3,1.6l-0.6,4.1
|
|
31
|
+
c-0.1,0.7,0.4,1.3,1.1,1.3h7.9c0.9,0,1.7-0.7,1.9-1.6l0.1-0.4l1.5-9.4l0.1-0.5c0.1-0.9,0.9-1.6,1.9-1.6h1.2C33.7,44,39.7,41,41.4,32
|
|
32
|
+
C42.1,28.2,41.8,25.1,39.8,22.9z"/>
|
|
33
|
+
<path class="paypal-1" d="M13.4,37.8l0.1-0.5l2.5-16c0.1-0.6,0.5-1.2,1.1-1.4c0.2-0.1,0.5-0.2,0.8-0.2h11.9c1.4,0,2.7,0.1,3.9,0.3
|
|
34
|
+
c0.3,0.1,0.7,0.1,1,0.2c0.3,0.1,0.6,0.2,0.9,0.2c0.1,0,0.2,0.1,0.3,0.1c0,0,0.1,0,0.1,0c0,0,0,0,0.1,0c0.6,0.2,1.1,0.4,1.6,0.7
|
|
35
|
+
c0,0,0,0,0,0c0.6-3.8,0-6.4-2.1-8.7c-2.3-2.6-6.3-3.7-11.5-3.7H8.9c-1.1,0-2,0.8-2.1,1.8l-6.3,40c-0.1,0.8,0.5,1.5,1.3,1.5h9.3
|
|
36
|
+
l0.3-1.6L13.4,37.8z"/>
|
|
37
|
+
<path class="paypal-2" d="M37.7,21.2c-0.5-0.3-1-0.5-1.6-0.7c0,0,0,0-0.1,0c0,0-0.1,0-0.1,0c-0.1,0-0.2-0.1-0.3-0.1
|
|
38
|
+
c-0.3-0.1-0.6-0.2-0.9-0.2c-0.3-0.1-0.7-0.1-1-0.2c-1.2-0.2-2.5-0.3-3.9-0.3H17.9c-0.3,0-0.6,0.1-0.8,0.2c-0.5,0.3-1,0.8-1.1,1.4
|
|
39
|
+
l-2.5,16l-0.1,0.5c0.2-1.1,1.1-1.8,2.1-1.8H20c0.5,0,1.1,0,1.6,0c0.5,0,1-0.1,1.4-0.1C30,35,35.4,31.4,37.3,23
|
|
40
|
+
c0.1-0.3,0.1-0.5,0.2-0.8C37.6,21.8,37.6,21.5,37.7,21.2C37.7,21.3,37.7,21.3,37.7,21.2z"/>
|
|
41
|
+
</svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="511px" height="176px" viewBox="0 0 511 176" 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(210.936183, 42.355298)">
|
|
5
|
+
<circle fill="#FF4500" cx="249.727023" cy="18.136916" r="11.1135267"></circle>
|
|
6
|
+
<path d="M156.208855,0 C159.5504,0 162.303519,2.63789375 162.489416,5.93488402 L162.49942,6.29056489 L162.49942,87.1201221 C162.49942,90.5810076 159.66974,93.410687 156.208855,93.410687 C153.170076,93.410687 150.547542,91.2102595 150.023817,88.2730992 C145.726534,92.5723359 140.274321,94.7747176 133.878229,94.7747176 C117.314443,94.7747176 103.894962,79.7821069 103.894962,61.3305649 C103.894962,42.8790229 117.314443,27.8864122 133.878229,27.8864122 C140.028317,27.8864122 145.208172,29.8250725 149.41953,33.7962059 L149.920244,34.2825038 L149.920244,6.29056489 C149.920244,2.82967939 152.749924,0 156.208855,0 Z M221.838656,0 C225.180201,0 227.933321,2.63789375 228.119218,5.93488402 L228.129221,6.29056489 L228.129221,87.1201221 C228.129221,90.5810076 225.299542,93.410687 221.838656,93.410687 C218.797924,93.410687 216.177344,91.2102595 215.653618,88.2730992 C211.354382,92.5723359 205.904122,94.7747176 199.508031,94.7747176 C182.944244,94.7747176 169.524763,79.7821069 169.524763,61.3305649 C169.524763,42.8790229 182.944244,27.8864122 199.508031,27.8864122 C205.658119,27.8864122 210.837973,29.8250725 215.047594,33.7962059 L215.548092,34.2825038 L215.548092,6.29056489 C215.548092,2.82967939 218.379725,0 221.838656,0 Z M69.8215573,27.7808855 C83.7667176,27.7808855 95.507542,38.4762137 98.8629008,52.943145 L98.9764909,53.5483798 C99.1451936,54.5108321 99.3018848,55.7358723 99.386626,57.4514809 C99.5895752,61.3188972 96.6334781,65.283883 91.4742678,65.513772 L90.9992061,65.5242748 L90.9992061,65.3132214 L52.7340458,65.3132214 C54.3071756,74.8536183 61.4360916,82.0880611 69.8215573,82.0880611 C76.9524275,82.0880611 81.3552366,78.1054046 83.6611908,76.1121221 C86.0726718,74.1207939 89.3225038,73.491542 91.943084,75.273771 C95.0893435,77.4761527 95.6130687,81.9844885 92.9924885,84.9196947 C87.6458015,90.8956336 80.2022595,94.6691908 69.8215573,94.6691908 C53.257771,94.6691908 39.8382901,79.6765802 39.8382901,61.2250382 C39.8382901,42.7734962 53.257771,27.7808855 69.8215573,27.7808855 Z M281.651439,13.9323237 L282.016244,13.9432061 C285.251769,14.1448375 287.705938,16.881331 287.877109,20.0850803 L287.886656,20.4428702 L287.886656,29.2504427 L293.653496,29.2504427 C296.799756,29.2504427 299.420336,31.9745954 299.209282,35.2244275 C299.008225,38.148209 296.577619,40.2968878 293.781559,40.4578457 L293.444397,40.467542 L287.886656,40.467542 L287.886656,87.2256489 C287.886656,90.6845802 285.162504,93.410687 281.492519,93.6197863 C278.152861,93.6197863 275.397985,90.9818925 275.211965,87.6866612 L275.201954,87.3311756 L275.201954,40.5730687 L269.855267,40.5730687 C266.710962,40.5730687 264.088427,37.8469618 264.299481,34.5971298 C264.500538,31.6733482 266.931144,29.5246694 269.727204,29.3637115 L270.064366,29.3540153 L275.307481,29.3540153 L275.307481,20.233771 C275.307481,16.6861191 278.147051,13.9236858 281.651439,13.9323237 L281.651439,13.9323237 Z M35.2263817,28.2010382 C38.1615878,28.7247634 40.467542,31.241771 40.467542,34.3860763 C40.467542,37.519843 38.1271101,40.1666253 35.1406324,40.5409226 L34.806229,40.5730687 L33.5477252,40.5730687 C21.57384,39.2300233 12.852866,48.5607701 12.5873624,60.055422 L12.5811298,60.5957863 L12.5811298,87.1201221 C12.5811298,90.7901069 9.54039695,93.6197863 5.87041221,93.410687 C2.63488768,93.2090556 0.180718492,90.4725621 0.00954763759,87.2688129 L1.42108547e-14,86.9110229 L1.42108547e-14,35.5390534 C1.42108547e-14,32.0801221 2.82967939,29.2504427 6.29056489,29.2504427 C9.32644591,29.2504427 12.3641487,31.4966603 12.5700356,35.1430496 L12.5811298,35.5390534 L12.5811298,36.3793588 C17.5076641,30.1923664 26.1041832,26.8389618 35.2263817,28.2010382 Z M249.727023,34.806229 C253.066681,34.806229 255.819735,37.4441228 256.00563,40.741113 L256.015634,41.0967939 L256.015634,87.1201221 C256.015634,90.5810076 253.185954,93.410687 249.727023,93.410687 C246.385478,93.410687 243.632359,90.7727933 243.446462,87.475803 L243.436458,87.1201221 L243.436458,41.0967939 C243.436458,37.6359084 246.266137,34.806229 249.727023,34.806229 Z M133.983756,40.3620153 C124.337832,40.3620153 116.579664,49.7988397 116.579664,61.3305649 C116.579664,72.9678168 124.337832,82.2971603 133.983756,82.2971603 C143.524153,82.2971603 151.387847,72.9678168 151.387847,61.3305649 C151.387847,49.693313 143.629679,40.3620153 133.983756,40.3620153 Z M199.508031,40.3620153 C189.862107,40.3620153 182.105893,49.7988397 182.105893,61.3305649 C182.105893,72.9678168 189.862107,82.2971603 199.508031,82.2971603 C209.153954,82.2971603 216.912122,72.9678168 216.912122,61.3305649 C216.912122,49.693313 209.153954,40.3620153 199.508031,40.3620153 Z M69.7179847,40.467542 C62.3404858,40.467542 55.9652332,45.9752313 53.4284895,53.8570417 L53.257771,54.4107481 L86.1781985,54.4107481 C83.7667176,46.3379542 77.2650992,40.467542 69.7179847,40.467542 Z" fill="#222222" fill-rule="nonzero"></path>
|
|
7
|
+
</g>
|
|
8
|
+
<g transform="translate(-0.000000, 0.000000)">
|
|
9
|
+
<circle fill="#FF4500" cx="87.8549008" cy="87.8549008" r="87.8549008"></circle>
|
|
10
|
+
<path d="M146.459359,87.8549008 C146.459359,80.7259847 140.694473,75.0646718 133.66913,75.0646718 C130.210198,75.0646718 127.063939,76.4267481 124.757985,78.6291298 C115.952366,72.3385649 103.894962,68.2503817 90.4754809,67.7266565 L96.3458931,40.2584427 L115.426687,44.346626 C115.63774,49.1695878 119.620397,53.0486718 124.548885,53.0486718 C129.580947,53.0486718 133.66913,48.9604885 133.66913,43.9264733 C133.66913,38.8944122 129.580947,34.806229 124.548885,34.806229 C120.984427,34.806229 117.838168,36.903084 116.370565,39.9438168 L95.0893435,35.4354809 C94.4600916,35.3299542 93.8308397,35.4354809 93.410687,35.7501069 C92.8869618,36.0647328 92.5723359,36.588458 92.4687634,37.2177099 L85.967145,67.830229 C72.3385649,68.2503817 60.0720611,72.3385649 51.160916,78.7346565 C48.8549618,76.5322748 45.7087023,75.1701985 42.249771,75.1701985 C35.120855,75.1701985 29.459542,80.935084 29.459542,87.9604275 C29.459542,93.2015878 32.6038473,97.6043969 37.0086107,99.5976794 C36.7975573,100.854229 36.6939847,102.112733 36.6939847,103.476763 C36.6939847,123.184855 59.6538626,139.22687 87.9604275,139.22687 C116.266992,139.22687 139.22687,123.290382 139.22687,103.476763 C139.22687,102.21826 139.121344,100.854229 138.912244,99.5976794 C143.315053,97.6043969 146.459359,93.0960611 146.459359,87.8549008 Z M58.604458,96.975145 C58.604458,91.943084 62.6926412,87.8549008 67.7266565,87.8549008 C72.7587176,87.8549008 76.8469008,91.943084 76.8469008,96.975145 C76.8469008,102.007206 72.7587176,106.097344 67.7266565,106.097344 C62.6926412,106.200916 58.604458,102.007206 58.604458,96.975145 Z M109.661802,121.193527 C103.371237,127.484092 91.4193588,127.904244 87.9604275,127.904244 C84.3959695,127.904244 72.4440916,127.378565 66.2570992,121.193527 C65.3151756,120.249649 65.3151756,118.782046 66.2570992,117.838168 C67.2009771,116.896244 68.6685802,116.896244 69.612458,117.838168 C73.5970687,121.822779 81.9844885,123.184855 87.9604275,123.184855 C93.9363664,123.184855 102.427359,121.822779 106.306443,117.838168 C107.250321,116.896244 108.717924,116.896244 109.661802,117.838168 C110.500153,118.782046 110.500153,120.249649 109.661802,121.193527 Z M107.983145,106.200916 C102.951084,106.200916 98.8629008,102.112733 98.8629008,97.0806718 C98.8629008,92.0486107 102.951084,87.9604275 107.983145,87.9604275 C113.01716,87.9604275 117.105344,92.0486107 117.105344,97.0806718 C117.105344,102.007206 113.01716,106.200916 107.983145,106.200916 Z" fill="#FFFFFF" fill-rule="nonzero"></path>
|
|
11
|
+
</g>
|
|
12
|
+
</g>
|
|
13
|
+
</svg>
|