summaryrefslogtreecommitdiff
path: root/deps/npm/docs/src
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/docs/src')
-rw-r--r--deps/npm/docs/src/components/Accordion.js57
-rw-r--r--deps/npm/docs/src/components/Button.js22
-rw-r--r--deps/npm/docs/src/components/DocLinks.js74
-rw-r--r--deps/npm/docs/src/components/FoundTypo.js23
-rw-r--r--deps/npm/docs/src/components/MobileSidebar.js33
-rw-r--r--deps/npm/docs/src/components/Sidebar.js30
-rw-r--r--deps/npm/docs/src/components/home/DarkBlock.js41
-rw-r--r--deps/npm/docs/src/components/home/FeatureCard.js39
-rw-r--r--deps/npm/docs/src/components/home/Features.js83
-rw-r--r--deps/npm/docs/src/components/home/Footer.js29
-rw-r--r--deps/npm/docs/src/components/home/Terminal.js120
-rw-r--r--deps/npm/docs/src/components/home/Windows.js73
-rw-r--r--deps/npm/docs/src/components/home/cubes.js101
-rw-r--r--deps/npm/docs/src/components/home/hero.js25
-rw-r--r--deps/npm/docs/src/components/layout.js18
-rw-r--r--deps/npm/docs/src/components/links.js50
-rw-r--r--deps/npm/docs/src/components/navbar.js136
-rw-r--r--deps/npm/docs/src/components/scripts.js23
-rw-r--r--deps/npm/docs/src/components/seo.js88
-rw-r--r--deps/npm/docs/src/images/background-boxes.svg2782
-rw-r--r--deps/npm/docs/src/images/background-cubes.svg2767
-rw-r--r--deps/npm/docs/src/images/background-rectangles.svg1
-rw-r--r--deps/npm/docs/src/images/bracket.svg1
-rw-r--r--deps/npm/docs/src/images/cli-logo.svg1
-rw-r--r--deps/npm/docs/src/images/down-carrot.svg1
-rw-r--r--deps/npm/docs/src/images/hamburger-close.svg1
-rw-r--r--deps/npm/docs/src/images/hamburger.svg1
-rw-r--r--deps/npm/docs/src/images/manager-icon.svg1
-rw-r--r--deps/npm/docs/src/images/network-icon.svg1
-rw-r--r--deps/npm/docs/src/images/npm-icon.pngbin0 -> 527 bytes
-rw-r--r--deps/npm/docs/src/images/orange-cube.svg1
-rw-r--r--deps/npm/docs/src/images/pink-gradient-cube.svg1
-rw-r--r--deps/npm/docs/src/images/purple-cube.svg1
-rw-r--r--deps/npm/docs/src/images/purple-gradient-cube.svg1
-rw-r--r--deps/npm/docs/src/images/red-cube.svg1
-rw-r--r--deps/npm/docs/src/images/right-shadow-box.svg2809
-rw-r--r--deps/npm/docs/src/images/terminal-icon.svg1
-rw-r--r--deps/npm/docs/src/images/test-icon.svg1
-rw-r--r--deps/npm/docs/src/images/up-carrot.svg1
-rw-r--r--deps/npm/docs/src/images/x.svg1
-rw-r--r--deps/npm/docs/src/main.css167
-rw-r--r--deps/npm/docs/src/pages/404.js19
-rw-r--r--deps/npm/docs/src/pages/index.js23
-rw-r--r--deps/npm/docs/src/templates/Page.js46
-rw-r--r--deps/npm/docs/src/theme.js50
45 files changed, 9745 insertions, 0 deletions
diff --git a/deps/npm/docs/src/components/Accordion.js b/deps/npm/docs/src/components/Accordion.js
new file mode 100644
index 0000000000..e7086f4ec0
--- /dev/null
+++ b/deps/npm/docs/src/components/Accordion.js
@@ -0,0 +1,57 @@
+import React from 'react'
+import styled from 'styled-components'
+import downCarrot from '../images/down-carrot.svg'
+import upCarrot from '../images/up-carrot.svg'
+
+const SectionButton = styled.button`
+ outline: none;
+ background-color: transparent;
+ cursor: pointer;
+ color: red;
+ border: none;
+ font-size: 18px;
+ font-weight: bold;
+ padding: 5px 0;
+ transition: opacity .5s;
+
+ &:after {
+ background: center / contain no-repeat url(${(props) => props.isOpen ? upCarrot : downCarrot});
+ content: '';
+ height: 11px;
+ width: 28px;
+ display: inline-block;
+ }
+
+ &:hover {
+ opacity: .6;
+ }
+`
+
+class Accordion extends React.Component {
+ constructor (props) {
+ super(props)
+ this.state = {
+ isOpen: true
+ }
+ this.onHide = this.onHide.bind(this)
+ }
+
+ onHide () {
+ this.setState({isOpen: !this.state.isOpen})
+ }
+
+ render () {
+ return (
+ <div>
+ <SectionButton isOpen={this.state.isOpen} onClick={this.onHide}>{this.props.section}</SectionButton>
+ {this.state.isOpen &&
+ <div>
+ {this.props.children}
+ </div>
+ }
+ </div>
+ )
+ }
+}
+
+export default Accordion
diff --git a/deps/npm/docs/src/components/Button.js b/deps/npm/docs/src/components/Button.js
new file mode 100644
index 0000000000..f8372ba7cd
--- /dev/null
+++ b/deps/npm/docs/src/components/Button.js
@@ -0,0 +1,22 @@
+import {Link} from 'gatsby'
+import {colors} from '../theme'
+import styled from 'styled-components'
+
+export const LinkButton = styled(Link)`
+ background-color: ${colors.red};
+ color: ${colors.white};
+ font-size: 20px;
+ border-radius: 1px;
+ padding: 20px;
+ box-shadow: 8px 8px 0 rgba(251,59,73,.2);
+ text-decoration: none;
+ text-align: center;
+ display: inline-block;
+ min-width: 180px;
+ font-weight: 700;
+ transition: opacity .5s;
+
+ &:hover {
+ opacity: .8;
+ }
+`
diff --git a/deps/npm/docs/src/components/DocLinks.js b/deps/npm/docs/src/components/DocLinks.js
new file mode 100644
index 0000000000..3d43b9c92f
--- /dev/null
+++ b/deps/npm/docs/src/components/DocLinks.js
@@ -0,0 +1,74 @@
+import React from 'react'
+import styled from 'styled-components'
+import {StaticQuery, graphql} from 'gatsby'
+import {Flex} from 'rebass'
+import {SidebarLink} from './links'
+import Accordion from './Accordion'
+
+const IS_STATIC = process.env.GATSBY_IS_STATIC
+
+const LinkDesc = styled.span`
+ font-size: 11px;
+ line-height: 1.5;
+ text-transform: lowercase;
+ display: block;
+ font-weight: 400;
+ color: ${(props) => props.theme.colors.darkGray};
+`
+
+const DocLinks = ({data}) => {
+ const linkInfo = data.allMarkdownRemark.nodes
+ const sections = ['cli-commands', 'configuring-npm', 'using-npm']
+ let sortedData = {}
+
+ sections.map((section) => (
+ sortedData[section] = linkInfo.filter(function (item) {
+ return item.frontmatter.section === section
+ })
+ ))
+
+ return sections.map((section, index) => (
+ <Accordion key={index} section={section}>
+ {sortedData[section].map((linkData, index) => {
+ const title = section === 'cli-commands'
+ ? linkData.frontmatter.title.replace(/(npm-)+([a-zA-Z\\.-]*)/, 'npm $2')
+ : linkData.frontmatter.title
+
+ return (
+ <Flex flexDirection='column' key={index}>
+ <SidebarLink
+ to={`${linkData.fields.slug}${IS_STATIC ? '/index.html' : ''}`}
+ activeClassName='active-sidebar-link'
+ >
+ {title}
+ <LinkDesc>{linkData.frontmatter.description}</LinkDesc>
+ </SidebarLink>
+ </Flex>
+ )
+ })
+ }
+ </Accordion>
+ ))
+}
+
+export default props => (
+ <StaticQuery
+ query={graphql`
+ query sortedLinkData {
+ allMarkdownRemark(sort: {fields: frontmatter___title}) {
+ nodes {
+ fields {
+ slug
+ }
+ frontmatter {
+ description
+ section
+ title
+ }
+ }
+ }
+ }
+ `}
+ render={data => <DocLinks data={data} {...props} />}
+ />
+)
diff --git a/deps/npm/docs/src/components/FoundTypo.js b/deps/npm/docs/src/components/FoundTypo.js
new file mode 100644
index 0000000000..b92f9a09cf
--- /dev/null
+++ b/deps/npm/docs/src/components/FoundTypo.js
@@ -0,0 +1,23 @@
+import React from 'react'
+import styled from 'styled-components'
+
+const Container = styled.div`
+ margin: 80px 0;
+ border-top: 1px solid black;
+ padding: 20px 0;
+`
+
+const FoundTypo = () => {
+ return (
+ <Container>
+ <p>👀 Found a typo? <a href='https://github.com/npm/cli/'>Let us know!</a></p>
+ <p>The current stable version of npm is <a href='https://github.com/npm/cli/'>here</a>. To upgrade, run: <code className='language-text'>npm install npm@latest -g</code></p>
+ <p>
+ To report bugs or submit feature requests for the docs, please post <a href='https://npm.community/c/support/docs-needed'>here</a>.
+ Submit npm issues <a href='https://npm.community/c/bugs'>here.</a>
+ </p>
+ </Container>
+ )
+}
+
+export default FoundTypo
diff --git a/deps/npm/docs/src/components/MobileSidebar.js b/deps/npm/docs/src/components/MobileSidebar.js
new file mode 100644
index 0000000000..c1470883e1
--- /dev/null
+++ b/deps/npm/docs/src/components/MobileSidebar.js
@@ -0,0 +1,33 @@
+import React from 'react'
+import styled from 'styled-components'
+import DocLinks from './DocLinks'
+import {} from '../components/Sidebar'
+
+const MobileContainer = styled.div`
+ border-left: 1px solid #86838333;
+ border-bottom: 1px solid #86838333;
+ padding: 30px 30px 200px;
+ width: 340px;
+ display: block;
+ height: calc(100vh - 54px);
+ overflow: scroll;
+ position: fixed;
+ top: 54px;
+ right: 0px;
+ background-color: ${(props) => props.theme.colors.white};
+ z-index: 100;
+
+ @media screen and (min-width: ${(props) => props.theme.breakpoints.TABLET}) {
+ display: none;
+ }
+`
+
+const MobileSidebar = () => {
+ return (
+ <MobileContainer flexDirection='column'>
+ <DocLinks />
+ </MobileContainer>
+ )
+}
+
+export default MobileSidebar
diff --git a/deps/npm/docs/src/components/Sidebar.js b/deps/npm/docs/src/components/Sidebar.js
new file mode 100644
index 0000000000..ea03729cfa
--- /dev/null
+++ b/deps/npm/docs/src/components/Sidebar.js
@@ -0,0 +1,30 @@
+import React from 'react'
+import styled from 'styled-components'
+import DocLinks from './DocLinks'
+
+const Container = styled.nav`
+ border-right: 1px solid #86838333;
+ padding: 30px;
+ height: 100vh;
+ display: none;
+ width: 380px;
+ position: sticky;
+ overflow: scroll;
+ padding-bottom: 200px;
+ top: 54px;
+ background-color: ${(props) => props.theme.colors.white};
+
+ @media screen and (min-width: ${(props) => props.theme.breakpoints.TABLET}) {
+ display: block;
+ }
+`
+
+const Sidebar = () => {
+ return (
+ <Container>
+ <DocLinks />
+ </Container>
+ )
+}
+
+export default Sidebar
diff --git a/deps/npm/docs/src/components/home/DarkBlock.js b/deps/npm/docs/src/components/home/DarkBlock.js
new file mode 100644
index 0000000000..ebe7753314
--- /dev/null
+++ b/deps/npm/docs/src/components/home/DarkBlock.js
@@ -0,0 +1,41 @@
+import React from 'react'
+import styled from 'styled-components'
+import {Flex, Box} from 'rebass'
+import {LinkButton} from '../Button'
+
+const Container = styled(Flex)`
+ background-color: ${(props) => props.theme.colors.purpleBlack};
+ color: ${(props) => props.theme.colors.white};
+`
+
+const ContentWrapper = styled(Flex)`
+ max-width: 640px;
+ align-items: center;
+`
+
+const Text = styled.p`
+ line-height: 1.5;
+ text-align: center;
+`
+
+const aStyle = {
+ color: '#fb3b49',
+ textDecoration: 'none'
+}
+
+const DarkBlock = () => {
+ return (
+ <Container>
+ <ContentWrapper px={4} py={6} m='auto' flexDirection='column'>
+ <Text>
+ <p>The current stable version of npm is <a href={'https://github.com/npm/cli/releases/latest'} style={aStyle}>available on GitHub.</a></p>
+ <p>To upgrade, run: <code className={'language-text'} style={{color: 'white'}}>npm install npm@latest -g</code></p>
+ <p>To report bugs or submit feature requests, <a href={'#'} style={aStyle}>please XXX.</a></p>
+ </Text>
+ <Box pt={4}><LinkButton to='cli-commands/npm' w={'120px'}>read docs</LinkButton></Box>
+ </ContentWrapper>
+ </Container>
+ )
+}
+
+export default DarkBlock
diff --git a/deps/npm/docs/src/components/home/FeatureCard.js b/deps/npm/docs/src/components/home/FeatureCard.js
new file mode 100644
index 0000000000..86a93a9854
--- /dev/null
+++ b/deps/npm/docs/src/components/home/FeatureCard.js
@@ -0,0 +1,39 @@
+import React from 'react'
+import styled from 'styled-components'
+import {Flex, Image, Text} from 'rebass'
+
+const Card = styled(Flex)`
+ background-color: #f2f2f2ab;
+ box-shadow: 5px 5px 1px 1px ${(props) => props.theme.colors.red};
+ border-radius: 2px;
+`
+
+const Desc = styled.p`
+ padding: 5px 0;
+ font-size: 16px;
+`
+
+const Title = styled(Text)`
+ font-size: 24px;
+ font-weight: 500;
+ text-shadow: 1px 2px 2px #f061df6e;
+`
+
+const Icon = styled(Image)`
+ width: 110px;
+ flex-shrink: 0;
+`
+
+const FeatureCard = ({icon, text, title}) => {
+ return (
+ <Card alignItems='center' flexDirection={['column', 'row']} p={5} m={4}>
+ <Icon src={icon} />
+ <Flex flexDirection='column' pl={[0, 4]} pt={2}>
+ <Title textAlign={['center', 'left']}>{title}</Title>
+ <Desc>{text}</Desc>
+ </Flex>
+ </Card>
+ )
+}
+
+export default FeatureCard
diff --git a/deps/npm/docs/src/components/home/Features.js b/deps/npm/docs/src/components/home/Features.js
new file mode 100644
index 0000000000..0aac994bee
--- /dev/null
+++ b/deps/npm/docs/src/components/home/Features.js
@@ -0,0 +1,83 @@
+import React from 'react'
+import styled from 'styled-components'
+import FeatureCard from './FeatureCard'
+import { FeatureLink } from '../links'
+import { Flex } from 'rebass'
+import rectangles from '../../images/background-rectangles.svg'
+import terminalIcon from '../../images/terminal-icon.svg'
+import networkIcon from '../../images/network-icon.svg'
+import npmIcon from '../../images/npm-icon.png'
+import managerIcon from '../../images/manager-icon.svg'
+
+const ContainerInner = styled(Flex)`
+ background: linear-gradient(84deg, #fb881799, #ff4b0199, #c1212799, #e02aff99);
+`
+
+const Container = styled.div`
+ background: top / cover no-repeat url(${rectangles});
+`
+
+const ContentWrapper = styled(Flex)`
+ max-width: 640px;
+`
+
+const featureTexts = {
+ textOne: 'Download, install, and configure.',
+ textTwo: 'All available npm commands.',
+ textThree: 'How npm things work.',
+ textFour: 'Publish your own public or private packages to the registry with a free or paid account on npmjs.com from npm, Inc.'
+}
+
+const featureTitles = {
+ titleOne: 'Getting Started',
+ titleTwo: 'Command Reference',
+ titleThree: 'Using npm',
+ titleFour: 'Publishing'
+}
+
+const aStyle = {
+ color: '#231f20',
+ textDecoration: 'none'
+}
+const productsLink = `https://www.npmjs.com/products`
+
+const Features = () => {
+ return (
+ <Container>
+ <ContainerInner>
+ <ContentWrapper m='auto' py={5} flexDirection='column'>
+ <FeatureLink to={'/configuring-npm/install'}>
+ <FeatureCard
+ icon={terminalIcon}
+ title={featureTitles.titleOne}
+ text={featureTexts.textOne}
+ />
+ </FeatureLink>
+ <FeatureLink to={'/cli-commands/npm'}>
+ <FeatureCard
+ icon={managerIcon}
+ title={featureTitles.titleTwo}
+ text={featureTexts.textTwo}
+ />
+ </FeatureLink>
+ <FeatureLink to={'/using-npm/coding-style'}>
+ <FeatureCard
+ icon={networkIcon}
+ title={featureTitles.titleThree}
+ text={featureTexts.textThree}
+ />
+ </FeatureLink>
+ <a href={productsLink} style={aStyle} target={'_blank'}>
+ <FeatureCard
+ icon={npmIcon}
+ title={featureTitles.titleFour}
+ text={featureTexts.textFour}
+ />
+ </a>
+ </ContentWrapper>
+ </ContainerInner>
+ </Container>
+ )
+}
+
+export default Features
diff --git a/deps/npm/docs/src/components/home/Footer.js b/deps/npm/docs/src/components/home/Footer.js
new file mode 100644
index 0000000000..a9b70a8598
--- /dev/null
+++ b/deps/npm/docs/src/components/home/Footer.js
@@ -0,0 +1,29 @@
+import React from 'react'
+import boxes from '../../images/background-boxes.svg'
+import styled from 'styled-components'
+import {Flex, Box} from 'rebass'
+
+const Container = styled(Flex)`
+ background: center / cover no-repeat url(${boxes});
+ height: 380px;
+ background-color: ${(props) => props.theme.colors.offWhite};
+ `
+
+const ContentWrapper = styled(Box)`
+ align-content: center;
+ width: 100%;
+ text-align: center;
+ background-color: ${(props) => props.theme.colors.white};
+`
+
+const Footer = () => {
+ return (
+ <Container>
+ <ContentWrapper py={4} mt={'auto'}>
+ Footer Text 🤪
+ </ContentWrapper>
+ </Container>
+ )
+}
+
+export default Footer
diff --git a/deps/npm/docs/src/components/home/Terminal.js b/deps/npm/docs/src/components/home/Terminal.js
new file mode 100644
index 0000000000..b0e9b9b502
--- /dev/null
+++ b/deps/npm/docs/src/components/home/Terminal.js
@@ -0,0 +1,120 @@
+import React from 'react'
+import styled, {keyframes} from 'styled-components'
+import {Flex, Box, Button as RebassButton} from 'rebass'
+import closeX from '../../images/x.svg'
+import {LinkButton} from '../Button'
+import bracket from '../../images/bracket.svg'
+
+const TerminalBody = styled(Flex)`
+ background-color: ${(props) => props.theme.colors.purpleBlack};
+ border: 2px solid ${(props) => props.theme.colors.purpleBlack};
+ color: ${(props) => props.theme.colors.white};
+ flex-direction: column;
+ max-width: 620px;
+ width: 100%;
+ height: 100%;
+ box-shadow: 0px 0px 17px 1px #dc3bc180;
+ border-radius: 2px;
+ top: ${(props) => props.top};
+ left: ${(props) => props.left};
+ right: 0;
+ position: absolute;
+`
+
+const Top = styled(Flex)`
+ background-color: ${(props) => props.theme.colors.white};
+ height: 18px;
+`
+
+const SiteName = styled(Flex)`
+ font-size: 45px;
+ font-family: 'Inconsolata', sans-serif;
+ font-weight: 700;
+ letter-spacing: 5px;
+ text-shadow: 3px 2px 4px #abf1e04d;
+
+ @media screen and (min-width: ${(props) => props.theme.breakpoints.TABLET}) {
+ font-size: 70px;
+ }
+`
+
+const Bottom = styled(Flex)`
+ flex-direction: column;
+ padding: 30px;
+
+ @media screen and (min-width: ${(props) => props.theme.breakpoints.TABLET}) {
+ font-size: 70px;
+ padding: 30px 50px;
+
+ }
+`
+
+const blink = keyframes`
+ 0% {
+ opacity: 0;
+ }
+ 50% {
+ opacity 1;
+ }
+ 100% {
+ opacity: 0;
+ }
+`
+
+const Cursor = styled.span`
+ color: ${(props) => props.theme.colors.red};
+ text-shadow: none;
+ opacity: 1;
+ animation: ${blink};
+ animation-duration: 3s;
+ animation-iteration-count: infinite;
+ animation-fill-mode: both;
+`
+
+const Bracket = styled.span`
+ background: center / contain no-repeat url(${bracket});
+ width: 25px;
+ margin-right: 5px;
+ margin-top: 10px;
+`
+
+const Text = styled.strong`
+ font-size: 15px;
+ font-weight: 400;
+ letter-spacing: 1px;
+ line-height: 1.4;
+
+ @media screen and (min-width: ${(props) => props.theme.breakpoints.TABLET}) {
+ font-size: 18px;
+ }
+`
+
+const ModalButton = styled(RebassButton)`
+ cursor: pointer;
+ background: center no-repeat url(${closeX});
+ width: 14px;
+ height: 14px;
+`
+
+const Terminal = ({onClose, top, left}) => {
+ return (
+ <TerminalBody m={'auto'} top={top} left={left}>
+ <Top alignItems='center'>
+ <ModalButton onClick={onClose} ml={1} p={1} />
+ </Top>
+ <Bottom>
+ <SiteName py={3}><Bracket />npm cli <Cursor>_</Cursor></SiteName>
+ <Text>
+ The intelligent package manager for the Node Javascript Platform. Install stuff and get coding!
+ </Text>
+ <Box mx={'auto'} my={4}>
+ <LinkButton to='/cli-commands/npm'>
+ read docs
+ </LinkButton>
+ </Box>
+ </Bottom>
+ </TerminalBody>
+ )
+}
+
+export default Terminal
diff --git a/deps/npm/docs/src/components/home/Windows.js b/deps/npm/docs/src/components/home/Windows.js
new file mode 100644
index 0000000000..fcdfd0eed0
--- /dev/null
+++ b/deps/npm/docs/src/components/home/Windows.js
@@ -0,0 +1,73 @@
+import React from 'react'
+import Terminal from './Terminal'
+import styled from 'styled-components'
+
+const Container = styled.div`
+ position: relative;
+ height: 350px;
+ width: 80%;
+ margin: auto;
+ left: -4%;
+
+ @media screen and (min-width: ${(props) => props.theme.breakpoints.TABLET}) {
+ height: 400px;
+ }
+`
+
+class Windows extends React.Component {
+ constructor (props) {
+ super(props)
+ this.state = {
+ showTopTerminal: true,
+ showMiddleTerminal: true,
+ showBottomTerminal: true,
+ counter: 0
+ }
+ this.onHide = this.onHide.bind(this)
+ }
+
+ onHide (terminal) {
+ this.setState({ [terminal]: false, counter: this.state.counter + 1 }, () => {
+ if (this.state.counter === 3) {
+ this.setState({
+ showTopTerminal: true,
+ showMiddleTerminal: true,
+ showBottomTerminal: true,
+ counter: 0
+ })
+ }
+ })
+ }
+
+ render () {
+ return (
+ <Container>
+ {this.state.showTopTerminal &&
+ <Terminal
+ onClose={() => this.onHide('showTopTerminal')}
+ top={'0%'}
+ left={'0%'}
+ />
+ }
+
+ {this.state.showMiddleTerminal &&
+ <Terminal
+ onClose={() => this.onHide('showMiddleTerminal')}
+ top={'8%'}
+ left={'5%'}
+ />
+ }
+
+ {this.state.showBottomTerminal &&
+ <Terminal
+ onClose={() => this.onHide('showBottomTerminal')}
+ top={'16%'}
+ left={'10%'}
+ />
+ }
+ </Container>
+ )
+ }
+}
+
+export default Windows
diff --git a/deps/npm/docs/src/components/home/cubes.js b/deps/npm/docs/src/components/home/cubes.js
new file mode 100644
index 0000000000..65a2b8bd95
--- /dev/null
+++ b/deps/npm/docs/src/components/home/cubes.js
@@ -0,0 +1,101 @@
+import styled, {css, keyframes} from 'styled-components'
+import purpleCube from '../../images/purple-cube.svg'
+import orangeCube from '../../images/orange-cube.svg'
+import redCube from '../../images/red-cube.svg'
+import purpleGradientCube from '../../images/purple-gradient-cube.svg'
+import pinkGradientCube from '../../images/pink-gradient-cube.svg'
+
+const commonCubeStyles = css`
+ background-position: center;
+ background-repeat: no-repeat;
+ position: absolute;
+`
+
+const wiggle = keyframes`
+ 0% {
+ transform: rotate(0deg);
+ }
+ 33% {
+ transform: rotate(8deg);
+ }
+ 100% {
+ transform: rotate(0deg);
+ }
+`
+
+export const CubeTopLeft = styled.div`
+ ${commonCubeStyles};
+ background-image: url(${purpleCube});
+ height: 35px;
+ width: 35px;
+ top: 10%;
+ left: 8%;
+
+ animation-name: ${wiggle};
+ animation-duration: 2.5s;
+ animation-delay: .5s;
+ animation-iteration-count: infinite;
+ animation-fill-mode: both;
+ animation-timing-function: ease-in-out;
+`
+
+export const CubeMiddleLeft = styled.span`
+ ${commonCubeStyles};
+ background-image: url(${orangeCube});
+ height: 30px;
+ width: 30px;
+ top: 40%;
+ left: 17%;
+
+ animation-name: ${wiggle};
+ animation-duration: 2.5s;
+ animation-iteration-count: infinite;
+ animation-fill-mode: both;
+ animation-timing-function: ease-in-out;
+`
+
+export const CubeBottomLeft = styled.span`
+ ${commonCubeStyles};
+ background-image: url(${redCube});
+ height: 45px;
+ width: 45px;
+ top: 78%;
+ left: 12%;
+
+ animation-name: ${wiggle};
+ animation-duration: 3s;
+ animation-iteration-count: infinite;
+ animation-fill-mode: both;
+ animation-timing-function: ease-in-out;
+`
+
+export const CubeBottomRight = styled.span`
+ ${commonCubeStyles};
+ background-image: url(${pinkGradientCube});
+ height: 40px;
+ width: 40px;
+ top: 70%;
+ right: 12%;
+
+ animation-name: ${wiggle};
+ animation-duration: 2.5s;
+ animation-iteration-count: infinite;
+ animation-delay: .3s;
+ animation-fill-mode: both;
+ animation-timing-function: ease-in-out;
+`
+
+export const CubeTopRight = styled.span`
+ ${commonCubeStyles};
+ background-image: url(${purpleGradientCube});
+ height: 40px;
+ width: 40px;
+ top: 14%;
+ right: 12%;
+
+ animation-name: ${wiggle};
+ animation-duration: 3s;
+ animation-iteration-count: infinite;
+ animation-fill-mode: backwards;
+ animation-timing-function: ease-in-out;
+`
diff --git a/deps/npm/docs/src/components/home/hero.js b/deps/npm/docs/src/components/home/hero.js
new file mode 100644
index 0000000000..eb690b290d
--- /dev/null
+++ b/deps/npm/docs/src/components/home/hero.js
@@ -0,0 +1,25 @@
+import React from 'react'
+import styled from 'styled-components'
+import Windows from './Windows'
+import {Flex} from 'rebass'
+import {CubeTopLeft, CubeMiddleLeft, CubeBottomLeft, CubeTopRight, CubeBottomRight} from './cubes'
+
+const Container = styled(Flex)`
+ background-color: ${(props) => props.theme.colors.offWhite};
+ position: relative;
+`
+
+const Hero = () => {
+ return (
+ <Container px={1} pt={[4, 5]} pb={[6, 6, '140px']}>
+ <CubeTopLeft />
+ <CubeMiddleLeft />
+ <CubeBottomLeft />
+ <CubeTopRight />
+ <CubeBottomRight />
+ <Windows />
+ </Container>
+ )
+}
+
+export default Hero
diff --git a/deps/npm/docs/src/components/layout.js b/deps/npm/docs/src/components/layout.js
new file mode 100644
index 0000000000..5fab7b22a7
--- /dev/null
+++ b/deps/npm/docs/src/components/layout.js
@@ -0,0 +1,18 @@
+import React from 'react'
+import Navbar from './Navbar'
+import Sidebar from './Sidebar'
+import {Flex, Box} from 'rebass'
+
+const Layout = ({children, showSidebar}) => {
+ return (
+ <React.Fragment>
+ <Navbar />
+ <Flex w={1}>
+ {showSidebar && <Sidebar />}
+ <Box width={1}>{children}</Box>
+ </Flex>
+ </React.Fragment>
+ )
+}
+
+export default Layout
diff --git a/deps/npm/docs/src/components/links.js b/deps/npm/docs/src/components/links.js
new file mode 100644
index 0000000000..b0424c132c
--- /dev/null
+++ b/deps/npm/docs/src/components/links.js
@@ -0,0 +1,50 @@
+import {Link} from 'gatsby'
+import styled, {css} from 'styled-components'
+
+const baseLinkStyles = css`
+ font-weight: 500;
+ text-decoration: none;
+ letter-spacing: .3px;
+ font-size: 14px;
+`
+const featureLinkStyles = css`
+ ${baseLinkStyles}
+ color: ${(props) => props.theme.colors.black};
+ transition: opacity .5s
+ &:hover {
+ opacity: .9;
+ }
+`
+
+const navLinkStyles = css`
+ ${baseLinkStyles};
+ color: ${(props) => props.theme.colors.black};
+ transition: opacity .5s;
+ margin: 0 10px;
+
+ &:hover {
+ opacity: .5;
+ }
+`
+export const FeatureLink = styled(Link)`
+ ${featureLinkStyles}
+`
+
+export const NavLink = styled(Link)`
+ ${navLinkStyles};
+`
+
+export const BasicNavLink = styled.a`
+ ${navLinkStyles};
+`
+
+export const SidebarLink = styled(Link)`
+ ${baseLinkStyles};
+ color: ${(props) => props.theme.colors.red};
+ padding: 10px;
+ transition: background-color .3s;
+
+ &:hover {
+ background-color: ${(props) => props.theme.colors.lightPurple};
+ }
+`
diff --git a/deps/npm/docs/src/components/navbar.js b/deps/npm/docs/src/components/navbar.js
new file mode 100644
index 0000000000..37356a6a47
--- /dev/null
+++ b/deps/npm/docs/src/components/navbar.js
@@ -0,0 +1,136 @@
+import React from 'react'
+import styled from 'styled-components'
+import {Flex, Image, Box} from 'rebass'
+import cliLogo from '../images/cli-logo.svg'
+import {Link} from 'gatsby'
+import {NavLink, BasicNavLink} from './links'
+import MobileSidebar from '../components/MobileSidebar'
+import hamburger from '../images/hamburger.svg'
+import hamburgerClose from '../images/hamburger-close.svg'
+
+const IS_STATIC = !!process.env.GATSBY_IS_STATIC
+
+const Container = styled(Flex)`
+ width: 100%;
+ border-bottom: 1px solid #86838333;
+ position: sticky;
+ top: 0;
+ background-color: ${(props) => props.theme.colors.white};
+ z-index: 1;
+`
+
+const Inner = styled(Flex)`
+ border-top: 3px solid;
+ border-image: linear-gradient(139deg, #fb8817, #ff4b01, #c12127, #e02aff) 3;
+ margin: auto;
+ height: 53px;
+ padding: 0 30px;
+ align-items: center;
+ width: 100%;
+`
+
+const Logo = styled(Image)`
+ width: 120px;
+ padding: 0px 5px;
+ height: 18px;
+ vertical-align: middle;
+ display: inline-block;
+ transition: opacity .5s;
+
+ &:hover {
+ opacity: .8;
+ }
+`
+
+const Links = styled.ul`
+ display: none;
+
+ @media screen and (min-width: ${(props) => props.theme.breakpoints.TABLET}) {
+ display: block;
+ margin-left: auto;
+ }
+`
+
+const Heart = styled(Box)`
+ font-size: 15px;
+ display: inline-block;
+`
+
+const Hamburger = styled.button`
+ border: none;
+ background: center no-repeat url(${(props) => props.isOpen ? hamburgerClose : hamburger});
+ height: 30px;
+ width: 30px;
+ display: block;
+ margin-left: auto;
+ transition: opacity .5s;
+ cursor: pointer;
+
+ &:hover {
+ opacity: .6;
+ }
+
+ @media screen and (min-width: ${(props) => props.theme.breakpoints.TABLET}) {
+ display: none;
+ }
+`
+
+class Navbar extends React.Component {
+ constructor (props) {
+ super(props)
+ this.state = {
+ value: null,
+ showMobileNav: false
+ }
+ this.enableBody = this.enableBody.bind(this)
+ this.toggleNav = this.toggleNav.bind(this)
+ }
+
+ componentDidMount () {
+ window.addEventListener('resize', () => {
+ this.enableBody()
+ this.setState({showMobileNav: false})
+ })
+ }
+
+ componentWillUnmount () {
+ this.enableBody()
+ }
+
+ enableBody () {
+ window.document.getElementsByTagName('body')[0].classList.remove('disabled-body')
+ }
+
+ toggleNav () {
+ this.setState({showMobileNav: !this.state.showMobileNav})
+ window.document.getElementsByTagName('body')[0].classList.toggle('disabled-body')
+ }
+
+ render () {
+ return (
+ <React.Fragment>
+ <Container>
+ <Inner>
+ <Link to='/'>
+ <Heart ml={1} mr={'24px'}>❤</Heart><Logo src={cliLogo} />
+ </Link>
+ <Links>
+ <NavLink
+ to={`cli-commands/npm${IS_STATIC ? '/index.html' : ''}`}
+ partiallyActive
+ activeClassName='active-navbar-link'
+ >
+ docs
+ </NavLink>
+ <BasicNavLink href='https://www.npmjs.com/'>npmjs.org</BasicNavLink>
+ </Links>
+ <Hamburger isOpen={this.state.showMobileNav} onClick={this.toggleNav} />
+ </Inner>
+ </Container>
+ {this.state.showMobileNav && <MobileSidebar />}
+ </React.Fragment>
+ )
+ }
+}
+
+export default Navbar
diff --git a/deps/npm/docs/src/components/scripts.js b/deps/npm/docs/src/components/scripts.js
new file mode 100644
index 0000000000..54ad165400
--- /dev/null
+++ b/deps/npm/docs/src/components/scripts.js
@@ -0,0 +1,23 @@
+import React from 'react'
+
+const IS_STATIC = process.env.GATSBY_IS_STATIC
+
+const Scripts = () => {
+ if (IS_STATIC) {
+ return (
+ <script
+ dangerouslySetInnerHTML={{
+ __html: `
+ // Workaround: Make links on our Markdown files work on the static site
+ var anchors = document.querySelectorAll("#see-also + ul li a")
+ Array.prototype.slice.call(anchors).map(function(el) { el.href = el + "/index.html" })
+ `
+ }}
+ />
+ )
+ }
+
+ return null
+}
+
+export default Scripts
diff --git a/deps/npm/docs/src/components/seo.js b/deps/npm/docs/src/components/seo.js
new file mode 100644
index 0000000000..99d6f5b40f
--- /dev/null
+++ b/deps/npm/docs/src/components/seo.js
@@ -0,0 +1,88 @@
+/**
+ * SEO component that queries for data with
+ * Gatsby's useStaticQuery React hook
+ *
+ * See: https://www.gatsbyjs.org/docs/use-static-query/
+ */
+
+import React from 'react'
+import PropTypes from 'prop-types'
+import Helmet from 'react-helmet'
+import { useStaticQuery, graphql } from 'gatsby'
+
+function SEO ({ description, lang, meta, title }) {
+ const { site } = useStaticQuery(
+ graphql`
+ query {
+ site {
+ siteMetadata {
+ title
+ description
+ author
+ }
+ }
+ }
+ `
+ )
+
+ const metaDescription = description || site.siteMetadata.description
+
+ return (
+ <Helmet
+ htmlAttributes={{
+ lang
+ }}
+ title={title}
+ titleTemplate={`%s | ${site.siteMetadata.title}`}
+ meta={[
+ {
+ name: 'description',
+ content: metaDescription
+ },
+ {
+ property: 'og:title',
+ content: title
+ },
+ {
+ property: 'og:description',
+ content: metaDescription
+ },
+ {
+ property: 'og:type',
+ content: 'website'
+ },
+ {
+ name: 'twitter:card',
+ content: 'summary'
+ },
+ {
+ name: 'twitter:creator',
+ content: site.siteMetadata.author
+ },
+ {
+ name: 'twitter:title',
+ content: title
+ },
+ {
+ name: 'twitter:description',
+ content: metaDescription
+ }
+ ].concat(meta)}
+ />
+ )
+}
+
+SEO.defaultProps = {
+ lang: 'en',
+ meta: [],
+ description: ''
+}
+
+SEO.propTypes = {
+ description: PropTypes.string,
+ lang: PropTypes.string,
+ meta: PropTypes.arrayOf(PropTypes.object),
+ title: PropTypes.string.isRequired
+}
+
+export default SEO
diff --git a/deps/npm/docs/src/images/background-boxes.svg b/deps/npm/docs/src/images/background-boxes.svg
new file mode 100644
index 0000000000..c83a1efef7
--- /dev/null
+++ b/deps/npm/docs/src/images/background-boxes.svg
@@ -0,0 +1,2782 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ viewBox="0 0 1600.3 426" style="enable-background:new 0 0 1600.3 426;" xml:space="preserve">
+<style type="text/css">
+ .st0{opacity:0.3;fill:url(#SVGID_1_);}
+ .st1{opacity:0.3;fill:url(#SVGID_2_);}
+ .st2{opacity:0.1;fill:none;stroke:#223839;stroke-miterlimit:10;}
+ .st3{opacity:0.3;fill:#E8D9D9;}
+ .st4{opacity:0.5;fill:url(#SVGID_3_);}
+ .st5{opacity:0.3;fill:url(#SVGID_4_);}
+ .st6{opacity:0.3;fill:url(#SVGID_5_);}
+ .st7{fill:#F6D2C9;}
+ .st8{fill:#FFFFFF;}
+ .st9{fill:#FF2EDD;}
+ .st10{fill:none;stroke:url(#SVGID_6_);stroke-width:3;stroke-miterlimit:10;}
+ .st11{fill:none;stroke:#B3B3B3;stroke-width:0.75;stroke-miterlimit:10;}
+ .st12{fill:none;stroke:url(#SVGID_7_);stroke-miterlimit:10;}
+ .st13{fill:none;stroke:url(#SVGID_8_);stroke-width:3;stroke-miterlimit:10;}
+ .st14{fill:#FB3B49;}
+ .st15{fill:url(#SVGID_9_);}
+ .st16{opacity:0.7;}
+ .st17{fill:url(#SVGID_10_);}
+ .st18{fill:#333333;}
+ .st19{opacity:0.2;fill:#FB3B49;}
+ .st20{opacity:0.3;fill:url(#SVGID_11_);}
+ .st21{fill:none;stroke:url(#SVGID_12_);stroke-width:3;stroke-miterlimit:10;}
+ .st22{fill:url(#SVGID_13_);}
+ .st23{fill:url(#SVGID_14_);}
+ .st24{fill:none;stroke:url(#SVGID_15_);stroke-width:10.069;stroke-miterlimit:10;}
+ .st25{fill:none;stroke:url(#SVGID_16_);stroke-width:10.069;stroke-miterlimit:10;}
+ .st26{fill:none;stroke:url(#SVGID_17_);stroke-width:3;stroke-miterlimit:10;}
+ .st27{clip-path:url(#XMLID_6_);}
+ .st28{opacity:0.3;fill:url(#SVGID_18_);}
+ .st29{fill:none;stroke:url(#SVGID_19_);stroke-width:3;stroke-miterlimit:10;}
+ .st30{fill:url(#SVGID_20_);}
+ .st31{fill:url(#SVGID_21_);}
+ .st32{fill:none;stroke:url(#SVGID_22_);stroke-width:3;stroke-miterlimit:10;}
+ .st33{opacity:0.8;}
+ .st34{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
+ .st35{fill:#7C2EDD;}
+ .st36{fill:none;stroke:url(#SVGID_23_);stroke-width:3;stroke-miterlimit:10;}
+ .st37{fill:none;stroke:url(#SVGID_24_);stroke-width:3;stroke-miterlimit:10;}
+ .st38{fill:none;stroke:#B3B3B3;stroke-miterlimit:10;}
+ .st39{fill:none;stroke:#B3B3B3;stroke-width:1.1228;stroke-miterlimit:10;}
+ .st40{fill:none;stroke:#B3B3B3;stroke-width:1.2168;stroke-miterlimit:10;}
+ .st41{fill:none;stroke:#333333;stroke-miterlimit:10;}
+ .st42{fill:url(#SVGID_25_);}
+ .st43{fill:url(#SVGID_26_);}
+ .st44{fill:url(#SVGID_27_);}
+ .st45{fill:url(#SVGID_28_);}
+ .st46{fill:#231F20;}
+ .st47{fill:none;}
+ .st48{opacity:0.6;fill:url(#SVGID_29_);}
+ .st49{fill:none;stroke:url(#SVGID_30_);stroke-miterlimit:10;}
+ .st50{fill:none;stroke:#B3B3B3;stroke-width:0.7877;stroke-miterlimit:10;}
+ .st51{opacity:0.9;}
+ .st52{opacity:0.1;}
+ .st53{fill:none;stroke:#808080;stroke-miterlimit:10;}
+ .st54{opacity:5.000000e-02;}
+ .st55{fill:none;stroke:#FF00FF;stroke-miterlimit:10;}
+ .st56{fill:url(#SVGID_31_);}
+ .st57{fill:url(#SVGID_32_);}
+ .st58{opacity:0.19;fill:url(#SVGID_33_);}
+ .st59{fill:none;stroke:url(#SVGID_34_);stroke-width:3;stroke-miterlimit:10;}
+ .st60{opacity:0.19;fill:url(#SVGID_35_);}
+ .st61{opacity:0.5;fill:#FFFFFF;}
+ .st62{fill:none;stroke:#333333;stroke-width:2;stroke-miterlimit:10;}
+ .st63{opacity:0.19;fill:url(#SVGID_36_);}
+ .st64{fill:#333333;stroke:#333333;stroke-miterlimit:10;}
+ .st65{opacity:0.19;fill:url(#SVGID_37_);}
+ .st66{fill:none;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
+ .st67{fill:none;stroke:url(#SVGID_38_);stroke-width:3;stroke-miterlimit:10;}
+ .st68{opacity:0.6;fill:url(#SVGID_39_);}
+ .st69{opacity:0.4;fill:url(#SVGID_40_);}
+ .st70{opacity:0.4;fill:url(#SVGID_41_);}
+ .st71{opacity:0.4;fill:url(#SVGID_42_);}
+ .st72{fill:#F2F2F2;}
+ .st73{opacity:0.4;fill:url(#SVGID_43_);}
+ .st74{fill:#413844;stroke:#223839;stroke-miterlimit:10;}
+
+ .st75{fill:#FFFFFF;fill-opacity:0.5;stroke:#223839;stroke-width:1.802;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
+ .st76{fill:url(#SVGID_44_);}
+ .st77{fill:url(#SVGID_45_);}
+ .st78{fill:url(#SVGID_46_);}
+ .st79{fill:url(#SVGID_47_);}
+ .st80{fill:url(#SVGID_48_);}
+ .st81{fill:none;stroke:#223839;stroke-width:2;stroke-miterlimit:10;}
+ .st82{fill:url(#SVGID_49_);}
+ .st83{fill:url(#SVGID_50_);}
+ .st84{fill:url(#SVGID_51_);}
+ .st85{fill:url(#SVGID_52_);}
+ .st86{fill:url(#SVGID_53_);}
+ .st87{fill:url(#SVGID_54_);}
+ .st88{fill:url(#SVGID_55_);}
+ .st89{fill:url(#SVGID_56_);}
+ .st90{fill:url(#SVGID_57_);}
+ .st91{fill:url(#SVGID_58_);}
+ .st92{fill:#FF00FF;}
+ .st93{fill:#7457D9;}
+ .st94{opacity:0.3;fill:url(#SVGID_59_);}
+ .st95{fill:none;stroke:url(#SVGID_60_);stroke-width:3;stroke-miterlimit:10;}
+ .st96{fill:#333333;stroke:#333333;stroke-width:1.0718;stroke-miterlimit:10;}
+ .st97{fill:none;stroke:url(#SVGID_61_);stroke-miterlimit:10;}
+ .st98{fill:#413844;}
+ .st99{fill:none;stroke:#223839;stroke-miterlimit:10;}
+ .st100{opacity:0.6;fill:url(#SVGID_62_);}
+ .st101{opacity:0.4;fill:url(#SVGID_63_);}
+ .st102{opacity:0.4;fill:url(#SVGID_64_);}
+ .st103{opacity:0.4;fill:url(#SVGID_65_);}
+ .st104{opacity:0.4;fill:url(#SVGID_66_);}
+ .st105{fill:url(#SVGID_67_);}
+ .st106{fill:url(#SVGID_68_);}
+ .st107{fill:url(#SVGID_69_);}
+ .st108{fill:url(#SVGID_70_);}
+ .st109{fill:url(#SVGID_71_);}
+ .st110{fill:url(#SVGID_72_);}
+ .st111{fill:url(#SVGID_73_);}
+ .st112{fill:url(#SVGID_74_);}
+ .st113{fill:url(#SVGID_75_);}
+ .st114{fill:url(#SVGID_76_);}
+ .st115{fill:url(#SVGID_77_);}
+ .st116{fill:url(#SVGID_78_);}
+ .st117{fill:url(#SVGID_79_);}
+ .st118{fill:url(#SVGID_80_);}
+ .st119{fill:url(#SVGID_81_);}
+ .st120{fill:none;stroke:#FF00FF;stroke-miterlimit:10;stroke-dasharray:40,2;}
+ .st121{fill:url(#SVGID_82_);stroke:url(#SVGID_83_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st122{fill:url(#SVGID_84_);stroke:url(#SVGID_85_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st123{fill:url(#SVGID_86_);stroke:url(#SVGID_87_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st124{fill:url(#SVGID_88_);}
+ .st125{fill:url(#SVGID_89_);}
+ .st126{fill:url(#SVGID_90_);}
+ .st127{opacity:0.9;fill:url(#SVGID_91_);}
+ .st128{fill:none;stroke:url(#SVGID_92_);stroke-width:3;stroke-miterlimit:10;}
+ .st129{fill:none;stroke:url(#SVGID_93_);stroke-width:3;stroke-miterlimit:10;}
+ .st130{opacity:0.1;fill:none;stroke:#4D4D4D;stroke-miterlimit:10;}
+ .st131{fill:#ED1C24;}
+ .st132{fill:#666666;}
+ .st133{opacity:0.2;fill:#D4BEB8;}
+ .st134{fill:none;stroke:#FB3B49;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
+ .st135{opacity:8.000000e-02;fill:#CC33FF;}
+ .st136{fill:#CC33FF;}
+ .st137{fill:#AF2AF7;}
+ .st138{opacity:0.3;fill:url(#SVGID_94_);}
+ .st139{fill:none;stroke:#F2F2F2;stroke-miterlimit:10;}
+ .st140{fill:url(#SVGID_95_);stroke:url(#SVGID_96_);stroke-width:0.4819;stroke-miterlimit:10;}
+ .st141{fill:url(#SVGID_97_);stroke:url(#SVGID_98_);stroke-width:0.4819;stroke-miterlimit:10;}
+ .st142{fill:url(#SVGID_99_);stroke:url(#SVGID_100_);stroke-width:0.4819;stroke-miterlimit:10;}
+ .st143{fill:none;stroke:#FB3B49;stroke-miterlimit:10;}
+ .st144{fill:url(#SVGID_101_);stroke:url(#SVGID_102_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st145{fill:url(#SVGID_103_);}
+ .st146{fill:url(#SVGID_104_);}
+ .st147{fill:none;stroke:url(#SVGID_105_);stroke-miterlimit:10;}
+ .st148{fill:url(#SVGID_106_);stroke:url(#SVGID_107_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st149{fill:url(#SVGID_108_);stroke:url(#SVGID_109_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st150{fill:url(#SVGID_110_);stroke:url(#SVGID_111_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st151{fill:none;stroke:#FF00FF;stroke-width:0.6009;stroke-miterlimit:10;stroke-dasharray:24.0344,1.2017;}
+ .st152{fill:none;stroke:#FB3B49;stroke-width:0.6009;stroke-miterlimit:10;}
+ .st153{fill:url(#SVGID_112_);stroke:url(#SVGID_113_);stroke-width:0.4458;stroke-miterlimit:10;}
+ .st154{fill:url(#SVGID_114_);}
+ .st155{fill:url(#SVGID_115_);}
+ .st156{fill:url(#SVGID_116_);}
+ .st157{fill:url(#SVGID_117_);}
+ .st158{opacity:0.9;fill:url(#SVGID_118_);}
+ .st159{fill:url(#SVGID_119_);stroke:url(#SVGID_120_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st160{fill:url(#SVGID_121_);stroke:url(#SVGID_122_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st161{fill:url(#SVGID_123_);stroke:url(#SVGID_124_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st162{fill:url(#SVGID_125_);stroke:url(#SVGID_126_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st163{fill:url(#SVGID_127_);}
+ .st164{fill:url(#SVGID_128_);}
+ .st165{opacity:0.9;fill:url(#SVGID_129_);}
+ .st166{fill:url(#SVGID_130_);}
+ .st167{opacity:0.9;fill:url(#SVGID_131_);}
+ .st168{fill:url(#SVGID_132_);stroke:url(#SVGID_133_);stroke-width:0.4458;stroke-miterlimit:10;}
+ .st169{fill:url(#SVGID_134_);}
+ .st170{fill:url(#SVGID_135_);}
+ .st171{opacity:0.9;fill:url(#SVGID_136_);}
+ .st172{fill:url(#SVGID_137_);}
+ .st173{opacity:0.9;fill:url(#SVGID_138_);}
+ .st174{fill:url(#SVGID_139_);}
+ .st175{opacity:0.9;fill:url(#SVGID_140_);}
+</style>
+<g id="Layer_1">
+ <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="4447.9849" y1="-1992.9341" x2="3672.0149" y2="-1068.1691">
+ <stop offset="0" style="stop-color:#D4BEB8;stop-opacity:0.5"/>
+ <stop offset="1" style="stop-color:#FFFFFF"/>
+ </linearGradient>
+ <rect x="3261" y="-1648.1" class="st0" width="1598" height="235"/>
+ <linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="1337.01" y1="-3594.5083" x2="304.99" y2="-2364.5947">
+ <stop offset="0" style="stop-color:#D4BEB8"/>
+ <stop offset="1" style="stop-color:#FFFFFF"/>
+ </linearGradient>
+ <rect x="22" y="-3357.1" class="st1" width="1598" height="755"/>
+ <path class="st2" d="M4549.4-1824.1l-790.9,0c-1.4,0-2.6-1.2-2.6-2.6v-239.8c0-1.4,1.2-2.6,2.6-2.6l790.9,0c1.4,0,2.6,1.2,2.6,2.6
+ v239.8C4552-1825.2,4550.8-1824.1,4549.4-1824.1z"/>
+ <rect x="-1601" y="-2611.1" class="st3" width="1598" height="1797"/>
+ <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="-3219" y1="-2989.0515" x2="-1621" y2="-2989.0515">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st4" points="-1621,-2613.1 -1621,-3365.1 -3219,-3365.1 -3219,-2614.6 "/>
+ <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="-4839" y1="-3087.1721" x2="-3241" y2="-3087.1721">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <polygon class="st5" points="-3241,-2813.8 -3241,-3366.1 -4839,-3366.1 -4839,-2808.3 "/>
+ <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="-4880.6743" y1="-5406.9058" x2="-3201.3259" y2="-4988.1973">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <rect x="-4839" y="-5574.1" class="st6" width="1596" height="753"/>
+ <g>
+ <g>
+ <rect x="-5828.6" y="-2814.7" class="st7" width="318" height="1481"/>
+ </g>
+ <g>
+ <rect x="-5836" y="-2822.1" class="st8" width="318" height="1481"/>
+ </g>
+ </g>
+ <rect x="-4794" y="-5613.1" class="st47" width="22" height="22.6"/>
+
+ <text transform="matrix(1 0 0 1 -4788 -5598.8521)" class="st9" style="font-family:'SourceCodeVariable-Roman'; font-size:20px; letter-spacing:1;">❤</text>
+ <text transform="matrix(1 0 0 1 -3828.0918 -5597.7505)"><tspan x="0" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">npm Enterprise Products Solutions Resources</tspan><tspan x="351.5" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:4;"> </tspan><tspan x="360" y="0" style="font-family:'Poppins-Regular'; font-size:14px;"> Docs Support</tspan></text>
+ <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="-4840" y1="-5632.0518" x2="-3241" y2="-5632.0518">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st10" x1="-4840" y1="-5632.1" x2="-3241" y2="-5632.1"/>
+ <line class="st11" x1="-3240.5" y1="-5576.1" x2="-4840" y2="-5576.1"/>
+ <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="-2844.8535" y1="-3189.3015" x2="-2843.6465" y2="-3189.3015">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st12" x1="-2844" y1="-3189.1" x2="-2844.5" y2="-3189.6"/>
+ <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="-3464" y1="-5591.0518" x2="-3429.5" y2="-5591.0518">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st13" x1="-3464" y1="-5591.1" x2="-3429.5" y2="-5591.1"/>
+ <rect x="-4143" y="-5113.1" class="st14" width="276" height="71"/>
+ <g>
+ <linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="-4266.5444" y1="-5425.7017" x2="-4239.4526" y2="-5425.7017">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <polygon class="st15" points="-4261.4,-5407 -4266.5,-5413.1 -4251.8,-5425.7 -4266.5,-5438.3 -4261.3,-5444.4 -4239.5,-5425.6
+ "/>
+ </g>
+ <g class="st16">
+ <linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="-3776.0264" y1="-5397.5586" x2="-3745.5" y2="-5397.5586">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <rect x="-3776" y="-5401.6" class="st17" width="30.5" height="8"/>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="1618" height="1337" xlink:href="7C982DBF67AE2D7E.png" transform="matrix(1 0 0 1 -4850 -2806.0515)">
+ </image>
+ <g>
+ <rect x="-4841" y="-2792.1" class="st18" width="1600" height="1319"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="431" height="91" xlink:href="7C982DBF67AE2D82.png" transform="matrix(1 0 0 1 -4219 -5471.0518)">
+ </image>
+ <g>
+ <g>
+ <path class="st18" d="M-4167.1-5394.7h-13.6l-23.2-51.7v51.7h-11.1v-68.4h15l21.7,49v-49h11.9c0.1,0.1,0.2,0.3,0.2,0.5
+ c0,0.3-0.1,0.6-0.4,1c-0.3,0.4-0.5,1.2-0.6,2.3V-5394.7z"/>
+ <path class="st18" d="M-4151.5-5463.1h23.2c4.1,0,7.6,0.5,10.5,1.6c2.9,1.1,5.3,2.6,7.1,4.4c1.9,1.9,3.2,4,4.1,6.5
+ c0.9,2.5,1.3,5.1,1.3,7.9c0,2.8-0.4,5.4-1.3,7.9c-0.8,2.5-2.2,4.6-4,6.4c-1.8,1.8-4.2,3.3-7,4.3c-2.9,1.1-6.3,1.6-10.2,1.6
+ h-11.2v27.7h-12.5V-5463.1z M-4139-5452.2v19.4h10.3c1.9,0,3.5-0.2,4.9-0.7c1.4-0.5,2.5-1.1,3.3-2c0.9-0.8,1.5-1.8,1.9-3
+ c0.4-1.2,0.6-2.4,0.6-3.7c0-1.5-0.2-2.8-0.7-4c-0.4-1.2-1.1-2.3-2-3.1s-2-1.6-3.3-2.1c-1.3-0.5-2.9-0.8-4.7-0.8H-4139z"/>
+ <path class="st18" d="M-4092.2-5463.1h13l11.5,32.2l11.4-32.3h13.1v68.5h-11.1v-49.6l-9.6,25.8h-8.1l-9.2-25.8v49.6h-11V-5463.1
+ z"/>
+ <path class="st18" d="M-3930.2-5443.8c-0.3-0.1-0.5-0.2-0.6-0.4c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.3-0.1-0.6-0.1-1
+ c0-0.4-0.1-0.8-0.3-1.3c-1-2.3-2.4-4.2-4.2-5.5c-1.8-1.4-4-2-6.7-2c-2.2,0-4.2,0.6-5.9,1.9c-1.8,1.2-3.3,3-4.5,5.2
+ c-1.2,2.2-2.2,4.9-2.9,8.1c-0.7,3.2-1,6.7-1,10.6c0,3.7,0.4,7.2,1.1,10.4c0.7,3.2,1.8,5.9,3.1,8.2c1.3,2.3,2.9,4.1,4.8,5.4
+ c1.9,1.3,3.9,2,6.1,2c2.6,0,5-0.8,7-2.5c2-1.6,3.8-3.9,5.4-6.6l9.3,6c-2.6,4.5-5.7,7.8-9.4,10s-7.7,3.3-12,3.3
+ c-4,0-7.8-0.7-11.2-2.1c-3.4-1.4-6.4-3.6-8.9-6.6c-2.5-3-4.5-6.7-5.9-11.2c-1.4-4.5-2.1-9.7-2.1-15.8c0-4.5,0.4-8.5,1.2-12
+ c0.8-3.5,1.8-6.7,3.1-9.4c1.3-2.7,2.9-5,4.7-6.9c1.8-1.9,3.7-3.4,5.7-4.6c2-1.2,4.1-2.1,6.3-2.6c2.2-0.5,4.3-0.8,6.3-0.8
+ c2.6,0,5,0.4,7.4,1.1c2.3,0.7,4.5,1.8,6.5,3.2c2,1.4,3.8,3,5.3,4.9c1.5,1.9,2.8,4,3.8,6.4L-3930.2-5443.8z"/>
+ <path class="st18" d="M-3860.7-5405v10.3h-43.7v-68.4h13.4c0.1,0.1,0.2,0.3,0.2,0.5c0,0.3-0.1,0.6-0.4,1
+ c-0.3,0.4-0.5,1.2-0.6,2.3v54.2H-3860.7z"/>
+ <path class="st18" d="M-3840.9-5463.1h38.2v10.2h-13.3v48.1h13.8v10.1h-39.4v-10.2h13.3v-48h-12.6V-5463.1z"/>
+ </g>
+ </g>
+ </g>
+ <rect x="-4373.6" y="-5308.6" class="st47" width="742.6" height="304.6"/>
+ <text transform="matrix(1 0 0 1 -4373.584 -5286.4229)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">The</tspan><tspan x="61" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:13;"> </tspan><tspan x="81.8" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">intelligent</tspan><tspan x="255.3" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:13;"> </tspan><tspan x="276.1" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">package</tspan><tspan x="424.1" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:13;"> </tspan><tspan x="444.9" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">manager</tspan><tspan x="600.4" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:13;"> </tspan><tspan x="621.2" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">for</tspan><tspan x="668.2" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:13;"> </tspan><tspan x="689" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">the </tspan><tspan x="0" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">Node</tspan><tspan x="87.2" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:7;"> </tspan><tspan x="101.6" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">Javascript</tspan><tspan x="282.2" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:7;"> </tspan><tspan x="296.5" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">Platform.</tspan><tspan x="452.1" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:7;"> </tspan><tspan x="466.5" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">Install</tspan><tspan x="572.3" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:7;"> </tspan><tspan x="586.6" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">stuff</tspan><tspan x="664.1" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:7;"> </tspan><tspan x="678.5" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">and </tspan><tspan x="275.1" y="86" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">get coding!</tspan></text>
+ <rect x="-4136" y="-5106.1" class="st19" width="276" height="71"/>
+
+ <text transform="matrix(1 0 0 1 -4093.0112 -5068.6401)" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">Read Docs</text>
+ <path class="st18" d="M-3236-4885.6c18.3,18.3-25.9-40-51.8-40c-25.9,0-25.9,40-51.8,40c-25.9,0-25.9-40-51.7-40
+ c-25.9,0-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40c-25.9,0-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40c-25.9,0-25.9,40-51.7,40
+ c-25.9,0-25.9-40-51.7-40c-25.9,0-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40c-25.9,0-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40
+ c-25.9,0-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40c-25.9,0-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40c-25.9,0-25.9,40-51.7,40
+ s-25.9-40-51.7-40s-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40c-25.9,0-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40
+ c-25.9,0-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40s-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40s-25.9,40-51.7,40s-25.9-40-51.7-40
+ s-25.9,40-51.7,40s-25.9-40-51.7-40v1283.5h1603.5C-3236.5-3642.1-3238.4-4887.9-3236-4885.6z"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="346" height="346" xlink:href="7C982DBF67AE2D85.png" transform="matrix(1 0 0 1 -4600 -4776.0518)">
+ </image>
+ <g>
+ <circle class="st8" cx="-4427" cy="-4603.1" r="128"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="346" height="346" xlink:href="7C982DBF67AE2D86.png" transform="matrix(1 0 0 1 -4607 -4077.0515)">
+ </image>
+ <g>
+ <circle class="st8" cx="-4434" cy="-3904.1" r="128"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="346" height="346" xlink:href="7C982DBF67AE2D84.png" transform="matrix(1 0 0 1 -3784 -4352.0518)">
+ </image>
+ <g>
+ <circle class="st8" cx="-3611" cy="-4179.1" r="128"/>
+ </g>
+ </g>
+ <text transform="matrix(1 0 0 1 -4018.6538 -3114.9739)"><tspan x="0" y="0" style="font-family:'MyriadPro-Regular'; font-size:30px; letter-spacing:1;">❤</tspan><tspan x="16.8" y="0" style="font-family:'MonotypeSorts'; font-size:30px; letter-spacing:1;">,</tspan></text>
+ <linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="-3219" y1="-5262.4517" x2="-1623" y2="-5262.4517">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <path class="st20" d="M-1623-5578.1v630.9c-21-2.9-22.7-23.8-46.8-23.8c-25.9,0-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2
+ c-25.9,0-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2
+ c-25.9,0-25.9,24.2-51.8,24.2s-25.9-24.2-51.8-24.2s-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2
+ c-25.9,0-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2
+ c-25.9,0-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2
+ c-25.9,0-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2
+ c-25.9,0-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2
+ c-25.9,0-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2c-24.5,0-25.8-21.6-47.8-24v-607.2H-1623z"/>
+ <g>
+
+ <image style="overflow:visible;" width="1608" height="1247" xlink:href="7C982DBF67AE2D83.png" transform="matrix(1 0 0 1 -3227 -4957.0518)">
+ </image>
+ <g>
+ <path class="st18" d="M-1623-4925.2v1211.1h-1596v-1234.8c22,2.4,23.3,24,47.8,24c25.9,0,25.9-24.2,51.8-24.2
+ c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2
+ c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2
+ c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2
+ c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2
+ c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2
+ s25.9,24.2,51.8,24.2s25.9-24.2,51.8-24.2c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2c25.9,0,25.9,24.2,51.8,24.2
+ c25.9,0,25.9-24.2,51.8-24.2c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2C-1645.7-4949-1644-4928.1-1623-4925.2z"/>
+ </g>
+ </g>
+ <rect x="-3174" y="-5611.1" class="st47" width="22" height="22.6"/>
+
+ <text transform="matrix(1 0 0 1 -3168 -5596.8521)" class="st9" style="font-family:'SourceCodeVariable-Roman'; font-size:20px; letter-spacing:1;">❤</text>
+ <text transform="matrix(1 0 0 1 -2208.0918 -5601.7505)"><tspan x="0" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">npm Enterprise Products Solutions Resources</tspan><tspan x="351.5" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:4;"> </tspan><tspan x="360" y="0" style="font-family:'Poppins-Regular'; font-size:14px;"> Docs Support</tspan></text>
+ <line class="st11" x1="-1620.5" y1="-5578.1" x2="-3220" y2="-5578.1"/>
+ <linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="-1844" y1="-5595.0518" x2="-1809.5" y2="-5595.0518">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st21" x1="-1844" y1="-5595.1" x2="-1809.5" y2="-5595.1"/>
+ <rect x="-2550.8" y="-5190.1" class="st14" width="230" height="59.2"/>
+ <g>
+ <linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="-2688.5444" y1="-5394.7017" x2="-2661.4526" y2="-5394.7017">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <polygon class="st22" points="-2683.4,-5376 -2688.5,-5382.1 -2673.8,-5394.7 -2688.5,-5407.3 -2683.3,-5413.4 -2661.5,-5394.6
+ "/>
+ </g>
+ <g class="st16">
+ <linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="-2198.0264" y1="-5366.5586" x2="-2167.5" y2="-5366.5586">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <rect x="-2198" y="-5370.6" class="st23" width="30.5" height="8"/>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="431" height="91" xlink:href="7C982DBF67AE2D8D.png" transform="matrix(1 0 0 1 -2641 -5440.0518)">
+ </image>
+ <g>
+ <g>
+ <path class="st18" d="M-2589.1-5363.7h-13.6l-23.2-51.7v51.7h-11.1v-68.4h15l21.7,49v-49h11.9c0.1,0.1,0.2,0.3,0.2,0.5
+ c0,0.3-0.1,0.6-0.4,1c-0.3,0.4-0.5,1.2-0.6,2.3V-5363.7z"/>
+ <path class="st18" d="M-2573.5-5432.1h23.2c4.1,0,7.6,0.5,10.5,1.6c2.9,1.1,5.3,2.6,7.1,4.4c1.9,1.9,3.2,4,4.1,6.5
+ c0.9,2.5,1.3,5.1,1.3,7.9c0,2.8-0.4,5.4-1.3,7.9c-0.8,2.5-2.2,4.6-4,6.4c-1.8,1.8-4.2,3.3-7,4.3c-2.9,1.1-6.3,1.6-10.2,1.6
+ h-11.2v27.7h-12.5V-5432.1z M-2561-5421.2v19.4h10.3c1.9,0,3.5-0.2,4.9-0.7c1.4-0.5,2.5-1.1,3.3-2c0.9-0.8,1.5-1.8,1.9-3
+ c0.4-1.2,0.6-2.4,0.6-3.7c0-1.5-0.2-2.8-0.7-4c-0.4-1.2-1.1-2.3-2-3.1s-2-1.6-3.3-2.1c-1.3-0.5-2.9-0.8-4.7-0.8H-2561z"/>
+ <path class="st18" d="M-2514.2-5432.1h13l11.5,32.2l11.4-32.3h13.1v68.5h-11.1v-49.6l-9.6,25.8h-8.1l-9.2-25.8v49.6h-11V-5432.1
+ z"/>
+ <path class="st18" d="M-2352.2-5412.8c-0.3-0.1-0.5-0.2-0.6-0.4c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.3-0.1-0.6-0.1-1
+ c0-0.4-0.1-0.8-0.3-1.3c-1-2.3-2.4-4.2-4.2-5.5c-1.8-1.4-4-2-6.7-2c-2.2,0-4.2,0.6-5.9,1.9c-1.8,1.2-3.3,3-4.5,5.2
+ c-1.2,2.2-2.2,4.9-2.9,8.1c-0.7,3.2-1,6.7-1,10.6c0,3.7,0.4,7.2,1.1,10.4c0.7,3.2,1.8,5.9,3.1,8.2c1.3,2.3,2.9,4.1,4.8,5.4
+ c1.9,1.3,3.9,2,6.1,2c2.6,0,5-0.8,7-2.5c2-1.6,3.8-3.9,5.4-6.6l9.3,6c-2.6,4.5-5.7,7.8-9.4,10s-7.7,3.3-12,3.3
+ c-4,0-7.8-0.7-11.2-2.1c-3.4-1.4-6.4-3.6-8.9-6.6c-2.5-3-4.5-6.7-5.9-11.2c-1.4-4.5-2.1-9.7-2.1-15.8c0-4.5,0.4-8.5,1.2-12
+ c0.8-3.5,1.8-6.7,3.1-9.4c1.3-2.7,2.9-5,4.7-6.9c1.8-1.9,3.7-3.4,5.7-4.6c2-1.2,4.1-2.1,6.3-2.6c2.2-0.5,4.3-0.8,6.3-0.8
+ c2.6,0,5,0.4,7.4,1.1c2.3,0.7,4.5,1.8,6.5,3.2c2,1.4,3.8,3,5.3,4.9c1.5,1.9,2.8,4,3.8,6.4L-2352.2-5412.8z"/>
+ <path class="st18" d="M-2282.7-5374v10.3h-43.7v-68.4h13.4c0.1,0.1,0.2,0.3,0.2,0.5c0,0.3-0.1,0.6-0.4,1
+ c-0.3,0.4-0.5,1.2-0.6,2.3v54.2H-2282.7z"/>
+ <path class="st18" d="M-2262.9-5432.1h38.2v10.2h-13.3v48.1h13.8v10.1h-39.4v-10.2h13.3v-48h-12.6V-5432.1z"/>
+ </g>
+ </g>
+ </g>
+ <rect x="-2795.6" y="-5299.6" class="st47" width="742.6" height="304.6"/>
+ <text transform="matrix(1 0 0 1 -2648.5601 -5284.8228)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:20px; letter-spacing:1;">The intelligent package manager for the </tspan><tspan x="-75.6" y="31" class="st18" style="font-family:'Poppins-Regular'; font-size:20px; letter-spacing:1;">Node Javascript Platform. Install stuff and get coding!</tspan></text>
+ <rect x="-2545" y="-5184.2" class="st19" width="230" height="59.2"/>
+
+ <text transform="matrix(1 0 0 1 -2494.0112 -5151.6401)" style="font-family:'Poppins-SemiBold'; font-size:20px; letter-spacing:1;">Read Docs</text>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="309" height="304" xlink:href="7C982DBF67AE2D8E.png" transform="matrix(1 0 0 1 -3045.6223 -4851.6738)">
+ </image>
+ <g>
+ <ellipse class="st8" cx="-2891.2" cy="-4699.6" rx="113.9" ry="111.5"/>
+ </g>
+ </g>
+ <linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="-1623.7075" y1="-4902.9917" x2="-1618" y2="-4902.9917">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <path class="st24" d="M-1618-4902.9c-1.8,0-3.4-0.1-5-0.3"/>
+ <linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="-2413" y1="-2367.9319" x2="-2408.4441" y2="-2367.9319">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <path class="st25" d="M-2409-2367.8c-1.3-0.1-2.6-0.2-4-0.2"/>
+ <linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="-3219" y1="-5631.5518" x2="-1620" y2="-5631.5518">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st26" x1="-3219" y1="-5631.6" x2="-1620" y2="-5631.6"/>
+
+ <text transform="matrix(1 0 0 1 -2698.1777 -4733.3311)" class="st8" style="font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Super Cool</text>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -2990.1777 -4391.3311)" class="st8" style="font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Easy to Use</text>
+ </g>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -2685.1777 -3986.3308)" class="st8" style="font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Ultra Fast</text>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.7;" width="309" height="304" xlink:href="7C982DBF67AE2D8C.png" transform="matrix(1 0 0 1 -3055.6223 -4123.6738)">
+ </image>
+ <g>
+ <ellipse class="st8" cx="-2901.6" cy="-3971.7" rx="113.9" ry="111.5"/>
+ </g>
+ </g>
+ <text transform="matrix(1 0 0 1 -2699.5654 -4685.6016)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-SemiBold'; font-size:20px;">Nunc malesuada suscipit enim at feugiat. Duis id mauris</tspan><tspan x="0" y="36" class="st8" style="font-family:'Poppins-SemiBold'; font-size:20px;">lectus. Donec a sagittis lectus.</tspan></text>
+ <text transform="matrix(1 0 0 1 -2991.5654 -4343.6016)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-SemiBold'; font-size:25px;">Sed accumsan vehicula diam vel auctor. Suspendisse</tspan><tspan x="0" y="36" class="st8" style="font-family:'Poppins-SemiBold'; font-size:25px;"> id interdum lectus. Phasellus sed tortor sed dui rutrum </tspan><tspan x="0" y="72" class="st8" style="font-family:'Poppins-SemiBold'; font-size:25px;">vestibulum vitae eget lacus. </tspan></text>
+ <g>
+ <defs>
+ <text id="XMLID_1_" transform="matrix(1 0 0 1 -2689.5654 -3935.6013)"><tspan x="0" y="0" style="font-family:'Poppins-SemiBold'; font-size:25px;">Lorem ipsum dolor sit amet, consectetur adipiscing elit. </tspan><tspan x="0" y="36" style="font-family:'Poppins-SemiBold'; font-size:25px;">Sed tempus sapien nibh, et vehicula ipsum cursus non. </tspan></text>
+ </defs>
+ <clipPath id="XMLID_6_">
+ <use xlink:href="#XMLID_1_" style="overflow:visible;"/>
+ </clipPath>
+ <g class="st27">
+
+ <image style="overflow:visible;opacity:0.4;" width="247" height="242" xlink:href="1FE9CA9FC2C9381.png" transform="matrix(1 0 0 1 -2266.0918 -4275.0894)">
+ </image>
+ <g>
+ <ellipse class="st8" cx="-2149.5" cy="-4156.7" rx="113.9" ry="111.5"/>
+ </g>
+ </g>
+ <g class="st27">
+
+ <image style="overflow:visible;opacity:0.5;" width="309" height="304" xlink:href="1FE9CA9FC2C9387.png" transform="matrix(1 0 0 1 -2157.9446 -4441.7388)">
+ </image>
+ <g>
+ <ellipse class="st8" cx="-2003.5" cy="-4289.7" rx="113.9" ry="111.5"/>
+ </g>
+ </g>
+ </g>
+ <linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="-2102" y1="-4333.5518" x2="-1816" y2="-4333.5518">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <circle class="st28" cx="-1959" cy="-4333.6" r="143"/>
+ <circle class="st8" cx="-1959" cy="-4333.6" r="134"/>
+ <rect x="-4794" y="-3399.1" class="st47" width="22" height="22.6"/>
+
+ <text transform="matrix(1 0 0 1 -4788 -3384.8518)" class="st9" style="font-family:'SourceCodeVariable-Roman'; font-size:20px; letter-spacing:1;">❤</text>
+ <text transform="matrix(1 0 0 1 -3828.0918 -3389.7502)"><tspan x="0" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">npm Enterprise Products Solutions Resources</tspan><tspan x="351.5" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:4;"> </tspan><tspan x="360" y="0" style="font-family:'Poppins-Regular'; font-size:14px;"> Docs Support</tspan></text>
+ <line class="st11" x1="-3240.5" y1="-3366.1" x2="-4840" y2="-3366.1"/>
+ <linearGradient id="SVGID_19_" gradientUnits="userSpaceOnUse" x1="-3464" y1="-3383.0515" x2="-3429.5" y2="-3383.0515">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st29" x1="-3464" y1="-3383.1" x2="-3429.5" y2="-3383.1"/>
+ <rect x="-4170.8" y="-2978.1" class="st14" width="230" height="59.2"/>
+ <g>
+ <linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="-4308.5444" y1="-3182.7014" x2="-4281.4526" y2="-3182.7014">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <polygon class="st30" points="-4303.4,-3164 -4308.5,-3170.1 -4293.8,-3182.7 -4308.5,-3195.3 -4303.3,-3201.4 -4281.5,-3182.6
+ "/>
+ </g>
+ <g class="st16">
+ <linearGradient id="SVGID_21_" gradientUnits="userSpaceOnUse" x1="-3818.0264" y1="-3154.5583" x2="-3787.5" y2="-3154.5583">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <rect x="-3818" y="-3158.6" class="st31" width="30.5" height="8"/>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="431" height="91" xlink:href="1FE9CA9FC2C9380.png" transform="matrix(1 0 0 1 -4261 -3228.0515)">
+ </image>
+ <g>
+ <g>
+ <path class="st18" d="M-4209.1-3151.7h-13.6l-23.2-51.7v51.7h-11.1v-68.4h15l21.7,49v-49h11.9c0.1,0.1,0.2,0.3,0.2,0.5
+ c0,0.3-0.1,0.6-0.4,1c-0.3,0.4-0.5,1.2-0.6,2.3V-3151.7z"/>
+ <path class="st18" d="M-4193.5-3220.1h23.2c4.1,0,7.6,0.5,10.5,1.6c2.9,1.1,5.3,2.6,7.1,4.4c1.9,1.9,3.2,4,4.1,6.5
+ c0.9,2.5,1.3,5.1,1.3,7.9c0,2.8-0.4,5.4-1.3,7.9c-0.8,2.5-2.2,4.6-4,6.4c-1.8,1.8-4.2,3.3-7,4.3c-2.9,1.1-6.3,1.6-10.2,1.6
+ h-11.2v27.7h-12.5V-3220.1z M-4181-3209.2v19.4h10.3c1.9,0,3.5-0.2,4.9-0.7c1.4-0.5,2.5-1.1,3.3-2c0.9-0.8,1.5-1.8,1.9-3
+ c0.4-1.2,0.6-2.4,0.6-3.7c0-1.5-0.2-2.8-0.7-4c-0.4-1.2-1.1-2.3-2-3.1s-2-1.6-3.3-2.1c-1.3-0.5-2.9-0.8-4.7-0.8H-4181z"/>
+ <path class="st18" d="M-4134.2-3220.1h13l11.5,32.2l11.4-32.3h13.1v68.5h-11.1v-49.6l-9.6,25.8h-8.1l-9.2-25.8v49.6h-11V-3220.1
+ z"/>
+ <path class="st18" d="M-3972.2-3200.8c-0.3-0.1-0.5-0.2-0.6-0.4c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.3-0.1-0.6-0.1-1
+ c0-0.4-0.1-0.8-0.3-1.3c-1-2.3-2.4-4.2-4.2-5.5c-1.8-1.4-4-2-6.7-2c-2.2,0-4.2,0.6-5.9,1.9c-1.8,1.2-3.3,3-4.5,5.2
+ c-1.2,2.2-2.2,4.9-2.9,8.1c-0.7,3.2-1,6.7-1,10.6c0,3.7,0.4,7.2,1.1,10.4c0.7,3.2,1.8,5.9,3.1,8.2c1.3,2.3,2.9,4.1,4.8,5.4
+ c1.9,1.3,3.9,2,6.1,2c2.6,0,5-0.8,7-2.5c2-1.6,3.8-3.9,5.4-6.6l9.3,6c-2.6,4.5-5.7,7.8-9.4,10s-7.7,3.3-12,3.3
+ c-4,0-7.8-0.7-11.2-2.1c-3.4-1.4-6.4-3.6-8.9-6.6c-2.5-3-4.5-6.7-5.9-11.2c-1.4-4.5-2.1-9.7-2.1-15.8c0-4.5,0.4-8.5,1.2-12
+ c0.8-3.5,1.8-6.7,3.1-9.4c1.3-2.7,2.9-5,4.7-6.9c1.8-1.9,3.7-3.4,5.7-4.6c2-1.2,4.1-2.1,6.3-2.6c2.2-0.5,4.3-0.8,6.3-0.8
+ c2.6,0,5,0.4,7.4,1.1c2.3,0.7,4.5,1.8,6.5,3.2c2,1.4,3.8,3,5.3,4.9c1.5,1.9,2.8,4,3.8,6.4L-3972.2-3200.8z"/>
+ <path class="st18" d="M-3902.7-3162v10.3h-43.7v-68.4h13.4c0.1,0.1,0.2,0.3,0.2,0.5c0,0.3-0.1,0.6-0.4,1
+ c-0.3,0.4-0.5,1.2-0.6,2.3v54.2H-3902.7z"/>
+ <path class="st18" d="M-3882.9-3220.1h38.2v10.2h-13.3v48.1h13.8v10.1h-39.4v-10.2h13.3v-48h-12.6V-3220.1z"/>
+ </g>
+ </g>
+ </g>
+ <rect x="-4415.6" y="-3087.6" class="st47" width="742.6" height="304.6"/>
+ <text transform="matrix(1 0 0 1 -4268.5601 -3072.8225)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:20px; letter-spacing:1;">The intelligent package manager for the </tspan><tspan x="-75.6" y="31" class="st18" style="font-family:'Poppins-Regular'; font-size:20px; letter-spacing:1;">Node Javascript Platform. Install stuff and get coding!</tspan></text>
+ <rect x="-4165" y="-2972.2" class="st19" width="230" height="59.2"/>
+
+ <text transform="matrix(1 0 0 1 -4114.0112 -2939.6399)" style="font-family:'Poppins-SemiBold'; font-size:20px; letter-spacing:1;">Read Docs</text>
+ <g class="st16">
+
+ <image style="overflow:visible;opacity:0.5;" width="309" height="304" xlink:href="1FE9CA9FC2C9383.png" transform="matrix(1 0 0 1 -4654.6226 -2628.6741)">
+ </image>
+ <g>
+ <ellipse class="st8" cx="-4500.2" cy="-2476.6" rx="113.9" ry="111.5"/>
+ </g>
+ </g>
+ <linearGradient id="SVGID_22_" gradientUnits="userSpaceOnUse" x1="-4839" y1="-3419.5515" x2="-3240" y2="-3419.5515">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st32" x1="-4839" y1="-3419.6" x2="-3240" y2="-3419.6"/>
+
+ <text transform="matrix(1 0 0 1 -4307.1777 -2523.3308)" style="opacity:0.8;fill:#FFFFFF; font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Super Cool</text>
+ <g class="st33">
+
+ <text transform="matrix(1 0 0 1 -4599.1777 -2168.3308)" class="st8" style="font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Easy to Use</text>
+ </g>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -4294.1777 -1763.3309)" class="st8" style="font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Ultra Fast</text>
+ </g>
+ <text transform="matrix(1 0 0 1 -4308.5654 -2475.6013)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Regular'; font-size:20px;">Nunc malesuada suscipit enim at feugiat. Duis id mauris</tspan><tspan x="0" y="36" class="st8" style="font-family:'Poppins-Regular'; font-size:20px;">lectus. Donec a sagittis lectus.</tspan></text>
+ <text transform="matrix(1 0 0 1 -4600.5654 -2120.6013)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Regular'; font-size:20px;">Sed accumsan vehicula diam vel auctor. Suspendisse id </tspan><tspan x="0" y="36" class="st8" style="font-family:'Poppins-Regular'; font-size:20px;">interdum lectus. Phasellus sed tortor sed dui rutrum vestibulum vitae </tspan><tspan x="0" y="72" class="st8" style="font-family:'Poppins-Regular'; font-size:20px;">eget lacus. </tspan></text>
+ <text id="XMLID_2_" transform="matrix(1 0 0 1 -4298.5654 -1712.6014)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Regular'; font-size:20px;">Lorem ipsum dolor sit amet, consectetur adipiscing elit. </tspan><tspan x="0" y="36" class="st8" style="font-family:'Poppins-Regular'; font-size:20px;">Sed tempus sapien nibh, et vehicula ipsum cursus non. </tspan></text>
+ <circle class="st18" cx="-2885" cy="-2355.1" r="143"/>
+ <g class="st33">
+ <path class="st8" d="M-3508.8-2056.1H-3630v-112.5h121.2V-2056.1z M-3517.5-2133.9h-103.8v69.2h103.8V-2133.9z M-3517.5-2142.6
+ v-17.3h-103.8v17.3H-3517.5z"/>
+ <circle class="st34" cx="-3613.4" cy="-2151.2" r="3.6"/>
+ <circle class="st34" cx="-3601.9" cy="-2151.2" r="3.6"/>
+ <circle class="st34" cx="-3590.3" cy="-2151.2" r="3.6"/>
+ <path class="st8" d="M-3574.3-2099.5l-20.8,21.9l-6.3-6l15.2-16l-15.2-16.3l6.3-5.9C-3595.1-2121.7-3574.3-2099.5-3574.3-2099.5z"
+ />
+ <path class="st8" d="M-3569.4-2086.3h30.3v8.7h-30.3V-2086.3z"/>
+ </g>
+
+ <text transform="matrix(1 0 0 1 -4296.1777 -2681.3308)" class="st8" style="font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Why use NPM CLI?</text>
+ <rect x="-3172" y="-3400.1" class="st47" width="22" height="22.6"/>
+
+ <text transform="matrix(1 0 0 1 -3166 -3385.8518)" class="st35" style="font-family:'SourceCodeVariable-Roman'; font-size:20px; letter-spacing:1;">❤</text>
+ <text transform="matrix(1 0 0 1 -2206.0918 -3386.7502)"><tspan x="0" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">npm Enterprise Products Solutions Resources</tspan><tspan x="351.5" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:4;"> </tspan><tspan x="360" y="0" style="font-family:'Poppins-Regular'; font-size:14px;"> Docs Support</tspan></text>
+ <linearGradient id="SVGID_23_" gradientUnits="userSpaceOnUse" x1="-3220" y1="-3419.5515" x2="-1620" y2="-3419.5515">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <line class="st36" x1="-3220" y1="-3419.6" x2="-1620" y2="-3419.6"/>
+ <linearGradient id="SVGID_24_" gradientUnits="userSpaceOnUse" x1="-1842" y1="-3380.0515" x2="-1807.5" y2="-3380.0515">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st37" x1="-1842" y1="-3380.1" x2="-1807.5" y2="-3380.1"/>
+ <line class="st11" x1="-1618.5" y1="-3364.1" x2="-3218" y2="-3364.1"/>
+ <circle class="st8" cx="-2885" cy="-2355.1" r="125"/>
+ <g class="st16">
+
+ <image style="overflow:visible;opacity:0.5;" width="309" height="304" xlink:href="1FE9CA9FC2C939F.png" transform="matrix(1 0 0 1 -3731.8604 -2263.6924)">
+ </image>
+ <g>
+ <ellipse class="st8" cx="-3577.4" cy="-2111.7" rx="113.9" ry="111.5"/>
+ </g>
+ </g>
+
+ <text transform="matrix(1 0 0 1 -2573.1777 -2432.3308)" class="st18" style="font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Why use this?</text>
+ <line class="st38" x1="-2313.5" y1="-2300.6" x2="-2315.6" y2="-2300.6"/>
+ <line class="st38" x1="-2908.3" y1="-2300.6" x2="-2910.5" y2="-2300.6"/>
+ <line class="st39" x1="-1886" y1="-2020.1" x2="-1888.4" y2="-2020.1"/>
+ <line class="st40" x1="-2851.6" y1="-3276.4" x2="-2854.4" y2="-3276.4"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="930" height="551" xlink:href="1FE9CA9FC2C9382.png" transform="matrix(1 0 0 1 -2904.3645 -3334.416)">
+ </image>
+ <g>
+ <path class="st18" d="M-2011.8-3293.7v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h849.6
+ C-2013.1-3296.7-2011.8-3295.3-2011.8-3293.7z"/>
+ <path class="st41" d="M-2011.8-3293.7v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h849.6
+ C-2013.1-3296.7-2011.8-3295.3-2011.8-3293.7z"/>
+ </g>
+ </g>
+ <line class="st40" x1="-2002" y1="-3280.4" x2="-2004.5" y2="-3280.4"/>
+ <line class="st40" x1="-2798.1" y1="-3201.3" x2="-2800.8" y2="-3201.3"/>
+ <line class="st40" x1="-2829.8" y1="-3229" x2="-2832.5" y2="-3229"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="931" height="551" xlink:href="1FE9CA9FC2C9385.png" transform="matrix(1 0 0 1 -2872.3645 -3279.416)">
+ </image>
+ <g>
+ <path class="st18" d="M-1979.1-3239.4v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h849.6
+ C-1980.4-3242.4-1979.1-3241-1979.1-3239.4z"/>
+ <path class="st41" d="M-1979.1-3239.4v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h849.6
+ C-1980.4-3242.4-1979.1-3241-1979.1-3239.4z"/>
+ </g>
+ </g>
+ <g>
+ <path class="st8" d="M-1979.1-3239.1v21.7c0,1.7-1.4,3-3,3h-849.6c-1.7,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h849.6
+ C-1980.4-3242.1-1979.1-3240.7-1979.1-3239.1z"/>
+ <path class="st41" d="M-1979.1-3239.1v21.7c0,1.7-1.4,3-3,3h-849.6c-1.7,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h849.6
+ C-1980.4-3242.1-1979.1-3240.7-1979.1-3239.1z"/>
+ </g>
+ <line class="st40" x1="-1969.1" y1="-3221.9" x2="-1971.7" y2="-3221.9"/>
+ <line class="st40" x1="-2633.2" y1="-3142.9" x2="-2635.9" y2="-3142.9"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="931" height="551" xlink:href="1FE9CA9FC2C9386.png" transform="matrix(1 0 0 1 -2838.3645 -3220.416)">
+ </image>
+ <g>
+ <path class="st18" d="M-1945.4-3180.3v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h849.6
+ C-1946.8-3183.3-1945.4-3181.9-1945.4-3180.3z"/>
+ <path class="st41" d="M-1945.4-3180.3v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h849.6
+ C-1946.8-3183.3-1945.4-3181.9-1945.4-3180.3z"/>
+ </g>
+ </g>
+ <line class="st40" x1="-1925.3" y1="-3164.8" x2="-1927.9" y2="-3164.8"/>
+ <g>
+ <g class="st16">
+ <linearGradient id="SVGID_25_" gradientUnits="userSpaceOnUse" x1="-2155.0264" y1="-3028.5583" x2="-2124.5" y2="-3028.5583">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <rect x="-2155" y="-3032.6" class="st42" width="30.5" height="8"/>
+ </g>
+ <g>
+
+ <linearGradient id="SVGID_26_" gradientUnits="userSpaceOnUse" x1="-2645.5444" y1="-3056.7014" x2="-2618.4526" y2="-3056.7014">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <polygon class="st43" points="-2640.4,-3038 -2645.5,-3044.1 -2630.8,-3056.7 -2645.5,-3069.3 -2640.3,-3075.4 -2618.5,-3056.6
+ "/>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="425" height="85" xlink:href="1FE9CA9FC2C9384.png" transform="matrix(1 0 0 1 -2595 -3099.0515)">
+ </image>
+ <g>
+ <g>
+ <path class="st8" d="M-2546.1-3025.7h-13.6l-23.2-51.7v51.7h-11.1v-68.4h15l21.7,49v-49h11.9c0.1,0.1,0.2,0.3,0.2,0.5
+ c0,0.3-0.1,0.6-0.4,1c-0.3,0.4-0.5,1.2-0.6,2.3V-3025.7z"/>
+ <path class="st8" d="M-2530.5-3094.1h23.2c4.1,0,7.6,0.5,10.5,1.6c2.9,1.1,5.3,2.6,7.1,4.4c1.9,1.9,3.2,4,4.1,6.5
+ c0.9,2.5,1.3,5.1,1.3,7.9c0,2.8-0.4,5.4-1.3,7.9c-0.8,2.5-2.2,4.6-4,6.4c-1.8,1.8-4.2,3.3-7,4.3c-2.9,1.1-6.3,1.6-10.2,1.6
+ h-11.2v27.7h-12.5V-3094.1z M-2518-3083.2v19.4h10.3c1.9,0,3.5-0.2,4.9-0.7c1.4-0.5,2.5-1.1,3.3-2c0.9-0.8,1.5-1.8,1.9-3
+ c0.4-1.2,0.6-2.4,0.6-3.7c0-1.5-0.2-2.8-0.7-4c-0.4-1.2-1.1-2.3-2-3.1s-2-1.6-3.3-2.1c-1.3-0.5-2.9-0.8-4.7-0.8H-2518z"/>
+ <path class="st8" d="M-2471.2-3094.1h13l11.5,32.2l11.4-32.3h13.1v68.5h-11.1v-49.6l-9.6,25.8h-8.1l-9.2-25.8v49.6h-11V-3094.1
+ z"/>
+ <path class="st8" d="M-2309.2-3074.8c-0.3-0.1-0.5-0.2-0.6-0.4c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.3-0.1-0.6-0.1-1
+ c0-0.4-0.1-0.8-0.3-1.3c-1-2.3-2.4-4.2-4.2-5.5c-1.8-1.4-4-2-6.7-2c-2.2,0-4.2,0.6-5.9,1.9c-1.8,1.2-3.3,3-4.5,5.2
+ c-1.2,2.2-2.2,4.9-2.9,8.1c-0.7,3.2-1,6.7-1,10.6c0,3.7,0.4,7.2,1.1,10.4c0.7,3.2,1.8,5.9,3.1,8.2c1.3,2.3,2.9,4.1,4.8,5.4
+ c1.9,1.3,3.9,2,6.1,2c2.6,0,5-0.8,7-2.5c2-1.6,3.8-3.9,5.4-6.6l9.3,6c-2.6,4.5-5.7,7.8-9.4,10s-7.7,3.3-12,3.3
+ c-4,0-7.8-0.7-11.2-2.1c-3.4-1.4-6.4-3.6-8.9-6.6c-2.5-3-4.5-6.7-5.9-11.2c-1.4-4.5-2.1-9.7-2.1-15.8c0-4.5,0.4-8.5,1.2-12
+ c0.8-3.5,1.8-6.7,3.1-9.4c1.3-2.7,2.9-5,4.7-6.9c1.8-1.9,3.7-3.4,5.7-4.6c2-1.2,4.1-2.1,6.3-2.6c2.2-0.5,4.3-0.8,6.3-0.8
+ c2.6,0,5,0.4,7.4,1.1c2.3,0.7,4.5,1.8,6.5,3.2c2,1.4,3.8,3,5.3,4.9c1.5,1.9,2.8,4,3.8,6.4L-2309.2-3074.8z"/>
+ <path class="st8" d="M-2239.7-3036v10.3h-43.7v-68.4h13.4c0.1,0.1,0.2,0.3,0.2,0.5c0,0.3-0.1,0.6-0.4,1
+ c-0.3,0.4-0.5,1.2-0.6,2.3v54.2H-2239.7z"/>
+ <path class="st8" d="M-2219.9-3094.1h38.2v10.2h-13.3v48.1h13.8v10.1h-39.4v-10.2h13.3v-48h-12.6V-3094.1z"/>
+ </g>
+ </g>
+ </g>
+ <rect x="-2623.7" y="-2959.6" class="st47" width="489.6" height="304.6"/>
+ <text transform="matrix(1 0 0 1 -2623.7363 -2944.8225)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">The</tspan><tspan x="40.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:8;"> </tspan><tspan x="54" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">intelligent</tspan><tspan x="167.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:8;"> </tspan><tspan x="181.3" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">package</tspan><tspan x="279.3" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:8;"> </tspan><tspan x="293.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">manager</tspan><tspan x="396.1" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:8;"> </tspan><tspan x="409.9" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">for</tspan><tspan x="440.6" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:8;"> </tspan><tspan x="454.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">the </tspan><tspan x="0" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Node</tspan><tspan x="57.9" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:4;"> </tspan><tspan x="67.8" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Javascript</tspan><tspan x="186.4" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:4;"> </tspan><tspan x="196.3" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Platform.</tspan><tspan x="298" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:4;"> </tspan><tspan x="307.9" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Install</tspan><tspan x="376.8" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:4;"> </tspan><tspan x="386.8" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">stuff</tspan><tspan x="437.1" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:4;"> </tspan><tspan x="447.1" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">and </tspan><tspan x="181.2" y="62" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">get coding!</tspan></text>
+ <g>
+ <rect x="-2492.7" y="-2827.1" class="st14" width="230" height="59.2"/>
+ <rect x="-2486.8" y="-2821.2" class="st19" width="230" height="59.2"/>
+
+ <text transform="matrix(1 0 0 1 -2435.8589 -2788.6399)" style="font-family:'Poppins-SemiBold'; font-size:20px; letter-spacing:1;">Read Docs</text>
+ </g>
+ </g>
+ <g>
+ <path class="st8" d="M-2012.1-3294.1v21.7c0,1.7-1.4,3-3,3h-849.6c-1.7,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h849.6
+ C-2013.4-3297.1-2012.1-3295.7-2012.1-3294.1z"/>
+ <path class="st41" d="M-2012.1-3294.1v21.7c0,1.7-1.4,3-3,3h-849.6c-1.7,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h849.6
+ C-2013.4-3297.1-2012.1-3295.7-2012.1-3294.1z"/>
+ </g>
+ <g>
+ <path class="st8" d="M-1945.1-3180.1v21.7c0,1.7-1.4,3-3,3h-849.6c-1.7,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h849.6
+ C-1946.4-3183.1-1945.1-3181.7-1945.1-3180.1z"/>
+ <path class="st41" d="M-1945.1-3180.1v21.7c0,1.7-1.4,3-3,3h-849.6c-1.7,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h849.6
+ C-1946.4-3183.1-1945.1-3181.7-1945.1-3180.1z"/>
+ </g>
+ <linearGradient id="SVGID_27_" gradientUnits="userSpaceOnUse" x1="-2171" y1="-2120.0515" x2="-1885" y2="-2120.0515">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <circle class="st44" cx="-2028" cy="-2120.1" r="143"/>
+ <circle class="st8" cx="-2028" cy="-2120.1" r="125"/>
+ <linearGradient id="SVGID_28_" gradientUnits="userSpaceOnUse" x1="-2886" y1="-1783.0516" x2="-2600" y2="-1783.0516">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <circle class="st45" cx="-2743" cy="-1783.1" r="143"/>
+ <circle class="st8" cx="-2743" cy="-1783.1" r="125"/>
+ <g>
+ <g>
+ <path class="st46" d="M-3136.9-3386h6.4v-9.7h3.2v9.7h3.2v-13h-12.8V-3386z M-3106.2-3399v13h6.4v-9.7h3.2v9.7h3.2v-9.7h3.2v9.7
+ h3.2v-13H-3106.2L-3106.2-3399z M-3115.2-3395.7h3.2v6.5h-3.2V-3395.7z M-3121.6-3382.8h6.4v-3.2h6.4v-13h-12.8V-3382.8z"/>
+ <rect x="-3136.9" y="-3399" class="st47" width="49.9" height="16.2"/>
+ </g>
+ <polygon class="st46" points="-3071.9,-3395.8 -3071.9,-3389.5 -3065.8,-3389.5 -3065.8,-3386.4 -3072,-3386.4 -3078.3,-3386.4
+ -3078.2,-3399 -3065.8,-3399 -3065.8,-3395.9 "/>
+ <rect x="-3063.2" y="-3399" class="st46" width="6.4" height="12.9"/>
+
+ <rect x="-3057.3" y="-3392.4" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 -6443.4009 -331.8764)" class="st46" width="3.1" height="9.5"/>
+
+ <rect x="-3036.1" y="-3391" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 -6422.0322 -351.7385)" class="st46" width="2" height="8.3"/>
+ <rect x="-3049.1" y="-3399.1" class="st46" width="6.4" height="12.9"/>
+ </g>
+ <linearGradient id="SVGID_29_" gradientUnits="userSpaceOnUse" x1="-1599" y1="-2985.5515" x2="-1" y2="-2985.5515">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.1444" style="stop-color:#FF4B01"/>
+ <stop offset="0.7119" style="stop-color:#C12127"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st48" points="-1,-2606.1 -1,-3365.1 -1599,-3365.1 -1599,-2607.6 "/>
+ <linearGradient id="SVGID_30_" gradientUnits="userSpaceOnUse" x1="-1202.8535" y1="-3183.3015" x2="-1201.6465" y2="-3183.3015">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st49" x1="-1202" y1="-3183.1" x2="-1202.5" y2="-3183.6"/>
+ <rect x="-1552" y="-3401.1" class="st47" width="22" height="22.6"/>
+
+ <text transform="matrix(1 0 0 1 -1546 -3386.8518)" class="st35" style="font-family:'SourceCodeVariable-Roman'; font-size:20px; letter-spacing:1;">❤</text>
+ <text transform="matrix(1 0 0 1 -393.0918 -3385.7502)"><tspan x="0" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">Configuring NPM</tspan><tspan x="116" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:24;"> </tspan><tspan x="144" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">Using NPM</tspan><tspan x="216.4" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:31;"> </tspan><tspan x="252" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">CLI Commands</tspan><tspan x="359.8" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:-3;"> </tspan></text>
+ <line class="st11" x1="1.5" y1="-3365.1" x2="-1598" y2="-3365.1"/>
+ <line class="st50" x1="-872.2" y1="-2383.7" x2="-873.9" y2="-2383.7"/>
+ <line class="st38" x1="-1288.3" y1="-2360.6" x2="-1290.5" y2="-2360.6"/>
+ <line class="st39" x1="-266" y1="-2080.1" x2="-268.4" y2="-2080.1"/>
+ <line class="st40" x1="-1209.6" y1="-3270.4" x2="-1212.4" y2="-3270.4"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="930" height="551" xlink:href="1FE9CA9FC2C938C.png" transform="matrix(1 0 0 1 -1350.3645 -3348.416)">
+ </image>
+ <g>
+ <path class="st18" d="M-457.8-3307.7v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h849.6
+ C-459.1-3310.7-457.8-3309.3-457.8-3307.7z"/>
+ <path class="st41" d="M-457.8-3307.7v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h849.6
+ C-459.1-3310.7-457.8-3309.3-457.8-3307.7z"/>
+ </g>
+ </g>
+ <line class="st40" x1="-360" y1="-3274.4" x2="-362.5" y2="-3274.4"/>
+ <line class="st40" x1="-1156.1" y1="-3195.3" x2="-1158.8" y2="-3195.3"/>
+ <line class="st40" x1="-1187.8" y1="-3223" x2="-1190.5" y2="-3223"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="931" height="551" xlink:href="1FE9CA9FC2C93A4.png" transform="matrix(1 0 0 1 -1296.3645 -3273.416)">
+ </image>
+ <g>
+ <path class="st18" d="M-403.1-3233.4v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h849.6
+ C-404.4-3236.4-403.1-3235-403.1-3233.4z"/>
+ <path class="st41" d="M-403.1-3233.4v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h849.6
+ C-404.4-3236.4-403.1-3235-403.1-3233.4z"/>
+ </g>
+ </g>
+ <g class="st51">
+ <path class="st8" d="M-403.1-3233.1v21.7c0,1.7-1.4,3-3,3h-849.6c-1.7,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h849.6
+ C-404.4-3236.1-403.1-3234.7-403.1-3233.1z"/>
+ <path class="st41" d="M-403.1-3233.1v21.7c0,1.7-1.4,3-3,3h-849.6c-1.7,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h849.6
+ C-404.4-3236.1-403.1-3234.7-403.1-3233.1z"/>
+ </g>
+ <line class="st40" x1="-327.1" y1="-3215.9" x2="-329.7" y2="-3215.9"/>
+ <line class="st40" x1="-991.2" y1="-3136.9" x2="-993.9" y2="-3136.9"/>
+ <g class="st52">
+ <line class="st53" x1="-1599.5" y1="-3364.8" x2="1.5" y2="-3364.8"/>
+ <line class="st53" x1="-1599.4" y1="-3174.7" x2="1.6" y2="-3174.7"/>
+ <line class="st53" x1="-1599.2" y1="-2984.7" x2="1.8" y2="-2984.7"/>
+ <line class="st53" x1="-1599.1" y1="-2794.6" x2="1.9" y2="-2794.6"/>
+ <line class="st53" x1="-1599" y1="-2604.6" x2="2" y2="-2604.6"/>
+ <line class="st53" x1="-1598.8" y1="-2414.5" x2="2.2" y2="-2414.5"/>
+ <line class="st53" x1="-1598.7" y1="-2224.5" x2="2.3" y2="-2224.5"/>
+ <line class="st53" x1="-1598.5" y1="-2034.4" x2="2.5" y2="-2034.4"/>
+ <line class="st53" x1="-1598.4" y1="-1844.4" x2="2.6" y2="-1844.4"/>
+ <line class="st53" x1="-1598.3" y1="-1654.3" x2="2.7" y2="-1654.3"/>
+ <line class="st53" x1="-1598.1" y1="-1464.3" x2="2.9" y2="-1464.3"/>
+ <line class="st53" x1="-1598" y1="-1274.3" x2="3" y2="-1274.3"/>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="931" height="551" xlink:href="1FE9CA9FC2C93A7.png" transform="matrix(1 0 0 1 -1227.3645 -3181.416)">
+ </image>
+ <g>
+ <path class="st18" d="M-334.4-3141.3v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h849.6
+ C-335.8-3144.3-334.4-3142.9-334.4-3141.3z"/>
+ <path class="st41" d="M-334.4-3141.3v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h849.6
+ C-335.8-3144.3-334.4-3142.9-334.4-3141.3z"/>
+ </g>
+ </g>
+ <line class="st40" x1="-283.3" y1="-3158.8" x2="-285.9" y2="-3158.8"/>
+ <g class="st54">
+ <line class="st55" x1="-1598" y1="-3359.1" x2="-1598" y2="-1224.1"/>
+ <line class="st55" x1="-1398.4" y1="-3359.6" x2="-1398.4" y2="-1224.6"/>
+ <line class="st55" x1="-1198.9" y1="-3360.1" x2="-1198.9" y2="-1225.1"/>
+ <line class="st55" x1="-999.3" y1="-3360.6" x2="-999.3" y2="-1225.6"/>
+ <line class="st55" x1="-799.8" y1="-3361.1" x2="-799.8" y2="-1226.1"/>
+ <line class="st55" x1="-600.2" y1="-3361.6" x2="-600.2" y2="-1226.6"/>
+ <line class="st55" x1="-400.6" y1="-3362.1" x2="-400.6" y2="-1227.1"/>
+ <line class="st55" x1="-201.1" y1="-3362.6" x2="-201.1" y2="-1227.6"/>
+ <line class="st55" x1="-1.5" y1="-3363.1" x2="-1.5" y2="-1228.1"/>
+ </g>
+ <g>
+ <g class="st16">
+ <linearGradient id="SVGID_31_" gradientUnits="userSpaceOnUse" x1="-576.0264" y1="-2978.5583" x2="-545.5" y2="-2978.5583">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <rect x="-576" y="-2982.6" class="st56" width="30.5" height="8"/>
+ </g>
+ <g>
+
+ <linearGradient id="SVGID_32_" gradientUnits="userSpaceOnUse" x1="-1066.5444" y1="-3006.7014" x2="-1039.4526" y2="-3006.7014">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <polygon class="st57" points="-1061.4,-2988 -1066.5,-2994.1 -1051.8,-3006.7 -1066.5,-3019.3 -1061.3,-3025.4 -1039.5,-3006.6
+ "/>
+ </g>
+ <g class="st51">
+
+ <image style="overflow:visible;opacity:0.2;" width="425" height="85" xlink:href="1FE9CA9FC2C93A5.png" transform="matrix(1 0 0 1 -1016 -3049.0515)">
+ </image>
+ <g>
+ <g>
+ <path class="st8" d="M-967.1-2975.7h-13.6l-23.2-51.7v51.7h-11.1v-68.4h15l21.7,49v-49h11.9c0.1,0.1,0.2,0.3,0.2,0.5
+ c0,0.3-0.1,0.6-0.4,1c-0.3,0.4-0.5,1.2-0.6,2.3V-2975.7z"/>
+ <path class="st8" d="M-951.5-3044.1h23.2c4.1,0,7.6,0.5,10.5,1.6c2.9,1.1,5.3,2.6,7.1,4.4c1.9,1.9,3.2,4,4.1,6.5
+ c0.9,2.5,1.3,5.1,1.3,7.9c0,2.8-0.4,5.4-1.3,7.9c-0.8,2.5-2.2,4.6-4,6.4c-1.8,1.8-4.2,3.3-7,4.3c-2.9,1.1-6.3,1.6-10.2,1.6
+ H-939v27.7h-12.5V-3044.1z M-939-3033.2v19.4h10.3c1.9,0,3.5-0.2,4.9-0.7c1.4-0.5,2.5-1.1,3.3-2c0.9-0.8,1.5-1.8,1.9-3
+ c0.4-1.2,0.6-2.4,0.6-3.7c0-1.5-0.2-2.8-0.7-4c-0.4-1.2-1.1-2.3-2-3.1s-2-1.6-3.3-2.1c-1.3-0.5-2.9-0.8-4.7-0.8H-939z"/>
+ <path class="st8" d="M-892.2-3044.1h13l11.5,32.2l11.4-32.3h13.1v68.5h-11.1v-49.6l-9.6,25.8h-8.1l-9.2-25.8v49.6h-11V-3044.1z
+ "/>
+ <path class="st8" d="M-730.2-3024.8c-0.3-0.1-0.5-0.2-0.6-0.4c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.3-0.1-0.6-0.1-1
+ c0-0.4-0.1-0.8-0.3-1.3c-1-2.3-2.4-4.2-4.2-5.5c-1.8-1.4-4-2-6.7-2c-2.2,0-4.2,0.6-5.9,1.9c-1.8,1.2-3.3,3-4.5,5.2
+ c-1.2,2.2-2.2,4.9-2.9,8.1c-0.7,3.2-1,6.7-1,10.6c0,3.7,0.4,7.2,1.1,10.4c0.7,3.2,1.8,5.9,3.1,8.2c1.3,2.3,2.9,4.1,4.8,5.4
+ c1.9,1.3,3.9,2,6.1,2c2.6,0,5-0.8,7-2.5c2-1.6,3.8-3.9,5.4-6.6l9.3,6c-2.6,4.5-5.7,7.8-9.4,10s-7.7,3.3-12,3.3
+ c-4,0-7.8-0.7-11.2-2.1c-3.4-1.4-6.4-3.6-8.9-6.6c-2.5-3-4.5-6.7-5.9-11.2c-1.4-4.5-2.1-9.7-2.1-15.8c0-4.5,0.4-8.5,1.2-12
+ c0.8-3.5,1.8-6.7,3.1-9.4c1.3-2.7,2.9-5,4.7-6.9c1.8-1.9,3.7-3.4,5.7-4.6c2-1.2,4.1-2.1,6.3-2.6c2.2-0.5,4.3-0.8,6.3-0.8
+ c2.6,0,5,0.4,7.4,1.1c2.3,0.7,4.5,1.8,6.5,3.2c2,1.4,3.8,3,5.3,4.9c1.5,1.9,2.8,4,3.8,6.4L-730.2-3024.8z"/>
+ <path class="st8" d="M-660.7-2986v10.3h-43.7v-68.4h13.4c0.1,0.1,0.2,0.3,0.2,0.5c0,0.3-0.1,0.6-0.4,1
+ c-0.3,0.4-0.5,1.2-0.6,2.3v54.2H-660.7z"/>
+ <path class="st8" d="M-640.9-3044.1h38.2v10.2H-616v48.1h13.8v10.1h-39.4v-10.2h13.3v-48h-12.6V-3044.1z"/>
+ </g>
+ </g>
+ </g>
+ <rect x="-1067.7" y="-2909.6" class="st47" width="551.7" height="304.6"/>
+ <text transform="matrix(1 0 0 1 -1067.7363 -2894.8225)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">The</tspan><tspan x="40.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="52.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">intelligent</tspan><tspan x="165.8" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="178.1" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">package</tspan><tspan x="276.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="288.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">manager</tspan><tspan x="391.3" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="403.5" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">for</tspan><tspan x="434.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="446.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">the</tspan><tspan x="482.8" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="495.1" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Node </tspan><tspan x="4.7" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Javascript Platform. Install stuff and get coding!</tspan></text>
+ <g>
+ <rect x="-1065.7" y="-2810.1" class="st14" width="230" height="59.2"/>
+ <rect x="-1059.8" y="-2804.2" class="st19" width="230" height="59.2"/>
+
+ <text transform="matrix(1 0 0 1 -1008.8589 -2771.6399)" class="st8" style="font-family:'Poppins-SemiBold'; font-size:20px; letter-spacing:1;">Read Docs</text>
+ </g>
+ </g>
+ <g class="st51">
+ <path class="st8" d="M-458.1-3308.1v21.7c0,1.7-1.4,3-3,3h-849.6c-1.7,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h849.6
+ C-459.4-3311.1-458.1-3309.7-458.1-3308.1z"/>
+ <path class="st41" d="M-458.1-3308.1v21.7c0,1.7-1.4,3-3,3h-849.6c-1.7,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h849.6
+ C-459.4-3311.1-458.1-3309.7-458.1-3308.1z"/>
+ </g>
+ <g class="st51">
+ <path class="st8" d="M-334.1-3141.1v21.7c0,1.7-1.4,3-3,3h-849.6c-1.7,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h849.6
+ C-335.4-3144.1-334.1-3142.7-334.1-3141.1z"/>
+ <path class="st41" d="M-334.1-3141.1v21.7c0,1.7-1.4,3-3,3h-849.6c-1.7,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h849.6
+ C-335.4-3144.1-334.1-3142.7-334.1-3141.1z"/>
+ </g>
+ <g>
+ <g>
+ <path class="st46" d="M-1516.9-3387h6.4v-9.7h3.2v9.7h3.2v-13h-12.8V-3387z M-1486.2-3400v13h6.4v-9.7h3.2v9.7h3.2v-9.7h3.2v9.7
+ h3.2v-13H-1486.2L-1486.2-3400z M-1495.2-3396.7h3.2v6.5h-3.2V-3396.7z M-1501.6-3383.8h6.4v-3.2h6.4v-13h-12.8V-3383.8z"/>
+ <rect x="-1516.9" y="-3400" class="st47" width="49.9" height="16.2"/>
+ </g>
+ <polygon class="st46" points="-1451.9,-3396.8 -1451.9,-3390.5 -1445.8,-3390.5 -1445.8,-3387.4 -1452,-3387.4 -1458.3,-3387.4
+ -1458.2,-3400 -1445.8,-3400 -1445.8,-3396.9 "/>
+ <rect x="-1443.2" y="-3400" class="st46" width="6.4" height="12.9"/>
+
+ <rect x="-1437.3" y="-3393.4" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 -4824.4009 -1952.8765)" class="st46" width="3.1" height="9.5"/>
+
+ <rect x="-1416.1" y="-3392" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 -4803.0322 -1972.7385)" class="st46" width="2" height="8.3"/>
+ <rect x="-1429.1" y="-3400.1" class="st46" width="6.4" height="12.9"/>
+ </g>
+
+ <linearGradient id="SVGID_33_" gradientUnits="userSpaceOnUse" x1="-1378.5829" y1="-2008.6067" x2="-998.5828" y2="-2008.6067" gradientTransform="matrix(7.182470e-02 -0.9974 0.9974 7.182470e-02 1552.7886 -2231.2971)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st58" points="-425.6,-1372.6 -452.9,-993.6 -646.4,-1007.5 -619.1,-1386.5 "/>
+ <linearGradient id="SVGID_34_" gradientUnits="userSpaceOnUse" x1="-1600" y1="-3419.5515" x2="0" y2="-3419.5515">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <line class="st59" x1="-1600" y1="-3419.6" x2="0" y2="-3419.6"/>
+
+ <linearGradient id="SVGID_35_" gradientUnits="userSpaceOnUse" x1="-475.3538" y1="-1962.2018" x2="-271.3535" y2="-1962.2018" gradientTransform="matrix(0.9887 -0.1501 0.1501 0.9887 290.6579 -98.123)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st60" points="-229.5,-1716.6 -431.2,-1686 -516.5,-2247.5 -314.8,-2278.1 "/>
+ <line class="st50" x1="-142.2" y1="-2319.7" x2="-143.9" y2="-2319.7"/>
+ <g>
+
+ <image style="overflow:visible;" width="827" height="400" xlink:href="1FE9CA9FC2C93AB.png" transform="matrix(1 0 0 1 -1217 -1603.0516)">
+ </image>
+ <g>
+ <path class="st61" d="M-399.5-1209.1l-788.4,0c-1.4,0-2.6-1.2-2.6-2.6v-362.8c0-1.4,1.2-2.6,2.6-2.6l788.4,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,362.8C-396.9-1210.2-398.1-1209.1-399.5-1209.1z"/>
+ <path class="st62" d="M-399.5-1209.1l-788.4,0c-1.4,0-2.6-1.2-2.6-2.6v-362.8c0-1.4,1.2-2.6,2.6-2.6l788.4,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,362.8C-396.9-1210.2-398.1-1209.1-399.5-1209.1z"/>
+ </g>
+ </g>
+ <rect x="-1160" y="-1139.1" class="st8" width="21" height="38"/>
+
+ <linearGradient id="SVGID_36_" gradientUnits="userSpaceOnUse" x1="-1363.8662" y1="-2368.8884" x2="-983.8663" y2="-2368.8884" gradientTransform="matrix(0.1152 -0.9933 0.9933 0.1152 1308.3594 -3181.1709)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st63" points="-1061.8,-2465.6 -1105.5,-2088.1 -1298.2,-2110.5 -1254.5,-2488 "/>
+ <g>
+
+ <image style="overflow:visible;" width="828" height="375" xlink:href="1FE9CA9FC2C93AC.png" transform="matrix(1 0 0 1 -1217 -2550.0515)">
+ </image>
+ <g>
+ <path class="st61" d="M-397.6-2181.6l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6v-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,337.3C-395-2182.7-396.2-2181.6-397.6-2181.6z"/>
+ <path class="st62" d="M-397.6-2181.6l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6v-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,337.3C-395-2182.7-396.2-2181.6-397.6-2181.6z"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(0.9755 0 0 1 -914.0342 -2335.4666)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Nunc malesuada suscipit enim at feugiat. </tspan><tspan x="-20.3" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;"> Duis id mauris lectus. Donec a sagittis lectus.</tspan></text>
+ </g>
+ <g id="XMLID_3_">
+ <text transform="matrix(0.9755 0 0 1 -990.544 -1356.6014)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Lorem ipsum dolor sit amet, consectetur adipiscing elit. </tspan><tspan x="0" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Sed tempus sapien nibh, et vehicula ipsum cursus non. </tspan></text>
+ </g>
+ <g class="st33">
+
+ <text transform="matrix(1 0 0 1 -4609.1777 -2169.3308)" class="st8" style="font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Easy to Use</text>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="236" height="59" xlink:href="1FE9CA9FC2C93AF.png" transform="matrix(1 0 0 1 -915 -2418.0515)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -911.9512 -2386.3308)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Easy to Use</text>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="202" height="59" xlink:href="1FE9CA9FC2C93AD.png" transform="matrix(1 0 0 1 -984 -1439.0516)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -980.5255 -1407.3309)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Ultra Fast</text>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;" width="827" height="401" xlink:href="1FE9CA9FC2C93AA.png" transform="matrix(1 0 0 1 -1217 -2070.0515)">
+ </image>
+ <g>
+ <path class="st61" d="M-399.1-1675.6l-788.4,0c-1.4,0-2.6-1.2-2.6-2.6l0-362.8c0-1.4,1.2-2.6,2.6-2.6l788.4,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,362.8C-396.6-1676.7-397.7-1675.6-399.1-1675.6z"/>
+ <path class="st62" d="M-399.1-1675.6l-788.4,0c-1.4,0-2.6-1.2-2.6-2.6l0-362.8c0-1.4,1.2-2.6,2.6-2.6l788.4,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,362.8C-396.6-1676.7-397.7-1675.6-399.1-1675.6z"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(0.9755 0 0 1 -1004.5447 -1847.6014)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Sed accumsan vehicula diam vel auctor. Suspendisse id </tspan><tspan x="0" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">interdum lectus. Phasellus sed tortor sed dui rutrum </tspan><tspan x="0" y="54" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">vestibulum vitae eget lacus. </tspan></text>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="237" height="59" xlink:href="1FE9CA9FC2C93A6.png" transform="matrix(1 0 0 1 -1002 -1932.0516)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -998.5334 -1900.3309)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Easy to Use</text>
+ </g>
+ </g>
+ <polygon class="st64" points="3.6,-935.7 -1603.1,-985.9 -1603.1,-543.6 0.5,-543.6 "/>
+
+ <linearGradient id="SVGID_37_" gradientUnits="userSpaceOnUse" x1="-2335.8354" y1="-2249.9255" x2="-1955.8352" y2="-2249.9255" gradientTransform="matrix(0.9989 -4.653295e-02 4.653295e-02 0.9989 980.2065 948.5847)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st65" points="-1073.7,-1111 -1453.3,-1093.3 -1462.3,-1287.1 -1082.7,-1304.8 "/>
+ <line class="st41" x1="-422.4" y1="-3227.3" x2="-414" y2="-3218.3"/>
+ <line class="st41" x1="-422.7" y1="-3218.9" x2="-413.7" y2="-3227.2"/>
+ <line class="st41" x1="-477.4" y1="-3303.3" x2="-469" y2="-3294.3"/>
+ <line class="st41" x1="-477.7" y1="-3294.9" x2="-468.7" y2="-3303.2"/>
+ <line class="st41" x1="-351.4" y1="-3134.3" x2="-343" y2="-3125.3"/>
+ <line class="st41" x1="-351.7" y1="-3125.9" x2="-342.7" y2="-3134.2"/>
+ <path class="st19" d="M-984.6-2367.6c5.4-5.6,8.6-13.1,8.6-21.5c0-17.1-13.9-31-31-31s-31,13.9-31,31c0,9.8,4.5,18.5,11.6,24.2
+ c-2.2,5.6-8,23.3-5.2,51.8h55.6C-976-2313.1-970.7-2344.9-984.6-2367.6z"/>
+ <circle class="st18" cx="-1004.5" cy="-2394.4" r="3.5"/>
+ <circle class="st18" cx="-1021.5" cy="-2391.6" r="3.5"/>
+ <circle class="st62" cx="-1014.5" cy="-2389.6" r="30.5"/>
+ <path class="st66" d="M-1004-2381.3c-3.2,3.7-8.8,4.1-12.4,0.9"/>
+ <path class="st62" d="M-1028.6-2365.8c0,0-9.4,18.8-6,53.8h55.6c0,0,5.6-33.4-9.7-56.2"/>
+ <line class="st62" x1="-1100" y1="-2434.1" x2="-1100" y2="-2297.1"/>
+ <line class="st62" x1="-1100" y1="-1931.1" x2="-1100" y2="-1794.1"/>
+ <line class="st62" x1="-1100" y1="-1452.1" x2="-1100" y2="-1315.1"/>
+ <g id="POueHo_1_">
+
+ <image style="overflow:visible;" width="800" height="600" id="POueHo_2_" xlink:href="1FE9CA9FC2C93A4.jpg" transform="matrix(1 0 0 1 289 -4704.0518)">
+ </image>
+ </g>
+ <g id="FkRr9g_1_">
+
+ <image style="overflow:visible;" width="800" height="600" id="FkRr9g_2_" xlink:href="1FE9CA9FC2C93CB.jpg" transform="matrix(1 0 0 1 -1131 -4653.0518)">
+ </image>
+ </g>
+ <rect x="44" y="-3398.1" class="st47" width="22" height="22.6"/>
+
+ <text transform="matrix(1 0 0 1 50 -3383.8518)" class="st35" style="font-family:'SourceCodeVariable-Roman'; font-size:20px; letter-spacing:1;">❤</text>
+ <text transform="matrix(1 0 0 1 1224.9082 -3382.7502)"><tspan x="0" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">Configuring NPM</tspan><tspan x="116" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:24;"> </tspan><tspan x="144" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">Using NPM</tspan><tspan x="216.4" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:31;"> </tspan><tspan x="252" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">CLI Commands</tspan><tspan x="359.8" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:-3;"> </tspan></text>
+ <g>
+ <g>
+ <path class="st46" d="M79.1-3384h6.4v-9.7h3.2v9.7h3.2v-13H79.1V-3384z M109.8-3397v13h6.4v-9.7h3.2v9.7h3.2v-9.7h3.2v9.7h3.2
+ v-13H109.8L109.8-3397z M100.8-3393.7h3.2v6.5h-3.2V-3393.7z M94.4-3380.8h6.4v-3.2h6.4v-13H94.4V-3380.8z"/>
+ <rect x="79.1" y="-3397" class="st47" width="49.9" height="16.2"/>
+ </g>
+ <polygon class="st46" points="144.1,-3393.8 144.1,-3387.5 150.2,-3387.5 150.2,-3384.4 144,-3384.4 137.7,-3384.4 137.8,-3397
+ 150.2,-3397 150.2,-3393.9 "/>
+ <rect x="152.8" y="-3397" class="st46" width="6.4" height="12.9"/>
+
+ <rect x="158.7" y="-3390.4" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 -3225.4011 -3545.8765)" class="st46" width="3.1" height="9.5"/>
+
+ <rect x="179.9" y="-3389" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 -3204.0322 -3565.7385)" class="st46" width="2" height="8.3"/>
+ <rect x="166.9" y="-3397.1" class="st46" width="6.4" height="12.9"/>
+ </g>
+ <linearGradient id="SVGID_38_" gradientUnits="userSpaceOnUse" x1="18" y1="-3418.5515" x2="1618" y2="-3418.5515">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <line class="st67" x1="18" y1="-3418.6" x2="1618" y2="-3418.6"/>
+ <linearGradient id="SVGID_39_" gradientUnits="userSpaceOnUse" x1="21" y1="-1667.3009" x2="1619" y2="-1667.3009">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.1444" style="stop-color:#FF4B01"/>
+ <stop offset="0.7119" style="stop-color:#C12127"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st68" points="1619,-732.1 1619,-2602.6 21,-2602.6 21,-736 "/>
+ <line class="st50" x1="736.8" y1="-2328.7" x2="735.1" y2="-2328.7"/>
+ <line class="st38" x1="320.7" y1="-2305.6" x2="318.5" y2="-2305.6"/>
+
+ <linearGradient id="SVGID_40_" gradientUnits="userSpaceOnUse" x1="-1317.8749" y1="-399.812" x2="-937.8748" y2="-399.812" gradientTransform="matrix(7.182470e-02 -0.9974 0.9974 7.182470e-02 1552.7886 -2231.2971)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st69" points="1183.4,-1317.6 1156.1,-938.6 962.6,-952.5 989.9,-1331.5 "/>
+
+ <linearGradient id="SVGID_41_" gradientUnits="userSpaceOnUse" x1="1150.6624" y1="-1659.7031" x2="1354.6626" y2="-1659.7031" gradientTransform="matrix(0.9887 -0.1501 0.1501 0.9887 290.6579 -98.123)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st70" points="1423.5,-1661.6 1221.8,-1631 1136.5,-2192.5 1338.2,-2223.1 "/>
+
+ <linearGradient id="SVGID_42_" gradientUnits="userSpaceOnUse" x1="-1233.1201" y1="-764.2665" x2="-853.1201" y2="-764.2665" gradientTransform="matrix(0.1152 -0.9933 0.9933 0.1152 1308.3594 -3181.1709)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st71" points="547.2,-2410.6 503.5,-2033.1 310.8,-2055.5 354.5,-2433 "/>
+ <g class="st16">
+ <g>
+ <path class="st14" d="M1221.4-2116.6l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6l0-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,337.3C1224-2117.7,1222.8-2116.6,1221.4-2116.6z"/>
+ </g>
+ <g>
+ <path class="st72" d="M1211.4-2126.6l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6l0-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,337.3C1214-2127.7,1212.8-2126.6,1211.4-2126.6z"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(0.9755 0 0 1 728.9658 -2284.4666)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Nunc malesuada suscipit enim at feugiat. </tspan><tspan x="-20.3" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;"> Duis id mauris lectus. Donec a sagittis lectus.</tspan></text>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="236" height="59" xlink:href="1FE9CA9FC2C93C9.png" transform="matrix(1 0 0 1 728 -2363.0515)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 731.1631 -2331.3308)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Easy to Use</text>
+ </g>
+ </g>
+
+ <linearGradient id="SVGID_43_" gradientUnits="userSpaceOnUse" x1="-731.1376" y1="-2120.1138" x2="-351.1375" y2="-2120.1138" gradientTransform="matrix(0.9989 -4.653295e-02 4.653295e-02 0.9989 980.2065 948.5847)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st73" points="535.3,-1056 155.7,-1038.3 146.7,-1232.1 526.3,-1249.8 "/>
+ <path class="st74" d="M655.3-2257.6H535.2c-1.1,0-2-0.9-2-2v-81h124.2c0,20.3,0,40.7,0,61v20
+ C657.3-2258.4,656.4-2257.6,655.3-2257.6z"/>
+ <rect x="533.7" y="-2354.1" class="st75" width="123.2" height="14"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="85" height="18" xlink:href="1FE9CA9FC2C93F7.png" transform="matrix(1 0 0 1 537.8558 -2333.1958)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_44_" gradientUnits="userSpaceOnUse" x1="579.1498" y1="-2316.9705" x2="580.8394" y2="-2331.5374">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="543.3" y="-2327.4" class="st76" width="73.4" height="6.2"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="60" height="17" xlink:href="1FE9CA9FC2C93F9.png" transform="matrix(1 0 0 1 538.1003 -2315.9514)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_45_" gradientUnits="userSpaceOnUse" x1="566.9532" y1="-2302.2866" x2="568.2815" y2="-2313.738">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="543.2" y="-2311" class="st77" width="48.8" height="5.9"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="70" height="18" xlink:href="1FE9CA9FC2C93FB.png" transform="matrix(1 0 0 1 537.8434 -2301.2083)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_46_" gradientUnits="userSpaceOnUse" x1="571.6628" y1="-2285.8679" x2="573.1657" y2="-2298.8254">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="543.2" y="-2295.5" class="st78" width="58.4" height="6.4"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="64" height="19" xlink:href="1FE9CA9FC2C93FE.png" transform="matrix(1 0 0 1 536.9122 -2284.1394)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_47_" gradientUnits="userSpaceOnUse" x1="568.1271" y1="-2269.1079" x2="569.5059" y2="-2280.9954">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="542.8" y="-2278.1" class="st79" width="52" height="6"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="27" height="17" xlink:href="1FE9CA9FC2C93FF.png" transform="matrix(1 0 0 1 594.1003 -2315.9514)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_48_" gradientUnits="userSpaceOnUse" x1="607.0668" y1="-2304.1665" x2="607.9589" y2="-2311.8579">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="599.5" y="-2311" class="st80" width="16" height="5.9"/>
+ </g>
+ </g>
+ <line class="st81" x1="580" y1="-2347.1" x2="620" y2="-2347.1"/>
+ <circle class="st18" cx="541.5" cy="-2347.6" r="1.5"/>
+ <circle class="st18" cx="547.5" cy="-2347.6" r="1.5"/>
+ <line class="st50" x1="738.8" y1="-1882.7" x2="737.1" y2="-1882.7"/>
+ <line class="st38" x1="322.7" y1="-1859.6" x2="320.5" y2="-1859.6"/>
+ <g class="st16">
+ <g>
+ <path class="st14" d="M1223.4-1670.6l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6l0-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,337.3C1226-1671.7,1224.8-1670.6,1223.4-1670.6z"/>
+ </g>
+ <g>
+ <path class="st72" d="M1213.4-1680.6l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6l0-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,337.3C1216-1681.7,1214.8-1680.6,1213.4-1680.6z"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="202" height="59" xlink:href="1FE9CA9FC2C93FA.png" transform="matrix(1 0 0 1 723 -1936.0516)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 726.3887 -1904.3309)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Ultra Fast</text>
+ </g>
+ </g>
+ <path class="st74" d="M657.3-1811.6H537.2c-1.1,0-2-0.9-2-2v-81h124.2c0,20.3,0,40.7,0,61v20
+ C659.3-1812.4,658.4-1811.6,657.3-1811.6z"/>
+ <rect x="535.7" y="-1908.1" class="st75" width="123.2" height="14"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="85" height="18" xlink:href="1FE9CA9FC2C93F5.png" transform="matrix(1 0 0 1 539.8558 -1887.1958)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_49_" gradientUnits="userSpaceOnUse" x1="581.1498" y1="-1870.9703" x2="582.8394" y2="-1885.5374">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="545.3" y="-1881.4" class="st82" width="73.4" height="6.2"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="60" height="17" xlink:href="1FE9CA9FC2C93F6.png" transform="matrix(1 0 0 1 540.1003 -1869.9513)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_50_" gradientUnits="userSpaceOnUse" x1="568.9532" y1="-1856.2865" x2="570.2815" y2="-1867.738">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="545.2" y="-1865" class="st83" width="48.8" height="5.9"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="70" height="18" xlink:href="1FE9CA9FC2C93D2.png" transform="matrix(1 0 0 1 539.8434 -1855.2081)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_51_" gradientUnits="userSpaceOnUse" x1="573.6628" y1="-1839.8679" x2="575.1657" y2="-1852.8253">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="545.2" y="-1849.5" class="st84" width="58.4" height="6.4"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="64" height="19" xlink:href="1FE9CA9FC2C93D1.png" transform="matrix(1 0 0 1 538.9122 -1838.1394)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_52_" gradientUnits="userSpaceOnUse" x1="570.1271" y1="-1823.1078" x2="571.5059" y2="-1834.9954">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="544.8" y="-1832.1" class="st85" width="52" height="6"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="27" height="17" xlink:href="1FE9CA9FC2C93D6.png" transform="matrix(1 0 0 1 596.1003 -1869.9513)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_53_" gradientUnits="userSpaceOnUse" x1="609.0668" y1="-1858.1666" x2="609.9589" y2="-1865.858">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="601.5" y="-1865" class="st86" width="16" height="5.9"/>
+ </g>
+ </g>
+ <line class="st81" x1="582" y1="-1901.1" x2="622" y2="-1901.1"/>
+ <circle class="st18" cx="543.5" cy="-1901.6" r="1.5"/>
+ <circle class="st18" cx="549.5" cy="-1901.6" r="1.5"/>
+ <rect x="723.1" y="-1875.1" class="st47" width="389.8" height="118.3"/>
+ <text transform="matrix(0.9755 0 0 1 723.1143 -1861.7743)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Lorem ipsum dolor sit amet, consectetuer </tspan><tspan x="0" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">adipiscing elit, sed diam nonummy nibh eu</tspan><tspan x="387.7" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">-</tspan><tspan x="0" y="54" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">ismod Lorem ipsum dolor sit amet, tetuer </tspan><tspan x="0" y="81" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">adipiscing elit, sed diam nonummy nibmod </tspan></text>
+ <line class="st50" x1="741.8" y1="-1419.7" x2="740.1" y2="-1419.7"/>
+ <line class="st38" x1="325.7" y1="-1396.6" x2="323.5" y2="-1396.6"/>
+ <g class="st16">
+ <g>
+ <path class="st14" d="M1226.4-1207.6l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6l0-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,337.3C1229-1208.7,1227.8-1207.6,1226.4-1207.6z"/>
+ </g>
+ <g>
+ <path class="st72" d="M1216.4-1217.6l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6l0-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,337.3C1219-1218.7,1217.8-1217.6,1216.4-1217.6z"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="202" height="59" xlink:href="1FE9CA9FC2C93D0.png" transform="matrix(1 0 0 1 726 -1473.0516)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 729.3887 -1441.3309)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Ultra Fast</text>
+ </g>
+ </g>
+ <path class="st74" d="M660.3-1348.6H540.2c-1.1,0-2-0.9-2-2v-81h124.2c0,20.3,0,40.7,0,61v20
+ C662.3-1349.4,661.4-1348.6,660.3-1348.6z"/>
+ <rect x="538.7" y="-1445.1" class="st75" width="123.2" height="14"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="85" height="18" xlink:href="1FE9CA9FC2C93D3.png" transform="matrix(1 0 0 1 542.8558 -1424.1958)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_54_" gradientUnits="userSpaceOnUse" x1="584.1498" y1="-1407.9703" x2="585.8394" y2="-1422.5374">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="548.3" y="-1418.4" class="st87" width="73.4" height="6.2"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="60" height="17" xlink:href="1FE9CA9FC2C93CF.png" transform="matrix(1 0 0 1 543.1003 -1406.9513)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_55_" gradientUnits="userSpaceOnUse" x1="571.9532" y1="-1393.2865" x2="573.2815" y2="-1404.738">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="548.2" y="-1402" class="st88" width="48.8" height="5.9"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="70" height="18" xlink:href="1FE9CA9FC2C942E.png" transform="matrix(1 0 0 1 542.8434 -1392.2081)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_56_" gradientUnits="userSpaceOnUse" x1="576.6628" y1="-1376.8679" x2="578.1657" y2="-1389.8253">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="548.2" y="-1386.5" class="st89" width="58.4" height="6.4"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="64" height="19" xlink:href="1FE9CA9FC2C9431.png" transform="matrix(1 0 0 1 541.9122 -1375.1394)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_57_" gradientUnits="userSpaceOnUse" x1="573.1271" y1="-1360.1078" x2="574.5059" y2="-1371.9954">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="547.8" y="-1369.1" class="st90" width="52" height="6"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="27" height="17" xlink:href="1FE9CA9FC2C9432.png" transform="matrix(1 0 0 1 599.1003 -1406.9513)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_58_" gradientUnits="userSpaceOnUse" x1="612.0668" y1="-1395.1666" x2="612.9589" y2="-1402.858">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="604.5" y="-1402" class="st91" width="16" height="5.9"/>
+ </g>
+ </g>
+ <line class="st81" x1="585" y1="-1438.1" x2="625" y2="-1438.1"/>
+ <circle class="st18" cx="546.5" cy="-1438.6" r="1.5"/>
+ <circle class="st18" cx="552.5" cy="-1438.6" r="1.5"/>
+ <rect x="726.1" y="-1412.1" class="st47" width="389.8" height="118.3"/>
+ <text transform="matrix(0.9755 0 0 1 726.1143 -1398.7743)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Lorem ipsum dolor sit amet, consectetuer </tspan><tspan x="0" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">adipiscing elit, sed diam nonummy nibh eu</tspan><tspan x="387.7" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">-</tspan><tspan x="0" y="54" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">ismod Lorem ipsum dolor sit amet, tetuer </tspan><tspan x="0" y="81" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">adipiscing elit, sed diam nonummy nibmod </tspan></text>
+ <path class="st92" d="M1376.9-3190.4c-0.1,0-0.2,0-0.3,0l-26.6-8.5c-0.3-0.1-0.5-0.5-0.4-0.8c0-0.1,0.1-0.2,0.2-0.3l20.5-19.1
+ c0.2-0.2,0.4-0.2,0.6-0.1l26.6,8.5c0.3,0.1,0.5,0.5,0.4,0.8c0,0.1-0.1,0.2-0.2,0.3l-20.5,19
+ C1377.1-3190.5,1377-3190.4,1376.9-3190.4z"/>
+ <path class="st92" d="M1383.1-3162.7c-0.1,0-0.2,0-0.3,0l-26.6-8.4c-0.2-0.1-0.4-0.2-0.4-0.5l-6.2-27.7c-0.1-0.3,0.1-0.7,0.5-0.8
+ c0.3-0.1,0.7,0.1,0.8,0.5l6.1,27.4l25.2,8l-5.9-26.6c-0.1-0.3,0.1-0.7,0.5-0.8s0.7,0.1,0.8,0.5l6.2,27.7
+ C1383.7-3163.2,1383.4-3162.8,1383.1-3162.7z"/>
+ <path class="st92" d="M1383.1-3162.7c-0.2,0-0.5,0-0.6-0.2c-0.2-0.3-0.2-0.7,0-0.9l20.2-18.8l-6.1-27.3c-0.1-0.3,0.1-0.7,0.5-0.8
+ c0.3-0.1,0.7,0.1,0.8,0.5l6.2,27.6c0.1,0.2,0,0.5-0.2,0.6l-20.5,19.1C1383.3-3162.8,1383.2-3162.8,1383.1-3162.7z"/>
+ <path class="st93" d="M1389.1-2812c-0.1-0.1-0.2-0.1-0.2-0.2l-10.2-23.9c-0.1-0.3,0-0.7,0.3-0.8c0.1,0,0.2-0.1,0.3,0l25.9,2.9
+ c0.2,0,0.4,0.2,0.5,0.4l10.1,24c0.1,0.3,0,0.7-0.3,0.8c-0.1,0-0.2,0.1-0.3,0l-25.8-2.9C1389.3-2811.9,1389.2-2811.9,1389.1-2812z"
+ />
+ <path class="st93" d="M1373.4-2790.8c-0.1-0.1-0.2-0.1-0.2-0.2L1363-2815c-0.1-0.2-0.1-0.4,0.1-0.6l15.8-21.2
+ c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,0.3,0.6,0.1,0.8l-15.6,20.9l9.6,22.6l15.1-20.3c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,25.3,4,25.1,4.3
+ l-40.7,17.7C1374-2790.7,1373.6-2790.6,1373.4-2790.8z"/>
+ <path class="st93" d="M1414.8-2809.9c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,0.3,0.6,0.1,0.8l-15.7,21.1c-0.1,0.2-0.3,0.3-0.5,0.2
+ l-25.9-2.9c-0.1,0-0.2-0.1-0.3-0.1c-0.2-0.1-0.3-0.3-0.2-0.5c0-0.3,0.3-0.6,0.7-0.5"/>
+ <linearGradient id="SVGID_59_" gradientUnits="userSpaceOnUse" x1="2956.01" y1="-3597.5083" x2="1923.99" y2="-2367.5947">
+ <stop offset="0" style="stop-color:#D4BEB8;stop-opacity:0.7"/>
+ <stop offset="1" style="stop-color:#FFFFFF"/>
+ </linearGradient>
+ <rect x="1641" y="-3360.1" class="st94" width="1598" height="755"/>
+ <rect x="1667" y="-3398.1" class="st47" width="22" height="22.6"/>
+
+ <text transform="matrix(1 0 0 1 1673 -3383.8518)" class="st35" style="font-family:'SourceCodeVariable-Roman'; font-size:20px; letter-spacing:1;">❤</text>
+ <text transform="matrix(1 0 0 1 3044.9082 -3382.7502)"><tspan x="0" y="0" style="font-family:'Poppins-Medium'; font-size:14px;">docs</tspan><tspan x="34.3" y="0" style="font-family:'Poppins-Medium'; font-size:14px; letter-spacing:-1;"> </tspan><tspan x="36" y="0" style="font-family:'Poppins-Medium'; font-size:14px; letter-spacing:32;"> </tspan><tspan x="72" y="0" style="font-family:'Poppins-Medium'; font-size:14px;">npmjs.com</tspan><tspan x="151.5" y="0" style="font-family:'Poppins-Medium'; font-size:14px; letter-spacing:24;"> </tspan></text>
+ <g>
+ <g>
+ <path class="st46" d="M1713.1-3384h6.4v-9.7h3.2v9.7h3.2v-13h-12.8V-3384z M1743.8-3397v13h6.4v-9.7h3.2v9.7h3.2v-9.7h3.2v9.7
+ h3.2v-13H1743.8L1743.8-3397z M1734.8-3393.7h3.2v6.5h-3.2V-3393.7z M1728.4-3380.8h6.4v-3.2h6.4v-13h-12.8V-3380.8z"/>
+ <rect x="1713.1" y="-3397" class="st47" width="49.9" height="16.2"/>
+ </g>
+ <polygon class="st46" points="1778.1,-3393.8 1778.1,-3387.5 1784.2,-3387.5 1784.2,-3384.4 1778,-3384.4 1771.7,-3384.4
+ 1771.8,-3397 1784.2,-3397 1784.2,-3393.9 "/>
+ <rect x="1786.8" y="-3397" class="st46" width="6.4" height="12.9"/>
+
+ <rect x="1792.7" y="-3390.4" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 -1591.401 -5179.8765)" class="st46" width="3.1" height="9.5"/>
+
+ <rect x="1813.9" y="-3389" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 -1570.0321 -5199.7383)" class="st46" width="2" height="8.3"/>
+ <rect x="1800.9" y="-3397.1" class="st46" width="6.4" height="12.9"/>
+ </g>
+ <linearGradient id="SVGID_60_" gradientUnits="userSpaceOnUse" x1="1640" y1="-3419.5515" x2="3240" y2="-3419.5515">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <line class="st95" x1="1640" y1="-3419.6" x2="3240" y2="-3419.6"/>
+ <rect x="18.5" y="-994.6" class="st96" width="1602" height="510"/>
+ <linearGradient id="SVGID_61_" gradientUnits="userSpaceOnUse" x1="2160.1465" y1="-3197.3015" x2="2161.3535" y2="-3197.3015">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st97" x1="2161" y1="-3197.1" x2="2160.5" y2="-3197.6"/>
+ <line class="st40" x1="2206.9" y1="-3264.3" x2="2204.2" y2="-3264.3"/>
+ <line class="st40" x1="2175.2" y1="-3237" x2="2172.5" y2="-3237"/>
+ <line class="st40" x1="2371.8" y1="-3205.9" x2="2369.1" y2="-3205.9"/>
+ <g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="771" height="491" xlink:href="1FE9CA9FC2C9430.png" transform="matrix(1 0 0 1 2050 -3301.0515)">
+ </image>
+ <g>
+ <path class="st98" d="M2821.9-3282.4v468.9c0,2.2-1.8,4-4,4h-748.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h750.6
+ C2820.6-3285.4,2821.9-3284,2821.9-3282.4z"/>
+ <path class="st81" d="M2821.9-3282.4v468.9c0,2.2-1.8,4-4,4h-748.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h750.6
+ C2820.6-3285.4,2821.9-3284,2821.9-3282.4z"/>
+ </g>
+ </g>
+ <g>
+ <path class="st8" d="M2821.9-3282.1v21.7c0,1.7-1.3,3-3,3h-750.6c-1.7,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h750.6
+ C2820.6-3285.1,2821.9-3283.7,2821.9-3282.1z"/>
+ <path class="st62" d="M2821.9-3282.1v21.7c0,1.7-1.3,3-3,3h-750.6c-1.7,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h750.6
+ C2820.6-3285.1,2821.9-3283.7,2821.9-3282.1z"/>
+ </g>
+ </g>
+ <g>
+ <line class="st40" x1="2207.4" y1="-3189.4" x2="2204.6" y2="-3189.4"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="770" height="490" xlink:href="1FE9CA9FC2C942D.png" transform="matrix(1 0 0 1 2089 -3245.0515)">
+ </image>
+ <g>
+ <path class="st98" d="M2860.2-3226.7v468.9c0,2.2-1.8,4-4,4h-748.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h750.6
+ C2858.9-3229.7,2860.2-3228.3,2860.2-3226.7z"/>
+ <path class="st99" d="M2860.2-3226.7v468.9c0,2.2-1.8,4-4,4h-748.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h750.6
+ C2858.9-3229.7,2860.2-3228.3,2860.2-3226.7z"/>
+ </g>
+ </g>
+ <g>
+ <path class="st8" d="M2859.9-3227.1v21.7c0,1.7-1.3,3-3,3h-750.6c-1.7,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h750.6
+ C2858.6-3230.1,2859.9-3228.7,2859.9-3227.1z"/>
+ <path class="st62" d="M2859.9-3227.1v21.7c0,1.7-1.3,3-3,3h-750.6c-1.7,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h750.6
+ C2858.6-3230.1,2859.9-3228.7,2859.9-3227.1z"/>
+ </g>
+ </g>
+ <g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="771" height="490" xlink:href="1FE9CA9FC2C9413.png" transform="matrix(1 0 0 1 2123 -3185.0515)">
+ </image>
+ <g>
+ <path class="st98" d="M2894.6-3168.3v472.9c0,0.5-0.4,1-1,1h-754.7c-0.5,0-1-0.4-1-1v-472.9c0-1.1,0.9-2,2-2h752.6
+ C2893.7-3170.3,2894.6-3169.4,2894.6-3168.3z"/>
+ <path class="st99" d="M2894.6-3168.3v472.9c0,0.5-0.4,1-1,1h-754.7c-0.5,0-1-0.4-1-1v-472.9c0-1.1,0.9-2,2-2h752.6
+ C2893.7-3170.3,2894.6-3169.4,2894.6-3168.3z"/>
+ </g>
+ </g>
+ <g>
+ <g>
+ <rect x="2609.7" y="-3019.2" class="st14" width="23.3" height="6.1"/>
+ </g>
+ <g>
+ <polygon class="st14" points="2238.4,-3023.4 2234.5,-3028.1 2245.7,-3037.6 2234.5,-3047.3 2238.4,-3051.9 2255.2,-3037.6
+ "/>
+ </g>
+ <g class="st51">
+
+ <image style="overflow:visible;opacity:0.2;" width="327" height="66" xlink:href="1FE9CA9FC2C9415.png" transform="matrix(1 0 0 1 2272.4106 -3070.6409)">
+ </image>
+ <g>
+ <g>
+ <path class="st8" d="M2310.5-3013.9h-10.4l-17.7-39.6v39.6h-8.5v-52.3h11.5l16.6,37.5v-37.5h9.1c0.1,0.1,0.2,0.3,0.2,0.4
+ c0,0.2-0.1,0.5-0.3,0.8c-0.2,0.3-0.4,0.9-0.5,1.7V-3013.9z"/>
+ <path class="st8" d="M2322.4-3066.3h17.7c3.1,0,5.8,0.4,8,1.3c2.2,0.8,4,2,5.5,3.4c1.4,1.4,2.5,3.1,3.1,5c0.7,1.9,1,3.9,1,6
+ c0,2.1-0.3,4.1-1,6c-0.6,1.9-1.7,3.5-3.1,4.9c-1.4,1.4-3.2,2.5-5.4,3.3c-2.2,0.8-4.8,1.2-7.8,1.2h-8.6v21.2h-9.6V-3066.3z
+ M2332-3057.9v14.9h7.9c1.5,0,2.7-0.2,3.7-0.5c1-0.4,1.9-0.9,2.6-1.5c0.7-0.6,1.2-1.4,1.5-2.3c0.3-0.9,0.5-1.8,0.5-2.9
+ c0-1.1-0.2-2.1-0.5-3.1c-0.3-0.9-0.8-1.7-1.5-2.4c-0.7-0.7-1.5-1.2-2.5-1.6c-1-0.4-2.2-0.6-3.6-0.6H2332z"/>
+ <path class="st8" d="M2367.8-3066.3h9.9l8.8,24.6l8.7-24.7h10v52.4h-8.5v-38l-7.3,19.7h-6.2l-7.1-19.7v38h-8.4V-3066.3z"/>
+ <path class="st8" d="M2491.7-3051.5c-0.2-0.1-0.4-0.2-0.5-0.3c-0.1-0.2-0.1-0.4-0.2-0.6c0-0.2-0.1-0.5-0.1-0.8
+ c0-0.3-0.1-0.6-0.2-1c-0.8-1.8-1.8-3.2-3.2-4.2c-1.3-1-3.1-1.6-5.1-1.6c-1.7,0-3.2,0.5-4.5,1.4c-1.3,1-2.5,2.3-3.4,4
+ c-1,1.7-1.7,3.8-2.2,6.2c-0.5,2.4-0.8,5.1-0.8,8.1c0,2.9,0.3,5.5,0.8,7.9c0.6,2.4,1.3,4.5,2.4,6.3c1,1.8,2.2,3.1,3.7,4.2
+ c1.4,1,3,1.5,4.7,1.5c2,0,3.8-0.6,5.3-1.9c1.5-1.3,2.9-3,4.2-5.1l7.1,4.6c-2,3.4-4.4,6-7.2,7.7c-2.8,1.7-5.9,2.6-9.2,2.6
+ c-3.1,0-5.9-0.5-8.6-1.6c-2.6-1.1-4.9-2.8-6.8-5.1c-1.9-2.3-3.4-5.2-4.5-8.6c-1.1-3.4-1.6-7.4-1.6-12.1c0-3.4,0.3-6.5,0.9-9.2
+ c0.6-2.7,1.4-5.1,2.4-7.2c1-2.1,2.2-3.8,3.6-5.2c1.4-1.4,2.8-2.6,4.4-3.5c1.5-0.9,3.1-1.6,4.8-2c1.7-0.4,3.3-0.6,4.8-0.6
+ c2,0,3.8,0.3,5.6,0.8c1.8,0.6,3.5,1.4,5,2.4c1.5,1.1,2.9,2.3,4.1,3.8c1.2,1.5,2.2,3.1,2.9,4.9L2491.7-3051.5z"/>
+ <path class="st8" d="M2544.9-3021.8v7.9h-33.4v-52.3h10.2c0.1,0.1,0.2,0.3,0.2,0.4c0,0.2-0.1,0.5-0.3,0.8
+ c-0.2,0.3-0.4,0.9-0.5,1.7v41.5H2544.9z"/>
+ <path class="st8" d="M2560-3066.3h29.2v7.8h-10.2v36.8h10.6v7.7h-30.2v-7.8h10.2v-36.7h-9.7V-3066.3z"/>
+ </g>
+ </g>
+ </g>
+ <rect x="2233.3" y="-2950.6" class="st47" width="551.7" height="304.6"/>
+ <text transform="matrix(1 0 0 1 2233.2637 -2935.8225)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">The</tspan><tspan x="40.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="52.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">intelligent</tspan><tspan x="165.8" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="178.1" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">package</tspan><tspan x="276.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="288.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">manager</tspan><tspan x="391.3" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="403.5" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">for</tspan><tspan x="434.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="446.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">the</tspan><tspan x="482.8" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="495.1" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Node </tspan><tspan x="4.7" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Javascript Platform. Install stuff and get coding!</tspan></text>
+ <g>
+ <rect x="2235.3" y="-2851.1" class="st14" width="230" height="59.2"/>
+ <rect x="2241.2" y="-2845.2" class="st19" width="230" height="59.2"/>
+
+ <text transform="matrix(1 0 0 1 2292.1411 -2812.6399)" class="st8" style="font-family:'Poppins-Bold'; font-size:20px; letter-spacing:1;">Read Docs</text>
+ </g>
+ </g>
+ <g>
+ <path class="st8" d="M2894.9-3167.1v24.7c0,0,0,0,0,0h-756.6c0,0,0,0,0,0v-24.7c0-1.7,1.3-3,3-3h750.6
+ C2893.6-3170.1,2894.9-3168.7,2894.9-3167.1z"/>
+ <path class="st62" d="M2894.9-3167.1v24.7c0,0,0,0,0,0h-756.6c0,0,0,0,0,0v-24.7c0-1.7,1.3-3,3-3h750.6
+ C2893.6-3170.1,2894.9-3168.7,2894.9-3167.1z"/>
+ </g>
+ <line class="st66" x1="2154.6" y1="-3160.4" x2="2163" y2="-3151.4"/>
+ <line class="st66" x1="2154.3" y1="-3151.7" x2="2163.3" y2="-3160.1"/>
+ <line class="st66" x1="2114.6" y1="-3220.4" x2="2123" y2="-3211.4"/>
+ <line class="st66" x1="2114.3" y1="-3211.7" x2="2123.3" y2="-3220.1"/>
+ <line class="st66" x1="2077.6" y1="-3275.4" x2="2086" y2="-3266.4"/>
+ <line class="st66" x1="2077.3" y1="-3266.7" x2="2086.3" y2="-3275.1"/>
+ </g>
+ <linearGradient id="SVGID_62_" gradientUnits="userSpaceOnUse" x1="1641" y1="-1667.3009" x2="3239" y2="-1667.3009">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.1444" style="stop-color:#FF4B01"/>
+ <stop offset="0.7119" style="stop-color:#C12127"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st100" points="3239,-732.1 3239,-2602.6 1641,-2602.6 1641,-736 "/>
+ <line class="st50" x1="2356.8" y1="-2328.7" x2="2355.1" y2="-2328.7"/>
+ <line class="st38" x1="1940.7" y1="-2305.6" x2="1938.5" y2="-2305.6"/>
+
+ <linearGradient id="SVGID_63_" gradientUnits="userSpaceOnUse" x1="-1201.5189" y1="1216.004" x2="-821.5187" y2="1216.004" gradientTransform="matrix(7.182470e-02 -0.9974 0.9974 7.182470e-02 1552.7886 -2231.2971)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st101" points="2803.4,-1317.6 2776.1,-938.6 2582.6,-952.5 2609.9,-1331.5 "/>
+
+ <linearGradient id="SVGID_64_" gradientUnits="userSpaceOnUse" x1="2752.3081" y1="-1416.5347" x2="2956.3083" y2="-1416.5347" gradientTransform="matrix(0.9887 -0.1501 0.1501 0.9887 290.6579 -98.123)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st102" points="3043.5,-1661.6 2841.8,-1631 2756.5,-2192.5 2958.2,-2223.1 "/>
+
+ <linearGradient id="SVGID_65_" gradientUnits="userSpaceOnUse" x1="-1046.4729" y1="844.9454" x2="-666.473" y2="844.9454" gradientTransform="matrix(0.1152 -0.9933 0.9933 0.1152 1308.3594 -3181.1709)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st103" points="2167.2,-2410.6 2123.5,-2033.1 1930.8,-2055.5 1974.5,-2433 "/>
+ <g class="st16">
+ <g>
+ <path class="st14" d="M2841.4-2116.6l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6l0-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6v337.3C2844-2117.7,2842.8-2116.6,2841.4-2116.6z"/>
+ </g>
+ <g>
+ <path class="st72" d="M2831.4-2126.6l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6v-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6v337.3C2834-2127.7,2832.8-2126.6,2831.4-2126.6z"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(0.9755 0 0 1 2338.6865 -2284.4666)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:19px;">Nunc malesuada suscipit enim at feugiat. </tspan><tspan x="-21.5" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:19px;"> Duis id mauris lectus. Donec a sagittis lectus.</tspan></text>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="236" height="59" xlink:href="1FE9CA9FC2C9417.png" transform="matrix(1 0 0 1 2344 -2363.0515)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 2347.1631 -2331.3308)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Easy to Use</text>
+ </g>
+ </g>
+
+ <linearGradient id="SVGID_66_" gradientUnits="userSpaceOnUse" x1="887.1075" y1="-2044.7302" x2="1267.1077" y2="-2044.7302" gradientTransform="matrix(0.9989 -4.653295e-02 4.653295e-02 0.9989 980.2065 948.5847)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st104" points="2155.3,-1056 1775.7,-1038.3 1766.7,-1232.1 2146.3,-1249.8 "/>
+ <path class="st74" d="M2275.3-2257.6h-120.2c-1.1,0-2-0.9-2-2v-81h124.2c0,20.3,0,40.7,0,61v20
+ C2277.3-2258.4,2276.4-2257.6,2275.3-2257.6z"/>
+ <rect x="2153.7" y="-2354.1" class="st75" width="123.2" height="14"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="85" height="18" xlink:href="1FE9CA9FC2C9414.png" transform="matrix(1 0 0 1 2157.8557 -2333.1958)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_67_" gradientUnits="userSpaceOnUse" x1="2199.1499" y1="-2316.9705" x2="2200.8394" y2="-2331.5374">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="2163.3" y="-2327.4" class="st105" width="73.4" height="6.2"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="60" height="17" xlink:href="1FE9CA9FC2C941C.png" transform="matrix(1 0 0 1 2158.1003 -2315.9514)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_68_" gradientUnits="userSpaceOnUse" x1="2186.9534" y1="-2302.2866" x2="2188.2815" y2="-2313.738">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="2163.2" y="-2311" class="st106" width="48.8" height="5.9"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="70" height="18" xlink:href="1FE9CA9FC2C941D.png" transform="matrix(1 0 0 1 2157.8435 -2301.2083)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_69_" gradientUnits="userSpaceOnUse" x1="2191.6628" y1="-2285.8679" x2="2193.1658" y2="-2298.8254">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="2163.2" y="-2295.5" class="st107" width="58.4" height="6.4"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="64" height="19" xlink:href="1FE9CA9FC2C941F.png" transform="matrix(1 0 0 1 2156.9124 -2284.1394)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_70_" gradientUnits="userSpaceOnUse" x1="2188.1272" y1="-2269.1079" x2="2189.5059" y2="-2280.9954">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="2162.8" y="-2278.1" class="st108" width="52" height="6"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="27" height="17" xlink:href="1FE9CA9FC2C941B.png" transform="matrix(1 0 0 1 2214.1003 -2315.9514)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_71_" gradientUnits="userSpaceOnUse" x1="2227.0667" y1="-2304.1665" x2="2227.959" y2="-2311.8579">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="2219.5" y="-2311" class="st109" width="16" height="5.9"/>
+ </g>
+ </g>
+ <line class="st81" x1="2200" y1="-2347.1" x2="2240" y2="-2347.1"/>
+ <circle class="st18" cx="2161.5" cy="-2347.6" r="1.5"/>
+ <circle class="st18" cx="2167.5" cy="-2347.6" r="1.5"/>
+ <line class="st50" x1="2358.8" y1="-1882.7" x2="2357.1" y2="-1882.7"/>
+ <line class="st38" x1="1942.7" y1="-1859.6" x2="1940.5" y2="-1859.6"/>
+ <g class="st16">
+ <g>
+ <path class="st14" d="M2843.4-1670.6l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6l0-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6v337.3C2846-1671.7,2844.8-1670.6,2843.4-1670.6z"/>
+ </g>
+ <g>
+ <path class="st72" d="M2833.4-1680.6l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6v-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6v337.3C2836-1681.7,2834.8-1680.6,2833.4-1680.6z"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="202" height="59" xlink:href="1FE9CA9FC2C9416.png" transform="matrix(1 0 0 1 2343 -1936.0516)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 2346.3887 -1904.3309)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Ultra Fast</text>
+ </g>
+ </g>
+ <path class="st74" d="M2277.3-1811.6h-120.2c-1.1,0-2-0.9-2-2v-81h124.2c0,20.3,0,40.7,0,61v20
+ C2279.3-1812.4,2278.4-1811.6,2277.3-1811.6z"/>
+ <rect x="2155.7" y="-1908.1" class="st75" width="123.2" height="14"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="85" height="18" xlink:href="1FE9CA9FC2C9478.png" transform="matrix(1 0 0 1 2159.8557 -1887.1958)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_72_" gradientUnits="userSpaceOnUse" x1="2201.1499" y1="-1870.9703" x2="2202.8394" y2="-1885.5374">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="2165.3" y="-1881.4" class="st110" width="73.4" height="6.2"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="60" height="17" xlink:href="1FE9CA9FC2C947B.png" transform="matrix(1 0 0 1 2160.1003 -1869.9513)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_73_" gradientUnits="userSpaceOnUse" x1="2188.9534" y1="-1856.2865" x2="2190.2815" y2="-1867.738">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="2165.2" y="-1865" class="st111" width="48.8" height="5.9"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="70" height="18" xlink:href="1FE9CA9FC2C9479.png" transform="matrix(1 0 0 1 2159.8435 -1855.2081)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_74_" gradientUnits="userSpaceOnUse" x1="2193.6628" y1="-1839.8679" x2="2195.1658" y2="-1852.8253">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="2165.2" y="-1849.5" class="st112" width="58.4" height="6.4"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="64" height="19" xlink:href="1FE9CA9FC2C9407.png" transform="matrix(1 0 0 1 2158.9124 -1838.1394)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_75_" gradientUnits="userSpaceOnUse" x1="2190.1272" y1="-1823.1078" x2="2191.5059" y2="-1834.9954">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="2164.8" y="-1832.1" class="st113" width="52" height="6"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="27" height="17" xlink:href="1FE9CA9FC2C9408.png" transform="matrix(1 0 0 1 2216.1003 -1869.9513)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_76_" gradientUnits="userSpaceOnUse" x1="2229.0667" y1="-1858.1666" x2="2229.959" y2="-1865.858">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="2221.5" y="-1865" class="st114" width="16" height="5.9"/>
+ </g>
+ </g>
+ <line class="st81" x1="2202" y1="-1901.1" x2="2242" y2="-1901.1"/>
+ <circle class="st18" cx="2163.5" cy="-1901.6" r="1.5"/>
+ <circle class="st18" cx="2169.5" cy="-1901.6" r="1.5"/>
+ <rect x="2343.1" y="-1875.1" class="st47" width="389.8" height="118.3"/>
+ <text transform="matrix(0.9755 0 0 1 2343.1143 -1861.7743)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Lorem ipsum dolor sit amet, consectetuer </tspan><tspan x="0" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">adipiscing elit, sed diam nonummy nibh eu</tspan><tspan x="387.7" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">-</tspan><tspan x="0" y="54" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">ismod Lorem ipsum dolor sit amet, tetuer </tspan><tspan x="0" y="81" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">adipiscing elit, sed diam nonummy nibmod </tspan></text>
+ <line class="st50" x1="2361.8" y1="-1419.7" x2="2360.1" y2="-1419.7"/>
+ <line class="st38" x1="1945.7" y1="-1396.6" x2="1943.5" y2="-1396.6"/>
+ <g class="st16">
+ <g>
+ <path class="st14" d="M2846.4-1207.6l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6l0-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6v337.3C2849-1208.7,2847.8-1207.6,2846.4-1207.6z"/>
+ </g>
+ <g>
+ <path class="st72" d="M2836.4-1217.6l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6v-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6v337.3C2839-1218.7,2837.8-1217.6,2836.4-1217.6z"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="202" height="59" xlink:href="1FE9CA9FC2C940B.png" transform="matrix(1 0 0 1 2346 -1473.0516)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 2349.3887 -1441.3309)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Ultra Fast</text>
+ </g>
+ </g>
+ <path class="st74" d="M2280.3-1348.6h-120.2c-1.1,0-2-0.9-2-2v-81h124.2c0,20.3,0,40.7,0,61v20
+ C2282.3-1349.4,2281.4-1348.6,2280.3-1348.6z"/>
+ <rect x="2158.7" y="-1445.1" class="st75" width="123.2" height="14"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="85" height="18" xlink:href="1FE9CA9FC2C9409.png" transform="matrix(1 0 0 1 2162.8557 -1424.1958)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_77_" gradientUnits="userSpaceOnUse" x1="2204.1499" y1="-1407.9703" x2="2205.8394" y2="-1422.5374">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="2168.3" y="-1418.4" class="st115" width="73.4" height="6.2"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="60" height="17" xlink:href="1FE9CA9FC2C940F.png" transform="matrix(1 0 0 1 2163.1003 -1406.9513)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_78_" gradientUnits="userSpaceOnUse" x1="2191.9534" y1="-1393.2865" x2="2193.2815" y2="-1404.738">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="2168.2" y="-1402" class="st116" width="48.8" height="5.9"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="70" height="18" xlink:href="1FE9CA9FC2C940A.png" transform="matrix(1 0 0 1 2162.8435 -1392.2081)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_79_" gradientUnits="userSpaceOnUse" x1="2196.6628" y1="-1376.8679" x2="2198.1658" y2="-1389.8253">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="2168.2" y="-1386.5" class="st117" width="58.4" height="6.4"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="64" height="19" xlink:href="1FE9CA9FC2C9405.png" transform="matrix(1 0 0 1 2161.9124 -1375.1394)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_80_" gradientUnits="userSpaceOnUse" x1="2193.1272" y1="-1360.1078" x2="2194.5059" y2="-1371.9954">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="2167.8" y="-1369.1" class="st118" width="52" height="6"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="27" height="17" xlink:href="1FE9CA9FC2C942F.png" transform="matrix(1 0 0 1 2219.1003 -1406.9513)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_81_" gradientUnits="userSpaceOnUse" x1="2232.0667" y1="-1395.1666" x2="2232.959" y2="-1402.858">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="2224.5" y="-1402" class="st119" width="16" height="5.9"/>
+ </g>
+ </g>
+ <line class="st81" x1="2205" y1="-1438.1" x2="2245" y2="-1438.1"/>
+ <circle class="st18" cx="2166.5" cy="-1438.6" r="1.5"/>
+ <circle class="st18" cx="2172.5" cy="-1438.6" r="1.5"/>
+ <rect x="2346.1" y="-1412.1" class="st47" width="389.8" height="118.3"/>
+ <text transform="matrix(0.9755 0 0 1 2346.1143 -1398.7743)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Lorem ipsum dolor sit amet, consectetuer </tspan><tspan x="0" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">adipiscing elit, sed diam nonummy nibh eu</tspan><tspan x="387.7" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">-</tspan><tspan x="0" y="54" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">ismod Lorem ipsum dolor sit amet, tetuer </tspan><tspan x="0" y="81" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">adipiscing elit, sed diam nonummy nibmod </tspan></text>
+ <rect x="1638.5" y="-994.6" class="st64" width="1602" height="444"/>
+ <path class="st120" d="M1747-2951.1"/>
+ <path class="st120" d="M1764.5-2933.6"/>
+ <path class="st14" d="M1866.6-2753.4c-0.1,0-0.2-0.1-0.3-0.2l-18.2-21.2c-0.2-0.3-0.2-0.7,0.1-0.9c0.1-0.1,0.2-0.1,0.3-0.1
+ l27.4-5.5c0.2,0,0.5,0,0.6,0.2l18.2,21.2c0.2,0.3,0.2,0.7-0.1,0.9c-0.1,0.1-0.2,0.1-0.3,0.1l-27.4,5.5
+ C1866.8-2753.4,1866.7-2753.4,1866.6-2753.4z"/>
+ <path class="st14" d="M1866.2-2754.3c0.1-0.3,0.5-0.5,0.8-0.4s0.5,0.5,0.4,0.8l-9.2,26.8c-0.1,0.3-0.5,0.5-0.8,0.4
+ c-0.1,0-0.2-0.1-0.3-0.2l-18.3-21.1c-0.1-0.2-0.2-0.4-0.1-0.6l9.3-26.9c0.1-0.3,0.5-0.5,0.8-0.4s0.5,0.5,0.4,0.8"/>
+ <path class="st14" d="M1857.4-2726.6c-0.2-0.1-0.4-0.3-0.4-0.5c-0.1-0.3,0.2-0.7,0.5-0.8l27.1-5.4l9.1-26.4
+ c0.1-0.3,0.5-0.5,0.8-0.4c0.3,0.1,0.5,0.5,0.4,0.8l-9.2,26.8c-0.1,0.2-0.3,0.4-0.5,0.4l-27.4,5.5
+ C1857.6-2726.6,1857.5-2726.6,1857.4-2726.6z"/>
+ <linearGradient id="SVGID_82_" gradientUnits="userSpaceOnUse" x1="1903.5889" y1="-3027.4766" x2="1933.5912" y2="-3027.4766">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_83_" gradientUnits="userSpaceOnUse" x1="1903.2179" y1="-3027.4766" x2="1933.9623" y2="-3027.4766">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st121" d="M1922.7-3018.6c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.4-0.2-0.4-0.5c0-0.1,0-0.1,0.1-0.2l10.6-15.2
+ c0.1-0.1,0.2-0.2,0.4-0.2l18.5,1.8c0.2,0,0.4,0.2,0.4,0.5c0,0.1,0,0.1-0.1,0.2l-10.7,15.2
+ C1922.8-3018.6,1922.8-3018.6,1922.7-3018.6z"/>
+ <linearGradient id="SVGID_84_" gradientUnits="userSpaceOnUse" x1="1903.5872" y1="-3011.293" x2="1930.8262" y2="-3011.293">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_85_" gradientUnits="userSpaceOnUse" x1="1903.2162" y1="-3011.293" x2="1931.1973" y2="-3011.293">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st122" d="M1930.6-3001.4c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.3-0.1-0.3-0.2l-7.9-17.2c-0.1-0.2,0-0.5,0.2-0.6
+ c0.2-0.1,0.5,0,0.6,0.2l7.8,16.9l17.5,1.7l-7.6-16.5c-0.1-0.2,0-0.5,0.2-0.6c0.2-0.1,0.5,0,0.6,0.2l7.9,17.1
+ C1930.9-3001.8,1930.8-3001.5,1930.6-3001.4z"/>
+ <linearGradient id="SVGID_86_" gradientUnits="userSpaceOnUse" x1="1929.9719" y1="-3018.0071" x2="1941.4713" y2="-3018.0071">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_87_" gradientUnits="userSpaceOnUse" x1="1929.601" y1="-3018.0071" x2="1941.8423" y2="-3018.0071">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st123" d="M1930.6-3001.4c-0.1,0.1-0.3,0-0.4,0c-0.2-0.1-0.2-0.4-0.1-0.6l10.5-15.1l-7.8-16.9c-0.1-0.2,0-0.5,0.2-0.6
+ c0.2-0.1,0.5,0,0.6,0.2l7.9,17.1c0.1,0.1,0.1,0.3,0,0.4l-10.6,15.2C1930.7-3001.5,1930.6-3001.5,1930.6-3001.4z"/>
+ <linearGradient id="SVGID_88_" gradientUnits="userSpaceOnUse" x1="3086.7239" y1="-2778.9739" x2="3123.9116" y2="-2778.9739">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st124" d="M3097.1-2768c-0.1-0.1-0.2-0.1-0.2-0.2l-10.2-23.9c-0.1-0.3,0-0.7,0.3-0.8c0.1,0,0.2-0.1,0.3,0l25.9,2.9
+ c0.2,0,0.4,0.2,0.5,0.4l10.1,24c0.1,0.3,0,0.7-0.3,0.8c-0.1,0-0.2,0.1-0.3,0l-25.8-2.9C3097.3-2767.9,3097.2-2767.9,3097.1-2768z"
+ />
+ <linearGradient id="SVGID_89_" gradientUnits="userSpaceOnUse" x1="3070.9363" y1="-2769.8533" x2="3122.8965" y2="-2769.8533">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st125" d="M3081.4-2746.8c-0.1-0.1-0.2-0.1-0.2-0.2L3071-2771c-0.1-0.2-0.1-0.4,0.1-0.6l15.8-21.2
+ c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,0.3,0.6,0.1,0.8l-15.6,20.9l9.6,22.6l15.1-20.3c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,25.3,4,25.1,4.3
+ l-40.7,17.7C3082-2746.7,3081.6-2746.6,3081.4-2746.8z"/>
+ <linearGradient id="SVGID_90_" gradientUnits="userSpaceOnUse" x1="3081.127" y1="-2755.0007" x2="3123.9141" y2="-2755.0007">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st126" d="M3122.8-2765.9c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,0.3,0.6,0.1,0.8l-15.7,21.1c-0.1,0.2-0.3,0.3-0.5,0.2
+ l-25.9-2.9c-0.1,0-0.2-0.1-0.3-0.1c-0.2-0.1-0.3-0.3-0.2-0.5c0-0.3,0.3-0.6,0.7-0.5"/>
+ <linearGradient id="SVGID_91_" gradientUnits="userSpaceOnUse" x1="3008.5015" y1="-3180.9949" x2="3063.0801" y2="-3180.9949">
+ <stop offset="0" style="stop-color:#913FFF"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st127" d="M3056.9-3200.2C3056.9-3200.3,3056.9-3200.3,3056.9-3200.2c-0.1-0.1-0.1-0.2-0.1-0.2c0,0-0.1-0.1-0.1-0.1
+ c0,0,0,0-0.1-0.1c0,0-0.1-0.1-0.1-0.1c0,0,0,0,0,0l-26.6-8.5c-0.2-0.1-0.5,0-0.6,0.1l-20.5,19.1c0,0,0,0,0,0
+ c-0.1,0.1-0.1,0.1-0.1,0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.2c0,0,0,0.1,0,0.1c0,0,0,0,0,0l6.2,27.7c0.1,0.2,0.2,0.4,0.4,0.5
+ l26.6,8.4c0.1,0,0.2,0,0.3,0c0.1,0,0.2-0.1,0.3-0.1c0,0,0,0,0,0l20.5-19.1c0.2-0.2,0.2-0.4,0.2-0.6L3056.9-3200.2z M3015.9-3162.3
+ l-5.9-26.3l25.2,8l5.9,26.3L3015.9-3162.3z"/>
+ <path class="st92" d="M1948.5-3516.3l-9.2-16.1c0-0.1-0.1-0.1-0.2-0.2c-0.1,0-0.1,0-0.2-0.1c0,0,0,0,0,0l-18.6,0.1
+ c-0.2,0-0.3,0.1-0.4,0.2l-9.4,16.3c0,0,0,0,0,0.1c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0
+ l9.2,16.2c0.1,0.1,0.2,0.2,0.4,0.2l18.6-0.1c0,0,0,0,0,0c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1-0.1
+ c0,0,0,0,0-0.1c0,0,0,0,0,0l9.4-16.4C1948.6-3516,1948.6-3516.2,1948.5-3516.3z M1911.7-3516.2l8.9-15.4l17.6-0.1l-8.9,15.5
+ L1911.7-3516.2z"/>
+ <rect x="3297" y="-3399.1" class="st47" width="22" height="22.6"/>
+
+ <text transform="matrix(1 0 0 1 3303 -3384.8518)" class="st35" style="font-family:'SourceCodeVariable-Roman'; font-size:20px; letter-spacing:1;">❤</text>
+ <g>
+ <g>
+ <path class="st46" d="M3332.1-3385h6.4v-9.7h3.2v9.7h3.2v-13h-12.8V-3385z M3362.8-3398v13h6.4v-9.7h3.2v9.7h3.2v-9.7h3.2v9.7
+ h3.2v-13H3362.8L3362.8-3398z M3353.8-3394.7h3.2v6.5h-3.2V-3394.7z M3347.4-3381.8h6.4v-3.2h6.4v-13h-12.8V-3381.8z"/>
+ <rect x="3332.1" y="-3398" class="st47" width="49.9" height="16.2"/>
+ </g>
+ <polygon class="st46" points="3397.1,-3394.8 3397.1,-3388.5 3403.2,-3388.5 3403.2,-3385.4 3397,-3385.4 3390.7,-3385.4
+ 3390.8,-3398 3403.2,-3398 3403.2,-3394.9 "/>
+ <rect x="3405.8" y="-3398" class="st46" width="6.4" height="12.9"/>
+
+ <rect x="3411.7" y="-3391.4" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 26.599 -6799.8765)" class="st46" width="3.1" height="9.5"/>
+
+ <rect x="3432.9" y="-3390" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 47.9678 -6819.7383)" class="st46" width="2" height="8.3"/>
+ <rect x="3419.9" y="-3398.1" class="st46" width="6.4" height="12.9"/>
+ </g>
+ <linearGradient id="SVGID_92_" gradientUnits="userSpaceOnUse" x1="3260" y1="-3419.5515" x2="4860" y2="-3419.5515">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <line class="st128" x1="3260" y1="-3419.6" x2="4860" y2="-3419.6"/>
+ <linearGradient id="SVGID_93_" gradientUnits="userSpaceOnUse" x1="4662.5" y1="-3371.5515" x2="4697.5" y2="-3371.5515">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <line class="st129" x1="4662.5" y1="-3371.6" x2="4697.5" y2="-3371.6"/>
+ <line class="st130" x1="3261" y1="-3355.1" x2="4860" y2="-3355.1"/>
+ <g>
+ <path class="st14" d="M3306-3309.5c2.4,0,4.4,1.3,5.1,3.6h-2.5c-0.5-1.1-1.5-1.6-2.6-1.6c-1.9,0-3.3,1.4-3.3,3.7
+ c0,2.3,1.4,3.7,3.3,3.7c1.2,0,2.1-0.5,2.6-1.6h2.5c-0.7,2.3-2.7,3.6-5.1,3.6c-3.1,0-5.5-2.4-5.5-5.7
+ C3300.5-3307.2,3302.9-3309.5,3306-3309.5z"/>
+ <path class="st14" d="M3316.8-3298.1c-2.5,0-4.4-1.8-4.4-4.6c0-2.8,2-4.6,4.4-4.6c2.5,0,4.4,1.8,4.4,4.6
+ C3321.4-3299.9,3319.4-3298.1,3316.8-3298.1z M3316.8-3300c1.2,0,2.3-0.9,2.3-2.6c0-1.8-1.1-2.6-2.2-2.6s-2.2,0.8-2.2,2.6
+ C3314.7-3300.9,3315.7-3300,3316.8-3300z"/>
+ <path class="st14" d="M3329-3303.1c0-1.4-0.8-2.2-1.9-2.2c-1.2,0-2,0.8-2,2.2v4.9h-2.2v-8.9h2.2v1.1c0.6-0.8,1.5-1.2,2.6-1.2
+ c2,0,3.5,1.3,3.5,3.8v5.2h-2.2V-3303.1z"/>
+ <path class="st14" d="M3333.5-3305.3h-1v-1.8h1v-0.4c0-2.2,1.2-3.2,3.6-3.1v1.9c-1.1,0-1.4,0.3-1.4,1.3v0.4h1.5v1.8h-1.5v7h-2.2
+ V-3305.3z"/>
+ <path class="st14" d="M3338.4-3309.5c0-0.7,0.6-1.3,1.3-1.3c0.8,0,1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3
+ C3339-3308.2,3338.4-3308.7,3338.4-3309.5z M3338.6-3307.1h2.2v8.9h-2.2V-3307.1z"/>
+ <path class="st14" d="M3346.3-3307.2c1.4,0,2.3,0.6,2.9,1.4v-1.3h2.2v8.9c0,2.4-1.4,4.3-4.3,4.3c-2.4,0-4.1-1.2-4.4-3.3h2.2
+ c0.2,0.8,1,1.3,2.1,1.3c1.2,0,2.1-0.7,2.1-2.4v-1.4c-0.5,0.8-1.5,1.5-2.9,1.5c-2.2,0-4-1.8-4-4.6S3344.1-3307.2,3346.3-3307.2z
+ M3346.9-3305.3c-1.2,0-2.3,0.9-2.3,2.6s1.1,2.6,2.3,2.6c1.2,0,2.3-0.9,2.3-2.6S3348.1-3305.3,3346.9-3305.3z"/>
+ <path class="st14" d="M3361.7-3298.2h-2.2v-1.1c-0.5,0.8-1.5,1.2-2.6,1.2c-2,0-3.5-1.3-3.5-3.8v-5.2h2.2v4.9
+ c0,1.4,0.8,2.2,1.9,2.2c1.2,0,1.9-0.8,1.9-2.2v-4.9h2.2V-3298.2z"/>
+ <path class="st14" d="M3366-3298.2h-2.2v-8.9h2.2v1.4c0.5-0.9,1.5-1.5,2.7-1.5v2.4h-0.6c-1.3,0-2.1,0.5-2.1,2.2V-3298.2z"/>
+ <path class="st14" d="M3373.9-3298.1c-2.5,0-4.3-1.8-4.3-4.6c0-2.8,1.8-4.6,4.3-4.6c2.5,0,4.3,1.7,4.3,4.4c0,0.3,0,0.6-0.1,0.9
+ h-6.3c0.1,1.3,1,2,2.1,2c0.9,0,1.5-0.5,1.7-1.1h2.4C3377.5-3299.4,3376-3298.1,3373.9-3298.1z M3371.8-3303.5h4.1
+ c0-1.2-0.9-1.9-2.1-1.9C3372.8-3305.4,3371.9-3304.7,3371.8-3303.5z"/>
+ <path class="st14" d="M3392.7-3309.4v11.2h-2.2l-4.9-7.7v7.7h-2.2v-11.2h2.2l4.9,7.7v-7.7H3392.7z"/>
+ <path class="st14" d="M3398.9-3302.5h-1.8v4.3h-2.2v-11.2h4c2.6,0,3.9,1.5,3.9,3.5C3402.8-3304.2,3401.7-3302.5,3398.9-3302.5z
+ M3398.8-3304.3c1.2,0,1.8-0.6,1.8-1.6c0-1-0.5-1.6-1.8-1.6h-1.7v3.2H3398.8z"/>
+ <path class="st14" d="M3404.3-3309.4h2.5l3.5,8.3l3.5-8.3h2.5v11.2h-2.2v-7.3l-2.9,7.3h-1.7l-2.9-7.3v7.3h-2.2V-3309.4z"/>
+ </g>
+ <g>
+ <path class="st14" d="M3301-3264.4h2.2v6.9c0,1.5,0.8,2.3,2.2,2.3c1.4,0,2.2-0.8,2.2-2.3v-6.9h2.2v6.9c0,2.9-2.1,4.4-4.4,4.4
+ c-2.4,0-4.4-1.4-4.4-4.4V-3264.4z"/>
+ <path class="st14" d="M3315.2-3253.1c-2.2,0-3.7-1.3-3.8-2.9h2.2c0.1,0.7,0.7,1.2,1.6,1.2c0.9,0,1.3-0.4,1.3-0.9
+ c0-1.6-4.9-0.6-4.9-3.8c0-1.5,1.3-2.7,3.4-2.7c2.1,0,3.4,1.2,3.5,2.9h-2.1c-0.1-0.7-0.6-1.2-1.5-1.2c-0.8,0-1.2,0.3-1.2,0.8
+ c0,1.6,4.8,0.6,4.9,3.9C3318.6-3254.2,3317.3-3253.1,3315.2-3253.1z"/>
+ <path class="st14" d="M3320.2-3264.5c0-0.7,0.6-1.3,1.3-1.3c0.8,0,1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3
+ C3320.7-3263.2,3320.2-3263.7,3320.2-3264.5z M3320.4-3262.1h2.2v8.9h-2.2V-3262.1z"/>
+ <path class="st14" d="M3330.8-3258.1c0-1.4-0.8-2.2-1.9-2.2c-1.2,0-2,0.8-2,2.2v4.9h-2.2v-8.9h2.2v1.1c0.6-0.8,1.5-1.2,2.6-1.2
+ c2,0,3.5,1.3,3.5,3.8v5.2h-2.2V-3258.1z"/>
+ <path class="st14" d="M3338.4-3262.2c1.4,0,2.3,0.6,2.9,1.4v-1.3h2.2v8.9c0,2.4-1.4,4.3-4.3,4.3c-2.4,0-4.1-1.2-4.4-3.3h2.2
+ c0.2,0.8,1,1.3,2.1,1.3c1.2,0,2.1-0.7,2.1-2.4v-1.4c-0.5,0.8-1.5,1.5-2.9,1.5c-2.2,0-4-1.8-4-4.6S3336.2-3262.2,3338.4-3262.2z
+ M3339-3260.3c-1.2,0-2.3,0.9-2.3,2.6s1.1,2.6,2.3,2.6c1.2,0,2.3-0.9,2.3-2.6S3340.2-3260.3,3339-3260.3z"/>
+ <path class="st14" d="M3358.6-3264.4v11.2h-2.2l-4.9-7.7v7.7h-2.2v-11.2h2.2l4.9,7.7v-7.7H3358.6z"/>
+ <path class="st14" d="M3364.8-3257.5h-1.8v4.3h-2.2v-11.2h4c2.6,0,3.9,1.5,3.9,3.5C3368.7-3259.2,3367.6-3257.5,3364.8-3257.5z
+ M3364.7-3259.3c1.2,0,1.8-0.6,1.8-1.6c0-1-0.5-1.6-1.8-1.6h-1.7v3.2H3364.7z"/>
+ <path class="st14" d="M3370.2-3264.4h2.5l3.5,8.3l3.5-8.3h2.5v11.2h-2.2v-7.3l-2.9,7.3h-1.7l-2.9-7.3v7.3h-2.2V-3264.4z"/>
+ </g>
+ <g>
+ <path class="st14" d="M3306.9-3220.5c2.4,0,4.4,1.3,5.1,3.6h-2.5c-0.5-1.1-1.5-1.6-2.6-1.6c-1.9,0-3.3,1.4-3.3,3.7
+ c0,2.3,1.4,3.7,3.3,3.7c1.2,0,2.1-0.5,2.6-1.6h2.5c-0.7,2.3-2.7,3.6-5.1,3.6c-3.1,0-5.5-2.4-5.5-5.7
+ C3301.4-3218.2,3303.7-3220.5,3306.9-3220.5z"/>
+ <path class="st14" d="M3316-3220.4v9.4h3.6v1.8h-5.8v-11.2H3316z"/>
+ <path class="st14" d="M3321-3220.4h2.2v11.2h-2.2V-3220.4z"/>
+ <path class="st14" d="M3334-3220.5c2.4,0,4.4,1.3,5.1,3.6h-2.5c-0.5-1.1-1.5-1.6-2.6-1.6c-1.9,0-3.3,1.4-3.3,3.7
+ c0,2.3,1.4,3.7,3.3,3.7c1.2,0,2.1-0.5,2.6-1.6h2.5c-0.7,2.3-2.7,3.6-5.1,3.6c-3.1,0-5.5-2.4-5.5-5.7
+ C3328.5-3218.2,3330.9-3220.5,3334-3220.5z"/>
+ <path class="st14" d="M3344.8-3209.1c-2.5,0-4.4-1.8-4.4-4.6c0-2.8,2-4.6,4.4-4.6c2.5,0,4.4,1.8,4.4,4.6
+ C3349.4-3210.9,3347.4-3209.1,3344.8-3209.1z M3344.8-3211c1.2,0,2.3-0.9,2.3-2.6c0-1.8-1.1-2.6-2.2-2.6s-2.2,0.8-2.2,2.6
+ C3342.7-3211.9,3343.7-3211,3344.8-3211z"/>
+ <path class="st14" d="M3363-3214.1c0-1.4-0.8-2.1-1.9-2.1c-1.2,0-1.9,0.7-1.9,2.1v4.9h-2.2v-4.9c0-1.4-0.8-2.1-1.9-2.1
+ c-1.2,0-2,0.7-2,2.1v4.9h-2.2v-8.9h2.2v1.1c0.5-0.7,1.5-1.2,2.5-1.2c1.3,0,2.5,0.6,3,1.7c0.6-1,1.7-1.7,3-1.7
+ c2.1,0,3.5,1.3,3.5,3.8v5.2h-2.2V-3214.1z"/>
+ <path class="st14" d="M3379.4-3214.1c0-1.4-0.8-2.1-1.9-2.1c-1.2,0-1.9,0.7-1.9,2.1v4.9h-2.2v-4.9c0-1.4-0.8-2.1-1.9-2.1
+ c-1.2,0-2,0.7-2,2.1v4.9h-2.2v-8.9h2.2v1.1c0.5-0.7,1.5-1.2,2.5-1.2c1.3,0,2.5,0.6,3,1.7c0.6-1,1.7-1.7,3-1.7
+ c2.1,0,3.5,1.3,3.5,3.8v5.2h-2.2V-3214.1z"/>
+ <path class="st14" d="M3387-3218.2c1.4,0,2.3,0.7,2.9,1.4v-1.3h2.2v8.9h-2.2v-1.3c-0.5,0.8-1.5,1.4-2.9,1.4
+ c-2.2,0-3.9-1.8-3.9-4.6S3384.8-3218.2,3387-3218.2z M3387.6-3216.3c-1.2,0-2.3,0.9-2.3,2.6s1.1,2.6,2.3,2.6
+ c1.2,0,2.3-0.9,2.3-2.6S3388.8-3216.3,3387.6-3216.3z"/>
+ <path class="st14" d="M3400.3-3214.1c0-1.4-0.8-2.2-1.9-2.2c-1.2,0-2,0.8-2,2.2v4.9h-2.2v-8.9h2.2v1.1c0.6-0.8,1.5-1.2,2.6-1.2
+ c2,0,3.5,1.3,3.5,3.8v5.2h-2.2V-3214.1z"/>
+ <path class="st14" d="M3407.9-3218.2c1.1,0,2.2,0.5,2.8,1.4v-4.2h2.2v11.8h-2.2v-1.3c-0.5,0.8-1.5,1.5-2.8,1.5c-2.2,0-4-1.8-4-4.6
+ S3405.7-3218.2,3407.9-3218.2z M3408.4-3216.3c-1.2,0-2.3,0.9-2.3,2.6s1.1,2.6,2.3,2.6c1.2,0,2.3-0.9,2.3-2.6
+ S3409.6-3216.3,3408.4-3216.3z"/>
+ <path class="st14" d="M3418.4-3209.1c-2.2,0-3.7-1.3-3.8-2.9h2.2c0.1,0.7,0.7,1.2,1.6,1.2c0.9,0,1.3-0.4,1.3-0.9
+ c0-1.6-4.9-0.6-4.9-3.8c0-1.5,1.3-2.7,3.4-2.7c2.1,0,3.4,1.2,3.5,2.9h-2.1c-0.1-0.7-0.6-1.2-1.5-1.2c-0.8,0-1.2,0.3-1.2,0.8
+ c0,1.6,4.8,0.6,4.9,3.9C3421.8-3210.2,3420.5-3209.1,3418.4-3209.1z"/>
+ </g>
+ <text transform="matrix(1 0 0 1 4662.9082 -3381.7502)"><tspan x="0" y="0" style="font-family:'Poppins-Medium'; font-size:14px;">docs</tspan><tspan x="34.3" y="0" style="font-family:'Poppins-Medium'; font-size:14px; letter-spacing:-1;"> </tspan><tspan x="36" y="0" style="font-family:'Poppins-Medium'; font-size:14px; letter-spacing:32;"> </tspan><tspan x="72" y="0" style="font-family:'Poppins-Medium'; font-size:14px;">npmjs.com</tspan><tspan x="151.5" y="0" style="font-family:'Poppins-Medium'; font-size:14px; letter-spacing:24;"> </tspan></text>
+ <text transform="matrix(1 0 0 1 1967.1631 -3324.1819)"><tspan x="0" y="0" class="st131" style="font-family:'Poppins-Medium'; font-size:12px;">These little terminal windows could be secretly </tspan><tspan x="0" y="14.4" class="st131" style="font-family:'Poppins-Medium'; font-size:12px;">dismissable, and if you close all they just reappear again</tspan></text>
+ <text transform="matrix(1 0 0 1 2737.1631 -3012.1819)" class="st131" style="font-family:'Poppins-Medium'; font-size:12px;">&lt;----- imagine this is blinking </text>
+ <text transform="matrix(1 0 0 1 2350.1631 -2185.1819)" class="st131" style="font-family:'Poppins-Medium'; font-size:12px;">Hmm I should probably put some CTAs in these sections</text>
+ <g>
+ <rect x="2047.1" y="-832.1" class="st47" width="951.9" height="118.3"/>
+ <text transform="matrix(0.9755 0 0 1 2047.1143 -818.7742)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Regular'; font-size:18px;">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod Lorem ipsum </tspan><tspan x="0" y="27" class="st8" style="font-family:'Poppins-Regular'; font-size:18px;">dolor sit amet, tetuer adipiscing elit, sed diam nonummy nibmod </tspan></text>
+ </g>
+ <text transform="matrix(1 0 0 1 3299.8115 -3164.0515)" class="st132" style="font-family:'Poppins-Regular'; font-size:10px;">set access level on published packages</text>
+
+ <text transform="matrix(0.9997 -2.420000e-02 2.420000e-02 0.9997 3301.1204 -3179.4026)" style="opacity:0.9;fill:#FB3B49; font-family:'Poppins-SemiBold'; font-size:14px;">access</text>
+
+ <text transform="matrix(1 0 0 1 3300.8115 -3135.0793)" style="opacity:0.9;fill:#FB3B49; font-family:'Poppins-SemiBold'; font-size:14px;">add user</text>
+ <g>
+ <text transform="matrix(1 0 0 1 3300.8115 -3042.0793)" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">bin</text>
+ </g>
+ <g>
+ <text transform="matrix(1 0 0 1 3300.8115 -2995.0793)" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">bugs</text>
+ </g>
+ <rect x="3888" y="-2665.1" class="st133" width="64" height="27"/>
+ <rect x="4044" y="-2666.1" class="st133" width="64" height="27"/>
+ <g>
+ <text transform="matrix(1 0 0 1 3300.8115 -2947.0793)" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">build</text>
+ </g>
+ <text transform="matrix(1 0 0 1 3300.8115 -2903.0793)" class="st51"><tspan x="0" y="0" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">bundle</tspan><tspan x="0" y="39.8" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">cache </tspan><tspan x="0" y="53" class="st132" style="font-family:'MyriadPro-Regular'; font-size:11px;">manipulates packages cache</tspan><tspan x="0" y="86.6" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">ci </tspan><tspan x="0" y="98.6" class="st132" style="font-family:'Poppins-Regular'; font-size:10px;">install a project with a clean slate</tspan><tspan x="0" y="132.2" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">config</tspan><tspan x="0" y="144.2" class="st132" style="font-family:'Poppins-Regular'; font-size:10px;">manage npm configuration files</tspan><tspan x="0" y="177.8" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">dedupe</tspan><tspan x="0" y="189.8" class="st132" style="font-family:'Poppins-Regular'; font-size:10px;">reduce duplication</tspan><tspan x="0" y="223.4" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">deprecate</tspan><tspan x="0" y="235.4" class="st132" style="font-family:'Poppins-Regular'; font-size:10px;">deprecate a version of a package</tspan><tspan x="0" y="269" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">dist-tag</tspan><tspan x="0" y="281" class="st132" style="font-family:'Poppins-Regular'; font-size:10px;">modify package distribution tags</tspan></text>
+ <text transform="matrix(1 0 0 1 3300.8115 -3118.0515)" class="st132" style="font-family:'Poppins-Regular'; font-size:10px;">add a registry user account</text>
+ <g>
+ <text transform="matrix(1 0 0 1 3300.8115 -3088.2971)" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">audit</text>
+ <text transform="matrix(1 0 0 1 3299.8115 -3073.1648)" class="st132" style="font-family:'Poppins-Regular'; font-size:10px;">run a security audit</text>
+ </g>
+ <text transform="matrix(1 0 0 1 3299.8115 -3028.0515)" class="st132" style="font-family:'Poppins-Regular'; font-size:10px;">display npm bin folder</text>
+ <rect x="3791" y="-2844.1" class="st133" width="96" height="25"/>
+ <text transform="matrix(1 0 0 1 3301.8115 -2934.0515)" class="st132" style="font-family:'MyriadPro-Regular'; font-size:11px;">build a package</text>
+ <text transform="matrix(1 0 0 1 3300.8115 -2891.0515)" class="st132" style="font-family:'MyriadPro-Regular'; font-size:11px;">removed</text>
+ <rect x="3909" y="-2808.1" class="st133" width="49" height="21"/>
+ <rect x="4407" y="-2844.1" class="st133" width="125" height="26"/>
+ <text transform="matrix(1 0 0 1 3301.8115 -2981.0515)" class="st132" style="font-family:'Poppins-Regular'; font-size:10px;">bugs for a package in a web browser maybe</text>
+ <polyline class="st134" points="3428,-3307.1 3434,-3301.1 3440,-3307.1 "/>
+ <polyline class="st134" points="3430,-3212.1 3436,-3218.1 3442,-3212.1 "/>
+ <polyline class="st134" points="3394,-3262.1 3400,-3256.1 3406,-3262.1 "/>
+ <rect x="3291" y="-3014.1" class="st135" width="282" height="45"/>
+ <text transform="matrix(1 0 0 1 3758.9707 -3270.0046)"><tspan x="0" y="0" class="st98" style="font-family:'Poppins-SemiBold'; font-size:42px;"> npm-bugs</tspan><tspan x="0" y="40" class="st98" style="font-family:'Poppins-Regular'; font-size:24px;">Bugs for a package in a web browser maybe</tspan></text>
+ <text transform="matrix(1 0 0 1 3760.7861 -3147.7585)" class="st136" style="font-family:'Poppins-Medium'; font-size:24px;">Synopsis</text>
+ <text transform="matrix(1 0 0 1 3760.7861 -2900.7585)" class="st136" style="font-family:'Poppins-Medium'; font-size:24px;">Description</text>
+ <g>
+ <rect x="3759.3" y="-2872.1" class="st47" width="894.4" height="310.2"/>
+ <text transform="matrix(1 0 0 1 3759.2539 -2860.2273)"><tspan x="0" y="0" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">This command tries to guess at the likely location of a package’s bug tracker URL, and then tries to open it using </tspan><tspan x="0" y="34" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">the</tspan><tspan x="26" y="34" class="st98" style="font-family:'AndaleMono'; font-size:16px;"> --browser</tspan><tspan x="122" y="34" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;"> config param. If no package name is provided, it will search for a</tspan><tspan x="643.2" y="34" class="st98" style="font-family:'AndaleMono'; font-size:16px;"> package.json</tspan><tspan x="768" y="34" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;"> in the current </tspan><tspan x="0" y="68" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">folder and use the </tspan><tspan x="153.9" y="68" class="st98" style="font-family:'AndaleMono'; font-size:16px;">name</tspan><tspan x="192.3" y="68" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;"> property.</tspan></text>
+ </g>
+ <text transform="matrix(1 0 0 1 3760.7861 -2726.7585)" class="st136" style="font-family:'Poppins-Medium'; font-size:24px;">Configuration</text>
+ <text transform="matrix(1 0 0 1 3760.7861 -2683.7585)" class="st137" style="font-family:'Poppins-Medium'; font-size:17px;">browser</text>
+ <linearGradient id="SVGID_94_" gradientUnits="userSpaceOnUse" x1="1261.4564" y1="-789.5836" x2="384.5436" y2="255.4804">
+ <stop offset="0" style="stop-color:#D4BEB8"/>
+ <stop offset="1" style="stop-color:#FFFFFF"/>
+ </linearGradient>
+ <rect x="24" y="-487.1" class="st138" width="1598" height="440"/>
+ <text transform="matrix(1 0 0 1 3761.7861 -2554.7585)" class="st137" style="font-family:'Poppins-Medium'; font-size:17px;">registry</text>
+ <g>
+ <text transform="matrix(1 0 0 1 3761.7861 -2395.7585)" class="st136" style="font-family:'Poppins-Medium'; font-size:24px;">See Also</text>
+ </g>
+ <g>
+ <rect x="3777.3" y="-2658.8" class="st47" width="754.9" height="125.6"/>
+ <text transform="matrix(1 0 0 1 3777.2998 -2646.9675)"><tspan x="0" y="0" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">Default: OS X:</tspan><tspan x="104.6" y="0" class="st98" style="font-family:'Inconsolata-Bold'; font-size:16px;"> </tspan><tspan x="108" y="0" class="st98" style="font-family:'AndaleMono'; font-size:16px;">&quot;open&quot;,</tspan><tspan x="175.2" y="0" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;"> Windows: </tspan><tspan x="259.5" y="0" class="st98" style="font-family:'AndaleMono'; font-size:16px;">&quot;start&quot;</tspan><tspan x="326.7" y="0" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">, Others: </tspan><tspan x="398.9" y="0" class="st98" style="font-family:'AndaleMono'; font-size:16px;">&quot;xdg-open&quot;</tspan><tspan x="0" y="34" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">Type: String</tspan></text>
+ </g>
+ <circle class="st98" cx="3767" cy="-2653.1" r="4"/>
+ <circle class="st98" cx="3767" cy="-2618.1" r="4"/>
+ <g>
+ <text transform="matrix(1 0 0 1 3777.2998 -2522.2927)"><tspan x="0" y="0" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">Default: https://registry.npmjs.org/</tspan><tspan x="0" y="34" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">Type: url</tspan></text>
+ </g>
+ <rect x="4180" y="-2663.1" class="st133" width="94" height="25"/>
+ <circle class="st98" cx="3766" cy="-2529.1" r="4"/>
+ <circle class="st98" cx="3766" cy="-2494.1" r="4"/>
+ <g>
+ <text transform="matrix(1 0 0 1 3766.1631 -2348.1433)"><tspan x="0" y="0" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">npm-docs</tspan><tspan x="0" y="29" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">npm-view</tspan><tspan x="0" y="58" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">npm-publish</tspan><tspan x="0" y="87" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">npm-registry</tspan><tspan x="0" y="116" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">npm-config</tspan><tspan x="0" y="145" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">npm-config</tspan><tspan x="0" y="174" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">npmrc</tspan><tspan x="0" y="203" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">package.json</tspan></text>
+ </g>
+ <line class="st2" x1="3758" y1="-2381.1" x2="4605.5" y2="-2381.1"/>
+ <path class="st98" d="M4525.6-2970.1h-760.3c-1.9,0-3.4-1.5-3.4-3.4v-146.3c0-1.9,1.5-3.4,3.4-3.4h760.3c1.9,0,3.4,1.5,3.4,3.4
+ v146.3C4529-2971.6,4527.5-2970.1,4525.6-2970.1z"/>
+ <text transform="matrix(1 0 0 1 3788.2207 -3063.4768)"><tspan x="0" y="0" class="st8" style="font-family:'AndaleMono'; font-size:30px;">npm bugs [&lt;pkgname&gt;]</tspan><tspan x="0" y="60" class="st8" style="font-family:'AndaleMono'; font-size:30px;">aliases: issues</tspan></text>
+ <rect x="4258" y="-1990.1" class="st133" width="247" height="30"/>
+ <text transform="matrix(1 0 0 1 3791.667 -2004.1219)"><tspan x="0" y="0" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;"> Found a typo?</tspan><tspan x="147.4" y="0" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;"> Let us know!</tspan><tspan x="0" y="34" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">The current stable version of npm is here. To upgrade run: </tspan><tspan x="468.1" y="34" class="st98" style="font-family:'AndaleMono'; font-size:16px;">npm install npm@latest -g</tspan><tspan x="0" y="68" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">To report bugs or submit feature requests for the docs, please post </tspan><tspan x="537" y="68" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">here</tspan><tspan x="573.8" y="68" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">. </tspan><tspan x="0" y="102" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">Submit npm issues</tspan><tspan x="151.9" y="102" style="font-family:'Poppins-Regular'; font-size:16px;"> </tspan><tspan x="156.2" y="102" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">here.</tspan></text>
+ <rect x="3260" y="-3355.1" class="st139" width="330" height="1207"/>
+ <linearGradient id="SVGID_95_" gradientUnits="userSpaceOnUse" x1="3766.9973" y1="-3286.7183" x2="3786.4839" y2="-3286.7183">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_96_" gradientUnits="userSpaceOnUse" x1="3766.7563" y1="-3286.7183" x2="3786.7249" y2="-3286.7183">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st140" d="M3779.4-3280.9c0,0-0.1,0-0.1,0l-12-1.2c-0.2,0-0.3-0.1-0.2-0.3c0,0,0-0.1,0-0.1l6.9-9.9
+ c0.1-0.1,0.2-0.1,0.3-0.1l12,1.2c0.2,0,0.3,0.1,0.3,0.3c0,0,0,0.1,0,0.1l-6.9,9.9C3779.5-3281,3779.4-3280.9,3779.4-3280.9z"/>
+ <linearGradient id="SVGID_97_" gradientUnits="userSpaceOnUse" x1="3766.9963" y1="-3276.207" x2="3784.688" y2="-3276.207">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_98_" gradientUnits="userSpaceOnUse" x1="3766.7554" y1="-3276.207" x2="3784.929" y2="-3276.207">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st141" d="M3784.5-3269.8c0,0-0.1,0-0.1,0l-12-1.1c-0.1,0-0.2-0.1-0.2-0.2l-5.1-11.1c-0.1-0.1,0-0.3,0.1-0.4
+ c0.1-0.1,0.3,0,0.4,0.1l5.1,11l11.4,1.1l-4.9-10.7c-0.1-0.1,0-0.3,0.1-0.4c0.1-0.1,0.3,0,0.4,0.1l5.1,11.1
+ C3784.7-3270,3784.7-3269.9,3784.5-3269.8z"/>
+ <linearGradient id="SVGID_99_" gradientUnits="userSpaceOnUse" x1="3784.1331" y1="-3280.5679" x2="3791.6021" y2="-3280.5679">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_100_" gradientUnits="userSpaceOnUse" x1="3783.8921" y1="-3280.5679" x2="3791.843" y2="-3280.5679">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st142" d="M3784.5-3269.8c-0.1,0-0.2,0-0.3,0c-0.1-0.1-0.2-0.3-0.1-0.4l6.8-9.8l-5-11c-0.1-0.1,0-0.3,0.1-0.4
+ c0.1-0.1,0.3,0,0.4,0.1l5.1,11.1c0,0.1,0,0.2,0,0.3l-6.9,9.9C3784.6-3269.9,3784.6-3269.8,3784.5-3269.8z"/>
+ <path class="st120" d="M625-351.1"/>
+ <path class="st120" d="M242.5-505.6"/>
+ <path class="st143" d="M146.6-237.4c-0.1,0-0.2-0.1-0.3-0.2l-18.2-21.2c-0.2-0.3-0.2-0.7,0.1-0.9c0.1-0.1,0.2-0.1,0.3-0.1l27.4-5.5
+ c0.2,0,0.5,0,0.6,0.2l18.2,21.2c0.2,0.3,0.2,0.7-0.1,0.9c-0.1,0.1-0.2,0.1-0.3,0.1l-27.4,5.5C146.8-237.4,146.7-237.4,146.6-237.4z
+ "/>
+ <path class="st14" d="M146.2-238.3c0.1-0.3,0.5-0.5,0.8-0.4c0.3,0.1,0.5,0.5,0.4,0.8l-9.2,26.8c-0.1,0.3-0.5,0.5-0.8,0.4
+ c-0.1,0-0.2-0.1-0.3-0.2L118.8-232c-0.1-0.2-0.2-0.4-0.1-0.6l9.3-26.9c0.1-0.3,0.5-0.5,0.8-0.4c0.3,0.1,0.5,0.5,0.4,0.8"/>
+ <path class="st14" d="M137.4-210.6c-0.2-0.1-0.4-0.3-0.4-0.5c-0.1-0.3,0.2-0.7,0.5-0.8l27.1-5.4l9.1-26.4c0.1-0.3,0.5-0.5,0.8-0.4
+ c0.3,0.1,0.5,0.5,0.4,0.8l-9.2,26.8c-0.1,0.2-0.3,0.4-0.5,0.4l-27.4,5.5C137.6-210.6,137.5-210.6,137.4-210.6z"/>
+ <linearGradient id="SVGID_101_" gradientUnits="userSpaceOnUse" x1="638.5889" y1="-427.4766" x2="668.5912" y2="-427.4766">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_102_" gradientUnits="userSpaceOnUse" x1="638.2179" y1="-427.4766" x2="668.9622" y2="-427.4766">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st144" d="M657.7-418.6c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.4-0.2-0.4-0.5c0-0.1,0-0.1,0.1-0.2l10.6-15.2
+ c0.1-0.1,0.2-0.2,0.4-0.2l18.5,1.8c0.2,0,0.4,0.2,0.4,0.5c0,0.1,0,0.1-0.1,0.2l-10.7,15.2C657.8-418.6,657.8-418.6,657.7-418.6z"/>
+ <linearGradient id="SVGID_103_" gradientUnits="userSpaceOnUse" x1="638.5872" y1="-411.293" x2="665.8262" y2="-411.293">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st145" d="M665.6-401.4c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.3-0.1-0.3-0.2l-7.9-17.2c-0.1-0.2,0-0.5,0.2-0.6
+ s0.5,0,0.6,0.2l7.8,16.9l17.5,1.7l-7.6-16.5c-0.1-0.2,0-0.5,0.2-0.6c0.2-0.1,0.5,0,0.6,0.2l7.9,17.1
+ C665.9-401.8,665.8-401.5,665.6-401.4z"/>
+ <linearGradient id="SVGID_104_" gradientUnits="userSpaceOnUse" x1="664.9719" y1="-418.0071" x2="676.4713" y2="-418.0071">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st146" d="M665.6-401.4c-0.1,0.1-0.3,0-0.4,0c-0.2-0.1-0.2-0.4-0.1-0.6l10.5-15.1l-7.8-16.9c-0.1-0.2,0-0.5,0.2-0.6
+ c0.2-0.1,0.5,0,0.6,0.2l7.9,17.1c0.1,0.1,0.1,0.3,0,0.4l-10.6,15.2C665.7-401.5,665.6-401.5,665.6-401.4z"/>
+ <path class="st120" d="M1496.5-807.1"/>
+ <path class="st92" d="M1436.9-373.4c-0.1,0-0.2,0-0.3,0l-26.6-8.5c-0.3-0.1-0.5-0.5-0.4-0.8c0-0.1,0.1-0.2,0.2-0.3l20.5-19.1
+ c0.2-0.2,0.4-0.2,0.6-0.1l26.6,8.5c0.3,0.1,0.5,0.5,0.4,0.8c0,0.1-0.1,0.2-0.2,0.3l-20.5,19C1437.1-373.5,1437-373.4,1436.9-373.4z
+ "/>
+ <path class="st92" d="M1443.1-345.7c-0.1,0-0.2,0-0.3,0l-26.6-8.4c-0.2-0.1-0.4-0.2-0.4-0.5l-6.2-27.7c-0.1-0.3,0.1-0.7,0.5-0.8
+ s0.7,0.1,0.8,0.5l6.1,27.4l25.2,8l-5.9-26.6c-0.1-0.3,0.1-0.7,0.5-0.8c0.3-0.1,0.7,0.1,0.8,0.5l6.2,27.7
+ C1443.7-346.2,1443.4-345.8,1443.1-345.7z"/>
+ <path class="st92" d="M1443.1-345.7c-0.2,0-0.5,0-0.6-0.2c-0.2-0.3-0.2-0.7,0-0.9l20.2-18.8l-6.1-27.3c-0.1-0.3,0.1-0.7,0.5-0.8
+ c0.3-0.1,0.7,0.1,0.8,0.5l6.2,27.6c0.1,0.2,0,0.5-0.2,0.6l-20.5,19.1C1443.3-345.8,1443.2-345.8,1443.1-345.7z"/>
+ <path class="st93" d="M1080.1-172c-0.1-0.1-0.2-0.1-0.2-0.2l-10.2-23.9c-0.1-0.3,0-0.7,0.3-0.8c0.1,0,0.2-0.1,0.3,0l25.9,2.9
+ c0.2,0,0.4,0.2,0.5,0.4l10.1,24c0.1,0.3,0,0.7-0.3,0.8c-0.1,0-0.2,0.1-0.3,0l-25.8-2.9C1080.3-171.9,1080.2-171.9,1080.1-172z"/>
+ <path class="st93" d="M1064.4-150.8c-0.1-0.1-0.2-0.1-0.2-0.2L1054-175c-0.1-0.2-0.1-0.4,0.1-0.6l15.8-21.2
+ c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,0.3,0.6,0.1,0.8l-15.6,20.9l9.6,22.6l15.1-20.3c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,25.3,4,25.1,4.3
+ l-40.7,17.7C1065-150.7,1064.6-150.6,1064.4-150.8z"/>
+ <path class="st93" d="M1105.8-169.9c0.2-0.3,0.6-0.3,0.8-0.1s0.3,0.6,0.1,0.8l-15.7,21.1c-0.1,0.2-0.3,0.3-0.5,0.2l-25.9-2.9
+ c-0.1,0-0.2-0.1-0.3-0.1c-0.2-0.1-0.3-0.3-0.2-0.5c0-0.3,0.3-0.6,0.7-0.5"/>
+ <g>
+ <rect x="357.1" y="-818.1" class="st47" width="951.9" height="118.3"/>
+ <text transform="matrix(0.9755 0 0 1 381.9971 -800.3338)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</tspan><tspan x="-25.5" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="-20.2" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">nibh</tspan><tspan x="32.6" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="37.9" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">euismod</tspan><tspan x="142.7" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="148.1" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">Lorem</tspan><tspan x="222.2" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="227.6" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">ipsum</tspan><tspan x="302.2" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="307.5" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">dolor</tspan><tspan x="369.2" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="374.5" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">sit</tspan><tspan x="401.6" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="407" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">amet,</tspan><tspan x="476.2" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="481.5" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">tetuer</tspan><tspan x="552.9" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="558.2" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">adipiscing</tspan><tspan x="683.1" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="688.4" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">elit,</tspan><tspan x="728.5" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="733.8" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">sed</tspan><tspan x="777.4" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="782.7" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">diam</tspan><tspan x="845.7" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="851" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">nonum</tspan><tspan x="937.1" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">-</tspan><tspan x="393.3" y="100" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">my nibmod </tspan></text>
+ </g>
+ <g>
+ <rect x="827.7" y="-638.2" class="st14" width="23.3" height="6.1"/>
+ </g>
+ <linearGradient id="SVGID_105_" gradientUnits="userSpaceOnUse" x1="468.1465" y1="-3211.3015" x2="469.3535" y2="-3211.3015">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st147" x1="469" y1="-3211.1" x2="468.5" y2="-3211.6"/>
+ <line class="st40" x1="514.9" y1="-3278.3" x2="512.2" y2="-3278.3"/>
+ <line class="st40" x1="483.2" y1="-3251" x2="480.5" y2="-3251"/>
+ <line class="st40" x1="679.8" y1="-3219.9" x2="677.1" y2="-3219.9"/>
+ <g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="771" height="491" xlink:href="1FE9CA9FC2C9422.png" transform="matrix(1 0 0 1 358 -3315.0515)">
+ </image>
+ <g>
+ <path class="st98" d="M1129.9-3296.4v468.9c0,2.2-1.8,4-4,4H377.3c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h750.6
+ C1128.6-3299.4,1129.9-3298,1129.9-3296.4z"/>
+ <path class="st81" d="M1129.9-3296.4v468.9c0,2.2-1.8,4-4,4H377.3c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h750.6
+ C1128.6-3299.4,1129.9-3298,1129.9-3296.4z"/>
+ </g>
+ </g>
+ <g>
+ <path class="st8" d="M1129.9-3296.1v21.7c0,1.7-1.4,3-3,3H376.3c-1.6,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h750.6
+ C1128.6-3299.1,1129.9-3297.7,1129.9-3296.1z"/>
+ <path class="st62" d="M1129.9-3296.1v21.7c0,1.7-1.4,3-3,3H376.3c-1.6,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h750.6
+ C1128.6-3299.1,1129.9-3297.7,1129.9-3296.1z"/>
+ </g>
+ </g>
+ <g>
+ <line class="st40" x1="515.4" y1="-3203.4" x2="512.6" y2="-3203.4"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="770" height="490" xlink:href="1FE9CA9FC2C9423.png" transform="matrix(1 0 0 1 397 -3259.0515)">
+ </image>
+ <g>
+ <path class="st98" d="M1168.2-3240.7v468.9c0,2.2-1.8,4-4,4H415.6c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h750.6
+ C1166.9-3243.7,1168.2-3242.3,1168.2-3240.7z"/>
+ <path class="st99" d="M1168.2-3240.7v468.9c0,2.2-1.8,4-4,4H415.6c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h750.6
+ C1166.9-3243.7,1168.2-3242.3,1168.2-3240.7z"/>
+ </g>
+ </g>
+ <g>
+ <path class="st8" d="M1167.9-3241.1v21.7c0,1.7-1.4,3-3,3H414.3c-1.6,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h750.6
+ C1166.6-3244.1,1167.9-3242.7,1167.9-3241.1z"/>
+ <path class="st62" d="M1167.9-3241.1v21.7c0,1.7-1.4,3-3,3H414.3c-1.6,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h750.6
+ C1166.6-3244.1,1167.9-3242.7,1167.9-3241.1z"/>
+ </g>
+ </g>
+ <g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="771" height="490" xlink:href="1FE9CA9FC2C9425.png" transform="matrix(1 0 0 1 431 -3199.0515)">
+ </image>
+ <g>
+ <path class="st98" d="M1202.6-3182.3v472.9c0,0.5-0.4,1-1,1H446.9c-0.5,0-1-0.4-1-1v-472.9c0-1.1,0.9-2,2-2h752.6
+ C1201.7-3184.3,1202.6-3183.4,1202.6-3182.3z"/>
+ <path class="st99" d="M1202.6-3182.3v472.9c0,0.5-0.4,1-1,1H446.9c-0.5,0-1-0.4-1-1v-472.9c0-1.1,0.9-2,2-2h752.6
+ C1201.7-3184.3,1202.6-3183.4,1202.6-3182.3z"/>
+ </g>
+ </g>
+ <g>
+ <g>
+ <rect x="936.7" y="-3031.2" class="st14" width="23.3" height="6.1"/>
+ </g>
+ <g>
+ <polygon class="st14" points="546.4,-3037.4 542.5,-3042.1 553.7,-3051.6 542.5,-3061.3 546.4,-3065.9 563.2,-3051.6 "/>
+ </g>
+ <rect x="541.3" y="-2964.6" class="st47" width="551.7" height="304.6"/>
+ <text transform="matrix(1 0 0 1 541.2637 -2949.8225)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">The</tspan><tspan x="40.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="52.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">intelligent</tspan><tspan x="165.8" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="178.1" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">package</tspan><tspan x="276.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="288.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">manager</tspan><tspan x="391.3" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="403.5" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">for</tspan><tspan x="434.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="446.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">the</tspan><tspan x="482.8" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="495.1" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Node </tspan><tspan x="4.7" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Javascript Platform. Install stuff and get coding!</tspan></text>
+ <g>
+ <rect x="543.3" y="-2865.1" class="st14" width="230" height="59.2"/>
+ <rect x="549.2" y="-2859.2" class="st19" width="230" height="59.2"/>
+
+ <text transform="matrix(1 0 0 1 600.1411 -2826.6399)" class="st8" style="font-family:'Poppins-Bold'; font-size:20px; letter-spacing:1;">Read Docs</text>
+ </g>
+ </g>
+ <g>
+ <path class="st8" d="M1202.9-3181.1v24.7c0,0,0,0,0,0H446.4c0,0,0,0,0,0v-24.7c0-1.7,1.3-3,3-3h750.6
+ C1201.6-3184.1,1202.9-3182.7,1202.9-3181.1z"/>
+ <path class="st62" d="M1202.9-3181.1v24.7c0,0,0,0,0,0H446.4c0,0,0,0,0,0v-24.7c0-1.7,1.3-3,3-3h750.6
+ C1201.6-3184.1,1202.9-3182.7,1202.9-3181.1z"/>
+ </g>
+ <line class="st66" x1="462.6" y1="-3174.4" x2="471" y2="-3165.4"/>
+ <line class="st66" x1="462.3" y1="-3165.7" x2="471.3" y2="-3174.1"/>
+ <line class="st66" x1="422.6" y1="-3234.4" x2="431" y2="-3225.4"/>
+ <line class="st66" x1="422.3" y1="-3225.7" x2="431.3" y2="-3234.1"/>
+ <line class="st66" x1="385.6" y1="-3289.4" x2="394" y2="-3280.4"/>
+ <line class="st66" x1="385.3" y1="-3280.7" x2="394.3" y2="-3289.1"/>
+ </g>
+ <path class="st120" d="M90-2936.1"/>
+ <path class="st120" d="M107.5-2918.6"/>
+ <path class="st14" d="M209.6-2738.4c-0.1,0-0.2-0.1-0.3-0.2l-18.2-21.2c-0.2-0.3-0.2-0.7,0.1-0.9c0.1-0.1,0.2-0.1,0.3-0.1l27.4-5.5
+ c0.2,0,0.5,0,0.6,0.2l18.2,21.2c0.2,0.3,0.2,0.7-0.1,0.9c-0.1,0.1-0.2,0.1-0.3,0.1l-27.4,5.5
+ C209.8-2738.4,209.7-2738.4,209.6-2738.4z"/>
+ <path class="st14" d="M209.2-2739.3c0.1-0.3,0.5-0.5,0.8-0.4c0.3,0.1,0.5,0.5,0.4,0.8l-9.2,26.8c-0.1,0.3-0.5,0.5-0.8,0.4
+ c-0.1,0-0.2-0.1-0.3-0.2l-18.3-21.1c-0.1-0.2-0.2-0.4-0.1-0.6l9.3-26.9c0.1-0.3,0.5-0.5,0.8-0.4s0.5,0.5,0.4,0.8"/>
+ <path class="st14" d="M200.4-2711.6c-0.2-0.1-0.4-0.3-0.4-0.5c-0.1-0.3,0.2-0.7,0.5-0.8l27.1-5.4l9.1-26.4c0.1-0.3,0.5-0.5,0.8-0.4
+ c0.3,0.1,0.5,0.5,0.4,0.8l-9.2,26.8c-0.1,0.2-0.3,0.4-0.5,0.4l-27.4,5.5C200.6-2711.6,200.5-2711.6,200.4-2711.6z"/>
+ <linearGradient id="SVGID_106_" gradientUnits="userSpaceOnUse" x1="246.5889" y1="-3012.4766" x2="276.5912" y2="-3012.4766">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_107_" gradientUnits="userSpaceOnUse" x1="246.2179" y1="-3012.4766" x2="276.9622" y2="-3012.4766">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st148" d="M265.7-3003.6c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.4-0.2-0.4-0.5c0-0.1,0-0.1,0.1-0.2l10.6-15.2
+ c0.1-0.1,0.2-0.2,0.4-0.2l18.5,1.8c0.2,0,0.4,0.2,0.4,0.5c0,0.1,0,0.1-0.1,0.2l-10.7,15.2C265.8-3003.6,265.8-3003.6,265.7-3003.6z
+ "/>
+ <linearGradient id="SVGID_108_" gradientUnits="userSpaceOnUse" x1="246.5872" y1="-2996.293" x2="273.8262" y2="-2996.293">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_109_" gradientUnits="userSpaceOnUse" x1="246.2162" y1="-2996.293" x2="274.1972" y2="-2996.293">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st149" d="M273.6-2986.4c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.3-0.1-0.3-0.2l-7.9-17.2c-0.1-0.2,0-0.5,0.2-0.6
+ s0.5,0,0.6,0.2l7.8,16.9l17.5,1.7l-7.6-16.5c-0.1-0.2,0-0.5,0.2-0.6c0.2-0.1,0.5,0,0.6,0.2l7.9,17.1
+ C273.9-2986.8,273.8-2986.5,273.6-2986.4z"/>
+ <linearGradient id="SVGID_110_" gradientUnits="userSpaceOnUse" x1="272.9719" y1="-3003.0071" x2="284.4713" y2="-3003.0071">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_111_" gradientUnits="userSpaceOnUse" x1="272.6009" y1="-3003.0071" x2="284.8423" y2="-3003.0071">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st150" d="M273.6-2986.4c-0.1,0.1-0.3,0-0.4,0c-0.2-0.1-0.2-0.4-0.1-0.6l10.5-15.1l-7.8-16.9c-0.1-0.2,0-0.5,0.2-0.6
+ c0.2-0.1,0.5,0,0.6,0.2l7.9,17.1c0.1,0.1,0.1,0.3,0,0.4l-10.6,15.2C273.7-2986.5,273.6-2986.5,273.6-2986.4z"/>
+ <path class="st92" d="M87.7-3269.2c0.1,0,0.1,0.1,0.2,0.2l9.2,16.1c0.1,0.2,0,0.5-0.2,0.6c-0.1,0-0.1,0.1-0.2,0.1l-18.6,0.1
+ c-0.2,0-0.3-0.1-0.4-0.2l-9.2-16.2c-0.1-0.2,0-0.5,0.2-0.6c0.1,0,0.1-0.1,0.2-0.1l18.6-0.1C87.6-3269.3,87.6-3269.3,87.7-3269.2z"
+ />
+ <path class="st92" d="M87.9-3268.7c-0.1,0.2-0.4,0.3-0.6,0.2c-0.2-0.1-0.3-0.4-0.2-0.6l9.4-16.3c0.1-0.2,0.4-0.3,0.6-0.2
+ c0.1,0,0.1,0.1,0.2,0.2l9.2,16.1c0.1,0.1,0.1,0.3,0,0.4l-9.4,16.4c-0.1,0.2-0.4,0.3-0.6,0.2c-0.2-0.1-0.3-0.4-0.2-0.6"/>
+ <path class="st92" d="M97.1-3285.6c0.1,0.1,0.2,0.2,0.2,0.4c0,0.2-0.2,0.4-0.4,0.4l-18.4,0.1l-9.3,16.1c-0.1,0.2-0.4,0.3-0.6,0.2
+ c-0.2-0.1-0.3-0.4-0.2-0.6l9.4-16.3c0.1-0.1,0.2-0.2,0.4-0.2l18.6-0.1C97-3285.6,97.1-3285.6,97.1-3285.6z"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="356" height="93" xlink:href="1FE9CA9FC2C9427.png" transform="matrix(1 0 0 1 574.4106 -3094.6409)">
+ </image>
+ <g>
+ <g>
+ <path class="st8" d="M575.6-3025.9v-45.8h10.8v4.7c1.5-1.7,3.3-3.1,5.4-4.1c2.1-1,4.2-1.6,6.3-1.6c2.2,0,4.3,0.3,6.1,1
+ c1.8,0.7,3.4,1.8,4.7,3.3c1.3,1.5,2.3,3.5,3,5.9c0.7,2.4,1.1,5.3,1.1,8.7v27.7h-10.5v-27.6c0-1.8-0.2-3.3-0.5-4.6
+ c-0.3-1.3-0.8-2.3-1.3-3.1c-0.6-0.8-1.2-1.4-2-1.8c-0.8-0.4-1.6-0.6-2.6-0.6c-1.3,0-2.6,0.3-3.8,0.8c-1.2,0.6-2.2,1.3-3.1,2.3
+ c-0.9,1-1.5,2.2-2,3.6c-0.5,1.4-0.7,2.9-0.7,4.6v26.5H575.6z"/>
+ <path class="st8" d="M626.7-3071.7H637v4.7c0.7-1,1.5-1.9,2.4-2.6c0.9-0.7,1.8-1.3,2.7-1.8c0.9-0.5,1.9-0.8,2.8-1
+ c1-0.2,1.9-0.3,2.8-0.3c2.6,0,5.1,0.5,7.4,1.6c2.3,1,4.3,2.6,6,4.7s3.1,4.7,4.1,7.8c1,3.1,1.5,6.8,1.5,11.1
+ c0,3.9-0.5,7.2-1.5,10.1c-1,2.9-2.4,5.3-4.1,7.2c-1.7,1.9-3.7,3.4-6,4.4s-4.7,1.5-7.2,1.5c-1.8,0-3.7-0.4-5.6-1.2
+ c-1.9-0.8-3.5-1.9-4.7-3.3v19.4h-10.7L626.7-3071.7z M637.5-3049.3c0,2.8,0.2,5.2,0.6,7.3c0.4,2,1,3.7,1.7,4.9
+ c0.7,1.2,1.6,2.2,2.7,2.7c1.1,0.6,2.3,0.9,3.6,0.9c1.1,0,2.2-0.3,3.3-0.8c1.1-0.5,2.2-1.4,3.2-2.5c1-1.1,1.7-2.6,2.3-4.5
+ c0.6-1.9,0.9-4.2,0.9-6.9c0-5-0.9-8.8-2.6-11.5c-1.7-2.7-4.2-4-7.5-4c-1.7,0-3.1,0.4-4.2,1.2c-1.1,0.8-1.9,1.8-2.6,3.2
+ c-0.6,1.3-1.1,2.9-1.3,4.6C637.6-3053,637.5-3051.2,637.5-3049.3z"/>
+ <path class="st8" d="M676.3-3025.9v-46.3h9.2v2.8c1.4-1.5,2.8-2.6,4.2-3.3c1.4-0.7,2.7-1,4-1c0.6,0,1.2,0.1,1.9,0.3
+ c0.7,0.2,1.3,0.5,2,0.9c0.6,0.4,1.3,1,1.9,1.7c0.6,0.7,1.1,1.6,1.6,2.6c1.1-1.8,2.5-3.1,4.1-4.1c1.7-0.9,3.3-1.4,5-1.4
+ c1.7,0,3.1,0.3,4.3,0.9c1.1,0.6,2,1.5,2.7,2.6c0.7,1.2,1.2,2.6,1.5,4.4c0.3,1.7,0.4,3.7,0.4,6v33.8H709v-32
+ c0-2.5-0.2-4.4-0.6-5.5c-0.4-1.1-1.2-1.7-2.2-1.7c-2.4,0-3.6,3-3.6,9v30.1h-9.9v-31.5c0-1.6-0.1-2.9-0.2-3.9s-0.4-1.7-0.7-2.3
+ c-0.3-0.6-0.6-0.9-0.9-1.1c-0.3-0.2-0.6-0.3-1-0.3c-0.6,0-1.1,0.1-1.6,0.4c-0.5,0.3-0.9,0.7-1.2,1.4c-0.3,0.7-0.6,1.6-0.8,2.7
+ c-0.2,1.1-0.3,2.6-0.3,4.3v30.4H676.3z"/>
+ <path class="st8" d="M813.8-3055.6c-0.3-0.1-0.4-0.2-0.6-0.4c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.1-0.4-0.2-0.7
+ c-0.1-0.3-0.1-0.6-0.2-0.8c-0.9-1.5-2.2-2.8-3.8-3.8c-1.6-1-3.6-1.6-6-1.6c-1.6,0-3.1,0.4-4.5,1.1c-1.4,0.7-2.7,1.7-3.8,3
+ c-1.1,1.3-1.9,2.8-2.5,4.6c-0.6,1.8-0.9,3.7-0.9,5.9c0,2.2,0.3,4.2,0.9,6c0.6,1.8,1.4,3.4,2.4,4.8c1.1,1.4,2.3,2.5,3.7,3.2
+ c1.4,0.8,3,1.2,4.8,1.2c0.9,0,1.8-0.1,2.7-0.3c0.9-0.2,1.9-0.5,2.9-1c1-0.5,1.9-1.1,2.9-1.9c0.9-0.8,1.8-1.7,2.7-2.8l6.2,7.4
+ c-2.6,2.9-5.3,5-8.3,6.2c-3,1.3-6.2,1.9-9.6,1.9c-3.3,0-6.2-0.6-9-1.8c-2.7-1.2-5.1-2.9-7-5c-1.9-2.1-3.5-4.7-4.6-7.6
+ c-1.1-2.9-1.7-6.1-1.7-9.6c0-3.4,0.5-6.6,1.6-9.6c1.1-3,2.6-5.5,4.6-7.7c2-2.2,4.4-3.9,7.2-5.1c2.8-1.3,5.8-1.9,9.2-1.9
+ c1.8,0,3.6,0.2,5.4,0.6c1.8,0.4,3.4,0.9,4.9,1.7c1.5,0.7,2.9,1.6,4.2,2.7c1.3,1.1,2.4,2.4,3.3,3.8L813.8-3055.6z"/>
+ <path class="st8" d="M835.1-3092.1h22.4v57.7h12.2v8.5h-35.2v-8.5h12.2v-49.1h-11.7V-3092.1z"/>
+ <path class="st8" d="M889.5-3071.7h20.9v37.3h9.9v8.5H889v-8.5h10.8v-28.7h-10.3V-3071.7z M905.2-3092.2c0.9,0,1.8,0.2,2.6,0.5
+ c0.8,0.3,1.5,0.8,2.2,1.4c0.6,0.6,1.1,1.3,1.4,2c0.3,0.8,0.5,1.6,0.5,2.4c0,0.9-0.2,1.7-0.5,2.5c-0.4,0.8-0.8,1.5-1.4,2
+ c-0.6,0.6-1.3,1-2.2,1.3c-0.8,0.3-1.7,0.5-2.6,0.5c-0.9,0-1.8-0.2-2.6-0.5c-0.8-0.3-1.5-0.8-2.2-1.3c-0.6-0.6-1.1-1.2-1.4-2
+ s-0.5-1.6-0.5-2.5c0-0.8,0.1-1.5,0.4-2.3c0.3-0.7,0.7-1.4,1.2-2c0.5-0.6,1.2-1.1,2.1-1.5C903.1-3092,904.1-3092.2,905.2-3092.2z
+ "/>
+ </g>
+ </g>
+ </g>
+ <path class="st151" d="M3727.9-1600.9"/>
+ <path class="st152" d="M3360.5-1526.9c-0.1,0-0.1-0.1-0.2-0.1l-11-12.7c-0.1-0.2-0.1-0.4,0-0.5c0.1,0,0.1-0.1,0.2-0.1l16.5-3.3
+ c0.1,0,0.3,0,0.4,0.1l11,12.8c0.1,0.2,0.1,0.4,0,0.5c-0.1,0-0.1,0.1-0.2,0.1l-16.5,3.3C3360.6-1526.9,3360.5-1526.9,3360.5-1526.9z
+ "/>
+ <path class="st14" d="M3360.2-1527.4c0.1-0.2,0.3-0.3,0.5-0.2c0.2,0.1,0.3,0.3,0.2,0.5l-5.5,16.1c-0.1,0.2-0.3,0.3-0.5,0.2
+ c-0.1,0-0.1-0.1-0.2-0.1l-11-12.7c-0.1-0.1-0.1-0.2-0.1-0.4l5.6-16.1c0.1-0.2,0.3-0.3,0.5-0.2s0.3,0.3,0.2,0.5"/>
+ <path class="st14" d="M3354.9-1510.8c-0.1,0-0.2-0.2-0.3-0.3c0-0.2,0.1-0.4,0.3-0.5l16.3-3.3l5.5-15.9c0.1-0.2,0.3-0.3,0.5-0.2
+ s0.3,0.3,0.2,0.5l-5.5,16.1c0,0.1-0.2,0.2-0.3,0.3l-16.5,3.3C3355-1510.7,3355-1510.8,3354.9-1510.8z"/>
+ <linearGradient id="SVGID_112_" gradientUnits="userSpaceOnUse" x1="3736.0706" y1="-1607.1979" x2="3754.0979" y2="-1607.1979">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_113_" gradientUnits="userSpaceOnUse" x1="3735.8477" y1="-1607.1979" x2="3754.3208" y2="-1607.1979">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st153" d="M3747.5-1601.8c0,0-0.1,0-0.1,0l-11.1-1.1c-0.1,0-0.2-0.1-0.2-0.3c0,0,0-0.1,0-0.1l6.4-9.2
+ c0.1-0.1,0.1-0.1,0.2-0.1l11.1,1.1c0.1,0,0.2,0.1,0.2,0.3c0,0,0,0.1,0,0.1l-6.4,9.2C3747.6-1601.9,3747.6-1601.9,3747.5-1601.8z"/>
+ <linearGradient id="SVGID_114_" gradientUnits="userSpaceOnUse" x1="3736.0696" y1="-1597.4739" x2="3752.4365" y2="-1597.4739">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st154" d="M3752.3-1591.6c0,0-0.1,0-0.1,0l-11.1-1.1c-0.1,0-0.2-0.1-0.2-0.1l-4.7-10.3c-0.1-0.1,0-0.3,0.1-0.3
+ c0.1-0.1,0.3,0,0.3,0.1l4.7,10.2l10.5,1l-4.6-9.9c-0.1-0.1,0-0.3,0.1-0.3c0.1-0.1,0.3,0,0.3,0.1l4.7,10.3
+ C3752.5-1591.8,3752.4-1591.6,3752.3-1591.6z"/>
+ <linearGradient id="SVGID_115_" gradientUnits="userSpaceOnUse" x1="3751.9231" y1="-1601.5081" x2="3758.8328" y2="-1601.5081">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st155" d="M3752.3-1591.6c-0.1,0-0.2,0-0.3,0c-0.1-0.1-0.1-0.2-0.1-0.4l6.3-9l-4.7-10.1c-0.1-0.1,0-0.3,0.1-0.3
+ s0.3,0,0.3,0.1l4.7,10.3c0,0.1,0,0.2,0,0.3l-6.4,9.2C3752.4-1591.6,3752.3-1591.6,3752.3-1591.6z"/>
+ <path class="st92" d="M4728.8-1500.5c-0.1,0-0.1,0-0.2,0l-16-5.1c-0.2-0.1-0.3-0.3-0.3-0.5c0-0.1,0.1-0.1,0.1-0.2l12.3-11.5
+ c0.1-0.1,0.2-0.1,0.4-0.1l16,5.1c0.2,0.1,0.3,0.3,0.3,0.5c0,0.1-0.1,0.1-0.1,0.2l-12.3,11.4
+ C4728.9-1500.6,4728.8-1500.6,4728.8-1500.5z"/>
+ <path class="st92" d="M4732.5-1483.9c-0.1,0-0.1,0-0.2,0l-16-5.1c-0.1,0-0.2-0.1-0.3-0.3l-3.7-16.7c0-0.2,0.1-0.4,0.3-0.5
+ c0.2,0,0.4,0.1,0.5,0.3l3.7,16.4l15.2,4.8l-3.6-16c0-0.2,0.1-0.4,0.3-0.5c0.2,0,0.4,0.1,0.5,0.3l3.7,16.6
+ C4732.8-1484.2,4732.7-1484,4732.5-1483.9z"/>
+ <path class="st92" d="M4732.5-1483.9c-0.1,0-0.3,0-0.4-0.1c-0.1-0.2-0.1-0.4,0-0.5l12.1-11.3l-3.7-16.4c0-0.2,0.1-0.4,0.3-0.5
+ s0.4,0.1,0.5,0.3l3.7,16.6c0,0.1,0,0.3-0.1,0.4l-12.3,11.5C4732.6-1484,4732.5-1483.9,4732.5-1483.9z"/>
+ <path class="st93" d="M4479.2-1577.6c-0.1,0-0.1-0.1-0.1-0.1l-6.1-14.4c-0.1-0.2,0-0.4,0.2-0.5c0.1,0,0.1,0,0.2,0l15.5,1.7
+ c0.1,0,0.2,0.1,0.3,0.2l6.1,14.4c0.1,0.2,0,0.4-0.2,0.5c-0.1,0-0.1,0-0.2,0l-15.5-1.7C4479.3-1577.5,4479.2-1577.5,4479.2-1577.6z"
+ />
+ <path class="st93" d="M4469.7-1564.9c-0.1,0-0.1-0.1-0.1-0.1l-6.1-14.4c-0.1-0.1,0-0.3,0-0.4l9.5-12.7c0.1-0.2,0.3-0.2,0.5-0.1
+ c0.2,0.1,0.2,0.3,0.1,0.5l-9.4,12.6l5.8,13.6l9.1-12.2c0.1-0.2,0.3-0.2,0.5-0.1c0.2,0.1,15.2,2.4,15.1,2.6l-24.5,10.6
+ C4470.1-1564.8,4469.9-1564.7,4469.7-1564.9z"/>
+ <path class="st93" d="M4494.6-1576.3c0.1-0.2,0.3-0.2,0.5-0.1c0.2,0.1,0.2,0.3,0.1,0.5l-9.5,12.7c-0.1,0.1-0.2,0.2-0.3,0.1
+ l-15.5-1.7c-0.1,0-0.1,0-0.2-0.1c-0.1-0.1-0.2-0.2-0.1-0.3c0-0.2,0.2-0.3,0.4-0.3"/>
+ <text transform="matrix(1 0 0 1 3896.54 -1500.453)" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">Some footer text or something here </text>
+ <path class="st92" d="M1765.5-3270.3l-9.2-16.1c0-0.1-0.1-0.1-0.2-0.2c-0.1,0-0.1,0-0.2-0.1c0,0,0,0,0,0l-18.6,0.1
+ c-0.2,0-0.3,0.1-0.4,0.2l-9.4,16.3c0,0,0,0,0,0.1c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0
+ l9.2,16.2c0.1,0.1,0.2,0.2,0.4,0.2l18.6-0.1c0,0,0,0,0,0c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1-0.1
+ c0,0,0,0,0-0.1c0,0,0,0,0,0l9.4-16.4C1765.6-3270,1765.6-3270.2,1765.5-3270.3z M1728.7-3270.2l8.9-15.4l17.6-0.1l-8.9,15.5
+ L1728.7-3270.2z"/>
+ <linearGradient id="SVGID_116_" gradientUnits="userSpaceOnUse" x1="1991.4084" y1="-3526.0515" x2="2047.5916" y2="-3526.0515">
+ <stop offset="0" style="stop-color:#FB3B49"/>
+ <stop offset="0.9988" style="stop-color:#EC3B49"/>
+ </linearGradient>
+ <path class="st156" d="M2047.6-3531.6c0-0.1,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0-0.1,0-0.1-0.1-0.1c0,0,0,0,0,0l-18.2-21.2
+ c-0.2-0.2-0.4-0.3-0.6-0.2l-27.4,5.5c0,0,0,0,0,0c-0.1,0-0.2,0.1-0.2,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0.1-0.1,0.1
+ c0,0,0,0.1-0.1,0.1c0,0,0,0,0,0l-9.3,26.9c-0.1,0.2,0,0.5,0.1,0.6l18.3,21.1c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0,0.2,0,0.3,0
+ c0,0,0,0,0,0l27.4-5.5c0.2,0,0.4-0.2,0.5-0.4l9.2-26.8c0,0,0-0.1,0-0.1C2047.6-3531.5,2047.6-3531.5,2047.6-3531.6z M2037.2-3505.4
+ l-26,5.2l8.7-25.4l26-5.2L2037.2-3505.4z"/>
+ <linearGradient id="SVGID_117_" gradientUnits="userSpaceOnUse" x1="2093.5154" y1="-3529.0515" x2="2146.4846" y2="-3529.0515">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st157" d="M2146.5-3526c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.2c0,0,0,0,0,0l-10.1-24
+ c-0.1-0.2-0.3-0.3-0.5-0.4l-25.9-2.9c0,0,0,0,0,0c-0.1,0-0.2,0-0.2,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0.1c0,0-0.1,0-0.1,0.1
+ c0,0,0,0,0,0l-15.8,21.2c-0.1,0.2-0.2,0.4-0.1,0.6l10.2,23.9c0,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.2,0.1c0,0,0,0,0,0l25.9,2.9
+ c0.2,0,0.4-0.1,0.5-0.2l15.7-21.1C2146.4-3525.9,2146.4-3525.9,2146.5-3526C2146.4-3526,2146.4-3526,2146.5-3526z M2141.6-3526.1
+ l2.1,0.2l-0.2,0.1C2143-3525.8,2142.4-3526,2141.6-3526.1z M2109.8-3551.8l9.6,22.7l-14.9,20.1l-9.6-22.6L2109.8-3551.8z"/>
+ <linearGradient id="SVGID_118_" gradientUnits="userSpaceOnUse" x1="2158.96" y1="-3529.5515" x2="2209.04" y2="-3529.5515">
+ <stop offset="0" style="stop-color:#913FFF"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st158" d="M2203.4-3547.2C2203.3-3547.2,2203.3-3547.3,2203.4-3547.2c0-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.1-0.1
+ c0,0,0,0-0.1-0.1c0,0-0.1-0.1-0.1-0.1c0,0,0,0,0,0l-24.4-7.8c-0.2-0.1-0.4,0-0.6,0.1l-18.8,17.5c0,0,0,0,0,0
+ c-0.1,0.1-0.1,0.1-0.1,0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0l5.7,25.5c0,0.2,0.2,0.4,0.4,0.4
+ l24.4,7.8c0.1,0,0.2,0,0.3,0c0.1,0,0.2-0.1,0.2-0.1c0,0,0,0,0,0l18.8-17.5c0.2-0.1,0.2-0.4,0.2-0.6L2203.4-3547.2z M2165.7-3512.4
+ l-5.4-24.1l23.1,7.4l5.4,24.1L2165.7-3512.4z"/>
+ <linearGradient id="SVGID_119_" gradientUnits="userSpaceOnUse" x1="1777.058" y1="-3524.9287" x2="1804.2969" y2="-3524.9287">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_120_" gradientUnits="userSpaceOnUse" x1="1776.6869" y1="-3524.9287" x2="1804.668" y2="-3524.9287">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st159" d="M1804-3515.1c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.3-0.1-0.3-0.2l-7.9-17.2c-0.1-0.2,0-0.5,0.2-0.6
+ c0.2-0.1,0.5,0,0.6,0.2l7.8,16.9l17.5,1.7l-7.6-16.5c-0.1-0.2,0-0.5,0.2-0.6s0.5,0,0.6,0.2l7.9,17.1
+ C1804.4-3515.4,1804.3-3515.2,1804-3515.1z"/>
+ <linearGradient id="SVGID_121_" gradientUnits="userSpaceOnUse" x1="1803.4426" y1="-3531.6428" x2="1814.942" y2="-3531.6428">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_122_" gradientUnits="userSpaceOnUse" x1="1803.0717" y1="-3531.6428" x2="1815.3131" y2="-3531.6428">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st160" d="M1804-3515.1c-0.1,0.1-0.3,0-0.4,0c-0.2-0.1-0.2-0.4-0.1-0.6l10.5-15.1l-7.8-16.9c-0.1-0.2,0-0.5,0.2-0.6
+ c0.2-0.1,0.5,0,0.6,0.2l7.9,17.1c0.1,0.1,0.1,0.3,0,0.4l-10.6,15.2C1804.2-3515.2,1804.1-3515.1,1804-3515.1z"/>
+ <linearGradient id="SVGID_123_" gradientUnits="userSpaceOnUse" x1="1777.0596" y1="-3541.1123" x2="1807.0619" y2="-3541.1123">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_124_" gradientUnits="userSpaceOnUse" x1="1776.6886" y1="-3541.1123" x2="1807.433" y2="-3541.1123">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st161" d="M1796.2-3532.2c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.4-0.2-0.4-0.5c0-0.1,0-0.1,0.1-0.2l10.6-15.2
+ c0.1-0.1,0.2-0.2,0.4-0.2l18.5,1.8c0.2,0,0.4,0.2,0.4,0.5c0,0.1,0,0.1-0.1,0.2l-10.7,15.2
+ C1796.3-3532.3,1796.2-3532.2,1796.2-3532.2z"/>
+ <g>
+ <path class="st120" d="M619.1,152.1"/>
+ <path class="st143" d="M140.7,265.7c-0.1,0-0.2-0.1-0.3-0.2l-18.2-21.2c-0.2-0.3-0.2-0.7,0.1-0.9c0.1-0.1,0.2-0.1,0.3-0.1
+ l27.4-5.5c0.2,0,0.5,0,0.6,0.2l18.2,21.2c0.2,0.3,0.2,0.7-0.1,0.9c-0.1,0.1-0.2,0.1-0.3,0.1l-27.4,5.5
+ C140.9,265.8,140.8,265.8,140.7,265.7z"/>
+ <path class="st14" d="M140.3,264.9c0.1-0.3,0.5-0.5,0.8-0.4c0.3,0.1,0.5,0.5,0.4,0.8l-9.2,26.8c-0.1,0.3-0.5,0.5-0.8,0.4
+ c-0.1,0-0.2-0.1-0.3-0.2L113,271.2c-0.1-0.2-0.2-0.4-0.1-0.6l9.3-26.9c0.1-0.3,0.5-0.5,0.8-0.4c0.3,0.1,0.5,0.5,0.4,0.8"/>
+ <path class="st14" d="M131.5,292.5c-0.2-0.1-0.4-0.3-0.4-0.5c-0.1-0.3,0.2-0.7,0.5-0.8l27.1-5.4l9.1-26.4c0.1-0.3,0.5-0.5,0.8-0.4
+ s0.5,0.5,0.4,0.8l-9.2,26.8c-0.1,0.2-0.3,0.4-0.5,0.4l-27.4,5.5C131.7,292.6,131.6,292.6,131.5,292.5z"/>
+ <linearGradient id="SVGID_125_" gradientUnits="userSpaceOnUse" x1="632.7109" y1="75.6795" x2="662.7132" y2="75.6795">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_126_" gradientUnits="userSpaceOnUse" x1="632.3399" y1="75.6795" x2="663.0842" y2="75.6795">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st162" d="M651.8,84.6c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.4-0.2-0.4-0.5c0-0.1,0-0.1,0.1-0.2l10.6-15.2
+ c0.1-0.1,0.2-0.2,0.4-0.2l18.5,1.8c0.2,0,0.4,0.2,0.4,0.5c0,0.1,0,0.1-0.1,0.2L652,84.4C651.9,84.5,651.9,84.6,651.8,84.6z"/>
+ <linearGradient id="SVGID_127_" gradientUnits="userSpaceOnUse" x1="632.7092" y1="91.8631" x2="659.9482" y2="91.8631">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st163" d="M659.7,101.7c-0.1,0-0.1,0-0.2,0L641,100c-0.2,0-0.3-0.1-0.3-0.2l-7.9-17.2c-0.1-0.2,0-0.5,0.2-0.6
+ c0.2-0.1,0.5,0,0.6,0.2l7.8,16.9l17.5,1.7l-7.6-16.5c-0.1-0.2,0-0.5,0.2-0.6c0.2-0.1,0.5,0,0.6,0.2l7.9,17.1
+ C660,101.4,659.9,101.6,659.7,101.7z"/>
+ <linearGradient id="SVGID_128_" gradientUnits="userSpaceOnUse" x1="659.0939" y1="85.149" x2="670.5933" y2="85.149">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st164" d="M659.7,101.7c-0.1,0.1-0.3,0-0.4,0c-0.2-0.1-0.2-0.4-0.1-0.6L669.7,86l-7.8-16.9c-0.1-0.2,0-0.5,0.2-0.6
+ c0.2-0.1,0.5,0,0.6,0.2l7.9,17.1c0.1,0.1,0.1,0.3,0,0.4l-10.6,15.2C659.8,101.6,659.8,101.7,659.7,101.7z"/>
+ <path class="st92" d="M1431,129.7c-0.1,0-0.2,0-0.3,0l-26.6-8.5c-0.3-0.1-0.5-0.5-0.4-0.8c0-0.1,0.1-0.2,0.2-0.3l20.5-19.1
+ c0.2-0.2,0.4-0.2,0.6-0.1l26.6,8.5c0.3,0.1,0.5,0.5,0.4,0.8c0,0.1-0.1,0.2-0.2,0.3l-20.5,19C1431.2,129.7,1431.1,129.7,1431,129.7
+ z"/>
+ <path class="st92" d="M1437.2,157.4c-0.1,0-0.2,0-0.3,0l-26.6-8.4c-0.2-0.1-0.4-0.2-0.4-0.5l-6.2-27.7c-0.1-0.3,0.1-0.7,0.5-0.8
+ c0.3-0.1,0.7,0.1,0.8,0.5l6.1,27.4l25.2,8l-5.9-26.6c-0.1-0.3,0.1-0.7,0.5-0.8c0.3-0.1,0.7,0.1,0.8,0.5l6.2,27.7
+ C1437.8,157,1437.6,157.3,1437.2,157.4z"/>
+ <path class="st92" d="M1437.2,157.4c-0.2,0-0.5,0-0.6-0.2c-0.2-0.3-0.2-0.7,0-0.9l20.2-18.8l-6.1-27.3c-0.1-0.3,0.1-0.7,0.5-0.8
+ c0.3-0.1,0.7,0.1,0.8,0.5l6.2,27.6c0.1,0.2,0,0.5-0.2,0.6l-20.5,19.1C1437.4,157.3,1437.3,157.4,1437.2,157.4z"/>
+ <path class="st93" d="M1074.2,331.2c-0.1-0.1-0.2-0.1-0.2-0.2l-10.2-23.9c-0.1-0.3,0-0.7,0.3-0.8c0.1,0,0.2-0.1,0.3,0l25.9,2.9
+ c0.2,0,0.4,0.2,0.5,0.4l10.1,24c0.1,0.3,0,0.7-0.3,0.8c-0.1,0-0.2,0.1-0.3,0l-25.8-2.9C1074.4,331.3,1074.3,331.2,1074.2,331.2z"
+ />
+ <path class="st93" d="M1058.5,352.3c-0.1-0.1-0.2-0.1-0.2-0.2l-10.2-23.9c-0.1-0.2-0.1-0.4,0.1-0.6l15.8-21.2
+ c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,0.3,0.6,0.1,0.8l-15.6,20.9l9.6,22.6l15.1-20.3c0.2-0.3,0.6-0.3,0.8-0.1s25.3,4,25.1,4.3
+ l-40.7,17.7C1059.1,352.5,1058.8,352.5,1058.5,352.3z"/>
+ <path class="st93" d="M1100,333.2c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,0.3,0.6,0.1,0.8l-15.7,21.1c-0.1,0.2-0.3,0.3-0.5,0.2
+ l-25.9-2.9c-0.1,0-0.2-0.1-0.3-0.1c-0.2-0.1-0.3-0.3-0.2-0.5c0-0.3,0.3-0.6,0.7-0.5"/>
+ </g>
+ <linearGradient id="SVGID_129_" gradientUnits="userSpaceOnUse" x1="3583.571" y1="-1498.0562" x2="3616.6108" y2="-1498.0562">
+ <stop offset="0" style="stop-color:#913FFF"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st165" d="M3612.9-1509.7C3612.9-1509.7,3612.8-1509.7,3612.9-1509.7c0-0.1,0-0.1,0-0.1c0,0,0,0-0.1-0.1c0,0,0,0,0,0
+ c0,0-0.1,0-0.1,0c0,0,0,0,0,0l-16.1-5.2c-0.1,0-0.3,0-0.4,0.1l-12.4,11.5c0,0,0,0,0,0c0,0-0.1,0.1-0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0
+ c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0l3.8,16.8c0,0.1,0.1,0.2,0.3,0.3l16.1,5.1c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2-0.1
+ c0,0,0,0,0,0l12.4-11.5c0.1-0.1,0.1-0.2,0.1-0.4L3612.9-1509.7z M3588-1486.8l-3.6-15.9l15.3,4.9l3.6,15.9L3588-1486.8z"/>
+ <linearGradient id="SVGID_130_" gradientUnits="userSpaceOnUse" x1="4136.9287" y1="-1575.7438" x2="4158.665" y2="-1575.7438">
+ <stop offset="0" style="stop-color:#FB3B49"/>
+ <stop offset="0.9988" style="stop-color:#EC3B49"/>
+ </linearGradient>
+ <path class="st166" d="M4158.7-1577.9C4158.7-1577.9,4158.7-1577.9,4158.7-1577.9C4158.7-1577.9,4158.7-1578,4158.7-1577.9
+ c0-0.1,0-0.1,0-0.1c0,0,0,0,0,0l-7.1-8.2c-0.1-0.1-0.1-0.1-0.2-0.1l-10.6,2.1c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0
+ c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l-3.6,10.4c0,0.1,0,0.2,0,0.2l7.1,8.2c0,0,0.1,0.1,0.1,0.1c0,0,0.1,0,0.1,0c0,0,0,0,0,0
+ l10.6-2.1c0.1,0,0.2-0.1,0.2-0.2L4158.7-1577.9C4158.7-1577.8,4158.7-1577.8,4158.7-1577.9
+ C4158.7-1577.9,4158.7-1577.9,4158.7-1577.9z M4154.7-1567.7l-10,2l3.4-9.8l10-2L4154.7-1567.7z"/>
+ <linearGradient id="SVGID_131_" gradientUnits="userSpaceOnUse" x1="4738.5366" y1="-1608.4994" x2="4758.9146" y2="-1608.4994">
+ <stop offset="0" style="stop-color:#913FFF"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st167" d="M4756.6-1615.7C4756.6-1615.7,4756.6-1615.7,4756.6-1615.7C4756.6-1615.7,4756.6-1615.7,4756.6-1615.7
+ c0-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0l-9.9-3.2c-0.1,0-0.2,0-0.2,0.1l-7.6,7.1c0,0,0,0,0,0
+ c0,0,0,0-0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0l2.3,10.4c0,0.1,0.1,0.1,0.2,0.2l9.9,3.2
+ c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0l7.6-7.1c0.1-0.1,0.1-0.1,0.1-0.2L4756.6-1615.7z M4741.3-1601.5l-2.2-9.8l9.4,3
+ l2.2,9.8L4741.3-1601.5z"/>
+ <path class="st151" d="M3734.4-1335.2"/>
+ <path class="st152" d="M3367-1261.1c-0.1,0-0.1-0.1-0.2-0.1l-11-12.7c-0.1-0.2-0.1-0.4,0-0.5c0.1,0,0.1-0.1,0.2-0.1l16.5-3.3
+ c0.1,0,0.3,0,0.4,0.1l11,12.8c0.1,0.2,0.1,0.4,0,0.5c-0.1,0-0.1,0.1-0.2,0.1l-16.5,3.3C3367.1-1261.1,3367.1-1261.1,3367-1261.1z"
+ />
+ <path class="st14" d="M3366.8-1261.6c0.1-0.2,0.3-0.3,0.5-0.2c0.2,0.1,0.3,0.3,0.2,0.5l-5.5,16.1c-0.1,0.2-0.3,0.3-0.5,0.2
+ c-0.1,0-0.1-0.1-0.2-0.1l-11-12.7c-0.1-0.1-0.1-0.2-0.1-0.4l5.6-16.1c0.1-0.2,0.3-0.3,0.5-0.2s0.3,0.3,0.2,0.5"/>
+ <path class="st14" d="M3361.4-1245c-0.1,0-0.2-0.2-0.3-0.3c0-0.2,0.1-0.4,0.3-0.5l16.3-3.3l5.5-15.9c0.1-0.2,0.3-0.3,0.5-0.2
+ s0.3,0.3,0.2,0.5l-5.5,16.1c0,0.1-0.2,0.2-0.3,0.3l-16.5,3.3C3361.6-1245,3361.5-1245,3361.4-1245z"/>
+ <linearGradient id="SVGID_132_" gradientUnits="userSpaceOnUse" x1="3742.6116" y1="-1341.4586" x2="3760.6387" y2="-1341.4586">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_133_" gradientUnits="userSpaceOnUse" x1="3742.3887" y1="-1341.4586" x2="3760.8616" y2="-1341.4586">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st168" d="M3754.1-1336.1c0,0-0.1,0-0.1,0l-11.1-1.1c-0.1,0-0.2-0.1-0.2-0.3c0,0,0-0.1,0-0.1l6.4-9.2
+ c0.1-0.1,0.1-0.1,0.2-0.1l11.1,1.1c0.1,0,0.2,0.1,0.2,0.3c0,0,0,0.1,0,0.1l-6.4,9.2C3754.2-1336.2,3754.1-1336.1,3754.1-1336.1z"/>
+ <linearGradient id="SVGID_134_" gradientUnits="userSpaceOnUse" x1="3742.6106" y1="-1331.7346" x2="3758.9773" y2="-1331.7346">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st169" d="M3758.8-1325.8c0,0-0.1,0-0.1,0l-11.1-1.1c-0.1,0-0.2-0.1-0.2-0.1l-4.7-10.3c-0.1-0.1,0-0.3,0.1-0.3
+ s0.3,0,0.3,0.1l4.7,10.2l10.5,1l-4.6-9.9c-0.1-0.1,0-0.3,0.1-0.3s0.3,0,0.3,0.1l4.7,10.3C3759-1326,3759-1325.9,3758.8-1325.8z"/>
+ <linearGradient id="SVGID_135_" gradientUnits="userSpaceOnUse" x1="3758.4641" y1="-1335.7688" x2="3765.3735" y2="-1335.7688">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st170" d="M3758.8-1325.8c-0.1,0-0.2,0-0.3,0c-0.1-0.1-0.1-0.2-0.1-0.4l6.3-9l-4.7-10.1c-0.1-0.1,0-0.3,0.1-0.3
+ c0.1-0.1,0.3,0,0.3,0.1l4.7,10.3c0,0.1,0,0.2,0,0.3l-6.4,9.2C3758.9-1325.9,3758.9-1325.8,3758.8-1325.8z"/>
+ <path class="st92" d="M4735.3-1234.8c-0.1,0-0.1,0-0.2,0l-16-5.1c-0.2-0.1-0.3-0.3-0.3-0.5c0-0.1,0.1-0.1,0.1-0.2l12.3-11.5
+ c0.1-0.1,0.2-0.1,0.4-0.1l16,5.1c0.2,0.1,0.3,0.3,0.3,0.5c0,0.1-0.1,0.1-0.1,0.2l-12.3,11.4
+ C4735.4-1234.9,4735.4-1234.8,4735.3-1234.8z"/>
+ <path class="st92" d="M4739-1218.2c-0.1,0-0.1,0-0.2,0l-16-5.1c-0.1,0-0.2-0.1-0.3-0.3l-3.7-16.7c0-0.2,0.1-0.4,0.3-0.5
+ c0.2,0,0.4,0.1,0.5,0.3l3.7,16.4l15.2,4.8l-3.6-16c0-0.2,0.1-0.4,0.3-0.5c0.2,0,0.4,0.1,0.5,0.3l3.7,16.6
+ C4739.3-1218.4,4739.2-1218.2,4739-1218.2z"/>
+ <path class="st92" d="M4739-1218.2c-0.1,0-0.3,0-0.4-0.1c-0.1-0.2-0.1-0.4,0-0.5l12.1-11.3l-3.7-16.4c0-0.2,0.1-0.4,0.3-0.5
+ c0.2,0,0.4,0.1,0.5,0.3l3.7,16.6c0,0.1,0,0.3-0.1,0.4l-12.3,11.5C4739.1-1218.2,4739.1-1218.2,4739-1218.2z"/>
+ <path class="st93" d="M4485.7-1311.8c-0.1,0-0.1-0.1-0.1-0.1l-6.1-14.4c-0.1-0.2,0-0.4,0.2-0.5c0.1,0,0.1,0,0.2,0l15.5,1.7
+ c0.1,0,0.2,0.1,0.3,0.2l6.1,14.4c0.1,0.2,0,0.4-0.2,0.5c-0.1,0-0.1,0-0.2,0l-15.5-1.7C4485.9-1311.8,4485.8-1311.8,4485.7-1311.8z"
+ />
+ <path class="st93" d="M4476.3-1299.1c-0.1,0-0.1-0.1-0.1-0.1l-6.1-14.4c-0.1-0.1,0-0.3,0-0.4l9.5-12.7c0.1-0.2,0.3-0.2,0.5-0.1
+ c0.2,0.1,0.2,0.3,0.1,0.5l-9.4,12.6l5.8,13.6l9.1-12.2c0.1-0.2,0.3-0.2,0.5-0.1c0.2,0.1,15.2,2.4,15.1,2.6l-24.5,10.6
+ C4476.7-1299,4476.4-1299,4476.3-1299.1z"/>
+ <path class="st93" d="M4501.2-1310.6c0.1-0.2,0.3-0.2,0.5-0.1c0.2,0.1,0.2,0.3,0.1,0.5l-9.5,12.7c-0.1,0.1-0.2,0.2-0.3,0.1
+ l-15.5-1.7c-0.1,0-0.1,0-0.2-0.1c-0.1-0.1-0.2-0.2-0.1-0.3c0-0.2,0.2-0.3,0.4-0.3"/>
+ <linearGradient id="SVGID_136_" gradientUnits="userSpaceOnUse" x1="3590.1121" y1="-1232.3169" x2="3623.1516" y2="-1232.3169">
+ <stop offset="0" style="stop-color:#913FFF"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st171" d="M3619.4-1244C3619.4-1244,3619.4-1244,3619.4-1244c0-0.1,0-0.1,0-0.1c0,0,0,0-0.1-0.1c0,0,0,0,0,0
+ c0,0-0.1,0-0.1,0c0,0,0,0,0,0l-16.1-5.2c-0.1,0-0.3,0-0.4,0.1l-12.4,11.5c0,0,0,0,0,0c0,0-0.1,0.1-0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0
+ c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0l3.8,16.8c0,0.1,0.1,0.2,0.3,0.3l16.1,5.1c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2-0.1
+ c0,0,0,0,0,0l12.4-11.5c0.1-0.1,0.1-0.2,0.1-0.4L3619.4-1244z M3594.6-1221l-3.6-15.9l15.3,4.9l3.6,15.9L3594.6-1221z"/>
+ <linearGradient id="SVGID_137_" gradientUnits="userSpaceOnUse" x1="4143.4697" y1="-1310.0045" x2="4165.2061" y2="-1310.0045">
+ <stop offset="0" style="stop-color:#FB3B49"/>
+ <stop offset="0.9988" style="stop-color:#EC3B49"/>
+ </linearGradient>
+ <path class="st172" d="M4165.2-1312.1C4165.2-1312.2,4165.2-1312.2,4165.2-1312.1C4165.2-1312.2,4165.2-1312.2,4165.2-1312.1
+ c0-0.1,0-0.1,0-0.1c0,0,0,0,0,0l-7.1-8.2c-0.1-0.1-0.1-0.1-0.2-0.1l-10.6,2.1c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0
+ c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l-3.6,10.4c0,0.1,0,0.2,0,0.2l7.1,8.2c0,0,0.1,0.1,0.1,0.1c0,0,0.1,0,0.1,0c0,0,0,0,0,0
+ l10.6-2.1c0.1,0,0.2-0.1,0.2-0.2L4165.2-1312.1C4165.2-1312.1,4165.2-1312.1,4165.2-1312.1
+ C4165.2-1312.1,4165.2-1312.1,4165.2-1312.1z M4161.2-1302l-10,2l3.4-9.8l10-2L4161.2-1302z"/>
+ <linearGradient id="SVGID_138_" gradientUnits="userSpaceOnUse" x1="4745.0776" y1="-1342.7601" x2="4765.4556" y2="-1342.7601">
+ <stop offset="0" style="stop-color:#913FFF"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st173" d="M4763.1-1349.9C4763.1-1350,4763.1-1350,4763.1-1349.9C4763.1-1350,4763.1-1350,4763.1-1349.9
+ c0-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0l-9.9-3.2c-0.1,0-0.2,0-0.2,0.1l-7.6,7.1c0,0,0,0,0,0
+ c0,0,0,0-0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0l2.3,10.4c0,0.1,0.1,0.1,0.2,0.2l9.9,3.2
+ c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0l7.6-7.1c0.1-0.1,0.1-0.1,0.1-0.2L4763.1-1349.9z M4747.8-1335.8l-2.2-9.8l9.4,3
+ l2.2,9.8L4747.8-1335.8z"/>
+ <linearGradient id="SVGID_139_" gradientUnits="userSpaceOnUse" x1="1034.4697" y1="137.7498" x2="1063.9042" y2="137.7498">
+ <stop offset="0" style="stop-color:#FB3B49"/>
+ <stop offset="0.9988" style="stop-color:#EC3B49"/>
+ </linearGradient>
+ <path class="st174" d="M1063.9,134.9C1063.9,134.8,1063.9,134.8,1063.9,134.9c0-0.1,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0,0,0,0,0,0
+ l-9.5-11.1c-0.1-0.1-0.2-0.1-0.3-0.1l-14.4,2.9c0,0,0,0,0,0c0,0-0.1,0-0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0
+ c0,0,0,0,0,0l-4.8,14.1c0,0.1,0,0.2,0.1,0.3l9.6,11.1c0,0,0.1,0.1,0.1,0.1c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0l14.4-2.9
+ c0.1,0,0.2-0.1,0.3-0.2l4.8-14C1063.9,134.9,1063.9,134.9,1063.9,134.9C1063.9,134.9,1063.9,134.9,1063.9,134.9z M1058.5,148.6
+ l-13.6,2.7l4.6-13.3l13.6-2.7L1058.5,148.6z"/>
+ <linearGradient id="SVGID_140_" gradientUnits="userSpaceOnUse" x1="412.2302" y1="275.7741" x2="445.2698" y2="275.7741">
+ <stop offset="0" style="stop-color:#913FFF"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st175" d="M441.5,264.1C441.5,264.1,441.5,264.1,441.5,264.1c0-0.1,0-0.1,0-0.1c0,0,0,0-0.1-0.1c0,0,0,0,0,0
+ c0,0-0.1,0-0.1,0c0,0,0,0,0,0l-16.1-5.2c-0.1,0-0.3,0-0.4,0.1l-12.4,11.5c0,0,0,0,0,0c0,0-0.1,0.1-0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0
+ c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0l3.8,16.8c0,0.1,0.1,0.2,0.3,0.3l16.1,5.1c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2-0.1
+ c0,0,0,0,0,0l12.4-11.5c0.1-0.1,0.1-0.2,0.1-0.4L441.5,264.1z M416.7,287.1l-3.6-15.9l15.3,4.9l3.6,15.9L416.7,287.1z"/>
+</g>
+<g id="Layer_2">
+</g>
+</svg>
diff --git a/deps/npm/docs/src/images/background-cubes.svg b/deps/npm/docs/src/images/background-cubes.svg
new file mode 100644
index 0000000000..ff57ef5f8c
--- /dev/null
+++ b/deps/npm/docs/src/images/background-cubes.svg
@@ -0,0 +1,2767 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ viewBox="0 0 1599 192" style="enable-background:new 0 0 1599 192;" xml:space="preserve">
+<style type="text/css">
+ .st0{opacity:0.3;fill:url(#SVGID_1_);}
+ .st1{opacity:0.3;fill:url(#SVGID_2_);}
+ .st2{opacity:0.1;fill:none;stroke:#223839;stroke-miterlimit:10;}
+ .st3{opacity:0.3;fill:#E8D9D9;}
+ .st4{opacity:0.5;fill:url(#SVGID_3_);}
+ .st5{opacity:0.3;fill:url(#SVGID_4_);}
+ .st6{opacity:0.3;fill:url(#SVGID_5_);}
+ .st7{fill:#F6D2C9;}
+ .st8{fill:#FFFFFF;}
+ .st9{fill:#FF2EDD;}
+ .st10{fill:none;stroke:url(#SVGID_6_);stroke-width:3;stroke-miterlimit:10;}
+ .st11{fill:none;stroke:#B3B3B3;stroke-width:0.75;stroke-miterlimit:10;}
+ .st12{fill:none;stroke:url(#SVGID_7_);stroke-miterlimit:10;}
+ .st13{fill:none;stroke:url(#SVGID_8_);stroke-width:3;stroke-miterlimit:10;}
+ .st14{fill:#FB3B49;}
+ .st15{fill:url(#SVGID_9_);}
+ .st16{opacity:0.7;}
+ .st17{fill:url(#SVGID_10_);}
+ .st18{fill:#333333;}
+ .st19{opacity:0.2;fill:#FB3B49;}
+ .st20{opacity:0.3;fill:url(#SVGID_11_);}
+ .st21{fill:none;stroke:url(#SVGID_12_);stroke-width:3;stroke-miterlimit:10;}
+ .st22{fill:url(#SVGID_13_);}
+ .st23{fill:url(#SVGID_14_);}
+ .st24{fill:none;stroke:url(#SVGID_15_);stroke-width:10.069;stroke-miterlimit:10;}
+ .st25{fill:none;stroke:url(#SVGID_16_);stroke-width:10.069;stroke-miterlimit:10;}
+ .st26{fill:none;stroke:url(#SVGID_17_);stroke-width:3;stroke-miterlimit:10;}
+ .st27{clip-path:url(#XMLID_6_);}
+ .st28{opacity:0.3;fill:url(#SVGID_18_);}
+ .st29{fill:none;stroke:url(#SVGID_19_);stroke-width:3;stroke-miterlimit:10;}
+ .st30{fill:url(#SVGID_20_);}
+ .st31{fill:url(#SVGID_21_);}
+ .st32{fill:none;stroke:url(#SVGID_22_);stroke-width:3;stroke-miterlimit:10;}
+ .st33{opacity:0.8;}
+ .st34{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
+ .st35{fill:#7C2EDD;}
+ .st36{fill:none;stroke:url(#SVGID_23_);stroke-width:3;stroke-miterlimit:10;}
+ .st37{fill:none;stroke:url(#SVGID_24_);stroke-width:3;stroke-miterlimit:10;}
+ .st38{fill:none;stroke:#B3B3B3;stroke-miterlimit:10;}
+ .st39{fill:none;stroke:#B3B3B3;stroke-width:1.1228;stroke-miterlimit:10;}
+ .st40{fill:none;stroke:#B3B3B3;stroke-width:1.2168;stroke-miterlimit:10;}
+ .st41{fill:none;stroke:#333333;stroke-miterlimit:10;}
+ .st42{fill:url(#SVGID_25_);}
+ .st43{fill:url(#SVGID_26_);}
+ .st44{fill:url(#SVGID_27_);}
+ .st45{fill:url(#SVGID_28_);}
+ .st46{fill:#231F20;}
+ .st47{fill:none;}
+ .st48{opacity:0.6;fill:url(#SVGID_29_);}
+ .st49{fill:none;stroke:url(#SVGID_30_);stroke-miterlimit:10;}
+ .st50{fill:none;stroke:#B3B3B3;stroke-width:0.7877;stroke-miterlimit:10;}
+ .st51{opacity:0.9;}
+ .st52{opacity:0.1;}
+ .st53{fill:none;stroke:#808080;stroke-miterlimit:10;}
+ .st54{opacity:5.000000e-02;}
+ .st55{fill:none;stroke:#FF00FF;stroke-miterlimit:10;}
+ .st56{fill:url(#SVGID_31_);}
+ .st57{fill:url(#SVGID_32_);}
+ .st58{opacity:0.19;fill:url(#SVGID_33_);}
+ .st59{fill:none;stroke:url(#SVGID_34_);stroke-width:3;stroke-miterlimit:10;}
+ .st60{opacity:0.19;fill:url(#SVGID_35_);}
+ .st61{opacity:0.5;fill:#FFFFFF;}
+ .st62{fill:none;stroke:#333333;stroke-width:2;stroke-miterlimit:10;}
+ .st63{opacity:0.19;fill:url(#SVGID_36_);}
+ .st64{fill:#333333;stroke:#333333;stroke-miterlimit:10;}
+ .st65{opacity:0.19;fill:url(#SVGID_37_);}
+ .st66{fill:none;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
+ .st67{fill:none;stroke:url(#SVGID_38_);stroke-width:3;stroke-miterlimit:10;}
+ .st68{opacity:0.6;fill:url(#SVGID_39_);}
+ .st69{opacity:0.4;fill:url(#SVGID_40_);}
+ .st70{opacity:0.4;fill:url(#SVGID_41_);}
+ .st71{opacity:0.4;fill:url(#SVGID_42_);}
+ .st72{fill:#F2F2F2;}
+ .st73{opacity:0.4;fill:url(#SVGID_43_);}
+ .st74{fill:#413844;stroke:#223839;stroke-miterlimit:10;}
+
+ .st75{fill:#FFFFFF;fill-opacity:0.5;stroke:#223839;stroke-width:1.802;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
+ .st76{fill:url(#SVGID_44_);}
+ .st77{fill:url(#SVGID_45_);}
+ .st78{fill:url(#SVGID_46_);}
+ .st79{fill:url(#SVGID_47_);}
+ .st80{fill:url(#SVGID_48_);}
+ .st81{fill:none;stroke:#223839;stroke-width:2;stroke-miterlimit:10;}
+ .st82{fill:url(#SVGID_49_);}
+ .st83{fill:url(#SVGID_50_);}
+ .st84{fill:url(#SVGID_51_);}
+ .st85{fill:url(#SVGID_52_);}
+ .st86{fill:url(#SVGID_53_);}
+ .st87{fill:url(#SVGID_54_);}
+ .st88{fill:url(#SVGID_55_);}
+ .st89{fill:url(#SVGID_56_);}
+ .st90{fill:url(#SVGID_57_);}
+ .st91{fill:url(#SVGID_58_);}
+ .st92{fill:#FF00FF;}
+ .st93{fill:#7457D9;}
+ .st94{opacity:0.3;fill:url(#SVGID_59_);}
+ .st95{fill:none;stroke:url(#SVGID_60_);stroke-width:3;stroke-miterlimit:10;}
+ .st96{fill:#333333;stroke:#333333;stroke-width:1.0718;stroke-miterlimit:10;}
+ .st97{fill:none;stroke:url(#SVGID_61_);stroke-miterlimit:10;}
+ .st98{fill:#413844;}
+ .st99{fill:none;stroke:#223839;stroke-miterlimit:10;}
+ .st100{opacity:0.6;fill:url(#SVGID_62_);}
+ .st101{opacity:0.4;fill:url(#SVGID_63_);}
+ .st102{opacity:0.4;fill:url(#SVGID_64_);}
+ .st103{opacity:0.4;fill:url(#SVGID_65_);}
+ .st104{opacity:0.4;fill:url(#SVGID_66_);}
+ .st105{fill:url(#SVGID_67_);}
+ .st106{fill:url(#SVGID_68_);}
+ .st107{fill:url(#SVGID_69_);}
+ .st108{fill:url(#SVGID_70_);}
+ .st109{fill:url(#SVGID_71_);}
+ .st110{fill:url(#SVGID_72_);}
+ .st111{fill:url(#SVGID_73_);}
+ .st112{fill:url(#SVGID_74_);}
+ .st113{fill:url(#SVGID_75_);}
+ .st114{fill:url(#SVGID_76_);}
+ .st115{fill:url(#SVGID_77_);}
+ .st116{fill:url(#SVGID_78_);}
+ .st117{fill:url(#SVGID_79_);}
+ .st118{fill:url(#SVGID_80_);}
+ .st119{fill:url(#SVGID_81_);}
+ .st120{fill:none;stroke:#FF00FF;stroke-miterlimit:10;stroke-dasharray:40,2;}
+ .st121{fill:url(#SVGID_82_);stroke:url(#SVGID_83_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st122{fill:url(#SVGID_84_);stroke:url(#SVGID_85_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st123{fill:url(#SVGID_86_);stroke:url(#SVGID_87_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st124{fill:url(#SVGID_88_);}
+ .st125{fill:url(#SVGID_89_);}
+ .st126{fill:url(#SVGID_90_);}
+ .st127{opacity:0.9;fill:url(#SVGID_91_);}
+ .st128{fill:none;stroke:url(#SVGID_92_);stroke-width:3;stroke-miterlimit:10;}
+ .st129{fill:none;stroke:url(#SVGID_93_);stroke-width:3;stroke-miterlimit:10;}
+ .st130{opacity:0.1;fill:none;stroke:#4D4D4D;stroke-miterlimit:10;}
+ .st131{fill:#ED1C24;}
+ .st132{fill:#666666;}
+ .st133{opacity:0.2;fill:#D4BEB8;}
+ .st134{fill:none;stroke:#FB3B49;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
+ .st135{opacity:8.000000e-02;fill:#CC33FF;}
+ .st136{fill:#CC33FF;}
+ .st137{fill:#AF2AF7;}
+ .st138{opacity:0.3;fill:url(#SVGID_94_);}
+ .st139{fill:none;stroke:#F2F2F2;stroke-miterlimit:10;}
+ .st140{fill:url(#SVGID_95_);stroke:url(#SVGID_96_);stroke-width:0.4819;stroke-miterlimit:10;}
+ .st141{fill:url(#SVGID_97_);stroke:url(#SVGID_98_);stroke-width:0.4819;stroke-miterlimit:10;}
+ .st142{fill:url(#SVGID_99_);stroke:url(#SVGID_100_);stroke-width:0.4819;stroke-miterlimit:10;}
+ .st143{fill:none;stroke:#FB3B49;stroke-miterlimit:10;}
+ .st144{fill:url(#SVGID_101_);stroke:url(#SVGID_102_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st145{fill:url(#SVGID_103_);}
+ .st146{fill:url(#SVGID_104_);}
+ .st147{fill:none;stroke:url(#SVGID_105_);stroke-miterlimit:10;}
+ .st148{fill:url(#SVGID_106_);stroke:url(#SVGID_107_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st149{fill:url(#SVGID_108_);stroke:url(#SVGID_109_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st150{fill:url(#SVGID_110_);stroke:url(#SVGID_111_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st151{fill:none;stroke:#FF00FF;stroke-width:0.6009;stroke-miterlimit:10;stroke-dasharray:24.0344,1.2017;}
+ .st152{fill:none;stroke:#FB3B49;stroke-width:0.6009;stroke-miterlimit:10;}
+ .st153{fill:url(#SVGID_112_);stroke:url(#SVGID_113_);stroke-width:0.4458;stroke-miterlimit:10;}
+ .st154{fill:url(#SVGID_114_);}
+ .st155{fill:url(#SVGID_115_);}
+ .st156{fill:url(#SVGID_116_);}
+ .st157{fill:url(#SVGID_117_);}
+ .st158{opacity:0.9;fill:url(#SVGID_118_);}
+ .st159{fill:url(#SVGID_119_);stroke:url(#SVGID_120_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st160{fill:url(#SVGID_121_);stroke:url(#SVGID_122_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st161{fill:url(#SVGID_123_);stroke:url(#SVGID_124_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st162{fill:url(#SVGID_125_);stroke:url(#SVGID_126_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st163{fill:url(#SVGID_127_);}
+ .st164{fill:url(#SVGID_128_);}
+ .st165{opacity:0.9;fill:url(#SVGID_129_);}
+ .st166{fill:url(#SVGID_130_);}
+ .st167{opacity:0.9;fill:url(#SVGID_131_);}
+ .st168{fill:url(#SVGID_132_);stroke:url(#SVGID_133_);stroke-width:0.4458;stroke-miterlimit:10;}
+ .st169{fill:url(#SVGID_134_);}
+ .st170{fill:url(#SVGID_135_);}
+ .st171{opacity:0.9;fill:url(#SVGID_136_);}
+ .st172{fill:url(#SVGID_137_);}
+ .st173{opacity:0.9;fill:url(#SVGID_138_);}
+</style>
+<g id="Layer_1">
+ <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="1187.985" y1="-614.4257" x2="412.015" y2="310.3394">
+ <stop offset="0" style="stop-color:#D4BEB8;stop-opacity:0.5"/>
+ <stop offset="1" style="stop-color:#FFFFFF"/>
+ </linearGradient>
+ <rect x="1" y="-269.5" class="st0" width="1598" height="235"/>
+ <linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="-1922.99" y1="-2216" x2="-2955.01" y2="-986.0863">
+ <stop offset="0" style="stop-color:#D4BEB8"/>
+ <stop offset="1" style="stop-color:#FFFFFF"/>
+ </linearGradient>
+ <rect x="-3238" y="-1978.5" class="st1" width="1598" height="755"/>
+ <path class="st2" d="M1289.4-445.5l-790.9,0c-1.4,0-2.6-1.2-2.6-2.6l0-239.8c0-1.4,1.2-2.6,2.6-2.6l790.9,0c1.4,0,2.6,1.2,2.6,2.6
+ l0,239.8C1292-446.7,1290.8-445.5,1289.4-445.5z"/>
+ <rect x="-4861" y="-1232.5" class="st3" width="1598" height="1797"/>
+ <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="-6479" y1="-1610.5431" x2="-4881" y2="-1610.5431">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st4" points="-4881,-1234.5 -4881,-1986.5 -6479,-1986.5 -6479,-1236.1 "/>
+ <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="-8099" y1="-1708.6636" x2="-6501" y2="-1708.6636">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <polygon class="st5" points="-6501,-1435.3 -6501,-1987.5 -8099,-1987.5 -8099,-1429.8 "/>
+ <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="-8140.6743" y1="-4028.3975" x2="-6461.3257" y2="-3609.689">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <rect x="-8099" y="-4195.5" class="st6" width="1596" height="753"/>
+ <g>
+ <g>
+ <rect x="-9088.6" y="-1436.2" class="st7" width="318" height="1481"/>
+ </g>
+ <g>
+ <rect x="-9096" y="-1443.5" class="st8" width="318" height="1481"/>
+ </g>
+ </g>
+ <rect x="-8054" y="-4234.5" class="st47" width="22" height="22.6"/>
+
+ <text transform="matrix(1 0 0 1 -8048 -4220.3433)" class="st9" style="font-family:'SourceCodeVariable-Roman'; font-size:20px; letter-spacing:1;">❤</text>
+ <text transform="matrix(1 0 0 1 -7088.0918 -4219.2417)"><tspan x="0" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">npm Enterprise Products Solutions Resources</tspan><tspan x="351.5" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:4;"> </tspan><tspan x="360" y="0" style="font-family:'Poppins-Regular'; font-size:14px;"> Docs Support</tspan></text>
+ <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="-8100" y1="-4253.543" x2="-6501" y2="-4253.543">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st10" x1="-8100" y1="-4253.5" x2="-6501" y2="-4253.5"/>
+ <line class="st11" x1="-6500.5" y1="-4197.5" x2="-8100" y2="-4197.5"/>
+ <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="-6104.8535" y1="-1810.7931" x2="-6103.6465" y2="-1810.7931">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st12" x1="-6104" y1="-1810.5" x2="-6104.5" y2="-1811"/>
+ <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="-6724" y1="-4212.543" x2="-6689.5" y2="-4212.543">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st13" x1="-6724" y1="-4212.5" x2="-6689.5" y2="-4212.5"/>
+ <rect x="-7403" y="-3734.5" class="st14" width="276" height="71"/>
+ <g>
+ <linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="-7526.5444" y1="-4047.1931" x2="-7499.4526" y2="-4047.1931">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <polygon class="st15" points="-7521.4,-4028.5 -7526.5,-4034.6 -7511.8,-4047.2 -7526.5,-4059.8 -7521.3,-4065.9 -7499.5,-4047.1
+ "/>
+ </g>
+ <g class="st16">
+ <linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="-7036.0264" y1="-4019.05" x2="-7005.5" y2="-4019.05">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <rect x="-7036" y="-4023.1" class="st17" width="30.5" height="8"/>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="1618" height="1337" xlink:href="5FF73A65D6BEC3DE.png" transform="matrix(1 0 0 1 -8110 -1427.5431)">
+ </image>
+ <g>
+ <rect x="-8101" y="-1413.5" class="st18" width="1600" height="1319"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="431" height="91" xlink:href="5FF73A65D6BEC3E2.png" transform="matrix(1 0 0 1 -7479 -4092.5432)">
+ </image>
+ <g>
+ <g>
+ <path class="st18" d="M-7427.1-4016.2h-13.6l-23.2-51.7v51.7h-11.1v-68.4h15l21.7,49v-49h11.9c0.1,0.1,0.2,0.3,0.2,0.5
+ c0,0.3-0.1,0.6-0.4,1c-0.3,0.4-0.5,1.2-0.6,2.3V-4016.2z"/>
+ <path class="st18" d="M-7411.5-4084.6h23.2c4.1,0,7.6,0.5,10.5,1.6c2.9,1.1,5.3,2.6,7.1,4.4c1.9,1.9,3.2,4,4.1,6.5
+ c0.9,2.5,1.3,5.1,1.3,7.9c0,2.8-0.4,5.4-1.3,7.9c-0.8,2.5-2.2,4.6-4,6.4c-1.8,1.8-4.2,3.3-7,4.3c-2.9,1.1-6.3,1.6-10.2,1.6
+ h-11.2v27.7h-12.5V-4084.6z M-7399-4073.7v19.4h10.3c1.9,0,3.5-0.2,4.9-0.7c1.4-0.5,2.5-1.1,3.3-2c0.9-0.8,1.5-1.8,1.9-3
+ c0.4-1.2,0.6-2.4,0.6-3.7c0-1.5-0.2-2.8-0.7-4c-0.4-1.2-1.1-2.3-2-3.1s-2-1.6-3.3-2.1c-1.3-0.5-2.9-0.8-4.7-0.8H-7399z"/>
+ <path class="st18" d="M-7352.2-4084.6h13l11.5,32.2l11.4-32.3h13.1v68.5h-11.1v-49.6l-9.6,25.8h-8.1l-9.2-25.8v49.6h-11V-4084.6
+ z"/>
+ <path class="st18" d="M-7190.2-4065.2c-0.3-0.1-0.5-0.2-0.6-0.4c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.3-0.1-0.6-0.1-1
+ c0-0.4-0.1-0.8-0.3-1.3c-1-2.3-2.4-4.2-4.2-5.5c-1.8-1.4-4-2-6.7-2c-2.2,0-4.2,0.6-5.9,1.9c-1.8,1.2-3.3,3-4.5,5.2
+ c-1.2,2.2-2.2,4.9-2.9,8.1c-0.7,3.2-1,6.7-1,10.6c0,3.7,0.4,7.2,1.1,10.4c0.7,3.2,1.8,5.9,3.1,8.2c1.3,2.3,2.9,4.1,4.8,5.4
+ c1.9,1.3,3.9,2,6.1,2c2.6,0,5-0.8,7-2.5c2-1.6,3.8-3.9,5.4-6.6l9.3,6c-2.6,4.5-5.7,7.8-9.4,10s-7.7,3.3-12,3.3
+ c-4,0-7.8-0.7-11.2-2.1c-3.4-1.4-6.4-3.6-8.9-6.6c-2.5-3-4.5-6.7-5.9-11.2c-1.4-4.5-2.1-9.7-2.1-15.8c0-4.5,0.4-8.5,1.2-12
+ c0.8-3.5,1.8-6.7,3.1-9.4c1.3-2.7,2.9-5,4.7-6.9c1.8-1.9,3.7-3.4,5.7-4.6c2-1.2,4.1-2.1,6.3-2.6c2.2-0.5,4.3-0.8,6.3-0.8
+ c2.6,0,5,0.4,7.4,1.1c2.3,0.7,4.5,1.8,6.5,3.2c2,1.4,3.8,3,5.3,4.9c1.5,1.9,2.8,4,3.8,6.4L-7190.2-4065.2z"/>
+ <path class="st18" d="M-7120.7-4026.5v10.3h-43.7v-68.4h13.4c0.1,0.1,0.2,0.3,0.2,0.5c0,0.3-0.1,0.6-0.4,1
+ c-0.3,0.4-0.5,1.2-0.6,2.3v54.2H-7120.7z"/>
+ <path class="st18" d="M-7100.9-4084.6h38.2v10.2h-13.3v48.1h13.8v10.1h-39.4v-10.2h13.3v-48h-12.6V-4084.6z"/>
+ </g>
+ </g>
+ </g>
+ <rect x="-7633.6" y="-3930.1" class="st47" width="742.6" height="304.6"/>
+ <text transform="matrix(1 0 0 1 -7633.584 -3907.9143)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">The</tspan><tspan x="61" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:13;"> </tspan><tspan x="81.8" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">intelligent</tspan><tspan x="255.3" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:13;"> </tspan><tspan x="276.1" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">package</tspan><tspan x="424.1" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:13;"> </tspan><tspan x="444.9" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">manager</tspan><tspan x="600.4" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:13;"> </tspan><tspan x="621.2" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">for</tspan><tspan x="668.2" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:13;"> </tspan><tspan x="689" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">the </tspan><tspan x="0" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">Node</tspan><tspan x="87.2" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:7;"> </tspan><tspan x="101.6" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">Javascript</tspan><tspan x="282.2" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:7;"> </tspan><tspan x="296.5" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">Platform.</tspan><tspan x="452.1" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:7;"> </tspan><tspan x="466.5" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">Install</tspan><tspan x="572.3" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:7;"> </tspan><tspan x="586.6" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">stuff</tspan><tspan x="664.1" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:7;"> </tspan><tspan x="678.5" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">and </tspan><tspan x="275.1" y="86" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">get coding!</tspan></text>
+ <rect x="-7396" y="-3727.5" class="st19" width="276" height="71"/>
+
+ <text transform="matrix(1 0 0 1 -7353.0112 -3690.1316)" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">Read Docs</text>
+ <path class="st18" d="M-6496-3507c18.3,18.3-25.9-40-51.8-40c-25.9,0-25.9,40-51.8,40c-25.9,0-25.9-40-51.7-40
+ c-25.9,0-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40s-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40c-25.9,0-25.9,40-51.7,40
+ c-25.9,0-25.9-40-51.7-40c-25.9,0-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40c-25.9,0-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40
+ c-25.9,0-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40c-25.9,0-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40c-25.9,0-25.9,40-51.7,40
+ s-25.9-40-51.7-40s-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40c-25.9,0-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40
+ c-25.9,0-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40s-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40s-25.9,40-51.7,40s-25.9-40-51.7-40
+ s-25.9,40-51.7,40s-25.9-40-51.7-40v1283.5h1603.5C-6496.5-2263.5-6498.4-3509.4-6496-3507z"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="346" height="346" xlink:href="5FF73A65D6BEC3E5.png" transform="matrix(1 0 0 1 -7860 -3397.5432)">
+ </image>
+ <g>
+ <circle class="st8" cx="-7687" cy="-3224.5" r="128"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="346" height="346" xlink:href="5FF73A65D6BEC3E6.png" transform="matrix(1 0 0 1 -7867 -2698.5432)">
+ </image>
+ <g>
+ <circle class="st8" cx="-7694" cy="-2525.5" r="128"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="346" height="346" xlink:href="5FF73A65D6BEC3E4.png" transform="matrix(1 0 0 1 -7044 -2973.5432)">
+ </image>
+ <g>
+ <circle class="st8" cx="-6871" cy="-2800.5" r="128"/>
+ </g>
+ </g>
+ <text transform="matrix(1 0 0 1 -7278.6538 -1736.4655)"><tspan x="0" y="0" style="font-family:'MyriadPro-Regular'; font-size:30px; letter-spacing:1;">❤</tspan><tspan x="16.8" y="0" style="font-family:'MonotypeSorts'; font-size:30px; letter-spacing:1;">,</tspan></text>
+ <linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="-6479" y1="-3883.9431" x2="-4883" y2="-3883.9431">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <path class="st20" d="M-4883-4199.5v630.9c-21-2.9-22.7-23.8-46.8-23.8c-25.9,0-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2
+ s-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2s-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2
+ c-25.9,0-25.9-24.2-51.8-24.2s-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2
+ c-25.9,0-25.9-24.2-51.8-24.2s-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2
+ c-25.9,0-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2
+ c-25.9,0-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2
+ s-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2
+ c-25.9,0-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2c-24.5,0-25.8-21.6-47.8-24v-607.2H-4883z"/>
+ <g>
+
+ <image style="overflow:visible;" width="1608" height="1247" xlink:href="5FF73A65D6BEC3E3.png" transform="matrix(1 0 0 1 -6487 -3578.5432)">
+ </image>
+ <g>
+ <path class="st18" d="M-4883-3546.7v1211.1h-1596v-1234.8c22,2.4,23.3,24,47.8,24c25.9,0,25.9-24.2,51.8-24.2
+ c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2
+ c25.9,0,25.9,24.2,51.8,24.2s25.9-24.2,51.8-24.2c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2
+ c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2
+ c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2
+ s25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2s25.9,24.2,51.8,24.2
+ c25.9,0,25.9-24.2,51.8-24.2c25.9,0,25.9,24.2,51.8,24.2s25.9-24.2,51.8-24.2c25.9,0,25.9,24.2,51.8,24.2
+ c25.9,0,25.9-24.2,51.8-24.2s25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2C-4905.7-3570.5-4904-3549.6-4883-3546.7z"/>
+ </g>
+ </g>
+ <rect x="-6434" y="-4232.5" class="st47" width="22" height="22.6"/>
+
+ <text transform="matrix(1 0 0 1 -6428 -4218.3433)" class="st9" style="font-family:'SourceCodeVariable-Roman'; font-size:20px; letter-spacing:1;">❤</text>
+ <text transform="matrix(1 0 0 1 -5468.0918 -4223.2417)"><tspan x="0" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">npm Enterprise Products Solutions Resources</tspan><tspan x="351.5" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:4;"> </tspan><tspan x="360" y="0" style="font-family:'Poppins-Regular'; font-size:14px;"> Docs Support</tspan></text>
+ <line class="st11" x1="-4880.5" y1="-4199.5" x2="-6480" y2="-4199.5"/>
+ <linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="-5104" y1="-4216.543" x2="-5069.5" y2="-4216.543">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st21" x1="-5104" y1="-4216.5" x2="-5069.5" y2="-4216.5"/>
+ <rect x="-5810.8" y="-3811.5" class="st14" width="230" height="59.2"/>
+ <g>
+ <linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="-5948.5444" y1="-4016.1931" x2="-5921.4526" y2="-4016.1931">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <polygon class="st22" points="-5943.4,-3997.5 -5948.5,-4003.6 -5933.8,-4016.2 -5948.5,-4028.8 -5943.3,-4034.9 -5921.5,-4016.1
+ "/>
+ </g>
+ <g class="st16">
+ <linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="-5458.0264" y1="-3988.05" x2="-5427.5" y2="-3988.05">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <rect x="-5458" y="-3992.1" class="st23" width="30.5" height="8"/>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="431" height="91" xlink:href="5FF73A65D6BEC3ED.png" transform="matrix(1 0 0 1 -5901 -4061.5432)">
+ </image>
+ <g>
+ <g>
+ <path class="st18" d="M-5849.1-3985.2h-13.6l-23.2-51.7v51.7h-11.1v-68.4h15l21.7,49v-49h11.9c0.1,0.1,0.2,0.3,0.2,0.5
+ c0,0.3-0.1,0.6-0.4,1c-0.3,0.4-0.5,1.2-0.6,2.3V-3985.2z"/>
+ <path class="st18" d="M-5833.5-4053.6h23.2c4.1,0,7.6,0.5,10.5,1.6c2.9,1.1,5.3,2.6,7.1,4.4c1.9,1.9,3.2,4,4.1,6.5
+ c0.9,2.5,1.3,5.1,1.3,7.9c0,2.8-0.4,5.4-1.3,7.9c-0.8,2.5-2.2,4.6-4,6.4c-1.8,1.8-4.2,3.3-7,4.3c-2.9,1.1-6.3,1.6-10.2,1.6
+ h-11.2v27.7h-12.5V-4053.6z M-5821-4042.7v19.4h10.3c1.9,0,3.5-0.2,4.9-0.7c1.4-0.5,2.5-1.1,3.3-2c0.9-0.8,1.5-1.8,1.9-3
+ c0.4-1.2,0.6-2.4,0.6-3.7c0-1.5-0.2-2.8-0.7-4c-0.4-1.2-1.1-2.3-2-3.1s-2-1.6-3.3-2.1c-1.3-0.5-2.9-0.8-4.7-0.8H-5821z"/>
+ <path class="st18" d="M-5774.2-4053.6h13l11.5,32.2l11.4-32.3h13.1v68.5h-11.1v-49.6l-9.6,25.8h-8.1l-9.2-25.8v49.6h-11V-4053.6
+ z"/>
+ <path class="st18" d="M-5612.2-4034.2c-0.3-0.1-0.5-0.2-0.6-0.4c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.3-0.1-0.6-0.1-1
+ c0-0.4-0.1-0.8-0.3-1.3c-1-2.3-2.4-4.2-4.2-5.5c-1.8-1.4-4-2-6.7-2c-2.2,0-4.2,0.6-5.9,1.9c-1.8,1.2-3.3,3-4.5,5.2
+ c-1.2,2.2-2.2,4.9-2.9,8.1c-0.7,3.2-1,6.7-1,10.6c0,3.7,0.4,7.2,1.1,10.4c0.7,3.2,1.8,5.9,3.1,8.2c1.3,2.3,2.9,4.1,4.8,5.4
+ c1.9,1.3,3.9,2,6.1,2c2.6,0,5-0.8,7-2.5c2-1.6,3.8-3.9,5.4-6.6l9.3,6c-2.6,4.5-5.7,7.8-9.4,10s-7.7,3.3-12,3.3
+ c-4,0-7.8-0.7-11.2-2.1c-3.4-1.4-6.4-3.6-8.9-6.6c-2.5-3-4.5-6.7-5.9-11.2c-1.4-4.5-2.1-9.7-2.1-15.8c0-4.5,0.4-8.5,1.2-12
+ c0.8-3.5,1.8-6.7,3.1-9.4c1.3-2.7,2.9-5,4.7-6.9c1.8-1.9,3.7-3.4,5.7-4.6c2-1.2,4.1-2.1,6.3-2.6c2.2-0.5,4.3-0.8,6.3-0.8
+ c2.6,0,5,0.4,7.4,1.1c2.3,0.7,4.5,1.8,6.5,3.2c2,1.4,3.8,3,5.3,4.9c1.5,1.9,2.8,4,3.8,6.4L-5612.2-4034.2z"/>
+ <path class="st18" d="M-5542.7-3995.5v10.3h-43.7v-68.4h13.4c0.1,0.1,0.2,0.3,0.2,0.5c0,0.3-0.1,0.6-0.4,1
+ c-0.3,0.4-0.5,1.2-0.6,2.3v54.2H-5542.7z"/>
+ <path class="st18" d="M-5522.9-4053.6h38.2v10.2h-13.3v48.1h13.8v10.1h-39.4v-10.2h13.3v-48h-12.6V-4053.6z"/>
+ </g>
+ </g>
+ </g>
+ <rect x="-6055.6" y="-3921.1" class="st47" width="742.6" height="304.6"/>
+ <text transform="matrix(1 0 0 1 -5908.5601 -3906.3142)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:20px; letter-spacing:1;">The intelligent package manager for the </tspan><tspan x="-75.6" y="31" class="st18" style="font-family:'Poppins-Regular'; font-size:20px; letter-spacing:1;">Node Javascript Platform. Install stuff and get coding!</tspan></text>
+ <rect x="-5805" y="-3805.7" class="st19" width="230" height="59.2"/>
+
+ <text transform="matrix(1 0 0 1 -5754.0112 -3773.1316)" style="font-family:'Poppins-SemiBold'; font-size:20px; letter-spacing:1;">Read Docs</text>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="309" height="304" xlink:href="5FF73A65D6BEC3EE.png" transform="matrix(1 0 0 1 -6305.6226 -3473.1655)">
+ </image>
+ <g>
+ <ellipse class="st8" cx="-6151.2" cy="-3321.1" rx="113.9" ry="111.5"/>
+ </g>
+ </g>
+ <linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="-4883.7075" y1="-3524.4832" x2="-4878" y2="-3524.4832">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <path class="st24" d="M-4878-3524.3c-1.8,0-3.5-0.1-5-0.3"/>
+ <linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="-5673" y1="-989.4235" x2="-5668.4438" y2="-989.4235">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <path class="st25" d="M-5669-989.3c-1.3-0.1-2.6-0.2-4-0.2"/>
+ <linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="-6479" y1="-4253.043" x2="-4880" y2="-4253.043">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st26" x1="-6479" y1="-4253" x2="-4880" y2="-4253"/>
+
+ <text transform="matrix(1 0 0 1 -5958.1777 -3354.8225)" class="st8" style="font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Super Cool</text>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -6250.1777 -3012.8225)" class="st8" style="font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Easy to Use</text>
+ </g>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -5945.1777 -2607.8225)" class="st8" style="font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Ultra Fast</text>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.7;" width="309" height="304" xlink:href="5FF73A65D6BEC3EC.png" transform="matrix(1 0 0 1 -6315.6226 -2745.1655)">
+ </image>
+ <g>
+ <ellipse class="st8" cx="-6161.6" cy="-2593.2" rx="113.9" ry="111.5"/>
+ </g>
+ </g>
+ <text transform="matrix(1 0 0 1 -5959.5654 -3307.093)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-SemiBold'; font-size:20px;">Nunc malesuada suscipit enim at feugiat. Duis id mauris</tspan><tspan x="0" y="36" class="st8" style="font-family:'Poppins-SemiBold'; font-size:20px;">lectus. Donec a sagittis lectus.</tspan></text>
+ <text transform="matrix(1 0 0 1 -6251.5654 -2965.093)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-SemiBold'; font-size:25px;">Sed accumsan vehicula diam vel auctor. Suspendisse</tspan><tspan x="0" y="36" class="st8" style="font-family:'Poppins-SemiBold'; font-size:25px;"> id interdum lectus. Phasellus sed tortor sed dui rutrum </tspan><tspan x="0" y="72" class="st8" style="font-family:'Poppins-SemiBold'; font-size:25px;">vestibulum vitae eget lacus. </tspan></text>
+ <g>
+ <defs>
+ <text id="XMLID_1_" transform="matrix(1 0 0 1 -5949.5654 -2557.093)"><tspan x="0" y="0" style="font-family:'Poppins-SemiBold'; font-size:25px;">Lorem ipsum dolor sit amet, consectetur adipiscing elit. </tspan><tspan x="0" y="36" style="font-family:'Poppins-SemiBold'; font-size:25px;">Sed tempus sapien nibh, et vehicula ipsum cursus non. </tspan></text>
+ </defs>
+ <clipPath id="XMLID_6_">
+ <use xlink:href="#XMLID_1_" style="overflow:visible;"/>
+ </clipPath>
+ <g class="st27">
+
+ <image style="overflow:visible;opacity:0.4;" width="247" height="242" xlink:href="DEBB70B809924F61.png" transform="matrix(1 0 0 1 -5526.0918 -2896.5808)">
+ </image>
+ <g>
+ <ellipse class="st8" cx="-5409.5" cy="-2778.2" rx="113.9" ry="111.5"/>
+ </g>
+ </g>
+ <g class="st27">
+
+ <image style="overflow:visible;opacity:0.5;" width="309" height="304" xlink:href="DEBB70B809924F67.png" transform="matrix(1 0 0 1 -5417.9448 -3063.2302)">
+ </image>
+ <g>
+ <ellipse class="st8" cx="-5263.5" cy="-2911.2" rx="113.9" ry="111.5"/>
+ </g>
+ </g>
+ </g>
+ <linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="-5362" y1="-2955.0432" x2="-5076" y2="-2955.0432">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <circle class="st28" cx="-5219" cy="-2955" r="143"/>
+ <circle class="st8" cx="-5219" cy="-2955" r="134"/>
+ <rect x="-8054" y="-2020.5" class="st47" width="22" height="22.6"/>
+
+ <text transform="matrix(1 0 0 1 -8048 -2006.3434)" class="st9" style="font-family:'SourceCodeVariable-Roman'; font-size:20px; letter-spacing:1;">❤</text>
+ <text transform="matrix(1 0 0 1 -7088.0918 -2011.2418)"><tspan x="0" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">npm Enterprise Products Solutions Resources</tspan><tspan x="351.5" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:4;"> </tspan><tspan x="360" y="0" style="font-family:'Poppins-Regular'; font-size:14px;"> Docs Support</tspan></text>
+ <line class="st11" x1="-6500.5" y1="-1987.5" x2="-8100" y2="-1987.5"/>
+ <linearGradient id="SVGID_19_" gradientUnits="userSpaceOnUse" x1="-6724" y1="-2004.5431" x2="-6689.5" y2="-2004.5431">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st29" x1="-6724" y1="-2004.5" x2="-6689.5" y2="-2004.5"/>
+ <rect x="-7430.8" y="-1599.5" class="st14" width="230" height="59.2"/>
+ <g>
+ <linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="-7568.5444" y1="-1804.193" x2="-7541.4526" y2="-1804.193">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <polygon class="st30" points="-7563.4,-1785.5 -7568.5,-1791.6 -7553.8,-1804.2 -7568.5,-1816.8 -7563.3,-1822.9 -7541.5,-1804.1
+ "/>
+ </g>
+ <g class="st16">
+ <linearGradient id="SVGID_21_" gradientUnits="userSpaceOnUse" x1="-7078.0264" y1="-1776.0499" x2="-7047.5" y2="-1776.0499">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <rect x="-7078" y="-1780" class="st31" width="30.5" height="8"/>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="431" height="91" xlink:href="DEBB70B809924F60.png" transform="matrix(1 0 0 1 -7521 -1849.5431)">
+ </image>
+ <g>
+ <g>
+ <path class="st18" d="M-7469.1-1773.2h-13.6l-23.2-51.7v51.7h-11.1v-68.4h15l21.7,49v-49h11.9c0.1,0.1,0.2,0.3,0.2,0.5
+ c0,0.3-0.1,0.6-0.4,1c-0.3,0.4-0.5,1.2-0.6,2.3V-1773.2z"/>
+ <path class="st18" d="M-7453.5-1841.6h23.2c4.1,0,7.6,0.5,10.5,1.6c2.9,1.1,5.3,2.6,7.1,4.4c1.9,1.9,3.2,4,4.1,6.5
+ c0.9,2.5,1.3,5.1,1.3,7.9c0,2.8-0.4,5.4-1.3,7.9c-0.8,2.5-2.2,4.6-4,6.4c-1.8,1.8-4.2,3.3-7,4.3c-2.9,1.1-6.3,1.6-10.2,1.6
+ h-11.2v27.7h-12.5V-1841.6z M-7441-1830.7v19.4h10.3c1.9,0,3.5-0.2,4.9-0.7c1.4-0.5,2.5-1.1,3.3-2c0.9-0.8,1.5-1.8,1.9-3
+ c0.4-1.2,0.6-2.4,0.6-3.7c0-1.5-0.2-2.8-0.7-4c-0.4-1.2-1.1-2.3-2-3.1s-2-1.6-3.3-2.1c-1.3-0.5-2.9-0.8-4.7-0.8H-7441z"/>
+ <path class="st18" d="M-7394.2-1841.6h13l11.5,32.2l11.4-32.3h13.1v68.5h-11.1v-49.6l-9.6,25.8h-8.1l-9.2-25.8v49.6h-11V-1841.6
+ z"/>
+ <path class="st18" d="M-7232.2-1822.2c-0.3-0.1-0.5-0.2-0.6-0.4c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.3-0.1-0.6-0.1-1
+ c0-0.4-0.1-0.8-0.3-1.3c-1-2.3-2.4-4.2-4.2-5.5c-1.8-1.4-4-2-6.7-2c-2.2,0-4.2,0.6-5.9,1.9c-1.8,1.2-3.3,3-4.5,5.2
+ c-1.2,2.2-2.2,4.9-2.9,8.1c-0.7,3.2-1,6.7-1,10.6c0,3.7,0.4,7.2,1.1,10.4c0.7,3.2,1.8,5.9,3.1,8.2c1.3,2.3,2.9,4.1,4.8,5.4
+ c1.9,1.3,3.9,2,6.1,2c2.6,0,5-0.8,7-2.5c2-1.6,3.8-3.9,5.4-6.6l9.3,6c-2.6,4.5-5.7,7.8-9.4,10s-7.7,3.3-12,3.3
+ c-4,0-7.8-0.7-11.2-2.1c-3.4-1.4-6.4-3.6-8.9-6.6c-2.5-3-4.5-6.7-5.9-11.2c-1.4-4.5-2.1-9.7-2.1-15.8c0-4.5,0.4-8.5,1.2-12
+ c0.8-3.5,1.8-6.7,3.1-9.4c1.3-2.7,2.9-5,4.7-6.9c1.8-1.9,3.7-3.4,5.7-4.6c2-1.2,4.1-2.1,6.3-2.6c2.2-0.5,4.3-0.8,6.3-0.8
+ c2.6,0,5,0.4,7.4,1.1c2.3,0.7,4.5,1.8,6.5,3.2c2,1.4,3.8,3,5.3,4.9c1.5,1.9,2.8,4,3.8,6.4L-7232.2-1822.2z"/>
+ <path class="st18" d="M-7162.7-1783.5v10.3h-43.7v-68.4h13.4c0.1,0.1,0.2,0.3,0.2,0.5c0,0.3-0.1,0.6-0.4,1
+ c-0.3,0.4-0.5,1.2-0.6,2.3v54.2H-7162.7z"/>
+ <path class="st18" d="M-7142.9-1841.6h38.2v10.2h-13.3v48.1h13.8v10.1h-39.4v-10.2h13.3v-48h-12.6V-1841.6z"/>
+ </g>
+ </g>
+ </g>
+ <rect x="-7675.6" y="-1709.1" class="st47" width="742.6" height="304.6"/>
+ <text transform="matrix(1 0 0 1 -7528.5601 -1694.3141)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:20px; letter-spacing:1;">The intelligent package manager for the </tspan><tspan x="-75.6" y="31" class="st18" style="font-family:'Poppins-Regular'; font-size:20px; letter-spacing:1;">Node Javascript Platform. Install stuff and get coding!</tspan></text>
+ <rect x="-7425" y="-1593.7" class="st19" width="230" height="59.2"/>
+
+ <text transform="matrix(1 0 0 1 -7374.0112 -1561.1315)" style="font-family:'Poppins-SemiBold'; font-size:20px; letter-spacing:1;">Read Docs</text>
+ <g class="st16">
+
+ <image style="overflow:visible;opacity:0.5;" width="309" height="304" xlink:href="DEBB70B809924F63.png" transform="matrix(1 0 0 1 -7914.6226 -1250.1655)">
+ </image>
+ <g>
+ <ellipse class="st8" cx="-7760.2" cy="-1098.1" rx="113.9" ry="111.5"/>
+ </g>
+ </g>
+ <linearGradient id="SVGID_22_" gradientUnits="userSpaceOnUse" x1="-8099" y1="-2041.0431" x2="-6500" y2="-2041.0431">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st32" x1="-8099" y1="-2041" x2="-6500" y2="-2041"/>
+
+ <text transform="matrix(1 0 0 1 -7567.1777 -1144.8224)" style="opacity:0.8;fill:#FFFFFF; font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Super Cool</text>
+ <g class="st33">
+
+ <text transform="matrix(1 0 0 1 -7859.1777 -789.8224)" class="st8" style="font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Easy to Use</text>
+ </g>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -7554.1777 -384.8224)" class="st8" style="font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Ultra Fast</text>
+ </g>
+ <text transform="matrix(1 0 0 1 -7568.5654 -1097.0929)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Regular'; font-size:20px;">Nunc malesuada suscipit enim at feugiat. Duis id mauris</tspan><tspan x="0" y="36" class="st8" style="font-family:'Poppins-Regular'; font-size:20px;">lectus. Donec a sagittis lectus.</tspan></text>
+ <text transform="matrix(1 0 0 1 -7860.5654 -742.093)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Regular'; font-size:20px;">Sed accumsan vehicula diam vel auctor. Suspendisse id </tspan><tspan x="0" y="36" class="st8" style="font-family:'Poppins-Regular'; font-size:20px;">interdum lectus. Phasellus sed tortor sed dui rutrum vestibulum vitae </tspan><tspan x="0" y="72" class="st8" style="font-family:'Poppins-Regular'; font-size:20px;">eget lacus. </tspan></text>
+ <text id="XMLID_2_" transform="matrix(1 0 0 1 -7558.5654 -334.0929)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Regular'; font-size:20px;">Lorem ipsum dolor sit amet, consectetur adipiscing elit. </tspan><tspan x="0" y="36" class="st8" style="font-family:'Poppins-Regular'; font-size:20px;">Sed tempus sapien nibh, et vehicula ipsum cursus non. </tspan></text>
+ <circle class="st18" cx="-6145" cy="-976.5" r="143"/>
+ <g class="st33">
+ <path class="st8" d="M-6768.8-677.5H-6890V-790h121.2V-677.5z M-6777.5-755.4h-103.8v69.2h103.8V-755.4z M-6777.5-764.1v-17.3
+ h-103.8v17.3H-6777.5z"/>
+ <circle class="st34" cx="-6873.4" cy="-772.7" r="3.6"/>
+ <circle class="st34" cx="-6861.9" cy="-772.7" r="3.6"/>
+ <circle class="st34" cx="-6850.3" cy="-772.7" r="3.6"/>
+ <path class="st8" d="M-6834.3-721l-20.8,21.9l-6.3-6l15.2-16l-15.2-16.3l6.3-5.9C-6855.1-743.2-6834.3-721-6834.3-721z"/>
+ <path class="st8" d="M-6829.4-707.8h30.3v8.7h-30.3V-707.8z"/>
+ </g>
+
+ <text transform="matrix(1 0 0 1 -7556.1777 -1302.8224)" class="st8" style="font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Why use NPM CLI?</text>
+ <rect x="-6432" y="-2021.5" class="st47" width="22" height="22.6"/>
+
+ <text transform="matrix(1 0 0 1 -6426 -2007.3434)" class="st35" style="font-family:'SourceCodeVariable-Roman'; font-size:20px; letter-spacing:1;">❤</text>
+ <text transform="matrix(1 0 0 1 -5466.0918 -2008.2418)"><tspan x="0" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">npm Enterprise Products Solutions Resources</tspan><tspan x="351.5" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:4;"> </tspan><tspan x="360" y="0" style="font-family:'Poppins-Regular'; font-size:14px;"> Docs Support</tspan></text>
+ <linearGradient id="SVGID_23_" gradientUnits="userSpaceOnUse" x1="-6480" y1="-2041.0431" x2="-4880" y2="-2041.0431">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <line class="st36" x1="-6480" y1="-2041" x2="-4880" y2="-2041"/>
+ <linearGradient id="SVGID_24_" gradientUnits="userSpaceOnUse" x1="-5102" y1="-2001.5431" x2="-5067.5" y2="-2001.5431">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st37" x1="-5102" y1="-2001.5" x2="-5067.5" y2="-2001.5"/>
+ <line class="st11" x1="-4878.5" y1="-1985.5" x2="-6478" y2="-1985.5"/>
+ <circle class="st8" cx="-6145" cy="-976.5" r="125"/>
+ <g class="st16">
+
+ <image style="overflow:visible;opacity:0.5;" width="309" height="304" xlink:href="DEBB70B809924F7F.png" transform="matrix(1 0 0 1 -6991.8604 -885.184)">
+ </image>
+ <g>
+ <ellipse class="st8" cx="-6837.4" cy="-733.2" rx="113.9" ry="111.5"/>
+ </g>
+ </g>
+
+ <text transform="matrix(1 0 0 1 -5833.1777 -1053.8224)" class="st18" style="font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Why use this?</text>
+ <line class="st38" x1="-5573.5" y1="-922" x2="-5575.6" y2="-922"/>
+ <line class="st38" x1="-6168.3" y1="-922" x2="-6170.5" y2="-922"/>
+ <line class="st39" x1="-5146" y1="-641.6" x2="-5148.4" y2="-641.6"/>
+ <line class="st40" x1="-6111.6" y1="-1897.9" x2="-6114.4" y2="-1897.9"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="930" height="551" xlink:href="DEBB70B809924F62.png" transform="matrix(1 0 0 1 -6164.3643 -1955.9076)">
+ </image>
+ <g>
+ <path class="st18" d="M-5271.8-1915.2v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h849.6
+ C-5273.1-1918.2-5271.8-1916.8-5271.8-1915.2z"/>
+ <path class="st41" d="M-5271.8-1915.2v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h849.6
+ C-5273.1-1918.2-5271.8-1916.8-5271.8-1915.2z"/>
+ </g>
+ </g>
+ <line class="st40" x1="-5262" y1="-1901.8" x2="-5264.5" y2="-1901.8"/>
+ <line class="st40" x1="-6058.1" y1="-1822.7" x2="-6060.8" y2="-1822.7"/>
+ <line class="st40" x1="-6089.8" y1="-1850.5" x2="-6092.5" y2="-1850.5"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="931" height="551" xlink:href="DEBB70B809924F65.png" transform="matrix(1 0 0 1 -6132.3643 -1900.9076)">
+ </image>
+ <g>
+ <path class="st18" d="M-5239.1-1860.9v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h849.6
+ C-5240.4-1863.9-5239.1-1862.5-5239.1-1860.9z"/>
+ <path class="st41" d="M-5239.1-1860.9v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h849.6
+ C-5240.4-1863.9-5239.1-1862.5-5239.1-1860.9z"/>
+ </g>
+ </g>
+ <g>
+ <path class="st8" d="M-5239.1-1860.6v21.7c0,1.7-1.4,3-3,3h-849.6c-1.6,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h849.6
+ C-5240.4-1863.6-5239.1-1862.2-5239.1-1860.6z"/>
+ <path class="st41" d="M-5239.1-1860.6v21.7c0,1.7-1.4,3-3,3h-849.6c-1.6,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h849.6
+ C-5240.4-1863.6-5239.1-1862.2-5239.1-1860.6z"/>
+ </g>
+ <line class="st40" x1="-5229.1" y1="-1843.4" x2="-5231.7" y2="-1843.4"/>
+ <line class="st40" x1="-5893.2" y1="-1764.3" x2="-5895.9" y2="-1764.3"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="931" height="551" xlink:href="DEBB70B809924F66.png" transform="matrix(1 0 0 1 -6098.3643 -1841.9076)">
+ </image>
+ <g>
+ <path class="st18" d="M-5205.4-1801.7v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h849.6
+ C-5206.8-1804.7-5205.4-1803.4-5205.4-1801.7z"/>
+ <path class="st41" d="M-5205.4-1801.7v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h849.6
+ C-5206.8-1804.7-5205.4-1803.4-5205.4-1801.7z"/>
+ </g>
+ </g>
+ <line class="st40" x1="-5185.3" y1="-1786.2" x2="-5187.9" y2="-1786.2"/>
+ <g>
+ <g class="st16">
+ <linearGradient id="SVGID_25_" gradientUnits="userSpaceOnUse" x1="-5415.0264" y1="-1650.0499" x2="-5384.5" y2="-1650.0499">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <rect x="-5415" y="-1654" class="st42" width="30.5" height="8"/>
+ </g>
+ <g>
+ <linearGradient id="SVGID_26_" gradientUnits="userSpaceOnUse" x1="-5905.5444" y1="-1678.193" x2="-5878.4526" y2="-1678.193">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <polygon class="st43" points="-5900.4,-1659.5 -5905.5,-1665.6 -5890.8,-1678.2 -5905.5,-1690.8 -5900.3,-1696.9
+ -5878.5,-1678.1 "/>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="425" height="85" xlink:href="DEBB70B809924F64.png" transform="matrix(1 0 0 1 -5855 -1720.5431)">
+ </image>
+ <g>
+ <g>
+ <path class="st8" d="M-5806.1-1647.2h-13.6l-23.2-51.7v51.7h-11.1v-68.4h15l21.7,49v-49h11.9c0.1,0.1,0.2,0.3,0.2,0.5
+ c0,0.3-0.1,0.6-0.4,1c-0.3,0.4-0.5,1.2-0.6,2.3V-1647.2z"/>
+ <path class="st8" d="M-5790.5-1715.6h23.2c4.1,0,7.6,0.5,10.5,1.6c2.9,1.1,5.3,2.6,7.1,4.4c1.9,1.9,3.2,4,4.1,6.5
+ c0.9,2.5,1.3,5.1,1.3,7.9c0,2.8-0.4,5.4-1.3,7.9c-0.8,2.5-2.2,4.6-4,6.4c-1.8,1.8-4.2,3.3-7,4.3c-2.9,1.1-6.3,1.6-10.2,1.6
+ h-11.2v27.7h-12.5V-1715.6z M-5778-1704.7v19.4h10.3c1.9,0,3.5-0.2,4.9-0.7c1.4-0.5,2.5-1.1,3.3-2c0.9-0.8,1.5-1.8,1.9-3
+ c0.4-1.2,0.6-2.4,0.6-3.7c0-1.5-0.2-2.8-0.7-4c-0.4-1.2-1.1-2.3-2-3.1s-2-1.6-3.3-2.1c-1.3-0.5-2.9-0.8-4.7-0.8H-5778z"/>
+ <path class="st8" d="M-5731.2-1715.6h13l11.5,32.2l11.4-32.3h13.1v68.5h-11.1v-49.6l-9.6,25.8h-8.1l-9.2-25.8v49.6h-11V-1715.6
+ z"/>
+ <path class="st8" d="M-5569.2-1696.2c-0.3-0.1-0.5-0.2-0.6-0.4c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.3-0.1-0.6-0.1-1
+ c0-0.4-0.1-0.8-0.3-1.3c-1-2.3-2.4-4.2-4.2-5.5c-1.8-1.4-4-2-6.7-2c-2.2,0-4.2,0.6-5.9,1.9c-1.8,1.2-3.3,3-4.5,5.2
+ c-1.2,2.2-2.2,4.9-2.9,8.1c-0.7,3.2-1,6.7-1,10.6c0,3.7,0.4,7.2,1.1,10.4c0.7,3.2,1.8,5.9,3.1,8.2c1.3,2.3,2.9,4.1,4.8,5.4
+ c1.9,1.3,3.9,2,6.1,2c2.6,0,5-0.8,7-2.5c2-1.6,3.8-3.9,5.4-6.6l9.3,6c-2.6,4.5-5.7,7.8-9.4,10s-7.7,3.3-12,3.3
+ c-4,0-7.8-0.7-11.2-2.1c-3.4-1.4-6.4-3.6-8.9-6.6c-2.5-3-4.5-6.7-5.9-11.2c-1.4-4.5-2.1-9.7-2.1-15.8c0-4.5,0.4-8.5,1.2-12
+ c0.8-3.5,1.8-6.7,3.1-9.4c1.3-2.7,2.9-5,4.7-6.9c1.8-1.9,3.7-3.4,5.7-4.6c2-1.2,4.1-2.1,6.3-2.6c2.2-0.5,4.3-0.8,6.3-0.8
+ c2.6,0,5,0.4,7.4,1.1c2.3,0.7,4.5,1.8,6.5,3.2c2,1.4,3.8,3,5.3,4.9c1.5,1.9,2.8,4,3.8,6.4L-5569.2-1696.2z"/>
+ <path class="st8" d="M-5499.7-1657.5v10.3h-43.7v-68.4h13.4c0.1,0.1,0.2,0.3,0.2,0.5c0,0.3-0.1,0.6-0.4,1
+ c-0.3,0.4-0.5,1.2-0.6,2.3v54.2H-5499.7z"/>
+ <path class="st8" d="M-5479.9-1715.6h38.2v10.2h-13.3v48.1h13.8v10.1h-39.4v-10.2h13.3v-48h-12.6V-1715.6z"/>
+ </g>
+ </g>
+ </g>
+ <rect x="-5883.7" y="-1581.1" class="st47" width="489.6" height="304.6"/>
+ <text transform="matrix(1 0 0 1 -5883.7363 -1566.3141)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">The</tspan><tspan x="40.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:8;"> </tspan><tspan x="54" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">intelligent</tspan><tspan x="167.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:8;"> </tspan><tspan x="181.3" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">package</tspan><tspan x="279.3" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:8;"> </tspan><tspan x="293.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">manager</tspan><tspan x="396.1" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:8;"> </tspan><tspan x="409.9" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">for</tspan><tspan x="440.6" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:8;"> </tspan><tspan x="454.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">the </tspan><tspan x="0" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Node</tspan><tspan x="57.9" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:4;"> </tspan><tspan x="67.8" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Javascript</tspan><tspan x="186.4" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:4;"> </tspan><tspan x="196.3" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Platform.</tspan><tspan x="298" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:4;"> </tspan><tspan x="307.9" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Install</tspan><tspan x="376.8" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:4;"> </tspan><tspan x="386.8" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">stuff</tspan><tspan x="437.1" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:4;"> </tspan><tspan x="447.1" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">and </tspan><tspan x="181.2" y="62" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">get coding!</tspan></text>
+ <g>
+ <rect x="-5752.7" y="-1448.5" class="st14" width="230" height="59.2"/>
+ <rect x="-5746.8" y="-1442.7" class="st19" width="230" height="59.2"/>
+
+ <text transform="matrix(1 0 0 1 -5695.8589 -1410.1315)" style="font-family:'Poppins-SemiBold'; font-size:20px; letter-spacing:1;">Read Docs</text>
+ </g>
+ </g>
+ <g>
+ <path class="st8" d="M-5272.1-1915.6v21.7c0,1.7-1.4,3-3,3h-849.6c-1.6,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h849.6
+ C-5273.4-1918.6-5272.1-1917.2-5272.1-1915.6z"/>
+ <path class="st41" d="M-5272.1-1915.6v21.7c0,1.7-1.4,3-3,3h-849.6c-1.6,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h849.6
+ C-5273.4-1918.6-5272.1-1917.2-5272.1-1915.6z"/>
+ </g>
+ <g>
+ <path class="st8" d="M-5205.1-1801.6v21.7c0,1.7-1.4,3-3,3h-849.6c-1.6,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h849.6
+ C-5206.4-1804.6-5205.1-1803.2-5205.1-1801.6z"/>
+ <path class="st41" d="M-5205.1-1801.6v21.7c0,1.7-1.4,3-3,3h-849.6c-1.6,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h849.6
+ C-5206.4-1804.6-5205.1-1803.2-5205.1-1801.6z"/>
+ </g>
+ <linearGradient id="SVGID_27_" gradientUnits="userSpaceOnUse" x1="-5431" y1="-741.5432" x2="-5145" y2="-741.5432">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <circle class="st44" cx="-5288" cy="-741.5" r="143"/>
+ <circle class="st8" cx="-5288" cy="-741.5" r="125"/>
+ <linearGradient id="SVGID_28_" gradientUnits="userSpaceOnUse" x1="-6146" y1="-404.5431" x2="-5860" y2="-404.5431">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <circle class="st45" cx="-6003" cy="-404.5" r="143"/>
+ <circle class="st8" cx="-6003" cy="-404.5" r="125"/>
+ <g>
+ <g>
+ <path class="st46" d="M-6396.9-2007.5h6.4v-9.7h3.2v9.7h3.2v-13h-12.8V-2007.5z M-6366.2-2020.5v13h6.4v-9.7h3.2v9.7h3.2v-9.7
+ h3.2v9.7h3.2v-13H-6366.2L-6366.2-2020.5z M-6375.2-2017.2h3.2v6.5h-3.2V-2017.2z M-6381.6-2004.3h6.4v-3.2h6.4v-13h-12.8
+ V-2004.3z"/>
+ <rect x="-6396.9" y="-2020.5" class="st47" width="49.9" height="16.2"/>
+ </g>
+ <polygon class="st46" points="-6331.9,-2017.3 -6331.9,-2011 -6325.8,-2011 -6325.8,-2007.9 -6332,-2007.9 -6338.3,-2007.9
+ -6338.2,-2020.5 -6325.8,-2020.5 -6325.8,-2017.4 "/>
+ <rect x="-6323.2" y="-2020.5" class="st46" width="6.4" height="12.9"/>
+
+ <rect x="-6317.3" y="-2013.9" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 -8324.8926 4306.6318)" class="st46" width="3.1" height="9.5"/>
+
+ <rect x="-6296.1" y="-2012.5" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 -8303.5234 4286.77)" class="st46" width="2" height="8.3"/>
+ <rect x="-6309.1" y="-2020.5" class="st46" width="6.4" height="12.9"/>
+ </g>
+ <linearGradient id="SVGID_29_" gradientUnits="userSpaceOnUse" x1="-4859" y1="-1607.0431" x2="-3261" y2="-1607.0431">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.1444" style="stop-color:#FF4B01"/>
+ <stop offset="0.7119" style="stop-color:#C12127"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st48" points="-3261,-1227.5 -3261,-1986.5 -4859,-1986.5 -4859,-1229.1 "/>
+ <linearGradient id="SVGID_30_" gradientUnits="userSpaceOnUse" x1="-4462.8535" y1="-1804.7931" x2="-4461.6465" y2="-1804.7931">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st49" x1="-4462" y1="-1804.5" x2="-4462.5" y2="-1805"/>
+ <rect x="-4812" y="-2022.5" class="st47" width="22" height="22.6"/>
+
+ <text transform="matrix(1 0 0 1 -4806 -2008.3434)" class="st35" style="font-family:'SourceCodeVariable-Roman'; font-size:20px; letter-spacing:1;">❤</text>
+ <text transform="matrix(1 0 0 1 -3653.0918 -2007.2418)"><tspan x="0" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">Configuring NPM</tspan><tspan x="116" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:24;"> </tspan><tspan x="144" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">Using NPM</tspan><tspan x="216.4" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:31;"> </tspan><tspan x="252" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">CLI Commands</tspan><tspan x="359.8" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:-3;"> </tspan></text>
+ <line class="st11" x1="-3258.5" y1="-1986.5" x2="-4858" y2="-1986.5"/>
+ <line class="st50" x1="-4132.2" y1="-1005.2" x2="-4133.9" y2="-1005.2"/>
+ <line class="st38" x1="-4548.3" y1="-982" x2="-4550.5" y2="-982"/>
+ <line class="st39" x1="-3526" y1="-701.6" x2="-3528.4" y2="-701.6"/>
+ <line class="st40" x1="-4469.6" y1="-1891.9" x2="-4472.4" y2="-1891.9"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="930" height="551" xlink:href="DEBB70B809924F6C.png" transform="matrix(1 0 0 1 -4610.3643 -1969.9076)">
+ </image>
+ <g>
+ <path class="st18" d="M-3717.8-1929.2v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h849.6
+ C-3719.1-1932.2-3717.8-1930.8-3717.8-1929.2z"/>
+ <path class="st41" d="M-3717.8-1929.2v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h849.6
+ C-3719.1-1932.2-3717.8-1930.8-3717.8-1929.2z"/>
+ </g>
+ </g>
+ <line class="st40" x1="-3620" y1="-1895.8" x2="-3622.5" y2="-1895.8"/>
+ <line class="st40" x1="-4416.1" y1="-1816.7" x2="-4418.8" y2="-1816.7"/>
+ <line class="st40" x1="-4447.8" y1="-1844.5" x2="-4450.5" y2="-1844.5"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="931" height="551" xlink:href="DEBB70B809924F84.png" transform="matrix(1 0 0 1 -4556.3643 -1894.9076)">
+ </image>
+ <g>
+ <path class="st18" d="M-3663.1-1854.9v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h849.6
+ C-3664.4-1857.9-3663.1-1856.5-3663.1-1854.9z"/>
+ <path class="st41" d="M-3663.1-1854.9v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h849.6
+ C-3664.4-1857.9-3663.1-1856.5-3663.1-1854.9z"/>
+ </g>
+ </g>
+ <g class="st51">
+ <path class="st8" d="M-3663.1-1854.6v21.7c0,1.7-1.3,3-3,3h-849.6c-1.6,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h849.6
+ C-3664.4-1857.6-3663.1-1856.2-3663.1-1854.6z"/>
+ <path class="st41" d="M-3663.1-1854.6v21.7c0,1.7-1.3,3-3,3h-849.6c-1.6,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h849.6
+ C-3664.4-1857.6-3663.1-1856.2-3663.1-1854.6z"/>
+ </g>
+ <line class="st40" x1="-3587.1" y1="-1837.4" x2="-3589.7" y2="-1837.4"/>
+ <line class="st40" x1="-4251.2" y1="-1758.3" x2="-4253.9" y2="-1758.3"/>
+ <g class="st52">
+ <line class="st53" x1="-4859.5" y1="-1986.2" x2="-3258.5" y2="-1986.2"/>
+ <line class="st53" x1="-4859.4" y1="-1796.2" x2="-3258.4" y2="-1796.2"/>
+ <line class="st53" x1="-4859.2" y1="-1606.2" x2="-3258.2" y2="-1606.2"/>
+ <line class="st53" x1="-4859.1" y1="-1416.1" x2="-3258.1" y2="-1416.1"/>
+ <line class="st53" x1="-4859" y1="-1226.1" x2="-3258" y2="-1226.1"/>
+ <line class="st53" x1="-4858.8" y1="-1036" x2="-3257.8" y2="-1036"/>
+ <line class="st53" x1="-4858.7" y1="-846" x2="-3257.7" y2="-846"/>
+ <line class="st53" x1="-4858.5" y1="-655.9" x2="-3257.5" y2="-655.9"/>
+ <line class="st53" x1="-4858.4" y1="-465.9" x2="-3257.4" y2="-465.9"/>
+ <line class="st53" x1="-4858.3" y1="-275.8" x2="-3257.3" y2="-275.8"/>
+ <line class="st53" x1="-4858.1" y1="-85.8" x2="-3257.1" y2="-85.8"/>
+ <line class="st53" x1="-4858" y1="104.3" x2="-3257" y2="104.3"/>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="931" height="551" xlink:href="DEBB70B809924F87.png" transform="matrix(1 0 0 1 -4487.3643 -1802.9076)">
+ </image>
+ <g>
+ <path class="st18" d="M-3594.4-1762.7v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h849.6
+ C-3595.8-1765.7-3594.4-1764.4-3594.4-1762.7z"/>
+ <path class="st41" d="M-3594.4-1762.7v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h849.6
+ C-3595.8-1765.7-3594.4-1764.4-3594.4-1762.7z"/>
+ </g>
+ </g>
+ <line class="st40" x1="-3543.3" y1="-1780.2" x2="-3545.9" y2="-1780.2"/>
+ <g class="st54">
+ <line class="st55" x1="-4858" y1="-1980.5" x2="-4858" y2="154.5"/>
+ <line class="st55" x1="-4658.4" y1="-1981" x2="-4658.4" y2="154"/>
+ <line class="st55" x1="-4458.9" y1="-1981.5" x2="-4458.9" y2="153.5"/>
+ <line class="st55" x1="-4259.3" y1="-1982" x2="-4259.3" y2="153"/>
+ <line class="st55" x1="-4059.8" y1="-1982.5" x2="-4059.8" y2="152.5"/>
+ <line class="st55" x1="-3860.2" y1="-1983" x2="-3860.2" y2="152"/>
+ <line class="st55" x1="-3660.6" y1="-1983.5" x2="-3660.6" y2="151.5"/>
+ <line class="st55" x1="-3461.1" y1="-1984" x2="-3461.1" y2="151"/>
+ <line class="st55" x1="-3261.5" y1="-1984.5" x2="-3261.5" y2="150.5"/>
+ </g>
+ <g>
+ <g class="st16">
+ <linearGradient id="SVGID_31_" gradientUnits="userSpaceOnUse" x1="-3836.0264" y1="-1600.0499" x2="-3805.5" y2="-1600.0499">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <rect x="-3836" y="-1604" class="st56" width="30.5" height="8"/>
+ </g>
+ <g>
+ <linearGradient id="SVGID_32_" gradientUnits="userSpaceOnUse" x1="-4326.5444" y1="-1628.193" x2="-4299.4526" y2="-1628.193">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <polygon class="st57" points="-4321.4,-1609.5 -4326.5,-1615.6 -4311.8,-1628.2 -4326.5,-1640.8 -4321.3,-1646.9
+ -4299.5,-1628.1 "/>
+ </g>
+ <g class="st51">
+
+ <image style="overflow:visible;opacity:0.2;" width="425" height="85" xlink:href="DEBB70B809924F85.png" transform="matrix(1 0 0 1 -4276 -1670.5431)">
+ </image>
+ <g>
+ <g>
+ <path class="st8" d="M-4227.1-1597.2h-13.6l-23.2-51.7v51.7h-11.1v-68.4h15l21.7,49v-49h11.9c0.1,0.1,0.2,0.3,0.2,0.5
+ c0,0.3-0.1,0.6-0.4,1c-0.3,0.4-0.5,1.2-0.6,2.3V-1597.2z"/>
+ <path class="st8" d="M-4211.5-1665.6h23.2c4.1,0,7.6,0.5,10.5,1.6c2.9,1.1,5.3,2.6,7.1,4.4c1.9,1.9,3.2,4,4.1,6.5
+ c0.9,2.5,1.3,5.1,1.3,7.9c0,2.8-0.4,5.4-1.3,7.9c-0.8,2.5-2.2,4.6-4,6.4c-1.8,1.8-4.2,3.3-7,4.3c-2.9,1.1-6.3,1.6-10.2,1.6
+ h-11.2v27.7h-12.5V-1665.6z M-4199-1654.7v19.4h10.3c1.9,0,3.5-0.2,4.9-0.7c1.4-0.5,2.5-1.1,3.3-2c0.9-0.8,1.5-1.8,1.9-3
+ c0.4-1.2,0.6-2.4,0.6-3.7c0-1.5-0.2-2.8-0.7-4c-0.4-1.2-1.1-2.3-2-3.1s-2-1.6-3.3-2.1c-1.3-0.5-2.9-0.8-4.7-0.8H-4199z"/>
+ <path class="st8" d="M-4152.2-1665.6h13l11.5,32.2l11.4-32.3h13.1v68.5h-11.1v-49.6l-9.6,25.8h-8.1l-9.2-25.8v49.6h-11V-1665.6
+ z"/>
+ <path class="st8" d="M-3990.2-1646.2c-0.3-0.1-0.5-0.2-0.6-0.4c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.3-0.1-0.6-0.1-1
+ c0-0.4-0.1-0.8-0.3-1.3c-1-2.3-2.4-4.2-4.2-5.5c-1.8-1.4-4-2-6.7-2c-2.2,0-4.2,0.6-5.9,1.9c-1.8,1.2-3.3,3-4.5,5.2
+ c-1.2,2.2-2.2,4.9-2.9,8.1c-0.7,3.2-1,6.7-1,10.6c0,3.7,0.4,7.2,1.1,10.4c0.7,3.2,1.8,5.9,3.1,8.2c1.3,2.3,2.9,4.1,4.8,5.4
+ c1.9,1.3,3.9,2,6.1,2c2.6,0,5-0.8,7-2.5c2-1.6,3.8-3.9,5.4-6.6l9.3,6c-2.6,4.5-5.7,7.8-9.4,10s-7.7,3.3-12,3.3
+ c-4,0-7.8-0.7-11.2-2.1c-3.4-1.4-6.4-3.6-8.9-6.6c-2.5-3-4.5-6.7-5.9-11.2c-1.4-4.5-2.1-9.7-2.1-15.8c0-4.5,0.4-8.5,1.2-12
+ c0.8-3.5,1.8-6.7,3.1-9.4c1.3-2.7,2.9-5,4.7-6.9c1.8-1.9,3.7-3.4,5.7-4.6c2-1.2,4.1-2.1,6.3-2.6c2.2-0.5,4.3-0.8,6.3-0.8
+ c2.6,0,5,0.4,7.4,1.1c2.3,0.7,4.5,1.8,6.5,3.2c2,1.4,3.8,3,5.3,4.9c1.5,1.9,2.8,4,3.8,6.4L-3990.2-1646.2z"/>
+ <path class="st8" d="M-3920.7-1607.5v10.3h-43.7v-68.4h13.4c0.1,0.1,0.2,0.3,0.2,0.5c0,0.3-0.1,0.6-0.4,1
+ c-0.3,0.4-0.5,1.2-0.6,2.3v54.2H-3920.7z"/>
+ <path class="st8" d="M-3900.9-1665.6h38.2v10.2h-13.3v48.1h13.8v10.1h-39.4v-10.2h13.3v-48h-12.6V-1665.6z"/>
+ </g>
+ </g>
+ </g>
+ <rect x="-4327.7" y="-1531.1" class="st47" width="551.7" height="304.6"/>
+ <text transform="matrix(1 0 0 1 -4327.7363 -1516.3141)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">The</tspan><tspan x="40.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="52.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">intelligent</tspan><tspan x="165.8" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="178.1" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">package</tspan><tspan x="276.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="288.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">manager</tspan><tspan x="391.3" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="403.5" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">for</tspan><tspan x="434.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="446.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">the</tspan><tspan x="482.8" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="495.1" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Node </tspan><tspan x="4.7" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Javascript Platform. Install stuff and get coding!</tspan></text>
+ <g>
+ <rect x="-4325.7" y="-1431.5" class="st14" width="230" height="59.2"/>
+ <rect x="-4319.8" y="-1425.7" class="st19" width="230" height="59.2"/>
+
+ <text transform="matrix(1 0 0 1 -4268.8589 -1393.1315)" class="st8" style="font-family:'Poppins-SemiBold'; font-size:20px; letter-spacing:1;">Read Docs</text>
+ </g>
+ </g>
+ <g class="st51">
+ <path class="st8" d="M-3718.1-1929.6v21.7c0,1.7-1.3,3-3,3h-849.6c-1.6,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h849.6
+ C-3719.4-1932.6-3718.1-1931.2-3718.1-1929.6z"/>
+ <path class="st41" d="M-3718.1-1929.6v21.7c0,1.7-1.3,3-3,3h-849.6c-1.6,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h849.6
+ C-3719.4-1932.6-3718.1-1931.2-3718.1-1929.6z"/>
+ </g>
+ <g class="st51">
+ <path class="st8" d="M-3594.1-1762.6v21.7c0,1.7-1.3,3-3,3h-849.6c-1.6,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h849.6
+ C-3595.4-1765.6-3594.1-1764.2-3594.1-1762.6z"/>
+ <path class="st41" d="M-3594.1-1762.6v21.7c0,1.7-1.3,3-3,3h-849.6c-1.6,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h849.6
+ C-3595.4-1765.6-3594.1-1764.2-3594.1-1762.6z"/>
+ </g>
+ <g>
+ <g>
+ <path class="st46" d="M-4776.9-2008.5h6.4v-9.7h3.2v9.7h3.2v-13h-12.8V-2008.5z M-4746.2-2021.5v13h6.4v-9.7h3.2v9.7h3.2v-9.7
+ h3.2v9.7h3.2v-13H-4746.2L-4746.2-2021.5z M-4755.2-2018.2h3.2v6.5h-3.2V-2018.2z M-4761.6-2005.3h6.4v-3.2h6.4v-13h-12.8
+ V-2005.3z"/>
+ <rect x="-4776.9" y="-2021.5" class="st47" width="49.9" height="16.2"/>
+ </g>
+ <polygon class="st46" points="-4711.9,-2018.3 -4711.9,-2012 -4705.8,-2012 -4705.8,-2008.9 -4712,-2008.9 -4718.3,-2008.9
+ -4718.2,-2021.5 -4705.8,-2021.5 -4705.8,-2018.4 "/>
+ <rect x="-4703.2" y="-2021.5" class="st46" width="6.4" height="12.9"/>
+
+ <rect x="-4697.3" y="-2014.9" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 -6705.8926 2685.6321)" class="st46" width="3.1" height="9.5"/>
+
+ <rect x="-4676.1" y="-2013.5" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 -6684.5234 2665.77)" class="st46" width="2" height="8.3"/>
+ <rect x="-4689.1" y="-2021.5" class="st46" width="6.4" height="12.9"/>
+ </g>
+
+ <linearGradient id="SVGID_33_" gradientUnits="userSpaceOnUse" x1="-4638.583" y1="-630.0982" x2="-4258.5825" y2="-630.0982" gradientTransform="matrix(7.182470e-02 -0.9974 0.9974 7.182470e-02 -2848.011 -4203.3799)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st58" points="-3685.6,5.9 -3712.9,384.9 -3906.4,371 -3879.1,-8 "/>
+ <linearGradient id="SVGID_34_" gradientUnits="userSpaceOnUse" x1="-4860" y1="-2041.0431" x2="-3260" y2="-2041.0431">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <line class="st59" x1="-4860" y1="-2041" x2="-3260" y2="-2041"/>
+
+ <linearGradient id="SVGID_35_" gradientUnits="userSpaceOnUse" x1="-3735.3538" y1="-583.6933" x2="-3531.3535" y2="-583.6933" gradientTransform="matrix(0.9887 -0.1501 0.1501 0.9887 46.8033 -571.8436)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st60" points="-3489.5,-338.1 -3691.2,-307.5 -3776.5,-869 -3574.8,-899.6 "/>
+ <line class="st50" x1="-3402.2" y1="-941.2" x2="-3403.9" y2="-941.2"/>
+ <g>
+
+ <image style="overflow:visible;" width="827" height="400" xlink:href="DEBB70B809924F8B.png" transform="matrix(1 0 0 1 -4477 -224.5431)">
+ </image>
+ <g>
+ <path class="st61" d="M-3659.5,169.5l-788.4,0c-1.4,0-2.6-1.2-2.6-2.6l0-362.8c0-1.4,1.2-2.6,2.6-2.6l788.4,0
+ c1.4,0,2.6,1.2,2.6,2.6v362.8C-3656.9,168.3-3658.1,169.5-3659.5,169.5z"/>
+ <path class="st62" d="M-3659.5,169.5l-788.4,0c-1.4,0-2.6-1.2-2.6-2.6l0-362.8c0-1.4,1.2-2.6,2.6-2.6l788.4,0
+ c1.4,0,2.6,1.2,2.6,2.6v362.8C-3656.9,168.3-3658.1,169.5-3659.5,169.5z"/>
+ </g>
+ </g>
+ <rect x="-4420" y="239.5" class="st8" width="21" height="38"/>
+
+ <linearGradient id="SVGID_36_" gradientUnits="userSpaceOnUse" x1="-4623.8662" y1="-990.3799" x2="-4243.8662" y2="-990.3799" gradientTransform="matrix(0.1152 -0.9933 0.9933 0.1152 -2945.3704 -5199.7769)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st63" points="-4321.8,-1087.1 -4365.5,-709.6 -4558.2,-732 -4514.5,-1109.5 "/>
+ <g>
+
+ <image style="overflow:visible;" width="828" height="375" xlink:href="DEBB70B809924F8C.png" transform="matrix(1 0 0 1 -4477 -1171.5431)">
+ </image>
+ <g>
+ <path class="st61" d="M-3657.6-803l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6V-1143c0-1.4,1.2-2.6,2.6-2.6l789.8,0c1.4,0,2.6,1.2,2.6,2.6
+ v337.3C-3655-804.2-3656.2-803-3657.6-803z"/>
+ <path class="st62" d="M-3657.6-803l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6V-1143c0-1.4,1.2-2.6,2.6-2.6l789.8,0c1.4,0,2.6,1.2,2.6,2.6
+ v337.3C-3655-804.2-3656.2-803-3657.6-803z"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(0.9755 0 0 1 -4174.0342 -956.9582)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Nunc malesuada suscipit enim at feugiat. </tspan><tspan x="-20.3" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;"> Duis id mauris lectus. Donec a sagittis lectus.</tspan></text>
+ </g>
+ <g id="XMLID_3_">
+ <text transform="matrix(0.9755 0 0 1 -4250.5439 21.9071)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Lorem ipsum dolor sit amet, consectetur adipiscing elit. </tspan><tspan x="0" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Sed tempus sapien nibh, et vehicula ipsum cursus non. </tspan></text>
+ </g>
+ <g class="st33">
+
+ <text transform="matrix(1 0 0 1 -7869.1777 -790.8224)" class="st8" style="font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Easy to Use</text>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="236" height="59" xlink:href="DEBB70B809924F8F.png" transform="matrix(1 0 0 1 -4175 -1039.5431)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -4171.9512 -1007.8224)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Easy to Use</text>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="202" height="59" xlink:href="DEBB70B809924F8D.png" transform="matrix(1 0 0 1 -4244 -60.5431)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -4240.5254 -28.8224)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Ultra Fast</text>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;" width="827" height="401" xlink:href="DEBB70B809924F8A.png" transform="matrix(1 0 0 1 -4477 -691.5432)">
+ </image>
+ <g>
+ <path class="st61" d="M-3659.1-297l-788.4,0c-1.4,0-2.6-1.2-2.6-2.6v-362.8c0-1.4,1.2-2.6,2.6-2.6l788.4,0c1.4,0,2.6,1.2,2.6,2.6
+ l0,362.8C-3656.6-298.2-3657.7-297-3659.1-297z"/>
+ <path class="st62" d="M-3659.1-297l-788.4,0c-1.4,0-2.6-1.2-2.6-2.6v-362.8c0-1.4,1.2-2.6,2.6-2.6l788.4,0c1.4,0,2.6,1.2,2.6,2.6
+ l0,362.8C-3656.6-298.2-3657.7-297-3659.1-297z"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(0.9755 0 0 1 -4264.5449 -469.0929)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Sed accumsan vehicula diam vel auctor. Suspendisse id </tspan><tspan x="0" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">interdum lectus. Phasellus sed tortor sed dui rutrum </tspan><tspan x="0" y="54" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">vestibulum vitae eget lacus. </tspan></text>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="237" height="59" xlink:href="DEBB70B809924F86.png" transform="matrix(1 0 0 1 -4262 -553.5432)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -4258.5332 -521.8224)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Easy to Use</text>
+ </g>
+ </g>
+ <polygon class="st64" points="-3256.4,442.8 -4863.1,392.6 -4863.1,835 -3259.5,835 "/>
+
+ <linearGradient id="SVGID_37_" gradientUnits="userSpaceOnUse" x1="-5595.8354" y1="-871.4171" x2="-5215.835" y2="-871.4171" gradientTransform="matrix(0.9989 -4.653295e-02 4.653295e-02 0.9989 912.5291 798.3806)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st65" points="-4333.7,267.5 -4713.3,285.2 -4722.3,91.4 -4342.7,73.7 "/>
+ <line class="st41" x1="-3682.4" y1="-1848.7" x2="-3674" y2="-1839.8"/>
+ <line class="st41" x1="-3682.7" y1="-1840.3" x2="-3673.7" y2="-1848.7"/>
+ <line class="st41" x1="-3737.4" y1="-1924.7" x2="-3729" y2="-1915.8"/>
+ <line class="st41" x1="-3737.7" y1="-1916.3" x2="-3728.7" y2="-1924.7"/>
+ <line class="st41" x1="-3611.4" y1="-1755.7" x2="-3603" y2="-1746.8"/>
+ <line class="st41" x1="-3611.7" y1="-1747.3" x2="-3602.7" y2="-1755.7"/>
+ <path class="st19" d="M-4244.6-989.1c5.4-5.6,8.6-13.1,8.6-21.5c0-17.1-13.9-31-31-31c-17.1,0-31,13.9-31,31
+ c0,9.8,4.5,18.5,11.6,24.2c-2.2,5.6-8,23.3-5.2,51.8h55.6C-4236-934.5-4230.7-966.4-4244.6-989.1z"/>
+ <circle class="st18" cx="-4264.5" cy="-1015.9" r="3.5"/>
+ <circle class="st18" cx="-4281.5" cy="-1013.1" r="3.5"/>
+ <circle class="st62" cx="-4274.5" cy="-1011" r="30.5"/>
+ <path class="st66" d="M-4264-1002.8c-3.2,3.7-8.8,4.1-12.4,0.9"/>
+ <path class="st62" d="M-4288.6-987.3c0,0-9.4,18.8-6,53.8h55.6c0,0,5.6-33.4-9.7-56.2"/>
+ <line class="st62" x1="-4360" y1="-1055.5" x2="-4360" y2="-918.5"/>
+ <line class="st62" x1="-4360" y1="-552.5" x2="-4360" y2="-415.5"/>
+ <line class="st62" x1="-4360" y1="-73.5" x2="-4360" y2="63.5"/>
+ <g id="POueHo_1_">
+
+ <image style="overflow:visible;" width="800" height="600" id="POueHo_2_" xlink:href="DEBB70B809924F84.jpg" transform="matrix(1 0 0 1 -2971 -3325.5432)">
+ </image>
+ </g>
+ <g id="FkRr9g_1_">
+
+ <image style="overflow:visible;" width="800" height="600" id="FkRr9g_2_" xlink:href="DEBB70B809924FAB.jpg" transform="matrix(1 0 0 1 -4391 -3274.5432)">
+ </image>
+ </g>
+ <rect x="-3216" y="-2019.5" class="st47" width="22" height="22.6"/>
+
+ <text transform="matrix(1 0 0 1 -3210 -2005.3434)" class="st35" style="font-family:'SourceCodeVariable-Roman'; font-size:20px; letter-spacing:1;">❤</text>
+ <text transform="matrix(1 0 0 1 -2035.0918 -2004.2418)"><tspan x="0" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">Configuring NPM</tspan><tspan x="116" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:24;"> </tspan><tspan x="144" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">Using NPM</tspan><tspan x="216.4" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:31;"> </tspan><tspan x="252" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">CLI Commands</tspan><tspan x="359.8" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:-3;"> </tspan></text>
+ <g>
+ <g>
+ <path class="st46" d="M-3180.9-2005.5h6.4v-9.7h3.2v9.7h3.2v-13h-12.8V-2005.5z M-3150.2-2018.5v13h6.4v-9.7h3.2v9.7h3.2v-9.7
+ h3.2v9.7h3.2v-13H-3150.2L-3150.2-2018.5z M-3159.2-2015.2h3.2v6.5h-3.2V-2015.2z M-3165.6-2002.3h6.4v-3.2h6.4v-13h-12.8
+ V-2002.3z"/>
+ <rect x="-3180.9" y="-2018.5" class="st47" width="49.9" height="16.2"/>
+ </g>
+ <polygon class="st46" points="-3115.9,-2015.3 -3115.9,-2009 -3109.8,-2009 -3109.8,-2005.9 -3116,-2005.9 -3122.3,-2005.9
+ -3122.2,-2018.5 -3109.8,-2018.5 -3109.8,-2015.4 "/>
+ <rect x="-3107.2" y="-2018.5" class="st46" width="6.4" height="12.9"/>
+
+ <rect x="-3101.3" y="-2011.9" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 -5106.8926 1092.6321)" class="st46" width="3.1" height="9.5"/>
+
+ <rect x="-3080.1" y="-2010.5" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 -5085.5234 1072.77)" class="st46" width="2" height="8.3"/>
+ <rect x="-3093.1" y="-2018.5" class="st46" width="6.4" height="12.9"/>
+ </g>
+ <linearGradient id="SVGID_38_" gradientUnits="userSpaceOnUse" x1="-3242" y1="-2040.0431" x2="-1642" y2="-2040.0431">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <line class="st67" x1="-3242" y1="-2040" x2="-1642" y2="-2040"/>
+ <linearGradient id="SVGID_39_" gradientUnits="userSpaceOnUse" x1="-3239" y1="-288.7924" x2="-1641" y2="-288.7924">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.1444" style="stop-color:#FF4B01"/>
+ <stop offset="0.7119" style="stop-color:#C12127"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st68" points="-1641,646.5 -1641,-1224 -3239,-1224 -3239,642.5 "/>
+ <line class="st50" x1="-2523.2" y1="-950.2" x2="-2524.9" y2="-950.2"/>
+ <line class="st38" x1="-2939.3" y1="-927" x2="-2941.5" y2="-927"/>
+
+ <linearGradient id="SVGID_40_" gradientUnits="userSpaceOnUse" x1="-4577.875" y1="978.6965" x2="-4197.875" y2="978.6965" gradientTransform="matrix(7.182470e-02 -0.9974 0.9974 7.182470e-02 -2848.011 -4203.3799)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st69" points="-2076.6,60.9 -2103.9,439.9 -2297.4,426 -2270.1,47 "/>
+
+ <linearGradient id="SVGID_41_" gradientUnits="userSpaceOnUse" x1="-2109.3376" y1="-281.1946" x2="-1905.3374" y2="-281.1946" gradientTransform="matrix(0.9887 -0.1501 0.1501 0.9887 46.8033 -571.8436)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st70" points="-1836.5,-283.1 -2038.2,-252.5 -2123.5,-814 -1921.8,-844.6 "/>
+
+ <linearGradient id="SVGID_42_" gradientUnits="userSpaceOnUse" x1="-4493.1201" y1="614.242" x2="-4113.1201" y2="614.242" gradientTransform="matrix(0.1152 -0.9933 0.9933 0.1152 -2945.3704 -5199.7769)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st71" points="-2712.8,-1032.1 -2756.5,-654.6 -2949.2,-677 -2905.5,-1054.5 "/>
+ <g class="st16">
+ <g>
+ <path class="st14" d="M-2038.6-738l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6l0-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,337.3C-2036-739.2-2037.2-738-2038.6-738z"/>
+ </g>
+ <g>
+ <path class="st72" d="M-2048.6-748l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6l0-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,337.3C-2046-749.2-2047.2-748-2048.6-748z"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(0.9755 0 0 1 -2531.0342 -905.9582)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Nunc malesuada suscipit enim at feugiat. </tspan><tspan x="-20.3" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;"> Duis id mauris lectus. Donec a sagittis lectus.</tspan></text>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="236" height="59" xlink:href="DEBB70B809924FA9.png" transform="matrix(1 0 0 1 -2532 -984.5432)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -2528.8369 -952.8224)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Easy to Use</text>
+ </g>
+ </g>
+
+ <linearGradient id="SVGID_43_" gradientUnits="userSpaceOnUse" x1="-3991.1377" y1="-741.6052" x2="-3611.1375" y2="-741.6052" gradientTransform="matrix(0.9989 -4.653295e-02 4.653295e-02 0.9989 912.5291 798.3806)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st73" points="-2724.7,322.5 -3104.3,340.2 -3113.3,146.4 -2733.7,128.7 "/>
+ <path class="st74" d="M-2604.7-879h-120.2c-1.1,0-2-0.9-2-2v-81h124.2c0,20.3,0,40.7,0,61v20C-2602.7-879.9-2603.6-879-2604.7-879z
+ "/>
+ <rect x="-2726.3" y="-975.5" class="st75" width="123.2" height="14"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="85" height="18" xlink:href="DEBB70B809924F97.png" transform="matrix(1 0 0 1 -2722.1443 -954.6873)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_44_" gradientUnits="userSpaceOnUse" x1="-2680.8501" y1="-938.4619" x2="-2679.1606" y2="-953.0289">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-2716.7" y="-948.9" class="st76" width="73.4" height="6.2"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="60" height="17" xlink:href="DEBB70B809924F99.png" transform="matrix(1 0 0 1 -2721.8997 -937.4428)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_45_" gradientUnits="userSpaceOnUse" x1="-2693.0466" y1="-923.778" x2="-2691.7185" y2="-935.2296">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-2716.8" y="-932.5" class="st77" width="48.8" height="5.9"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="70" height="18" xlink:href="DEBB70B809924F9B.png" transform="matrix(1 0 0 1 -2722.1565 -922.6997)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_46_" gradientUnits="userSpaceOnUse" x1="-2688.3372" y1="-907.3594" x2="-2686.8342" y2="-920.3168">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-2716.8" y="-917" class="st78" width="58.4" height="6.4"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="64" height="19" xlink:href="DEBB70B809924F9E.png" transform="matrix(1 0 0 1 -2723.0876 -905.6309)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_47_" gradientUnits="userSpaceOnUse" x1="-2691.8728" y1="-890.5993" x2="-2690.4941" y2="-902.4869">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-2717.2" y="-899.6" class="st79" width="52" height="6"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="27" height="17" xlink:href="DEBB70B809924F9F.png" transform="matrix(1 0 0 1 -2665.8997 -937.4428)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_48_" gradientUnits="userSpaceOnUse" x1="-2652.9333" y1="-925.6581" x2="-2652.041" y2="-933.3495">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-2660.5" y="-932.5" class="st80" width="16" height="5.9"/>
+ </g>
+ </g>
+ <line class="st81" x1="-2680" y1="-968.5" x2="-2640" y2="-968.5"/>
+ <circle class="st18" cx="-2718.5" cy="-969" r="1.5"/>
+ <circle class="st18" cx="-2712.5" cy="-969" r="1.5"/>
+ <line class="st50" x1="-2521.2" y1="-504.2" x2="-2522.9" y2="-504.2"/>
+ <line class="st38" x1="-2937.3" y1="-481" x2="-2939.5" y2="-481"/>
+ <g class="st16">
+ <g>
+ <path class="st14" d="M-2036.6-292l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6l0-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,337.3C-2034-293.2-2035.2-292-2036.6-292z"/>
+ </g>
+ <g>
+ <path class="st72" d="M-2046.6-302l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6l0-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,337.3C-2044-303.2-2045.2-302-2046.6-302z"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="202" height="59" xlink:href="DEBB70B809924F9A.png" transform="matrix(1 0 0 1 -2537 -557.5432)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -2533.6113 -525.8224)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Ultra Fast</text>
+ </g>
+ </g>
+ <path class="st74" d="M-2602.7-433h-120.2c-1.1,0-2-0.9-2-2v-81h124.2c0,20.3,0,40.7,0,61v20C-2600.7-433.9-2601.6-433-2602.7-433z
+ "/>
+ <rect x="-2724.3" y="-529.5" class="st75" width="123.2" height="14"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="85" height="18" xlink:href="DEBB70B809924F95.png" transform="matrix(1 0 0 1 -2720.1443 -508.6873)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_49_" gradientUnits="userSpaceOnUse" x1="-2678.8501" y1="-492.4619" x2="-2677.1606" y2="-507.0288">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-2714.7" y="-502.9" class="st82" width="73.4" height="6.2"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="60" height="17" xlink:href="DEBB70B809924F96.png" transform="matrix(1 0 0 1 -2719.8997 -491.4428)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_50_" gradientUnits="userSpaceOnUse" x1="-2691.0466" y1="-477.778" x2="-2689.7185" y2="-489.2296">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-2714.8" y="-486.5" class="st83" width="48.8" height="5.9"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="70" height="18" xlink:href="DEBB70B809924FF2.png" transform="matrix(1 0 0 1 -2720.1565 -476.6997)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_51_" gradientUnits="userSpaceOnUse" x1="-2686.3372" y1="-461.3594" x2="-2684.8342" y2="-474.3168">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-2714.8" y="-471" class="st84" width="58.4" height="6.4"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="64" height="19" xlink:href="DEBB70B809924FF1.png" transform="matrix(1 0 0 1 -2721.0876 -459.6309)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_52_" gradientUnits="userSpaceOnUse" x1="-2689.8728" y1="-444.5993" x2="-2688.4941" y2="-456.4869">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-2715.2" y="-453.6" class="st85" width="52" height="6"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="27" height="17" xlink:href="DEBB70B809924FF6.png" transform="matrix(1 0 0 1 -2663.8997 -491.4428)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_53_" gradientUnits="userSpaceOnUse" x1="-2650.9333" y1="-479.6581" x2="-2650.041" y2="-487.3495">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-2658.5" y="-486.5" class="st86" width="16" height="5.9"/>
+ </g>
+ </g>
+ <line class="st81" x1="-2678" y1="-522.5" x2="-2638" y2="-522.5"/>
+ <circle class="st18" cx="-2716.5" cy="-523" r="1.5"/>
+ <circle class="st18" cx="-2710.5" cy="-523" r="1.5"/>
+ <rect x="-2536.9" y="-496.6" class="st47" width="389.8" height="118.3"/>
+ <text transform="matrix(0.9755 0 0 1 -2536.8857 -483.2658)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Lorem ipsum dolor sit amet, consectetuer </tspan><tspan x="0" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">adipiscing elit, sed diam nonummy nibh eu</tspan><tspan x="387.7" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">-</tspan><tspan x="0" y="54" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">ismod Lorem ipsum dolor sit amet, tetuer </tspan><tspan x="0" y="81" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">adipiscing elit, sed diam nonummy nibmod </tspan></text>
+ <line class="st50" x1="-2518.2" y1="-41.2" x2="-2519.9" y2="-41.2"/>
+ <line class="st38" x1="-2934.3" y1="-18" x2="-2936.5" y2="-18"/>
+ <g class="st16">
+ <g>
+ <path class="st14" d="M-2033.6,171l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6l0-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,337.3C-2031,169.8-2032.2,171-2033.6,171z"/>
+ </g>
+ <g>
+ <path class="st72" d="M-2043.6,161l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6l0-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,337.3C-2041,159.8-2042.2,161-2043.6,161z"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="202" height="59" xlink:href="DEBB70B809924FF0.png" transform="matrix(1 0 0 1 -2534 -94.5431)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -2530.6113 -62.8224)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Ultra Fast</text>
+ </g>
+ </g>
+ <path class="st74" d="M-2599.7,30h-120.2c-1.1,0-2-0.9-2-2v-81h124.2c0,20.3,0,40.7,0,61v20C-2597.7,29.1-2598.6,30-2599.7,30z"/>
+ <rect x="-2721.3" y="-66.5" class="st75" width="123.2" height="14"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="85" height="18" xlink:href="DEBB70B809924FF3.png" transform="matrix(1 0 0 1 -2717.1443 -45.6873)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_54_" gradientUnits="userSpaceOnUse" x1="-2675.8501" y1="-29.4619" x2="-2674.1606" y2="-44.0288">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-2711.7" y="-39.9" class="st87" width="73.4" height="6.2"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="60" height="17" xlink:href="DEBB70B809924FEF.png" transform="matrix(1 0 0 1 -2716.8997 -28.4428)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_55_" gradientUnits="userSpaceOnUse" x1="-2688.0466" y1="-14.778" x2="-2686.7185" y2="-26.2296">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-2711.8" y="-23.5" class="st88" width="48.8" height="5.9"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="70" height="18" xlink:href="DEBB70B809924FCE.png" transform="matrix(1 0 0 1 -2717.1565 -13.6997)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_56_" gradientUnits="userSpaceOnUse" x1="-2683.3372" y1="1.6406" x2="-2681.8342" y2="-11.3168">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-2711.8" y="-8" class="st89" width="58.4" height="6.4"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="64" height="19" xlink:href="DEBB70B809924FD1.png" transform="matrix(1 0 0 1 -2718.0876 3.3691)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_57_" gradientUnits="userSpaceOnUse" x1="-2686.8728" y1="18.4007" x2="-2685.4941" y2="6.5131">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-2712.2" y="9.4" class="st90" width="52" height="6"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="27" height="17" xlink:href="DEBB70B809924FD2.png" transform="matrix(1 0 0 1 -2660.8997 -28.4428)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_58_" gradientUnits="userSpaceOnUse" x1="-2647.9333" y1="-16.6581" x2="-2647.041" y2="-24.3495">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-2655.5" y="-23.5" class="st91" width="16" height="5.9"/>
+ </g>
+ </g>
+ <line class="st81" x1="-2675" y1="-59.5" x2="-2635" y2="-59.5"/>
+ <circle class="st18" cx="-2713.5" cy="-60" r="1.5"/>
+ <circle class="st18" cx="-2707.5" cy="-60" r="1.5"/>
+ <rect x="-2533.9" y="-33.6" class="st47" width="389.8" height="118.3"/>
+ <text transform="matrix(0.9755 0 0 1 -2533.8857 -20.2658)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Lorem ipsum dolor sit amet, consectetuer </tspan><tspan x="0" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">adipiscing elit, sed diam nonummy nibh eu</tspan><tspan x="387.7" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">-</tspan><tspan x="0" y="54" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">ismod Lorem ipsum dolor sit amet, tetuer </tspan><tspan x="0" y="81" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">adipiscing elit, sed diam nonummy nibmod </tspan></text>
+ <path class="st92" d="M-1883.1-1811.9c-0.1,0-0.2,0-0.3,0l-26.6-8.5c-0.3-0.1-0.5-0.5-0.4-0.8c0-0.1,0.1-0.2,0.2-0.3l20.5-19.1
+ c0.2-0.2,0.4-0.2,0.6-0.1l26.6,8.5c0.3,0.1,0.5,0.5,0.4,0.8c0,0.1-0.1,0.2-0.2,0.3l-20.5,19
+ C-1882.9-1812-1883-1811.9-1883.1-1811.9z"/>
+ <path class="st92" d="M-1876.9-1784.2c-0.1,0-0.2,0-0.3,0l-26.6-8.4c-0.2-0.1-0.4-0.2-0.4-0.5l-6.2-27.7c-0.1-0.3,0.1-0.7,0.5-0.8
+ c0.3-0.1,0.7,0.1,0.8,0.5l6.1,27.4l25.2,8l-5.9-26.6c-0.1-0.3,0.1-0.7,0.5-0.8c0.3-0.1,0.7,0.1,0.8,0.5l6.2,27.7
+ C-1876.3-1784.7-1876.6-1784.3-1876.9-1784.2z"/>
+ <path class="st92" d="M-1876.9-1784.2c-0.2,0-0.5,0-0.6-0.2c-0.2-0.3-0.2-0.7,0-0.9l20.2-18.8l-6.1-27.3c-0.1-0.3,0.1-0.7,0.5-0.8
+ c0.3-0.1,0.7,0.1,0.8,0.5l6.2,27.6c0.1,0.2,0,0.5-0.2,0.6l-20.5,19.1C-1876.7-1784.3-1876.8-1784.3-1876.9-1784.2z"/>
+ <path class="st93" d="M-1870.9-1433.5c-0.1-0.1-0.2-0.1-0.2-0.2l-10.2-23.9c-0.1-0.3,0-0.7,0.3-0.8c0.1,0,0.2-0.1,0.3,0l25.9,2.9
+ c0.2,0,0.4,0.2,0.5,0.4l10.1,24c0.1,0.3,0,0.7-0.3,0.8c-0.1,0-0.2,0.1-0.3,0l-25.8-2.9C-1870.7-1433.4-1870.8-1433.4-1870.9-1433.5
+ z"/>
+ <path class="st93" d="M-1886.6-1412.3c-0.1-0.1-0.2-0.1-0.2-0.2l-10.2-23.9c-0.1-0.2-0.1-0.4,0.1-0.6l15.8-21.2
+ c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,0.3,0.6,0.1,0.8l-15.6,20.9l9.6,22.6l15.1-20.3c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,25.3,4,25.1,4.3
+ l-40.7,17.7C-1886-1412.2-1886.4-1412.1-1886.6-1412.3z"/>
+ <path class="st93" d="M-1845.2-1431.4c0.2-0.3,0.6-0.3,0.8-0.1s0.3,0.6,0.1,0.8l-15.7,21.1c-0.1,0.2-0.3,0.3-0.5,0.2l-25.9-2.9
+ c-0.1,0-0.2-0.1-0.3-0.1c-0.2-0.1-0.3-0.3-0.2-0.5c0-0.3,0.3-0.6,0.7-0.5"/>
+ <linearGradient id="SVGID_59_" gradientUnits="userSpaceOnUse" x1="-303.99" y1="-2219" x2="-1336.01" y2="-989.0863">
+ <stop offset="0" style="stop-color:#D4BEB8;stop-opacity:0.7"/>
+ <stop offset="1" style="stop-color:#FFFFFF"/>
+ </linearGradient>
+ <rect x="-1619" y="-1981.5" class="st94" width="1598" height="755"/>
+ <rect x="-1593" y="-2019.5" class="st47" width="22" height="22.6"/>
+
+ <text transform="matrix(1 0 0 1 -1587 -2005.3434)" class="st35" style="font-family:'SourceCodeVariable-Roman'; font-size:20px; letter-spacing:1;">❤</text>
+ <text transform="matrix(1 0 0 1 -215.0918 -2004.2418)"><tspan x="0" y="0" style="font-family:'Poppins-Medium'; font-size:14px;">docs</tspan><tspan x="34.3" y="0" style="font-family:'Poppins-Medium'; font-size:14px; letter-spacing:-1;"> </tspan><tspan x="36" y="0" style="font-family:'Poppins-Medium'; font-size:14px; letter-spacing:32;"> </tspan><tspan x="72" y="0" style="font-family:'Poppins-Medium'; font-size:14px;">npmjs.com</tspan><tspan x="151.5" y="0" style="font-family:'Poppins-Medium'; font-size:14px; letter-spacing:24;"> </tspan></text>
+ <g>
+ <g>
+ <path class="st46" d="M-1546.9-2005.5h6.4v-9.7h3.2v9.7h3.2v-13h-12.8V-2005.5z M-1516.2-2018.5v13h6.4v-9.7h3.2v9.7h3.2v-9.7
+ h3.2v9.7h3.2v-13H-1516.2L-1516.2-2018.5z M-1525.2-2015.2h3.2v6.5h-3.2V-2015.2z M-1531.6-2002.3h6.4v-3.2h6.4v-13h-12.8
+ V-2002.3z"/>
+ <rect x="-1546.9" y="-2018.5" class="st47" width="49.9" height="16.2"/>
+ </g>
+ <polygon class="st46" points="-1481.9,-2015.3 -1481.9,-2009 -1475.8,-2009 -1475.8,-2005.9 -1482,-2005.9 -1488.3,-2005.9
+ -1488.2,-2018.5 -1475.8,-2018.5 -1475.8,-2015.4 "/>
+ <rect x="-1473.2" y="-2018.5" class="st46" width="6.4" height="12.9"/>
+
+ <rect x="-1467.3" y="-2011.9" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 -3472.8926 -541.368)" class="st46" width="3.1" height="9.5"/>
+
+ <rect x="-1446.1" y="-2010.5" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 -3451.5237 -561.23)" class="st46" width="2" height="8.3"/>
+ <rect x="-1459.1" y="-2018.5" class="st46" width="6.4" height="12.9"/>
+ </g>
+ <linearGradient id="SVGID_60_" gradientUnits="userSpaceOnUse" x1="-1620" y1="-2041.0431" x2="-20" y2="-2041.0431">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <line class="st95" x1="-1620" y1="-2041" x2="-20" y2="-2041"/>
+ <rect x="-3241.5" y="384" class="st96" width="1602" height="510"/>
+ <linearGradient id="SVGID_61_" gradientUnits="userSpaceOnUse" x1="-1099.8535" y1="-1818.7931" x2="-1098.6465" y2="-1818.7931">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st97" x1="-1099" y1="-1818.5" x2="-1099.5" y2="-1819"/>
+ <line class="st40" x1="-1053.1" y1="-1885.7" x2="-1055.8" y2="-1885.7"/>
+ <line class="st40" x1="-1084.8" y1="-1858.5" x2="-1087.5" y2="-1858.5"/>
+ <line class="st40" x1="-888.2" y1="-1827.3" x2="-890.9" y2="-1827.3"/>
+ <g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="771" height="491" xlink:href="DEBB70B809924FD0.png" transform="matrix(1 0 0 1 -1210 -1922.5431)">
+ </image>
+ <g>
+ <path class="st98" d="M-438.1-1903.9v468.9c0,2.2-1.8,4-4,4h-748.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h750.6
+ C-439.4-1906.9-438.1-1905.5-438.1-1903.9z"/>
+ <path class="st81" d="M-438.1-1903.9v468.9c0,2.2-1.8,4-4,4h-748.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h750.6
+ C-439.4-1906.9-438.1-1905.5-438.1-1903.9z"/>
+ </g>
+ </g>
+ <g>
+ <path class="st8" d="M-438.1-1903.6v21.7c0,1.7-1.4,3-3,3h-750.6c-1.7,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h750.6
+ C-439.4-1906.6-438.1-1905.2-438.1-1903.6z"/>
+ <path class="st62" d="M-438.1-1903.6v21.7c0,1.7-1.4,3-3,3h-750.6c-1.7,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h750.6
+ C-439.4-1906.6-438.1-1905.2-438.1-1903.6z"/>
+ </g>
+ </g>
+ <g>
+ <line class="st40" x1="-1052.6" y1="-1810.9" x2="-1055.4" y2="-1810.9"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="770" height="490" xlink:href="DEBB70B809924FCD.png" transform="matrix(1 0 0 1 -1171 -1866.5431)">
+ </image>
+ <g>
+ <path class="st98" d="M-399.8-1848.2v468.9c0,2.2-1.8,4-4,4h-748.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h750.6
+ C-401.1-1851.2-399.8-1849.8-399.8-1848.2z"/>
+ <path class="st99" d="M-399.8-1848.2v468.9c0,2.2-1.8,4-4,4h-748.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h750.6
+ C-401.1-1851.2-399.8-1849.8-399.8-1848.2z"/>
+ </g>
+ </g>
+ <g>
+ <path class="st8" d="M-400.1-1848.6v21.7c0,1.7-1.4,3-3,3h-750.6c-1.7,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h750.6
+ C-401.4-1851.6-400.1-1850.2-400.1-1848.6z"/>
+ <path class="st62" d="M-400.1-1848.6v21.7c0,1.7-1.4,3-3,3h-750.6c-1.7,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h750.6
+ C-401.4-1851.6-400.1-1850.2-400.1-1848.6z"/>
+ </g>
+ </g>
+ <g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="771" height="490" xlink:href="DEBB70B809925033.png" transform="matrix(1 0 0 1 -1137 -1806.5431)">
+ </image>
+ <g>
+ <path class="st98" d="M-365.4-1789.7v472.9c0,0.5-0.4,1-1,1h-754.7c-0.5,0-1-0.4-1-1v-472.9c0-1.1,0.9-2,2-2h752.6
+ C-366.3-1791.7-365.4-1790.8-365.4-1789.7z"/>
+ <path class="st99" d="M-365.4-1789.7v472.9c0,0.5-0.4,1-1,1h-754.7c-0.5,0-1-0.4-1-1v-472.9c0-1.1,0.9-2,2-2h752.6
+ C-366.3-1791.7-365.4-1790.8-365.4-1789.7z"/>
+ </g>
+ </g>
+ <g>
+ <g>
+ <rect x="-650.3" y="-1640.7" class="st14" width="23.3" height="6.1"/>
+ </g>
+ <g>
+ <polygon class="st14" points="-1021.6,-1644.9 -1025.5,-1649.6 -1014.3,-1659.1 -1025.5,-1668.8 -1021.6,-1673.4
+ -1004.8,-1659.1 "/>
+ </g>
+ <g class="st51">
+
+ <image style="overflow:visible;opacity:0.2;" width="327" height="66" xlink:href="DEBB70B809925035.png" transform="matrix(1 0 0 1 -987.5894 -1692.1324)">
+ </image>
+ <g>
+ <g>
+ <path class="st8" d="M-949.5-1635.4h-10.4l-17.7-39.6v39.6h-8.5v-52.3h11.5l16.6,37.5v-37.5h9.1c0.1,0.1,0.2,0.3,0.2,0.4
+ c0,0.2-0.1,0.5-0.3,0.8c-0.2,0.3-0.4,0.9-0.5,1.7V-1635.4z"/>
+ <path class="st8" d="M-937.6-1687.8h17.7c3.1,0,5.8,0.4,8,1.3c2.2,0.8,4,2,5.5,3.4c1.4,1.4,2.5,3.1,3.1,5c0.7,1.9,1,3.9,1,6
+ c0,2.1-0.3,4.1-1,6c-0.6,1.9-1.7,3.5-3.1,4.9c-1.4,1.4-3.2,2.5-5.4,3.3c-2.2,0.8-4.8,1.2-7.8,1.2h-8.6v21.2h-9.6V-1687.8z
+ M-928-1679.4v14.9h7.9c1.5,0,2.7-0.2,3.7-0.5c1-0.4,1.9-0.9,2.6-1.5c0.7-0.6,1.2-1.4,1.5-2.3c0.3-0.9,0.5-1.8,0.5-2.9
+ c0-1.1-0.2-2.1-0.5-3.1c-0.3-0.9-0.8-1.7-1.5-2.4c-0.7-0.7-1.5-1.2-2.5-1.6c-1-0.4-2.2-0.6-3.6-0.6H-928z"/>
+ <path class="st8" d="M-892.2-1687.8h9.9l8.8,24.6l8.7-24.7h10v52.4h-8.5v-38l-7.3,19.7h-6.2l-7.1-19.7v38h-8.4V-1687.8z"/>
+ <path class="st8" d="M-768.3-1673c-0.2-0.1-0.4-0.2-0.5-0.3c-0.1-0.2-0.1-0.4-0.2-0.6c0-0.2-0.1-0.5-0.1-0.8
+ c0-0.3-0.1-0.6-0.2-1c-0.8-1.8-1.8-3.2-3.2-4.2c-1.3-1-3.1-1.6-5.1-1.6c-1.7,0-3.2,0.5-4.5,1.4c-1.3,1-2.5,2.3-3.4,4
+ c-1,1.7-1.7,3.8-2.2,6.2c-0.5,2.4-0.8,5.1-0.8,8.1c0,2.9,0.3,5.5,0.8,7.9c0.6,2.4,1.3,4.5,2.4,6.3c1,1.8,2.2,3.1,3.7,4.2
+ c1.4,1,3,1.5,4.7,1.5c2,0,3.8-0.6,5.3-1.9c1.5-1.3,2.9-3,4.2-5.1l7.1,4.6c-2,3.4-4.4,6-7.2,7.7c-2.8,1.7-5.9,2.6-9.2,2.6
+ c-3.1,0-5.9-0.5-8.6-1.6c-2.6-1.1-4.9-2.8-6.8-5.1c-1.9-2.3-3.4-5.2-4.5-8.6c-1.1-3.4-1.6-7.4-1.6-12.1c0-3.4,0.3-6.5,0.9-9.2
+ c0.6-2.7,1.4-5.1,2.4-7.2c1-2.1,2.2-3.8,3.6-5.2c1.4-1.4,2.8-2.6,4.4-3.5c1.5-0.9,3.1-1.6,4.8-2c1.7-0.4,3.3-0.6,4.8-0.6
+ c2,0,3.8,0.3,5.6,0.8c1.8,0.6,3.5,1.4,5,2.4c1.5,1.1,2.9,2.3,4.1,3.8c1.2,1.5,2.2,3.1,2.9,4.9L-768.3-1673z"/>
+ <path class="st8" d="M-715.1-1643.3v7.9h-33.4v-52.3h10.2c0.1,0.1,0.2,0.3,0.2,0.4c0,0.2-0.1,0.5-0.3,0.8
+ c-0.2,0.3-0.4,0.9-0.5,1.7v41.5H-715.1z"/>
+ <path class="st8" d="M-700-1687.8h29.2v7.8h-10.2v36.8h10.6v7.7h-30.2v-7.8h10.2v-36.7h-9.7V-1687.8z"/>
+ </g>
+ </g>
+ </g>
+ <rect x="-1026.7" y="-1572.1" class="st47" width="551.7" height="304.6"/>
+ <text transform="matrix(1 0 0 1 -1026.7363 -1557.3141)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">The</tspan><tspan x="40.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="52.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">intelligent</tspan><tspan x="165.8" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="178.1" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">package</tspan><tspan x="276.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="288.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">manager</tspan><tspan x="391.3" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="403.5" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">for</tspan><tspan x="434.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="446.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">the</tspan><tspan x="482.8" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="495.1" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Node </tspan><tspan x="4.7" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Javascript Platform. Install stuff and get coding!</tspan></text>
+ <g>
+ <rect x="-1024.7" y="-1472.5" class="st14" width="230" height="59.2"/>
+ <rect x="-1018.8" y="-1466.7" class="st19" width="230" height="59.2"/>
+
+ <text transform="matrix(1 0 0 1 -967.8589 -1434.1315)" class="st8" style="font-family:'Poppins-Bold'; font-size:20px; letter-spacing:1;">Read Docs</text>
+ </g>
+ </g>
+ <g>
+ <path class="st8" d="M-365.1-1788.6v24.7c0,0,0,0,0,0h-756.6c0,0,0,0,0,0v-24.7c0-1.7,1.3-3,3-3h750.6
+ C-366.4-1791.6-365.1-1790.2-365.1-1788.6z"/>
+ <path class="st62" d="M-365.1-1788.6v24.7c0,0,0,0,0,0h-756.6c0,0,0,0,0,0v-24.7c0-1.7,1.3-3,3-3h750.6
+ C-366.4-1791.6-365.1-1790.2-365.1-1788.6z"/>
+ </g>
+ <line class="st66" x1="-1105.4" y1="-1781.9" x2="-1097" y2="-1772.9"/>
+ <line class="st66" x1="-1105.7" y1="-1773.2" x2="-1096.7" y2="-1781.6"/>
+ <line class="st66" x1="-1145.4" y1="-1841.9" x2="-1137" y2="-1832.9"/>
+ <line class="st66" x1="-1145.7" y1="-1833.2" x2="-1136.7" y2="-1841.6"/>
+ <line class="st66" x1="-1182.4" y1="-1896.9" x2="-1174" y2="-1887.9"/>
+ <line class="st66" x1="-1182.7" y1="-1888.2" x2="-1173.7" y2="-1896.6"/>
+ </g>
+ <linearGradient id="SVGID_62_" gradientUnits="userSpaceOnUse" x1="-1619" y1="-288.7924" x2="-21" y2="-288.7924">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.1444" style="stop-color:#FF4B01"/>
+ <stop offset="0.7119" style="stop-color:#C12127"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st100" points="-21,646.5 -21,-1224 -1619,-1224 -1619,642.5 "/>
+ <line class="st50" x1="-903.2" y1="-950.2" x2="-904.9" y2="-950.2"/>
+ <line class="st38" x1="-1319.3" y1="-927" x2="-1321.5" y2="-927"/>
+
+ <linearGradient id="SVGID_63_" gradientUnits="userSpaceOnUse" x1="-4461.519" y1="2594.5125" x2="-4081.5188" y2="2594.5125" gradientTransform="matrix(7.182470e-02 -0.9974 0.9974 7.182470e-02 -2848.011 -4203.3799)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st101" points="-456.6,60.9 -483.9,439.9 -677.4,426 -650.1,47 "/>
+
+ <linearGradient id="SVGID_64_" gradientUnits="userSpaceOnUse" x1="-507.6919" y1="-38.0262" x2="-303.6916" y2="-38.0262" gradientTransform="matrix(0.9887 -0.1501 0.1501 0.9887 46.8033 -571.8436)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st102" points="-216.5,-283.1 -418.2,-252.5 -503.5,-814 -301.8,-844.6 "/>
+
+ <linearGradient id="SVGID_65_" gradientUnits="userSpaceOnUse" x1="-4306.4731" y1="2223.4539" x2="-3926.4729" y2="2223.4539" gradientTransform="matrix(0.1152 -0.9933 0.9933 0.1152 -2945.3704 -5199.7769)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st103" points="-1092.8,-1032.1 -1136.5,-654.6 -1329.2,-677 -1285.5,-1054.5 "/>
+ <g class="st16">
+ <g>
+ <path class="st14" d="M-418.6-738l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6V-1078c0-1.4,1.2-2.6,2.6-2.6l789.8,0c1.4,0,2.6,1.2,2.6,2.6
+ l0,337.3C-416-739.2-417.2-738-418.6-738z"/>
+ </g>
+ <g>
+ <path class="st72" d="M-428.6-748l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6V-1088c0-1.4,1.2-2.6,2.6-2.6l789.8,0c1.4,0,2.6,1.2,2.6,2.6
+ l0,337.3C-426-749.2-427.2-748-428.6-748z"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(0.9755 0 0 1 -921.3135 -905.9582)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:19px;">Nunc malesuada suscipit enim at feugiat. </tspan><tspan x="-21.5" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:19px;"> Duis id mauris lectus. Donec a sagittis lectus.</tspan></text>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="236" height="59" xlink:href="DEBB70B809925037.png" transform="matrix(1 0 0 1 -916 -984.5432)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -912.8369 -952.8224)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Easy to Use</text>
+ </g>
+ </g>
+
+ <linearGradient id="SVGID_66_" gradientUnits="userSpaceOnUse" x1="-2372.8923" y1="-666.2218" x2="-1992.8923" y2="-666.2218" gradientTransform="matrix(0.9989 -4.653295e-02 4.653295e-02 0.9989 912.5291 798.3806)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st104" points="-1104.7,322.5 -1484.3,340.2 -1493.3,146.4 -1113.7,128.7 "/>
+ <path class="st74" d="M-984.7-879h-120.2c-1.1,0-2-0.9-2-2v-81h124.2c0,20.3,0,40.7,0,61v20C-982.7-879.9-983.6-879-984.7-879z"/>
+ <rect x="-1106.3" y="-975.5" class="st75" width="123.2" height="14"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="85" height="18" xlink:href="DEBB70B809925034.png" transform="matrix(1 0 0 1 -1102.1442 -954.6873)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_67_" gradientUnits="userSpaceOnUse" x1="-1060.8502" y1="-938.4619" x2="-1059.1606" y2="-953.0289">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1096.7" y="-948.9" class="st105" width="73.4" height="6.2"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="60" height="17" xlink:href="DEBB70B80992503C.png" transform="matrix(1 0 0 1 -1101.8997 -937.4428)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_68_" gradientUnits="userSpaceOnUse" x1="-1073.0468" y1="-923.778" x2="-1071.7185" y2="-935.2296">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1096.8" y="-932.5" class="st106" width="48.8" height="5.9"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="70" height="18" xlink:href="DEBB70B80992503D.png" transform="matrix(1 0 0 1 -1102.1566 -922.6997)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_69_" gradientUnits="userSpaceOnUse" x1="-1068.3372" y1="-907.3594" x2="-1066.8344" y2="-920.3168">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1096.8" y="-917" class="st107" width="58.4" height="6.4"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="64" height="19" xlink:href="DEBB70B80992503F.png" transform="matrix(1 0 0 1 -1103.0878 -905.6309)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_70_" gradientUnits="userSpaceOnUse" x1="-1071.8729" y1="-890.5993" x2="-1070.4941" y2="-902.4869">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1097.2" y="-899.6" class="st108" width="52" height="6"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="27" height="17" xlink:href="DEBB70B80992503B.png" transform="matrix(1 0 0 1 -1045.8997 -937.4428)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_71_" gradientUnits="userSpaceOnUse" x1="-1032.9332" y1="-925.6581" x2="-1032.0411" y2="-933.3495">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1040.5" y="-932.5" class="st109" width="16" height="5.9"/>
+ </g>
+ </g>
+ <line class="st81" x1="-1060" y1="-968.5" x2="-1020" y2="-968.5"/>
+ <circle class="st18" cx="-1098.5" cy="-969" r="1.5"/>
+ <circle class="st18" cx="-1092.5" cy="-969" r="1.5"/>
+ <line class="st50" x1="-901.2" y1="-504.2" x2="-902.9" y2="-504.2"/>
+ <line class="st38" x1="-1317.3" y1="-481" x2="-1319.5" y2="-481"/>
+ <g class="st16">
+ <g>
+ <path class="st14" d="M-416.6-292l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6V-632c0-1.4,1.2-2.6,2.6-2.6l789.8,0c1.4,0,2.6,1.2,2.6,2.6
+ l0,337.3C-414-293.2-415.2-292-416.6-292z"/>
+ </g>
+ <g>
+ <path class="st72" d="M-426.6-302l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6V-642c0-1.4,1.2-2.6,2.6-2.6l789.8,0c1.4,0,2.6,1.2,2.6,2.6
+ l0,337.3C-424-303.2-425.2-302-426.6-302z"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="202" height="59" xlink:href="DEBB70B809925036.png" transform="matrix(1 0 0 1 -917 -557.5432)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -913.6113 -525.8224)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Ultra Fast</text>
+ </g>
+ </g>
+ <path class="st74" d="M-982.7-433h-120.2c-1.1,0-2-0.9-2-2v-81h124.2c0,20.3,0,40.7,0,61v20C-980.7-433.9-981.6-433-982.7-433z"/>
+ <rect x="-1104.3" y="-529.5" class="st75" width="123.2" height="14"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="85" height="18" xlink:href="DEBB70B809925018.png" transform="matrix(1 0 0 1 -1100.1442 -508.6873)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_72_" gradientUnits="userSpaceOnUse" x1="-1058.8502" y1="-492.4619" x2="-1057.1606" y2="-507.0288">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1094.7" y="-502.9" class="st110" width="73.4" height="6.2"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="60" height="17" xlink:href="DEBB70B80992501B.png" transform="matrix(1 0 0 1 -1099.8997 -491.4428)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_73_" gradientUnits="userSpaceOnUse" x1="-1071.0468" y1="-477.778" x2="-1069.7185" y2="-489.2296">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1094.8" y="-486.5" class="st111" width="48.8" height="5.9"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="70" height="18" xlink:href="DEBB70B809925019.png" transform="matrix(1 0 0 1 -1100.1566 -476.6997)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_74_" gradientUnits="userSpaceOnUse" x1="-1066.3372" y1="-461.3594" x2="-1064.8344" y2="-474.3168">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1094.8" y="-471" class="st112" width="58.4" height="6.4"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="64" height="19" xlink:href="DEBB70B809925067.png" transform="matrix(1 0 0 1 -1101.0878 -459.6309)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_75_" gradientUnits="userSpaceOnUse" x1="-1069.8729" y1="-444.5993" x2="-1068.4941" y2="-456.4869">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1095.2" y="-453.6" class="st113" width="52" height="6"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="27" height="17" xlink:href="DEBB70B809925068.png" transform="matrix(1 0 0 1 -1043.8997 -491.4428)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_76_" gradientUnits="userSpaceOnUse" x1="-1030.9332" y1="-479.6581" x2="-1030.0411" y2="-487.3495">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1038.5" y="-486.5" class="st114" width="16" height="5.9"/>
+ </g>
+ </g>
+ <line class="st81" x1="-1058" y1="-522.5" x2="-1018" y2="-522.5"/>
+ <circle class="st18" cx="-1096.5" cy="-523" r="1.5"/>
+ <circle class="st18" cx="-1090.5" cy="-523" r="1.5"/>
+ <rect x="-916.9" y="-496.6" class="st47" width="389.8" height="118.3"/>
+ <text transform="matrix(0.9755 0 0 1 -916.8857 -483.2658)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Lorem ipsum dolor sit amet, consectetuer </tspan><tspan x="0" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">adipiscing elit, sed diam nonummy nibh eu</tspan><tspan x="387.7" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">-</tspan><tspan x="0" y="54" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">ismod Lorem ipsum dolor sit amet, tetuer </tspan><tspan x="0" y="81" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">adipiscing elit, sed diam nonummy nibmod </tspan></text>
+ <line class="st50" x1="-898.2" y1="-41.2" x2="-899.9" y2="-41.2"/>
+ <line class="st38" x1="-1314.3" y1="-18" x2="-1316.5" y2="-18"/>
+ <g class="st16">
+ <g>
+ <path class="st14" d="M-413.6,171l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6V-169c0-1.4,1.2-2.6,2.6-2.6l789.8,0c1.4,0,2.6,1.2,2.6,2.6
+ l0,337.3C-411,169.8-412.2,171-413.6,171z"/>
+ </g>
+ <g>
+ <path class="st72" d="M-423.6,161l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6V-179c0-1.4,1.2-2.6,2.6-2.6l789.8,0c1.4,0,2.6,1.2,2.6,2.6
+ l0,337.3C-421,159.8-422.2,161-423.6,161z"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="202" height="59" xlink:href="DEBB70B80992506B.png" transform="matrix(1 0 0 1 -914 -94.5431)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -910.6113 -62.8224)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Ultra Fast</text>
+ </g>
+ </g>
+ <path class="st74" d="M-979.7,30h-120.2c-1.1,0-2-0.9-2-2v-81h124.2c0,20.3,0,40.7,0,61v20C-977.7,29.1-978.6,30-979.7,30z"/>
+ <rect x="-1101.3" y="-66.5" class="st75" width="123.2" height="14"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="85" height="18" xlink:href="DEBB70B809925069.png" transform="matrix(1 0 0 1 -1097.1442 -45.6873)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_77_" gradientUnits="userSpaceOnUse" x1="-1055.8502" y1="-29.4619" x2="-1054.1606" y2="-44.0288">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1091.7" y="-39.9" class="st115" width="73.4" height="6.2"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="60" height="17" xlink:href="DEBB70B80992506F.png" transform="matrix(1 0 0 1 -1096.8997 -28.4428)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_78_" gradientUnits="userSpaceOnUse" x1="-1068.0468" y1="-14.778" x2="-1066.7185" y2="-26.2296">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1091.8" y="-23.5" class="st116" width="48.8" height="5.9"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="70" height="18" xlink:href="DEBB70B80992506A.png" transform="matrix(1 0 0 1 -1097.1566 -13.6997)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_79_" gradientUnits="userSpaceOnUse" x1="-1063.3372" y1="1.6406" x2="-1061.8344" y2="-11.3168">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1091.8" y="-8" class="st117" width="58.4" height="6.4"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="64" height="19" xlink:href="DEBB70B809925065.png" transform="matrix(1 0 0 1 -1098.0878 3.3691)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_80_" gradientUnits="userSpaceOnUse" x1="-1066.8729" y1="18.4007" x2="-1065.4941" y2="6.5131">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1092.2" y="9.4" class="st118" width="52" height="6"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="27" height="17" xlink:href="DEBB70B80992500F.png" transform="matrix(1 0 0 1 -1040.8997 -28.4428)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_81_" gradientUnits="userSpaceOnUse" x1="-1027.9332" y1="-16.6581" x2="-1027.0411" y2="-24.3495">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1035.5" y="-23.5" class="st119" width="16" height="5.9"/>
+ </g>
+ </g>
+ <line class="st81" x1="-1055" y1="-59.5" x2="-1015" y2="-59.5"/>
+ <circle class="st18" cx="-1093.5" cy="-60" r="1.5"/>
+ <circle class="st18" cx="-1087.5" cy="-60" r="1.5"/>
+ <rect x="-913.9" y="-33.6" class="st47" width="389.8" height="118.3"/>
+ <text transform="matrix(0.9755 0 0 1 -913.8857 -20.2658)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Lorem ipsum dolor sit amet, consectetuer </tspan><tspan x="0" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">adipiscing elit, sed diam nonummy nibh eu</tspan><tspan x="387.7" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">-</tspan><tspan x="0" y="54" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">ismod Lorem ipsum dolor sit amet, tetuer </tspan><tspan x="0" y="81" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">adipiscing elit, sed diam nonummy nibmod </tspan></text>
+ <rect x="-1621.5" y="384" class="st64" width="1602" height="444"/>
+ <path class="st120" d="M-1513-1572.5"/>
+ <path class="st120" d="M-1495.5-1555"/>
+ <path class="st14" d="M-1393.4-1374.9c-0.1,0-0.2-0.1-0.3-0.2l-18.2-21.2c-0.2-0.3-0.2-0.7,0.1-0.9c0.1-0.1,0.2-0.1,0.3-0.1
+ l27.4-5.5c0.2,0,0.5,0,0.6,0.2l18.2,21.2c0.2,0.3,0.2,0.7-0.1,0.9c-0.1,0.1-0.2,0.1-0.3,0.1l-27.4,5.5
+ C-1393.2-1374.9-1393.3-1374.9-1393.4-1374.9z"/>
+ <path class="st14" d="M-1393.8-1375.7c0.1-0.3,0.5-0.5,0.8-0.4c0.3,0.1,0.5,0.5,0.4,0.8l-9.2,26.8c-0.1,0.3-0.5,0.5-0.8,0.4
+ c-0.1,0-0.2-0.1-0.3-0.2l-18.3-21.1c-0.1-0.2-0.2-0.4-0.1-0.6l9.3-26.9c0.1-0.3,0.5-0.5,0.8-0.4c0.3,0.1,0.5,0.5,0.4,0.8"/>
+ <path class="st14" d="M-1402.6-1348.1c-0.2-0.1-0.4-0.3-0.4-0.5c-0.1-0.3,0.2-0.7,0.5-0.8l27.1-5.4l9.1-26.4
+ c0.1-0.3,0.5-0.5,0.8-0.4c0.3,0.1,0.5,0.5,0.4,0.8l-9.2,26.8c-0.1,0.2-0.3,0.4-0.5,0.4l-27.4,5.5
+ C-1402.4-1348.1-1402.5-1348.1-1402.6-1348.1z"/>
+ <linearGradient id="SVGID_82_" gradientUnits="userSpaceOnUse" x1="-1356.4111" y1="-1648.968" x2="-1326.4088" y2="-1648.968">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_83_" gradientUnits="userSpaceOnUse" x1="-1356.7821" y1="-1648.968" x2="-1326.0377" y2="-1648.968">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st121" d="M-1337.3-1640.1c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.4-0.2-0.4-0.5c0-0.1,0-0.1,0.1-0.2l10.6-15.2
+ c0.1-0.1,0.2-0.2,0.4-0.2l18.5,1.8c0.2,0,0.4,0.2,0.4,0.5c0,0.1,0,0.1-0.1,0.2l-10.7,15.2
+ C-1337.2-1640.1-1337.2-1640.1-1337.3-1640.1z"/>
+ <linearGradient id="SVGID_84_" gradientUnits="userSpaceOnUse" x1="-1356.4128" y1="-1632.7845" x2="-1329.1738" y2="-1632.7845">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_85_" gradientUnits="userSpaceOnUse" x1="-1356.7838" y1="-1632.7845" x2="-1328.8027" y2="-1632.7845">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st122" d="M-1329.4-1622.9c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.3-0.1-0.3-0.2l-7.9-17.2c-0.1-0.2,0-0.5,0.2-0.6
+ c0.2-0.1,0.5,0,0.6,0.2l7.8,16.9l17.5,1.7l-7.6-16.5c-0.1-0.2,0-0.5,0.2-0.6c0.2-0.1,0.5,0,0.6,0.2l7.9,17.1
+ C-1329.1-1623.3-1329.2-1623-1329.4-1622.9z"/>
+ <linearGradient id="SVGID_86_" gradientUnits="userSpaceOnUse" x1="-1330.0281" y1="-1639.4987" x2="-1318.5287" y2="-1639.4987">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_87_" gradientUnits="userSpaceOnUse" x1="-1330.399" y1="-1639.4987" x2="-1318.1577" y2="-1639.4987">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st123" d="M-1329.4-1622.9c-0.1,0.1-0.3,0-0.4,0c-0.2-0.1-0.2-0.4-0.1-0.6l10.5-15.1l-7.8-16.9c-0.1-0.2,0-0.5,0.2-0.6
+ c0.2-0.1,0.5,0,0.6,0.2l7.9,17.1c0.1,0.1,0.1,0.3,0,0.4l-10.6,15.2C-1329.3-1623-1329.4-1623-1329.4-1622.9z"/>
+ <linearGradient id="SVGID_88_" gradientUnits="userSpaceOnUse" x1="-173.276" y1="-1400.4655" x2="-136.0884" y2="-1400.4655">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st124" d="M-162.9-1389.5c-0.1-0.1-0.2-0.1-0.2-0.2l-10.2-23.9c-0.1-0.3,0-0.7,0.3-0.8c0.1,0,0.2-0.1,0.3,0l25.9,2.9
+ c0.2,0,0.4,0.2,0.5,0.4l10.1,24c0.1,0.3,0,0.7-0.3,0.8c-0.1,0-0.2,0.1-0.3,0l-25.8-2.9C-162.7-1389.4-162.8-1389.4-162.9-1389.5z"
+ />
+ <linearGradient id="SVGID_89_" gradientUnits="userSpaceOnUse" x1="-189.0637" y1="-1391.3448" x2="-137.1035" y2="-1391.3448">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st125" d="M-178.6-1368.3c-0.1-0.1-0.2-0.1-0.2-0.2l-10.2-23.9c-0.1-0.2-0.1-0.4,0.1-0.6l15.8-21.2
+ c0.2-0.3,0.6-0.3,0.8-0.1s0.3,0.6,0.1,0.8l-15.6,20.9l9.6,22.6l15.1-20.3c0.2-0.3,0.6-0.3,0.8-0.1s25.3,4,25.1,4.3l-40.7,17.7
+ C-178-1368.2-178.4-1368.1-178.6-1368.3z"/>
+ <linearGradient id="SVGID_90_" gradientUnits="userSpaceOnUse" x1="-178.8731" y1="-1376.4922" x2="-136.0858" y2="-1376.4922">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st126" d="M-137.2-1387.4c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,0.3,0.6,0.1,0.8l-15.7,21.1c-0.1,0.2-0.3,0.3-0.5,0.2
+ l-25.9-2.9c-0.1,0-0.2-0.1-0.3-0.1c-0.2-0.1-0.3-0.3-0.2-0.5c0-0.3,0.3-0.6,0.7-0.5"/>
+ <linearGradient id="SVGID_91_" gradientUnits="userSpaceOnUse" x1="-251.4985" y1="-1802.4865" x2="-196.9198" y2="-1802.4865">
+ <stop offset="0" style="stop-color:#913FFF"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st127" d="M-203.1-1821.7C-203.1-1821.8-203.1-1821.8-203.1-1821.7c-0.1-0.1-0.1-0.2-0.1-0.2c0,0-0.1-0.1-0.1-0.1
+ c0,0,0,0-0.1-0.1c0,0-0.1-0.1-0.1-0.1c0,0,0,0,0,0l-26.6-8.5c-0.2-0.1-0.5,0-0.6,0.1l-20.5,19.1c0,0,0,0,0,0
+ c-0.1,0.1-0.1,0.1-0.1,0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.2c0,0,0,0.1,0,0.1c0,0,0,0,0,0l6.2,27.7c0.1,0.2,0.2,0.4,0.4,0.5
+ l26.6,8.4c0.1,0,0.2,0,0.3,0c0.1,0,0.2-0.1,0.3-0.1c0,0,0,0,0,0l20.5-19.1c0.2-0.2,0.2-0.4,0.2-0.6L-203.1-1821.7z M-244.1-1783.8
+ l-5.9-26.3l25.2,8l5.9,26.3L-244.1-1783.8z"/>
+ <path class="st92" d="M-1311.5-2137.8l-9.2-16.1c0-0.1-0.1-0.1-0.2-0.2c-0.1,0-0.1,0-0.2-0.1c0,0,0,0,0,0l-18.6,0.1
+ c-0.2,0-0.3,0.1-0.4,0.2l-9.4,16.3c0,0,0,0,0,0.1c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0
+ l9.2,16.2c0.1,0.1,0.2,0.2,0.4,0.2l18.6-0.1c0,0,0,0,0,0c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1-0.1
+ c0,0,0,0,0-0.1c0,0,0,0,0,0l9.4-16.4C-1311.4-2137.5-1311.4-2137.7-1311.5-2137.8z M-1348.3-2137.7l8.9-15.4l17.6-0.1l-8.9,15.5
+ L-1348.3-2137.7z"/>
+ <rect x="37" y="-2020.5" class="st47" width="22" height="22.6"/>
+
+ <text transform="matrix(1 0 0 1 43 -2006.3434)" class="st35" style="font-family:'SourceCodeVariable-Roman'; font-size:20px; letter-spacing:1;">❤</text>
+ <g>
+ <g>
+ <path class="st46" d="M72.1-2006.5h6.4v-9.7h3.2v9.7h3.2v-13H72.1V-2006.5z M102.8-2019.5v13h6.4v-9.7h3.2v9.7h3.2v-9.7h3.2v9.7
+ h3.2v-13H102.8L102.8-2019.5z M93.8-2016.2H97v6.5h-3.2V-2016.2z M87.4-2003.3h6.4v-3.2h6.4v-13H87.4V-2003.3z"/>
+ <rect x="72.1" y="-2019.5" class="st47" width="49.9" height="16.2"/>
+ </g>
+ <polygon class="st46" points="137.1,-2016.3 137.1,-2010 143.2,-2010 143.2,-2006.9 137,-2006.9 130.7,-2006.9 130.8,-2019.5
+ 143.2,-2019.5 143.2,-2016.4 "/>
+ <rect x="145.8" y="-2019.5" class="st46" width="6.4" height="12.9"/>
+
+ <rect x="151.7" y="-2012.9" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 -1854.8926 -2161.3679)" class="st46" width="3.1" height="9.5"/>
+
+ <rect x="172.9" y="-2011.5" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 -1833.5237 -2181.23)" class="st46" width="2" height="8.3"/>
+ <rect x="159.9" y="-2019.5" class="st46" width="6.4" height="12.9"/>
+ </g>
+ <linearGradient id="SVGID_92_" gradientUnits="userSpaceOnUse" x1="0" y1="-2041.0431" x2="1600" y2="-2041.0431">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <line class="st128" x1="0" y1="-2041" x2="1600" y2="-2041"/>
+ <linearGradient id="SVGID_93_" gradientUnits="userSpaceOnUse" x1="1402.5" y1="-1993.0431" x2="1437.5" y2="-1993.0431">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <line class="st129" x1="1402.5" y1="-1993" x2="1437.5" y2="-1993"/>
+ <line class="st130" x1="1" y1="-1976.5" x2="1600" y2="-1976.5"/>
+ <g>
+ <path class="st14" d="M46-1931c2.4,0,4.4,1.3,5.1,3.6h-2.5c-0.5-1.1-1.5-1.6-2.6-1.6c-1.9,0-3.3,1.4-3.3,3.7
+ c0,2.3,1.4,3.7,3.3,3.7c1.2,0,2.1-0.5,2.6-1.6h2.5c-0.7,2.3-2.7,3.6-5.1,3.6c-3.1,0-5.5-2.4-5.5-5.7
+ C40.5-1928.7,42.9-1931,46-1931z"/>
+ <path class="st14" d="M56.8-1919.6c-2.5,0-4.4-1.8-4.4-4.6c0-2.8,2-4.6,4.4-4.6c2.5,0,4.4,1.8,4.4,4.6
+ C61.4-1921.4,59.4-1919.6,56.8-1919.6z M56.8-1921.5c1.2,0,2.3-0.9,2.3-2.6c0-1.8-1.1-2.6-2.2-2.6s-2.2,0.8-2.2,2.6
+ C54.7-1922.4,55.7-1921.5,56.8-1921.5z"/>
+ <path class="st14" d="M69-1924.6c0-1.4-0.8-2.2-1.9-2.2c-1.2,0-2,0.8-2,2.2v4.9H63v-8.9h2.2v1.1c0.6-0.8,1.5-1.2,2.6-1.2
+ c2,0,3.5,1.3,3.5,3.8v5.2H69V-1924.6z"/>
+ <path class="st14" d="M73.5-1926.7h-1v-1.8h1v-0.4c0-2.2,1.2-3.2,3.6-3.1v1.9c-1.1,0-1.4,0.3-1.4,1.3v0.4h1.5v1.8h-1.5v7h-2.2
+ V-1926.7z"/>
+ <path class="st14" d="M78.4-1931c0-0.7,0.6-1.3,1.3-1.3c0.8,0,1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3C79-1929.6,78.4-1930.2,78.4-1931z
+ M78.6-1928.6h2.2v8.9h-2.2V-1928.6z"/>
+ <path class="st14" d="M86.3-1928.7c1.4,0,2.3,0.6,2.9,1.4v-1.3h2.2v8.9c0,2.4-1.4,4.3-4.3,4.3c-2.4,0-4.1-1.2-4.4-3.3h2.2
+ c0.2,0.8,1,1.3,2.1,1.3c1.2,0,2.1-0.7,2.1-2.4v-1.4c-0.5,0.8-1.5,1.5-2.9,1.5c-2.2,0-4-1.8-4-4.6S84.1-1928.7,86.3-1928.7z
+ M86.9-1926.8c-1.2,0-2.3,0.9-2.3,2.6s1.1,2.6,2.3,2.6c1.2,0,2.3-0.9,2.3-2.6S88.1-1926.8,86.9-1926.8z"/>
+ <path class="st14" d="M101.7-1919.7h-2.2v-1.1c-0.5,0.8-1.5,1.2-2.6,1.2c-2,0-3.5-1.3-3.5-3.8v-5.2h2.2v4.9c0,1.4,0.8,2.2,1.9,2.2
+ c1.2,0,1.9-0.8,1.9-2.2v-4.9h2.2V-1919.7z"/>
+ <path class="st14" d="M106-1919.7h-2.2v-8.9h2.2v1.4c0.5-0.9,1.5-1.5,2.7-1.5v2.4h-0.6c-1.3,0-2.1,0.5-2.1,2.2V-1919.7z"/>
+ <path class="st14" d="M113.9-1919.6c-2.5,0-4.3-1.8-4.3-4.6c0-2.8,1.8-4.6,4.3-4.6c2.5,0,4.3,1.7,4.3,4.4c0,0.3,0,0.6-0.1,0.9
+ h-6.3c0.1,1.3,1,2,2.1,2c0.9,0,1.5-0.5,1.7-1.1h2.4C117.5-1920.9,116-1919.6,113.9-1919.6z M111.8-1925h4.1c0-1.2-0.9-1.9-2.1-1.9
+ C112.8-1926.9,111.9-1926.2,111.8-1925z"/>
+ <path class="st14" d="M132.7-1930.9v11.2h-2.2l-4.9-7.7v7.7h-2.2v-11.2h2.2l4.9,7.7v-7.7H132.7z"/>
+ <path class="st14" d="M138.9-1924h-1.8v4.3h-2.2v-11.2h4c2.6,0,3.9,1.5,3.9,3.5C142.8-1925.7,141.7-1924,138.9-1924z
+ M138.8-1925.8c1.2,0,1.8-0.6,1.8-1.6c0-1-0.5-1.6-1.8-1.6h-1.7v3.2H138.8z"/>
+ <path class="st14" d="M144.3-1930.9h2.5l3.5,8.3l3.5-8.3h2.5v11.2H154v-7.3l-2.9,7.3h-1.7l-2.9-7.3v7.3h-2.2V-1930.9z"/>
+ </g>
+ <g>
+ <path class="st14" d="M41-1885.9h2.2v6.9c0,1.5,0.8,2.3,2.2,2.3c1.4,0,2.2-0.8,2.2-2.3v-6.9h2.2v6.9c0,2.9-2.1,4.4-4.4,4.4
+ c-2.4,0-4.4-1.4-4.4-4.4V-1885.9z"/>
+ <path class="st14" d="M55.2-1874.6c-2.2,0-3.7-1.3-3.8-2.9h2.2c0.1,0.7,0.7,1.2,1.6,1.2c0.9,0,1.3-0.4,1.3-0.9
+ c0-1.6-4.9-0.6-4.9-3.8c0-1.5,1.3-2.7,3.4-2.7c2.1,0,3.4,1.2,3.5,2.9h-2.1c-0.1-0.7-0.6-1.2-1.5-1.2c-0.8,0-1.2,0.3-1.2,0.8
+ c0,1.6,4.8,0.6,4.9,3.9C58.6-1875.7,57.3-1874.6,55.2-1874.6z"/>
+ <path class="st14" d="M60.2-1886c0-0.7,0.6-1.3,1.3-1.3c0.8,0,1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3
+ C60.7-1884.6,60.2-1885.2,60.2-1886z M60.4-1883.6h2.2v8.9h-2.2V-1883.6z"/>
+ <path class="st14" d="M70.8-1879.6c0-1.4-0.8-2.2-1.9-2.2c-1.2,0-2,0.8-2,2.2v4.9h-2.2v-8.9h2.2v1.1c0.6-0.8,1.5-1.2,2.6-1.2
+ c2,0,3.5,1.3,3.5,3.8v5.2h-2.2V-1879.6z"/>
+ <path class="st14" d="M78.4-1883.7c1.4,0,2.3,0.6,2.9,1.4v-1.3h2.2v8.9c0,2.4-1.4,4.3-4.3,4.3c-2.4,0-4.1-1.2-4.4-3.3H77
+ c0.2,0.8,1,1.3,2.1,1.3c1.2,0,2.1-0.7,2.1-2.4v-1.4c-0.5,0.8-1.5,1.5-2.9,1.5c-2.2,0-4-1.8-4-4.6S76.2-1883.7,78.4-1883.7z
+ M79-1881.8c-1.2,0-2.3,0.9-2.3,2.6s1.1,2.6,2.3,2.6c1.2,0,2.3-0.9,2.3-2.6S80.2-1881.8,79-1881.8z"/>
+ <path class="st14" d="M98.6-1885.9v11.2h-2.2l-4.9-7.7v7.7h-2.2v-11.2h2.2l4.9,7.7v-7.7H98.6z"/>
+ <path class="st14" d="M104.8-1879h-1.8v4.3h-2.2v-11.2h4c2.6,0,3.9,1.5,3.9,3.5C108.7-1880.7,107.6-1879,104.8-1879z
+ M104.7-1880.8c1.2,0,1.8-0.6,1.8-1.6c0-1-0.5-1.6-1.8-1.6h-1.7v3.2H104.7z"/>
+ <path class="st14" d="M110.2-1885.9h2.5l3.5,8.3l3.5-8.3h2.5v11.2h-2.2v-7.3l-2.9,7.3h-1.7l-2.9-7.3v7.3h-2.2V-1885.9z"/>
+ </g>
+ <g>
+ <path class="st14" d="M46.9-1842c2.4,0,4.4,1.3,5.1,3.6h-2.5c-0.5-1.1-1.5-1.6-2.6-1.6c-1.9,0-3.3,1.4-3.3,3.7
+ c0,2.3,1.4,3.7,3.3,3.7c1.2,0,2.1-0.5,2.6-1.6H52c-0.7,2.3-2.7,3.6-5.1,3.6c-3.1,0-5.5-2.4-5.5-5.7
+ C41.4-1839.7,43.7-1842,46.9-1842z"/>
+ <path class="st14" d="M56-1841.9v9.4h3.6v1.8h-5.8v-11.2H56z"/>
+ <path class="st14" d="M61-1841.9h2.2v11.2H61V-1841.9z"/>
+ <path class="st14" d="M74-1842c2.4,0,4.4,1.3,5.1,3.6h-2.5c-0.5-1.1-1.5-1.6-2.6-1.6c-1.9,0-3.3,1.4-3.3,3.7
+ c0,2.3,1.4,3.7,3.3,3.7c1.2,0,2.1-0.5,2.6-1.6h2.5c-0.7,2.3-2.7,3.6-5.1,3.6c-3.1,0-5.5-2.4-5.5-5.7
+ C68.5-1839.7,70.9-1842,74-1842z"/>
+ <path class="st14" d="M84.8-1830.6c-2.5,0-4.4-1.8-4.4-4.6c0-2.8,2-4.6,4.4-4.6c2.5,0,4.4,1.8,4.4,4.6
+ C89.4-1832.4,87.4-1830.6,84.8-1830.6z M84.8-1832.5c1.2,0,2.3-0.9,2.3-2.6c0-1.8-1.1-2.6-2.2-2.6s-2.2,0.8-2.2,2.6
+ C82.7-1833.4,83.7-1832.5,84.8-1832.5z"/>
+ <path class="st14" d="M103-1835.6c0-1.4-0.8-2.1-1.9-2.1c-1.2,0-1.9,0.7-1.9,2.1v4.9H97v-4.9c0-1.4-0.8-2.1-1.9-2.1
+ c-1.2,0-2,0.7-2,2.1v4.9h-2.2v-8.9h2.2v1.1c0.5-0.7,1.5-1.2,2.5-1.2c1.3,0,2.5,0.6,3,1.7c0.6-1,1.7-1.7,3-1.7
+ c2.1,0,3.5,1.3,3.5,3.8v5.2H103V-1835.6z"/>
+ <path class="st14" d="M119.4-1835.6c0-1.4-0.8-2.1-1.9-2.1c-1.2,0-1.9,0.7-1.9,2.1v4.9h-2.2v-4.9c0-1.4-0.8-2.1-1.9-2.1
+ c-1.2,0-2,0.7-2,2.1v4.9h-2.2v-8.9h2.2v1.1c0.5-0.7,1.5-1.2,2.5-1.2c1.3,0,2.5,0.6,3,1.7c0.6-1,1.7-1.7,3-1.7
+ c2.1,0,3.5,1.3,3.5,3.8v5.2h-2.2V-1835.6z"/>
+ <path class="st14" d="M127-1839.7c1.4,0,2.3,0.7,2.9,1.4v-1.3h2.2v8.9h-2.2v-1.3c-0.5,0.8-1.5,1.4-2.9,1.4c-2.2,0-3.9-1.8-3.9-4.6
+ S124.8-1839.7,127-1839.7z M127.6-1837.8c-1.2,0-2.3,0.9-2.3,2.6s1.1,2.6,2.3,2.6c1.2,0,2.3-0.9,2.3-2.6
+ S128.8-1837.8,127.6-1837.8z"/>
+ <path class="st14" d="M140.3-1835.6c0-1.4-0.8-2.2-1.9-2.2c-1.2,0-2,0.8-2,2.2v4.9h-2.2v-8.9h2.2v1.1c0.6-0.8,1.5-1.2,2.6-1.2
+ c2,0,3.5,1.3,3.5,3.8v5.2h-2.2V-1835.6z"/>
+ <path class="st14" d="M147.9-1839.7c1.1,0,2.2,0.5,2.8,1.4v-4.2h2.2v11.8h-2.2v-1.3c-0.5,0.8-1.5,1.5-2.8,1.5c-2.2,0-4-1.8-4-4.6
+ S145.7-1839.7,147.9-1839.7z M148.4-1837.8c-1.2,0-2.3,0.9-2.3,2.6s1.1,2.6,2.3,2.6c1.2,0,2.3-0.9,2.3-2.6
+ S149.6-1837.8,148.4-1837.8z"/>
+ <path class="st14" d="M158.4-1830.6c-2.2,0-3.7-1.3-3.8-2.9h2.2c0.1,0.7,0.7,1.2,1.6,1.2c0.9,0,1.3-0.4,1.3-0.9
+ c0-1.6-4.9-0.6-4.9-3.8c0-1.5,1.3-2.7,3.4-2.7c2.1,0,3.4,1.2,3.5,2.9h-2.1c-0.1-0.7-0.6-1.2-1.5-1.2c-0.8,0-1.2,0.3-1.2,0.8
+ c0,1.6,4.8,0.6,4.9,3.9C161.8-1831.7,160.5-1830.6,158.4-1830.6z"/>
+ </g>
+ <text transform="matrix(1 0 0 1 1402.9082 -2003.2418)"><tspan x="0" y="0" style="font-family:'Poppins-Medium'; font-size:14px;">docs</tspan><tspan x="34.3" y="0" style="font-family:'Poppins-Medium'; font-size:14px; letter-spacing:-1;"> </tspan><tspan x="36" y="0" style="font-family:'Poppins-Medium'; font-size:14px; letter-spacing:32;"> </tspan><tspan x="72" y="0" style="font-family:'Poppins-Medium'; font-size:14px;">npmjs.com</tspan><tspan x="151.5" y="0" style="font-family:'Poppins-Medium'; font-size:14px; letter-spacing:24;"> </tspan></text>
+ <text transform="matrix(1 0 0 1 -1292.8369 -1945.6735)"><tspan x="0" y="0" class="st131" style="font-family:'Poppins-Medium'; font-size:12px;">These little terminal windows could be secretly </tspan><tspan x="0" y="14.4" class="st131" style="font-family:'Poppins-Medium'; font-size:12px;">dismissable, and if you close all they just reappear again</tspan></text>
+ <text transform="matrix(1 0 0 1 -522.8369 -1633.6735)" class="st131" style="font-family:'Poppins-Medium'; font-size:12px;">&lt;----- imagine this is blinking </text>
+ <text transform="matrix(1 0 0 1 -909.8369 -806.6735)" class="st131" style="font-family:'Poppins-Medium'; font-size:12px;">Hmm I should probably put some CTAs in these sections</text>
+ <g>
+ <rect x="-1212.9" y="546.4" class="st47" width="951.9" height="118.3"/>
+ <text transform="matrix(0.9755 0 0 1 -1212.8857 559.7342)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Regular'; font-size:18px;">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod Lorem ipsum </tspan><tspan x="0" y="27" class="st8" style="font-family:'Poppins-Regular'; font-size:18px;">dolor sit amet, tetuer adipiscing elit, sed diam nonummy nibmod </tspan></text>
+ </g>
+ <text transform="matrix(1 0 0 1 39.8115 -1785.5431)" class="st132" style="font-family:'Poppins-Regular'; font-size:10px;">set access level on published packages</text>
+
+ <text transform="matrix(0.9997 -2.420000e-02 2.420000e-02 0.9997 41.1204 -1800.894)" style="opacity:0.9;fill:#FB3B49; font-family:'Poppins-SemiBold'; font-size:14px;">access</text>
+
+ <text transform="matrix(1 0 0 1 40.8115 -1756.5709)" style="opacity:0.9;fill:#FB3B49; font-family:'Poppins-SemiBold'; font-size:14px;">add user</text>
+ <g>
+ <text transform="matrix(1 0 0 1 40.8115 -1663.5709)" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">bin</text>
+ </g>
+ <g>
+ <text transform="matrix(1 0 0 1 40.8115 -1616.5709)" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">bugs</text>
+ </g>
+ <rect x="628" y="-1286.5" class="st133" width="64" height="27"/>
+ <rect x="784" y="-1287.5" class="st133" width="64" height="27"/>
+ <g>
+ <text transform="matrix(1 0 0 1 40.8115 -1568.5709)" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">build</text>
+ </g>
+ <text transform="matrix(1 0 0 1 40.8115 -1524.5709)" class="st51"><tspan x="0" y="0" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">bundle</tspan><tspan x="0" y="39.8" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">cache </tspan><tspan x="0" y="53" class="st132" style="font-family:'MyriadPro-Regular'; font-size:11px;">manipulates packages cache</tspan><tspan x="0" y="86.6" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">ci </tspan><tspan x="0" y="98.6" class="st132" style="font-family:'Poppins-Regular'; font-size:10px;">install a project with a clean slate</tspan><tspan x="0" y="132.2" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">config</tspan><tspan x="0" y="144.2" class="st132" style="font-family:'Poppins-Regular'; font-size:10px;">manage npm configuration files</tspan><tspan x="0" y="177.8" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">dedupe</tspan><tspan x="0" y="189.8" class="st132" style="font-family:'Poppins-Regular'; font-size:10px;">reduce duplication</tspan><tspan x="0" y="223.4" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">deprecate</tspan><tspan x="0" y="235.4" class="st132" style="font-family:'Poppins-Regular'; font-size:10px;">deprecate a version of a package</tspan><tspan x="0" y="269" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">dist-tag</tspan><tspan x="0" y="281" class="st132" style="font-family:'Poppins-Regular'; font-size:10px;">modify package distribution tags</tspan></text>
+ <text transform="matrix(1 0 0 1 40.8115 -1739.5431)" class="st132" style="font-family:'Poppins-Regular'; font-size:10px;">add a registry user account</text>
+ <g>
+ <text transform="matrix(1 0 0 1 40.8115 -1709.7887)" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">audit</text>
+ <text transform="matrix(1 0 0 1 39.8115 -1694.6564)" class="st132" style="font-family:'Poppins-Regular'; font-size:10px;">run a security audit</text>
+ </g>
+ <text transform="matrix(1 0 0 1 39.8115 -1649.5431)" class="st132" style="font-family:'Poppins-Regular'; font-size:10px;">display npm bin folder</text>
+ <rect x="531" y="-1465.5" class="st133" width="96" height="25"/>
+ <text transform="matrix(1 0 0 1 41.8115 -1555.5431)" class="st132" style="font-family:'MyriadPro-Regular'; font-size:11px;">build a package</text>
+ <text transform="matrix(1 0 0 1 40.8115 -1512.5431)" class="st132" style="font-family:'MyriadPro-Regular'; font-size:11px;">removed</text>
+ <rect x="649" y="-1429.5" class="st133" width="49" height="21"/>
+ <rect x="1147" y="-1465.5" class="st133" width="125" height="26"/>
+ <text transform="matrix(1 0 0 1 41.8115 -1602.5431)" class="st132" style="font-family:'Poppins-Regular'; font-size:10px;">bugs for a package in a web browser maybe</text>
+ <polyline class="st134" points="168,-1928.5 174,-1922.5 180,-1928.5 "/>
+ <polyline class="st134" points="170,-1833.5 176,-1839.5 182,-1833.5 "/>
+ <polyline class="st134" points="134,-1883.5 140,-1877.5 146,-1883.5 "/>
+ <rect x="31" y="-1635.5" class="st135" width="282" height="45"/>
+ <text transform="matrix(1 0 0 1 498.9707 -1891.4962)"><tspan x="0" y="0" class="st98" style="font-family:'Poppins-SemiBold'; font-size:42px;"> npm-bugs</tspan><tspan x="0" y="40" class="st98" style="font-family:'Poppins-Regular'; font-size:24px;">Bugs for a package in a web browser maybe</tspan></text>
+ <text transform="matrix(1 0 0 1 500.7861 -1769.2501)" class="st136" style="font-family:'Poppins-Medium'; font-size:24px;">Synopsis</text>
+ <text transform="matrix(1 0 0 1 500.7861 -1522.2501)" class="st136" style="font-family:'Poppins-Medium'; font-size:24px;">Description</text>
+ <g>
+ <rect x="499.3" y="-1493.6" class="st47" width="894.4" height="310.2"/>
+ <text transform="matrix(1 0 0 1 499.2539 -1481.7189)"><tspan x="0" y="0" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">This command tries to guess at the likely location of a package’s bug tracker URL, and then tries to open it using </tspan><tspan x="0" y="34" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">the</tspan><tspan x="26" y="34" class="st98" style="font-family:'AndaleMono'; font-size:16px;"> --browser</tspan><tspan x="122" y="34" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;"> config param. If no package name is provided, it will search for a</tspan><tspan x="643.2" y="34" class="st98" style="font-family:'AndaleMono'; font-size:16px;"> package.json</tspan><tspan x="768" y="34" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;"> in the current </tspan><tspan x="0" y="68" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">folder and use the </tspan><tspan x="153.9" y="68" class="st98" style="font-family:'AndaleMono'; font-size:16px;">name</tspan><tspan x="192.3" y="68" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;"> property.</tspan></text>
+ </g>
+ <text transform="matrix(1 0 0 1 500.7861 -1348.2501)" class="st136" style="font-family:'Poppins-Medium'; font-size:24px;">Configuration</text>
+ <text transform="matrix(1 0 0 1 500.7861 -1305.2501)" class="st137" style="font-family:'Poppins-Medium'; font-size:17px;">browser</text>
+ <linearGradient id="SVGID_94_" gradientUnits="userSpaceOnUse" x1="-1998.5436" y1="588.9249" x2="-2875.4563" y2="1633.9889">
+ <stop offset="0" style="stop-color:#D4BEB8"/>
+ <stop offset="1" style="stop-color:#FFFFFF"/>
+ </linearGradient>
+ <rect x="-3236" y="891.5" class="st138" width="1598" height="440"/>
+ <text transform="matrix(1 0 0 1 501.7861 -1176.2501)" class="st137" style="font-family:'Poppins-Medium'; font-size:17px;">registry</text>
+ <g>
+ <text transform="matrix(1 0 0 1 501.7861 -1017.2502)" class="st136" style="font-family:'Poppins-Medium'; font-size:24px;">See Also</text>
+ </g>
+ <g>
+ <rect x="517.3" y="-1280.3" class="st47" width="754.9" height="125.6"/>
+ <text transform="matrix(1 0 0 1 517.2998 -1268.4591)"><tspan x="0" y="0" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">Default: OS X:</tspan><tspan x="104.6" y="0" class="st98" style="font-family:'Inconsolata-Bold'; font-size:16px;"> </tspan><tspan x="108" y="0" class="st98" style="font-family:'AndaleMono'; font-size:16px;">&quot;open&quot;,</tspan><tspan x="175.2" y="0" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;"> Windows: </tspan><tspan x="259.5" y="0" class="st98" style="font-family:'AndaleMono'; font-size:16px;">&quot;start&quot;</tspan><tspan x="326.7" y="0" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">, Others: </tspan><tspan x="398.9" y="0" class="st98" style="font-family:'AndaleMono'; font-size:16px;">&quot;xdg-open&quot;</tspan><tspan x="0" y="34" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">Type: String</tspan></text>
+ </g>
+ <circle class="st98" cx="507" cy="-1274.5" r="4"/>
+ <circle class="st98" cx="507" cy="-1239.5" r="4"/>
+ <g>
+ <text transform="matrix(1 0 0 1 517.2998 -1143.7843)"><tspan x="0" y="0" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">Default: https://registry.npmjs.org/</tspan><tspan x="0" y="34" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">Type: url</tspan></text>
+ </g>
+ <rect x="920" y="-1284.5" class="st133" width="94" height="25"/>
+ <circle class="st98" cx="506" cy="-1150.5" r="4"/>
+ <circle class="st98" cx="506" cy="-1115.5" r="4"/>
+ <g>
+ <text transform="matrix(1 0 0 1 506.1631 -969.6349)"><tspan x="0" y="0" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">npm-docs</tspan><tspan x="0" y="29" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">npm-view</tspan><tspan x="0" y="58" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">npm-publish</tspan><tspan x="0" y="87" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">npm-registry</tspan><tspan x="0" y="116" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">npm-config</tspan><tspan x="0" y="145" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">npm-config</tspan><tspan x="0" y="174" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">npmrc</tspan><tspan x="0" y="203" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">package.json</tspan></text>
+ </g>
+ <line class="st2" x1="498" y1="-1002.5" x2="1345.5" y2="-1002.5"/>
+ <path class="st98" d="M1265.6-1591.5H505.4c-1.9,0-3.4-1.5-3.4-3.4v-146.3c0-1.9,1.5-3.4,3.4-3.4h760.3c1.9,0,3.4,1.5,3.4,3.4
+ v146.3C1269-1593,1267.5-1591.5,1265.6-1591.5z"/>
+ <text transform="matrix(1 0 0 1 528.2207 -1684.9684)"><tspan x="0" y="0" class="st8" style="font-family:'AndaleMono'; font-size:30px;">npm bugs [&lt;pkgname&gt;]</tspan><tspan x="0" y="60" class="st8" style="font-family:'AndaleMono'; font-size:30px;">aliases: issues</tspan></text>
+ <rect x="998" y="-611.5" class="st133" width="247" height="30"/>
+ <text transform="matrix(1 0 0 1 531.667 -625.6135)"><tspan x="0" y="0" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;"> Found a typo?</tspan><tspan x="147.4" y="0" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;"> Let us know!</tspan><tspan x="0" y="34" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">The current stable version of npm is here. To upgrade run: </tspan><tspan x="468.1" y="34" class="st98" style="font-family:'AndaleMono'; font-size:16px;">npm install npm@latest -g</tspan><tspan x="0" y="68" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">To report bugs or submit feature requests for the docs, please post </tspan><tspan x="537" y="68" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">here</tspan><tspan x="573.8" y="68" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">. </tspan><tspan x="0" y="102" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">Submit npm issues</tspan><tspan x="151.9" y="102" style="font-family:'Poppins-Regular'; font-size:16px;"> </tspan><tspan x="156.2" y="102" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">here.</tspan></text>
+ <rect y="-1976.5" class="st139" width="330" height="1207"/>
+ <linearGradient id="SVGID_95_" gradientUnits="userSpaceOnUse" x1="506.9974" y1="-1908.2098" x2="526.4839" y2="-1908.2098">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_96_" gradientUnits="userSpaceOnUse" x1="506.7565" y1="-1908.2098" x2="526.7249" y2="-1908.2098">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st140" d="M519.4-1902.4c0,0-0.1,0-0.1,0l-12-1.2c-0.2,0-0.3-0.1-0.3-0.3c0,0,0-0.1,0-0.1l6.9-9.9
+ c0.1-0.1,0.2-0.1,0.3-0.1l12,1.2c0.2,0,0.3,0.1,0.3,0.3c0,0,0,0.1,0,0.1l-6.9,9.9C519.5-1902.5,519.4-1902.4,519.4-1902.4z"/>
+ <linearGradient id="SVGID_97_" gradientUnits="userSpaceOnUse" x1="506.9964" y1="-1897.6986" x2="524.688" y2="-1897.6986">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_98_" gradientUnits="userSpaceOnUse" x1="506.7554" y1="-1897.6986" x2="524.929" y2="-1897.6986">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st141" d="M524.5-1891.3c0,0-0.1,0-0.1,0l-12-1.2c-0.1,0-0.2-0.1-0.2-0.2l-5.1-11.1c-0.1-0.1,0-0.3,0.1-0.4
+ s0.3,0,0.4,0.1l5.1,11l11.4,1.1l-4.9-10.7c-0.1-0.1,0-0.3,0.1-0.4s0.3,0,0.4,0.1l5.1,11.1C524.7-1891.5,524.7-1891.4,524.5-1891.3z
+ "/>
+ <linearGradient id="SVGID_99_" gradientUnits="userSpaceOnUse" x1="524.1332" y1="-1902.0594" x2="531.602" y2="-1902.0594">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_100_" gradientUnits="userSpaceOnUse" x1="523.8922" y1="-1902.0594" x2="531.843" y2="-1902.0594">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st142" d="M524.5-1891.3c-0.1,0-0.2,0-0.3,0c-0.1-0.1-0.2-0.3-0.1-0.4l6.8-9.8l-5-11c-0.1-0.1,0-0.3,0.1-0.4
+ s0.3,0,0.4,0.1l5.1,11.1c0,0.1,0,0.2,0,0.3l-6.9,9.9C524.6-1891.4,524.6-1891.3,524.5-1891.3z"/>
+ <path class="st120" d="M-2635,1027.5"/>
+ <path class="st120" d="M-3017.5,873"/>
+ <path class="st143" d="M-3113.4,1141.1c-0.1,0-0.2-0.1-0.3-0.2l-18.2-21.2c-0.2-0.3-0.2-0.7,0.1-0.9c0.1-0.1,0.2-0.1,0.3-0.1
+ l27.4-5.5c0.2,0,0.5,0,0.6,0.2l18.2,21.2c0.2,0.3,0.2,0.7-0.1,0.9c-0.1,0.1-0.2,0.1-0.3,0.1l-27.4,5.5
+ C-3113.2,1141.1-3113.3,1141.1-3113.4,1141.1z"/>
+ <path class="st14" d="M-3113.8,1140.3c0.1-0.3,0.5-0.5,0.8-0.4c0.3,0.1,0.5,0.5,0.4,0.8l-9.2,26.8c-0.1,0.3-0.5,0.5-0.8,0.4
+ c-0.1,0-0.2-0.1-0.3-0.2l-18.3-21.1c-0.1-0.2-0.2-0.4-0.1-0.6l9.3-26.9c0.1-0.3,0.5-0.5,0.8-0.4c0.3,0.1,0.5,0.5,0.4,0.8"/>
+ <path class="st14" d="M-3122.6,1167.9c-0.2-0.1-0.4-0.3-0.4-0.5c-0.1-0.3,0.2-0.7,0.5-0.8l27.1-5.4l9.1-26.4
+ c0.1-0.3,0.5-0.5,0.8-0.4c0.3,0.1,0.5,0.5,0.4,0.8l-9.2,26.8c-0.1,0.2-0.3,0.4-0.5,0.4l-27.4,5.5
+ C-3122.4,1167.9-3122.5,1167.9-3122.6,1167.9z"/>
+ <linearGradient id="SVGID_101_" gradientUnits="userSpaceOnUse" x1="-2621.4111" y1="951.0319" x2="-2591.4087" y2="951.0319">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_102_" gradientUnits="userSpaceOnUse" x1="-2621.7822" y1="951.0319" x2="-2591.0378" y2="951.0319">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st144" d="M-2602.3,959.9c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.4-0.2-0.4-0.5c0-0.1,0-0.1,0.1-0.2l10.6-15.2
+ c0.1-0.1,0.2-0.2,0.4-0.2l18.5,1.8c0.2,0,0.4,0.2,0.4,0.5c0,0.1,0,0.1-0.1,0.2l-10.7,15.2C-2602.2,959.9-2602.2,959.9-2602.3,959.9
+ z"/>
+ <linearGradient id="SVGID_103_" gradientUnits="userSpaceOnUse" x1="-2621.4128" y1="967.2155" x2="-2594.1738" y2="967.2155">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st145" d="M-2594.4,977.1c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.3-0.1-0.3-0.2l-7.9-17.2c-0.1-0.2,0-0.5,0.2-0.6
+ c0.2-0.1,0.5,0,0.6,0.2l7.8,16.9l17.5,1.7l-7.6-16.5c-0.1-0.2,0-0.5,0.2-0.6c0.2-0.1,0.5,0,0.6,0.2l7.9,17.1
+ C-2594.1,976.7-2594.2,977-2594.4,977.1z"/>
+ <linearGradient id="SVGID_104_" gradientUnits="userSpaceOnUse" x1="-2595.0281" y1="960.5013" x2="-2583.5286" y2="960.5013">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st146" d="M-2594.4,977.1c-0.1,0.1-0.3,0-0.4,0c-0.2-0.1-0.2-0.4-0.1-0.6l10.5-15.1l-7.8-16.9c-0.1-0.2,0-0.5,0.2-0.6
+ c0.2-0.1,0.5,0,0.6,0.2l7.9,17.1c0.1,0.1,0.1,0.3,0,0.4l-10.6,15.2C-2594.3,977-2594.4,977-2594.4,977.1z"/>
+ <path class="st120" d="M-1763.5,571.4"/>
+ <path class="st92" d="M-1823.1,1005.1c-0.1,0-0.2,0-0.3,0l-26.6-8.5c-0.3-0.1-0.5-0.5-0.4-0.8c0-0.1,0.1-0.2,0.2-0.3l20.5-19.1
+ c0.2-0.2,0.4-0.2,0.6-0.1l26.6,8.5c0.3,0.1,0.5,0.5,0.4,0.8c0,0.1-0.1,0.2-0.2,0.3l-20.5,19
+ C-1822.9,1005-1823,1005.1-1823.1,1005.1z"/>
+ <path class="st92" d="M-1816.9,1032.8c-0.1,0-0.2,0-0.3,0l-26.6-8.4c-0.2-0.1-0.4-0.2-0.4-0.5l-6.2-27.7c-0.1-0.3,0.1-0.7,0.5-0.8
+ s0.7,0.1,0.8,0.5l6.1,27.4l25.2,8l-5.9-26.6c-0.1-0.3,0.1-0.7,0.5-0.8c0.3-0.1,0.7,0.1,0.8,0.5l6.2,27.7
+ C-1816.3,1032.3-1816.6,1032.7-1816.9,1032.8z"/>
+ <path class="st92" d="M-1816.9,1032.8c-0.2,0-0.5,0-0.6-0.2c-0.2-0.3-0.2-0.7,0-0.9l20.2-18.8l-6.1-27.3c-0.1-0.3,0.1-0.7,0.5-0.8
+ c0.3-0.1,0.7,0.1,0.8,0.5l6.2,27.6c0.1,0.2,0,0.5-0.2,0.6l-20.5,19.1C-1816.7,1032.7-1816.8,1032.7-1816.9,1032.8z"/>
+ <path class="st93" d="M-2179.9,1206.5c-0.1-0.1-0.2-0.1-0.2-0.2l-10.2-23.9c-0.1-0.3,0-0.7,0.3-0.8c0.1,0,0.2-0.1,0.3,0l25.9,2.9
+ c0.2,0,0.4,0.2,0.5,0.4l10.1,24c0.1,0.3,0,0.7-0.3,0.8c-0.1,0-0.2,0.1-0.3,0l-25.8-2.9C-2179.7,1206.6-2179.8,1206.6-2179.9,1206.5
+ z"/>
+ <path class="st93" d="M-2195.6,1227.7c-0.1-0.1-0.2-0.1-0.2-0.2l-10.2-23.9c-0.1-0.2-0.1-0.4,0.1-0.6l15.8-21.2
+ c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,0.3,0.6,0.1,0.8l-15.6,20.9l9.6,22.6l15.1-20.3c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,25.3,4,25.1,4.3
+ l-40.7,17.7C-2195,1227.8-2195.4,1227.9-2195.6,1227.7z"/>
+ <path class="st93" d="M-2154.2,1208.6c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,0.3,0.6,0.1,0.8l-15.7,21.1c-0.1,0.2-0.3,0.3-0.5,0.2
+ l-25.9-2.9c-0.1,0-0.2-0.1-0.3-0.1c-0.2-0.1-0.3-0.3-0.2-0.5c0-0.3,0.3-0.6,0.7-0.5"/>
+ <g>
+ <rect x="-2902.9" y="560.4" class="st47" width="951.9" height="118.3"/>
+ <text transform="matrix(0.9755 0 0 1 -2878.0029 578.1746)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</tspan><tspan x="-25.5" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="-20.2" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">nibh</tspan><tspan x="32.6" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="37.9" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">euismod</tspan><tspan x="142.7" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="148.1" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">Lorem</tspan><tspan x="222.2" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="227.6" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">ipsum</tspan><tspan x="302.2" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="307.5" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">dolor</tspan><tspan x="369.2" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="374.5" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">sit</tspan><tspan x="401.6" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="407" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">amet,</tspan><tspan x="476.2" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="481.5" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">tetuer</tspan><tspan x="552.9" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="558.2" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">adipiscing</tspan><tspan x="683.1" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="688.4" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">elit,</tspan><tspan x="728.5" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="733.8" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">sed</tspan><tspan x="777.4" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="782.7" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">diam</tspan><tspan x="845.7" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="851" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">nonum</tspan><tspan x="937.1" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">-</tspan><tspan x="393.3" y="100" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">my nibmod </tspan></text>
+ </g>
+ <g>
+ <rect x="-2432.3" y="740.3" class="st14" width="23.3" height="6.1"/>
+ </g>
+ <linearGradient id="SVGID_105_" gradientUnits="userSpaceOnUse" x1="-2791.8535" y1="-1832.7931" x2="-2790.6465" y2="-1832.7931">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st147" x1="-2791" y1="-1832.5" x2="-2791.5" y2="-1833"/>
+ <line class="st40" x1="-2745.1" y1="-1899.7" x2="-2747.8" y2="-1899.7"/>
+ <line class="st40" x1="-2776.8" y1="-1872.5" x2="-2779.5" y2="-1872.5"/>
+ <line class="st40" x1="-2580.2" y1="-1841.3" x2="-2582.9" y2="-1841.3"/>
+ <g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="771" height="491" xlink:href="DEBB70B80992500D.png" transform="matrix(1 0 0 1 -2902 -1936.5431)">
+ </image>
+ <g>
+ <path class="st98" d="M-2130.1-1917.9v468.9c0,2.2-1.8,4-4,4h-748.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h750.6
+ C-2131.4-1920.9-2130.1-1919.5-2130.1-1917.9z"/>
+ <path class="st81" d="M-2130.1-1917.9v468.9c0,2.2-1.8,4-4,4h-748.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h750.6
+ C-2131.4-1920.9-2130.1-1919.5-2130.1-1917.9z"/>
+ </g>
+ </g>
+ <g>
+ <path class="st8" d="M-2130.1-1917.6v21.7c0,1.7-1.3,3-3,3h-750.6c-1.7,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h750.6
+ C-2131.4-1920.6-2130.1-1919.2-2130.1-1917.6z"/>
+ <path class="st62" d="M-2130.1-1917.6v21.7c0,1.7-1.3,3-3,3h-750.6c-1.7,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h750.6
+ C-2131.4-1920.6-2130.1-1919.2-2130.1-1917.6z"/>
+ </g>
+ </g>
+ <g>
+ <line class="st40" x1="-2744.6" y1="-1824.9" x2="-2747.4" y2="-1824.9"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="770" height="490" xlink:href="DEBB70B809925003.png" transform="matrix(1 0 0 1 -2863 -1880.5431)">
+ </image>
+ <g>
+ <path class="st98" d="M-2091.8-1862.2v468.9c0,2.2-1.8,4-4,4h-748.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h750.6
+ C-2093.1-1865.2-2091.8-1863.8-2091.8-1862.2z"/>
+ <path class="st99" d="M-2091.8-1862.2v468.9c0,2.2-1.8,4-4,4h-748.7c-2.2,0-4-1.8-4-4v-468.9c0-1.7,1.3-3,3-3h750.6
+ C-2093.1-1865.2-2091.8-1863.8-2091.8-1862.2z"/>
+ </g>
+ </g>
+ <g>
+ <path class="st8" d="M-2092.1-1862.6v21.7c0,1.7-1.3,3-3,3h-750.6c-1.7,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h750.6
+ C-2093.4-1865.6-2092.1-1864.2-2092.1-1862.6z"/>
+ <path class="st62" d="M-2092.1-1862.6v21.7c0,1.7-1.3,3-3,3h-750.6c-1.7,0-3-1.3-3-3v-21.7c0-1.7,1.3-3,3-3h750.6
+ C-2093.4-1865.6-2092.1-1864.2-2092.1-1862.6z"/>
+ </g>
+ </g>
+ <g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="771" height="490" xlink:href="DEBB70B809925005.png" transform="matrix(1 0 0 1 -2829 -1820.5431)">
+ </image>
+ <g>
+ <path class="st98" d="M-2057.4-1803.7v472.9c0,0.5-0.4,1-1,1h-754.7c-0.5,0-1-0.4-1-1v-472.9c0-1.1,0.9-2,2-2h752.6
+ C-2058.3-1805.7-2057.4-1804.8-2057.4-1803.7z"/>
+ <path class="st99" d="M-2057.4-1803.7v472.9c0,0.5-0.4,1-1,1h-754.7c-0.5,0-1-0.4-1-1v-472.9c0-1.1,0.9-2,2-2h752.6
+ C-2058.3-1805.7-2057.4-1804.8-2057.4-1803.7z"/>
+ </g>
+ </g>
+ <g>
+ <g>
+ <rect x="-2323.3" y="-1652.7" class="st14" width="23.3" height="6.1"/>
+ </g>
+ <g>
+ <polygon class="st14" points="-2713.6,-1658.9 -2717.5,-1663.6 -2706.3,-1673.1 -2717.5,-1682.8 -2713.6,-1687.4
+ -2696.8,-1673.1 "/>
+ </g>
+ <rect x="-2718.7" y="-1586.1" class="st47" width="551.7" height="304.6"/>
+ <text transform="matrix(1 0 0 1 -2718.7363 -1571.3141)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">The</tspan><tspan x="40.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="52.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">intelligent</tspan><tspan x="165.8" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="178.1" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">package</tspan><tspan x="276.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="288.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">manager</tspan><tspan x="391.3" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="403.5" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">for</tspan><tspan x="434.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="446.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">the</tspan><tspan x="482.8" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="495.1" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Node </tspan><tspan x="4.7" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Javascript Platform. Install stuff and get coding!</tspan></text>
+ <g>
+ <rect x="-2716.7" y="-1486.5" class="st14" width="230" height="59.2"/>
+ <rect x="-2710.8" y="-1480.7" class="st19" width="230" height="59.2"/>
+
+ <text transform="matrix(1 0 0 1 -2659.8589 -1448.1315)" class="st8" style="font-family:'Poppins-Bold'; font-size:20px; letter-spacing:1;">Read Docs</text>
+ </g>
+ </g>
+ <g>
+ <path class="st8" d="M-2057.1-1802.6v24.7c0,0,0,0,0,0h-756.6c0,0,0,0,0,0v-24.7c0-1.7,1.3-3,3-3h750.6
+ C-2058.4-1805.6-2057.1-1804.2-2057.1-1802.6z"/>
+ <path class="st62" d="M-2057.1-1802.6v24.7c0,0,0,0,0,0h-756.6c0,0,0,0,0,0v-24.7c0-1.7,1.3-3,3-3h750.6
+ C-2058.4-1805.6-2057.1-1804.2-2057.1-1802.6z"/>
+ </g>
+ <line class="st66" x1="-2797.4" y1="-1795.9" x2="-2789" y2="-1786.9"/>
+ <line class="st66" x1="-2797.7" y1="-1787.2" x2="-2788.7" y2="-1795.6"/>
+ <line class="st66" x1="-2837.4" y1="-1855.9" x2="-2829" y2="-1846.9"/>
+ <line class="st66" x1="-2837.7" y1="-1847.2" x2="-2828.7" y2="-1855.6"/>
+ <line class="st66" x1="-2874.4" y1="-1910.9" x2="-2866" y2="-1901.9"/>
+ <line class="st66" x1="-2874.7" y1="-1902.2" x2="-2865.7" y2="-1910.6"/>
+ </g>
+ <path class="st120" d="M-3170-1557.5"/>
+ <path class="st120" d="M-3152.5-1540"/>
+ <path class="st14" d="M-3050.4-1359.9c-0.1,0-0.2-0.1-0.3-0.2l-18.2-21.2c-0.2-0.3-0.2-0.7,0.1-0.9c0.1-0.1,0.2-0.1,0.3-0.1
+ l27.4-5.5c0.2,0,0.5,0,0.6,0.2l18.2,21.2c0.2,0.3,0.2,0.7-0.1,0.9c-0.1,0.1-0.2,0.1-0.3,0.1l-27.4,5.5
+ C-3050.2-1359.9-3050.3-1359.9-3050.4-1359.9z"/>
+ <path class="st14" d="M-3050.8-1360.7c0.1-0.3,0.5-0.5,0.8-0.4c0.3,0.1,0.5,0.5,0.4,0.8l-9.2,26.8c-0.1,0.3-0.5,0.5-0.8,0.4
+ c-0.1,0-0.2-0.1-0.3-0.2l-18.3-21.1c-0.1-0.2-0.2-0.4-0.1-0.6l9.3-26.9c0.1-0.3,0.5-0.5,0.8-0.4c0.3,0.1,0.5,0.5,0.4,0.8"/>
+ <path class="st14" d="M-3059.6-1333.1c-0.2-0.1-0.4-0.3-0.4-0.5c-0.1-0.3,0.2-0.7,0.5-0.8l27.1-5.4l9.1-26.4
+ c0.1-0.3,0.5-0.5,0.8-0.4c0.3,0.1,0.5,0.5,0.4,0.8l-9.2,26.8c-0.1,0.2-0.3,0.4-0.5,0.4l-27.4,5.5
+ C-3059.4-1333.1-3059.5-1333.1-3059.6-1333.1z"/>
+ <linearGradient id="SVGID_106_" gradientUnits="userSpaceOnUse" x1="-3013.4111" y1="-1633.968" x2="-2983.4087" y2="-1633.968">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_107_" gradientUnits="userSpaceOnUse" x1="-3013.7822" y1="-1633.968" x2="-2983.0378" y2="-1633.968">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st148" d="M-2994.3-1625.1c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.4-0.2-0.4-0.5c0-0.1,0-0.1,0.1-0.2l10.6-15.2
+ c0.1-0.1,0.2-0.2,0.4-0.2l18.5,1.8c0.2,0,0.4,0.2,0.4,0.5c0,0.1,0,0.1-0.1,0.2l-10.7,15.2
+ C-2994.2-1625.1-2994.2-1625.1-2994.3-1625.1z"/>
+ <linearGradient id="SVGID_108_" gradientUnits="userSpaceOnUse" x1="-3013.4128" y1="-1617.7845" x2="-2986.1738" y2="-1617.7845">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_109_" gradientUnits="userSpaceOnUse" x1="-3013.7837" y1="-1617.7845" x2="-2985.8027" y2="-1617.7845">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st149" d="M-2986.4-1607.9c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.3-0.1-0.3-0.2l-7.9-17.2c-0.1-0.2,0-0.5,0.2-0.6
+ c0.2-0.1,0.5,0,0.6,0.2l7.8,16.9l17.5,1.7l-7.6-16.5c-0.1-0.2,0-0.5,0.2-0.6c0.2-0.1,0.5,0,0.6,0.2l7.9,17.1
+ C-2986.1-1608.3-2986.2-1608-2986.4-1607.9z"/>
+ <linearGradient id="SVGID_110_" gradientUnits="userSpaceOnUse" x1="-2987.0281" y1="-1624.4987" x2="-2975.5286" y2="-1624.4987">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_111_" gradientUnits="userSpaceOnUse" x1="-2987.3992" y1="-1624.4987" x2="-2975.1577" y2="-1624.4987">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st150" d="M-2986.4-1607.9c-0.1,0.1-0.3,0-0.4,0c-0.2-0.1-0.2-0.4-0.1-0.6l10.5-15.1l-7.8-16.9c-0.1-0.2,0-0.5,0.2-0.6
+ c0.2-0.1,0.5,0,0.6,0.2l7.9,17.1c0.1,0.1,0.1,0.3,0,0.4l-10.6,15.2C-2986.3-1608-2986.4-1608-2986.4-1607.9z"/>
+ <path class="st92" d="M-3172.3-1890.7c0.1,0,0.1,0.1,0.2,0.2l9.2,16.1c0.1,0.2,0,0.5-0.2,0.6c-0.1,0-0.1,0.1-0.2,0.1l-18.6,0.1
+ c-0.2,0-0.3-0.1-0.4-0.2l-9.2-16.2c-0.1-0.2,0-0.5,0.2-0.6c0.1,0,0.1-0.1,0.2-0.1l18.6-0.1
+ C-3172.4-1890.8-3172.4-1890.8-3172.3-1890.7z"/>
+ <path class="st92" d="M-3172.1-1890.2c-0.1,0.2-0.4,0.3-0.6,0.2c-0.2-0.1-0.3-0.4-0.2-0.6l9.4-16.3c0.1-0.2,0.4-0.3,0.6-0.2
+ c0.1,0,0.1,0.1,0.2,0.2l9.2,16.1c0.1,0.1,0.1,0.3,0,0.4l-9.4,16.4c-0.1,0.2-0.4,0.3-0.6,0.2c-0.2-0.1-0.3-0.4-0.2-0.6"/>
+ <path class="st92" d="M-3162.9-1907.1c0.1,0.1,0.2,0.2,0.2,0.4c0,0.2-0.2,0.4-0.4,0.4l-18.4,0.1l-9.3,16.1
+ c-0.1,0.2-0.4,0.3-0.6,0.2c-0.2-0.1-0.3-0.4-0.2-0.6l9.4-16.3c0.1-0.1,0.2-0.2,0.4-0.2l18.6-0.1
+ C-3163-1907.1-3162.9-1907.1-3162.9-1907.1z"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="356" height="93" xlink:href="DEBB70B809925007.png" transform="matrix(1 0 0 1 -2685.5894 -1716.1324)">
+ </image>
+ <g>
+ <g>
+ <path class="st8" d="M-2684.4-1647.4v-45.8h10.8v4.7c1.5-1.7,3.3-3.1,5.4-4.1c2.1-1,4.2-1.6,6.3-1.6c2.2,0,4.3,0.3,6.1,1
+ c1.8,0.7,3.4,1.8,4.7,3.3c1.3,1.5,2.3,3.5,3,5.9c0.7,2.4,1.1,5.3,1.1,8.7v27.7h-10.5v-27.6c0-1.8-0.2-3.3-0.5-4.6
+ c-0.3-1.3-0.8-2.3-1.3-3.1c-0.6-0.8-1.2-1.4-2-1.8c-0.8-0.4-1.6-0.6-2.6-0.6c-1.3,0-2.6,0.3-3.8,0.8c-1.2,0.6-2.2,1.3-3.1,2.3
+ c-0.9,1-1.5,2.2-2,3.6c-0.5,1.4-0.7,2.9-0.7,4.6v26.5H-2684.4z"/>
+ <path class="st8" d="M-2633.3-1693.2h10.3v4.7c0.7-1,1.5-1.9,2.4-2.6c0.9-0.7,1.8-1.3,2.7-1.8c0.9-0.5,1.9-0.8,2.8-1
+ c1-0.2,1.9-0.3,2.8-0.3c2.6,0,5.1,0.5,7.4,1.6c2.3,1,4.3,2.6,6,4.7s3.1,4.7,4.1,7.8c1,3.1,1.5,6.8,1.5,11.1
+ c0,3.9-0.5,7.2-1.5,10.1c-1,2.9-2.4,5.3-4.1,7.2c-1.7,1.9-3.7,3.4-6,4.4s-4.7,1.5-7.2,1.5c-1.8,0-3.7-0.4-5.6-1.2
+ c-1.9-0.8-3.5-1.9-4.7-3.3v19.4h-10.7L-2633.3-1693.2z M-2622.5-1670.8c0,2.8,0.2,5.2,0.6,7.3c0.4,2,1,3.7,1.7,4.9
+ c0.7,1.2,1.6,2.2,2.7,2.7c1.1,0.6,2.3,0.9,3.6,0.9c1.1,0,2.2-0.3,3.3-0.8c1.1-0.5,2.2-1.4,3.2-2.5c1-1.1,1.7-2.6,2.3-4.5
+ c0.6-1.9,0.9-4.2,0.9-6.9c0-5-0.9-8.8-2.6-11.5c-1.7-2.7-4.2-4-7.5-4c-1.7,0-3.1,0.4-4.2,1.2c-1.1,0.8-1.9,1.8-2.6,3.2
+ c-0.6,1.3-1.1,2.9-1.3,4.6C-2622.4-1674.5-2622.5-1672.7-2622.5-1670.8z"/>
+ <path class="st8" d="M-2583.7-1647.4v-46.3h9.2v2.8c1.4-1.5,2.8-2.6,4.2-3.3c1.4-0.7,2.7-1,4-1c0.6,0,1.2,0.1,1.9,0.3
+ c0.7,0.2,1.3,0.5,2,0.9c0.6,0.4,1.3,1,1.9,1.7c0.6,0.7,1.1,1.6,1.6,2.6c1.1-1.8,2.5-3.1,4.1-4.1c1.7-0.9,3.3-1.4,5-1.4
+ c1.7,0,3.1,0.3,4.3,0.9c1.1,0.6,2,1.5,2.7,2.6c0.7,1.2,1.2,2.6,1.5,4.4c0.3,1.7,0.4,3.7,0.4,6v33.8h-9.9v-32
+ c0-2.5-0.2-4.4-0.6-5.5c-0.4-1.1-1.2-1.7-2.2-1.7c-2.4,0-3.6,3-3.6,9v30.1h-9.9v-31.5c0-1.6-0.1-2.9-0.2-3.9s-0.4-1.7-0.7-2.3
+ c-0.3-0.6-0.6-0.9-0.9-1.1c-0.3-0.2-0.6-0.3-1-0.3c-0.6,0-1.1,0.1-1.6,0.4c-0.5,0.3-0.9,0.7-1.2,1.4c-0.3,0.7-0.6,1.6-0.8,2.7
+ c-0.2,1.1-0.3,2.6-0.3,4.3v30.4H-2583.7z"/>
+ <path class="st8" d="M-2446.2-1677.1c-0.3-0.1-0.4-0.2-0.6-0.4c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.1-0.4-0.2-0.7
+ c-0.1-0.3-0.1-0.6-0.2-0.8c-0.9-1.5-2.2-2.8-3.8-3.8c-1.6-1-3.6-1.6-6-1.6c-1.6,0-3.1,0.4-4.5,1.1c-1.4,0.7-2.7,1.7-3.8,3
+ c-1.1,1.3-1.9,2.8-2.5,4.6c-0.6,1.8-0.9,3.7-0.9,5.9c0,2.2,0.3,4.2,0.9,6c0.6,1.8,1.4,3.4,2.4,4.8c1.1,1.4,2.3,2.5,3.7,3.2
+ c1.4,0.8,3,1.2,4.8,1.2c0.9,0,1.8-0.1,2.7-0.3c0.9-0.2,1.9-0.5,2.9-1c1-0.5,1.9-1.1,2.9-1.9c0.9-0.8,1.8-1.7,2.7-2.8l6.2,7.4
+ c-2.6,2.9-5.3,5-8.3,6.2c-3,1.3-6.2,1.9-9.6,1.9c-3.3,0-6.2-0.6-9-1.8c-2.7-1.2-5.1-2.9-7-5c-1.9-2.1-3.5-4.7-4.6-7.6
+ c-1.1-2.9-1.7-6.1-1.7-9.6c0-3.4,0.5-6.6,1.6-9.6c1.1-3,2.6-5.5,4.6-7.7c2-2.2,4.4-3.9,7.2-5.1c2.8-1.3,5.8-1.9,9.2-1.9
+ c1.8,0,3.6,0.2,5.4,0.6c1.8,0.4,3.4,0.9,4.9,1.7c1.5,0.7,2.9,1.6,4.2,2.7c1.3,1.1,2.4,2.4,3.3,3.8L-2446.2-1677.1z"/>
+ <path class="st8" d="M-2424.9-1713.6h22.4v57.7h12.2v8.5h-35.2v-8.5h12.2v-49.1h-11.7V-1713.6z"/>
+ <path class="st8" d="M-2370.5-1693.2h20.9v37.3h9.9v8.5h-31.3v-8.5h10.8v-28.7h-10.3V-1693.2z M-2354.8-1713.7
+ c0.9,0,1.8,0.2,2.6,0.5c0.8,0.3,1.5,0.8,2.2,1.4c0.6,0.6,1.1,1.3,1.4,2c0.3,0.8,0.5,1.6,0.5,2.4c0,0.9-0.2,1.7-0.5,2.5
+ c-0.4,0.8-0.8,1.5-1.4,2c-0.6,0.6-1.3,1-2.2,1.3c-0.8,0.3-1.7,0.5-2.6,0.5c-0.9,0-1.8-0.2-2.6-0.5c-0.8-0.3-1.5-0.8-2.2-1.3
+ c-0.6-0.6-1.1-1.2-1.4-2s-0.5-1.6-0.5-2.5c0-0.8,0.1-1.5,0.4-2.3c0.3-0.7,0.7-1.4,1.2-2c0.5-0.6,1.2-1.1,2.1-1.5
+ C-2356.9-1713.5-2355.9-1713.7-2354.8-1713.7z"/>
+ </g>
+ </g>
+ </g>
+ <path class="st151" d="M467.9-222.4"/>
+ <path class="st152" d="M100.5-148.4c-0.1,0-0.1-0.1-0.2-0.1l-11-12.7c-0.1-0.2-0.1-0.4,0-0.5c0.1,0,0.1-0.1,0.2-0.1l16.5-3.3
+ c0.1,0,0.3,0,0.4,0.1l11,12.8c0.1,0.2,0.1,0.4,0,0.5c-0.1,0-0.1,0.1-0.2,0.1l-16.5,3.3C100.6-148.4,100.5-148.4,100.5-148.4z"/>
+ <path class="st14" d="M100.2-148.9c0.1-0.2,0.3-0.3,0.5-0.2c0.2,0.1,0.3,0.3,0.2,0.5l-5.5,16.1c-0.1,0.2-0.3,0.3-0.5,0.2
+ c-0.1,0-0.1-0.1-0.2-0.1l-11-12.7c-0.1-0.1-0.1-0.2-0.1-0.4l5.6-16.1c0.1-0.2,0.3-0.3,0.5-0.2c0.2,0.1,0.3,0.3,0.2,0.5"/>
+ <path class="st14" d="M94.9-132.3c-0.1,0-0.2-0.2-0.3-0.3c0-0.2,0.1-0.4,0.3-0.5l16.3-3.3l5.5-15.9c0.1-0.2,0.3-0.3,0.5-0.2
+ s0.3,0.3,0.2,0.5l-5.5,16.1c0,0.1-0.2,0.2-0.3,0.3l-16.5,3.3C95-132.2,95-132.2,94.9-132.3z"/>
+ <linearGradient id="SVGID_112_" gradientUnits="userSpaceOnUse" x1="476.0706" y1="-228.6894" x2="494.0978" y2="-228.6894">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_113_" gradientUnits="userSpaceOnUse" x1="475.8477" y1="-228.6894" x2="494.3207" y2="-228.6894">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st153" d="M487.5-223.3c0,0-0.1,0-0.1,0l-11.1-1.1c-0.1,0-0.2-0.1-0.2-0.3c0,0,0-0.1,0-0.1l6.4-9.2
+ c0.1-0.1,0.1-0.1,0.2-0.1l11.1,1.1c0.1,0,0.2,0.1,0.2,0.3c0,0,0,0.1,0,0.1l-6.4,9.2C487.6-223.4,487.6-223.4,487.5-223.3z"/>
+ <linearGradient id="SVGID_114_" gradientUnits="userSpaceOnUse" x1="476.0696" y1="-218.9654" x2="492.4364" y2="-218.9654">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st154" d="M492.3-213c0,0-0.1,0-0.1,0l-11.1-1.1c-0.1,0-0.2-0.1-0.2-0.1l-4.7-10.3c-0.1-0.1,0-0.3,0.1-0.3
+ c0.1-0.1,0.3,0,0.3,0.1l4.7,10.2l10.5,1l-4.6-9.9c-0.1-0.1,0-0.3,0.1-0.3c0.1-0.1,0.3,0,0.3,0.1l4.7,10.3
+ C492.5-213.3,492.4-213.1,492.3-213z"/>
+ <linearGradient id="SVGID_115_" gradientUnits="userSpaceOnUse" x1="491.9231" y1="-222.9996" x2="498.8326" y2="-222.9996">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st155" d="M492.3-213c-0.1,0-0.2,0-0.3,0c-0.1-0.1-0.1-0.2-0.1-0.4l6.3-9l-4.7-10.1c-0.1-0.1,0-0.3,0.1-0.3
+ c0.1-0.1,0.3,0,0.3,0.1l4.7,10.3c0,0.1,0,0.2,0,0.3l-6.4,9.2C492.4-213.1,492.3-213.1,492.3-213z"/>
+ <path class="st92" d="M1468.8-122c-0.1,0-0.1,0-0.2,0l-16-5.1c-0.2-0.1-0.3-0.3-0.3-0.5c0-0.1,0.1-0.1,0.1-0.2l12.3-11.5
+ c0.1-0.1,0.2-0.1,0.4-0.1l16,5.1c0.2,0.1,0.3,0.3,0.3,0.5c0,0.1-0.1,0.1-0.1,0.2l-12.3,11.4C1468.9-122.1,1468.8-122.1,1468.8-122z
+ "/>
+ <path class="st92" d="M1472.5-105.4c-0.1,0-0.1,0-0.2,0l-16-5.1c-0.1,0-0.2-0.1-0.3-0.3l-3.7-16.7c0-0.2,0.1-0.4,0.3-0.5
+ c0.2,0,0.4,0.1,0.5,0.3l3.7,16.4l15.2,4.8l-3.6-16c0-0.2,0.1-0.4,0.3-0.5c0.2,0,0.4,0.1,0.5,0.3l3.7,16.6
+ C1472.8-105.7,1472.7-105.5,1472.5-105.4z"/>
+ <path class="st92" d="M1472.5-105.4c-0.1,0-0.3,0-0.4-0.1c-0.1-0.2-0.1-0.4,0-0.5l12.1-11.3l-3.7-16.4c0-0.2,0.1-0.4,0.3-0.5
+ s0.4,0.1,0.5,0.3l3.7,16.6c0,0.1,0,0.3-0.1,0.4l-12.3,11.5C1472.6-105.5,1472.5-105.4,1472.5-105.4z"/>
+ <path class="st93" d="M1219.2-199c-0.1,0-0.1-0.1-0.1-0.1l-6.1-14.4c-0.1-0.2,0-0.4,0.2-0.5c0.1,0,0.1,0,0.2,0l15.5,1.7
+ c0.1,0,0.2,0.1,0.3,0.2l6.1,14.4c0.1,0.2,0,0.4-0.2,0.5c-0.1,0-0.1,0-0.2,0l-15.5-1.7C1219.3-199,1219.2-199,1219.2-199z"/>
+ <path class="st93" d="M1209.7-186.3c-0.1,0-0.1-0.1-0.1-0.1l-6.1-14.4c-0.1-0.1,0-0.3,0-0.4l9.5-12.7c0.1-0.2,0.3-0.2,0.5-0.1
+ c0.2,0.1,0.2,0.3,0.1,0.5l-9.4,12.6l5.8,13.6l9.1-12.2c0.1-0.2,0.3-0.2,0.5-0.1c0.2,0.1,15.2,2.4,15.1,2.6l-24.5,10.6
+ C1210.1-186.3,1209.9-186.2,1209.7-186.3z"/>
+ <path class="st93" d="M1234.6-197.8c0.1-0.2,0.3-0.2,0.5-0.1c0.2,0.1,0.2,0.3,0.1,0.5l-9.5,12.7c-0.1,0.1-0.2,0.2-0.3,0.1
+ l-15.5-1.7c-0.1,0-0.1,0-0.2-0.1c-0.1-0.1-0.2-0.2-0.1-0.3c0-0.2,0.2-0.3,0.4-0.3"/>
+ <text transform="matrix(1 0 0 1 636.54 -121.9445)" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">Some footer text or something here </text>
+ <path class="st92" d="M-1494.5-1891.8l-9.2-16.1c0-0.1-0.1-0.1-0.2-0.2c-0.1,0-0.1,0-0.2-0.1c0,0,0,0,0,0l-18.6,0.1
+ c-0.2,0-0.3,0.1-0.4,0.2l-9.4,16.3c0,0,0,0,0,0.1c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0
+ l9.2,16.2c0.1,0.1,0.2,0.2,0.4,0.2l18.6-0.1c0,0,0,0,0,0c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1-0.1
+ c0,0,0,0,0-0.1c0,0,0,0,0,0l9.4-16.4C-1494.4-1891.5-1494.4-1891.7-1494.5-1891.8z M-1531.3-1891.7l8.9-15.4l17.6-0.1l-8.9,15.5
+ L-1531.3-1891.7z"/>
+ <linearGradient id="SVGID_116_" gradientUnits="userSpaceOnUse" x1="-1268.5916" y1="-2147.5432" x2="-1212.4084" y2="-2147.5432">
+ <stop offset="0" style="stop-color:#FB3B49"/>
+ <stop offset="0.9988" style="stop-color:#EC3B49"/>
+ </linearGradient>
+ <path class="st156" d="M-1212.4-2153.1c0-0.1,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0-0.1,0-0.1-0.1-0.1c0,0,0,0,0,0l-18.2-21.2
+ c-0.2-0.2-0.4-0.3-0.6-0.2l-27.4,5.5c0,0,0,0,0,0c-0.1,0-0.2,0.1-0.2,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0.1-0.1,0.1
+ c0,0,0,0.1-0.1,0.1c0,0,0,0,0,0l-9.3,26.9c-0.1,0.2,0,0.5,0.1,0.6l18.3,21.1c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0,0.2,0,0.3,0
+ c0,0,0,0,0,0l27.4-5.5c0.2,0,0.4-0.2,0.5-0.4l9.2-26.8c0,0,0-0.1,0-0.1C-1212.4-2153-1212.4-2153-1212.4-2153.1z M-1222.8-2126.8
+ l-26,5.2l8.7-25.4l26-5.2L-1222.8-2126.8z"/>
+ <linearGradient id="SVGID_117_" gradientUnits="userSpaceOnUse" x1="-1166.4846" y1="-2150.5432" x2="-1113.5154" y2="-2150.5432">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st157" d="M-1113.5-2147.5c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.2c0,0,0,0,0,0l-10.1-24
+ c-0.1-0.2-0.3-0.3-0.5-0.4l-25.9-2.9c0,0,0,0,0,0c-0.1,0-0.2,0-0.2,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0.1c0,0-0.1,0-0.1,0.1
+ c0,0,0,0,0,0l-15.8,21.2c-0.1,0.2-0.2,0.4-0.1,0.6l10.2,23.9c0,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.2,0.1c0,0,0,0,0,0l25.9,2.9
+ c0.2,0,0.4-0.1,0.5-0.2l15.7-21.1C-1113.6-2147.4-1113.6-2147.4-1113.5-2147.5C-1113.6-2147.4-1113.6-2147.5-1113.5-2147.5z
+ M-1118.4-2147.6l2.1,0.2l-0.2,0.1C-1117-2147.3-1117.6-2147.4-1118.4-2147.6z M-1150.2-2173.3l9.6,22.7l-14.9,20.1l-9.6-22.6
+ L-1150.2-2173.3z"/>
+ <linearGradient id="SVGID_118_" gradientUnits="userSpaceOnUse" x1="-1101.04" y1="-2151.0432" x2="-1050.96" y2="-2151.0432">
+ <stop offset="0" style="stop-color:#913FFF"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st158" d="M-1056.6-2168.7C-1056.7-2168.7-1056.7-2168.7-1056.6-2168.7c0-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.1-0.1
+ c0,0,0,0-0.1-0.1c0,0-0.1-0.1-0.1-0.1c0,0,0,0,0,0l-24.4-7.8c-0.2-0.1-0.4,0-0.6,0.1l-18.8,17.5c0,0,0,0,0,0
+ c-0.1,0.1-0.1,0.1-0.1,0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0l5.7,25.5c0,0.2,0.2,0.4,0.4,0.4
+ l24.4,7.8c0.1,0,0.2,0,0.3,0c0.1,0,0.2-0.1,0.2-0.1c0,0,0,0,0,0l18.8-17.5c0.2-0.1,0.2-0.4,0.2-0.6L-1056.6-2168.7z
+ M-1094.3-2133.9l-5.4-24.1l23.1,7.4l5.4,24.1L-1094.3-2133.9z"/>
+ <linearGradient id="SVGID_119_" gradientUnits="userSpaceOnUse" x1="-1482.942" y1="-2146.4204" x2="-1455.7031" y2="-2146.4204">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_120_" gradientUnits="userSpaceOnUse" x1="-1483.3131" y1="-2146.4204" x2="-1455.332" y2="-2146.4204">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st159" d="M-1456-2136.6c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.3-0.1-0.3-0.2l-7.9-17.2c-0.1-0.2,0-0.5,0.2-0.6
+ c0.2-0.1,0.5,0,0.6,0.2l7.8,16.9l17.5,1.7l-7.6-16.5c-0.1-0.2,0-0.5,0.2-0.6s0.5,0,0.6,0.2l7.9,17.1
+ C-1455.6-2136.9-1455.7-2136.7-1456-2136.6z"/>
+ <linearGradient id="SVGID_121_" gradientUnits="userSpaceOnUse" x1="-1456.5574" y1="-2153.1345" x2="-1445.058" y2="-2153.1345">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_122_" gradientUnits="userSpaceOnUse" x1="-1456.9283" y1="-2153.1345" x2="-1444.6869" y2="-2153.1345">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st160" d="M-1456-2136.6c-0.1,0.1-0.3,0-0.4,0c-0.2-0.1-0.2-0.4-0.1-0.6l10.5-15.1l-7.8-16.9c-0.1-0.2,0-0.5,0.2-0.6
+ c0.2-0.1,0.5,0,0.6,0.2l7.9,17.1c0.1,0.1,0.1,0.3,0,0.4l-10.6,15.2C-1455.8-2136.6-1455.9-2136.6-1456-2136.6z"/>
+ <linearGradient id="SVGID_123_" gradientUnits="userSpaceOnUse" x1="-1482.9404" y1="-2162.6038" x2="-1452.9381" y2="-2162.6038">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_124_" gradientUnits="userSpaceOnUse" x1="-1483.3114" y1="-2162.6038" x2="-1452.567" y2="-2162.6038">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st161" d="M-1463.8-2153.7c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.4-0.2-0.4-0.5c0-0.1,0-0.1,0.1-0.2l10.6-15.2
+ c0.1-0.1,0.2-0.2,0.4-0.2l18.5,1.8c0.2,0,0.4,0.2,0.4,0.5c0,0.1,0,0.1-0.1,0.2l-10.7,15.2
+ C-1463.7-2153.8-1463.8-2153.7-1463.8-2153.7z"/>
+ <g>
+ <path class="st120" d="M-2640.9,1530.6"/>
+ <path class="st143" d="M-3119.3,1644.2c-0.1,0-0.2-0.1-0.3-0.2l-18.2-21.2c-0.2-0.3-0.2-0.7,0.1-0.9c0.1-0.1,0.2-0.1,0.3-0.1
+ l27.4-5.5c0.2,0,0.5,0,0.6,0.2l18.2,21.2c0.2,0.3,0.2,0.7-0.1,0.9c-0.1,0.1-0.2,0.1-0.3,0.1l-27.4,5.5
+ C-3119.1,1644.3-3119.2,1644.3-3119.3,1644.2z"/>
+ <path class="st14" d="M-3119.7,1643.4c0.1-0.3,0.5-0.5,0.8-0.4c0.3,0.1,0.5,0.5,0.4,0.8l-9.2,26.8c-0.1,0.3-0.5,0.5-0.8,0.4
+ c-0.1,0-0.2-0.1-0.3-0.2l-18.3-21.1c-0.1-0.2-0.2-0.4-0.1-0.6l9.3-26.9c0.1-0.3,0.5-0.5,0.8-0.4c0.3,0.1,0.5,0.5,0.4,0.8"/>
+ <path class="st14" d="M-3128.5,1671c-0.2-0.1-0.4-0.3-0.4-0.5c-0.1-0.3,0.2-0.7,0.5-0.8l27.1-5.4l9.1-26.4
+ c0.1-0.3,0.5-0.5,0.8-0.4c0.3,0.1,0.5,0.5,0.4,0.8l-9.2,26.8c-0.1,0.2-0.3,0.4-0.5,0.4l-27.4,5.5
+ C-3128.3,1671.1-3128.4,1671.1-3128.5,1671z"/>
+ <linearGradient id="SVGID_125_" gradientUnits="userSpaceOnUse" x1="-2627.2891" y1="1454.188" x2="-2597.2869" y2="1454.188">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_126_" gradientUnits="userSpaceOnUse" x1="-2627.6602" y1="1454.188" x2="-2596.9158" y2="1454.188">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st162" d="M-2608.2,1463.1c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.4-0.2-0.4-0.5c0-0.1,0-0.1,0.1-0.2l10.6-15.2
+ c0.1-0.1,0.2-0.2,0.4-0.2l18.5,1.8c0.2,0,0.4,0.2,0.4,0.5c0,0.1,0,0.1-0.1,0.2l-10.7,15.2
+ C-2608.1,1463-2608.1,1463.1-2608.2,1463.1z"/>
+ <linearGradient id="SVGID_127_" gradientUnits="userSpaceOnUse" x1="-2627.2908" y1="1470.3716" x2="-2600.0518" y2="1470.3716">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st163" d="M-2600.3,1480.2c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.3-0.1-0.3-0.2l-7.9-17.2c-0.1-0.2,0-0.5,0.2-0.6
+ c0.2-0.1,0.5,0,0.6,0.2l7.8,16.9l17.5,1.7l-7.6-16.5c-0.1-0.2,0-0.5,0.2-0.6c0.2-0.1,0.5,0,0.6,0.2l7.9,17.1
+ C-2600,1479.9-2600.1,1480.1-2600.3,1480.2z"/>
+ <linearGradient id="SVGID_128_" gradientUnits="userSpaceOnUse" x1="-2600.906" y1="1463.6575" x2="-2589.4067" y2="1463.6575">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st164" d="M-2600.3,1480.2c-0.1,0.1-0.3,0-0.4,0c-0.2-0.1-0.2-0.4-0.1-0.6l10.5-15.1l-7.8-16.9
+ c-0.1-0.2,0-0.5,0.2-0.6c0.2-0.1,0.5,0,0.6,0.2l7.9,17.1c0.1,0.1,0.1,0.3,0,0.4l-10.6,15.2
+ C-2600.2,1480.1-2600.2,1480.2-2600.3,1480.2z"/>
+ <path class="st92" d="M-1829,1508.2c-0.1,0-0.2,0-0.3,0l-26.6-8.5c-0.3-0.1-0.5-0.5-0.4-0.8c0-0.1,0.1-0.2,0.2-0.3l20.5-19.1
+ c0.2-0.2,0.4-0.2,0.6-0.1l26.6,8.5c0.3,0.1,0.5,0.5,0.4,0.8c0,0.1-0.1,0.2-0.2,0.3l-20.5,19
+ C-1828.8,1508.2-1828.9,1508.2-1829,1508.2z"/>
+ <path class="st92" d="M-1822.8,1535.9c-0.1,0-0.2,0-0.3,0l-26.6-8.4c-0.2-0.1-0.4-0.2-0.4-0.5l-6.2-27.7c-0.1-0.3,0.1-0.7,0.5-0.8
+ c0.3-0.1,0.7,0.1,0.8,0.5l6.1,27.4l25.2,8l-5.9-26.6c-0.1-0.3,0.1-0.7,0.5-0.8c0.3-0.1,0.7,0.1,0.8,0.5l6.2,27.7
+ C-1822.2,1535.5-1822.4,1535.8-1822.8,1535.9z"/>
+ <path class="st92" d="M-1822.8,1535.9c-0.2,0-0.5,0-0.6-0.2c-0.2-0.3-0.2-0.7,0-0.9l20.2-18.8l-6.1-27.3c-0.1-0.3,0.1-0.7,0.5-0.8
+ s0.7,0.1,0.8,0.5l6.2,27.6c0.1,0.2,0,0.5-0.2,0.6l-20.5,19.1C-1822.6,1535.8-1822.7,1535.9-1822.8,1535.9z"/>
+ <path class="st93" d="M-2185.8,1709.7c-0.1-0.1-0.2-0.1-0.2-0.2l-10.2-23.9c-0.1-0.3,0-0.7,0.3-0.8c0.1,0,0.2-0.1,0.3,0l25.9,2.9
+ c0.2,0,0.4,0.2,0.5,0.4l10.1,24c0.1,0.3,0,0.7-0.3,0.8c-0.1,0-0.2,0.1-0.3,0l-25.8-2.9
+ C-2185.6,1709.8-2185.7,1709.8-2185.8,1709.7z"/>
+ <path class="st93" d="M-2201.5,1730.8c-0.1-0.1-0.2-0.1-0.2-0.2l-10.2-23.9c-0.1-0.2-0.1-0.4,0.1-0.6l15.8-21.2
+ c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,0.3,0.6,0.1,0.8l-15.6,20.9l9.6,22.6l15.1-20.3c0.2-0.3,0.6-0.3,0.8-0.1
+ c0.3,0.2,25.3,4,25.1,4.3l-40.7,17.7C-2200.9,1731-2201.2,1731-2201.5,1730.8z"/>
+ <path class="st93" d="M-2160,1711.7c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,0.3,0.6,0.1,0.8l-15.7,21.1c-0.1,0.2-0.3,0.3-0.5,0.2
+ l-25.9-2.9c-0.1,0-0.2-0.1-0.3-0.1c-0.2-0.1-0.3-0.3-0.2-0.5c0-0.3,0.3-0.6,0.7-0.5"/>
+ </g>
+ <linearGradient id="SVGID_129_" gradientUnits="userSpaceOnUse" x1="323.5711" y1="-119.5477" x2="356.6108" y2="-119.5477">
+ <stop offset="0" style="stop-color:#913FFF"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st165" d="M352.9-131.2C352.9-131.2,352.8-131.2,352.9-131.2c0-0.1,0-0.1,0-0.1c0,0,0,0-0.1-0.1c0,0,0,0,0,0
+ c0,0-0.1,0-0.1,0c0,0,0,0,0,0l-16.1-5.2c-0.1,0-0.3,0-0.4,0.1L323.7-125c0,0,0,0,0,0c0,0-0.1,0.1-0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0
+ c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0l3.8,16.8c0,0.1,0.1,0.2,0.3,0.3l16.1,5.1c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2-0.1
+ c0,0,0,0,0,0l12.4-11.5c0.1-0.1,0.1-0.2,0.1-0.4L352.9-131.2z M328-108.2l-3.6-15.9l15.3,4.9l3.6,15.9L328-108.2z"/>
+ <linearGradient id="SVGID_130_" gradientUnits="userSpaceOnUse" x1="876.9289" y1="-197.2353" x2="898.6652" y2="-197.2353">
+ <stop offset="0" style="stop-color:#FB3B49"/>
+ <stop offset="0.9988" style="stop-color:#EC3B49"/>
+ </linearGradient>
+ <path class="st166" d="M898.7-199.4C898.7-199.4,898.7-199.4,898.7-199.4C898.7-199.4,898.7-199.5,898.7-199.4c0-0.1,0-0.1,0-0.1
+ c0,0,0,0,0,0l-7.1-8.2c-0.1-0.1-0.1-0.1-0.2-0.1l-10.6,2.1c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
+ c0,0,0,0,0,0c0,0,0,0,0,0l-3.6,10.4c0,0.1,0,0.2,0,0.2l7.1,8.2c0,0,0.1,0.1,0.1,0.1c0,0,0.1,0,0.1,0c0,0,0,0,0,0l10.6-2.1
+ c0.1,0,0.2-0.1,0.2-0.2L898.7-199.4C898.7-199.3,898.7-199.3,898.7-199.4C898.7-199.3,898.7-199.4,898.7-199.4z M894.7-189.2l-10,2
+ l3.4-9.8l10-2L894.7-189.2z"/>
+ <linearGradient id="SVGID_131_" gradientUnits="userSpaceOnUse" x1="1478.5369" y1="-229.9909" x2="1498.9146" y2="-229.9909">
+ <stop offset="0" style="stop-color:#913FFF"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st167" d="M1496.6-237.2C1496.6-237.2,1496.6-237.2,1496.6-237.2C1496.6-237.2,1496.6-237.2,1496.6-237.2
+ c0-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0l-9.9-3.2c-0.1,0-0.2,0-0.2,0.1l-7.6,7.1c0,0,0,0,0,0
+ c0,0,0,0-0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0l2.3,10.4c0,0.1,0.1,0.1,0.2,0.2l9.9,3.2
+ c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0l7.6-7.1c0.1-0.1,0.1-0.1,0.1-0.2L1496.6-237.2z M1481.3-223l-2.2-9.8l9.4,3l2.2,9.8
+ L1481.3-223z"/>
+ <path class="st151" d="M474.4,43.3"/>
+ <path class="st152" d="M107,117.4c-0.1,0-0.1-0.1-0.2-0.1l-11-12.7c-0.1-0.2-0.1-0.4,0-0.5c0.1,0,0.1-0.1,0.2-0.1l16.5-3.3
+ c0.1,0,0.3,0,0.4,0.1l11,12.8c0.1,0.2,0.1,0.4,0,0.5c-0.1,0-0.1,0.1-0.2,0.1l-16.5,3.3C107.1,117.4,107.1,117.4,107,117.4z"/>
+ <path class="st14" d="M106.8,116.9c0.1-0.2,0.3-0.3,0.5-0.2c0.2,0.1,0.3,0.3,0.2,0.5l-5.5,16.1c-0.1,0.2-0.3,0.3-0.5,0.2
+ c-0.1,0-0.1-0.1-0.2-0.1l-11-12.7c-0.1-0.1-0.1-0.2-0.1-0.4l5.6-16.1c0.1-0.2,0.3-0.3,0.5-0.2c0.2,0.1,0.3,0.3,0.2,0.5"/>
+ <path class="st14" d="M101.4,133.5c-0.1,0-0.2-0.2-0.3-0.3c0-0.2,0.1-0.4,0.3-0.5l16.3-3.3l5.5-15.9c0.1-0.2,0.3-0.3,0.5-0.2
+ c0.2,0.1,0.3,0.3,0.2,0.5l-5.5,16.1c0,0.1-0.2,0.2-0.3,0.3l-16.5,3.3C101.6,133.5,101.5,133.5,101.4,133.5z"/>
+ <linearGradient id="SVGID_132_" gradientUnits="userSpaceOnUse" x1="482.6115" y1="37.0498" x2="500.6387" y2="37.0498">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_133_" gradientUnits="userSpaceOnUse" x1="482.3885" y1="37.0498" x2="500.8616" y2="37.0498">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st168" d="M494.1,42.4c0,0-0.1,0-0.1,0l-11.1-1.1c-0.1,0-0.2-0.1-0.2-0.3c0,0,0-0.1,0-0.1l6.4-9.2
+ c0.1-0.1,0.1-0.1,0.2-0.1l11.1,1.1c0.1,0,0.2,0.1,0.2,0.3c0,0,0,0.1,0,0.1l-6.4,9.2C494.2,42.4,494.1,42.4,494.1,42.4z"/>
+ <linearGradient id="SVGID_134_" gradientUnits="userSpaceOnUse" x1="482.6105" y1="46.7739" x2="498.9773" y2="46.7739">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st169" d="M498.8,52.7c0,0-0.1,0-0.1,0l-11.1-1.1c-0.1,0-0.2-0.1-0.2-0.1l-4.7-10.3c-0.1-0.1,0-0.3,0.1-0.3
+ c0.1-0.1,0.3,0,0.3,0.1l4.7,10.2l10.5,1l-4.6-9.9c-0.1-0.1,0-0.3,0.1-0.3c0.1-0.1,0.3,0,0.3,0.1l4.7,10.3
+ C499,52.5,499,52.6,498.8,52.7z"/>
+ <linearGradient id="SVGID_135_" gradientUnits="userSpaceOnUse" x1="498.464" y1="42.7396" x2="505.3735" y2="42.7396">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st170" d="M498.8,52.7c-0.1,0-0.2,0-0.3,0c-0.1-0.1-0.1-0.2-0.1-0.4l6.3-9l-4.7-10.1c-0.1-0.1,0-0.3,0.1-0.3
+ s0.3,0,0.3,0.1l4.7,10.3c0,0.1,0,0.2,0,0.3l-6.4,9.2C498.9,52.6,498.9,52.7,498.8,52.7z"/>
+ <path class="st92" d="M1475.3,143.7c-0.1,0-0.1,0-0.2,0l-16-5.1c-0.2-0.1-0.3-0.3-0.3-0.5c0-0.1,0.1-0.1,0.1-0.2l12.3-11.5
+ c0.1-0.1,0.2-0.1,0.4-0.1l16,5.1c0.2,0.1,0.3,0.3,0.3,0.5c0,0.1-0.1,0.1-0.1,0.2l-12.3,11.4
+ C1475.4,143.7,1475.4,143.7,1475.3,143.7z"/>
+ <path class="st92" d="M1479,160.3c-0.1,0-0.1,0-0.2,0l-16-5.1c-0.1,0-0.2-0.1-0.3-0.3l-3.7-16.7c0-0.2,0.1-0.4,0.3-0.5
+ c0.2,0,0.4,0.1,0.5,0.3l3.7,16.4l15.2,4.8l-3.6-16c0-0.2,0.1-0.4,0.3-0.5c0.2,0,0.4,0.1,0.5,0.3l3.7,16.6
+ C1479.3,160.1,1479.2,160.3,1479,160.3z"/>
+ <path class="st92" d="M1479,160.3c-0.1,0-0.3,0-0.4-0.1c-0.1-0.2-0.1-0.4,0-0.5l12.1-11.3l-3.7-16.4c0-0.2,0.1-0.4,0.3-0.5
+ s0.4,0.1,0.5,0.3l3.7,16.6c0,0.1,0,0.3-0.1,0.4l-12.3,11.5C1479.1,160.3,1479.1,160.3,1479,160.3z"/>
+ <path class="st93" d="M1225.7,66.7c-0.1,0-0.1-0.1-0.1-0.1l-6.1-14.4c-0.1-0.2,0-0.4,0.2-0.5c0.1,0,0.1,0,0.2,0l15.5,1.7
+ c0.1,0,0.2,0.1,0.3,0.2l6.1,14.4c0.1,0.2,0,0.4-0.2,0.5c-0.1,0-0.1,0-0.2,0l-15.5-1.7C1225.9,66.8,1225.8,66.7,1225.7,66.7z"/>
+ <path class="st93" d="M1216.3,79.4c-0.1,0-0.1-0.1-0.1-0.1l-6.1-14.4c-0.1-0.1,0-0.3,0-0.4l9.5-12.7c0.1-0.2,0.3-0.2,0.5-0.1
+ c0.2,0.1,0.2,0.3,0.1,0.5l-9.4,12.6l5.8,13.6l9.1-12.2c0.1-0.2,0.3-0.2,0.5-0.1c0.2,0.1,15.2,2.4,15.1,2.6l-24.5,10.6
+ C1216.7,79.5,1216.4,79.5,1216.3,79.4z"/>
+ <path class="st93" d="M1241.2,67.9c0.1-0.2,0.3-0.2,0.5-0.1c0.2,0.1,0.2,0.3,0.1,0.5l-9.5,12.7c-0.1,0.1-0.2,0.2-0.3,0.1l-15.5-1.7
+ c-0.1,0-0.1,0-0.2-0.1c-0.1-0.1-0.2-0.2-0.1-0.3c0-0.2,0.2-0.3,0.4-0.3"/>
+ <linearGradient id="SVGID_136_" gradientUnits="userSpaceOnUse" x1="330.112" y1="146.1916" x2="363.1516" y2="146.1916">
+ <stop offset="0" style="stop-color:#913FFF"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st171" d="M359.4,134.5C359.4,134.5,359.4,134.5,359.4,134.5c0-0.1,0-0.1,0-0.1c0,0,0,0-0.1-0.1c0,0,0,0,0,0
+ c0,0-0.1,0-0.1,0c0,0,0,0,0,0l-16.1-5.2c-0.1,0-0.3,0-0.4,0.1l-12.4,11.5c0,0,0,0,0,0c0,0-0.1,0.1-0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0
+ c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0l3.8,16.8c0,0.1,0.1,0.2,0.3,0.3l16.1,5.1c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2-0.1
+ c0,0,0,0,0,0l12.4-11.5c0.1-0.1,0.1-0.2,0.1-0.4L359.4,134.5z M334.6,157.5l-3.6-15.9l15.3,4.9l3.6,15.9L334.6,157.5z"/>
+ <linearGradient id="SVGID_137_" gradientUnits="userSpaceOnUse" x1="883.4698" y1="68.504" x2="905.2061" y2="68.504">
+ <stop offset="0" style="stop-color:#FB3B49"/>
+ <stop offset="0.9988" style="stop-color:#EC3B49"/>
+ </linearGradient>
+ <path class="st172" d="M905.2,66.4C905.2,66.3,905.2,66.3,905.2,66.4C905.2,66.3,905.2,66.3,905.2,66.4c0-0.1,0-0.1,0-0.1
+ c0,0,0,0,0,0l-7.1-8.2c-0.1-0.1-0.1-0.1-0.2-0.1L887.2,60c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
+ c0,0,0,0,0,0c0,0,0,0,0,0l-3.6,10.4c0,0.1,0,0.2,0,0.2l7.1,8.2c0,0,0.1,0.1,0.1,0.1c0,0,0.1,0,0.1,0c0,0,0,0,0,0l10.6-2.1
+ c0.1,0,0.2-0.1,0.2-0.2L905.2,66.4C905.2,66.4,905.2,66.4,905.2,66.4C905.2,66.4,905.2,66.4,905.2,66.4z M901.2,76.5l-10,2l3.4-9.8
+ l10-2L901.2,76.5z"/>
+ <linearGradient id="SVGID_138_" gradientUnits="userSpaceOnUse" x1="1485.0778" y1="35.7484" x2="1505.4554" y2="35.7484">
+ <stop offset="0" style="stop-color:#913FFF"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st173" d="M1503.1,28.6C1503.1,28.6,1503.1,28.5,1503.1,28.6C1503.1,28.5,1503.1,28.5,1503.1,28.6
+ c0-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0l-9.9-3.2c-0.1,0-0.2,0-0.2,0.1l-7.6,7.1c0,0,0,0,0,0
+ c0,0,0,0-0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0l2.3,10.4c0,0.1,0.1,0.1,0.2,0.2l9.9,3.2
+ c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0l7.6-7.1c0.1-0.1,0.1-0.1,0.1-0.2L1503.1,28.6z M1487.8,42.7l-2.2-9.8l9.4,3l2.2,9.8
+ L1487.8,42.7z"/>
+</g>
+<g id="Layer_2">
+</g>
+</svg>
diff --git a/deps/npm/docs/src/images/background-rectangles.svg b/deps/npm/docs/src/images/background-rectangles.svg
new file mode 100644
index 0000000000..f9c78db52a
--- /dev/null
+++ b/deps/npm/docs/src/images/background-rectangles.svg
@@ -0,0 +1 @@
+<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1588 1837.91"><defs><style>.cls-1,.cls-2,.cls-3,.cls-4{opacity:0.4;}.cls-1{fill:url(#linear-gradient);}.cls-2{fill:url(#linear-gradient-2);}.cls-3{fill:url(#linear-gradient-3);}.cls-4{fill:url(#linear-gradient-4);}</style><linearGradient id="linear-gradient" x1="-5862.01" y1="1221.45" x2="-5482.01" y2="1221.45" gradientTransform="translate(6776.01 86.59)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fb8817"/><stop offset="1" stop-color="#e02aff"/></linearGradient><linearGradient id="linear-gradient-2" x1="595.72" y1="979.68" x2="799.72" y2="979.68" gradientTransform="translate(473.19 -491.22)" xlink:href="#linear-gradient"/><linearGradient id="linear-gradient-3" x1="-5814.22" y1="991.04" x2="-5434.22" y2="991.04" gradientTransform="translate(6086.35 -651.13)" xlink:href="#linear-gradient"/><linearGradient id="linear-gradient-4" x1="-746.26" y1="227.69" x2="-366.26" y2="227.69" gradientTransform="translate(1009.26 889.3)" xlink:href="#linear-gradient"/></defs><title>background-rectangles</title><rect class="cls-1" x="914" y="1211.04" width="380" height="194" transform="translate(-279.95 2315.24) rotate(-85.88)"/><rect class="cls-2" x="1068.92" y="204.46" width="204" height="568" transform="translate(-60.05 181.29) rotate(-8.63)"/><rect class="cls-3" x="272.13" y="242.91" width="380" height="194" transform="translate(71.24 759.8) rotate(-83.38)"/><rect class="cls-4" x="263" y="1020" width="380" height="194" transform="translate(-51.49 22.29) rotate(-2.67)"/></svg> \ No newline at end of file
diff --git a/deps/npm/docs/src/images/bracket.svg b/deps/npm/docs/src/images/bracket.svg
new file mode 100644
index 0000000000..bd9fa3340f
--- /dev/null
+++ b/deps/npm/docs/src/images/bracket.svg
@@ -0,0 +1 @@
+<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 23 30"><defs><style>.cls-1{fill:#fb3b49;}</style></defs><title>cursor</title><polygon class="cls-1" points="4.65 29.27 0.69 24.6 11.97 15.03 0.68 5.37 4.66 0.72 21.41 15.04 4.65 29.27"/></svg> \ No newline at end of file
diff --git a/deps/npm/docs/src/images/cli-logo.svg b/deps/npm/docs/src/images/cli-logo.svg
new file mode 100644
index 0000000000..e3f3850e90
--- /dev/null
+++ b/deps/npm/docs/src/images/cli-logo.svg
@@ -0,0 +1 @@
+<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 107 17"><defs><style>.cls-1{fill:#231f20;}.cls-2{fill:none;}</style></defs><title>cli-logo</title><path class="cls-1" d="M.54,13.4h6.4V3.67h3.2V13.4h3.2V.42H.54ZM31.26.42v13h6.4V3.67h3.2V13.4h3.2V3.67h3.19V13.4h3.2V.42Zm-9,3.25h3.2v6.49H22.3Zm-6.4,13h6.4V13.4h6.4V.42H15.9Z"/><rect class="cls-2" x="0.54" y="0.42" width="49.91" height="16.22"/><polygon class="cls-1" points="65.58 3.56 65.58 9.86 71.66 9.86 71.66 13.02 65.44 13.02 59.2 13.04 59.22 0.41 71.66 0.41 71.66 3.54 65.58 3.56"/><polygon class="cls-1" points="80.62 10.23 80.62 0.36 74.23 0.36 74.23 13.3 76.92 13.3 80.62 13.3 86.47 13.3 86.47 10.23 80.62 10.23"/><rect class="cls-1" x="101.32" y="8.37" width="1.99" height="8.29" transform="translate(114.83 -89.79) rotate(90)"/><rect class="cls-1" x="88.33" y="0.36" width="6.39" height="12.94"/></svg> \ No newline at end of file
diff --git a/deps/npm/docs/src/images/down-carrot.svg b/deps/npm/docs/src/images/down-carrot.svg
new file mode 100644
index 0000000000..7279ec53b1
--- /dev/null
+++ b/deps/npm/docs/src/images/down-carrot.svg
@@ -0,0 +1 @@
+<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16.5 10"><defs><style>.cls-1{fill:#fb3b49;}</style></defs><title>down-carrot</title><path class="cls-1" d="M8.25,9.15a1.15,1.15,0,0,1-.81-.34l-6-6A1.15,1.15,0,0,1,3.06,1.19L8.25,6.37l5.19-5.19a1.15,1.15,0,1,1,1.63,1.63l-6,6A1.15,1.15,0,0,1,8.25,9.15Z"/></svg> \ No newline at end of file
diff --git a/deps/npm/docs/src/images/hamburger-close.svg b/deps/npm/docs/src/images/hamburger-close.svg
new file mode 100644
index 0000000000..867ede4d54
--- /dev/null
+++ b/deps/npm/docs/src/images/hamburger-close.svg
@@ -0,0 +1 @@
+<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 31.48 26.49"><defs><style>.cls-1{fill:url(#linear-gradient);}.cls-2{fill:url(#linear-gradient-2);}</style><linearGradient id="linear-gradient" x1="-0.52" y1="12.65" x2="34.48" y2="12.65" gradientTransform="translate(28.39 -3.74) rotate(90)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fb8817"/><stop offset="1" stop-color="#e02aff"/></linearGradient><linearGradient id="linear-gradient-2" x1="18.41" y1="36.61" x2="53.41" y2="36.61" gradientTransform="matrix(1, 0, 0, -1, -20.17, 49.85)" xlink:href="#linear-gradient"/></defs><title>hamburger-close</title><rect class="cls-1" x="13.74" y="-4.25" width="4" height="35" rx="2" ry="2" transform="translate(-4.78 14.75) rotate(-44.28)"/><rect class="cls-2" x="-1.76" y="11.25" width="35" height="4" rx="2" ry="2" transform="translate(-4.79 14.51) rotate(-43.62)"/></svg> \ No newline at end of file
diff --git a/deps/npm/docs/src/images/hamburger.svg b/deps/npm/docs/src/images/hamburger.svg
new file mode 100644
index 0000000000..bfbc3ddf1f
--- /dev/null
+++ b/deps/npm/docs/src/images/hamburger.svg
@@ -0,0 +1 @@
+<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 35 23"><defs><style>.cls-1{fill:url(#linear-gradient);}.cls-2{fill:url(#linear-gradient-2);}.cls-3{fill:url(#linear-gradient-3);}</style><linearGradient id="linear-gradient" y1="2" x2="35" y2="2" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fb8817"/><stop offset="1" stop-color="#e02aff"/></linearGradient><linearGradient id="linear-gradient-2" y1="11.5" y2="11.5" xlink:href="#linear-gradient"/><linearGradient id="linear-gradient-3" y1="21" y2="21" xlink:href="#linear-gradient"/></defs><title>hamburger</title><rect class="cls-1" width="35" height="4" rx="2" ry="2"/><rect class="cls-2" y="9.5" width="35" height="4" rx="2" ry="2"/><rect class="cls-3" y="19" width="35" height="4" rx="2" ry="2"/></svg> \ No newline at end of file
diff --git a/deps/npm/docs/src/images/manager-icon.svg b/deps/npm/docs/src/images/manager-icon.svg
new file mode 100644
index 0000000000..6cc5ff680f
--- /dev/null
+++ b/deps/npm/docs/src/images/manager-icon.svg
@@ -0,0 +1 @@
+<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 132.16 126.87"><defs><style>.cls-1{opacity:0.7;}.cls-2{fill:#d42782;}.cls-3{fill:none;}.cls-3,.cls-4{stroke:#223839;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.8px;}.cls-4{fill:#eeb0f2;}.cls-5{fill:#fbb03b;}.cls-6{fill:#ec62f6;}.cls-7{fill:#9538e6;}.cls-8{fill:red;}.cls-9{fill:#ba31ec;}.cls-10{fill:#f15a24;}.cls-11{fill:#f0f;}.cls-12{fill:#ed1c24;}.cls-13{fill:#fff;opacity:0.6;}.cls-14{fill:url(#linear-gradient);}</style><linearGradient id="linear-gradient" x1="64.54" y1="38.16" x2="70.64" y2="3.59" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff"/><stop offset="0.12" stop-color="#fff" stop-opacity="0.77"/><stop offset="0.25" stop-color="#fff" stop-opacity="0.57"/><stop offset="0.37" stop-color="#fff" stop-opacity="0.39"/><stop offset="0.5" stop-color="#fff" stop-opacity="0.25"/><stop offset="0.62" stop-color="#fff" stop-opacity="0.14"/><stop offset="0.75" stop-color="#fff" stop-opacity="0.06"/><stop offset="0.87" stop-color="#fff" stop-opacity="0.02"/><stop offset="1" stop-color="#fff" stop-opacity="0"/></linearGradient><image id="image" width="25" height="25" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAACXBIWXMAAAsSAAALEgHS3X78AAABvElEQVRIS+2WQWobQRREq7p7hoGMRLCDV8ErbSIdIOtcItcZ5jDe+BI+QwK2N1ppaSwjbAkmM92/shhZ2MGYzIRkEVy7ht//UZ9Pd1ES/oXCsxNJQABqvlw+RJUAAnsnfHRUs3bVYh6WZVsULg++je7VPq8o5cEaa+Nsmzf15VWsVFkPIonFeXZb+OMGOg3UkQE5ZYOdiU4OaKN4V4CrD01a4/Jrtx+dsCzPikn0p95lX5I4J1UKfjAIlJK49Q5XydqLZZl2M+gRVPPEzcM9dezFT4Q+A3wPaMT4aAQ2ENXRfT9xPgA1D8uwa6NzzDLRJj0ERwBGgGAgINjEyWW7tnNT/LJ1lLEflxx6yHBQv1wOIKl0GP3wRiP1BhqtN9BovYFG6/8DPXtURSdQAmgADGPyBPd3IQlOVALwBPQuD3bfWecVHgRt0L+7YxwbhA3hHhJiN82DAQdQpRs7ixP5tTldSyChEuDwHxaSwC2p68xsfWMpTlFpDyJm2/PmtvCrznQRqG8m5E//k9+V4OShNhrvMuSr2TY1APeOJNWsY7WYr5dlu/uTFEQlxDxYYz/ix0MKkg5xq6/6e7nuJ0iX6eILPP+zAAAAAElFTkSuQmCC"/></defs><title>manager-icon.svg</title><use class="cls-1" transform="translate(7.21 69.69)" xlink:href="#image"/><rect class="cls-2" x="11.21" y="73.69" width="17" height="17"/><rect class="cls-3" x="11.21" y="73.69" width="17" height="17"/><rect class="cls-4" x="57.21" y="39.69" width="17" height="17"/><use class="cls-1" transform="translate(99.21 69.69)" xlink:href="#image"/><rect class="cls-5" x="103.21" y="73.69" width="17" height="17"/><rect class="cls-3" x="103.21" y="73.69" width="17" height="17"/><use class="cls-1" transform="translate(76.21 69.69)" xlink:href="#image"/><rect class="cls-6" x="80.21" y="73.69" width="17" height="17"/><rect class="cls-3" x="80.21" y="73.69" width="17" height="17"/><use class="cls-1" transform="translate(53.21 92.69)" xlink:href="#image"/><rect class="cls-7" x="57.21" y="96.69" width="17" height="17"/><rect class="cls-3" x="57.21" y="96.69" width="17" height="17"/><use class="cls-1" transform="translate(76.21 92.69)" xlink:href="#image"/><rect class="cls-8" x="80.21" y="96.69" width="17" height="17"/><rect class="cls-3" x="80.21" y="96.69" width="17" height="17"/><use class="cls-1" transform="translate(99.21 92.69)" xlink:href="#image"/><rect class="cls-9" x="103.21" y="96.69" width="17" height="17"/><rect class="cls-3" x="103.21" y="96.69" width="17" height="17"/><use class="cls-1" transform="translate(30.21 92.69)" xlink:href="#image"/><rect class="cls-10" x="34.21" y="96.69" width="17" height="17"/><rect class="cls-3" x="34.21" y="96.69" width="17" height="17"/><use class="cls-1" transform="translate(8.21 92.69)" xlink:href="#image"/><rect class="cls-11" x="12.21" y="96.69" width="17" height="17"/><rect class="cls-3" x="12.21" y="96.69" width="17" height="17"/><use class="cls-1" transform="translate(30.21 69.69)" xlink:href="#image"/><rect class="cls-12" x="34.21" y="73.69" width="17" height="17"/><rect class="cls-3" x="34.21" y="73.69" width="17" height="17"/><rect class="cls-13" x="58.21" y="73.69" width="17" height="17"/><polygon class="cls-14" points="75.21 36.69 56.21 36.69 60.21 3.69 71.21 3.69 75.21 36.69"/></svg> \ No newline at end of file
diff --git a/deps/npm/docs/src/images/network-icon.svg b/deps/npm/docs/src/images/network-icon.svg
new file mode 100644
index 0000000000..d7ff6bfb1a
--- /dev/null
+++ b/deps/npm/docs/src/images/network-icon.svg
@@ -0,0 +1 @@
+<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 132.16 126.87"><defs><style>.cls-1,.cls-16,.cls-2,.cls-3,.cls-6{fill:none;}.cls-1,.cls-13,.cls-14,.cls-15,.cls-16,.cls-2,.cls-3,.cls-6,.cls-8{stroke:#223839;}.cls-1,.cls-13,.cls-14,.cls-15,.cls-16,.cls-2,.cls-3{stroke-linecap:round;stroke-linejoin:round;}.cls-1,.cls-2,.cls-3{stroke-width:2.11px;}.cls-1{stroke-dasharray:0 4.22;}.cls-3{stroke-dasharray:0 4.24;}.cls-4{opacity:0.8;}.cls-5{fill:url(#linear-gradient);}.cls-6,.cls-8{stroke-miterlimit:10;}.cls-16,.cls-6{stroke-width:1.9px;}.cls-7,.cls-8{fill:#413844;}.cls-8{stroke-width:1.06px;}.cls-9{opacity:0.22;}.cls-10,.cls-13{fill:#ff737b;}.cls-11,.cls-14{fill:#e78bff;}.cls-12,.cls-15{fill:#ff1c36;}.cls-13,.cls-14,.cls-15{stroke-width:1.69px;}.cls-17{fill:#223839;}</style><linearGradient id="linear-gradient" x1="24.7" y1="72.34" x2="107.23" y2="72.34" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fff"/><stop offset="1" stop-color="#ffe9f2" stop-opacity="0.8"/></linearGradient></defs><title>network-icon</title><image width="81" height="45" transform="translate(10.59 15.51) scale(1.06)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFIAAAAuCAYAAAC7zE4hAAAACXBIWXMAAAp1AAAKdQFKJd39AAAB8klEQVRoQ+3aMW/TQBiA4ffufK2SLKHqCQYGS3RG/MPo/iFibSudxEKxZRypWCK2cwyYtgmusCG6pd+zfZdMn3JvPFjFGBH/Lxs5UyNn4nkRQD898d5rwBZFsQJWIYTzEMI5IPPRPOzIDjtDPbnail9LvFgul6/btlUxxgpAKXUBIPPjbK2NTdPcOecqoD2+2mfAG+C9MUZ3XXcDYIy5ApD5YN4Dn4B7oD242uLvsiwDUPv9XltrH8+PvrcDvgCx73sFVAB9398Pn7/Y2VrLYrH4ttvtrFIKIMYYqxBCl+f5QSPx3uvNZpMVRXHmnCOE0AHkeZ4BL3ouy1JprZXW+pUx5i1A13Wft9vt1zzPfxwsciCPP+NUWZarLMveGWM+APR9/3G9Xt8A34+vNgzPReJPl5eXsa7r0c/kz2aGEEI3PAJdA9e/GwmyyJMZa6QYp4BVXddXY42UX+SJyCJnkEYmII2cThqZgixyBmlkAtLI6aSRKcgiZ5BGJiCNnE4amYIscgZpZALSyOmkkSnIImeQRiYgjZxOGpmCLHIGaWQC0sjppJEpyCJnkEYmII2cThp5Sm3borXea633bds+nI+9aCqe9/CO/TDfDWfSyBmi975zzlVN09w2TXPrnKu89x0QpZHzHb9jH0Gu9r8Y/eX9BOdX7OxN4Rf/AAAAAElFTkSuQmCC"/><line class="cls-1" x1="89.71" y1="34.52" x2="89.71" y2="19.8"/><line class="cls-2" x1="89.71" y1="17.7" x2="89.71" y2="17.7"/><line class="cls-3" x1="85.47" y1="17.7" x2="15.49" y2="17.7"/><line class="cls-2" x1="13.37" y1="17.7" x2="13.37" y2="17.7"/><image class="cls-4" width="117" height="99" transform="translate(2.92 19.73) scale(1.06)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHYAAABkCAYAAABTucSBAAAACXBIWXMAAAp1AAAKdQFKJd39AAAWVElEQVR4Xu1dy27bOhP+ZkhJjt3kAEGSHwW68CKrbv0CfYk+T5HnyUv0BbLtKgsvCgRtDAONE8e6cOZfiKRpxc7lNOecxM0HEJIsX8T5OBdS8gypKt6wfeCH3vCG14k3YrcUb8RuKexDb3hOEBH9yT6diKD/kgD+CUHTQ294w0Y8GxnPpbHryHwj+PEIhKYy+y2Sf8fHUtK6x3fa169fGe3v/dHNy+FeWaFF9/hJ4Ife0AUR3UtmQiAh6dDR0dGDnf4T2ho5EHAv4UAr9icR/FRTTKqKk5MT+vLlC05PT+nz589AcgFHR0cEAOfn53R8fIzxeEzD4RB7e3trL+zi4uJJF/ya8P79+zvmdG9vDwB0PB5jOBzq+fk5jo+P9ejoCGjNr6KVp56enuLz5884OTkJQRfhkSb6KcETrdnS2dkZjUajeBzaxcUFMTMxMx0eHmIymdDBwUH8sul0Ggnd39/HtmE6ncb9/f39KOTJZIKDgwO9vLyEiKiIqB8AK+3s7Ayj0Sh9DWu2G/FYYteSGtp4PObhcEgA6PLykomImJm62Nvbw2w2IwDY3d2N+9uM3d1dnc1mcf/q6gragYioqurh4aGg1WYdDoeCDtn+Kx9F7mOIvUPq2dkZj0YjAkDfv3/nLMv4f//7H02nUw7wXDKW/oGIiObzOfX7fQDA7e3tyj62BDs7OwoA8/l8Zb/f76s3qelWPLkiIrK/vy8/fvzQuq7lw4cPglZ7dTQaBaKxZnsH9xJLFBcU7pA6Ho+5KAq21rIxhvf393k2mxki4rQB4LIsVwgO39fr9VCW5dYQ2kVRFLpYLMLhCqFFUQgA8cTGtru766bTqTjnpGkaKctShsOhrCOX7lnwuDd40iRQwqqm8nA45MlkYowxbIwx19fXhpkNMxsiMmVZGgDc6/XYOWeKoqCqqjjPc6rrmvI8x3w+pzzPAQB1XW8NwVmWRS3N81yrqkKWZVpVleZ5LmVZKjO7xWIhAKQoCqeqTkTc9fU1W2sdETkiovfv3wMARqORePkLAD05OaFNpAL3a+w6f8ren/JkMjHWWmOMMcxsF4uFHQwGpixLy8yWiAwAQ0SmaRoDIGhwNMvJb6S/tw1IhRq11O8LALHWOlV1AAKpTVEUzc3Njev1eo2INM451zSNOzg4cOPxWLzf7fre7u8BeHi6Q35KE8ktiiIl1TKzZWZrrc2qqrLGmKxpmoyIrG+GmY1zziCZu6kqEREZY+CcWyG1e/waYIxZEa4xRp1zSEmFN73GGCciTlWdqjaq2lhr66qqamttw8wrLmsymaAoCvjvIAAIUyFs8LMPaSwhMcHfv383RVEYa62x1lpmzsqyzDyZea/Xy5qmyYkoS5p1zlkiiuSmmpv81rYh1aaoqcYYp6rOGNN4UuvQrLXVYrGorbWVc64uiqIWkbpp4cqydB8+fHAdf5tqbsQmYlOBMwAaj8dmZ2fHZFlmbKuuGTNnVVXlzJw75wpmLogoD01EciLKAFgRsQCMiJgOsQQA6zT3NSJoqseKCWZmB8AxcwOgUdWamStVjU1ESmNMKSJVnueViNTOubppmqaua3d7e+uGw6Hz37suUgZwP7ErvhWA8c1eX19nZVnm1tq8aZrCGFMURVE453rOuZ4nuBCRwhObqWoWvoOIWEQiucwMEblDKjN3X3pxEJE7rzGz+tcVgDKzeI11ABwR1QBqT2ypqqUndGGMWZRlWTrnSmtt2TRNVRRF9e7duxpAE74Dd33tCpEP+VggIXg6nXKWZYaZzWAwMFVV2V6vlznnCudcT0R2VHVHVXsAesxciEihqjkzW1W1AIyqGgAcfEkgtUvwOqG9ZARCRQTMrADC4kNKaiMiDRFVntRMVa2qmlQOWZaJc84NBgPnnDOz2Uzqupb9/X3BkpONfnQdsVGwX79+paOjI/r48SNdXl5ylmVMRMzMpizLECgFU9xT1R1m3lHVPoAdEekBKFS1EJEsIZdV1ahqHDREhLRjrw2BUKJ2FqK6XIggIgdAAqmqWgMonXM5EWWqapiZRASqqswsTdM4Y4wry9Llee5U1TEzX15e8uHhoXz79o1+/vxJnz59CuSuEL3OFHf9KwMwk8nE5nmeGWMyY0xR13XPObfDzDvM3FfVQWhE1FfVPhHtqGqPiAoAuapmzGwScplaSRD5mxfp/muCqoKINN33pAqWpAYzXKlqSUQLVb0lormqzonoJjQRmYvIrTHmNsuyhXOudM7VVVXVBwcHwSSn0x8k242mOAY15+fnNBgMqCgK8uCyLI0xxlA7ncmIKAdQAOgB2FHVvqoOAOwk5MZASlUtLVemKCU3tNeKhGD1W1FVIaKGiBq0vrUir6mqygBARErtokRDRHXSTFmWxltLYma6uLigm5sbOj4+BpaK+CQfS8fHx/jx4wd5xGVCtEGQJaJMRHJVLbxP7RHRDoAdAIHcnqoWRJR7bbXhe7zWAt4cq+pj1q9fJDyR0RyT11ZtlwtDJFwRUYk2kGRqB7Joa2prEamJqPLNJu8LjZg5JXWtsB4iFuPxmAaDARHFlSLu9XrcNI0hIuN/PAOQiUiB1qem5Pb9tlDVMMeNARRad0B+C1Wl1+pj4YWsurLQL9T6WKetb83Qyj0MaNF2BaoWkYqISi8j6+Vrer1enEUEYsN97k14kNjw4V+/fhERUVmW7Jwz1tqwomSZ2aKd0kTN9eQG07xDRIWqFur9LPxI9KYomn5qtRbAy/e3mvjVznUGUxx8oBMRB6D2g3qFVCKqRaQCUJJ3V2FRp2kas1gsjDGGsywjIqLDw0McHh7iPmwkNkTEe3t71Ov1KM/zGMEWRUHOOXbOGWOMkXbxIWNmKyIZgJxas1sAKKgNnnp+P1M/7cEaYlNtfcmkAnevL5mehXllJJaIGm+lyA9eAdBQG0zlRBRmDZm2MYhxzhki4qIoqGmaMHugyWRCi8WCrq6uupFxxIo/I1q5TRd9KdoBkM3n8xAN9621A1V9p6p7zLwH4C8AfxHRXyLyFxHtAtjVNojqAwjRcYbWx64lFnj5mtpFqrnhJSQa601tCJxKAAsAcyK6ATBT1Rkz/1LVXwB+AfglIldEdEVE103T3Bhj5lmWLfr9fgkgXayIkTElt/FWNDYluYvZbEZlWVKWZZTneVhUYAAsIiaYV1W1fj9Ev5mqZrRcgcqJyPrRG4n1REZzHKCt/32RoA1m2MtxRWPVm1/ygZKXR7xRklgxIyIrN0zyPCfnHM3nc3LO0e7uLtYh5e9BH5ui3++jrmuq65qMMcE0MHzUlpAVFiLi3Z3k2KL9XaOqxjMapzuByCCs16C5QaC0jIZj8ERt4BQGrqBdKzbaTnXC4LdYzjTSmQcBoLquiZmp3+8jWYe+F48idjqd0v7+PubzOQAgz3OISIxmAZCP2ljbVZQYnnuy473ZcKydRQpmjiY4JfO1aGwgl5lVlytPoku3omn/ARhu3xytnpfXyg0SIqI8z9E0DYD2WbHAx314FLFAa4qrqqJ3795hPp+TtZaoHaLxIpiZtJ2HpqPuTtPlWnHsSKqpL5nMFJqYvqCt/jWldsEBfpnQUOtvN8nD6wIFFxdJBUBVVVG/38f19TU99g7YgxPG9Lnffr+Psizj4yzGmHCK0hYuKCGN0+bPx9GKpdlZOf9amh/g4Thee3gtnE8bEvkEeXValG+e5yjLMj74Bzz8PDbfdzJgk9r70UMA4p0Zr7GBYODuBa+Qv+3tvn4G+QSZiUi6OLNROx8yw8AjiQ0Ij4j6B8/ijxpj4p0Z8j4yJRidzujS76QXHt/zWkxxwJp+Bqzr70o/wzl/HiJCiSUE0AZPwNMe0X20j70PYWQFrQ0XSklQkSB2NhwnLb6n+6FXgNDR9Np1wyBu39gJEr38nuVJkidp7EMIWhtIS7R2ZUUpvJZ2LMFvd+o/wkbiUgsU5JDKJmyD/J4Dv0XsupHFzFFbw3FA2sHURCUEP1vH/iPEAdsxwQDWExzem8op4Hc091lM8WMROrmms3+7Ay8RCYErK1MbLNQ/gt/S2BTrRlzAawuG/mncJ4/75PgUPM+3PIB15uhPIXtdf/8Nzf1XiH3Dv483YrcUb8RuKd6I3VK8EbuleCN2S/FG7JbijdgtxRuxW4o3YrcUb8RuKd6I3VK8EbuleCN2S/FG7JbijdgtxRuxW4o3YrcUb8RuKf4VYrXz56V0u+1Y1981D9E/O56N2ORv+nfwp5D4WNwnj/vk+BQ8G7GPQRipXQ3eNuK7fVrX738av/XAuDFGuxfbHXHSpqEDcNccUfuf0vRZTMXrfni8/XNs5x/uAWn/g1zU/6d2HemmkwP5KXhWjeU2MeSKXwn7KeHhtQ0j+G935j/GnetOCQ6vBTmksgnbIL/nwG9pbEDI0etH4X2k+VMa/9KPVYGs/DXilUKTBiLSVC4rb/SaSu3/d0Iq3G7O47+FJ2lsKDXiixnEC3XOxdGWXGwYkSstMcFIvyN9z2vzuWv6GbCuvyv9DOeCIjBzl1QNxSOC/B+DR2nsdDpFlmV3XjfGaNM0CiDm6PU9iCSi05nkXEr8a0d3gIZtt59dGQDLgayp1gJQY0x6HJFW4dqEBzU2rc82n89RFIVWVQUAaWqaO6QBMYGVEpGkzZ8XWqakC6lZV86/lubJC8fx2sNr4XzakMgnVYakRflWVYWiKDRk7QHW181L8SiNBdryXfP5XBeLBfI8j2W7kFxMeI2Z7xUEETlVpSSQIKJl5lPa8J/Sl4bUZWgnEtYWsb+4Xx4iInc02w8IzfNcF4sFdnZ2tN/v62M09lHE7u/v62w2i1lMqqoKoXhs7PPeh06or/zkj2N9Gb8fiAxpciikOFhH7ktFIDMlNQRKnuCQwKvbf4c2cWYklttCEJFkJORWVRX/XjmbzVaKIG7Co4gNmM/nyLJMsyzT8ONhVOoy731Muqxtjl4nbWbtBm3irpD5U6k1uwxPdLKN0Fegsek1B43F0tQKWlJDIuqQaTwknQ55jMP7gizFf79mWabOOfWusHsZa7FCrNeYtW/c3d1VY4zWda1VVam1NvoSP9rSYgYuueBQsSKkkwPai17JF4hkYUKTv/h3iX6J8BYmCi4QEojVNndiSJIZK3iEwa9tEuomaDQzR20GoFVVqTFG+/2+9vv9jdqa8tdNkqnwAv769SuOjo6wt7eHXq+HPM/DSpPmeS7OuVj1KVwQLStUhIuvAGSexGBiw8jcmNb2NZCZIlxvGtH6FjUWfpBTm128VF9nh3yKeBFpUnKNMc45JwAkz3NpmkZVVa+urlBVFRaLBa6urvDz5098+vSp/dFEK2mNhlLSGD6t7a9fvzJrbR6KPFhr+8w8UNVdZt5V1T0R+UvbNLe7qrpLRAMAA00SUaPNa7wxEXUK7STneGnQjqamp9AxxbJMRF1qW+jhFsCNqt4Q0UxEZkR0xcy/iOjKH89E5KZpmnko+tA0TfXXX39109qm8Q6AR/jY8XiMwWCALMtUVbUoCmFm1zSNE5FYygvtRVdoR2Mo7BDz3qv3IeSLHIRzWB1IUF2mjn/JpAKr19dZXYqBDzyx1M4EQqGHEsAtgAW1lTxKalPGV/C5iI0xjYg4a63r9XpORMQ5p6qql5eXuLm5wXA4xCY8SOxwONQfP36Ei1QAslgsognWpD4bM6/UkgGWee+xzKZttc1pzMCy2EOineusyIsH+WVBTVaagsZKG/KHgLICUAJYqOotgNtALjOXIlLDk+vl6xaLheR5LvCDRUR0OBzeK6SHiNXz83MMBgP1iBEbfKSny/pspfqE0+rLjgRS1ee9R+tvrbZ5emPgpEkyK+Dla+o6qK7cpelqrHhSGyIKWrsAcKtryCWiSkRq9bMKJNNH1ZbY8/NzHB8fbyR3E7HhA+Q/rJPJxHOrUhSFq+s61dZArNVlcmnQMpt2DV9QiZaVPzYWVFp7RS8cqnF9PO6rLlec4DWQ2mApFlRCS+rcE7xAq82Vl2ujqq4tG+giqX7VacXsd6/nXo0NkfHHjx/Vf6n4hQgnIo21tnbOWW2rKFr1pbySjqVlR1ZKoEmbbv6OfwVet8ZS4mepXbBQZnbaVqOMJdBoGUTFalkisiCi0lvA2ss3mGQRkbDcqt++fVuJiLvY5M+6kTEDMNPp1GZZljFzZozJq6oqjDGhFFpPRHZEZIeZe0TUI1+RUjtFC+EXKgKxsqFo4WsDL6tQrhQt9BrbnRKGooWlqi5EZMHMt8x8KyILY8ytc26R53npnKtEpK7rut7f319X/uyO1j6G2HTaY4C3MqMpZDl3jUgIVuC/KTN6H7Fhy8BbYeDHonOTPApd/+XCwPcFT0HIenZ2RqPRSL5//07c5q531DrCmAXbOYcsy6RpmrTwXkVrSnnj7jIi/e4TAy8FHVLDVuGnPcbXZzfGhHXjlVLedV3XRFQ552oRaUSkcS2krmsZDodydnaG0WiUEnlHO++bMxIAOj09pc+fP0eTfHFxEbTWGGMsM1tmtlVVZURkmTlrmibUZguFk2LVJySkEhGt09TXqLndB8+C5oZgx7e4DAt/t0fbyLex1tae5CbP85TUpmkaV9e1e//+fTTBp6en+vnz57VmGHiY2LCNxI7HYx4OhzyZTAK5hpntYrGwg8HAlGVpmTkSSr4+G9rFihVSk99If28bsKJNKbne14q1Nq6xq59lFEXR3NzcuF6vFzW1aRp3cHDgxuOxDIfDTQHTk4gFADo5OaEvX74AAJ2dnfFoNAp+lyeTiTHGsCfXkC+eRL7mKdBWrry+vjZFUVBVVZznOdV1TXmeo6qqWBEk5L3fBoRnlKqqQp7nWlUVsizTqqo0z3Mpy1LfvXvnFouFAJCiKAK5cRvM78HBQYyAz87OdDQaCQA9OTnBly9f1mor8ACxRBTOR+0N5I7HYy6Kgq21bIzh/f19ns1msdJTaAC4LMtwz3UlYOr1eijLcmsI7aIoCl0sFuEwaKwC0KIoBKsrSqKqsru766bTqTjnpGkaKcsy+NVIavg+omUtuy7uXaDwHyIsgykdjUbiyRUA+v379/AUndR1LexBLRgAZVkWze98Po/1Y66vr+P+UypUvHSEpwmvr6/j/nw+R7/fj8Q656JpVvWrD+0cSeq61rqu5cOHD4I2eL1DKoCNpAIPm+IAWrONzftdAkCXl5exKnEXe3t7mM1mBLSlvML+NmN3d1dns1ncv7q6atU2gfhnxQ4PDwWAjsdj9f5UOw1rtmvxWGKBDeT6qVA8Du3i4oKYmZiZDg8PMZlM6ODgIH7ZdDqNpD6mQNBrQ/rAWfqM0mQywcHBgV5eXkJEumu/sSVTmieTCjx8dydFNMc+oNLT01P4kDua62/fvtHHjx8RisOPx2M6PDzEYrFY0c5A5sXFBV1cXHR/ayuw7hFR73PV30/V8/NzAO3a78ePHyOJo9EoyjcJlIBHkAo8TWMBrARUwFJ74/7Xr18pWZiO5wPhfzoSAgMUaG+4JJWb75y/L1BahycvxgbnHw677dOnT+lcK+zLz58/JT3+U9saOSgA8XK7I0+00KeQCvwNjd2AdUHQ1gdGz4h1JPwWMU/xsfchvYhA6G9d2B+KZ5PZcxGbYuPFdfzzH4en+snfwR8t6G3Gk4OnN7wO/B9dG5hh10LhQwAAAABJRU5ErkJggg=="/><rect class="cls-5" x="24.7" y="40.43" width="82.54" height="63.82" rx="1.06"/><rect class="cls-6" x="24.7" y="40.43" width="82.54" height="63.82" rx="1.06"/><polygon class="cls-7" points="109.57 102.51 22.56 102.51 20.45 113 111.69 113 109.57 102.51"/><path class="cls-8" d="M34.05,47H98.43a2,2,0,0,1,2,2V88a2.32,2.32,0,0,1-2.32,2.32H34.05A2.32,2.32,0,0,1,31.74,88V49.32A2.32,2.32,0,0,1,34.05,47Z"/><image class="cls-9" width="24" height="24" transform="translate(43.31 64.06) scale(1.06)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAYAAADE6YVjAAAACXBIWXMAAAp1AAAKdQFKJd39AAADIUlEQVRIS72WS0/jShCFz6n2IzGgcDOKPOJGSFdiw5r/L/EHWGfDCkWICE2EB8aJH93nLrBDXtzZDLekki13dX1d3V1VpiR8tUS/Gedvxvfl6Irt2Ee8O7f+eXt76wAc1W5sY4sjC9uPpDewbb2+vjYAeH5+3nEwmUx0fX0NAOGIAl1k3DsTArD7+/toNBrFSZLEzrl4vV5HZmbD4RCr1YoAMBwOtVqtEEIIg8Gg9d43dV03RVE0V1dXbQc6gGwA4/E4TdM0i6LopCzLE+dcSjICYG3bEgCiKBKAIKn13ldZlv1q2/ZXVVXlcrmstkHbELu7u3OXl5dplmWnksaSvgEYSzqTlAJwzjkCgPdeADzJiuQrgCXJHySXZVm+PTw8VDc3Nx5A6CHsNC6KIqvr+lscxxdmNiV5AWBMMgshxPi4LMHMGkklgKWkxxDCvGmaxyRJfoxGoxJAA0DbB8/5fG7n5+dxFEVZF8GFmf0j6XsI4UxSYmYGAOFdapKvJJ9CCABQRlH04pz7OZ/PbTqd8gASx7Gt1+soSZIUwCnJsaTvAP4mOZI0kLSJhOQaQCEJZlZIOgWQrtfrKI7jzXU+SEYzs7ZtI+dcCiADcNYB/iKZ4j0/QNJLqkhC0k8AmaTUex+ZmXnvNz53IGbG9/m0zllMMgGQdjroIQB6LynJRFIMwJE0Sex8Afi8rOxkvKT9TO/FSXLdoj7N+M/Kyh+VzyIRPjI2dPvv8bFF6N49Sb9tiyNFcgcSQpBzTpJC56SRVJOsAFSd2faZVAAqSTXec8J3cxVC2MAOIgkhhCRJWgAVyRLAK4CCJEIIg27/ISmY2bobewVQAqiiKGrruu4L5AFETdOEk5OTtmmaiuQbyaVz7klSf02TbUgX5SvJJ+/9UtKbpGowGLQvLy+brduBTKfTUBRF07ZtGcfxkuRjV3YKM8tCCHGfjCQ3ZUVSb7ts27Y0s2Y6nR6twl9eIIH/qdTvgL6qafUQYK/9LhYLy/P8aPtdLBbI8/w/2+/+Fe6J/So8AM5mM+Z5jslkgn2ZzWbI81xbc7ffARxGsi9/5JfoX8sIRk3tSGMLAAAAAElFTkSuQmCC"/><rect class="cls-10" x="50.41" y="71.33" width="11.29" height="11.29"/><image class="cls-9" width="23" height="24" transform="translate(59.15 64.06) scale(1.06)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAYAAAArK+5dAAAACXBIWXMAAAp1AAAKdQFKJd39AAADAklEQVRIS71Wy2rjWBA9p64etpLgjBujJmMCA9l4nf+H/EDW3mQVTIgJbaJ2WtbznllY8vjV3YuZTEEhUapbp+rWS5SEz6TgN9/5m+/7dNZTOyfE1rD1z4eHBwfghDv5Tg9nHDqOoFewfZ7NZgYAb29vOwOTyUSz2QwA/BkGuoh4lAMCsKenp2A0GoVRFIXOubAoisDMbDgcYrPZcDgcarPZwHvvB4NB07ZtXVVVnWVZfXd313QgJwA74+PxOI7jOAmC4CLP8wvnXEwywOGVeklN27ZlkiQ/mqb5UZZlvlqtyn2QfQB7fHx0t7e3cZIkl5LGkr4AGEu6khRje/fsvGtJliTXAFYkv5Fc5Xn+8fz8XN7f37cAfA/AjsMsy5Kqqr6EYXhjZlOSNwDGJBPvfdgDmFktKQewkvTivV/Udf0SRdG30WiUA6gBaD/JXCwWdn19HQZBkHSe35jZX5K+eu+vJEUkTZL33lck1yRfvfcAkAdB8O6c+75YLGw6nfIEIAxDK4oiiKIoBnBJcizpK4A/SY4kDfoISBYAMkkws0zSJYC4KIogDMNdyZ40mplZ0zSBcy4GkAC46oz/QTIGYCS9pJIkJH0HkEiK27YNzMzatt3ZOwAwMwIgScM2oSHJCEDc8QDbSuprPSYZSQoBuO762NnZ2sR5OuhkSWc7uZP/spN/BvCf0c8AhH+60ZNsAZxwJ9/p4czAO8iB917OOUnynZFaUkWyBFB2an0OSgClpArbmm+7c/Le74BOqsh776MoagCUJHMAawAZSXjvByQpSWZWdPI1gBxAGQRBU1VVXwAnAKrr2l9cXDR1XZckP0iunHOvkvpyjNBF0EW2Jvnatu1K0oekcjAYNO/v77vrOgCYTqc+y7K6aZo8DMMVyZdulGRmthsVJHejQlKvt2qaJjezejqdnp2mnzrsgP9hXB+AfMbC6QGAo5W5XC4tTdOTlblcLpGm6S9X5nGZ9mi9By0AzudzpmmKyWRyoDyfz5GmqfbO7b8DOI3gmP71b8vfNwQtTE7U9s4AAAAASUVORK5CYII="/><rect class="cls-11" x="65.68" y="71.33" width="11.29" height="11.29"/><image class="cls-9" width="24" height="23" transform="translate(73.93 65.12) scale(1.06)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAYCAYAAAAPtVbGAAAACXBIWXMAAAp1AAAKdQFKJd39AAADGUlEQVRIS71Wy2rjWBA9p+6VZCsJzrgxajImMJCN1/l/6B/I2pusggkxoU3UScvW655ZWHL7NdObyRQUAlWpzq3HqStKwmeL/42dv7Efy9kT27mX2Aa3/vnt2zcH4Kx2tp0vzhzsOJPewfZ1NpsZALy+vh4EmEwmms1mABDOKNBlxqOeEIA9Pj760WgUxXEcOeeizWbjzcyGwyHW6zUBYDgcar1eI4QQBoNB07ZtXVVVned5fXd313RAJyA7gPF4nCRJknrvL4qiuHDOJSQ9AGuahgDgvReAIKlp27ZM0/Rn0zQ/y7IsVqtVuQ+0D2IPDw/u9vY2SdP0UtJY0hcAY0lXkhIAzjlHAGjbVgBakiXJdwArkt9Jroqi+Hh6eirv7+9bAKEHYadRnudpVVVfoii6MbMpyRsAY5JpCCHCr2EJZlZLKgCsJD2HEBZ1XT/Hcfx9NBoVAGoA2m88F4uFXV9fR977tMvgxsz+kvQ1hHAlKTYzA4CwlYrkO8mXEAIAFN77N+fcj8ViYdPplCcgURTZZrPxcRwnAC5JjiV9BfAnyZGkgaRdJiQ3AHJJMLNc0iWAZLPZ+CiKduN8QkYzs6ZpvHMuAZACuOoA/iCZYMsPkGwllSQh6QeAVFLStq03M2vbdhfzAMTMuP2e1gWLSMYAkk4HPQiAPkpCMpYUAXAkTRK7WNu4OC/9IJAkuxKdVUlGcuePM4z/JxD1KkkkzzE6YNuXoO2I7uuBHJQrhCDnnCQFbMtRS6pIlgDKzm2/XCWAUlKF7bi23bcKIezAThofQghxHDcASpIFgHcAOUmEEAZdvyApmNmms70DKACU3vumqqp+d52AqK7rcHFx0dR1XZL8ILlyzr1I6ico3gfpsnwn+dK27UrSh6RyMBg0b29vu911ADKdTkOe53XTNEUURSuSz9tyIzezNIQQ9TwhuWO8pN531TRNYWb1dDo9uyA/fXcB/9MWPgD6rPukBwGOCLdcLi3LsrM343K5RJZl/3ozHo9wj9ifogXA+XzOLMswmUxwLPP5HFmW7ZPwhJDHmRzLf/K38jeurEtHGCFIyQAAAABJRU5ErkJggg=="/><rect class="cls-12" x="80.93" y="71.54" width="11.29" height="11.29"/><rect class="cls-13" x="21.6" y="10.55" width="13.54" height="13.54"/><rect class="cls-14" x="43.09" y="10.55" width="13.54" height="13.54"/><rect class="cls-15" x="63.49" y="10.81" width="13.54" height="13.54"/><line class="cls-16" x1="79.73" y1="97.88" x2="99.82" y2="97.88"/><circle class="cls-17" cx="33.29" cy="97.12" r="1.59"/></svg> \ No newline at end of file
diff --git a/deps/npm/docs/src/images/npm-icon.png b/deps/npm/docs/src/images/npm-icon.png
new file mode 100644
index 0000000000..a977a685a6
--- /dev/null
+++ b/deps/npm/docs/src/images/npm-icon.png
Binary files differ
diff --git a/deps/npm/docs/src/images/orange-cube.svg b/deps/npm/docs/src/images/orange-cube.svg
new file mode 100644
index 0000000000..81e3e40ead
--- /dev/null
+++ b/deps/npm/docs/src/images/orange-cube.svg
@@ -0,0 +1 @@
+<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 42 39"><defs><style>.cls-1,.cls-2,.cls-3{stroke-miterlimit:10;stroke-width:0.74px;}.cls-1{fill:url(#linear-gradient);stroke:url(#linear-gradient-2);}.cls-2{fill:url(#linear-gradient-3);stroke:url(#linear-gradient-4);}.cls-3{fill:url(#linear-gradient-5);stroke:url(#linear-gradient-6);}</style><linearGradient id="linear-gradient" x1="2.06" y1="27.12" x2="29.3" y2="27.12" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fb8817"/><stop offset="0.37" stop-color="#fb8719"/><stop offset="0.51" stop-color="#fa8420"/><stop offset="0.61" stop-color="#f9802c"/><stop offset="0.69" stop-color="#f7793d"/><stop offset="0.76" stop-color="#f47053"/><stop offset="0.82" stop-color="#f1656e"/><stop offset="0.87" stop-color="#ed578f"/><stop offset="0.92" stop-color="#e948b5"/><stop offset="0.97" stop-color="#e437de"/><stop offset="1" stop-color="#e02aff"/></linearGradient><linearGradient id="linear-gradient-2" x1="1.69" y1="27.12" x2="29.67" y2="27.12" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fb8817"/><stop offset="1" stop-color="#e02aff"/></linearGradient><linearGradient id="linear-gradient-3" x1="28.44" y1="20.41" x2="39.94" y2="20.41" xlink:href="#linear-gradient"/><linearGradient id="linear-gradient-4" x1="28.07" y1="20.41" x2="40.31" y2="20.41" xlink:href="#linear-gradient-2"/><linearGradient id="linear-gradient-5" x1="2.06" y1="10.94" x2="32.06" y2="10.94" xlink:href="#linear-gradient"/><linearGradient id="linear-gradient-6" x1="1.69" y1="10.94" x2="32.43" y2="10.94" xlink:href="#linear-gradient-2"/></defs><title>orange-cube</title><path class="cls-1" d="M29,37a.43.43,0,0,1-.22,0L10.35,35.24A.43.43,0,0,1,10,35L2.1,17.84a.43.43,0,1,1,.78-.36l7.8,16.93,17.5,1.69L20.6,19.64a.43.43,0,1,1,.78-.36l7.89,17.12A.43.43,0,0,1,29,37Z"/><path class="cls-2" d="M29,37a.43.43,0,0,1-.53-.63L39,21.29,31.25,4.41A.43.43,0,1,1,32,4.05l7.88,17.1a.43.43,0,0,1,0,.43L29.22,36.83A.43.43,0,0,1,29,37Z"/><path class="cls-3" d="M21.16,19.85a.38.38,0,0,1-.22,0l-18.5-1.8a.43.43,0,0,1-.31-.67L12.78,2.17A.43.43,0,0,1,13.17,2L31.67,3.81a.43.43,0,0,1,.31.67L21.33,19.71A.38.38,0,0,1,21.16,19.85Z"/></svg> \ No newline at end of file
diff --git a/deps/npm/docs/src/images/pink-gradient-cube.svg b/deps/npm/docs/src/images/pink-gradient-cube.svg
new file mode 100644
index 0000000000..58e058a21b
--- /dev/null
+++ b/deps/npm/docs/src/images/pink-gradient-cube.svg
@@ -0,0 +1 @@
+<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 56 52"><defs><style>.cls-1{fill:url(#linear-gradient);}</style><linearGradient id="linear-gradient" x1="1.52" y1="26" x2="54.48" y2="26" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fb8817"/><stop offset="1" stop-color="#e02aff"/></linearGradient></defs><title>pink-gradient-cube</title><path class="cls-1" d="M54.45,29a.58.58,0,0,0,0-.13.61.61,0,0,0,0-.08.59.59,0,0,0,0-.15s0,0,0,0L44.3,4.66a.6.6,0,0,0-.48-.36L18,1.43h0a.59.59,0,0,0-.23,0h0l0,0-.12.08-.07.07,0,0L1.63,22.85a.6.6,0,0,0-.07.59L11.75,47.33a.59.59,0,0,0,.19.24.58.58,0,0,0,.25.1l0,0,25.85,2.87a.6.6,0,0,0,.55-.24L54.37,29.2a.55.55,0,0,0,0-.07ZM49.63,29l2.14.24-.22.1ZM17.76,3.21l9.62,22.65L12.43,45.92,2.8,23.29Z"/></svg> \ No newline at end of file
diff --git a/deps/npm/docs/src/images/purple-cube.svg b/deps/npm/docs/src/images/purple-cube.svg
new file mode 100644
index 0000000000..eb61f63c3e
--- /dev/null
+++ b/deps/npm/docs/src/images/purple-cube.svg
@@ -0,0 +1 @@
+<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 44 38"><defs><style>.cls-1{fill:#f0f;}</style></defs><title>purple-cube</title><path class="cls-1" d="M42.52,18.75,33.29,2.64a.43.43,0,0,0-.16-.15A.42.42,0,0,0,33,2.43h0l-18.59.11a.43.43,0,0,0-.37.22L4.54,19.06a.39.39,0,0,0,0,.06l0,.07a.42.42,0,0,0,0,.1.36.36,0,0,0,0,.06.41.41,0,0,0,0,.11v0l9.2,16.16a.43.43,0,0,0,.37.21l18.6-.11h0a.42.42,0,0,0,.16,0h0l.08-.07,0-.05,0,0,9.45-16.36A.43.43,0,0,0,42.52,18.75Zm-36.87.09L14.57,3.4l17.61-.11L23.25,18.75Z"/></svg> \ No newline at end of file
diff --git a/deps/npm/docs/src/images/purple-gradient-cube.svg b/deps/npm/docs/src/images/purple-gradient-cube.svg
new file mode 100644
index 0000000000..ea052ffc0c
--- /dev/null
+++ b/deps/npm/docs/src/images/purple-gradient-cube.svg
@@ -0,0 +1 @@
+<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 52 53"><defs><style>.cls-1{opacity:0.9;fill:url(#linear-gradient);}</style><linearGradient id="linear-gradient" x1="0.96" y1="26.5" x2="51.04" y2="26.5" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#913fff"/><stop offset="1" stop-color="#e02aff"/></linearGradient></defs><title>purple-gradient-cube</title><path class="cls-1" d="M45.35,8.85a.56.56,0,0,0,0-.08.57.57,0,0,0,0-.09.57.57,0,0,0-.08-.11l-.06-.06L45,8.44l0,0L20.5.59a.59.59,0,0,0-.58.13L1.14,18.22l0,0a.57.57,0,0,0-.12.2l0,0s0,0,0,0a.57.57,0,0,0,0,.14.56.56,0,0,0,0,.1s0,0,0,0L6.65,44.23a.59.59,0,0,0,.4.43l24.43,7.75a.59.59,0,0,0,.3,0A.58.58,0,0,0,32,52.3l0,0L50.85,34.78a.59.59,0,0,0,.17-.56ZM7.73,43.63,2.34,19.52,25.48,26.9,30.87,51Z"/></svg> \ No newline at end of file
diff --git a/deps/npm/docs/src/images/red-cube.svg b/deps/npm/docs/src/images/red-cube.svg
new file mode 100644
index 0000000000..110a48e101
--- /dev/null
+++ b/deps/npm/docs/src/images/red-cube.svg
@@ -0,0 +1 @@
+<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 59 58"><defs><style>.cls-1{fill:url(#linear-gradient);}</style><linearGradient id="linear-gradient" x1="1.41" y1="29" x2="57.59" y2="29" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fb3b49"/><stop offset="1" stop-color="#ec3b49"/></linearGradient></defs><title>red-cube</title><path class="cls-1" d="M57.59,23.48a.61.61,0,0,0,0-.15.62.62,0,0,0,0-.09.61.61,0,0,0-.08-.15l0,0L39.22,1.82a.64.64,0,0,0-.61-.21L11.18,7.12l0,0a.63.63,0,0,0-.23.11l0,0,0,0a.61.61,0,0,0-.09.12l-.05.09,0,0L1.44,34.41a.64.64,0,0,0,.12.63L19.82,56.19a.64.64,0,0,0,.28.18.63.63,0,0,0,.29,0h0l27.43-5.51a.64.64,0,0,0,.48-.43l9.22-26.79a.68.68,0,0,0,0-.09A.66.66,0,0,0,57.59,23.48ZM47.25,49.69l-26,5.22L30,29.5l26-5.18Z"/></svg> \ No newline at end of file
diff --git a/deps/npm/docs/src/images/right-shadow-box.svg b/deps/npm/docs/src/images/right-shadow-box.svg
new file mode 100644
index 0000000000..8ddca66d29
--- /dev/null
+++ b/deps/npm/docs/src/images/right-shadow-box.svg
@@ -0,0 +1,2809 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ viewBox="0 0 52 53" style="enable-background:new 0 0 52 53;" xml:space="preserve">
+<style type="text/css">
+ .st0{opacity:0.3;fill:url(#SVGID_1_);}
+ .st1{opacity:0.3;fill:url(#SVGID_2_);}
+ .st2{opacity:0.1;fill:none;stroke:#223839;stroke-miterlimit:10;}
+ .st3{opacity:0.3;fill:#E8D9D9;}
+ .st4{opacity:0.5;fill:url(#SVGID_3_);}
+ .st5{opacity:0.3;fill:url(#SVGID_4_);}
+ .st6{opacity:0.3;fill:url(#SVGID_5_);}
+ .st7{fill:#F6D2C9;}
+ .st8{fill:#FFFFFF;}
+ .st9{fill:#FF2EDD;}
+ .st10{fill:none;stroke:url(#SVGID_6_);stroke-width:3;stroke-miterlimit:10;}
+ .st11{fill:none;stroke:#B3B3B3;stroke-width:0.75;stroke-miterlimit:10;}
+ .st12{fill:none;stroke:url(#SVGID_7_);stroke-miterlimit:10;}
+ .st13{fill:none;stroke:url(#SVGID_8_);stroke-width:3;stroke-miterlimit:10;}
+ .st14{fill:#FB3B49;}
+ .st15{fill:url(#SVGID_9_);}
+ .st16{opacity:0.7;}
+ .st17{fill:url(#SVGID_10_);}
+ .st18{fill:#333333;}
+ .st19{opacity:0.2;fill:#FB3B49;}
+ .st20{opacity:0.3;fill:url(#SVGID_11_);}
+ .st21{fill:none;stroke:url(#SVGID_12_);stroke-width:3;stroke-miterlimit:10;}
+ .st22{fill:url(#SVGID_13_);}
+ .st23{fill:url(#SVGID_14_);}
+ .st24{fill:none;stroke:url(#SVGID_15_);stroke-width:10.069;stroke-miterlimit:10;}
+ .st25{fill:none;stroke:url(#SVGID_16_);stroke-width:10.069;stroke-miterlimit:10;}
+ .st26{fill:none;stroke:url(#SVGID_17_);stroke-width:3;stroke-miterlimit:10;}
+ .st27{clip-path:url(#XMLID_6_);}
+ .st28{opacity:0.3;fill:url(#SVGID_18_);}
+ .st29{fill:none;stroke:url(#SVGID_19_);stroke-width:3;stroke-miterlimit:10;}
+ .st30{fill:url(#SVGID_20_);}
+ .st31{fill:url(#SVGID_21_);}
+ .st32{fill:none;stroke:url(#SVGID_22_);stroke-width:3;stroke-miterlimit:10;}
+ .st33{opacity:0.8;}
+ .st34{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
+ .st35{fill:#7C2EDD;}
+ .st36{fill:none;stroke:url(#SVGID_23_);stroke-width:3;stroke-miterlimit:10;}
+ .st37{fill:none;stroke:url(#SVGID_24_);stroke-width:3;stroke-miterlimit:10;}
+ .st38{fill:none;stroke:#B3B3B3;stroke-miterlimit:10;}
+ .st39{fill:none;stroke:#B3B3B3;stroke-width:1.1228;stroke-miterlimit:10;}
+ .st40{fill:none;stroke:#B3B3B3;stroke-width:1.2168;stroke-miterlimit:10;}
+ .st41{fill:none;stroke:#333333;stroke-miterlimit:10;}
+ .st42{fill:url(#SVGID_25_);}
+ .st43{fill:url(#SVGID_26_);}
+ .st44{fill:url(#SVGID_27_);}
+ .st45{fill:url(#SVGID_28_);}
+ .st46{fill:#231F20;}
+ .st47{fill:none;}
+ .st48{opacity:0.6;fill:url(#SVGID_29_);}
+ .st49{fill:none;stroke:url(#SVGID_30_);stroke-miterlimit:10;}
+ .st50{fill:none;stroke:#B3B3B3;stroke-width:0.7877;stroke-miterlimit:10;}
+ .st51{opacity:0.9;}
+ .st52{opacity:0.1;}
+ .st53{fill:none;stroke:#808080;stroke-miterlimit:10;}
+ .st54{opacity:5.000000e-02;}
+ .st55{fill:none;stroke:#FF00FF;stroke-miterlimit:10;}
+ .st56{fill:url(#SVGID_31_);}
+ .st57{fill:url(#SVGID_32_);}
+ .st58{opacity:0.19;fill:url(#SVGID_33_);}
+ .st59{fill:none;stroke:url(#SVGID_34_);stroke-width:3;stroke-miterlimit:10;}
+ .st60{opacity:0.19;fill:url(#SVGID_35_);}
+ .st61{opacity:0.5;fill:#FFFFFF;}
+ .st62{fill:none;stroke:#333333;stroke-width:2;stroke-miterlimit:10;}
+ .st63{opacity:0.19;fill:url(#SVGID_36_);}
+ .st64{fill:#333333;stroke:#333333;stroke-miterlimit:10;}
+ .st65{opacity:0.19;fill:url(#SVGID_37_);}
+ .st66{fill:none;stroke:#333333;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
+ .st67{fill:none;stroke:url(#SVGID_38_);stroke-width:3;stroke-miterlimit:10;}
+ .st68{opacity:0.6;fill:url(#SVGID_39_);}
+ .st69{opacity:0.4;fill:url(#SVGID_40_);}
+ .st70{opacity:0.4;fill:url(#SVGID_41_);}
+ .st71{opacity:0.4;fill:url(#SVGID_42_);}
+ .st72{fill:#F2F2F2;}
+ .st73{opacity:0.4;fill:url(#SVGID_43_);}
+ .st74{fill:#413844;stroke:#223839;stroke-miterlimit:10;}
+
+ .st75{fill:#FFFFFF;fill-opacity:0.5;stroke:#223839;stroke-width:1.802;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
+ .st76{fill:url(#SVGID_44_);}
+ .st77{fill:url(#SVGID_45_);}
+ .st78{fill:url(#SVGID_46_);}
+ .st79{fill:url(#SVGID_47_);}
+ .st80{fill:url(#SVGID_48_);}
+ .st81{fill:none;stroke:#223839;stroke-width:2;stroke-miterlimit:10;}
+ .st82{fill:url(#SVGID_49_);}
+ .st83{fill:url(#SVGID_50_);}
+ .st84{fill:url(#SVGID_51_);}
+ .st85{fill:url(#SVGID_52_);}
+ .st86{fill:url(#SVGID_53_);}
+ .st87{fill:url(#SVGID_54_);}
+ .st88{fill:url(#SVGID_55_);}
+ .st89{fill:url(#SVGID_56_);}
+ .st90{fill:url(#SVGID_57_);}
+ .st91{fill:url(#SVGID_58_);}
+ .st92{fill:#FF00FF;}
+ .st93{fill:#7457D9;}
+ .st94{opacity:0.3;fill:url(#SVGID_59_);}
+ .st95{fill:none;stroke:url(#SVGID_60_);stroke-width:3;stroke-miterlimit:10;}
+ .st96{fill:#333333;stroke:#333333;stroke-width:1.0718;stroke-miterlimit:10;}
+ .st97{fill:none;stroke:url(#SVGID_61_);stroke-miterlimit:10;}
+ .st98{fill:#413844;}
+ .st99{fill:none;stroke:#223839;stroke-miterlimit:10;}
+ .st100{opacity:0.6;fill:url(#SVGID_62_);}
+ .st101{opacity:0.4;fill:url(#SVGID_63_);}
+ .st102{opacity:0.4;fill:url(#SVGID_64_);}
+ .st103{opacity:0.4;fill:url(#SVGID_65_);}
+ .st104{opacity:0.4;fill:url(#SVGID_66_);}
+ .st105{fill:url(#SVGID_67_);}
+ .st106{fill:url(#SVGID_68_);}
+ .st107{fill:url(#SVGID_69_);}
+ .st108{fill:url(#SVGID_70_);}
+ .st109{fill:url(#SVGID_71_);}
+ .st110{fill:url(#SVGID_72_);}
+ .st111{fill:url(#SVGID_73_);}
+ .st112{fill:url(#SVGID_74_);}
+ .st113{fill:url(#SVGID_75_);}
+ .st114{fill:url(#SVGID_76_);}
+ .st115{fill:url(#SVGID_77_);}
+ .st116{fill:url(#SVGID_78_);}
+ .st117{fill:url(#SVGID_79_);}
+ .st118{fill:url(#SVGID_80_);}
+ .st119{fill:url(#SVGID_81_);}
+ .st120{fill:none;stroke:#FF00FF;stroke-miterlimit:10;stroke-dasharray:40,2;}
+ .st121{fill:url(#SVGID_82_);stroke:url(#SVGID_83_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st122{fill:url(#SVGID_84_);stroke:url(#SVGID_85_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st123{fill:url(#SVGID_86_);stroke:url(#SVGID_87_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st124{fill:url(#SVGID_88_);}
+ .st125{fill:url(#SVGID_89_);}
+ .st126{fill:url(#SVGID_90_);}
+ .st127{opacity:0.9;fill:url(#SVGID_91_);}
+ .st128{fill:none;stroke:url(#SVGID_92_);stroke-width:3;stroke-miterlimit:10;}
+ .st129{opacity:0.1;fill:none;stroke:#4D4D4D;stroke-miterlimit:10;}
+ .st130{fill:#ED1C24;}
+ .st131{fill:#666666;}
+ .st132{opacity:0.2;fill:#D4BEB8;}
+ .st133{fill:none;stroke:#FB3B49;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
+ .st134{opacity:8.000000e-02;fill:#CC33FF;}
+ .st135{fill:#CC33FF;}
+ .st136{fill:#AF2AF7;}
+ .st137{opacity:0.3;fill:url(#SVGID_93_);}
+ .st138{fill:none;stroke:#F2F2F2;stroke-miterlimit:10;}
+ .st139{fill:url(#SVGID_94_);stroke:url(#SVGID_95_);stroke-width:0.4819;stroke-miterlimit:10;}
+ .st140{fill:url(#SVGID_96_);stroke:url(#SVGID_97_);stroke-width:0.4819;stroke-miterlimit:10;}
+ .st141{fill:url(#SVGID_98_);stroke:url(#SVGID_99_);stroke-width:0.4819;stroke-miterlimit:10;}
+ .st142{fill:none;stroke:#FB3B49;stroke-miterlimit:10;}
+ .st143{fill:url(#SVGID_100_);stroke:url(#SVGID_101_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st144{fill:url(#SVGID_102_);}
+ .st145{fill:url(#SVGID_103_);}
+ .st146{fill:none;stroke:url(#SVGID_104_);stroke-miterlimit:10;}
+ .st147{fill:url(#SVGID_105_);stroke:url(#SVGID_106_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st148{fill:url(#SVGID_107_);stroke:url(#SVGID_108_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st149{fill:url(#SVGID_109_);stroke:url(#SVGID_110_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st150{fill:none;stroke:#FF00FF;stroke-width:0.6009;stroke-miterlimit:10;stroke-dasharray:24.0344,1.2017;}
+ .st151{fill:none;stroke:#FB3B49;stroke-width:0.6009;stroke-miterlimit:10;}
+ .st152{fill:url(#SVGID_111_);stroke:url(#SVGID_112_);stroke-width:0.4458;stroke-miterlimit:10;}
+ .st153{fill:url(#SVGID_113_);}
+ .st154{fill:url(#SVGID_114_);}
+ .st155{fill:url(#SVGID_115_);}
+ .st156{fill:url(#SVGID_116_);}
+ .st157{fill:url(#SVGID_117_);}
+ .st158{fill:url(#SVGID_118_);stroke:url(#SVGID_119_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st159{fill:url(#SVGID_120_);stroke:url(#SVGID_121_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st160{fill:url(#SVGID_122_);stroke:url(#SVGID_123_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st161{fill:url(#SVGID_124_);stroke:url(#SVGID_125_);stroke-width:0.742;stroke-miterlimit:10;}
+ .st162{fill:url(#SVGID_126_);}
+ .st163{fill:url(#SVGID_127_);}
+ .st164{opacity:0.9;fill:url(#SVGID_128_);}
+ .st165{fill:url(#SVGID_129_);}
+ .st166{opacity:0.9;fill:url(#SVGID_130_);}
+ .st167{fill:url(#SVGID_131_);stroke:url(#SVGID_132_);stroke-width:0.4458;stroke-miterlimit:10;}
+ .st168{fill:url(#SVGID_133_);}
+ .st169{fill:url(#SVGID_134_);}
+ .st170{opacity:0.9;fill:url(#SVGID_135_);}
+ .st171{fill:url(#SVGID_136_);}
+ .st172{opacity:0.9;fill:url(#SVGID_137_);}
+ .st173{fill:url(#SVGID_138_);}
+ .st174{opacity:0.9;fill:url(#SVGID_139_);}
+ .st175{fill:url(#SVGID_140_);}
+ .st176{fill:url(#SVGID_141_);}
+</style>
+<g id="Layer_1">
+ <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="2289.9851" y1="1563.1174" x2="1514.015" y2="2487.8826">
+ <stop offset="0" style="stop-color:#D4BEB8;stop-opacity:0.5"/>
+ <stop offset="1" style="stop-color:#FFFFFF"/>
+ </linearGradient>
+ <rect x="1103" y="1908" class="st0" width="1598" height="235"/>
+ <linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="-820.99" y1="-38.4568" x2="-1853.01" y2="1191.4568">
+ <stop offset="0" style="stop-color:#D4BEB8"/>
+ <stop offset="1" style="stop-color:#FFFFFF"/>
+ </linearGradient>
+ <rect x="-2136" y="199" class="st1" width="1598" height="755"/>
+ <path class="st2" d="M2391.4,1732l-790.9,0c-1.4,0-2.6-1.2-2.6-2.6l0-239.8c0-1.4,1.2-2.6,2.6-2.6l790.9,0c1.4,0,2.6,1.2,2.6,2.6
+ v239.8C2394,1730.8,2392.8,1732,2391.4,1732z"/>
+ <rect x="-3759" y="945" class="st3" width="1598" height="1797"/>
+ <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="-5377" y1="567" x2="-3779" y2="567">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st4" points="-3779,943 -3779,191 -5377,191 -5377,941.4 "/>
+ <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="-6997" y1="468.8795" x2="-5399" y2="468.8795">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <polygon class="st5" points="-5399,742.2 -5399,190 -6997,190 -6997,747.8 "/>
+ <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="-7038.6743" y1="-1850.8542" x2="-5359.3257" y2="-1432.1458">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <rect x="-6997" y="-2018" class="st6" width="1596" height="753"/>
+ <g>
+ <g>
+ <rect x="-7986.6" y="741.4" class="st7" width="318" height="1481"/>
+ </g>
+ <g>
+ <rect x="-7994" y="734" class="st8" width="318" height="1481"/>
+ </g>
+ </g>
+ <rect x="-6952" y="-2057" class="st47" width="22" height="22.6"/>
+
+ <text transform="matrix(1 0 0 1 -6946 -2042.8003)" class="st9" style="font-family:'SourceCodeVariable-Roman'; font-size:20px; letter-spacing:1;">❤</text>
+ <text transform="matrix(1 0 0 1 -5986.0918 -2041.6987)"><tspan x="0" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">npm Enterprise Products Solutions Resources</tspan><tspan x="351.5" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:4;"> </tspan><tspan x="360" y="0" style="font-family:'Poppins-Regular'; font-size:14px;"> Docs Support</tspan></text>
+ <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="-6998" y1="-2076" x2="-5399" y2="-2076">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st10" x1="-6998" y1="-2076" x2="-5399" y2="-2076"/>
+ <line class="st11" x1="-5398.5" y1="-2020" x2="-6998" y2="-2020"/>
+ <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="-5002.8535" y1="366.75" x2="-5001.6465" y2="366.75">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st12" x1="-5002" y1="367" x2="-5002.5" y2="366.5"/>
+ <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="-5622" y1="-2035" x2="-5587.5" y2="-2035">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st13" x1="-5622" y1="-2035" x2="-5587.5" y2="-2035"/>
+ <rect x="-6301" y="-1557" class="st14" width="276" height="71"/>
+ <g>
+ <linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="-6424.5444" y1="-1869.6499" x2="-6397.4526" y2="-1869.6499">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <polygon class="st15" points="-6419.4,-1851 -6424.5,-1857.1 -6409.8,-1869.6 -6424.5,-1882.2 -6419.3,-1888.3 -6397.5,-1869.6
+ "/>
+ </g>
+ <g class="st16">
+ <linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="-5934.0264" y1="-1841.5068" x2="-5903.5" y2="-1841.5068">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <rect x="-5934" y="-1845.5" class="st17" width="30.5" height="8"/>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="1618" height="1337" xlink:href="3A9306F390EA591E.png" transform="matrix(1 0 0 1 -7008 750)">
+ </image>
+ <g>
+ <rect x="-6999" y="764" class="st18" width="1600" height="1319"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="431" height="91" xlink:href="3A9306F390EA5922.png" transform="matrix(1 0 0 1 -6377 -1915)">
+ </image>
+ <g>
+ <g>
+ <path class="st18" d="M-6325.1-1838.6h-13.6l-23.2-51.7v51.7h-11.1v-68.4h15l21.7,49v-49h11.9c0.1,0.1,0.2,0.3,0.2,0.5
+ c0,0.3-0.1,0.6-0.4,1c-0.3,0.4-0.5,1.2-0.6,2.3V-1838.6z"/>
+ <path class="st18" d="M-6309.5-1907h23.2c4.1,0,7.6,0.5,10.5,1.6c2.9,1.1,5.3,2.6,7.1,4.4c1.9,1.9,3.2,4,4.1,6.5
+ c0.9,2.5,1.3,5.1,1.3,7.9c0,2.8-0.4,5.4-1.3,7.9c-0.8,2.5-2.2,4.6-4,6.4c-1.8,1.8-4.2,3.3-7,4.3c-2.9,1.1-6.3,1.6-10.2,1.6
+ h-11.2v27.7h-12.5V-1907z M-6297-1896.2v19.4h10.3c1.9,0,3.5-0.2,4.9-0.7c1.4-0.5,2.5-1.1,3.3-2c0.9-0.8,1.5-1.8,1.9-3
+ c0.4-1.2,0.6-2.4,0.6-3.7c0-1.5-0.2-2.8-0.7-4c-0.4-1.2-1.1-2.3-2-3.1s-2-1.6-3.3-2.1c-1.3-0.5-2.9-0.8-4.7-0.8H-6297z"/>
+ <path class="st18" d="M-6250.2-1907h13l11.5,32.2l11.4-32.3h13.1v68.5h-11.1v-49.6l-9.6,25.8h-8.1l-9.2-25.8v49.6h-11V-1907z"/>
+ <path class="st18" d="M-6088.2-1887.7c-0.3-0.1-0.5-0.2-0.6-0.4c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.3-0.1-0.6-0.1-1
+ c0-0.4-0.1-0.8-0.3-1.3c-1-2.3-2.4-4.2-4.2-5.5c-1.8-1.4-4-2-6.7-2c-2.2,0-4.2,0.6-5.9,1.9c-1.8,1.2-3.3,3-4.5,5.2
+ c-1.2,2.2-2.2,4.9-2.9,8.1c-0.7,3.2-1,6.7-1,10.6c0,3.7,0.4,7.2,1.1,10.4c0.7,3.2,1.8,5.9,3.1,8.2c1.3,2.3,2.9,4.1,4.8,5.4
+ c1.9,1.3,3.9,2,6.1,2c2.6,0,5-0.8,7-2.5c2-1.6,3.8-3.9,5.4-6.6l9.3,6c-2.6,4.5-5.7,7.8-9.4,10s-7.7,3.3-12,3.3
+ c-4,0-7.8-0.7-11.2-2.1c-3.4-1.4-6.4-3.6-8.9-6.6c-2.5-3-4.5-6.7-5.9-11.2c-1.4-4.5-2.1-9.7-2.1-15.8c0-4.5,0.4-8.5,1.2-12
+ c0.8-3.5,1.8-6.7,3.1-9.4c1.3-2.7,2.9-5,4.7-6.9c1.8-1.9,3.7-3.4,5.7-4.6c2-1.2,4.1-2.1,6.3-2.6c2.2-0.5,4.3-0.8,6.3-0.8
+ c2.6,0,5,0.4,7.4,1.1c2.3,0.7,4.5,1.8,6.5,3.2c2,1.4,3.8,3,5.3,4.9c1.5,1.9,2.8,4,3.8,6.4L-6088.2-1887.7z"/>
+ <path class="st18" d="M-6018.7-1848.9v10.3h-43.7v-68.4h13.4c0.1,0.1,0.2,0.3,0.2,0.5c0,0.3-0.1,0.6-0.4,1
+ c-0.3,0.4-0.5,1.2-0.6,2.3v54.2H-6018.7z"/>
+ <path class="st18" d="M-5998.9-1907h38.2v10.2h-13.3v48.1h13.8v10.1h-39.4v-10.2h13.3v-48h-12.6V-1907z"/>
+ </g>
+ </g>
+ </g>
+ <rect x="-6531.6" y="-1752.6" class="st47" width="742.6" height="304.6"/>
+ <text transform="matrix(1 0 0 1 -6531.584 -1730.3711)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">The</tspan><tspan x="61" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:13;"> </tspan><tspan x="81.8" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">intelligent</tspan><tspan x="255.3" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:13;"> </tspan><tspan x="276.1" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">package</tspan><tspan x="424.1" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:13;"> </tspan><tspan x="444.9" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">manager</tspan><tspan x="600.4" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:13;"> </tspan><tspan x="621.2" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">for</tspan><tspan x="668.2" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:13;"> </tspan><tspan x="689" y="0" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">the </tspan><tspan x="0" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">Node</tspan><tspan x="87.2" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:7;"> </tspan><tspan x="101.6" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">Javascript</tspan><tspan x="282.2" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:7;"> </tspan><tspan x="296.5" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">Platform.</tspan><tspan x="452.1" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:7;"> </tspan><tspan x="466.5" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">Install</tspan><tspan x="572.3" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:7;"> </tspan><tspan x="586.6" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">stuff</tspan><tspan x="664.1" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:7;"> </tspan><tspan x="678.5" y="43" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">and </tspan><tspan x="275.1" y="86" class="st18" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">get coding!</tspan></text>
+ <rect x="-6294" y="-1550" class="st19" width="276" height="71"/>
+
+ <text transform="matrix(1 0 0 1 -6251.0112 -1512.5884)" style="font-family:'Poppins-SemiBold'; font-size:30px; letter-spacing:1;">Read Docs</text>
+ <path class="st18" d="M-5394-1329.5c18.3,18.3-25.9-40-51.8-40c-25.9,0-25.9,40-51.8,40c-25.9,0-25.9-40-51.7-40
+ c-25.9,0-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40s-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40c-25.9,0-25.9,40-51.7,40
+ c-25.9,0-25.9-40-51.7-40c-25.9,0-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40c-25.9,0-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40
+ c-25.9,0-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40c-25.9,0-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40c-25.9,0-25.9,40-51.7,40
+ s-25.9-40-51.7-40s-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40c-25.9,0-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40
+ c-25.9,0-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40s-25.9,40-51.7,40c-25.9,0-25.9-40-51.7-40s-25.9,40-51.7,40s-25.9-40-51.7-40
+ s-25.9,40-51.7,40s-25.9-40-51.7-40V-86h1603.5C-5394.5-86-5396.4-1331.9-5394-1329.5z"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="346" height="346" xlink:href="3A9306F390EA5925.png" transform="matrix(1 0 0 1 -6758 -1220)">
+ </image>
+ <g>
+ <circle class="st8" cx="-6585" cy="-1047" r="128"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="346" height="346" xlink:href="3A9306F390EA5926.png" transform="matrix(1 0 0 1 -6765 -521)">
+ </image>
+ <g>
+ <circle class="st8" cx="-6592" cy="-348" r="128"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="346" height="346" xlink:href="3A9306F390EA5924.png" transform="matrix(1 0 0 1 -5942 -796)">
+ </image>
+ <g>
+ <circle class="st8" cx="-5769" cy="-623" r="128"/>
+ </g>
+ </g>
+ <text transform="matrix(1 0 0 1 -6176.6538 441.0776)"><tspan x="0" y="0" style="font-family:'MyriadPro-Regular'; font-size:30px; letter-spacing:1;">❤</tspan><tspan x="16.8" y="0" style="font-family:'MonotypeSorts'; font-size:30px; letter-spacing:1;">,</tspan></text>
+ <linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="-5377" y1="-1706.4" x2="-3781" y2="-1706.4">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <path class="st20" d="M-3781-2022v630.9c-21-2.9-22.7-23.8-46.8-23.8c-25.9,0-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2
+ c-25.9,0-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2
+ c-25.9,0-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2s-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2
+ c-25.9,0-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2s-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2
+ c-25.9,0-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2
+ c-25.9,0-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2
+ c-25.9,0-25.9,24.2-51.8,24.2s-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2c-25.9,0-25.9-24.2-51.8-24.2
+ c-25.9,0-25.9,24.2-51.8,24.2s-25.9-24.2-51.8-24.2c-25.9,0-25.9,24.2-51.8,24.2c-24.5,0-25.8-21.6-47.8-24V-2022H-3781z"/>
+ <g>
+
+ <image style="overflow:visible;" width="1608" height="1247" xlink:href="3A9306F390EA5923.png" transform="matrix(1 0 0 1 -5385 -1401)">
+ </image>
+ <g>
+ <path class="st18" d="M-3781-1369.1V-158h-1596v-1234.8c22,2.3,23.3,24,47.8,24c25.9,0,25.9-24.2,51.8-24.2
+ c25.9,0,25.9,24.2,51.8,24.2s25.9-24.2,51.8-24.2c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2
+ c25.9,0,25.9,24.2,51.8,24.2s25.9-24.2,51.8-24.2c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2
+ c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2
+ c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2
+ s25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2s25.9,24.2,51.8,24.2
+ c25.9,0,25.9-24.2,51.8-24.2c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2c25.9,0,25.9,24.2,51.8,24.2
+ c25.9,0,25.9-24.2,51.8-24.2c25.9,0,25.9,24.2,51.8,24.2c25.9,0,25.9-24.2,51.8-24.2C-3803.7-1393-3802-1372-3781-1369.1z"/>
+ </g>
+ </g>
+ <rect x="-5332" y="-2055" class="st47" width="22" height="22.6"/>
+
+ <text transform="matrix(1 0 0 1 -5326 -2040.8003)" class="st9" style="font-family:'SourceCodeVariable-Roman'; font-size:20px; letter-spacing:1;">❤</text>
+ <text transform="matrix(1 0 0 1 -4366.0918 -2045.6987)"><tspan x="0" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">npm Enterprise Products Solutions Resources</tspan><tspan x="351.5" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:4;"> </tspan><tspan x="360" y="0" style="font-family:'Poppins-Regular'; font-size:14px;"> Docs Support</tspan></text>
+ <line class="st11" x1="-3778.5" y1="-2022" x2="-5378" y2="-2022"/>
+ <linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="-4002" y1="-2039" x2="-3967.5" y2="-2039">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st21" x1="-4002" y1="-2039" x2="-3967.5" y2="-2039"/>
+ <rect x="-4708.8" y="-1634" class="st14" width="230" height="59.2"/>
+ <g>
+ <linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="-4846.5444" y1="-1838.6499" x2="-4819.4526" y2="-1838.6499">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <polygon class="st22" points="-4841.4,-1820 -4846.5,-1826.1 -4831.8,-1838.6 -4846.5,-1851.2 -4841.3,-1857.3 -4819.5,-1838.6
+ "/>
+ </g>
+ <g class="st16">
+ <linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="-4356.0264" y1="-1810.5068" x2="-4325.5" y2="-1810.5068">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <rect x="-4356" y="-1814.5" class="st23" width="30.5" height="8"/>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="431" height="91" xlink:href="3A9306F390EA592D.png" transform="matrix(1 0 0 1 -4799 -1884)">
+ </image>
+ <g>
+ <g>
+ <path class="st18" d="M-4747.1-1807.6h-13.6l-23.2-51.7v51.7h-11.1v-68.4h15l21.7,49v-49h11.9c0.1,0.1,0.2,0.3,0.2,0.5
+ c0,0.3-0.1,0.6-0.4,1c-0.3,0.4-0.5,1.2-0.6,2.3V-1807.6z"/>
+ <path class="st18" d="M-4731.5-1876h23.2c4.1,0,7.6,0.5,10.5,1.6c2.9,1.1,5.3,2.6,7.1,4.4c1.9,1.9,3.2,4,4.1,6.5
+ c0.9,2.5,1.3,5.1,1.3,7.9c0,2.8-0.4,5.4-1.3,7.9c-0.8,2.5-2.2,4.6-4,6.4c-1.8,1.8-4.2,3.3-7,4.3c-2.9,1.1-6.3,1.6-10.2,1.6
+ h-11.2v27.7h-12.5V-1876z M-4719-1865.2v19.4h10.3c1.9,0,3.5-0.2,4.9-0.7c1.4-0.5,2.5-1.1,3.3-2c0.9-0.8,1.5-1.8,1.9-3
+ c0.4-1.2,0.6-2.4,0.6-3.7c0-1.5-0.2-2.8-0.7-4c-0.4-1.2-1.1-2.3-2-3.1s-2-1.6-3.3-2.1c-1.3-0.5-2.9-0.8-4.7-0.8H-4719z"/>
+ <path class="st18" d="M-4672.2-1876h13l11.5,32.2l11.4-32.3h13.1v68.5h-11.1v-49.6l-9.6,25.8h-8.1l-9.2-25.8v49.6h-11V-1876z"/>
+ <path class="st18" d="M-4510.2-1856.7c-0.3-0.1-0.5-0.2-0.6-0.4c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.3-0.1-0.6-0.1-1
+ c0-0.4-0.1-0.8-0.3-1.3c-1-2.3-2.4-4.2-4.2-5.5c-1.8-1.4-4-2-6.7-2c-2.2,0-4.2,0.6-5.9,1.9c-1.8,1.2-3.3,3-4.5,5.2
+ c-1.2,2.2-2.2,4.9-2.9,8.1c-0.7,3.2-1,6.7-1,10.6c0,3.7,0.4,7.2,1.1,10.4c0.7,3.2,1.8,5.9,3.1,8.2c1.3,2.3,2.9,4.1,4.8,5.4
+ c1.9,1.3,3.9,2,6.1,2c2.6,0,5-0.8,7-2.5c2-1.6,3.8-3.9,5.4-6.6l9.3,6c-2.6,4.5-5.7,7.8-9.4,10s-7.7,3.3-12,3.3
+ c-4,0-7.8-0.7-11.2-2.1c-3.4-1.4-6.4-3.6-8.9-6.6c-2.5-3-4.5-6.7-5.9-11.2c-1.4-4.5-2.1-9.7-2.1-15.8c0-4.5,0.4-8.5,1.2-12
+ c0.8-3.5,1.8-6.7,3.1-9.4c1.3-2.7,2.9-5,4.7-6.9c1.8-1.9,3.7-3.4,5.7-4.6c2-1.2,4.1-2.1,6.3-2.6c2.2-0.5,4.3-0.8,6.3-0.8
+ c2.6,0,5,0.4,7.4,1.1c2.3,0.7,4.5,1.8,6.5,3.2c2,1.4,3.8,3,5.3,4.9c1.5,1.9,2.8,4,3.8,6.4L-4510.2-1856.7z"/>
+ <path class="st18" d="M-4440.7-1817.9v10.3h-43.7v-68.4h13.4c0.1,0.1,0.2,0.3,0.2,0.5c0,0.3-0.1,0.6-0.4,1
+ c-0.3,0.4-0.5,1.2-0.6,2.3v54.2H-4440.7z"/>
+ <path class="st18" d="M-4420.9-1876h38.2v10.2h-13.3v48.1h13.8v10.1h-39.4v-10.2h13.3v-48h-12.6V-1876z"/>
+ </g>
+ </g>
+ </g>
+ <rect x="-4953.6" y="-1743.6" class="st47" width="742.6" height="304.6"/>
+ <text transform="matrix(1 0 0 1 -4806.5601 -1728.771)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:20px; letter-spacing:1;">The intelligent package manager for the </tspan><tspan x="-75.6" y="31" class="st18" style="font-family:'Poppins-Regular'; font-size:20px; letter-spacing:1;">Node Javascript Platform. Install stuff and get coding!</tspan></text>
+ <rect x="-4703" y="-1628.2" class="st19" width="230" height="59.2"/>
+
+ <text transform="matrix(1 0 0 1 -4652.0112 -1595.5884)" style="font-family:'Poppins-SemiBold'; font-size:20px; letter-spacing:1;">Read Docs</text>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="309" height="304" xlink:href="3A9306F390EA592E.png" transform="matrix(1 0 0 1 -5203.6226 -1295.6224)">
+ </image>
+ <g>
+ <ellipse class="st8" cx="-5049.2" cy="-1143.6" rx="113.9" ry="111.5"/>
+ </g>
+ </g>
+ <linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="-3781.7075" y1="-1346.9401" x2="-3776" y2="-1346.9401">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <path class="st24" d="M-3776-1346.8c-1.8,0-3.4-0.1-5-0.3"/>
+ <linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="-4571" y1="1188.1196" x2="-4566.4438" y2="1188.1196">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <path class="st25" d="M-4567,1188.2c-1.3-0.1-2.6-0.2-4-0.2"/>
+ <linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="-5377" y1="-2075.5" x2="-3778" y2="-2075.5">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st26" x1="-5377" y1="-2075.5" x2="-3778" y2="-2075.5"/>
+
+ <text transform="matrix(1 0 0 1 -4856.1777 -1177.2793)" class="st8" style="font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Super Cool</text>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -5148.1777 -835.2793)" class="st8" style="font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Easy to Use</text>
+ </g>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -4843.1777 -430.2793)" class="st8" style="font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Ultra Fast</text>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.7;" width="309" height="304" xlink:href="3A9306F390EA592C.png" transform="matrix(1 0 0 1 -5213.6226 -567.6224)">
+ </image>
+ <g>
+ <ellipse class="st8" cx="-5059.6" cy="-415.6" rx="113.9" ry="111.5"/>
+ </g>
+ </g>
+ <text transform="matrix(1 0 0 1 -4857.5654 -1129.5498)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-SemiBold'; font-size:20px;">Nunc malesuada suscipit enim at feugiat. Duis id mauris</tspan><tspan x="0" y="36" class="st8" style="font-family:'Poppins-SemiBold'; font-size:20px;">lectus. Donec a sagittis lectus.</tspan></text>
+ <text transform="matrix(1 0 0 1 -5149.5654 -787.5498)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-SemiBold'; font-size:25px;">Sed accumsan vehicula diam vel auctor. Suspendisse</tspan><tspan x="0" y="36" class="st8" style="font-family:'Poppins-SemiBold'; font-size:25px;"> id interdum lectus. Phasellus sed tortor sed dui rutrum </tspan><tspan x="0" y="72" class="st8" style="font-family:'Poppins-SemiBold'; font-size:25px;">vestibulum vitae eget lacus. </tspan></text>
+ <g>
+ <defs>
+ <text id="XMLID_1_" transform="matrix(1 0 0 1 -4847.5654 -379.5498)"><tspan x="0" y="0" style="font-family:'Poppins-SemiBold'; font-size:25px;">Lorem ipsum dolor sit amet, consectetur adipiscing elit. </tspan><tspan x="0" y="36" style="font-family:'Poppins-SemiBold'; font-size:25px;">Sed tempus sapien nibh, et vehicula ipsum cursus non. </tspan></text>
+ </defs>
+ <clipPath id="XMLID_6_">
+ <use xlink:href="#XMLID_1_" style="overflow:visible;"/>
+ </clipPath>
+ <g class="st27">
+
+ <image style="overflow:visible;opacity:0.4;" width="247" height="242" xlink:href="77400133F1DEE1A1.png" transform="matrix(1 0 0 1 -4424.0918 -719.0377)">
+ </image>
+ <g>
+ <ellipse class="st8" cx="-4307.5" cy="-600.7" rx="113.9" ry="111.5"/>
+ </g>
+ </g>
+ <g class="st27">
+
+ <image style="overflow:visible;opacity:0.5;" width="309" height="304" xlink:href="77400133F1DEE1A7.png" transform="matrix(1 0 0 1 -4315.9448 -885.687)">
+ </image>
+ <g>
+ <ellipse class="st8" cx="-4161.5" cy="-733.7" rx="113.9" ry="111.5"/>
+ </g>
+ </g>
+ </g>
+ <linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="-4260" y1="-777.5" x2="-3974" y2="-777.5">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <circle class="st28" cx="-4117" cy="-777.5" r="143"/>
+ <circle class="st8" cx="-4117" cy="-777.5" r="134"/>
+ <rect x="-6952" y="157" class="st47" width="22" height="22.6"/>
+
+ <text transform="matrix(1 0 0 1 -6946 171.1997)" class="st9" style="font-family:'SourceCodeVariable-Roman'; font-size:20px; letter-spacing:1;">❤</text>
+ <text transform="matrix(1 0 0 1 -5986.0918 166.3013)"><tspan x="0" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">npm Enterprise Products Solutions Resources</tspan><tspan x="351.5" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:4;"> </tspan><tspan x="360" y="0" style="font-family:'Poppins-Regular'; font-size:14px;"> Docs Support</tspan></text>
+ <line class="st11" x1="-5398.5" y1="190" x2="-6998" y2="190"/>
+ <linearGradient id="SVGID_19_" gradientUnits="userSpaceOnUse" x1="-5622" y1="173" x2="-5587.5" y2="173">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st29" x1="-5622" y1="173" x2="-5587.5" y2="173"/>
+ <rect x="-6328.8" y="578" class="st14" width="230" height="59.2"/>
+ <g>
+ <linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="-6466.5444" y1="373.3501" x2="-6439.4526" y2="373.3501">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <polygon class="st30" points="-6461.4,392 -6466.5,385.9 -6451.8,373.4 -6466.5,360.8 -6461.3,354.7 -6439.5,373.4 "/>
+ </g>
+ <g class="st16">
+ <linearGradient id="SVGID_21_" gradientUnits="userSpaceOnUse" x1="-5976.0264" y1="401.4932" x2="-5945.5" y2="401.4932">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <rect x="-5976" y="397.5" class="st31" width="30.5" height="8"/>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="431" height="91" xlink:href="77400133F1DEE1A0.png" transform="matrix(1 0 0 1 -6419 328)">
+ </image>
+ <g>
+ <g>
+ <path class="st18" d="M-6367.1,404.4h-13.6l-23.2-51.7v51.7h-11.1V336h15l21.7,49v-49h11.9c0.1,0.1,0.2,0.3,0.2,0.5
+ c0,0.3-0.1,0.6-0.4,1c-0.3,0.4-0.5,1.2-0.6,2.3V404.4z"/>
+ <path class="st18" d="M-6351.5,336h23.2c4.1,0,7.6,0.5,10.5,1.6c2.9,1.1,5.3,2.6,7.1,4.4c1.9,1.9,3.2,4,4.1,6.5
+ c0.9,2.5,1.3,5.1,1.3,7.9c0,2.8-0.4,5.4-1.3,7.9c-0.8,2.5-2.2,4.6-4,6.4c-1.8,1.8-4.2,3.3-7,4.3c-2.9,1.1-6.3,1.6-10.2,1.6
+ h-11.2v27.7h-12.5V336z M-6339,346.8v19.4h10.3c1.9,0,3.5-0.2,4.9-0.7c1.4-0.5,2.5-1.1,3.3-2c0.9-0.8,1.5-1.8,1.9-3
+ c0.4-1.2,0.6-2.4,0.6-3.7c0-1.5-0.2-2.8-0.7-4c-0.4-1.2-1.1-2.3-2-3.1s-2-1.6-3.3-2.1c-1.3-0.5-2.9-0.8-4.7-0.8H-6339z"/>
+ <path class="st18" d="M-6292.2,336h13l11.5,32.2l11.4-32.3h13.1v68.5h-11.1v-49.6l-9.6,25.8h-8.1l-9.2-25.8v49.6h-11V336z"/>
+ <path class="st18" d="M-6130.2,355.3c-0.3-0.1-0.5-0.2-0.6-0.4c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.3-0.1-0.6-0.1-1
+ c0-0.4-0.1-0.8-0.3-1.3c-1-2.3-2.4-4.2-4.2-5.5c-1.8-1.4-4-2-6.7-2c-2.2,0-4.2,0.6-5.9,1.9c-1.8,1.2-3.3,3-4.5,5.2
+ c-1.2,2.2-2.2,4.9-2.9,8.1c-0.7,3.2-1,6.7-1,10.6c0,3.7,0.4,7.2,1.1,10.4c0.7,3.2,1.8,5.9,3.1,8.2c1.3,2.3,2.9,4.1,4.8,5.4
+ c1.9,1.3,3.9,2,6.1,2c2.6,0,5-0.8,7-2.5c2-1.6,3.8-3.9,5.4-6.6l9.3,6c-2.6,4.5-5.7,7.8-9.4,10s-7.7,3.3-12,3.3
+ c-4,0-7.8-0.7-11.2-2.1c-3.4-1.4-6.4-3.6-8.9-6.6c-2.5-3-4.5-6.7-5.9-11.2c-1.4-4.5-2.1-9.7-2.1-15.8c0-4.5,0.4-8.5,1.2-12
+ c0.8-3.5,1.8-6.7,3.1-9.4c1.3-2.7,2.9-5,4.7-6.9c1.8-1.9,3.7-3.4,5.7-4.6c2-1.2,4.1-2.1,6.3-2.6c2.2-0.5,4.3-0.8,6.3-0.8
+ c2.6,0,5,0.4,7.4,1.1c2.3,0.7,4.5,1.8,6.5,3.2c2,1.4,3.8,3,5.3,4.9c1.5,1.9,2.8,4,3.8,6.4L-6130.2,355.3z"/>
+ <path class="st18" d="M-6060.7,394.1v10.3h-43.7V336h13.4c0.1,0.1,0.2,0.3,0.2,0.5c0,0.3-0.1,0.6-0.4,1
+ c-0.3,0.4-0.5,1.2-0.6,2.3v54.2H-6060.7z"/>
+ <path class="st18" d="M-6040.9,336h38.2v10.2h-13.3v48.1h13.8v10.1h-39.4v-10.2h13.3v-48h-12.6V336z"/>
+ </g>
+ </g>
+ </g>
+ <rect x="-6573.6" y="468.4" class="st47" width="742.6" height="304.6"/>
+ <text transform="matrix(1 0 0 1 -6426.5601 483.229)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:20px; letter-spacing:1;">The intelligent package manager for the </tspan><tspan x="-75.6" y="31" class="st18" style="font-family:'Poppins-Regular'; font-size:20px; letter-spacing:1;">Node Javascript Platform. Install stuff and get coding!</tspan></text>
+ <rect x="-6323" y="583.8" class="st19" width="230" height="59.2"/>
+
+ <text transform="matrix(1 0 0 1 -6272.0112 616.4116)" style="font-family:'Poppins-SemiBold'; font-size:20px; letter-spacing:1;">Read Docs</text>
+ <g class="st16">
+
+ <image style="overflow:visible;opacity:0.5;" width="309" height="304" xlink:href="77400133F1DEE1A3.png" transform="matrix(1 0 0 1 -6812.6226 927.3776)">
+ </image>
+ <g>
+ <ellipse class="st8" cx="-6658.2" cy="1079.4" rx="113.9" ry="111.5"/>
+ </g>
+ </g>
+ <linearGradient id="SVGID_22_" gradientUnits="userSpaceOnUse" x1="-6997" y1="136.5" x2="-5398" y2="136.5">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st32" x1="-6997" y1="136.5" x2="-5398" y2="136.5"/>
+
+ <text transform="matrix(1 0 0 1 -6465.1777 1032.7207)" style="opacity:0.8;fill:#FFFFFF; font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Super Cool</text>
+ <g class="st33">
+
+ <text transform="matrix(1 0 0 1 -6757.1777 1387.7207)" class="st8" style="font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Easy to Use</text>
+ </g>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -6452.1777 1792.7207)" class="st8" style="font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Ultra Fast</text>
+ </g>
+ <text transform="matrix(1 0 0 1 -6466.5654 1080.4502)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Regular'; font-size:20px;">Nunc malesuada suscipit enim at feugiat. Duis id mauris</tspan><tspan x="0" y="36" class="st8" style="font-family:'Poppins-Regular'; font-size:20px;">lectus. Donec a sagittis lectus.</tspan></text>
+ <text transform="matrix(1 0 0 1 -6758.5654 1435.4502)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Regular'; font-size:20px;">Sed accumsan vehicula diam vel auctor. Suspendisse id </tspan><tspan x="0" y="36" class="st8" style="font-family:'Poppins-Regular'; font-size:20px;">interdum lectus. Phasellus sed tortor sed dui rutrum vestibulum vitae </tspan><tspan x="0" y="72" class="st8" style="font-family:'Poppins-Regular'; font-size:20px;">eget lacus. </tspan></text>
+ <text id="XMLID_2_" transform="matrix(1 0 0 1 -6456.5654 1843.4502)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Regular'; font-size:20px;">Lorem ipsum dolor sit amet, consectetur adipiscing elit. </tspan><tspan x="0" y="36" class="st8" style="font-family:'Poppins-Regular'; font-size:20px;">Sed tempus sapien nibh, et vehicula ipsum cursus non. </tspan></text>
+ <circle class="st18" cx="-5043" cy="1201" r="143"/>
+ <g class="st33">
+ <path class="st8" d="M-5666.8,1500H-5788v-112.5h121.2V1500z M-5675.5,1422.1h-103.8v69.2h103.8V1422.1z M-5675.5,1413.5v-17.3
+ h-103.8v17.3H-5675.5z"/>
+ <circle class="st34" cx="-5771.4" cy="1404.8" r="3.6"/>
+ <circle class="st34" cx="-5759.9" cy="1404.8" r="3.6"/>
+ <circle class="st34" cx="-5748.3" cy="1404.8" r="3.6"/>
+ <path class="st8" d="M-5732.3,1456.5l-20.8,21.9l-6.3-6l15.2-16l-15.2-16.3l6.3-5.9C-5753.1,1434.3-5732.3,1456.5-5732.3,1456.5z"
+ />
+ <path class="st8" d="M-5727.4,1469.7h30.3v8.7h-30.3V1469.7z"/>
+ </g>
+
+ <text transform="matrix(1 0 0 1 -6454.1777 874.7207)" class="st8" style="font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Why use NPM CLI?</text>
+ <rect x="-5330" y="156" class="st47" width="22" height="22.6"/>
+
+ <text transform="matrix(1 0 0 1 -5324 170.1997)" class="st35" style="font-family:'SourceCodeVariable-Roman'; font-size:20px; letter-spacing:1;">❤</text>
+ <text transform="matrix(1 0 0 1 -4364.0918 169.3013)"><tspan x="0" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">npm Enterprise Products Solutions Resources</tspan><tspan x="351.5" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:4;"> </tspan><tspan x="360" y="0" style="font-family:'Poppins-Regular'; font-size:14px;"> Docs Support</tspan></text>
+ <linearGradient id="SVGID_23_" gradientUnits="userSpaceOnUse" x1="-5378" y1="136.5" x2="-3778" y2="136.5">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <line class="st36" x1="-5378" y1="136.5" x2="-3778" y2="136.5"/>
+ <linearGradient id="SVGID_24_" gradientUnits="userSpaceOnUse" x1="-4000" y1="176" x2="-3965.5" y2="176">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st37" x1="-4000" y1="176" x2="-3965.5" y2="176"/>
+ <line class="st11" x1="-3776.5" y1="192" x2="-5376" y2="192"/>
+ <circle class="st8" cx="-5043" cy="1201" r="125"/>
+ <g class="st16">
+
+ <image style="overflow:visible;opacity:0.5;" width="309" height="304" xlink:href="77400133F1DEE1BF.png" transform="matrix(1 0 0 1 -5889.8604 1292.3591)">
+ </image>
+ <g>
+ <ellipse class="st8" cx="-5735.4" cy="1444.4" rx="113.9" ry="111.5"/>
+ </g>
+ </g>
+
+ <text transform="matrix(1 0 0 1 -4731.1777 1123.7207)" class="st18" style="font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Why use this?</text>
+ <line class="st38" x1="-4471.5" y1="1255.5" x2="-4473.6" y2="1255.5"/>
+ <line class="st38" x1="-5066.3" y1="1255.5" x2="-5068.5" y2="1255.5"/>
+ <line class="st39" x1="-4044" y1="1535.9" x2="-4046.4" y2="1535.9"/>
+ <line class="st40" x1="-5009.6" y1="279.7" x2="-5012.4" y2="279.7"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="930" height="551" xlink:href="77400133F1DEE1A2.png" transform="matrix(1 0 0 1 -5062.3643 221.6355)">
+ </image>
+ <g>
+ <path class="st18" d="M-4169.8,262.4v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4V262.4c0-1.7,1.3-3,3-3h849.6
+ C-4171.1,259.4-4169.8,260.7-4169.8,262.4z"/>
+ <path class="st41" d="M-4169.8,262.4v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4V262.4c0-1.7,1.3-3,3-3h849.6
+ C-4171.1,259.4-4169.8,260.7-4169.8,262.4z"/>
+ </g>
+ </g>
+ <line class="st40" x1="-4160" y1="275.7" x2="-4162.5" y2="275.7"/>
+ <line class="st40" x1="-4956.1" y1="354.8" x2="-4958.8" y2="354.8"/>
+ <line class="st40" x1="-4987.8" y1="327.1" x2="-4990.5" y2="327.1"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="931" height="551" xlink:href="77400133F1DEE1A5.png" transform="matrix(1 0 0 1 -5030.3643 276.6355)">
+ </image>
+ <g>
+ <path class="st18" d="M-4137.1,316.7v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4V316.7c0-1.7,1.3-3,3-3h849.6
+ C-4138.4,313.7-4137.1,315-4137.1,316.7z"/>
+ <path class="st41" d="M-4137.1,316.7v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4V316.7c0-1.7,1.3-3,3-3h849.6
+ C-4138.4,313.7-4137.1,315-4137.1,316.7z"/>
+ </g>
+ </g>
+ <g>
+ <path class="st8" d="M-4137.1,317v21.7c0,1.6-1.4,3-3,3h-849.6c-1.6,0-3-1.4-3-3V317c0-1.7,1.3-3,3-3h849.6
+ C-4138.4,314-4137.1,315.3-4137.1,317z"/>
+ <path class="st41" d="M-4137.1,317v21.7c0,1.6-1.4,3-3,3h-849.6c-1.6,0-3-1.4-3-3V317c0-1.7,1.3-3,3-3h849.6
+ C-4138.4,314-4137.1,315.3-4137.1,317z"/>
+ </g>
+ <line class="st40" x1="-4127.1" y1="334.1" x2="-4129.7" y2="334.1"/>
+ <line class="st40" x1="-4791.2" y1="413.2" x2="-4793.9" y2="413.2"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="931" height="551" xlink:href="77400133F1DEE1A6.png" transform="matrix(1 0 0 1 -4996.3643 335.6355)">
+ </image>
+ <g>
+ <path class="st18" d="M-4103.4,375.8v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4V375.8c0-1.7,1.3-3,3-3h849.6
+ C-4104.8,372.8-4103.4,374.1-4103.4,375.8z"/>
+ <path class="st41" d="M-4103.4,375.8v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4V375.8c0-1.7,1.3-3,3-3h849.6
+ C-4104.8,372.8-4103.4,374.1-4103.4,375.8z"/>
+ </g>
+ </g>
+ <line class="st40" x1="-4083.3" y1="391.3" x2="-4085.9" y2="391.3"/>
+ <g>
+ <g class="st16">
+ <linearGradient id="SVGID_25_" gradientUnits="userSpaceOnUse" x1="-4313.0264" y1="527.4932" x2="-4282.5" y2="527.4932">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <rect x="-4313" y="523.5" class="st42" width="30.5" height="8"/>
+ </g>
+ <g>
+ <linearGradient id="SVGID_26_" gradientUnits="userSpaceOnUse" x1="-4803.5444" y1="499.3501" x2="-4776.4526" y2="499.3501">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <polygon class="st43" points="-4798.4,518 -4803.5,511.9 -4788.8,499.4 -4803.5,486.8 -4798.3,480.7 -4776.5,499.4 "/>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="425" height="85" xlink:href="77400133F1DEE1A4.png" transform="matrix(1 0 0 1 -4753 457)">
+ </image>
+ <g>
+ <g>
+ <path class="st8" d="M-4704.1,530.4h-13.6l-23.2-51.7v51.7h-11.1V462h15l21.7,49v-49h11.9c0.1,0.1,0.2,0.3,0.2,0.5
+ c0,0.3-0.1,0.6-0.4,1c-0.3,0.4-0.5,1.2-0.6,2.3V530.4z"/>
+ <path class="st8" d="M-4688.5,462h23.2c4.1,0,7.6,0.5,10.5,1.6c2.9,1.1,5.3,2.6,7.1,4.4c1.9,1.9,3.2,4,4.1,6.5
+ c0.9,2.5,1.3,5.1,1.3,7.9c0,2.8-0.4,5.4-1.3,7.9c-0.8,2.5-2.2,4.6-4,6.4c-1.8,1.8-4.2,3.3-7,4.3c-2.9,1.1-6.3,1.6-10.2,1.6
+ h-11.2v27.7h-12.5V462z M-4676,472.8v19.4h10.3c1.9,0,3.5-0.2,4.9-0.7c1.4-0.5,2.5-1.1,3.3-2c0.9-0.8,1.5-1.8,1.9-3
+ c0.4-1.2,0.6-2.4,0.6-3.7c0-1.5-0.2-2.8-0.7-4c-0.4-1.2-1.1-2.3-2-3.1s-2-1.6-3.3-2.1c-1.3-0.5-2.9-0.8-4.7-0.8H-4676z"/>
+ <path class="st8" d="M-4629.2,462h13l11.5,32.2l11.4-32.3h13.1v68.5h-11.1v-49.6l-9.6,25.8h-8.1l-9.2-25.8v49.6h-11V462z"/>
+ <path class="st8" d="M-4467.2,481.3c-0.3-0.1-0.5-0.2-0.6-0.4c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.3-0.1-0.6-0.1-1
+ c0-0.4-0.1-0.8-0.3-1.3c-1-2.3-2.4-4.2-4.2-5.5c-1.8-1.4-4-2-6.7-2c-2.2,0-4.2,0.6-5.9,1.9c-1.8,1.2-3.3,3-4.5,5.2
+ c-1.2,2.2-2.2,4.9-2.9,8.1c-0.7,3.2-1,6.7-1,10.6c0,3.7,0.4,7.2,1.1,10.4c0.7,3.2,1.8,5.9,3.1,8.2c1.3,2.3,2.9,4.1,4.8,5.4
+ c1.9,1.3,3.9,2,6.1,2c2.6,0,5-0.8,7-2.5c2-1.6,3.8-3.9,5.4-6.6l9.3,6c-2.6,4.5-5.7,7.8-9.4,10s-7.7,3.3-12,3.3
+ c-4,0-7.8-0.7-11.2-2.1c-3.4-1.4-6.4-3.6-8.9-6.6c-2.5-3-4.5-6.7-5.9-11.2c-1.4-4.5-2.1-9.7-2.1-15.8c0-4.5,0.4-8.5,1.2-12
+ c0.8-3.5,1.8-6.7,3.1-9.4c1.3-2.7,2.9-5,4.7-6.9c1.8-1.9,3.7-3.4,5.7-4.6c2-1.2,4.1-2.1,6.3-2.6c2.2-0.5,4.3-0.8,6.3-0.8
+ c2.6,0,5,0.4,7.4,1.1c2.3,0.7,4.5,1.8,6.5,3.2c2,1.4,3.8,3,5.3,4.9c1.5,1.9,2.8,4,3.8,6.4L-4467.2,481.3z"/>
+ <path class="st8" d="M-4397.7,520.1v10.3h-43.7V462h13.4c0.1,0.1,0.2,0.3,0.2,0.5c0,0.3-0.1,0.6-0.4,1
+ c-0.3,0.4-0.5,1.2-0.6,2.3v54.2H-4397.7z"/>
+ <path class="st8" d="M-4377.9,462h38.2v10.2h-13.3v48.1h13.8v10.1h-39.4v-10.2h13.3v-48h-12.6V462z"/>
+ </g>
+ </g>
+ </g>
+ <rect x="-4781.7" y="596.4" class="st47" width="489.6" height="304.6"/>
+ <text transform="matrix(1 0 0 1 -4781.7363 611.229)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">The</tspan><tspan x="40.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:8;"> </tspan><tspan x="54" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">intelligent</tspan><tspan x="167.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:8;"> </tspan><tspan x="181.3" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">package</tspan><tspan x="279.3" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:8;"> </tspan><tspan x="293.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">manager</tspan><tspan x="396.1" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:8;"> </tspan><tspan x="409.9" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">for</tspan><tspan x="440.6" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:8;"> </tspan><tspan x="454.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">the </tspan><tspan x="0" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Node</tspan><tspan x="57.9" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:4;"> </tspan><tspan x="67.8" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Javascript</tspan><tspan x="186.4" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:4;"> </tspan><tspan x="196.3" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Platform.</tspan><tspan x="298" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:4;"> </tspan><tspan x="307.9" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Install</tspan><tspan x="376.8" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:4;"> </tspan><tspan x="386.8" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">stuff</tspan><tspan x="437.1" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:4;"> </tspan><tspan x="447.1" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">and </tspan><tspan x="181.2" y="62" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">get coding!</tspan></text>
+ <g>
+ <rect x="-4650.7" y="729" class="st14" width="230" height="59.2"/>
+ <rect x="-4644.8" y="734.8" class="st19" width="230" height="59.2"/>
+
+ <text transform="matrix(1 0 0 1 -4593.8589 767.4116)" style="font-family:'Poppins-SemiBold'; font-size:20px; letter-spacing:1;">Read Docs</text>
+ </g>
+ </g>
+ <g>
+ <path class="st8" d="M-4170.1,262v21.7c0,1.6-1.4,3-3,3h-849.6c-1.6,0-3-1.4-3-3V262c0-1.7,1.3-3,3-3h849.6
+ C-4171.4,259-4170.1,260.3-4170.1,262z"/>
+ <path class="st41" d="M-4170.1,262v21.7c0,1.6-1.4,3-3,3h-849.6c-1.6,0-3-1.4-3-3V262c0-1.7,1.3-3,3-3h849.6
+ C-4171.4,259-4170.1,260.3-4170.1,262z"/>
+ </g>
+ <g>
+ <path class="st8" d="M-4103.1,376v21.7c0,1.6-1.4,3-3,3h-849.6c-1.6,0-3-1.4-3-3V376c0-1.7,1.3-3,3-3h849.6
+ C-4104.4,373-4103.1,374.3-4103.1,376z"/>
+ <path class="st41" d="M-4103.1,376v21.7c0,1.6-1.4,3-3,3h-849.6c-1.6,0-3-1.4-3-3V376c0-1.7,1.3-3,3-3h849.6
+ C-4104.4,373-4103.1,374.3-4103.1,376z"/>
+ </g>
+ <linearGradient id="SVGID_27_" gradientUnits="userSpaceOnUse" x1="-4329" y1="1436" x2="-4043" y2="1436">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <circle class="st44" cx="-4186" cy="1436" r="143"/>
+ <circle class="st8" cx="-4186" cy="1436" r="125"/>
+ <linearGradient id="SVGID_28_" gradientUnits="userSpaceOnUse" x1="-5044" y1="1773" x2="-4758" y2="1773">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <circle class="st45" cx="-4901" cy="1773" r="143"/>
+ <circle class="st8" cx="-4901" cy="1773" r="125"/>
+ <g>
+ <g>
+ <path class="st46" d="M-5294.9,170h6.4v-9.7h3.2v9.7h3.2v-13h-12.8V170z M-5264.2,157.1v13h6.4v-9.7h3.2v9.7h3.2v-9.7h3.2v9.7
+ h3.2v-13H-5264.2L-5264.2,157.1z M-5273.2,160.3h3.2v6.5h-3.2V160.3z M-5279.6,173.3h6.4V170h6.4v-13h-12.8V173.3z"/>
+ <rect x="-5294.9" y="157.1" class="st47" width="49.9" height="16.2"/>
+ </g>
+ <polygon class="st46" points="-5229.9,160.2 -5229.9,166.5 -5223.8,166.5 -5223.8,169.7 -5230,169.7 -5236.3,169.7 -5236.2,157.1
+ -5223.8,157.1 -5223.8,160.2 "/>
+ <rect x="-5221.2" y="157" class="st46" width="6.4" height="12.9"/>
+
+ <rect x="-5215.3" y="163.6" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 -5045.3496 5382.1753)" class="st46" width="3.1" height="9.5"/>
+
+ <rect x="-5194.1" y="165" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 -5023.9805 5362.313)" class="st46" width="2" height="8.3"/>
+ <rect x="-5207.1" y="157" class="st46" width="6.4" height="12.9"/>
+ </g>
+ <linearGradient id="SVGID_29_" gradientUnits="userSpaceOnUse" x1="-3757" y1="570.5" x2="-2159" y2="570.5">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.1444" style="stop-color:#FF4B01"/>
+ <stop offset="0.7119" style="stop-color:#C12127"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st48" points="-2159,950 -2159,191 -3757,191 -3757,948.4 "/>
+ <linearGradient id="SVGID_30_" gradientUnits="userSpaceOnUse" x1="-3360.8535" y1="372.75" x2="-3359.6465" y2="372.75">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st49" x1="-3360" y1="373" x2="-3360.5" y2="372.5"/>
+ <rect x="-3710" y="155" class="st47" width="22" height="22.6"/>
+
+ <text transform="matrix(1 0 0 1 -3704 169.1997)" class="st35" style="font-family:'SourceCodeVariable-Roman'; font-size:20px; letter-spacing:1;">❤</text>
+ <text transform="matrix(1 0 0 1 -2551.0918 170.3013)"><tspan x="0" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">Configuring NPM</tspan><tspan x="116" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:24;"> </tspan><tspan x="144" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">Using NPM</tspan><tspan x="216.4" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:31;"> </tspan><tspan x="252" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">CLI Commands</tspan><tspan x="359.8" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:-3;"> </tspan></text>
+ <line class="st11" x1="-2156.5" y1="191" x2="-3756" y2="191"/>
+ <line class="st50" x1="-3030.2" y1="1172.4" x2="-3031.9" y2="1172.4"/>
+ <line class="st38" x1="-3446.3" y1="1195.5" x2="-3448.5" y2="1195.5"/>
+ <line class="st39" x1="-2424" y1="1475.9" x2="-2426.4" y2="1475.9"/>
+ <line class="st40" x1="-3367.6" y1="285.7" x2="-3370.4" y2="285.7"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="930" height="551" xlink:href="77400133F1DEE1AC.png" transform="matrix(1 0 0 1 -3508.3645 207.6355)">
+ </image>
+ <g>
+ <path class="st18" d="M-2615.8,248.4v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4V248.4c0-1.7,1.3-3,3-3h849.6
+ C-2617.1,245.4-2615.8,246.7-2615.8,248.4z"/>
+ <path class="st41" d="M-2615.8,248.4v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4V248.4c0-1.7,1.3-3,3-3h849.6
+ C-2617.1,245.4-2615.8,246.7-2615.8,248.4z"/>
+ </g>
+ </g>
+ <line class="st40" x1="-2518" y1="281.7" x2="-2520.5" y2="281.7"/>
+ <line class="st40" x1="-3314.1" y1="360.8" x2="-3316.8" y2="360.8"/>
+ <line class="st40" x1="-3345.8" y1="333.1" x2="-3348.5" y2="333.1"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="931" height="551" xlink:href="77400133F1DEE1C4.png" transform="matrix(1 0 0 1 -3454.3645 282.6355)">
+ </image>
+ <g>
+ <path class="st18" d="M-2561.1,322.7v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4V322.7c0-1.7,1.3-3,3-3h849.6
+ C-2562.4,319.7-2561.1,321-2561.1,322.7z"/>
+ <path class="st41" d="M-2561.1,322.7v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4V322.7c0-1.7,1.3-3,3-3h849.6
+ C-2562.4,319.7-2561.1,321-2561.1,322.7z"/>
+ </g>
+ </g>
+ <g class="st51">
+ <path class="st8" d="M-2561.1,323v21.7c0,1.6-1.3,3-3,3h-849.6c-1.7,0-3-1.4-3-3V323c0-1.7,1.3-3,3-3h849.6
+ C-2562.4,320-2561.1,321.3-2561.1,323z"/>
+ <path class="st41" d="M-2561.1,323v21.7c0,1.6-1.3,3-3,3h-849.6c-1.7,0-3-1.4-3-3V323c0-1.7,1.3-3,3-3h849.6
+ C-2562.4,320-2561.1,321.3-2561.1,323z"/>
+ </g>
+ <line class="st40" x1="-2485.1" y1="340.1" x2="-2487.7" y2="340.1"/>
+ <line class="st40" x1="-3149.2" y1="419.2" x2="-3151.9" y2="419.2"/>
+ <g class="st52">
+ <line class="st53" x1="-3757.5" y1="191.3" x2="-2156.5" y2="191.3"/>
+ <line class="st53" x1="-3757.4" y1="381.3" x2="-2156.4" y2="381.3"/>
+ <line class="st53" x1="-3757.2" y1="571.4" x2="-2156.2" y2="571.4"/>
+ <line class="st53" x1="-3757.1" y1="761.4" x2="-2156.1" y2="761.4"/>
+ <line class="st53" x1="-3757" y1="951.5" x2="-2156" y2="951.5"/>
+ <line class="st53" x1="-3756.8" y1="1141.5" x2="-2155.8" y2="1141.5"/>
+ <line class="st53" x1="-3756.7" y1="1331.6" x2="-2155.7" y2="1331.6"/>
+ <line class="st53" x1="-3756.5" y1="1521.6" x2="-2155.5" y2="1521.6"/>
+ <line class="st53" x1="-3756.4" y1="1711.7" x2="-2155.4" y2="1711.7"/>
+ <line class="st53" x1="-3756.3" y1="1901.7" x2="-2155.3" y2="1901.7"/>
+ <line class="st53" x1="-3756.1" y1="2091.7" x2="-2155.1" y2="2091.7"/>
+ <line class="st53" x1="-3756" y1="2281.8" x2="-2155" y2="2281.8"/>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.5;" width="931" height="551" xlink:href="77400133F1DEE1C7.png" transform="matrix(1 0 0 1 -3385.3645 374.6355)">
+ </image>
+ <g>
+ <path class="st18" d="M-2492.4,414.8v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4V414.8c0-1.7,1.3-3,3-3h849.6
+ C-2493.8,411.8-2492.4,413.1-2492.4,414.8z"/>
+ <path class="st41" d="M-2492.4,414.8v468.9c0,2.2-1.8,4-4,4h-847.7c-2.2,0-4-1.8-4-4V414.8c0-1.7,1.3-3,3-3h849.6
+ C-2493.8,411.8-2492.4,413.1-2492.4,414.8z"/>
+ </g>
+ </g>
+ <line class="st40" x1="-2441.3" y1="397.3" x2="-2443.9" y2="397.3"/>
+ <g class="st54">
+ <line class="st55" x1="-3756" y1="197" x2="-3756" y2="2332"/>
+ <line class="st55" x1="-3556.4" y1="196.5" x2="-3556.4" y2="2331.5"/>
+ <line class="st55" x1="-3356.9" y1="196" x2="-3356.9" y2="2331"/>
+ <line class="st55" x1="-3157.3" y1="195.5" x2="-3157.3" y2="2330.5"/>
+ <line class="st55" x1="-2957.8" y1="195" x2="-2957.8" y2="2330"/>
+ <line class="st55" x1="-2758.2" y1="194.5" x2="-2758.2" y2="2329.5"/>
+ <line class="st55" x1="-2558.6" y1="194" x2="-2558.6" y2="2329"/>
+ <line class="st55" x1="-2359.1" y1="193.5" x2="-2359.1" y2="2328.5"/>
+ <line class="st55" x1="-2159.5" y1="193" x2="-2159.5" y2="2328"/>
+ </g>
+ <g>
+ <g class="st16">
+ <linearGradient id="SVGID_31_" gradientUnits="userSpaceOnUse" x1="-2734.0264" y1="577.4932" x2="-2703.5" y2="577.4932">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <rect x="-2734" y="573.5" class="st56" width="30.5" height="8"/>
+ </g>
+ <g>
+ <linearGradient id="SVGID_32_" gradientUnits="userSpaceOnUse" x1="-3224.5444" y1="549.3501" x2="-3197.4526" y2="549.3501">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <polygon class="st57" points="-3219.4,568 -3224.5,561.9 -3209.8,549.4 -3224.5,536.8 -3219.3,530.7 -3197.5,549.4 "/>
+ </g>
+ <g class="st51">
+
+ <image style="overflow:visible;opacity:0.2;" width="425" height="85" xlink:href="77400133F1DEE1C5.png" transform="matrix(1 0 0 1 -3174 507)">
+ </image>
+ <g>
+ <g>
+ <path class="st8" d="M-3125.1,580.4h-13.6l-23.2-51.7v51.7h-11.1V512h15l21.7,49v-49h11.9c0.1,0.1,0.2,0.3,0.2,0.5
+ c0,0.3-0.1,0.6-0.4,1c-0.3,0.4-0.5,1.2-0.6,2.3V580.4z"/>
+ <path class="st8" d="M-3109.5,512h23.2c4.1,0,7.6,0.5,10.5,1.6c2.9,1.1,5.3,2.6,7.1,4.4c1.9,1.9,3.2,4,4.1,6.5
+ c0.9,2.5,1.3,5.1,1.3,7.9c0,2.8-0.4,5.4-1.3,7.9c-0.8,2.5-2.2,4.6-4,6.4c-1.8,1.8-4.2,3.3-7,4.3c-2.9,1.1-6.3,1.6-10.2,1.6
+ h-11.2v27.7h-12.5V512z M-3097,522.8v19.4h10.3c1.9,0,3.5-0.2,4.9-0.7c1.4-0.5,2.5-1.1,3.3-2c0.9-0.8,1.5-1.8,1.9-3
+ c0.4-1.2,0.6-2.4,0.6-3.7c0-1.5-0.2-2.8-0.7-4c-0.4-1.2-1.1-2.3-2-3.1s-2-1.6-3.3-2.1c-1.3-0.5-2.9-0.8-4.7-0.8H-3097z"/>
+ <path class="st8" d="M-3050.2,512h13l11.5,32.2l11.4-32.3h13.1v68.5h-11.1v-49.6l-9.6,25.8h-8.1l-9.2-25.8v49.6h-11V512z"/>
+ <path class="st8" d="M-2888.2,531.3c-0.3-0.1-0.5-0.2-0.6-0.4c-0.1-0.2-0.2-0.5-0.2-0.8c0-0.3-0.1-0.6-0.1-1
+ c0-0.4-0.1-0.8-0.3-1.3c-1-2.3-2.4-4.2-4.2-5.5c-1.8-1.4-4-2-6.7-2c-2.2,0-4.2,0.6-5.9,1.9c-1.8,1.2-3.3,3-4.5,5.2
+ c-1.2,2.2-2.2,4.9-2.9,8.1c-0.7,3.2-1,6.7-1,10.6c0,3.7,0.4,7.2,1.1,10.4c0.7,3.2,1.8,5.9,3.1,8.2c1.3,2.3,2.9,4.1,4.8,5.4
+ c1.9,1.3,3.9,2,6.1,2c2.6,0,5-0.8,7-2.5c2-1.6,3.8-3.9,5.4-6.6l9.3,6c-2.6,4.5-5.7,7.8-9.4,10s-7.7,3.3-12,3.3
+ c-4,0-7.8-0.7-11.2-2.1c-3.4-1.4-6.4-3.6-8.9-6.6c-2.5-3-4.5-6.7-5.9-11.2c-1.4-4.5-2.1-9.7-2.1-15.8c0-4.5,0.4-8.5,1.2-12
+ c0.8-3.5,1.8-6.7,3.1-9.4c1.3-2.7,2.9-5,4.7-6.9c1.8-1.9,3.7-3.4,5.7-4.6c2-1.2,4.1-2.1,6.3-2.6c2.2-0.5,4.3-0.8,6.3-0.8
+ c2.6,0,5,0.4,7.4,1.1c2.3,0.7,4.5,1.8,6.5,3.2c2,1.4,3.8,3,5.3,4.9c1.5,1.9,2.8,4,3.8,6.4L-2888.2,531.3z"/>
+ <path class="st8" d="M-2818.7,570.1v10.3h-43.7V512h13.4c0.1,0.1,0.2,0.3,0.2,0.5c0,0.3-0.1,0.6-0.4,1
+ c-0.3,0.4-0.5,1.2-0.6,2.3v54.2H-2818.7z"/>
+ <path class="st8" d="M-2798.9,512h38.2v10.2h-13.3v48.1h13.8v10.1h-39.4v-10.2h13.3v-48h-12.6V512z"/>
+ </g>
+ </g>
+ </g>
+ <rect x="-3225.7" y="646.4" class="st47" width="551.7" height="304.6"/>
+ <text transform="matrix(1 0 0 1 -3225.7363 661.229)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">The</tspan><tspan x="40.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="52.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">intelligent</tspan><tspan x="165.8" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="178.1" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">package</tspan><tspan x="276.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="288.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">manager</tspan><tspan x="391.3" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="403.5" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">for</tspan><tspan x="434.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="446.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">the</tspan><tspan x="482.8" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="495.1" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Node </tspan><tspan x="4.7" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Javascript Platform. Install stuff and get coding!</tspan></text>
+ <g>
+ <rect x="-3223.7" y="746" class="st14" width="230" height="59.2"/>
+ <rect x="-3217.8" y="751.8" class="st19" width="230" height="59.2"/>
+
+ <text transform="matrix(1 0 0 1 -3166.8589 784.4116)" class="st8" style="font-family:'Poppins-SemiBold'; font-size:20px; letter-spacing:1;">Read Docs</text>
+ </g>
+ </g>
+ <g class="st51">
+ <path class="st8" d="M-2616.1,248v21.7c0,1.6-1.3,3-3,3h-849.6c-1.7,0-3-1.4-3-3V248c0-1.7,1.3-3,3-3h849.6
+ C-2617.4,245-2616.1,246.3-2616.1,248z"/>
+ <path class="st41" d="M-2616.1,248v21.7c0,1.6-1.3,3-3,3h-849.6c-1.7,0-3-1.4-3-3V248c0-1.7,1.3-3,3-3h849.6
+ C-2617.4,245-2616.1,246.3-2616.1,248z"/>
+ </g>
+ <g class="st51">
+ <path class="st8" d="M-2492.1,415v21.7c0,1.6-1.3,3-3,3h-849.6c-1.7,0-3-1.4-3-3V415c0-1.7,1.3-3,3-3h849.6
+ C-2493.4,412-2492.1,413.3-2492.1,415z"/>
+ <path class="st41" d="M-2492.1,415v21.7c0,1.6-1.3,3-3,3h-849.6c-1.7,0-3-1.4-3-3V415c0-1.7,1.3-3,3-3h849.6
+ C-2493.4,412-2492.1,413.3-2492.1,415z"/>
+ </g>
+ <g>
+ <g>
+ <path class="st46" d="M-3674.9,169h6.4v-9.7h3.2v9.7h3.2v-13h-12.8V169z M-3644.2,156.1v13h6.4v-9.7h3.2v9.7h3.2v-9.7h3.2v9.7
+ h3.2v-13H-3644.2L-3644.2,156.1z M-3653.2,159.3h3.2v6.5h-3.2V159.3z M-3659.6,172.3h6.4V169h6.4v-13h-12.8V172.3z"/>
+ <rect x="-3674.9" y="156.1" class="st47" width="49.9" height="16.2"/>
+ </g>
+ <polygon class="st46" points="-3609.9,159.2 -3609.9,165.5 -3603.8,165.5 -3603.8,168.7 -3610,168.7 -3616.3,168.7 -3616.2,156.1
+ -3603.8,156.1 -3603.8,159.2 "/>
+ <rect x="-3601.2" y="156" class="st46" width="6.4" height="12.9"/>
+
+ <rect x="-3595.3" y="162.6" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 -3426.3494 3761.1753)" class="st46" width="3.1" height="9.5"/>
+
+ <rect x="-3574.1" y="164" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 -3404.9805 3741.313)" class="st46" width="2" height="8.3"/>
+ <rect x="-3587.1" y="156" class="st46" width="6.4" height="12.9"/>
+ </g>
+
+ <linearGradient id="SVGID_33_" gradientUnits="userSpaceOnUse" x1="-3536.583" y1="1547.4449" x2="-3156.5828" y2="1547.4449" gradientTransform="matrix(7.182470e-02 -0.9974 0.9974 7.182470e-02 -3997.0811 -1083.0842)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st58" points="-2583.6,2183.5 -2610.9,2562.5 -2804.4,2548.5 -2777.1,2169.5 "/>
+ <linearGradient id="SVGID_34_" gradientUnits="userSpaceOnUse" x1="-3758" y1="136.5" x2="-2158" y2="136.5">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <line class="st59" x1="-3758" y1="136.5" x2="-2158" y2="136.5"/>
+
+ <linearGradient id="SVGID_35_" gradientUnits="userSpaceOnUse" x1="-2633.3538" y1="1593.8499" x2="-2429.3535" y2="1593.8499" gradientTransform="matrix(0.9887 -0.1501 0.1501 0.9887 -267.5691 -381.758)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st60" points="-2387.5,1839.5 -2589.2,1870.1 -2674.5,1308.5 -2472.8,1277.9 "/>
+ <line class="st50" x1="-2300.2" y1="1236.4" x2="-2301.9" y2="1236.4"/>
+ <g>
+
+ <image style="overflow:visible;" width="827" height="400" xlink:href="77400133F1DEE1CB.png" transform="matrix(1 0 0 1 -3375 1953)">
+ </image>
+ <g>
+ <path class="st61" d="M-2557.5,2347h-788.4c-1.4,0-2.6-1.2-2.6-2.6v-362.8c0-1.4,1.2-2.6,2.6-2.6l788.4,0c1.4,0,2.6,1.2,2.6,2.6
+ v362.8C-2554.9,2345.8-2556.1,2347-2557.5,2347z"/>
+ <path class="st62" d="M-2557.5,2347h-788.4c-1.4,0-2.6-1.2-2.6-2.6v-362.8c0-1.4,1.2-2.6,2.6-2.6l788.4,0c1.4,0,2.6,1.2,2.6,2.6
+ v362.8C-2554.9,2345.8-2556.1,2347-2557.5,2347z"/>
+ </g>
+ </g>
+ <rect x="-3318" y="2417" class="st8" width="21" height="38"/>
+
+ <linearGradient id="SVGID_36_" gradientUnits="userSpaceOnUse" x1="-3521.8662" y1="1187.1632" x2="-3141.8662" y2="1187.1632" gradientTransform="matrix(0.1152 -0.9933 0.9933 0.1152 -4133.3789 -2178.4565)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st63" points="-3219.8,1090.4 -3263.5,1467.9 -3456.2,1445.6 -3412.5,1068.1 "/>
+ <g>
+
+ <image style="overflow:visible;" width="828" height="375" xlink:href="77400133F1DEE1CC.png" transform="matrix(1 0 0 1 -3375 1006)">
+ </image>
+ <g>
+ <path class="st61" d="M-2555.6,1374.5l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6l0-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6v337.3C-2553,1373.3-2554.2,1374.5-2555.6,1374.5z"/>
+ <path class="st62" d="M-2555.6,1374.5l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6l0-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6v337.3C-2553,1373.3-2554.2,1374.5-2555.6,1374.5z"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(0.9755 0 0 1 -3072.0342 1220.585)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Nunc malesuada suscipit enim at feugiat. </tspan><tspan x="-20.3" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;"> Duis id mauris lectus. Donec a sagittis lectus.</tspan></text>
+ </g>
+ <g id="XMLID_3_">
+ <text transform="matrix(0.9755 0 0 1 -3148.5439 2199.4502)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Lorem ipsum dolor sit amet, consectetur adipiscing elit. </tspan><tspan x="0" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Sed tempus sapien nibh, et vehicula ipsum cursus non. </tspan></text>
+ </g>
+ <g class="st33">
+
+ <text transform="matrix(1 0 0 1 -6767.1777 1386.7207)" class="st8" style="font-family:'Poppins-BoldItalic'; font-size:50px; letter-spacing:3;">Easy to Use</text>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="236" height="59" xlink:href="77400133F1DEE1CF.png" transform="matrix(1 0 0 1 -3073 1138)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -3069.9512 1169.7207)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Easy to Use</text>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="202" height="59" xlink:href="77400133F1DEE1CD.png" transform="matrix(1 0 0 1 -3142 2117)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -3138.5254 2148.7207)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Ultra Fast</text>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;" width="827" height="401" xlink:href="77400133F1DEE1CA.png" transform="matrix(1 0 0 1 -3375 1486)">
+ </image>
+ <g>
+ <path class="st61" d="M-2557.1,1880.5l-788.4,0c-1.4,0-2.6-1.2-2.6-2.6v-362.8c0-1.4,1.2-2.6,2.6-2.6l788.4,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,362.8C-2554.6,1879.3-2555.7,1880.5-2557.1,1880.5z"/>
+ <path class="st62" d="M-2557.1,1880.5l-788.4,0c-1.4,0-2.6-1.2-2.6-2.6v-362.8c0-1.4,1.2-2.6,2.6-2.6l788.4,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,362.8C-2554.6,1879.3-2555.7,1880.5-2557.1,1880.5z"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(0.9755 0 0 1 -3162.5447 1708.4502)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Sed accumsan vehicula diam vel auctor. Suspendisse id </tspan><tspan x="0" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">interdum lectus. Phasellus sed tortor sed dui rutrum </tspan><tspan x="0" y="54" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">vestibulum vitae eget lacus. </tspan></text>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="237" height="59" xlink:href="77400133F1DEE1C6.png" transform="matrix(1 0 0 1 -3160 1624)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -3156.5334 1655.7207)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Easy to Use</text>
+ </g>
+ </g>
+ <polygon class="st64" points="-2154.4,2620.3 -3761.1,2570.2 -3761.1,3012.5 -2157.5,3012.5 "/>
+
+ <linearGradient id="SVGID_37_" gradientUnits="userSpaceOnUse" x1="-4493.8354" y1="1306.126" x2="-4113.835" y2="1306.126" gradientTransform="matrix(0.9989 -4.653295e-02 4.653295e-02 0.9989 812.3953 852.0187)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st65" points="-3231.7,2445.1 -3611.3,2462.7 -3620.3,2268.9 -3240.7,2251.3 "/>
+ <line class="st41" x1="-2580.4" y1="328.8" x2="-2572" y2="337.7"/>
+ <line class="st41" x1="-2580.7" y1="337.2" x2="-2571.7" y2="328.8"/>
+ <line class="st41" x1="-2635.4" y1="252.8" x2="-2627" y2="261.7"/>
+ <line class="st41" x1="-2635.7" y1="261.2" x2="-2626.7" y2="252.8"/>
+ <line class="st41" x1="-2509.4" y1="421.8" x2="-2501" y2="430.7"/>
+ <line class="st41" x1="-2509.7" y1="430.2" x2="-2500.7" y2="421.8"/>
+ <path class="st19" d="M-3142.6,1188.5c5.4-5.6,8.6-13.1,8.6-21.5c0-17.1-13.9-31-31-31s-31,13.9-31,31c0,9.8,4.5,18.5,11.6,24.2
+ c-2.2,5.6-8,23.3-5.2,51.8h55.6C-3134,1243-3128.7,1211.2-3142.6,1188.5z"/>
+ <circle class="st18" cx="-3162.5" cy="1161.6" r="3.5"/>
+ <circle class="st18" cx="-3179.5" cy="1164.5" r="3.5"/>
+ <circle class="st62" cx="-3172.5" cy="1166.5" r="30.5"/>
+ <path class="st66" d="M-3162,1174.8c-3.2,3.7-8.8,4.1-12.4,0.9"/>
+ <path class="st62" d="M-3186.6,1190.2c0,0-9.4,18.8-6,53.8h55.6c0,0,5.6-33.4-9.7-56.2"/>
+ <line class="st62" x1="-3258" y1="1122" x2="-3258" y2="1259"/>
+ <line class="st62" x1="-3258" y1="1625" x2="-3258" y2="1762"/>
+ <line class="st62" x1="-3258" y1="2104" x2="-3258" y2="2241"/>
+ <g id="POueHo_1_">
+
+ <image style="overflow:visible;" width="800" height="600" id="POueHo_2_" xlink:href="77400133F1DEE1C4.jpg" transform="matrix(1 0 0 1 -1869 -1148)">
+ </image>
+ </g>
+ <g id="FkRr9g_1_">
+
+ <image style="overflow:visible;" width="800" height="600" id="FkRr9g_2_" xlink:href="77400133F1DEE1EB.jpg" transform="matrix(1 0 0 1 -3289 -1097)">
+ </image>
+ </g>
+ <rect x="-2114" y="158" class="st47" width="22" height="22.6"/>
+
+ <text transform="matrix(1 0 0 1 -2108 172.1997)" class="st35" style="font-family:'SourceCodeVariable-Roman'; font-size:20px; letter-spacing:1;">❤</text>
+ <text transform="matrix(1 0 0 1 -933.0918 173.3013)"><tspan x="0" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">Configuring NPM</tspan><tspan x="116" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:24;"> </tspan><tspan x="144" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">Using NPM</tspan><tspan x="216.4" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:31;"> </tspan><tspan x="252" y="0" style="font-family:'Poppins-Regular'; font-size:14px;">CLI Commands</tspan><tspan x="359.8" y="0" style="font-family:'Poppins-Regular'; font-size:14px; letter-spacing:-3;"> </tspan></text>
+ <g>
+ <g>
+ <path class="st46" d="M-2078.9,172h6.4v-9.7h3.2v9.7h3.2v-13h-12.8V172z M-2048.2,159.1v13h6.4v-9.7h3.2v9.7h3.2v-9.7h3.2v9.7
+ h3.2v-13H-2048.2L-2048.2,159.1z M-2057.2,162.3h3.2v6.5h-3.2V162.3z M-2063.6,175.3h6.4V172h6.4v-13h-12.8V175.3z"/>
+ <rect x="-2078.9" y="159.1" class="st47" width="49.9" height="16.2"/>
+ </g>
+ <polygon class="st46" points="-2013.9,162.2 -2013.9,168.5 -2007.8,168.5 -2007.8,171.7 -2014,171.7 -2020.3,171.7 -2020.2,159.1
+ -2007.8,159.1 -2007.8,162.2 "/>
+ <rect x="-2005.2" y="159" class="st46" width="6.4" height="12.9"/>
+
+ <rect x="-1999.3" y="165.6" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 -1827.3494 2168.1753)" class="st46" width="3.1" height="9.5"/>
+
+ <rect x="-1978.1" y="167" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 -1805.9806 2148.313)" class="st46" width="2" height="8.3"/>
+ <rect x="-1991.1" y="159" class="st46" width="6.4" height="12.9"/>
+ </g>
+ <linearGradient id="SVGID_38_" gradientUnits="userSpaceOnUse" x1="-2140" y1="137.5" x2="-540" y2="137.5">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <line class="st67" x1="-2140" y1="137.5" x2="-540" y2="137.5"/>
+ <linearGradient id="SVGID_39_" gradientUnits="userSpaceOnUse" x1="-2137" y1="1888.7506" x2="-539" y2="1888.7506">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.1444" style="stop-color:#FF4B01"/>
+ <stop offset="0.7119" style="stop-color:#C12127"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st68" points="-539,2824 -539,953.5 -2137,953.5 -2137,2820.1 "/>
+ <line class="st50" x1="-1421.2" y1="1227.4" x2="-1422.9" y2="1227.4"/>
+ <line class="st38" x1="-1837.3" y1="1250.5" x2="-1839.5" y2="1250.5"/>
+
+ <linearGradient id="SVGID_40_" gradientUnits="userSpaceOnUse" x1="-3475.875" y1="3156.2397" x2="-3095.8748" y2="3156.2397" gradientTransform="matrix(7.182470e-02 -0.9974 0.9974 7.182470e-02 -3997.0811 -1083.0842)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st69" points="-974.6,2238.5 -1001.9,2617.5 -1195.4,2603.5 -1168.1,2224.5 "/>
+
+ <linearGradient id="SVGID_41_" gradientUnits="userSpaceOnUse" x1="-1007.3376" y1="1896.3485" x2="-803.3374" y2="1896.3485" gradientTransform="matrix(0.9887 -0.1501 0.1501 0.9887 -267.5691 -381.758)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st70" points="-734.5,1894.5 -936.2,1925.1 -1021.5,1363.5 -819.8,1332.9 "/>
+
+ <linearGradient id="SVGID_42_" gradientUnits="userSpaceOnUse" x1="-3391.1201" y1="2791.7852" x2="-3011.1201" y2="2791.7852" gradientTransform="matrix(0.1152 -0.9933 0.9933 0.1152 -4133.3789 -2178.4565)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st71" points="-1610.8,1145.4 -1654.5,1522.9 -1847.2,1500.6 -1803.5,1123.1 "/>
+ <g class="st16">
+ <g>
+ <path class="st14" d="M-936.6,1439.5l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6v-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,337.3C-934,1438.3-935.2,1439.5-936.6,1439.5z"/>
+ </g>
+ <g>
+ <path class="st72" d="M-946.6,1429.5l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6v-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,337.3C-944,1428.3-945.2,1429.5-946.6,1429.5z"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(0.9755 0 0 1 -1429.0342 1271.585)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Nunc malesuada suscipit enim at feugiat. </tspan><tspan x="-20.3" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;"> Duis id mauris lectus. Donec a sagittis lectus.</tspan></text>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="236" height="59" xlink:href="77400133F1DEE1E9.png" transform="matrix(1 0 0 1 -1430 1193)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -1426.8369 1224.7207)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Easy to Use</text>
+ </g>
+ </g>
+
+ <linearGradient id="SVGID_43_" gradientUnits="userSpaceOnUse" x1="-2889.1377" y1="1435.938" x2="-2509.1375" y2="1435.938" gradientTransform="matrix(0.9989 -4.653295e-02 4.653295e-02 0.9989 812.3953 852.0187)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st73" points="-1622.7,2500.1 -2002.3,2517.7 -2011.3,2323.9 -1631.7,2306.3 "/>
+ <path class="st74" d="M-1502.7,1298.5h-120.2c-1.1,0-2-0.9-2-2v-81h124.2c0,20.3,0,40.7,0,61v20
+ C-1500.7,1297.6-1501.6,1298.5-1502.7,1298.5z"/>
+ <rect x="-1624.3" y="1202" class="st75" width="123.2" height="14"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="85" height="18" xlink:href="77400133F1DEE1D7.png" transform="matrix(1 0 0 1 -1620.1442 1222.8558)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_44_" gradientUnits="userSpaceOnUse" x1="-1578.8502" y1="1239.0812" x2="-1577.1606" y2="1224.5143">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1614.7" y="1228.7" class="st76" width="73.4" height="6.2"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="60" height="17" xlink:href="77400133F1DEE1D9.png" transform="matrix(1 0 0 1 -1619.8997 1240.1003)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_45_" gradientUnits="userSpaceOnUse" x1="-1591.0468" y1="1253.7651" x2="-1589.7185" y2="1242.3135">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1614.8" y="1245.1" class="st77" width="48.8" height="5.9"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="70" height="18" xlink:href="77400133F1DEE1DB.png" transform="matrix(1 0 0 1 -1620.1566 1254.8434)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_46_" gradientUnits="userSpaceOnUse" x1="-1586.3372" y1="1270.1837" x2="-1584.8344" y2="1257.2263">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1614.8" y="1260.5" class="st78" width="58.4" height="6.4"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="64" height="19" xlink:href="77400133F1DEE1DE.png" transform="matrix(1 0 0 1 -1621.0878 1271.9122)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_47_" gradientUnits="userSpaceOnUse" x1="-1589.8729" y1="1286.9438" x2="-1588.4941" y2="1275.0562">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1615.2" y="1278" class="st79" width="52" height="6"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="27" height="17" xlink:href="77400133F1DEE1DF.png" transform="matrix(1 0 0 1 -1563.8997 1240.1003)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_48_" gradientUnits="userSpaceOnUse" x1="-1550.9332" y1="1251.885" x2="-1550.0411" y2="1244.1936">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1558.5" y="1245.1" class="st80" width="16" height="5.9"/>
+ </g>
+ </g>
+ <line class="st81" x1="-1578" y1="1209" x2="-1538" y2="1209"/>
+ <circle class="st18" cx="-1616.5" cy="1208.5" r="1.5"/>
+ <circle class="st18" cx="-1610.5" cy="1208.5" r="1.5"/>
+ <line class="st50" x1="-1419.2" y1="1673.4" x2="-1420.9" y2="1673.4"/>
+ <line class="st38" x1="-1835.3" y1="1696.5" x2="-1837.5" y2="1696.5"/>
+ <g class="st16">
+ <g>
+ <path class="st14" d="M-934.6,1885.5l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6v-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,337.3C-932,1884.3-933.2,1885.5-934.6,1885.5z"/>
+ </g>
+ <g>
+ <path class="st72" d="M-944.6,1875.5l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6v-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,337.3C-942,1874.3-943.2,1875.5-944.6,1875.5z"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="202" height="59" xlink:href="77400133F1DEE1DA.png" transform="matrix(1 0 0 1 -1435 1620)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -1431.6113 1651.7207)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Ultra Fast</text>
+ </g>
+ </g>
+ <path class="st74" d="M-1500.7,1744.5h-120.2c-1.1,0-2-0.9-2-2v-81h124.2c0,20.3,0,40.7,0,61v20
+ C-1498.7,1743.6-1499.6,1744.5-1500.7,1744.5z"/>
+ <rect x="-1622.3" y="1648" class="st75" width="123.2" height="14"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="85" height="18" xlink:href="77400133F1DEE1D5.png" transform="matrix(1 0 0 1 -1618.1442 1668.8558)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_49_" gradientUnits="userSpaceOnUse" x1="-1576.8502" y1="1685.0812" x2="-1575.1606" y2="1670.5143">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1612.7" y="1674.7" class="st82" width="73.4" height="6.2"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="60" height="17" xlink:href="77400133F1DEE1D6.png" transform="matrix(1 0 0 1 -1617.8997 1686.1003)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_50_" gradientUnits="userSpaceOnUse" x1="-1589.0468" y1="1699.7651" x2="-1587.7185" y2="1688.3135">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1612.8" y="1691.1" class="st83" width="48.8" height="5.9"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="70" height="18" xlink:href="77400133F1DEE232.png" transform="matrix(1 0 0 1 -1618.1566 1700.8434)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_51_" gradientUnits="userSpaceOnUse" x1="-1584.3372" y1="1716.1837" x2="-1582.8344" y2="1703.2263">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1612.8" y="1706.5" class="st84" width="58.4" height="6.4"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="64" height="19" xlink:href="77400133F1DEE231.png" transform="matrix(1 0 0 1 -1619.0878 1717.9122)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_52_" gradientUnits="userSpaceOnUse" x1="-1587.8729" y1="1732.9438" x2="-1586.4941" y2="1721.0562">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1613.2" y="1724" class="st85" width="52" height="6"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="27" height="17" xlink:href="77400133F1DEE236.png" transform="matrix(1 0 0 1 -1561.8997 1686.1003)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_53_" gradientUnits="userSpaceOnUse" x1="-1548.9332" y1="1697.885" x2="-1548.0411" y2="1690.1936">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1556.5" y="1691.1" class="st86" width="16" height="5.9"/>
+ </g>
+ </g>
+ <line class="st81" x1="-1576" y1="1655" x2="-1536" y2="1655"/>
+ <circle class="st18" cx="-1614.5" cy="1654.5" r="1.5"/>
+ <circle class="st18" cx="-1608.5" cy="1654.5" r="1.5"/>
+ <rect x="-1434.9" y="1681" class="st47" width="389.8" height="118.3"/>
+ <text transform="matrix(0.9755 0 0 1 -1434.8857 1694.2773)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Lorem ipsum dolor sit amet, consectetuer </tspan><tspan x="0" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">adipiscing elit, sed diam nonummy nibh eu</tspan><tspan x="387.7" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">-</tspan><tspan x="0" y="54" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">ismod Lorem ipsum dolor sit amet, tetuer </tspan><tspan x="0" y="81" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">adipiscing elit, sed diam nonummy nibmod </tspan></text>
+ <line class="st50" x1="-1416.2" y1="2136.4" x2="-1417.9" y2="2136.4"/>
+ <line class="st38" x1="-1832.3" y1="2159.5" x2="-1834.5" y2="2159.5"/>
+ <g class="st16">
+ <g>
+ <path class="st14" d="M-931.6,2348.5l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6v-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,337.3C-929,2347.3-930.2,2348.5-931.6,2348.5z"/>
+ </g>
+ <g>
+ <path class="st72" d="M-941.6,2338.5l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6v-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,337.3C-939,2337.3-940.2,2338.5-941.6,2338.5z"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="202" height="59" xlink:href="77400133F1DEE230.png" transform="matrix(1 0 0 1 -1432 2083)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 -1428.6113 2114.7207)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Ultra Fast</text>
+ </g>
+ </g>
+ <path class="st74" d="M-1497.7,2207.5h-120.2c-1.1,0-2-0.9-2-2v-81h124.2c0,20.3,0,40.7,0,61v20
+ C-1495.7,2206.6-1496.6,2207.5-1497.7,2207.5z"/>
+ <rect x="-1619.3" y="2111" class="st75" width="123.2" height="14"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="85" height="18" xlink:href="77400133F1DEE233.png" transform="matrix(1 0 0 1 -1615.1442 2131.8557)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_54_" gradientUnits="userSpaceOnUse" x1="-1573.8502" y1="2148.0813" x2="-1572.1606" y2="2133.5144">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1609.7" y="2137.7" class="st87" width="73.4" height="6.2"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="60" height="17" xlink:href="77400133F1DEE22F.png" transform="matrix(1 0 0 1 -1614.8997 2149.1003)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_55_" gradientUnits="userSpaceOnUse" x1="-1586.0468" y1="2162.7651" x2="-1584.7185" y2="2151.3135">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1609.8" y="2154.1" class="st88" width="48.8" height="5.9"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="70" height="18" xlink:href="77400133F1DEE20E.png" transform="matrix(1 0 0 1 -1615.1566 2163.8435)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_56_" gradientUnits="userSpaceOnUse" x1="-1581.3372" y1="2179.1838" x2="-1579.8344" y2="2166.2263">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1609.8" y="2169.5" class="st89" width="58.4" height="6.4"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="64" height="19" xlink:href="77400133F1DEE211.png" transform="matrix(1 0 0 1 -1616.0878 2180.9124)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_57_" gradientUnits="userSpaceOnUse" x1="-1584.8729" y1="2195.9438" x2="-1583.4941" y2="2184.0562">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1610.2" y="2187" class="st90" width="52" height="6"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="27" height="17" xlink:href="77400133F1DEE212.png" transform="matrix(1 0 0 1 -1558.8997 2149.1003)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_58_" gradientUnits="userSpaceOnUse" x1="-1545.9332" y1="2160.885" x2="-1545.0411" y2="2153.1936">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="-1553.5" y="2154.1" class="st91" width="16" height="5.9"/>
+ </g>
+ </g>
+ <line class="st81" x1="-1573" y1="2118" x2="-1533" y2="2118"/>
+ <circle class="st18" cx="-1611.5" cy="2117.5" r="1.5"/>
+ <circle class="st18" cx="-1605.5" cy="2117.5" r="1.5"/>
+ <rect x="-1431.9" y="2144" class="st47" width="389.8" height="118.3"/>
+ <text transform="matrix(0.9755 0 0 1 -1431.8857 2157.2773)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Lorem ipsum dolor sit amet, consectetuer </tspan><tspan x="0" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">adipiscing elit, sed diam nonummy nibh eu</tspan><tspan x="387.7" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">-</tspan><tspan x="0" y="54" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">ismod Lorem ipsum dolor sit amet, tetuer </tspan><tspan x="0" y="81" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">adipiscing elit, sed diam nonummy nibmod </tspan></text>
+ <path class="st92" d="M-781.1,365.6c-0.1,0-0.2,0-0.3,0l-26.6-8.5c-0.3-0.1-0.5-0.5-0.4-0.8c0-0.1,0.1-0.2,0.2-0.3l20.5-19.1
+ c0.2-0.2,0.4-0.2,0.6-0.1l26.6,8.5c0.3,0.1,0.5,0.5,0.4,0.8c0,0.1-0.1,0.2-0.2,0.3l-20.5,19C-780.9,365.6-781,365.6-781.1,365.6z"
+ />
+ <path class="st92" d="M-774.9,393.3c-0.1,0-0.2,0-0.3,0l-26.6-8.4c-0.2-0.1-0.4-0.2-0.4-0.5l-6.2-27.7c-0.1-0.3,0.1-0.7,0.5-0.8
+ c0.3-0.1,0.7,0.1,0.8,0.5l6.1,27.4l25.2,8l-5.9-26.6c-0.1-0.3,0.1-0.7,0.5-0.8c0.3-0.1,0.7,0.1,0.8,0.5l6.2,27.7
+ C-774.3,392.9-774.6,393.2-774.9,393.3z"/>
+ <path class="st92" d="M-774.9,393.3c-0.2,0-0.5,0-0.6-0.2c-0.2-0.3-0.2-0.7,0-0.9l20.2-18.8l-6.1-27.3c-0.1-0.3,0.1-0.7,0.5-0.8
+ c0.3-0.1,0.7,0.1,0.8,0.5l6.2,27.6c0.1,0.2,0,0.5-0.2,0.6l-20.5,19.1C-774.7,393.2-774.8,393.3-774.9,393.3z"/>
+ <path class="st93" d="M-768.9,744.1c-0.1-0.1-0.2-0.1-0.2-0.2l-10.2-23.9c-0.1-0.3,0-0.7,0.3-0.8c0.1,0,0.2-0.1,0.3,0l25.9,2.9
+ c0.2,0,0.4,0.2,0.5,0.4l10.1,24c0.1,0.3,0,0.7-0.3,0.8c-0.1,0-0.2,0.1-0.3,0l-25.8-2.9C-768.7,744.2-768.8,744.1-768.9,744.1z"/>
+ <path class="st93" d="M-784.6,765.2c-0.1-0.1-0.2-0.1-0.2-0.2l-10.2-23.9c-0.1-0.2-0.1-0.4,0.1-0.6l15.8-21.2
+ c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,0.3,0.6,0.1,0.8l-15.6,20.9l9.6,22.6l15.1-20.3c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,25.3,4,25.1,4.3
+ l-40.7,17.7C-784,765.4-784.4,765.4-784.6,765.2z"/>
+ <path class="st93" d="M-743.2,746.1c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,0.3,0.6,0.1,0.8l-15.7,21.1c-0.1,0.2-0.3,0.3-0.5,0.2
+ l-25.9-2.9c-0.1,0-0.2-0.1-0.3-0.1c-0.2-0.1-0.3-0.3-0.2-0.5c0-0.3,0.3-0.6,0.7-0.5"/>
+ <linearGradient id="SVGID_59_" gradientUnits="userSpaceOnUse" x1="798.01" y1="-41.4568" x2="-234.01" y2="1188.4568">
+ <stop offset="0" style="stop-color:#D4BEB8;stop-opacity:0.7"/>
+ <stop offset="1" style="stop-color:#FFFFFF"/>
+ </linearGradient>
+ <rect x="-517" y="196" class="st94" width="1598" height="755"/>
+ <rect x="-491" y="158" class="st47" width="22" height="22.6"/>
+
+ <text transform="matrix(1 0 0 1 -485 172.1997)" class="st35" style="font-family:'SourceCodeVariable-Roman'; font-size:20px; letter-spacing:1;">❤</text>
+ <text transform="matrix(1 0 0 1 886.9082 173.3013)"><tspan x="0" y="0" style="font-family:'Poppins-Medium'; font-size:14px;">docs</tspan><tspan x="34.3" y="0" style="font-family:'Poppins-Medium'; font-size:14px; letter-spacing:-1;"> </tspan><tspan x="36" y="0" style="font-family:'Poppins-Medium'; font-size:14px; letter-spacing:32;"> </tspan><tspan x="72" y="0" style="font-family:'Poppins-Medium'; font-size:14px;">npmjs.com</tspan><tspan x="151.5" y="0" style="font-family:'Poppins-Medium'; font-size:14px; letter-spacing:24;"> </tspan></text>
+ <g>
+ <g>
+ <path class="st46" d="M-444.9,172h6.4v-9.7h3.2v9.7h3.2v-13h-12.8V172z M-414.2,159.1v13h6.4v-9.7h3.2v9.7h3.2v-9.7h3.2v9.7h3.2
+ v-13H-414.2L-414.2,159.1z M-423.2,162.3h3.2v6.5h-3.2V162.3z M-429.6,175.3h6.4V172h6.4v-13h-12.8V175.3z"/>
+ <rect x="-444.9" y="159.1" class="st47" width="49.9" height="16.2"/>
+ </g>
+ <polygon class="st46" points="-379.9,162.2 -379.9,168.5 -373.8,168.5 -373.8,171.7 -380,171.7 -386.3,171.7 -386.2,159.1
+ -373.8,159.1 -373.8,162.2 "/>
+ <rect x="-371.2" y="159" class="st46" width="6.4" height="12.9"/>
+
+ <rect x="-365.3" y="165.6" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 -193.3494 534.1752)" class="st46" width="3.1" height="9.5"/>
+
+ <rect x="-344.1" y="167" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 -171.9806 514.3131)" class="st46" width="2" height="8.3"/>
+ <rect x="-357.1" y="159" class="st46" width="6.4" height="12.9"/>
+ </g>
+ <linearGradient id="SVGID_60_" gradientUnits="userSpaceOnUse" x1="-518" y1="136.5" x2="1082" y2="136.5">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <line class="st95" x1="-518" y1="136.5" x2="1082" y2="136.5"/>
+ <rect x="-2139.5" y="2561.5" class="st96" width="1602" height="510"/>
+ <linearGradient id="SVGID_61_" gradientUnits="userSpaceOnUse" x1="2.1464" y1="358.75" x2="3.3536" y2="358.75">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st97" x1="3" y1="359" x2="2.5" y2="358.5"/>
+ <line class="st40" x1="48.9" y1="291.8" x2="46.2" y2="291.8"/>
+ <line class="st40" x1="17.2" y1="319.1" x2="14.5" y2="319.1"/>
+ <line class="st40" x1="213.8" y1="350.2" x2="211.1" y2="350.2"/>
+ <g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="771" height="491" xlink:href="77400133F1DEE210.png" transform="matrix(1 0 0 1 -108 255)">
+ </image>
+ <g>
+ <path class="st98" d="M663.9,273.7v468.9c0,2.2-1.8,4-4,4H-88.7c-2.2,0-4-1.8-4-4V273.7c0-1.7,1.3-3,3-3h750.6
+ C662.6,270.7,663.9,272,663.9,273.7z"/>
+ <path class="st81" d="M663.9,273.7v468.9c0,2.2-1.8,4-4,4H-88.7c-2.2,0-4-1.8-4-4V273.7c0-1.7,1.3-3,3-3h750.6
+ C662.6,270.7,663.9,272,663.9,273.7z"/>
+ </g>
+ </g>
+ <g>
+ <path class="st8" d="M663.9,274v21.7c0,1.6-1.3,3-3,3H-89.7c-1.7,0-3-1.4-3-3V274c0-1.7,1.3-3,3-3h750.6
+ C662.6,271,663.9,272.3,663.9,274z"/>
+ <path class="st62" d="M663.9,274v21.7c0,1.6-1.3,3-3,3H-89.7c-1.7,0-3-1.4-3-3V274c0-1.7,1.3-3,3-3h750.6
+ C662.6,271,663.9,272.3,663.9,274z"/>
+ </g>
+ </g>
+ <g>
+ <line class="st40" x1="49.4" y1="366.7" x2="46.6" y2="366.7"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="770" height="490" xlink:href="77400133F1DEE20D.png" transform="matrix(1 0 0 1 -69 311)">
+ </image>
+ <g>
+ <path class="st98" d="M702.2,329.4v468.9c0,2.2-1.8,4-4,4H-50.4c-2.2,0-4-1.8-4-4V329.4c0-1.7,1.3-3,3-3h750.6
+ C700.9,326.4,702.2,327.7,702.2,329.4z"/>
+ <path class="st99" d="M702.2,329.4v468.9c0,2.2-1.8,4-4,4H-50.4c-2.2,0-4-1.8-4-4V329.4c0-1.7,1.3-3,3-3h750.6
+ C700.9,326.4,702.2,327.7,702.2,329.4z"/>
+ </g>
+ </g>
+ <g>
+ <path class="st8" d="M701.9,329v21.7c0,1.6-1.3,3-3,3H-51.7c-1.7,0-3-1.4-3-3V329c0-1.7,1.3-3,3-3h750.6
+ C700.6,326,701.9,327.3,701.9,329z"/>
+ <path class="st62" d="M701.9,329v21.7c0,1.6-1.3,3-3,3H-51.7c-1.7,0-3-1.4-3-3V329c0-1.7,1.3-3,3-3h750.6
+ C700.6,326,701.9,327.3,701.9,329z"/>
+ </g>
+ </g>
+ <g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="771" height="490" xlink:href="77400133F1DEE273.png" transform="matrix(1 0 0 1 -35 371)">
+ </image>
+ <g>
+ <path class="st98" d="M736.6,387.8v472.9c0,0.5-0.4,1-1,1H-19.1c-0.5,0-1-0.4-1-1V387.8c0-1.1,0.9-2,2-2h752.6
+ C735.7,385.8,736.6,386.7,736.6,387.8z"/>
+ <path class="st99" d="M736.6,387.8v472.9c0,0.5-0.4,1-1,1H-19.1c-0.5,0-1-0.4-1-1V387.8c0-1.1,0.9-2,2-2h752.6
+ C735.7,385.8,736.6,386.7,736.6,387.8z"/>
+ </g>
+ </g>
+ <g>
+ <g>
+ <rect x="451.7" y="536.8" class="st14" width="23.3" height="6.1"/>
+ </g>
+ <g>
+ <polygon class="st14" points="80.4,532.7 76.5,528 87.7,518.4 76.5,508.8 80.4,504.1 97.2,518.4 "/>
+ </g>
+ <g class="st51">
+
+ <image style="overflow:visible;opacity:0.2;" width="327" height="66" xlink:href="77400133F1DEE275.png" transform="matrix(1 0 0 1 114.4106 485.4106)">
+ </image>
+ <g>
+ <g>
+ <path class="st8" d="M152.5,542.1h-10.4l-17.7-39.6v39.6h-8.5v-52.3h11.5l16.6,37.5v-37.5h9.1c0.1,0.1,0.2,0.3,0.2,0.4
+ c0,0.2-0.1,0.5-0.3,0.8c-0.2,0.3-0.4,0.9-0.5,1.7V542.1z"/>
+ <path class="st8" d="M164.4,489.8h17.7c3.1,0,5.8,0.4,8,1.3c2.2,0.8,4,2,5.5,3.4c1.4,1.4,2.5,3.1,3.1,5c0.7,1.9,1,3.9,1,6
+ c0,2.1-0.3,4.1-1,6c-0.6,1.9-1.7,3.5-3.1,4.9c-1.4,1.4-3.2,2.5-5.4,3.3c-2.2,0.8-4.8,1.2-7.8,1.2H174v21.2h-9.6V489.8z
+ M174,498.1V513h7.9c1.5,0,2.7-0.2,3.7-0.5c1-0.4,1.9-0.9,2.6-1.5c0.7-0.6,1.2-1.4,1.5-2.3c0.3-0.9,0.5-1.8,0.5-2.9
+ c0-1.1-0.2-2.1-0.5-3.1c-0.3-0.9-0.8-1.7-1.5-2.4c-0.7-0.7-1.5-1.2-2.5-1.6c-1-0.4-2.2-0.6-3.6-0.6H174z"/>
+ <path class="st8" d="M209.8,489.8h9.9l8.8,24.6l8.7-24.7h10v52.4h-8.5v-38l-7.3,19.7h-6.2l-7.1-19.7v38h-8.4V489.8z"/>
+ <path class="st8" d="M333.7,504.6c-0.2-0.1-0.4-0.2-0.5-0.3c-0.1-0.2-0.1-0.4-0.2-0.6c0-0.2-0.1-0.5-0.1-0.8
+ c0-0.3-0.1-0.6-0.2-1c-0.8-1.8-1.8-3.2-3.2-4.2c-1.3-1-3.1-1.6-5.1-1.6c-1.7,0-3.2,0.5-4.5,1.4c-1.3,1-2.5,2.3-3.4,4
+ c-1,1.7-1.7,3.8-2.2,6.2c-0.5,2.4-0.8,5.1-0.8,8.1c0,2.9,0.3,5.5,0.8,7.9c0.6,2.4,1.3,4.5,2.4,6.3c1,1.8,2.2,3.1,3.7,4.2
+ c1.4,1,3,1.5,4.7,1.5c2,0,3.8-0.6,5.3-1.9c1.5-1.3,2.9-3,4.2-5.1l7.1,4.6c-2,3.4-4.4,6-7.2,7.7c-2.8,1.7-5.9,2.6-9.2,2.6
+ c-3.1,0-5.9-0.5-8.6-1.6c-2.6-1.1-4.9-2.8-6.8-5.1c-1.9-2.3-3.4-5.2-4.5-8.6c-1.1-3.4-1.6-7.4-1.6-12.1c0-3.4,0.3-6.5,0.9-9.2
+ c0.6-2.7,1.4-5.1,2.4-7.2c1-2.1,2.2-3.8,3.6-5.2c1.4-1.4,2.8-2.6,4.4-3.5c1.5-0.9,3.1-1.6,4.8-2c1.7-0.4,3.3-0.6,4.8-0.6
+ c2,0,3.8,0.3,5.6,0.8c1.8,0.6,3.5,1.4,5,2.4c1.5,1.1,2.9,2.3,4.1,3.8c1.2,1.5,2.2,3.1,2.9,4.9L333.7,504.6z"/>
+ <path class="st8" d="M386.9,534.2v7.9h-33.4v-52.3h10.2c0.1,0.1,0.2,0.3,0.2,0.4c0,0.2-0.1,0.5-0.3,0.8
+ c-0.2,0.3-0.4,0.9-0.5,1.7v41.5H386.9z"/>
+ <path class="st8" d="M402,489.8h29.2v7.8h-10.2v36.8h10.6v7.7h-30.2v-7.8h10.2v-36.7H402V489.8z"/>
+ </g>
+ </g>
+ </g>
+ <rect x="75.3" y="605.4" class="st47" width="551.7" height="304.6"/>
+ <text transform="matrix(1 0 0 1 75.2637 620.229)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">The</tspan><tspan x="40.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="52.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">intelligent</tspan><tspan x="165.8" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="178.1" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">package</tspan><tspan x="276.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="288.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">manager</tspan><tspan x="391.3" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="403.5" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">for</tspan><tspan x="434.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="446.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">the</tspan><tspan x="482.8" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="495.1" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Node </tspan><tspan x="4.7" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Javascript Platform. Install stuff and get coding!</tspan></text>
+ <g>
+ <rect x="77.3" y="705" class="st14" width="230" height="59.2"/>
+ <rect x="83.2" y="710.8" class="st19" width="230" height="59.2"/>
+
+ <text transform="matrix(1 0 0 1 134.1411 743.4116)" class="st8" style="font-family:'Poppins-Bold'; font-size:20px; letter-spacing:1;">Read Docs</text>
+ </g>
+ </g>
+ <g>
+ <path class="st8" d="M736.9,389v24.7c0,0,0,0,0,0H-19.6c0,0,0,0,0,0V389c0-1.7,1.3-3,3-3h750.6C735.6,386,736.9,387.3,736.9,389z
+ "/>
+ <path class="st62" d="M736.9,389v24.7c0,0,0,0,0,0H-19.6c0,0,0,0,0,0V389c0-1.7,1.3-3,3-3h750.6C735.6,386,736.9,387.3,736.9,389
+ z"/>
+ </g>
+ <line class="st66" x1="-3.4" y1="395.7" x2="5" y2="404.6"/>
+ <line class="st66" x1="-3.7" y1="404.3" x2="5.3" y2="395.9"/>
+ <line class="st66" x1="-43.4" y1="335.7" x2="-35" y2="344.6"/>
+ <line class="st66" x1="-43.7" y1="344.3" x2="-34.7" y2="335.9"/>
+ <line class="st66" x1="-80.4" y1="280.7" x2="-72" y2="289.6"/>
+ <line class="st66" x1="-80.7" y1="289.3" x2="-71.7" y2="280.9"/>
+ </g>
+ <linearGradient id="SVGID_62_" gradientUnits="userSpaceOnUse" x1="-517" y1="1888.7506" x2="1081" y2="1888.7506">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.1444" style="stop-color:#FF4B01"/>
+ <stop offset="0.7119" style="stop-color:#C12127"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st100" points="1081,2824 1081,953.5 -517,953.5 -517,2820.1 "/>
+ <line class="st50" x1="198.8" y1="1227.4" x2="197.1" y2="1227.4"/>
+ <line class="st38" x1="-217.3" y1="1250.5" x2="-219.5" y2="1250.5"/>
+
+ <linearGradient id="SVGID_63_" gradientUnits="userSpaceOnUse" x1="-3359.5188" y1="4772.0557" x2="-2979.5188" y2="4772.0557" gradientTransform="matrix(7.182470e-02 -0.9974 0.9974 7.182470e-02 -3997.0811 -1083.0842)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st101" points="645.4,2238.5 618.1,2617.5 424.6,2603.5 451.9,2224.5 "/>
+
+ <linearGradient id="SVGID_64_" gradientUnits="userSpaceOnUse" x1="594.3081" y1="2139.5168" x2="798.3083" y2="2139.5168" gradientTransform="matrix(0.9887 -0.1501 0.1501 0.9887 -267.5691 -381.758)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st102" points="885.5,1894.5 683.8,1925.1 598.5,1363.5 800.2,1332.9 "/>
+
+ <linearGradient id="SVGID_65_" gradientUnits="userSpaceOnUse" x1="-3204.4729" y1="4400.9971" x2="-2824.4729" y2="4400.9971" gradientTransform="matrix(0.1152 -0.9933 0.9933 0.1152 -4133.3789 -2178.4565)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st103" points="9.2,1145.4 -34.5,1522.9 -227.2,1500.6 -183.5,1123.1 "/>
+ <g class="st16">
+ <g>
+ <path class="st14" d="M683.4,1439.5l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6l0-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,337.3C686,1438.3,684.8,1439.5,683.4,1439.5z"/>
+ </g>
+ <g>
+ <path class="st72" d="M673.4,1429.5l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6l0-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,337.3C676,1428.3,674.8,1429.5,673.4,1429.5z"/>
+ </g>
+ </g>
+ <g>
+ <text transform="matrix(0.9755 0 0 1 180.6865 1271.585)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:19px;">Nunc malesuada suscipit enim at feugiat. </tspan><tspan x="-21.5" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:19px;"> Duis id mauris lectus. Donec a sagittis lectus.</tspan></text>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="236" height="59" xlink:href="77400133F1DEE277.png" transform="matrix(1 0 0 1 186 1193)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 189.1631 1224.7207)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Easy to Use</text>
+ </g>
+ </g>
+
+ <linearGradient id="SVGID_66_" gradientUnits="userSpaceOnUse" x1="-1270.8925" y1="1511.3213" x2="-890.8923" y2="1511.3213" gradientTransform="matrix(0.9989 -4.653295e-02 4.653295e-02 0.9989 812.3953 852.0187)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <polygon class="st104" points="-2.7,2500.1 -382.3,2517.7 -391.3,2323.9 -11.7,2306.3 "/>
+ <path class="st74" d="M117.3,1298.5H-2.8c-1.1,0-2-0.9-2-2v-81h124.2c0,20.3,0,40.7,0,61v20
+ C119.3,1297.6,118.4,1298.5,117.3,1298.5z"/>
+ <rect x="-4.3" y="1202" class="st75" width="123.2" height="14"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="85" height="18" xlink:href="77400133F1DEE274.png" transform="matrix(1 0 0 1 -0.1442 1222.8558)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_67_" gradientUnits="userSpaceOnUse" x1="41.1498" y1="1239.0812" x2="42.8394" y2="1224.5143">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="5.3" y="1228.7" class="st105" width="73.4" height="6.2"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="60" height="17" xlink:href="77400133F1DEE27C.png" transform="matrix(1 0 0 1 0.1003 1240.1003)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_68_" gradientUnits="userSpaceOnUse" x1="28.9533" y1="1253.7651" x2="30.2815" y2="1242.3135">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="5.2" y="1245.1" class="st106" width="48.8" height="5.9"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="70" height="18" xlink:href="77400133F1DEE27D.png" transform="matrix(1 0 0 1 -0.1566 1254.8434)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_69_" gradientUnits="userSpaceOnUse" x1="33.6628" y1="1270.1837" x2="35.1657" y2="1257.2263">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="5.2" y="1260.5" class="st107" width="58.4" height="6.4"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="64" height="19" xlink:href="77400133F1DEE27F.png" transform="matrix(1 0 0 1 -1.0878 1271.9122)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_70_" gradientUnits="userSpaceOnUse" x1="30.1271" y1="1286.9438" x2="31.5059" y2="1275.0562">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="4.8" y="1278" class="st108" width="52" height="6"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="27" height="17" xlink:href="77400133F1DEE27B.png" transform="matrix(1 0 0 1 56.1003 1240.1003)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_71_" gradientUnits="userSpaceOnUse" x1="69.0668" y1="1251.885" x2="69.9589" y2="1244.1936">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="61.5" y="1245.1" class="st109" width="16" height="5.9"/>
+ </g>
+ </g>
+ <line class="st81" x1="42" y1="1209" x2="82" y2="1209"/>
+ <circle class="st18" cx="3.5" cy="1208.5" r="1.5"/>
+ <circle class="st18" cx="9.5" cy="1208.5" r="1.5"/>
+ <line class="st50" x1="200.8" y1="1673.4" x2="199.1" y2="1673.4"/>
+ <line class="st38" x1="-215.3" y1="1696.5" x2="-217.5" y2="1696.5"/>
+ <g class="st16">
+ <g>
+ <path class="st14" d="M685.4,1885.5l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6l0-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,337.3C688,1884.3,686.8,1885.5,685.4,1885.5z"/>
+ </g>
+ <g>
+ <path class="st72" d="M675.4,1875.5l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6l0-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,337.3C678,1874.3,676.8,1875.5,675.4,1875.5z"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="202" height="59" xlink:href="77400133F1DEE276.png" transform="matrix(1 0 0 1 185 1620)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 188.3887 1651.7207)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Ultra Fast</text>
+ </g>
+ </g>
+ <path class="st74" d="M119.3,1744.5H-0.8c-1.1,0-2-0.9-2-2v-81h124.2c0,20.3,0,40.7,0,61v20
+ C121.3,1743.6,120.4,1744.5,119.3,1744.5z"/>
+ <rect x="-2.3" y="1648" class="st75" width="123.2" height="14"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="85" height="18" xlink:href="77400133F1DEE258.png" transform="matrix(1 0 0 1 1.8558 1668.8558)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_72_" gradientUnits="userSpaceOnUse" x1="43.1498" y1="1685.0812" x2="44.8394" y2="1670.5143">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="7.3" y="1674.7" class="st110" width="73.4" height="6.2"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="60" height="17" xlink:href="77400133F1DEE25B.png" transform="matrix(1 0 0 1 2.1003 1686.1003)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_73_" gradientUnits="userSpaceOnUse" x1="30.9533" y1="1699.7651" x2="32.2815" y2="1688.3135">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="7.2" y="1691.1" class="st111" width="48.8" height="5.9"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="70" height="18" xlink:href="77400133F1DEE259.png" transform="matrix(1 0 0 1 1.8434 1700.8434)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_74_" gradientUnits="userSpaceOnUse" x1="35.6628" y1="1716.1837" x2="37.1657" y2="1703.2263">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="7.2" y="1706.5" class="st112" width="58.4" height="6.4"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="64" height="19" xlink:href="77400133F1DEE227.png" transform="matrix(1 0 0 1 0.9122 1717.9122)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_75_" gradientUnits="userSpaceOnUse" x1="32.1271" y1="1732.9438" x2="33.5059" y2="1721.0562">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="6.8" y="1724" class="st113" width="52" height="6"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="27" height="17" xlink:href="77400133F1DEE228.png" transform="matrix(1 0 0 1 58.1003 1686.1003)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_76_" gradientUnits="userSpaceOnUse" x1="71.0668" y1="1697.885" x2="71.9589" y2="1690.1936">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="63.5" y="1691.1" class="st114" width="16" height="5.9"/>
+ </g>
+ </g>
+ <line class="st81" x1="44" y1="1655" x2="84" y2="1655"/>
+ <circle class="st18" cx="5.5" cy="1654.5" r="1.5"/>
+ <circle class="st18" cx="11.5" cy="1654.5" r="1.5"/>
+ <rect x="185.1" y="1681" class="st47" width="389.8" height="118.3"/>
+ <text transform="matrix(0.9755 0 0 1 185.1143 1694.2773)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Lorem ipsum dolor sit amet, consectetuer </tspan><tspan x="0" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">adipiscing elit, sed diam nonummy nibh eu</tspan><tspan x="387.7" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">-</tspan><tspan x="0" y="54" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">ismod Lorem ipsum dolor sit amet, tetuer </tspan><tspan x="0" y="81" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">adipiscing elit, sed diam nonummy nibmod </tspan></text>
+ <line class="st50" x1="203.8" y1="2136.4" x2="202.1" y2="2136.4"/>
+ <line class="st38" x1="-212.3" y1="2159.5" x2="-214.5" y2="2159.5"/>
+ <g class="st16">
+ <g>
+ <path class="st14" d="M688.4,2348.5l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6l0-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,337.3C691,2347.3,689.8,2348.5,688.4,2348.5z"/>
+ </g>
+ <g>
+ <path class="st72" d="M678.4,2338.5l-789.8,0c-1.4,0-2.6-1.2-2.6-2.6l0-337.3c0-1.4,1.2-2.6,2.6-2.6l789.8,0
+ c1.4,0,2.6,1.2,2.6,2.6l0,337.3C681,2337.3,679.8,2338.5,678.4,2338.5z"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="202" height="59" xlink:href="77400133F1DEE22B.png" transform="matrix(1 0 0 1 188 2083)">
+ </image>
+ <g>
+
+ <text transform="matrix(1 0 0 1 191.3887 2114.7207)" class="st18" style="font-family:'Poppins-SemiBold'; font-size:36px; letter-spacing:2;">Ultra Fast</text>
+ </g>
+ </g>
+ <path class="st74" d="M122.3,2207.5H2.2c-1.1,0-2-0.9-2-2v-81h124.2c0,20.3,0,40.7,0,61v20C124.3,2206.6,123.4,2207.5,122.3,2207.5
+ z"/>
+ <rect x="0.7" y="2111" class="st75" width="123.2" height="14"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="85" height="18" xlink:href="77400133F1DEE229.png" transform="matrix(1 0 0 1 4.8558 2131.8557)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_77_" gradientUnits="userSpaceOnUse" x1="46.1498" y1="2148.0813" x2="47.8394" y2="2133.5144">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="10.3" y="2137.7" class="st115" width="73.4" height="6.2"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="60" height="17" xlink:href="77400133F1DEE22E.png" transform="matrix(1 0 0 1 5.1003 2149.1003)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_78_" gradientUnits="userSpaceOnUse" x1="33.9533" y1="2162.7651" x2="35.2815" y2="2151.3135">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="10.2" y="2154.1" class="st116" width="48.8" height="5.9"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="70" height="18" xlink:href="77400133F1DEE22A.png" transform="matrix(1 0 0 1 4.8434 2163.8435)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_79_" gradientUnits="userSpaceOnUse" x1="38.6628" y1="2179.1838" x2="40.1657" y2="2166.2263">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="10.2" y="2169.5" class="st117" width="58.4" height="6.4"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="64" height="19" xlink:href="77400133F1DEE225.png" transform="matrix(1 0 0 1 3.9122 2180.9124)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_80_" gradientUnits="userSpaceOnUse" x1="35.1271" y1="2195.9438" x2="36.5059" y2="2184.0562">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="9.8" y="2187" class="st118" width="52" height="6"/>
+ </g>
+ </g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.4;" width="27" height="17" xlink:href="77400133F1DEE2CF.png" transform="matrix(1 0 0 1 61.1003 2149.1003)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_81_" gradientUnits="userSpaceOnUse" x1="74.0668" y1="2160.885" x2="74.9589" y2="2153.1936">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <rect x="66.5" y="2154.1" class="st119" width="16" height="5.9"/>
+ </g>
+ </g>
+ <line class="st81" x1="47" y1="2118" x2="87" y2="2118"/>
+ <circle class="st18" cx="8.5" cy="2117.5" r="1.5"/>
+ <circle class="st18" cx="14.5" cy="2117.5" r="1.5"/>
+ <rect x="188.1" y="2144" class="st47" width="389.8" height="118.3"/>
+ <text transform="matrix(0.9755 0 0 1 188.1143 2157.2773)"><tspan x="0" y="0" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">Lorem ipsum dolor sit amet, consectetuer </tspan><tspan x="0" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">adipiscing elit, sed diam nonummy nibh eu</tspan><tspan x="387.7" y="27" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">-</tspan><tspan x="0" y="54" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">ismod Lorem ipsum dolor sit amet, tetuer </tspan><tspan x="0" y="81" class="st18" style="font-family:'Poppins-Regular'; font-size:18px;">adipiscing elit, sed diam nonummy nibmod </tspan></text>
+ <rect x="-519.5" y="2561.5" class="st64" width="1602" height="444"/>
+ <path class="st120" d="M-411,605"/>
+ <path class="st120" d="M-393.5,622.5"/>
+ <path class="st14" d="M-291.4,802.6c-0.1,0-0.2-0.1-0.3-0.2l-18.2-21.2c-0.2-0.3-0.2-0.7,0.1-0.9c0.1-0.1,0.2-0.1,0.3-0.1l27.4-5.5
+ c0.2,0,0.5,0,0.6,0.2l18.2,21.2c0.2,0.3,0.2,0.7-0.1,0.9c-0.1,0.1-0.2,0.1-0.3,0.1l-27.4,5.5C-291.2,802.7-291.3,802.6-291.4,802.6
+ z"/>
+ <path class="st14" d="M-291.8,801.8c0.1-0.3,0.5-0.5,0.8-0.4c0.3,0.1,0.5,0.5,0.4,0.8l-9.2,26.8c-0.1,0.3-0.5,0.5-0.8,0.4
+ c-0.1,0-0.2-0.1-0.3-0.2l-18.3-21.1c-0.1-0.2-0.2-0.4-0.1-0.6l9.3-26.9c0.1-0.3,0.5-0.5,0.8-0.4c0.3,0.1,0.5,0.5,0.4,0.8"/>
+ <path class="st14" d="M-300.6,829.4c-0.2-0.1-0.4-0.3-0.4-0.5c-0.1-0.3,0.2-0.7,0.5-0.8l27.1-5.4l9.1-26.4c0.1-0.3,0.5-0.5,0.8-0.4
+ s0.5,0.5,0.4,0.8l-9.2,26.8c-0.1,0.2-0.3,0.4-0.5,0.4l-27.4,5.5C-300.4,829.5-300.5,829.5-300.6,829.4z"/>
+ <linearGradient id="SVGID_82_" gradientUnits="userSpaceOnUse" x1="-254.4111" y1="528.5751" x2="-224.4088" y2="528.5751">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_83_" gradientUnits="userSpaceOnUse" x1="-254.7821" y1="528.5751" x2="-224.0378" y2="528.5751">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st121" d="M-235.3,537.5c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.4-0.2-0.4-0.5c0-0.1,0-0.1,0.1-0.2l10.6-15.2
+ c0.1-0.1,0.2-0.2,0.4-0.2l18.5,1.8c0.2,0,0.4,0.2,0.4,0.5c0,0.1,0,0.1-0.1,0.2l-10.7,15.2C-235.2,537.4-235.2,537.5-235.3,537.5z"
+ />
+ <linearGradient id="SVGID_84_" gradientUnits="userSpaceOnUse" x1="-254.4128" y1="544.7586" x2="-227.1738" y2="544.7586">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_85_" gradientUnits="userSpaceOnUse" x1="-254.7838" y1="544.7586" x2="-226.8028" y2="544.7586">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st122" d="M-227.4,554.6c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.3-0.1-0.3-0.2l-7.9-17.2c-0.1-0.2,0-0.5,0.2-0.6
+ c0.2-0.1,0.5,0,0.6,0.2l7.8,16.9l17.5,1.7l-7.6-16.5c-0.1-0.2,0-0.5,0.2-0.6c0.2-0.1,0.5,0,0.6,0.2l7.9,17.1
+ C-227.1,554.3-227.2,554.5-227.4,554.6z"/>
+ <linearGradient id="SVGID_86_" gradientUnits="userSpaceOnUse" x1="-228.0281" y1="538.0445" x2="-216.5287" y2="538.0445">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_87_" gradientUnits="userSpaceOnUse" x1="-228.3991" y1="538.0445" x2="-216.1577" y2="538.0445">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st123" d="M-227.4,554.6c-0.1,0.1-0.3,0-0.4,0c-0.2-0.1-0.2-0.4-0.1-0.6l10.5-15.1l-7.8-16.9c-0.1-0.2,0-0.5,0.2-0.6
+ s0.5,0,0.6,0.2l7.9,17.1c0.1,0.1,0.1,0.3,0,0.4l-10.6,15.2C-227.3,554.5-227.4,554.6-227.4,554.6z"/>
+ <linearGradient id="SVGID_88_" gradientUnits="userSpaceOnUse" x1="928.724" y1="777.0777" x2="965.9116" y2="777.0777">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st124" d="M939.1,788.1c-0.1-0.1-0.2-0.1-0.2-0.2l-10.2-23.9c-0.1-0.3,0-0.7,0.3-0.8c0.1,0,0.2-0.1,0.3,0l25.9,2.9
+ c0.2,0,0.4,0.2,0.5,0.4l10.1,24c0.1,0.3,0,0.7-0.3,0.8c-0.1,0-0.2,0.1-0.3,0l-25.8-2.9C939.3,788.2,939.2,788.1,939.1,788.1z"/>
+ <linearGradient id="SVGID_89_" gradientUnits="userSpaceOnUse" x1="912.9363" y1="786.1982" x2="964.8965" y2="786.1982">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st125" d="M923.4,809.2c-0.1-0.1-0.2-0.1-0.2-0.2L913,785.1c-0.1-0.2-0.1-0.4,0.1-0.6l15.8-21.2
+ c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,0.3,0.6,0.1,0.8l-15.6,20.9l9.6,22.6l15.1-20.3c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,25.3,4,25.1,4.3
+ l-40.7,17.7C924,809.4,923.6,809.4,923.4,809.2z"/>
+ <linearGradient id="SVGID_90_" gradientUnits="userSpaceOnUse" x1="923.127" y1="801.051" x2="965.9141" y2="801.051">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st126" d="M964.8,790.1c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,0.3,0.6,0.1,0.8L950.1,812c-0.1,0.2-0.3,0.3-0.5,0.2
+ l-25.9-2.9c-0.1,0-0.2-0.1-0.3-0.1c-0.2-0.1-0.3-0.3-0.2-0.5c0-0.3,0.3-0.6,0.7-0.5"/>
+ <linearGradient id="SVGID_91_" gradientUnits="userSpaceOnUse" x1="850.5015" y1="375.0566" x2="905.0802" y2="375.0566">
+ <stop offset="0" style="stop-color:#913FFF"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st127" d="M898.9,355.8C898.9,355.8,898.9,355.8,898.9,355.8c-0.1-0.1-0.1-0.2-0.1-0.2c0,0-0.1-0.1-0.1-0.1
+ c0,0,0,0-0.1-0.1c0,0-0.1-0.1-0.1-0.1c0,0,0,0,0,0l-26.6-8.5c-0.2-0.1-0.5,0-0.6,0.1L850.7,366c0,0,0,0,0,0
+ c-0.1,0.1-0.1,0.1-0.1,0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0.1,0,0.2c0,0,0,0.1,0,0.1c0,0,0,0,0,0l6.2,27.7c0.1,0.2,0.2,0.4,0.4,0.5
+ l26.6,8.4c0.1,0,0.2,0,0.3,0c0.1,0,0.2-0.1,0.3-0.1c0,0,0,0,0,0l20.5-19.1c0.2-0.2,0.2-0.4,0.2-0.6L898.9,355.8z M857.9,393.7
+ l-5.9-26.3l25.2,8l5.9,26.3L857.9,393.7z"/>
+ <path class="st92" d="M-209.5,39.8l-9.2-16.1c0-0.1-0.1-0.1-0.2-0.2c-0.1,0-0.1,0-0.2-0.1c0,0,0,0,0,0l-18.6,0.1
+ c-0.2,0-0.3,0.1-0.4,0.2l-9.4,16.3c0,0,0,0,0,0.1c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0
+ l9.2,16.2c0.1,0.1,0.2,0.2,0.4,0.2l18.6-0.1c0,0,0,0,0,0c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1-0.1
+ c0,0,0,0,0-0.1c0,0,0,0,0,0l9.4-16.4C-209.4,40-209.4,39.9-209.5,39.8z M-246.3,39.8l8.9-15.4l17.6-0.1l-8.9,15.5L-246.3,39.8z"/>
+ <rect x="1139" y="157" class="st47" width="22" height="22.6"/>
+
+ <text transform="matrix(1 0 0 1 1145 171.1997)" class="st35" style="font-family:'SourceCodeVariable-Roman'; font-size:20px; letter-spacing:1;">❤</text>
+ <g>
+ <g>
+ <path class="st46" d="M1174.1,171h6.4v-9.7h3.2v9.7h3.2v-13h-12.8V171z M1204.8,158.1v13h6.4v-9.7h3.2v9.7h3.2v-9.7h3.2v9.7h3.2
+ v-13H1204.8L1204.8,158.1z M1195.8,161.3h3.2v6.5h-3.2V161.3z M1189.4,174.3h6.4V171h6.4v-13h-12.8V174.3z"/>
+ <rect x="1174.1" y="158.1" class="st47" width="49.9" height="16.2"/>
+ </g>
+ <polygon class="st46" points="1239.1,161.2 1239.1,167.5 1245.2,167.5 1245.2,170.7 1239,170.7 1232.7,170.7 1232.8,158.1
+ 1245.2,158.1 1245.2,161.2 "/>
+ <rect x="1247.8" y="158" class="st46" width="6.4" height="12.9"/>
+
+ <rect x="1253.7" y="164.6" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 1424.6506 -1085.8248)" class="st46" width="3.1" height="9.5"/>
+
+ <rect x="1274.9" y="166" transform="matrix(-1.836970e-16 1 -1 -1.836970e-16 1446.0194 -1105.6869)" class="st46" width="2" height="8.3"/>
+ <rect x="1261.9" y="158" class="st46" width="6.4" height="12.9"/>
+ </g>
+ <linearGradient id="SVGID_92_" gradientUnits="userSpaceOnUse" x1="1102" y1="136.5" x2="2702" y2="136.5">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <line class="st128" x1="1102" y1="136.5" x2="2702" y2="136.5"/>
+ <line class="st129" x1="1103" y1="201" x2="2702" y2="201"/>
+ <g>
+ <path class="st14" d="M1148,246.5c2.4,0,4.4,1.3,5.1,3.6h-2.5c-0.5-1.1-1.5-1.6-2.6-1.6c-1.9,0-3.3,1.4-3.3,3.7
+ c0,2.3,1.4,3.7,3.3,3.7c1.2,0,2.1-0.5,2.6-1.6h2.5c-0.7,2.3-2.7,3.6-5.1,3.6c-3.1,0-5.5-2.4-5.5-5.7
+ C1142.5,248.9,1144.9,246.5,1148,246.5z"/>
+ <path class="st14" d="M1158.8,258c-2.5,0-4.4-1.8-4.4-4.6c0-2.8,2-4.6,4.4-4.6c2.5,0,4.4,1.8,4.4,4.6
+ C1163.4,256.2,1161.4,258,1158.8,258z M1158.8,256c1.2,0,2.3-0.9,2.3-2.6c0-1.8-1.1-2.6-2.2-2.6s-2.2,0.8-2.2,2.6
+ C1156.7,255.1,1157.7,256,1158.8,256z"/>
+ <path class="st14" d="M1171,252.9c0-1.4-0.8-2.2-1.9-2.2c-1.2,0-2,0.8-2,2.2v4.9h-2.2V249h2.2v1.1c0.6-0.8,1.5-1.2,2.6-1.2
+ c2,0,3.5,1.3,3.5,3.8v5.2h-2.2V252.9z"/>
+ <path class="st14" d="M1175.5,250.8h-1V249h1v-0.4c0-2.2,1.2-3.2,3.6-3.1v1.9c-1.1,0-1.4,0.3-1.4,1.3v0.4h1.5v1.8h-1.5v7h-2.2
+ V250.8z"/>
+ <path class="st14" d="M1180.4,246.6c0-0.7,0.6-1.3,1.3-1.3c0.8,0,1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3
+ C1181,247.9,1180.4,247.3,1180.4,246.6z M1180.6,249h2.2v8.9h-2.2V249z"/>
+ <path class="st14" d="M1188.3,248.8c1.4,0,2.3,0.6,2.9,1.4V249h2.2v8.9c0,2.4-1.4,4.3-4.3,4.3c-2.4,0-4.1-1.2-4.4-3.3h2.2
+ c0.2,0.8,1,1.3,2.1,1.3c1.2,0,2.1-0.7,2.1-2.4v-1.4c-0.5,0.8-1.5,1.5-2.9,1.5c-2.2,0-4-1.8-4-4.6S1186.1,248.8,1188.3,248.8z
+ M1188.9,250.8c-1.2,0-2.3,0.9-2.3,2.6s1.1,2.6,2.3,2.6c1.2,0,2.3-0.9,2.3-2.6S1190.1,250.8,1188.9,250.8z"/>
+ <path class="st14" d="M1203.7,257.8h-2.2v-1.1c-0.5,0.8-1.5,1.2-2.6,1.2c-2,0-3.5-1.3-3.5-3.8V249h2.2v4.9c0,1.4,0.8,2.2,1.9,2.2
+ c1.2,0,1.9-0.8,1.9-2.2V249h2.2V257.8z"/>
+ <path class="st14" d="M1208,257.8h-2.2V249h2.2v1.4c0.5-0.9,1.5-1.5,2.7-1.5v2.4h-0.6c-1.3,0-2.1,0.5-2.1,2.2V257.8z"/>
+ <path class="st14" d="M1215.9,258c-2.5,0-4.3-1.8-4.3-4.6c0-2.8,1.8-4.6,4.3-4.6c2.5,0,4.3,1.7,4.3,4.4c0,0.3,0,0.6-0.1,0.9h-6.3
+ c0.1,1.3,1,2,2.1,2c0.9,0,1.5-0.5,1.7-1.1h2.4C1219.5,256.7,1218,258,1215.9,258z M1213.8,252.6h4.1c0-1.2-0.9-1.9-2.1-1.9
+ C1214.8,250.7,1213.9,251.3,1213.8,252.6z"/>
+ <path class="st14" d="M1234.7,246.6v11.2h-2.2l-4.9-7.7v7.7h-2.2v-11.2h2.2l4.9,7.7v-7.7H1234.7z"/>
+ <path class="st14" d="M1240.9,253.5h-1.8v4.3h-2.2v-11.2h4c2.6,0,3.9,1.5,3.9,3.5C1244.8,251.8,1243.7,253.5,1240.9,253.5z
+ M1240.8,251.7c1.2,0,1.8-0.6,1.8-1.6c0-1-0.5-1.6-1.8-1.6h-1.7v3.2H1240.8z"/>
+ <path class="st14" d="M1246.3,246.6h2.5l3.5,8.3l3.5-8.3h2.5v11.2h-2.2v-7.3l-2.9,7.3h-1.7l-2.9-7.3v7.3h-2.2V246.6z"/>
+ </g>
+ <g>
+ <path class="st14" d="M1143,291.6h2.2v6.9c0,1.5,0.8,2.3,2.2,2.3c1.4,0,2.2-0.8,2.2-2.3v-6.9h2.2v6.9c0,2.9-2.1,4.4-4.4,4.4
+ c-2.4,0-4.4-1.4-4.4-4.4V291.6z"/>
+ <path class="st14" d="M1157.2,303c-2.2,0-3.7-1.3-3.8-2.9h2.2c0.1,0.7,0.7,1.2,1.6,1.2c0.9,0,1.3-0.4,1.3-0.9
+ c0-1.6-4.9-0.6-4.9-3.8c0-1.5,1.3-2.7,3.4-2.7c2.1,0,3.4,1.2,3.5,2.9h-2.1c-0.1-0.7-0.6-1.2-1.5-1.2c-0.8,0-1.2,0.3-1.2,0.8
+ c0,1.6,4.8,0.6,4.9,3.9C1160.6,301.8,1159.3,303,1157.2,303z"/>
+ <path class="st14" d="M1162.2,291.6c0-0.7,0.6-1.3,1.3-1.3c0.8,0,1.3,0.6,1.3,1.3s-0.6,1.3-1.3,1.3
+ C1162.7,292.9,1162.2,292.3,1162.2,291.6z M1162.4,294h2.2v8.9h-2.2V294z"/>
+ <path class="st14" d="M1172.8,297.9c0-1.4-0.8-2.2-1.9-2.2c-1.2,0-2,0.8-2,2.2v4.9h-2.2V294h2.2v1.1c0.6-0.8,1.5-1.2,2.6-1.2
+ c2,0,3.5,1.3,3.5,3.8v5.2h-2.2V297.9z"/>
+ <path class="st14" d="M1180.4,293.8c1.4,0,2.3,0.6,2.9,1.4V294h2.2v8.9c0,2.4-1.4,4.3-4.3,4.3c-2.4,0-4.1-1.2-4.4-3.3h2.2
+ c0.2,0.8,1,1.3,2.1,1.3c1.2,0,2.1-0.7,2.1-2.4v-1.4c-0.5,0.8-1.5,1.5-2.9,1.5c-2.2,0-4-1.8-4-4.6S1178.2,293.8,1180.4,293.8z
+ M1181,295.8c-1.2,0-2.3,0.9-2.3,2.6s1.1,2.6,2.3,2.6c1.2,0,2.3-0.9,2.3-2.6S1182.2,295.8,1181,295.8z"/>
+ <path class="st14" d="M1200.6,291.6v11.2h-2.2l-4.9-7.7v7.7h-2.2v-11.2h2.2l4.9,7.7v-7.7H1200.6z"/>
+ <path class="st14" d="M1206.8,298.5h-1.8v4.3h-2.2v-11.2h4c2.6,0,3.9,1.5,3.9,3.5C1210.7,296.8,1209.6,298.5,1206.8,298.5z
+ M1206.7,296.7c1.2,0,1.8-0.6,1.8-1.6c0-1-0.5-1.6-1.8-1.6h-1.7v3.2H1206.7z"/>
+ <path class="st14" d="M1212.2,291.6h2.5l3.5,8.3l3.5-8.3h2.5v11.2h-2.2v-7.3l-2.9,7.3h-1.7l-2.9-7.3v7.3h-2.2V291.6z"/>
+ </g>
+ <g>
+ <path class="st14" d="M1148.9,335.5c2.4,0,4.4,1.3,5.1,3.6h-2.5c-0.5-1.1-1.5-1.6-2.6-1.6c-1.9,0-3.3,1.4-3.3,3.7
+ c0,2.3,1.4,3.7,3.3,3.7c1.2,0,2.1-0.5,2.6-1.6h2.5c-0.7,2.3-2.7,3.6-5.1,3.6c-3.1,0-5.5-2.4-5.5-5.7
+ C1143.4,337.9,1145.7,335.5,1148.9,335.5z"/>
+ <path class="st14" d="M1158,335.6v9.4h3.6v1.8h-5.8v-11.2H1158z"/>
+ <path class="st14" d="M1163,335.6h2.2v11.2h-2.2V335.6z"/>
+ <path class="st14" d="M1176,335.5c2.4,0,4.4,1.3,5.1,3.6h-2.5c-0.5-1.1-1.5-1.6-2.6-1.6c-1.9,0-3.3,1.4-3.3,3.7
+ c0,2.3,1.4,3.7,3.3,3.7c1.2,0,2.1-0.5,2.6-1.6h2.5c-0.7,2.3-2.7,3.6-5.1,3.6c-3.1,0-5.5-2.4-5.5-5.7
+ C1170.5,337.9,1172.9,335.5,1176,335.5z"/>
+ <path class="st14" d="M1186.8,347c-2.5,0-4.4-1.8-4.4-4.6c0-2.8,2-4.6,4.4-4.6c2.5,0,4.4,1.8,4.4,4.6
+ C1191.4,345.2,1189.4,347,1186.8,347z M1186.8,345c1.2,0,2.3-0.9,2.3-2.6c0-1.8-1.1-2.6-2.2-2.6s-2.2,0.8-2.2,2.6
+ C1184.7,344.1,1185.7,345,1186.8,345z"/>
+ <path class="st14" d="M1205,341.9c0-1.4-0.8-2.1-1.9-2.1c-1.2,0-1.9,0.7-1.9,2.1v4.9h-2.2v-4.9c0-1.4-0.8-2.1-1.9-2.1
+ c-1.2,0-2,0.7-2,2.1v4.9h-2.2V338h2.2v1.1c0.5-0.7,1.5-1.2,2.5-1.2c1.3,0,2.5,0.6,3,1.7c0.6-1,1.7-1.7,3-1.7
+ c2.1,0,3.5,1.3,3.5,3.8v5.2h-2.2V341.9z"/>
+ <path class="st14" d="M1221.4,341.9c0-1.4-0.8-2.1-1.9-2.1c-1.2,0-1.9,0.7-1.9,2.1v4.9h-2.2v-4.9c0-1.4-0.8-2.1-1.9-2.1
+ c-1.2,0-2,0.7-2,2.1v4.9h-2.2V338h2.2v1.1c0.5-0.7,1.5-1.2,2.5-1.2c1.3,0,2.5,0.6,3,1.7c0.6-1,1.7-1.7,3-1.7
+ c2.1,0,3.5,1.3,3.5,3.8v5.2h-2.2V341.9z"/>
+ <path class="st14" d="M1229,337.8c1.4,0,2.3,0.7,2.9,1.4V338h2.2v8.9h-2.2v-1.3c-0.5,0.8-1.5,1.4-2.9,1.4c-2.2,0-3.9-1.8-3.9-4.6
+ S1226.8,337.8,1229,337.8z M1229.6,339.8c-1.2,0-2.3,0.9-2.3,2.6s1.1,2.6,2.3,2.6c1.2,0,2.3-0.9,2.3-2.6
+ S1230.8,339.8,1229.6,339.8z"/>
+ <path class="st14" d="M1242.3,341.9c0-1.4-0.8-2.2-1.9-2.2c-1.2,0-2,0.8-2,2.2v4.9h-2.2V338h2.2v1.1c0.6-0.8,1.5-1.2,2.6-1.2
+ c2,0,3.5,1.3,3.5,3.8v5.2h-2.2V341.9z"/>
+ <path class="st14" d="M1249.9,337.8c1.1,0,2.2,0.5,2.8,1.4V335h2.2v11.8h-2.2v-1.3c-0.5,0.8-1.5,1.5-2.8,1.5c-2.2,0-4-1.8-4-4.6
+ S1247.7,337.8,1249.9,337.8z M1250.4,339.8c-1.2,0-2.3,0.9-2.3,2.6s1.1,2.6,2.3,2.6c1.2,0,2.3-0.9,2.3-2.6
+ S1251.6,339.8,1250.4,339.8z"/>
+ <path class="st14" d="M1260.4,347c-2.2,0-3.7-1.3-3.8-2.9h2.2c0.1,0.7,0.7,1.2,1.6,1.2c0.9,0,1.3-0.4,1.3-0.9
+ c0-1.6-4.9-0.6-4.9-3.8c0-1.5,1.3-2.7,3.4-2.7c2.1,0,3.4,1.2,3.5,2.9h-2.1c-0.1-0.7-0.6-1.2-1.5-1.2c-0.8,0-1.2,0.3-1.2,0.8
+ c0,1.6,4.8,0.6,4.9,3.9C1263.8,345.8,1262.5,347,1260.4,347z"/>
+ </g>
+ <text transform="matrix(1 0 0 1 2504.9082 174.3013)"><tspan x="0" y="0" style="font-family:'Poppins-Medium'; font-size:14px;">docs</tspan><tspan x="34.3" y="0" style="font-family:'Poppins-Medium'; font-size:14px; letter-spacing:-1;"> </tspan><tspan x="36" y="0" style="font-family:'Poppins-Medium'; font-size:14px; letter-spacing:32;"> </tspan><tspan x="72" y="0" style="font-family:'Poppins-Medium'; font-size:14px;">npmjs.com</tspan><tspan x="151.5" y="0" style="font-family:'Poppins-Medium'; font-size:14px; letter-spacing:24;"> </tspan></text>
+ <text transform="matrix(1 0 0 1 -190.8369 231.8696)"><tspan x="0" y="0" class="st130" style="font-family:'Poppins-Medium'; font-size:12px;">These little terminal windows could be secretly </tspan><tspan x="0" y="14.4" class="st130" style="font-family:'Poppins-Medium'; font-size:12px;">dismissable, and if you close all they just reappear again</tspan></text>
+ <text transform="matrix(1 0 0 1 579.1631 543.8696)" class="st130" style="font-family:'Poppins-Medium'; font-size:12px;">&lt;----- imagine this is blinking </text>
+ <text transform="matrix(1 0 0 1 192.1631 1370.8696)" class="st130" style="font-family:'Poppins-Medium'; font-size:12px;">Hmm I should probably put some CTAs in these sections</text>
+ <g>
+ <rect x="-110.9" y="2724" class="st47" width="951.9" height="118.3"/>
+ <text transform="matrix(0.9755 0 0 1 -110.8857 2737.2773)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Regular'; font-size:18px;">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod Lorem ipsum </tspan><tspan x="0" y="27" class="st8" style="font-family:'Poppins-Regular'; font-size:18px;">dolor sit amet, tetuer adipiscing elit, sed diam nonummy nibmod </tspan></text>
+ </g>
+ <text transform="matrix(1 0 0 1 1141.8115 392)" class="st131" style="font-family:'Poppins-Regular'; font-size:10px;">set access level on published packages</text>
+
+ <text transform="matrix(0.9997 -2.420000e-02 2.420000e-02 0.9997 1143.1205 376.649)" style="opacity:0.9;fill:#FB3B49; font-family:'Poppins-SemiBold'; font-size:14px;">access</text>
+
+ <text transform="matrix(1 0 0 1 1142.8115 420.9722)" style="opacity:0.9;fill:#FB3B49; font-family:'Poppins-SemiBold'; font-size:14px;">add user</text>
+ <g>
+ <text transform="matrix(1 0 0 1 1142.8115 513.9722)" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">bin</text>
+ </g>
+ <g>
+ <text transform="matrix(1 0 0 1 1142.8115 560.9722)" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">bugs</text>
+ </g>
+ <rect x="1730" y="891" class="st132" width="64" height="27"/>
+ <rect x="1886" y="890" class="st132" width="64" height="27"/>
+ <g>
+ <text transform="matrix(1 0 0 1 1142.8115 608.9722)" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">build</text>
+ </g>
+ <text transform="matrix(1 0 0 1 1142.8115 652.9722)" class="st51"><tspan x="0" y="0" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">bundle</tspan><tspan x="0" y="39.8" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">cache </tspan><tspan x="0" y="53" class="st131" style="font-family:'MyriadPro-Regular'; font-size:11px;">manipulates packages cache</tspan><tspan x="0" y="86.6" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">ci </tspan><tspan x="0" y="98.6" class="st131" style="font-family:'Poppins-Regular'; font-size:10px;">install a project with a clean slate</tspan><tspan x="0" y="132.2" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">config</tspan><tspan x="0" y="144.2" class="st131" style="font-family:'Poppins-Regular'; font-size:10px;">manage npm configuration files</tspan><tspan x="0" y="177.8" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">dedupe</tspan><tspan x="0" y="189.8" class="st131" style="font-family:'Poppins-Regular'; font-size:10px;">reduce duplication</tspan><tspan x="0" y="223.4" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">deprecate</tspan><tspan x="0" y="235.4" class="st131" style="font-family:'Poppins-Regular'; font-size:10px;">deprecate a version of a package</tspan><tspan x="0" y="269" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">dist-tag</tspan><tspan x="0" y="281" class="st131" style="font-family:'Poppins-Regular'; font-size:10px;">modify package distribution tags</tspan></text>
+ <text transform="matrix(1 0 0 1 1142.8115 438)" class="st131" style="font-family:'Poppins-Regular'; font-size:10px;">add a registry user account</text>
+ <g>
+ <text transform="matrix(1 0 0 1 1142.8115 467.7544)" class="st14" style="font-family:'Poppins-SemiBold'; font-size:14px;">audit</text>
+ <text transform="matrix(1 0 0 1 1141.8115 482.8867)" class="st131" style="font-family:'Poppins-Regular'; font-size:10px;">run a security audit</text>
+ </g>
+ <text transform="matrix(1 0 0 1 1141.8115 528)" class="st131" style="font-family:'Poppins-Regular'; font-size:10px;">display npm bin folder</text>
+ <rect x="1633" y="712" class="st132" width="96" height="25"/>
+ <text transform="matrix(1 0 0 1 1143.8115 622)" class="st131" style="font-family:'MyriadPro-Regular'; font-size:11px;">build a package</text>
+ <text transform="matrix(1 0 0 1 1142.8115 665)" class="st131" style="font-family:'MyriadPro-Regular'; font-size:11px;">removed</text>
+ <rect x="1751" y="748" class="st132" width="49" height="21"/>
+ <rect x="2249" y="712" class="st132" width="125" height="26"/>
+ <text transform="matrix(1 0 0 1 1143.8115 575)" class="st131" style="font-family:'Poppins-Regular'; font-size:10px;">bugs for a package in a web browser maybe</text>
+ <g>
+ <path class="st14" d="M1276,256c-0.3,0-0.5-0.1-0.7-0.3l-6-6c-0.4-0.4-0.4-1,0-1.4s1-0.4,1.4,0l5.3,5.3l5.3-5.3
+ c0.4-0.4,1-0.4,1.4,0s0.4,1,0,1.4l-6,6C1276.5,255.9,1276.3,256,1276,256z"/>
+ </g>
+ <polyline class="st133" points="1272,344 1278,338 1284,344 "/>
+ <g>
+ <path class="st14" d="M1242,301.1c-0.3,0-0.6-0.1-0.8-0.3l-6-6c-0.4-0.4-0.4-1.2,0-1.6c0.4-0.4,1.2-0.4,1.6,0l5.2,5.2l5.2-5.2
+ c0.4-0.4,1.2-0.4,1.6,0c0.4,0.4,0.4,1.2,0,1.6l-6,6C1242.6,301,1242.3,301.1,1242,301.1z"/>
+ </g>
+ <rect x="1133" y="542" class="st134" width="282" height="45"/>
+ <text transform="matrix(1 0 0 1 1600.9707 286.0469)"><tspan x="0" y="0" class="st98" style="font-family:'Poppins-SemiBold'; font-size:42px;"> npm-bugs</tspan><tspan x="0" y="40" class="st98" style="font-family:'Poppins-Regular'; font-size:24px;">Bugs for a package in a web browser maybe</tspan></text>
+ <text transform="matrix(1 0 0 1 1602.7861 408.293)" class="st135" style="font-family:'Poppins-Medium'; font-size:24px;">Synopsis</text>
+ <text transform="matrix(1 0 0 1 1602.7861 655.293)" class="st135" style="font-family:'Poppins-Medium'; font-size:24px;">Description</text>
+ <g>
+ <rect x="1601.3" y="684" class="st47" width="894.4" height="310.2"/>
+ <text transform="matrix(1 0 0 1 1601.2539 695.8242)"><tspan x="0" y="0" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">This command tries to guess at the likely location of a package’s bug tracker URL, and then tries to open it using </tspan><tspan x="0" y="34" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">the</tspan><tspan x="26" y="34" class="st98" style="font-family:'AndaleMono'; font-size:16px;"> --browser</tspan><tspan x="122" y="34" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;"> config param. If no package name is provided, it will search for a</tspan><tspan x="643.2" y="34" class="st98" style="font-family:'AndaleMono'; font-size:16px;"> package.json</tspan><tspan x="768" y="34" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;"> in the current </tspan><tspan x="0" y="68" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">folder and use the </tspan><tspan x="153.9" y="68" class="st98" style="font-family:'AndaleMono'; font-size:16px;">name</tspan><tspan x="192.3" y="68" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;"> property.</tspan></text>
+ </g>
+ <text transform="matrix(1 0 0 1 1602.7861 829.293)" class="st135" style="font-family:'Poppins-Medium'; font-size:24px;">Configuration</text>
+ <text transform="matrix(1 0 0 1 1602.7861 872.293)" class="st136" style="font-family:'Poppins-Medium'; font-size:17px;">browser</text>
+ <linearGradient id="SVGID_93_" gradientUnits="userSpaceOnUse" x1="-896.5436" y1="2766.468" x2="-1773.4564" y2="3811.532">
+ <stop offset="0" style="stop-color:#D4BEB8"/>
+ <stop offset="1" style="stop-color:#FFFFFF"/>
+ </linearGradient>
+ <rect x="-2134" y="3069" class="st137" width="1598" height="440"/>
+ <text transform="matrix(1 0 0 1 1603.7861 1001.293)" class="st136" style="font-family:'Poppins-Medium'; font-size:17px;">registry</text>
+ <g>
+ <text transform="matrix(1 0 0 1 1603.7861 1160.293)" class="st135" style="font-family:'Poppins-Medium'; font-size:24px;">See Also</text>
+ </g>
+ <g>
+ <rect x="1619.3" y="897.2" class="st47" width="754.9" height="125.6"/>
+ <text transform="matrix(1 0 0 1 1619.2998 909.084)"><tspan x="0" y="0" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">Default: OS X:</tspan><tspan x="104.6" y="0" class="st98" style="font-family:'Inconsolata-Bold'; font-size:16px;"> </tspan><tspan x="108" y="0" class="st98" style="font-family:'AndaleMono'; font-size:16px;">&quot;open&quot;,</tspan><tspan x="175.2" y="0" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;"> Windows: </tspan><tspan x="259.5" y="0" class="st98" style="font-family:'AndaleMono'; font-size:16px;">&quot;start&quot;</tspan><tspan x="326.7" y="0" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">, Others: </tspan><tspan x="398.9" y="0" class="st98" style="font-family:'AndaleMono'; font-size:16px;">&quot;xdg-open&quot;</tspan><tspan x="0" y="34" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">Type: String</tspan></text>
+ </g>
+ <circle class="st98" cx="1609" cy="903" r="4"/>
+ <circle class="st98" cx="1609" cy="938" r="4"/>
+ <g>
+ <text transform="matrix(1 0 0 1 1619.2998 1033.7588)"><tspan x="0" y="0" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">Default: https://registry.npmjs.org/</tspan><tspan x="0" y="34" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">Type: url</tspan></text>
+ </g>
+ <rect x="2022" y="893" class="st132" width="94" height="25"/>
+ <circle class="st98" cx="1608" cy="1027" r="4"/>
+ <circle class="st98" cx="1608" cy="1062" r="4"/>
+ <g>
+ <text transform="matrix(1 0 0 1 1608.1631 1207.9082)"><tspan x="0" y="0" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">npm-docs</tspan><tspan x="0" y="29" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">npm-view</tspan><tspan x="0" y="58" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">npm-publish</tspan><tspan x="0" y="87" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">npm-registry</tspan><tspan x="0" y="116" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">npm-config</tspan><tspan x="0" y="145" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">npm-config</tspan><tspan x="0" y="174" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">npmrc</tspan><tspan x="0" y="203" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">package.json</tspan></text>
+ </g>
+ <line class="st2" x1="1600" y1="1175" x2="2447.5" y2="1175"/>
+ <path class="st98" d="M2367.6,586h-760.3c-1.9,0-3.4-1.5-3.4-3.4V436.4c0-1.9,1.5-3.4,3.4-3.4h760.3c1.9,0,3.4,1.5,3.4,3.4v146.3
+ C2371,584.5,2369.5,586,2367.6,586z"/>
+ <text transform="matrix(1 0 0 1 1630.2207 492.5747)"><tspan x="0" y="0" class="st8" style="font-family:'AndaleMono'; font-size:30px;">npm bugs [&lt;pkgname&gt;]</tspan><tspan x="0" y="60" class="st8" style="font-family:'AndaleMono'; font-size:30px;">aliases: issues</tspan></text>
+ <rect x="2100" y="1566" class="st132" width="247" height="30"/>
+ <text transform="matrix(1 0 0 1 1633.667 1551.9297)"><tspan x="0" y="0" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;"> Found a typo?</tspan><tspan x="147.4" y="0" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;"> Let us know!</tspan><tspan x="0" y="34" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">The current stable version of npm is here. To upgrade run: </tspan><tspan x="468.1" y="34" class="st98" style="font-family:'AndaleMono'; font-size:16px;">npm install npm@latest -g</tspan><tspan x="0" y="68" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">To report bugs or submit feature requests for the docs, please post </tspan><tspan x="537" y="68" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">here</tspan><tspan x="573.8" y="68" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">. </tspan><tspan x="0" y="102" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">Submit npm issues</tspan><tspan x="151.9" y="102" style="font-family:'Poppins-Regular'; font-size:16px;"> </tspan><tspan x="156.2" y="102" class="st14" style="font-family:'Poppins-SemiBold'; font-size:16px;">here.</tspan></text>
+ <rect x="1102" y="201" class="st138" width="330" height="1207"/>
+ <linearGradient id="SVGID_94_" gradientUnits="userSpaceOnUse" x1="1608.9974" y1="269.3333" x2="1628.4839" y2="269.3333">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_95_" gradientUnits="userSpaceOnUse" x1="1608.7565" y1="269.3333" x2="1628.7249" y2="269.3333">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st139" d="M1621.4,275.1c0,0-0.1,0-0.1,0l-12-1.2c-0.2,0-0.3-0.1-0.3-0.3c0,0,0-0.1,0-0.1l6.9-9.9
+ c0.1-0.1,0.2-0.1,0.3-0.1l12,1.2c0.2,0,0.3,0.1,0.3,0.3c0,0,0,0.1,0,0.1l-6.9,9.9C1621.5,275.1,1621.4,275.1,1621.4,275.1z"/>
+ <linearGradient id="SVGID_96_" gradientUnits="userSpaceOnUse" x1="1608.9963" y1="279.8445" x2="1626.688" y2="279.8445">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_97_" gradientUnits="userSpaceOnUse" x1="1608.7554" y1="279.8445" x2="1626.929" y2="279.8445">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st140" d="M1626.5,286.2c0,0-0.1,0-0.1,0l-12-1.1c-0.1,0-0.2-0.1-0.2-0.2l-5.1-11.1c-0.1-0.1,0-0.3,0.1-0.4
+ c0.1-0.1,0.3,0,0.4,0.1l5.1,11l11.4,1.1L1621,275c-0.1-0.1,0-0.3,0.1-0.4c0.1-0.1,0.3,0,0.4,0.1l5.1,11.1
+ C1626.7,286,1626.7,286.2,1626.5,286.2z"/>
+ <linearGradient id="SVGID_98_" gradientUnits="userSpaceOnUse" x1="1626.1332" y1="275.4837" x2="1633.6021" y2="275.4837">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_99_" gradientUnits="userSpaceOnUse" x1="1625.8922" y1="275.4837" x2="1633.843" y2="275.4837">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st141" d="M1626.5,286.2c-0.1,0-0.2,0-0.3,0c-0.1-0.1-0.2-0.3-0.1-0.4l6.8-9.8l-5-11c-0.1-0.1,0-0.3,0.1-0.4
+ s0.3,0,0.4,0.1l5.1,11.1c0,0.1,0,0.2,0,0.3l-6.9,9.9C1626.6,286.2,1626.6,286.2,1626.5,286.2z"/>
+ <path class="st120" d="M-1533,3205"/>
+ <path class="st120" d="M-1915.5,3050.5"/>
+ <path class="st142" d="M-2011.4,3318.6c-0.1,0-0.2-0.1-0.3-0.2l-18.2-21.2c-0.2-0.3-0.2-0.7,0.1-0.9c0.1-0.1,0.2-0.1,0.3-0.1
+ l27.4-5.5c0.2,0,0.5,0,0.6,0.2l18.2,21.2c0.2,0.3,0.2,0.7-0.1,0.9c-0.1,0.1-0.2,0.1-0.3,0.1l-27.4,5.5
+ C-2011.2,3318.7-2011.3,3318.6-2011.4,3318.6z"/>
+ <path class="st14" d="M-2011.8,3317.8c0.1-0.3,0.5-0.5,0.8-0.4c0.3,0.1,0.5,0.5,0.4,0.8l-9.2,26.8c-0.1,0.3-0.5,0.5-0.8,0.4
+ c-0.1,0-0.2-0.1-0.3-0.2l-18.3-21.1c-0.1-0.2-0.2-0.4-0.1-0.6l9.3-26.9c0.1-0.3,0.5-0.5,0.8-0.4c0.3,0.1,0.5,0.5,0.4,0.8"/>
+ <path class="st14" d="M-2020.6,3345.4c-0.2-0.1-0.4-0.3-0.4-0.5c-0.1-0.3,0.2-0.7,0.5-0.8l27.1-5.4l9.1-26.4
+ c0.1-0.3,0.5-0.5,0.8-0.4c0.3,0.1,0.5,0.5,0.4,0.8l-9.2,26.8c-0.1,0.2-0.3,0.4-0.5,0.4l-27.4,5.5
+ C-2020.4,3345.5-2020.5,3345.5-2020.6,3345.4z"/>
+ <linearGradient id="SVGID_100_" gradientUnits="userSpaceOnUse" x1="-1519.4111" y1="3128.575" x2="-1489.4088" y2="3128.575">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_101_" gradientUnits="userSpaceOnUse" x1="-1519.7821" y1="3128.575" x2="-1489.0377" y2="3128.575">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st143" d="M-1500.3,3137.5c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.4-0.2-0.4-0.5c0-0.1,0-0.1,0.1-0.2l10.6-15.2
+ c0.1-0.1,0.2-0.2,0.4-0.2l18.5,1.8c0.2,0,0.4,0.2,0.4,0.5c0,0.1,0,0.1-0.1,0.2l-10.7,15.2
+ C-1500.2,3137.4-1500.2,3137.5-1500.3,3137.5z"/>
+ <linearGradient id="SVGID_102_" gradientUnits="userSpaceOnUse" x1="-1519.4128" y1="3144.7585" x2="-1492.1738" y2="3144.7585">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st144" d="M-1492.4,3154.6c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.3-0.1-0.3-0.2l-7.9-17.2c-0.1-0.2,0-0.5,0.2-0.6
+ c0.2-0.1,0.5,0,0.6,0.2l7.8,16.9l17.5,1.7l-7.6-16.5c-0.1-0.2,0-0.5,0.2-0.6s0.5,0,0.6,0.2l7.9,17.1
+ C-1492.1,3154.3-1492.2,3154.5-1492.4,3154.6z"/>
+ <linearGradient id="SVGID_103_" gradientUnits="userSpaceOnUse" x1="-1493.0281" y1="3138.0444" x2="-1481.5287" y2="3138.0444">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st145" d="M-1492.4,3154.6c-0.1,0.1-0.3,0-0.4,0c-0.2-0.1-0.2-0.4-0.1-0.6l10.5-15.1l-7.8-16.9c-0.1-0.2,0-0.5,0.2-0.6
+ c0.2-0.1,0.5,0,0.6,0.2l7.9,17.1c0.1,0.1,0.1,0.3,0,0.4l-10.6,15.2C-1492.3,3154.5-1492.4,3154.6-1492.4,3154.6z"/>
+ <path class="st120" d="M-661.5,2749"/>
+ <path class="st92" d="M-721.1,3182.6c-0.1,0-0.2,0-0.3,0l-26.6-8.5c-0.3-0.1-0.5-0.5-0.4-0.8c0-0.1,0.1-0.2,0.2-0.3l20.5-19.1
+ c0.2-0.2,0.4-0.2,0.6-0.1l26.6,8.5c0.3,0.1,0.5,0.5,0.4,0.8c0,0.1-0.1,0.2-0.2,0.3l-20.5,19C-720.9,3182.6-721,3182.6-721.1,3182.6
+ z"/>
+ <path class="st92" d="M-714.9,3210.3c-0.1,0-0.2,0-0.3,0l-26.6-8.4c-0.2-0.1-0.4-0.2-0.4-0.5l-6.2-27.7c-0.1-0.3,0.1-0.7,0.5-0.8
+ c0.3-0.1,0.7,0.1,0.8,0.5l6.1,27.4l25.2,8l-5.9-26.6c-0.1-0.3,0.1-0.7,0.5-0.8c0.3-0.1,0.7,0.1,0.8,0.5l6.2,27.7
+ C-714.3,3209.9-714.6,3210.2-714.9,3210.3z"/>
+ <path class="st92" d="M-714.9,3210.3c-0.2,0-0.5,0-0.6-0.2c-0.2-0.3-0.2-0.7,0-0.9l20.2-18.8l-6.1-27.3c-0.1-0.3,0.1-0.7,0.5-0.8
+ c0.3-0.1,0.7,0.1,0.8,0.5l6.2,27.6c0.1,0.2,0,0.5-0.2,0.6l-20.5,19.1C-714.7,3210.2-714.8,3210.3-714.9,3210.3z"/>
+ <path class="st93" d="M-1077.9,3384.1c-0.1-0.1-0.2-0.1-0.2-0.2l-10.2-23.9c-0.1-0.3,0-0.7,0.3-0.8c0.1,0,0.2-0.1,0.3,0l25.9,2.9
+ c0.2,0,0.4,0.2,0.5,0.4l10.1,24c0.1,0.3,0,0.7-0.3,0.8c-0.1,0-0.2,0.1-0.3,0l-25.8-2.9C-1077.7,3384.2-1077.8,3384.1-1077.9,3384.1
+ z"/>
+ <path class="st93" d="M-1093.6,3405.2c-0.1-0.1-0.2-0.1-0.2-0.2l-10.2-23.9c-0.1-0.2-0.1-0.4,0.1-0.6l15.8-21.2
+ c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,0.3,0.6,0.1,0.8l-15.6,20.9l9.6,22.6l15.1-20.3c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,25.3,4,25.1,4.3
+ l-40.7,17.7C-1093,3405.4-1093.4,3405.4-1093.6,3405.2z"/>
+ <path class="st93" d="M-1052.2,3386.1c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,0.3,0.6,0.1,0.8l-15.7,21.1c-0.1,0.2-0.3,0.3-0.5,0.2
+ l-25.9-2.9c-0.1,0-0.2-0.1-0.3-0.1c-0.2-0.1-0.3-0.3-0.2-0.5c0-0.3,0.3-0.6,0.7-0.5"/>
+ <g>
+ <rect x="-1800.9" y="2738" class="st47" width="951.9" height="118.3"/>
+ <text transform="matrix(0.9755 0 0 1 -1776.0029 2755.7178)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy</tspan><tspan x="-25.5" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="-20.2" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">nibh</tspan><tspan x="32.6" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="37.9" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">euismod</tspan><tspan x="142.7" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="148.1" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">Lorem</tspan><tspan x="222.2" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="227.6" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">ipsum</tspan><tspan x="302.2" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="307.5" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">dolor</tspan><tspan x="369.2" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="374.5" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">sit</tspan><tspan x="401.6" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="407" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">amet,</tspan><tspan x="476.2" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="481.5" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">tetuer</tspan><tspan x="552.9" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="558.2" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">adipiscing</tspan><tspan x="683.1" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="688.4" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">elit,</tspan><tspan x="728.5" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="733.8" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">sed</tspan><tspan x="777.4" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="782.7" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">diam</tspan><tspan x="845.7" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px; letter-spacing:-1;"> </tspan><tspan x="851" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">nonum</tspan><tspan x="937.1" y="50" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">-</tspan><tspan x="393.3" y="100" class="st8" style="font-family:'Poppins-Regular'; font-size:24px;">my nibmod </tspan></text>
+ </g>
+ <g>
+ <rect x="-1330.3" y="2917.8" class="st14" width="23.3" height="6.1"/>
+ </g>
+ <linearGradient id="SVGID_104_" gradientUnits="userSpaceOnUse" x1="-1689.8535" y1="344.75" x2="-1688.6465" y2="344.75">
+ <stop offset="0" style="stop-color:#F15A24"/>
+ <stop offset="1" style="stop-color:#FF00FF"/>
+ </linearGradient>
+ <line class="st146" x1="-1689" y1="345" x2="-1689.5" y2="344.5"/>
+ <line class="st40" x1="-1643.1" y1="277.8" x2="-1645.8" y2="277.8"/>
+ <line class="st40" x1="-1674.8" y1="305.1" x2="-1677.5" y2="305.1"/>
+ <line class="st40" x1="-1478.2" y1="336.2" x2="-1480.9" y2="336.2"/>
+ <g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="771" height="491" xlink:href="77400133F1DEE2CD.png" transform="matrix(1 0 0 1 -1800 241)">
+ </image>
+ <g>
+ <path class="st98" d="M-1028.1,259.7v468.9c0,2.2-1.8,4-4,4h-748.7c-2.2,0-4-1.8-4-4V259.7c0-1.7,1.3-3,3-3h750.6
+ C-1029.4,256.7-1028.1,258-1028.1,259.7z"/>
+ <path class="st81" d="M-1028.1,259.7v468.9c0,2.2-1.8,4-4,4h-748.7c-2.2,0-4-1.8-4-4V259.7c0-1.7,1.3-3,3-3h750.6
+ C-1029.4,256.7-1028.1,258-1028.1,259.7z"/>
+ </g>
+ </g>
+ <g>
+ <path class="st8" d="M-1028.1,260v21.7c0,1.6-1.4,3-3,3h-750.6c-1.7,0-3-1.4-3-3V260c0-1.7,1.3-3,3-3h750.6
+ C-1029.4,257-1028.1,258.3-1028.1,260z"/>
+ <path class="st62" d="M-1028.1,260v21.7c0,1.6-1.4,3-3,3h-750.6c-1.7,0-3-1.4-3-3V260c0-1.7,1.3-3,3-3h750.6
+ C-1029.4,257-1028.1,258.3-1028.1,260z"/>
+ </g>
+ </g>
+ <g>
+ <line class="st40" x1="-1642.6" y1="352.7" x2="-1645.4" y2="352.7"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="770" height="490" xlink:href="77400133F1DEE2C3.png" transform="matrix(1 0 0 1 -1761 297)">
+ </image>
+ <g>
+ <path class="st98" d="M-989.8,315.4v468.9c0,2.2-1.8,4-4,4h-748.7c-2.2,0-4-1.8-4-4V315.4c0-1.7,1.3-3,3-3h750.6
+ C-991.1,312.4-989.8,313.7-989.8,315.4z"/>
+ <path class="st99" d="M-989.8,315.4v468.9c0,2.2-1.8,4-4,4h-748.7c-2.2,0-4-1.8-4-4V315.4c0-1.7,1.3-3,3-3h750.6
+ C-991.1,312.4-989.8,313.7-989.8,315.4z"/>
+ </g>
+ </g>
+ <g>
+ <path class="st8" d="M-990.1,315v21.7c0,1.6-1.3,3-3,3h-750.6c-1.7,0-3-1.4-3-3V315c0-1.7,1.3-3,3-3h750.6
+ C-991.4,312-990.1,313.3-990.1,315z"/>
+ <path class="st62" d="M-990.1,315v21.7c0,1.6-1.3,3-3,3h-750.6c-1.7,0-3-1.4-3-3V315c0-1.7,1.3-3,3-3h750.6
+ C-991.4,312-990.1,313.3-990.1,315z"/>
+ </g>
+ </g>
+ <g>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="771" height="490" xlink:href="77400133F1DEE2C5.png" transform="matrix(1 0 0 1 -1727 357)">
+ </image>
+ <g>
+ <path class="st98" d="M-955.4,373.8v472.9c0,0.5-0.4,1-1,1h-754.7c-0.5,0-1-0.4-1-1V373.8c0-1.1,0.9-2,2-2h752.6
+ C-956.3,371.8-955.4,372.7-955.4,373.8z"/>
+ <path class="st99" d="M-955.4,373.8v472.9c0,0.5-0.4,1-1,1h-754.7c-0.5,0-1-0.4-1-1V373.8c0-1.1,0.9-2,2-2h752.6
+ C-956.3,371.8-955.4,372.7-955.4,373.8z"/>
+ </g>
+ </g>
+ <g>
+ <g>
+ <rect x="-1221.3" y="524.8" class="st14" width="23.3" height="6.1"/>
+ </g>
+ <g>
+ <polygon class="st14" points="-1611.6,518.7 -1615.5,514 -1604.3,504.4 -1615.5,494.8 -1611.6,490.1 -1594.8,504.4 "/>
+ </g>
+ <rect x="-1616.7" y="591.4" class="st47" width="551.7" height="304.6"/>
+ <text transform="matrix(1 0 0 1 -1616.7363 606.229)"><tspan x="0" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">The</tspan><tspan x="40.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="52.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">intelligent</tspan><tspan x="165.8" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="178.1" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">package</tspan><tspan x="276.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="288.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">manager</tspan><tspan x="391.3" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="403.5" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">for</tspan><tspan x="434.2" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="446.4" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">the</tspan><tspan x="482.8" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:7;"> </tspan><tspan x="495.1" y="0" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Node </tspan><tspan x="4.7" y="31" class="st8" style="font-family:'Poppins-Medium'; font-size:20px; letter-spacing:1;">Javascript Platform. Install stuff and get coding!</tspan></text>
+ <g>
+ <rect x="-1614.7" y="691" class="st14" width="230" height="59.2"/>
+ <rect x="-1608.8" y="696.8" class="st19" width="230" height="59.2"/>
+
+ <text transform="matrix(1 0 0 1 -1557.8589 729.4116)" class="st8" style="font-family:'Poppins-Bold'; font-size:20px; letter-spacing:1;">Read Docs</text>
+ </g>
+ </g>
+ <g>
+ <path class="st8" d="M-955.1,375v24.7c0,0,0,0,0,0h-756.6c0,0,0,0,0,0V375c0-1.7,1.3-3,3-3h750.6
+ C-956.4,372-955.1,373.3-955.1,375z"/>
+ <path class="st62" d="M-955.1,375v24.7c0,0,0,0,0,0h-756.6c0,0,0,0,0,0V375c0-1.7,1.3-3,3-3h750.6
+ C-956.4,372-955.1,373.3-955.1,375z"/>
+ </g>
+ <line class="st66" x1="-1695.4" y1="381.7" x2="-1687" y2="390.6"/>
+ <line class="st66" x1="-1695.7" y1="390.3" x2="-1686.7" y2="381.9"/>
+ <line class="st66" x1="-1735.4" y1="321.7" x2="-1727" y2="330.6"/>
+ <line class="st66" x1="-1735.7" y1="330.3" x2="-1726.7" y2="321.9"/>
+ <line class="st66" x1="-1772.4" y1="266.7" x2="-1764" y2="275.6"/>
+ <line class="st66" x1="-1772.7" y1="275.3" x2="-1763.7" y2="266.9"/>
+ </g>
+ <path class="st120" d="M-2068,620"/>
+ <path class="st120" d="M-2050.5,637.5"/>
+ <path class="st14" d="M-1948.4,817.6c-0.1,0-0.2-0.1-0.3-0.2l-18.2-21.2c-0.2-0.3-0.2-0.7,0.1-0.9c0.1-0.1,0.2-0.1,0.3-0.1
+ l27.4-5.5c0.2,0,0.5,0,0.6,0.2l18.2,21.2c0.2,0.3,0.2,0.7-0.1,0.9c-0.1,0.1-0.2,0.1-0.3,0.1l-27.4,5.5
+ C-1948.2,817.7-1948.3,817.6-1948.4,817.6z"/>
+ <path class="st14" d="M-1948.8,816.8c0.1-0.3,0.5-0.5,0.8-0.4s0.5,0.5,0.4,0.8l-9.2,26.8c-0.1,0.3-0.5,0.5-0.8,0.4
+ c-0.1,0-0.2-0.1-0.3-0.2l-18.3-21.1c-0.1-0.2-0.2-0.4-0.1-0.6l9.3-26.9c0.1-0.3,0.5-0.5,0.8-0.4c0.3,0.1,0.5,0.5,0.4,0.8"/>
+ <path class="st14" d="M-1957.6,844.4c-0.2-0.1-0.4-0.3-0.4-0.5c-0.1-0.3,0.2-0.7,0.5-0.8l27.1-5.4l9.1-26.4
+ c0.1-0.3,0.5-0.5,0.8-0.4s0.5,0.5,0.4,0.8l-9.2,26.8c-0.1,0.2-0.3,0.4-0.5,0.4l-27.4,5.5C-1957.4,844.5-1957.5,844.5-1957.6,844.4z
+ "/>
+ <linearGradient id="SVGID_105_" gradientUnits="userSpaceOnUse" x1="-1911.4111" y1="543.5751" x2="-1881.4088" y2="543.5751">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_106_" gradientUnits="userSpaceOnUse" x1="-1911.7821" y1="543.5751" x2="-1881.0377" y2="543.5751">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st147" d="M-1892.3,552.5c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.4-0.2-0.4-0.5c0-0.1,0-0.1,0.1-0.2l10.6-15.2
+ c0.1-0.1,0.2-0.2,0.4-0.2l18.5,1.8c0.2,0,0.4,0.2,0.4,0.5c0,0.1,0,0.1-0.1,0.2l-10.7,15.2C-1892.2,552.4-1892.2,552.5-1892.3,552.5
+ z"/>
+ <linearGradient id="SVGID_107_" gradientUnits="userSpaceOnUse" x1="-1911.4128" y1="559.7586" x2="-1884.1738" y2="559.7586">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_108_" gradientUnits="userSpaceOnUse" x1="-1911.7838" y1="559.7586" x2="-1883.8027" y2="559.7586">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st148" d="M-1884.4,569.6c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.3-0.1-0.3-0.2l-7.9-17.2c-0.1-0.2,0-0.5,0.2-0.6
+ c0.2-0.1,0.5,0,0.6,0.2l7.8,16.9l17.5,1.7l-7.6-16.5c-0.1-0.2,0-0.5,0.2-0.6c0.2-0.1,0.5,0,0.6,0.2l7.9,17.1
+ C-1884.1,569.3-1884.2,569.5-1884.4,569.6z"/>
+ <linearGradient id="SVGID_109_" gradientUnits="userSpaceOnUse" x1="-1885.0281" y1="553.0445" x2="-1873.5287" y2="553.0445">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_110_" gradientUnits="userSpaceOnUse" x1="-1885.399" y1="553.0445" x2="-1873.1577" y2="553.0445">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st149" d="M-1884.4,569.6c-0.1,0.1-0.3,0-0.4,0c-0.2-0.1-0.2-0.4-0.1-0.6l10.5-15.1l-7.8-16.9c-0.1-0.2,0-0.5,0.2-0.6
+ c0.2-0.1,0.5,0,0.6,0.2l7.9,17.1c0.1,0.1,0.1,0.3,0,0.4l-10.6,15.2C-1884.3,569.5-1884.4,569.6-1884.4,569.6z"/>
+ <path class="st92" d="M-2070.3,286.8c0.1,0,0.1,0.1,0.2,0.2l9.2,16.1c0.1,0.2,0,0.5-0.2,0.6c-0.1,0-0.1,0.1-0.2,0.1l-18.6,0.1
+ c-0.2,0-0.3-0.1-0.4-0.2l-9.2-16.2c-0.1-0.2,0-0.5,0.2-0.6c0.1,0,0.1-0.1,0.2-0.1l18.6-0.1
+ C-2070.4,286.7-2070.4,286.8-2070.3,286.8z"/>
+ <path class="st92" d="M-2070.1,287.4c-0.1,0.2-0.4,0.3-0.6,0.2c-0.2-0.1-0.3-0.4-0.2-0.6l9.4-16.3c0.1-0.2,0.4-0.3,0.6-0.2
+ c0.1,0,0.1,0.1,0.2,0.2l9.2,16.1c0.1,0.1,0.1,0.3,0,0.4l-9.4,16.4c-0.1,0.2-0.4,0.3-0.6,0.2c-0.2-0.1-0.3-0.4-0.2-0.6"/>
+ <path class="st92" d="M-2060.9,270.5c0.1,0.1,0.2,0.2,0.2,0.4c0,0.2-0.2,0.4-0.4,0.4l-18.4,0.1l-9.3,16.1c-0.1,0.2-0.4,0.3-0.6,0.2
+ s-0.3-0.4-0.2-0.6l9.4-16.3c0.1-0.1,0.2-0.2,0.4-0.2l18.6-0.1C-2061,270.4-2060.9,270.4-2060.9,270.5z"/>
+ <g>
+
+ <image style="overflow:visible;opacity:0.2;" width="356" height="93" xlink:href="77400133F1DEE2C7.png" transform="matrix(1 0 0 1 -1583.5894 461.4106)">
+ </image>
+ <g>
+ <g>
+ <path class="st8" d="M-1582.4,530.1v-45.8h10.8v4.7c1.5-1.7,3.3-3.1,5.4-4.1c2.1-1,4.2-1.6,6.3-1.6c2.2,0,4.3,0.3,6.1,1
+ c1.8,0.7,3.4,1.8,4.7,3.3c1.3,1.5,2.3,3.5,3,5.9c0.7,2.4,1.1,5.3,1.1,8.7v27.7h-10.5v-27.6c0-1.8-0.2-3.3-0.5-4.6
+ c-0.3-1.3-0.8-2.3-1.3-3.1c-0.6-0.8-1.2-1.4-2-1.8c-0.8-0.4-1.6-0.6-2.6-0.6c-1.3,0-2.6,0.3-3.8,0.8c-1.2,0.6-2.2,1.3-3.1,2.3
+ c-0.9,1-1.5,2.2-2,3.6c-0.5,1.4-0.7,2.9-0.7,4.6v26.5H-1582.4z"/>
+ <path class="st8" d="M-1531.3,484.3h10.3v4.7c0.7-1,1.5-1.9,2.4-2.6c0.9-0.7,1.8-1.3,2.7-1.8c0.9-0.5,1.9-0.8,2.8-1
+ c1-0.2,1.9-0.3,2.8-0.3c2.6,0,5.1,0.5,7.4,1.6c2.3,1,4.3,2.6,6,4.7s3.1,4.7,4.1,7.8c1,3.1,1.5,6.8,1.5,11.1
+ c0,3.9-0.5,7.2-1.5,10.1c-1,2.9-2.4,5.3-4.1,7.2c-1.7,1.9-3.7,3.4-6,4.4s-4.7,1.5-7.2,1.5c-1.8,0-3.7-0.4-5.6-1.2
+ c-1.9-0.8-3.5-1.9-4.7-3.3v19.4h-10.7L-1531.3,484.3z M-1520.5,506.8c0,2.8,0.2,5.2,0.6,7.3c0.4,2,1,3.7,1.7,4.9
+ c0.7,1.2,1.6,2.2,2.7,2.7c1.1,0.6,2.3,0.9,3.6,0.9c1.1,0,2.2-0.3,3.3-0.8c1.1-0.5,2.2-1.4,3.2-2.5c1-1.1,1.7-2.6,2.3-4.5
+ c0.6-1.9,0.9-4.2,0.9-6.9c0-5-0.9-8.8-2.6-11.5c-1.7-2.7-4.2-4-7.5-4c-1.7,0-3.1,0.4-4.2,1.2c-1.1,0.8-1.9,1.8-2.6,3.2
+ c-0.6,1.3-1.1,2.9-1.3,4.6C-1520.4,503.1-1520.5,504.9-1520.5,506.8z"/>
+ <path class="st8" d="M-1481.7,530.1v-46.3h9.2v2.8c1.4-1.5,2.8-2.6,4.2-3.3c1.4-0.7,2.7-1,4-1c0.6,0,1.2,0.1,1.9,0.3
+ c0.7,0.2,1.3,0.5,2,0.9c0.6,0.4,1.3,1,1.9,1.7c0.6,0.7,1.1,1.6,1.6,2.6c1.1-1.8,2.5-3.1,4.1-4.1c1.7-0.9,3.3-1.4,5-1.4
+ c1.7,0,3.1,0.3,4.3,0.9c1.1,0.6,2,1.5,2.7,2.6c0.7,1.2,1.2,2.6,1.5,4.4c0.3,1.7,0.4,3.7,0.4,6v33.8h-9.9v-32
+ c0-2.5-0.2-4.4-0.6-5.5c-0.4-1.1-1.2-1.7-2.2-1.7c-2.4,0-3.6,3-3.6,9v30.1h-9.9v-31.5c0-1.6-0.1-2.9-0.2-3.9s-0.4-1.7-0.7-2.3
+ c-0.3-0.6-0.6-0.9-0.9-1.1c-0.3-0.2-0.6-0.3-1-0.3c-0.6,0-1.1,0.1-1.6,0.4c-0.5,0.3-0.9,0.7-1.2,1.4c-0.3,0.7-0.6,1.6-0.8,2.7
+ c-0.2,1.1-0.3,2.6-0.3,4.3v30.4H-1481.7z"/>
+ <path class="st8" d="M-1344.2,500.4c-0.3-0.1-0.4-0.2-0.6-0.4c-0.1-0.2-0.2-0.4-0.3-0.6c-0.1-0.2-0.1-0.4-0.2-0.7
+ c-0.1-0.3-0.1-0.6-0.2-0.8c-0.9-1.5-2.2-2.8-3.8-3.8c-1.6-1-3.6-1.6-6-1.6c-1.6,0-3.1,0.4-4.5,1.1c-1.4,0.7-2.7,1.7-3.8,3
+ c-1.1,1.3-1.9,2.8-2.5,4.6c-0.6,1.8-0.9,3.7-0.9,5.9c0,2.2,0.3,4.2,0.9,6c0.6,1.8,1.4,3.4,2.4,4.8c1.1,1.4,2.3,2.5,3.7,3.2
+ c1.4,0.8,3,1.2,4.8,1.2c0.9,0,1.8-0.1,2.7-0.3c0.9-0.2,1.9-0.5,2.9-1c1-0.5,1.9-1.1,2.9-1.9c0.9-0.8,1.8-1.7,2.7-2.8l6.2,7.4
+ c-2.6,2.9-5.3,5-8.3,6.2c-3,1.3-6.2,1.9-9.6,1.9c-3.3,0-6.2-0.6-9-1.8c-2.7-1.2-5.1-2.9-7-5c-1.9-2.1-3.5-4.7-4.6-7.6
+ c-1.1-2.9-1.7-6.1-1.7-9.6c0-3.4,0.5-6.6,1.6-9.6c1.1-3,2.6-5.5,4.6-7.7c2-2.2,4.4-3.9,7.2-5.1c2.8-1.3,5.8-1.9,9.2-1.9
+ c1.8,0,3.6,0.2,5.4,0.6c1.8,0.4,3.4,0.9,4.9,1.7c1.5,0.7,2.9,1.6,4.2,2.7c1.3,1.1,2.4,2.4,3.3,3.8L-1344.2,500.4z"/>
+ <path class="st8" d="M-1322.9,463.9h22.4v57.7h12.2v8.5h-35.2v-8.5h12.2v-49.1h-11.7V463.9z"/>
+ <path class="st8" d="M-1268.5,484.3h20.9v37.3h9.9v8.5h-31.3v-8.5h10.8v-28.7h-10.3V484.3z M-1252.8,463.8
+ c0.9,0,1.8,0.2,2.6,0.5c0.8,0.3,1.5,0.8,2.2,1.4c0.6,0.6,1.1,1.3,1.4,2c0.3,0.8,0.5,1.6,0.5,2.4c0,0.9-0.2,1.7-0.5,2.5
+ c-0.4,0.8-0.8,1.5-1.4,2c-0.6,0.6-1.3,1-2.2,1.3c-0.8,0.3-1.7,0.5-2.6,0.5c-0.9,0-1.8-0.2-2.6-0.5c-0.8-0.3-1.5-0.8-2.2-1.3
+ c-0.6-0.6-1.1-1.2-1.4-2s-0.5-1.6-0.5-2.5c0-0.8,0.1-1.5,0.4-2.3c0.3-0.7,0.7-1.4,1.2-2c0.5-0.6,1.2-1.1,2.1-1.5
+ C-1254.9,464-1253.9,463.8-1252.8,463.8z"/>
+ </g>
+ </g>
+ </g>
+ <path class="st150" d="M1569.9,1955.1"/>
+ <path class="st151" d="M1202.5,2029.2c-0.1,0-0.1-0.1-0.2-0.1l-11-12.7c-0.1-0.2-0.1-0.4,0-0.5c0.1,0,0.1-0.1,0.2-0.1l16.5-3.3
+ c0.1,0,0.3,0,0.4,0.1l11,12.8c0.1,0.2,0.1,0.4,0,0.5c-0.1,0-0.1,0.1-0.2,0.1l-16.5,3.3C1202.6,2029.2,1202.5,2029.2,1202.5,2029.2z
+ "/>
+ <path class="st14" d="M1202.2,2028.7c0.1-0.2,0.3-0.3,0.5-0.2s0.3,0.3,0.2,0.5l-5.5,16.1c-0.1,0.2-0.3,0.3-0.5,0.2
+ c-0.1,0-0.1-0.1-0.2-0.1l-11-12.7c-0.1-0.1-0.1-0.2-0.1-0.4l5.6-16.1c0.1-0.2,0.3-0.3,0.5-0.2c0.2,0.1,0.3,0.3,0.2,0.5"/>
+ <path class="st14" d="M1196.9,2045.3c-0.1,0-0.2-0.2-0.3-0.3c0-0.2,0.1-0.4,0.3-0.5l16.3-3.3l5.5-15.9c0.1-0.2,0.3-0.3,0.5-0.2
+ s0.3,0.3,0.2,0.5l-5.5,16.1c0,0.1-0.2,0.2-0.3,0.3l-16.5,3.3C1197,2045.3,1197,2045.3,1196.9,2045.3z"/>
+ <linearGradient id="SVGID_111_" gradientUnits="userSpaceOnUse" x1="1578.0706" y1="1948.8536" x2="1596.0978" y2="1948.8536">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_112_" gradientUnits="userSpaceOnUse" x1="1577.8477" y1="1948.8536" x2="1596.3207" y2="1948.8536">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st152" d="M1589.5,1954.2c0,0-0.1,0-0.1,0l-11.1-1.1c-0.1,0-0.2-0.1-0.2-0.3c0,0,0-0.1,0-0.1l6.4-9.2
+ c0.1-0.1,0.1-0.1,0.2-0.1l11.1,1.1c0.1,0,0.2,0.1,0.2,0.3c0,0,0,0.1,0,0.1l-6.4,9.2C1589.6,1954.2,1589.6,1954.2,1589.5,1954.2z"/>
+ <linearGradient id="SVGID_113_" gradientUnits="userSpaceOnUse" x1="1578.0696" y1="1958.5778" x2="1594.4364" y2="1958.5778">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st153" d="M1594.3,1964.5c0,0-0.1,0-0.1,0l-11.1-1.1c-0.1,0-0.2-0.1-0.2-0.1l-4.7-10.3c-0.1-0.1,0-0.3,0.1-0.3
+ c0.1-0.1,0.3,0,0.3,0.1l4.7,10.2l10.5,1l-4.6-9.9c-0.1-0.1,0-0.3,0.1-0.3c0.1-0.1,0.3,0,0.3,0.1l4.7,10.3
+ C1594.5,1964.3,1594.4,1964.4,1594.3,1964.5z"/>
+ <linearGradient id="SVGID_114_" gradientUnits="userSpaceOnUse" x1="1593.9231" y1="1954.5435" x2="1600.8326" y2="1954.5435">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st154" d="M1594.3,1964.5c-0.1,0-0.2,0-0.3,0c-0.1-0.1-0.1-0.2-0.1-0.4l6.3-9l-4.7-10.1c-0.1-0.1,0-0.3,0.1-0.3
+ c0.1-0.1,0.3,0,0.3,0.1l4.7,10.3c0,0.1,0,0.2,0,0.3l-6.4,9.2C1594.4,1964.4,1594.3,1964.5,1594.3,1964.5z"/>
+ <path class="st92" d="M2570.8,2055.5c-0.1,0-0.1,0-0.2,0l-16-5.1c-0.2-0.1-0.3-0.3-0.3-0.5c0-0.1,0.1-0.1,0.1-0.2l12.3-11.5
+ c0.1-0.1,0.2-0.1,0.4-0.1l16,5.1c0.2,0.1,0.3,0.3,0.3,0.5c0,0.1-0.1,0.1-0.1,0.2l-12.3,11.4
+ C2570.9,2055.5,2570.8,2055.5,2570.8,2055.5z"/>
+ <path class="st92" d="M2574.5,2072.1c-0.1,0-0.1,0-0.2,0l-16-5.1c-0.1,0-0.2-0.1-0.3-0.3l-3.7-16.7c0-0.2,0.1-0.4,0.3-0.5
+ c0.2,0,0.4,0.1,0.5,0.3l3.7,16.4l15.2,4.8l-3.6-16c0-0.2,0.1-0.4,0.3-0.5c0.2,0,0.4,0.1,0.5,0.3l3.7,16.6
+ C2574.8,2071.9,2574.7,2072.1,2574.5,2072.1z"/>
+ <path class="st92" d="M2574.5,2072.1c-0.1,0-0.3,0-0.4-0.1c-0.1-0.2-0.1-0.4,0-0.5l12.1-11.3l-3.7-16.4c0-0.2,0.1-0.4,0.3-0.5
+ c0.2,0,0.4,0.1,0.5,0.3l3.7,16.6c0,0.1,0,0.3-0.1,0.4l-12.3,11.5C2574.6,2072.1,2574.5,2072.1,2574.5,2072.1z"/>
+ <path class="st93" d="M2321.2,1978.5c-0.1,0-0.1-0.1-0.1-0.1l-6.1-14.4c-0.1-0.2,0-0.4,0.2-0.5c0.1,0,0.1,0,0.2,0l15.5,1.7
+ c0.1,0,0.2,0.1,0.3,0.2l6.1,14.4c0.1,0.2,0,0.4-0.2,0.5c-0.1,0-0.1,0-0.2,0l-15.5-1.7C2321.3,1978.6,2321.2,1978.5,2321.2,1978.5z"
+ />
+ <path class="st93" d="M2311.7,1991.2c-0.1,0-0.1-0.1-0.1-0.1l-6.1-14.4c-0.1-0.1,0-0.3,0-0.4l9.5-12.7c0.1-0.2,0.3-0.2,0.5-0.1
+ s0.2,0.3,0.1,0.5l-9.4,12.6l5.8,13.6l9.1-12.2c0.1-0.2,0.3-0.2,0.5-0.1c0.2,0.1,15.2,2.4,15.1,2.6l-24.5,10.6
+ C2312.1,1991.3,2311.9,1991.3,2311.7,1991.2z"/>
+ <path class="st93" d="M2336.6,1979.7c0.1-0.2,0.3-0.2,0.5-0.1c0.2,0.1,0.2,0.3,0.1,0.5l-9.5,12.7c-0.1,0.1-0.2,0.2-0.3,0.1
+ l-15.5-1.7c-0.1,0-0.1,0-0.2-0.1c-0.1-0.1-0.2-0.2-0.1-0.3c0-0.2,0.2-0.3,0.4-0.3"/>
+ <text transform="matrix(1 0 0 1 1738.54 2055.5986)" class="st98" style="font-family:'Poppins-Regular'; font-size:16px;">Some footer text or something here </text>
+ <path class="st92" d="M-392.5,285.8l-9.2-16.1c0-0.1-0.1-0.1-0.2-0.2c-0.1,0-0.1,0-0.2-0.1c0,0,0,0,0,0l-18.6,0.1
+ c-0.2,0-0.3,0.1-0.4,0.2l-9.4,16.3c0,0,0,0,0,0.1c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0
+ l9.2,16.2c0.1,0.1,0.2,0.2,0.4,0.2l18.6-0.1c0,0,0,0,0,0c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1-0.1
+ c0,0,0,0,0-0.1c0,0,0,0,0,0l9.4-16.4C-392.4,286-392.4,285.9-392.5,285.8z M-429.3,285.8l8.9-15.4l17.6-0.1l-8.9,15.5L-429.3,285.8
+ z"/>
+ <linearGradient id="SVGID_115_" gradientUnits="userSpaceOnUse" x1="-166.5916" y1="30" x2="-110.4084" y2="30">
+ <stop offset="0" style="stop-color:#FB3B49"/>
+ <stop offset="0.9988" style="stop-color:#EC3B49"/>
+ </linearGradient>
+ <path class="st155" d="M-110.4,24.5c0-0.1,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0-0.1,0-0.1-0.1-0.1c0,0,0,0,0,0l-18.2-21.2
+ c-0.2-0.2-0.4-0.3-0.6-0.2l-27.4,5.5c0,0,0,0,0,0c-0.1,0-0.2,0.1-0.2,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0.1-0.1,0.1
+ c0,0,0,0.1-0.1,0.1c0,0,0,0,0,0l-9.3,26.9c-0.1,0.2,0,0.5,0.1,0.6l18.3,21.1c0.1,0.1,0.2,0.1,0.3,0.2c0.1,0,0.2,0,0.3,0
+ c0,0,0,0,0,0l27.4-5.5c0.2,0,0.4-0.2,0.5-0.4l9.2-26.8c0,0,0-0.1,0-0.1C-110.4,24.5-110.4,24.5-110.4,24.5z M-120.8,50.7l-26,5.2
+ l8.7-25.4l26-5.2L-120.8,50.7z"/>
+ <linearGradient id="SVGID_116_" gradientUnits="userSpaceOnUse" x1="-64.4846" y1="27" x2="-11.5153" y2="27">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st156" d="M-11.5,30c0,0,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0-0.1,0-0.1,0-0.2c0,0,0,0,0,0l-10.1-24
+ c-0.1-0.2-0.3-0.3-0.5-0.4L-48,2.4c0,0,0,0,0,0c-0.1,0-0.2,0-0.2,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0-0.1,0-0.1,0.1c0,0-0.1,0-0.1,0.1
+ c0,0,0,0,0,0l-15.8,21.2c-0.1,0.2-0.2,0.4-0.1,0.6l10.2,23.9c0,0.1,0.1,0.2,0.2,0.2c0.1,0.1,0.2,0.1,0.2,0.1c0,0,0,0,0,0l25.9,2.9
+ c0.2,0,0.4-0.1,0.5-0.2l15.7-21.1C-11.6,30.2-11.6,30.2-11.5,30C-11.6,30.1-11.6,30.1-11.5,30z M-16.4,30l2.1,0.2l-0.2,0.1
+ C-15,30.2-15.6,30.1-16.4,30z M-48.2,4.2l9.6,22.7l-14.9,20.1l-9.6-22.6L-48.2,4.2z"/>
+ <g class="st51">
+
+ <image style="overflow:visible;opacity:0.4;" width="64" height="65" xlink:href="77400133F1DEE2C2.png" transform="matrix(1 0 0 1 -5 -5)">
+ </image>
+ <g>
+ <linearGradient id="SVGID_117_" gradientUnits="userSpaceOnUse" x1="0.9599" y1="26.5" x2="51.0401" y2="26.5">
+ <stop offset="0" style="stop-color:#913FFF"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st157" d="M45.4,8.9C45.3,8.8,45.3,8.8,45.4,8.9c0-0.1-0.1-0.1-0.1-0.2c0,0-0.1-0.1-0.1-0.1c0,0,0,0-0.1-0.1
+ c0,0-0.1-0.1-0.1-0.1c0,0,0,0,0,0L20.5,0.6c-0.2-0.1-0.4,0-0.6,0.1L1.1,18.2c0,0,0,0,0,0C1.1,18.3,1,18.4,1,18.4c0,0,0,0,0,0
+ c0,0,0,0,0,0c0,0,0,0.1,0,0.1c0,0,0,0.1,0,0.1c0,0,0,0,0,0l5.7,25.5c0,0.2,0.2,0.4,0.4,0.4l24.4,7.8c0.1,0,0.2,0,0.3,0
+ c0.1,0,0.2-0.1,0.2-0.1c0,0,0,0,0,0l18.8-17.5c0.2-0.1,0.2-0.4,0.2-0.6L45.4,8.9z M7.7,43.6L2.3,19.5l23.1,7.4L30.9,51L7.7,43.6z
+ "/>
+ </g>
+ </g>
+ <linearGradient id="SVGID_118_" gradientUnits="userSpaceOnUse" x1="-380.942" y1="31.1228" x2="-353.7031" y2="31.1228">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_119_" gradientUnits="userSpaceOnUse" x1="-381.3131" y1="31.1228" x2="-353.3321" y2="31.1228">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st158" d="M-354,41c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.3-0.1-0.3-0.2l-7.9-17.2c-0.1-0.2,0-0.5,0.2-0.6
+ c0.2-0.1,0.5,0,0.6,0.2l7.8,16.9l17.5,1.7l-7.6-16.5c-0.1-0.2,0-0.5,0.2-0.6c0.2-0.1,0.5,0,0.6,0.2l7.9,17.1
+ C-353.6,40.6-353.7,40.9-354,41z"/>
+ <linearGradient id="SVGID_120_" gradientUnits="userSpaceOnUse" x1="-354.5573" y1="24.4087" x2="-343.058" y2="24.4087">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_121_" gradientUnits="userSpaceOnUse" x1="-354.9283" y1="24.4087" x2="-342.6869" y2="24.4087">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st159" d="M-354,41c-0.1,0.1-0.3,0-0.4,0c-0.2-0.1-0.2-0.4-0.1-0.6l10.5-15.1l-7.8-16.9c-0.1-0.2,0-0.5,0.2-0.6
+ c0.2-0.1,0.5,0,0.6,0.2l7.9,17.1c0.1,0.1,0.1,0.3,0,0.4l-10.6,15.2C-353.8,40.9-353.9,40.9-354,41z"/>
+ <linearGradient id="SVGID_122_" gradientUnits="userSpaceOnUse" x1="-380.9404" y1="14.9392" x2="-350.9381" y2="14.9392">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_123_" gradientUnits="userSpaceOnUse" x1="-381.3114" y1="14.9392" x2="-350.567" y2="14.9392">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st160" d="M-361.8,23.9c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.4-0.2-0.4-0.5c0-0.1,0-0.1,0.1-0.2l10.6-15.2
+ C-370.1,6-370,6-369.8,6l18.5,1.8c0.2,0,0.4,0.2,0.4,0.5c0,0.1,0,0.1-0.1,0.2l-10.7,15.2C-361.7,23.8-361.8,23.8-361.8,23.9z"/>
+ <g>
+ <path class="st120" d="M-1538.9,3708.2"/>
+ <path class="st142" d="M-2017.3,3821.8c-0.1,0-0.2-0.1-0.3-0.2l-18.2-21.2c-0.2-0.3-0.2-0.7,0.1-0.9c0.1-0.1,0.2-0.1,0.3-0.1
+ l27.4-5.5c0.2,0,0.5,0,0.6,0.2l18.2,21.2c0.2,0.3,0.2,0.7-0.1,0.9c-0.1,0.1-0.2,0.1-0.3,0.1l-27.4,5.5
+ C-2017.1,3821.8-2017.2,3821.8-2017.3,3821.8z"/>
+ <path class="st14" d="M-2017.7,3820.9c0.1-0.3,0.5-0.5,0.8-0.4c0.3,0.1,0.5,0.5,0.4,0.8l-9.2,26.8c-0.1,0.3-0.5,0.5-0.8,0.4
+ c-0.1,0-0.2-0.1-0.3-0.2l-18.3-21.1c-0.1-0.2-0.2-0.4-0.1-0.6l9.3-26.9c0.1-0.3,0.5-0.5,0.8-0.4s0.5,0.5,0.4,0.8"/>
+ <path class="st14" d="M-2026.5,3848.6c-0.2-0.1-0.4-0.3-0.4-0.5c-0.1-0.3,0.2-0.7,0.5-0.8l27.1-5.4l9.1-26.4
+ c0.1-0.3,0.5-0.5,0.8-0.4s0.5,0.5,0.4,0.8l-9.2,26.8c-0.1,0.2-0.3,0.4-0.5,0.4l-27.4,5.5
+ C-2026.3,3848.6-2026.4,3848.6-2026.5,3848.6z"/>
+ <linearGradient id="SVGID_124_" gradientUnits="userSpaceOnUse" x1="-1525.2891" y1="3631.7312" x2="-1495.2867" y2="3631.7312">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_125_" gradientUnits="userSpaceOnUse" x1="-1525.6602" y1="3631.7312" x2="-1494.9158" y2="3631.7312">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st161" d="M-1506.2,3640.6c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.4-0.2-0.4-0.5c0-0.1,0-0.1,0.1-0.2l10.6-15.2
+ c0.1-0.1,0.2-0.2,0.4-0.2l18.5,1.8c0.2,0,0.4,0.2,0.4,0.5c0,0.1,0,0.1-0.1,0.2l-10.7,15.2
+ C-1506.1,3640.6-1506.1,3640.6-1506.2,3640.6z"/>
+ <linearGradient id="SVGID_126_" gradientUnits="userSpaceOnUse" x1="-1525.2908" y1="3647.9148" x2="-1498.0518" y2="3647.9148">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st162" d="M-1498.3,3657.8c-0.1,0-0.1,0-0.2,0l-18.5-1.8c-0.2,0-0.3-0.1-0.3-0.2l-7.9-17.2c-0.1-0.2,0-0.5,0.2-0.6
+ s0.5,0,0.6,0.2l7.8,16.9l17.5,1.7l-7.6-16.5c-0.1-0.2,0-0.5,0.2-0.6s0.5,0,0.6,0.2l7.9,17.1
+ C-1498,3657.4-1498.1,3657.7-1498.3,3657.8z"/>
+ <linearGradient id="SVGID_127_" gradientUnits="userSpaceOnUse" x1="-1498.906" y1="3641.2007" x2="-1487.4066" y2="3641.2007">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st163" d="M-1498.3,3657.8c-0.1,0.1-0.3,0-0.4,0c-0.2-0.1-0.2-0.4-0.1-0.6l10.5-15.1l-7.8-16.9
+ c-0.1-0.2,0-0.5,0.2-0.6c0.2-0.1,0.5,0,0.6,0.2l7.9,17.1c0.1,0.1,0.1,0.3,0,0.4l-10.6,15.2
+ C-1498.2,3657.7-1498.2,3657.7-1498.3,3657.8z"/>
+ <path class="st92" d="M-727,3685.8c-0.1,0-0.2,0-0.3,0l-26.6-8.5c-0.3-0.1-0.5-0.5-0.4-0.8c0-0.1,0.1-0.2,0.2-0.3l20.5-19.1
+ c0.2-0.2,0.4-0.2,0.6-0.1l26.6,8.5c0.3,0.1,0.5,0.5,0.4,0.8c0,0.1-0.1,0.2-0.2,0.3l-20.5,19
+ C-726.8,3685.7-726.9,3685.8-727,3685.8z"/>
+ <path class="st92" d="M-720.8,3713.5c-0.1,0-0.2,0-0.3,0l-26.6-8.4c-0.2-0.1-0.4-0.2-0.4-0.5l-6.2-27.7c-0.1-0.3,0.1-0.7,0.5-0.8
+ c0.3-0.1,0.7,0.1,0.8,0.5l6.1,27.4l25.2,8l-5.9-26.6c-0.1-0.3,0.1-0.7,0.5-0.8c0.3-0.1,0.7,0.1,0.8,0.5l6.2,27.7
+ C-720.2,3713-720.4,3713.4-720.8,3713.5z"/>
+ <path class="st92" d="M-720.8,3713.5c-0.2,0-0.5,0-0.6-0.2c-0.2-0.3-0.2-0.7,0-0.9l20.2-18.8l-6.1-27.3c-0.1-0.3,0.1-0.7,0.5-0.8
+ c0.3-0.1,0.7,0.1,0.8,0.5l6.2,27.6c0.1,0.2,0,0.5-0.2,0.6l-20.5,19.1C-720.6,3713.4-720.7,3713.4-720.8,3713.5z"/>
+ <path class="st93" d="M-1083.8,3887.2c-0.1-0.1-0.2-0.1-0.2-0.2l-10.2-23.9c-0.1-0.3,0-0.7,0.3-0.8c0.1,0,0.2-0.1,0.3,0l25.9,2.9
+ c0.2,0,0.4,0.2,0.5,0.4l10.1,24c0.1,0.3,0,0.7-0.3,0.8c-0.1,0-0.2,0.1-0.3,0l-25.8-2.9
+ C-1083.6,3887.3-1083.7,3887.3-1083.8,3887.2z"/>
+ <path class="st93" d="M-1099.5,3908.4c-0.1-0.1-0.2-0.1-0.2-0.2l-10.2-23.9c-0.1-0.2-0.1-0.4,0.1-0.6l15.8-21.2
+ c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,0.3,0.6,0.1,0.8l-15.6,20.9l9.6,22.6l15.1-20.3c0.2-0.3,0.6-0.3,0.8-0.1
+ c0.3,0.2,25.3,4,25.1,4.3l-40.7,17.7C-1098.9,3908.5-1099.2,3908.6-1099.5,3908.4z"/>
+ <path class="st93" d="M-1058,3889.3c0.2-0.3,0.6-0.3,0.8-0.1c0.3,0.2,0.3,0.6,0.1,0.8l-15.7,21.1c-0.1,0.2-0.3,0.3-0.5,0.2
+ l-25.9-2.9c-0.1,0-0.2-0.1-0.3-0.1c-0.2-0.1-0.3-0.3-0.2-0.5c0-0.3,0.3-0.6,0.7-0.5"/>
+ </g>
+ <linearGradient id="SVGID_128_" gradientUnits="userSpaceOnUse" x1="1425.5712" y1="2057.9954" x2="1458.6107" y2="2057.9954">
+ <stop offset="0" style="stop-color:#913FFF"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st164" d="M1454.9,2046.4C1454.9,2046.3,1454.8,2046.3,1454.9,2046.4c0-0.1,0-0.1,0-0.1c0,0,0,0-0.1-0.1c0,0,0,0,0,0
+ c0,0-0.1,0-0.1,0c0,0,0,0,0,0l-16.1-5.2c-0.1,0-0.3,0-0.4,0.1l-12.4,11.5c0,0,0,0,0,0c0,0-0.1,0.1-0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0
+ c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0l3.8,16.8c0,0.1,0.1,0.2,0.3,0.3l16.1,5.1c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2-0.1
+ c0,0,0,0,0,0l12.4-11.5c0.1-0.1,0.1-0.2,0.1-0.4L1454.9,2046.4z M1430,2069.3l-3.6-15.9l15.3,4.9l3.6,15.9L1430,2069.3z"/>
+ <linearGradient id="SVGID_129_" gradientUnits="userSpaceOnUse" x1="1978.929" y1="1980.3079" x2="2000.6652" y2="1980.3079">
+ <stop offset="0" style="stop-color:#FB3B49"/>
+ <stop offset="0.9988" style="stop-color:#EC3B49"/>
+ </linearGradient>
+ <path class="st165" d="M2000.7,1978.2C2000.7,1978.2,2000.7,1978.1,2000.7,1978.2C2000.7,1978.1,2000.7,1978.1,2000.7,1978.2
+ c0-0.1,0-0.1,0-0.1c0,0,0,0,0,0l-7.1-8.2c-0.1-0.1-0.1-0.1-0.2-0.1l-10.6,2.1c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0
+ c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l-3.6,10.4c0,0.1,0,0.2,0,0.2l7.1,8.2c0,0,0.1,0.1,0.1,0.1c0,0,0.1,0,0.1,0c0,0,0,0,0,0
+ l10.6-2.1c0.1,0,0.2-0.1,0.2-0.2L2000.7,1978.2C2000.7,1978.2,2000.7,1978.2,2000.7,1978.2
+ C2000.7,1978.2,2000.7,1978.2,2000.7,1978.2z M1996.7,1988.3l-10,2l3.4-9.8l10-2L1996.7,1988.3z"/>
+ <linearGradient id="SVGID_130_" gradientUnits="userSpaceOnUse" x1="2580.5369" y1="1947.5522" x2="2600.9146" y2="1947.5522">
+ <stop offset="0" style="stop-color:#913FFF"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st166" d="M2598.6,1940.4C2598.6,1940.4,2598.6,1940.4,2598.6,1940.4C2598.6,1940.3,2598.6,1940.3,2598.6,1940.4
+ c0-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0l-9.9-3.2c-0.1,0-0.2,0-0.2,0.1l-7.6,7.1c0,0,0,0,0,0
+ c0,0,0,0-0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0l2.3,10.4c0,0.1,0.1,0.1,0.2,0.2l9.9,3.2
+ c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0l7.6-7.1c0.1-0.1,0.1-0.1,0.1-0.2L2598.6,1940.4z M2583.3,1954.5l-2.2-9.8l9.4,3
+ l2.2,9.8L2583.3,1954.5z"/>
+ <path class="st150" d="M1576.4,2220.9"/>
+ <path class="st151" d="M1209,2294.9c-0.1,0-0.1-0.1-0.2-0.1l-11-12.7c-0.1-0.2-0.1-0.4,0-0.5c0.1,0,0.1-0.1,0.2-0.1l16.5-3.3
+ c0.1,0,0.3,0,0.4,0.1l11,12.8c0.1,0.2,0.1,0.4,0,0.5c-0.1,0-0.1,0.1-0.2,0.1l-16.5,3.3C1209.1,2294.9,1209.1,2294.9,1209,2294.9z"
+ />
+ <path class="st14" d="M1208.8,2294.4c0.1-0.2,0.3-0.3,0.5-0.2s0.3,0.3,0.2,0.5l-5.5,16.1c-0.1,0.2-0.3,0.3-0.5,0.2
+ c-0.1,0-0.1-0.1-0.2-0.1l-11-12.7c-0.1-0.1-0.1-0.2-0.1-0.4l5.6-16.1c0.1-0.2,0.3-0.3,0.5-0.2c0.2,0.1,0.3,0.3,0.2,0.5"/>
+ <path class="st14" d="M1203.4,2311c-0.1,0-0.2-0.2-0.3-0.3c0-0.2,0.1-0.4,0.3-0.5l16.3-3.3l5.5-15.9c0.1-0.2,0.3-0.3,0.5-0.2
+ c0.2,0.1,0.3,0.3,0.2,0.5l-5.5,16.1c0,0.1-0.2,0.2-0.3,0.3l-16.5,3.3C1203.6,2311,1203.5,2311,1203.4,2311z"/>
+ <linearGradient id="SVGID_131_" gradientUnits="userSpaceOnUse" x1="1584.6115" y1="2214.593" x2="1602.6387" y2="2214.593">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="0.3721" style="stop-color:#FB8719"/>
+ <stop offset="0.5095" style="stop-color:#FA8420"/>
+ <stop offset="0.608" style="stop-color:#F9802C"/>
+ <stop offset="0.6881" style="stop-color:#F7793D"/>
+ <stop offset="0.7568" style="stop-color:#F47053"/>
+ <stop offset="0.8177" style="stop-color:#F1656E"/>
+ <stop offset="0.8729" style="stop-color:#ED578F"/>
+ <stop offset="0.9237" style="stop-color:#E948B5"/>
+ <stop offset="0.9691" style="stop-color:#E437DE"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <linearGradient id="SVGID_132_" gradientUnits="userSpaceOnUse" x1="1584.3885" y1="2214.593" x2="1602.8616" y2="2214.593">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st167" d="M1596.1,2219.9c0,0-0.1,0-0.1,0l-11.1-1.1c-0.1,0-0.2-0.1-0.2-0.3c0,0,0-0.1,0-0.1l6.4-9.2
+ c0.1-0.1,0.1-0.1,0.2-0.1l11.1,1.1c0.1,0,0.2,0.1,0.2,0.3c0,0,0,0.1,0,0.1l-6.4,9.2C1596.2,2219.9,1596.1,2219.9,1596.1,2219.9z"/>
+ <linearGradient id="SVGID_133_" gradientUnits="userSpaceOnUse" x1="1584.6105" y1="2224.3169" x2="1600.9773" y2="2224.3169">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st168" d="M1600.8,2230.2c0,0-0.1,0-0.1,0l-11.1-1.1c-0.1,0-0.2-0.1-0.2-0.1l-4.7-10.3c-0.1-0.1,0-0.3,0.1-0.3
+ c0.1-0.1,0.3,0,0.3,0.1l4.7,10.2l10.5,1l-4.6-9.9c-0.1-0.1,0-0.3,0.1-0.3c0.1-0.1,0.3,0,0.3,0.1l4.7,10.3
+ C1601,2230,1601,2230.2,1600.8,2230.2z"/>
+ <linearGradient id="SVGID_134_" gradientUnits="userSpaceOnUse" x1="1600.464" y1="2220.2827" x2="1607.3735" y2="2220.2827">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st169" d="M1600.8,2230.2c-0.1,0-0.2,0-0.3,0c-0.1-0.1-0.1-0.2-0.1-0.4l6.3-9l-4.7-10.1c-0.1-0.1,0-0.3,0.1-0.3
+ s0.3,0,0.3,0.1l4.7,10.3c0,0.1,0,0.2,0,0.3l-6.4,9.2C1600.9,2230.2,1600.9,2230.2,1600.8,2230.2z"/>
+ <path class="st92" d="M2577.3,2321.2c-0.1,0-0.1,0-0.2,0l-16-5.1c-0.2-0.1-0.3-0.3-0.3-0.5c0-0.1,0.1-0.1,0.1-0.2l12.3-11.5
+ c0.1-0.1,0.2-0.1,0.4-0.1l16,5.1c0.2,0.1,0.3,0.3,0.3,0.5c0,0.1-0.1,0.1-0.1,0.2l-12.3,11.4
+ C2577.4,2321.2,2577.4,2321.2,2577.3,2321.2z"/>
+ <path class="st92" d="M2581,2337.9c-0.1,0-0.1,0-0.2,0l-16-5.1c-0.1,0-0.2-0.1-0.3-0.3l-3.7-16.7c0-0.2,0.1-0.4,0.3-0.5
+ c0.2,0,0.4,0.1,0.5,0.3l3.7,16.4l15.2,4.8l-3.6-16c0-0.2,0.1-0.4,0.3-0.5c0.2,0,0.4,0.1,0.5,0.3l3.7,16.6
+ C2581.3,2337.6,2581.2,2337.8,2581,2337.9z"/>
+ <path class="st92" d="M2581,2337.9c-0.1,0-0.3,0-0.4-0.1c-0.1-0.2-0.1-0.4,0-0.5l12.1-11.3l-3.7-16.4c0-0.2,0.1-0.4,0.3-0.5
+ c0.2,0,0.4,0.1,0.5,0.3l3.7,16.6c0,0.1,0,0.3-0.1,0.4l-12.3,11.5C2581.1,2337.8,2581.1,2337.9,2581,2337.9z"/>
+ <path class="st93" d="M2327.7,2244.2c-0.1,0-0.1-0.1-0.1-0.1l-6.1-14.4c-0.1-0.2,0-0.4,0.2-0.5c0.1,0,0.1,0,0.2,0l15.5,1.7
+ c0.1,0,0.2,0.1,0.3,0.2l6.1,14.4c0.1,0.2,0,0.4-0.2,0.5c-0.1,0-0.1,0-0.2,0l-15.5-1.7C2327.9,2244.3,2327.8,2244.3,2327.7,2244.2z"
+ />
+ <path class="st93" d="M2318.3,2256.9c-0.1,0-0.1-0.1-0.1-0.1l-6.1-14.4c-0.1-0.1,0-0.3,0-0.4l9.5-12.7c0.1-0.2,0.3-0.2,0.5-0.1
+ c0.2,0.1,0.2,0.3,0.1,0.5l-9.4,12.6l5.8,13.6l9.1-12.2c0.1-0.2,0.3-0.2,0.5-0.1c0.2,0.1,15.2,2.4,15.1,2.6l-24.5,10.6
+ C2318.7,2257,2318.4,2257.1,2318.3,2256.9z"/>
+ <path class="st93" d="M2343.2,2245.5c0.1-0.2,0.3-0.2,0.5-0.1c0.2,0.1,0.2,0.3,0.1,0.5l-9.5,12.7c-0.1,0.1-0.2,0.2-0.3,0.1
+ l-15.5-1.7c-0.1,0-0.1,0-0.2-0.1c-0.1-0.1-0.2-0.2-0.1-0.3c0-0.2,0.2-0.3,0.4-0.3"/>
+ <linearGradient id="SVGID_135_" gradientUnits="userSpaceOnUse" x1="1432.1119" y1="2323.7346" x2="1465.1516" y2="2323.7346">
+ <stop offset="0" style="stop-color:#913FFF"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st170" d="M1461.4,2312.1C1461.4,2312.1,1461.4,2312.1,1461.4,2312.1c0-0.1,0-0.1,0-0.1c0,0,0,0-0.1-0.1c0,0,0,0,0,0
+ c0,0-0.1,0-0.1,0c0,0,0,0,0,0l-16.1-5.2c-0.1,0-0.3,0-0.4,0.1l-12.4,11.5c0,0,0,0,0,0c0,0-0.1,0.1-0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0
+ c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0l3.8,16.8c0,0.1,0.1,0.2,0.3,0.3l16.1,5.1c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2-0.1
+ c0,0,0,0,0,0l12.4-11.5c0.1-0.1,0.1-0.2,0.1-0.4L1461.4,2312.1z M1436.6,2335l-3.6-15.9l15.3,4.9l3.6,15.9L1436.6,2335z"/>
+ <linearGradient id="SVGID_136_" gradientUnits="userSpaceOnUse" x1="1985.4697" y1="2246.0471" x2="2007.2061" y2="2246.0471">
+ <stop offset="0" style="stop-color:#FB3B49"/>
+ <stop offset="0.9988" style="stop-color:#EC3B49"/>
+ </linearGradient>
+ <path class="st171" d="M2007.2,2243.9C2007.2,2243.9,2007.2,2243.9,2007.2,2243.9C2007.2,2243.8,2007.2,2243.8,2007.2,2243.9
+ c0-0.1,0-0.1,0-0.1c0,0,0,0,0,0l-7.1-8.2c-0.1-0.1-0.1-0.1-0.2-0.1l-10.6,2.1c0,0,0,0,0,0c0,0-0.1,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0
+ c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l-3.6,10.4c0,0.1,0,0.2,0,0.2l7.1,8.2c0,0,0.1,0.1,0.1,0.1c0,0,0.1,0,0.1,0c0,0,0,0,0,0
+ l10.6-2.1c0.1,0,0.2-0.1,0.2-0.2L2007.2,2243.9C2007.2,2244,2007.2,2244,2007.2,2243.9C2007.2,2243.9,2007.2,2243.9,2007.2,2243.9z
+ M2003.2,2254.1l-10,2l3.4-9.8l10-2L2003.2,2254.1z"/>
+ <linearGradient id="SVGID_137_" gradientUnits="userSpaceOnUse" x1="2587.0776" y1="2213.2915" x2="2607.4556" y2="2213.2915">
+ <stop offset="0" style="stop-color:#913FFF"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st172" d="M2605.1,2206.1C2605.1,2206.1,2605.1,2206.1,2605.1,2206.1C2605.1,2206.1,2605.1,2206.1,2605.1,2206.1
+ c0-0.1-0.1-0.1-0.1-0.1c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0l-9.9-3.2c-0.1,0-0.2,0-0.2,0.1l-7.6,7.1c0,0,0,0,0,0
+ c0,0,0,0-0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0l2.3,10.4c0,0.1,0.1,0.1,0.2,0.2l9.9,3.2
+ c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0l7.6-7.1c0.1-0.1,0.1-0.1,0.1-0.2L2605.1,2206.1z M2589.8,2220.3l-2.2-9.8l9.4,3
+ l2.2,9.8L2589.8,2220.3z"/>
+ <linearGradient id="SVGID_138_" gradientUnits="userSpaceOnUse" x1="-1123.5303" y1="3693.8013" x2="-1094.0958" y2="3693.8013">
+ <stop offset="0" style="stop-color:#FB3B49"/>
+ <stop offset="0.9988" style="stop-color:#EC3B49"/>
+ </linearGradient>
+ <path class="st173" d="M-1094.1,3690.9C-1094.1,3690.9-1094.1,3690.9-1094.1,3690.9c0-0.1,0-0.1,0-0.1c0,0,0-0.1,0-0.1c0,0,0,0,0,0
+ l-9.5-11.1c-0.1-0.1-0.2-0.1-0.3-0.1l-14.4,2.9c0,0,0,0,0,0c0,0-0.1,0-0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0.1c0,0,0,0,0,0
+ c0,0,0,0,0,0l-4.8,14.1c0,0.1,0,0.2,0.1,0.3l9.6,11.1c0,0,0.1,0.1,0.1,0.1c0.1,0,0.1,0,0.2,0c0,0,0,0,0,0l14.4-2.9
+ c0.1,0,0.2-0.1,0.3-0.2l4.8-14C-1094.1,3691-1094.1,3691-1094.1,3690.9C-1094.1,3690.9-1094.1,3690.9-1094.1,3690.9z
+ M-1099.5,3704.6l-13.6,2.7l4.6-13.3l13.6-2.7L-1099.5,3704.6z"/>
+ <linearGradient id="SVGID_139_" gradientUnits="userSpaceOnUse" x1="-1745.7698" y1="3831.8257" x2="-1712.7301" y2="3831.8257">
+ <stop offset="0" style="stop-color:#913FFF"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st174" d="M-1716.5,3820.2C-1716.5,3820.2-1716.5,3820.1-1716.5,3820.2c0-0.1,0-0.1,0-0.1c0,0,0,0-0.1-0.1c0,0,0,0,0,0
+ c0,0-0.1,0-0.1,0c0,0,0,0,0,0l-16.1-5.2c-0.1,0-0.3,0-0.4,0.1l-12.4,11.5c0,0,0,0,0,0c0,0-0.1,0.1-0.1,0.1c0,0,0,0,0,0c0,0,0,0,0,0
+ c0,0,0,0.1,0,0.1c0,0,0,0,0,0.1c0,0,0,0,0,0l3.8,16.8c0,0.1,0.1,0.2,0.3,0.3l16.1,5.1c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2-0.1
+ c0,0,0,0,0,0l12.4-11.5c0.1-0.1,0.1-0.2,0.1-0.4L-1716.5,3820.2z M-1741.3,3843.1l-3.6-15.9l15.3,4.9l3.6,15.9L-1741.3,3843.1z"/>
+ <g>
+ <path class="st14" d="M1178.2,63.1c-0.3,0-0.6-0.1-0.8-0.3l-6-6c-0.4-0.4-0.4-1.2,0-1.6c0.4-0.4,1.2-0.4,1.6,0l5.2,5.2l5.2-5.2
+ c0.4-0.4,1.2-0.4,1.6,0c0.4,0.4,0.4,1.2,0,1.6l-6,6C1178.8,63,1178.5,63.1,1178.2,63.1z"/>
+ </g>
+ <g>
+ <path class="st14" d="M1198,54.9c-0.3,0-0.6,0.1-0.8,0.3l-6,6c-0.4,0.4-0.4,1.2,0,1.6c0.4,0.4,1.2,0.4,1.6,0l5.2-5.2l5.2,5.2
+ c0.4,0.4,1.2,0.4,1.6,0c0.4-0.4,0.4-1.2,0-1.6l-6-6C1198.6,55,1198.3,54.9,1198,54.9z"/>
+ </g>
+ <g>
+
+ <linearGradient id="SVGID_140_" gradientUnits="userSpaceOnUse" x1="2471.3171" y1="42.6483" x2="2506.3171" y2="42.6483" gradientTransform="matrix(0.6981 0.716 -0.716 0.6981 780.5552 -1768.416)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st175" d="M2497,55.7l-21.6-22.2c-0.8-0.8-0.8-2.1,0-2.8v0c0.8-0.8,2.1-0.8,2.8,0l21.6,22.2c0.8,0.8,0.8,2.1,0,2.8v0
+ C2499,56.5,2497.7,56.5,2497,55.7z"/>
+ </g>
+ <g>
+
+ <linearGradient id="SVGID_141_" gradientUnits="userSpaceOnUse" x1="2490.2456" y1="66.6084" x2="2525.2456" y2="66.6084" gradientTransform="matrix(0.7239 -0.6899 -0.6899 -0.7239 718.0428 1821.4435)">
+ <stop offset="0" style="stop-color:#FB8817"/>
+ <stop offset="1" style="stop-color:#E02AFF"/>
+ </linearGradient>
+ <path class="st176" d="M2497.4,31.1L2475,52.5c-0.8,0.8-0.8,2-0.1,2.8v0c0.8,0.8,2,0.8,2.8,0.1l22.4-21.4c0.8-0.8,0.8-2,0.1-2.8v0
+ C2499.5,30.4,2498.2,30.3,2497.4,31.1z"/>
+ </g>
+</g>
+<g id="Layer_2">
+</g>
+</svg>
diff --git a/deps/npm/docs/src/images/terminal-icon.svg b/deps/npm/docs/src/images/terminal-icon.svg
new file mode 100644
index 0000000000..57a3d1f572
--- /dev/null
+++ b/deps/npm/docs/src/images/terminal-icon.svg
@@ -0,0 +1 @@
+<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 132.16 126.87"><defs><style>.cls-1{fill:#413844;stroke-width:0.83px;}.cls-1,.cls-2,.cls-9{stroke:#223839;}.cls-1,.cls-9{stroke-miterlimit:10;}.cls-2{fill:#fff;fill-opacity:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.8px;}.cls-3{opacity:0.4;}.cls-4{fill:url(#linear-gradient);}.cls-5{fill:url(#linear-gradient-2);}.cls-6{fill:url(#linear-gradient-3);}.cls-7{fill:url(#linear-gradient-4);}.cls-8{fill:url(#linear-gradient-5);}.cls-9{fill:none;stroke-width:1.66px;}.cls-10{fill:#333;}</style><linearGradient id="linear-gradient" x1="53.45" y1="57.46" x2="54.85" y2="45.4" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fb8817"/><stop offset="1" stop-color="#e02aff"/></linearGradient><linearGradient id="linear-gradient-2" x1="43.34" y1="69.63" x2="44.44" y2="60.14" xlink:href="#linear-gradient"/><linearGradient id="linear-gradient-3" x1="47.25" y1="83.23" x2="48.49" y2="72.5" xlink:href="#linear-gradient"/><linearGradient id="linear-gradient-4" x1="44.32" y1="97.11" x2="45.46" y2="87.27" xlink:href="#linear-gradient"/><linearGradient id="linear-gradient-5" x1="76.58" y1="68.07" x2="77.31" y2="61.7" xlink:href="#linear-gradient"/></defs><title>terminal-icon.svg</title><path class="cls-1" d="M116.56,106.69H17A1.66,1.66,0,0,1,15.35,105V37.93H118.22V105A1.66,1.66,0,0,1,116.56,106.69Z"/><rect class="cls-2" x="15.76" y="26.75" width="102.05" height="11.6"/><image class="cls-3" width="71" height="15" transform="translate(18.64 44.43)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAAAQCAYAAAC1MDndAAAACXBIWXMAAAsSAAALEgHS3X78AAACI0lEQVRYR+2XvW4TQRRGz52fzVo2Eg4RJC24suAZ0vFa1j5VyoiWB0hlUqHYRE6MhM2ud3bmUmBjG+ECiSaLTzPSaqTRHn135l5RVY4cxh34LgAU6/V/YMQmKXuJkd8TVBSY0SVmXI5tvsiN7VgxcyO8on18gdRPGsuoVa9Kg84gFh9IoxFps2VfUIG5Gd64rJflvvRdPLmtrQs+GDj50xFPnBU++BSz2BCoQics60VdDW+GDWtJ2xIThGtMVp7nWbk4A3fhlBe1jV2bvIWmheXmtbEaM/XLBh6yUib0Tmdc8h1BUXQrSGF8Nba+9F2cXFjVt02Mbxymr0YzUds6QSpJXZK6ic3cWvspCvjyWznmcTXQQYTdBBVI/j43sfG5NPWZirw2mHdJOBc1J6Dm4ElPFTUpia6MmqmqqCSZqj+5y59bQ4Ew2k0QYDMrtQRnLB0ifUVfAhdADrRPEJpAK4UkSh9LJ0pwWbatlhb+9L9lL0GxjmrVN8S6RJiLyr2CAWlniSEJWAncI8yJlFZ8E+vw62nfChqh1VWVfIiVOpkZ1duoSYyaz2pShprWXdJIUpOkTqS5FblNRmeEqqq+hrRpHHefeQbXgzjmcZmVi0lEcM5N6hS7RsUqsX2C1GgUjZlxy6bhAZiEzrPloHMaEUB3BSlKQaqH04peNvOllkG4c7H9jWKwoYFNozit+Hia0J8JOo4afzVqbDkOq2sOCTqy5gekbz18E4beswAAAABJRU5ErkJggg=="/><rect class="cls-4" x="23.74" y="48.84" width="60.81" height="5.18"/><image class="cls-3" width="51" height="15" transform="translate(18.84 57.64)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAAQCAYAAABZRVzLAAAACXBIWXMAAAsSAAALEgHS3X78AAABxUlEQVRIS92WvW7bMBSFv0sykU0BDZQYLdqMGQxoydBnyVPmWboK0ODNCdCgjtBBslSTvB3cyEESdCoC1Wck+Pfx8B5SVJVjknuzVRCmzimAvt6lvHBIuMVUVNa33rjcycsBU1Bog3Z5l0rKyA0JDmDPgYRvuPqunhUUvg3tzBnnZCdC9ua8768B9EQ1pBByl/cNTbe8XPZ8JfAH6gB0i62z2mfp7OJU0pcY4wJr50KyMTEJp6xBFROJcWut/fFLzf1gfm6Ww7LjhgiHGpKKyi5Y+D71l9HKNcZcofE8qZxY85dV3lEpgUjcYcxjJK5MClKYYltRDSVlAnQMBd96E22cCe4CjVcC14p8EiFTnYZDIijIIPBdFQS3jiGufevHIx+BXO4kmOAQOwcKVf0IfAZmMA0g9nXSK6oIBZZ50OCeh9dELtO/0+hQaINmH7IQ0C2GRpAHRQXImJZDgyAPqtqQ2DpcGNphjOoRqMu75J3vd6HfiMhqH356rionZiI+7kNBd4o8IqyUsLFu1nd5l576PAFpSRlr6i4zZ3enJI0prrF2bmRqsW0PsW3MfUPTlZSRV+/Q0T2sex3V1+egI/qc/vf6DdzPD+2yzmeRAAAAAElFTkSuQmCC"/><rect class="cls-5" x="23.68" y="62.42" width="40.44" height="4.92"/><image class="cls-3" width="59" height="15" transform="translate(18.63 70.42)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAAQCAYAAABKkhw/AAAACXBIWXMAAAsSAAALEgHS3X78AAACWklEQVRIS+WXzW5bNxSEZw5/dBXbQOMGqIPsUq2M9hmy62sJeqosg2z7AF4pWQWxCih2AVu+15fkmSxqx3KT7KVkNgQIAuSHOeQcUhJ+JsXvzBMAsLgb91Fz3Dv5yFH+3+HFAjZ/BVv2y9BddxamgXZpxG/Yff0D+FNX65uGw8Fn01lbvIXP5/D7JY+BF7Cz07OYD3OX+nSAhC6MIZZUDJh8a4sd0y1SSd5yqygYyrRsxutxOD07rbiDfihpgngDy/1Jl/vrZ0B8HoVfx9AOgqcA1D0o76Qa1LLSpgKfcs9zHB6v8Qo3IARBD8AClq+XIfXpAJHPg/RHbe33CHsqU6bCzgOLrugca6uXIYR3jUDqr/olLm5nmjVg2+EF2P3VWaupYx2fiXxpsD+dOKFsAsi+u9OuSOZO3ZpsJVF0rpQmH7tfgmEBYr7tMIB0lQwssbI9iQrHIE4ovJCpg7DzwKKcjgEEIHxobE8iS0xX6cvZv4ql0cgICySiQxlgpjQBuPPAlBygC8pGRIOF0ci0teYr4OxShTcTKslRwCjSuBcO0ymMBEcJ1ektuz3K3UfA5ah4W6capBsQFxBWIkBxwr24w3RRtxRWIC6Cwk1TqjgqX3L4AXgODa8HT6UNilyb9L7JabIPMs+Q7fwrDbrMOTr8MpDv3bRGGYbh3+L3ndd2DmP2ZtaWuNjk/vq8gYgxno/eDkwMQtt9YJka1bLFTa34BOC8TI82s+lxu3vIsJ3DwgI+nq4GHOZ16tUX4mNs+9dplVAqcN9prQb8fezQfw7/5L30g37Y39JnPaprXmDdnUQAAAAASUVORK5CYII="/><rect class="cls-6" x="23.7" y="75.23" width="48.34" height="5.27"/><image class="cls-3" width="53" height="14" transform="translate(18.69 85.48)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADYAAAAPCAYAAACvMDy4AAAACXBIWXMAAAsSAAALEgHS3X78AAACFUlEQVRIS+WWTW4TQRCFv+q/jGUj4RBBsgWvLDhDdlzLmlNlGbHlAFmZrFBsIidGwmbG09NdLJxJQAJWCEbhbVpqtVT96T1Vlagqj1HuJ3cCQHl39l0zOmd+cEi+d6wsMbNTzLya22JTGDuwYtZGeEG/9AnyOGuqktajOk8Gk1S+I89m5O7JA1iJuZheuDAKha/8EE9hG+uijwYOflXiH2mHjz6nkFoidRzEbbNp6unFtOUObh9FQTjHhOq4CNXmCNyJU541Ng1t9hbansXSa2s1BfXbFm5CJQtGhytO+YqgKLoHU5ifza2v/BAnJ1b1dZvSK4cZq9EgansFppLVZWna1K6ttR+SgK++VHNudxOdJOgcK5HibWFS6wtpmyMVeWkwb7JwLGoOQM1vK/1tqclZdGfULFVFJctS/cFV8dQaSoRZ5xhgg5VGojOWAYmxos+BE6AA+gWGZtBaIYsyxjJIEl0ID8nq2Yf/nO4dS01Sq74lNRXCWlSuFQxI/6KIZGAncI2wJlFZ8W1q4v3s2oPN0Pqszj6mWp2sjOpl0ixGzUc1OaCmV80DyWqyNJm8tiKX2eiKWNf155i7gd21eybnkzTndhuqzSIhOOcWTU5Do2KV1C8wNZpEUzBu27bcAIs4eLKdDA4TAmgHpigluZkua0Zh5SutonDlUr8HdLSxhW5AL2veH2Z079h/sFI96FEswd8AV3Q6fg1fH2cAAAAASUVORK5CYII="/><rect class="cls-7" x="23.35" y="89.7" width="43.08" height="4.98"/><image class="cls-3" width="23" height="15" transform="translate(65.84 57.64)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAQCAYAAAAMJL+VAAAACXBIWXMAAAsSAAALEgHS3X78AAABt0lEQVQ4T7WUsW7bMBRFzyPpyKaABkqMFm3GDAa0ZOi35CvzLV0FaMjmBGhQR+ggWapJvg5u5CBRUxSI70iQPLx89z1RVY4pN7kqCP/LFUBfn5IXDoQbTEVlfeuNy528PDCl0Abt8i6VlJFrEhxAzwHCN1x9V88LCt+Gdu6Mc7ITIZu8FwbQmWpIIeQu7xuabnWx6vlK4A/kALjB1lnts3R6fiLpS4xxibULIdmYmHRiDaqYSIxba+2PX2ruB/NzsxpWHddEONRAKiq7ZOn71F9EK1cYc4nGs6Qys2bqekgJROIOYx4j8dakIIUpthXVUFImQMci+9abaONccOdovBS4UuSTCJnqtAMRFGQQ+K4KglvHENe+9eOTRoDLnQQTHGIXQKGqH4HPwBymAez/uVdUEQosi6DBPQ/HX8y/n0YHoQ2afchCQLcYGkEeFBUg420HgyAPqtqQ2DpcGNphjOYI6PIueef7Xeg3InK7D5eeqcrMvFlk3SnyiHCrhI11877Lu/S05wmgJWWsqbvMnN6dkDSmuMbahZF/xdQeYmrMfUPTlZSRV31w9Ebb66ij4qAjDrt312+pyA/tOC5xIwAAAABJRU5ErkJggg=="/><rect class="cls-8" x="70.33" y="62.42" width="13.22" height="4.92"/><line class="cls-9" x1="54.15" y1="32.54" x2="87.29" y2="32.54"/><circle class="cls-10" cx="22.26" cy="32.13" r="1.24"/><circle class="cls-10" cx="27.23" cy="32.13" r="1.24"/></svg> \ No newline at end of file
diff --git a/deps/npm/docs/src/images/test-icon.svg b/deps/npm/docs/src/images/test-icon.svg
new file mode 100644
index 0000000000..42b9a31c32
--- /dev/null
+++ b/deps/npm/docs/src/images/test-icon.svg
@@ -0,0 +1 @@
+<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 135 109"><defs><style>.cls-1{stroke:#223839;stroke-miterlimit:10;fill:url(#linear-gradient);}.cls-2{opacity:0.5;}.cls-3{fill:#fff;}.cls-4{fill:#223839;}.cls-5{opacity:0.4;}.cls-6{fill:url(#linear-gradient-2);}.cls-7{fill:url(#linear-gradient-3);}.cls-8{fill:url(#linear-gradient-4);}.cls-9{fill:url(#linear-gradient-5);}.cls-10{fill:url(#linear-gradient-6);}.cls-11{fill:#333;}</style><linearGradient id="linear-gradient" x1="4.55" y1="60.75" x2="128.73" y2="60.75" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#2f2633"/><stop offset="1" stop-color="#402543"/></linearGradient><linearGradient id="linear-gradient-2" x1="50.54" y1="42.83" x2="52.23" y2="28.27" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#fb8817"/><stop offset="1" stop-color="#e02aff"/></linearGradient><linearGradient id="linear-gradient-3" x1="38.34" y1="57.52" x2="39.67" y2="46.07" xlink:href="#linear-gradient-2"/><linearGradient id="linear-gradient-4" x1="43.05" y1="73.94" x2="44.55" y2="60.98" xlink:href="#linear-gradient-2"/><linearGradient id="linear-gradient-5" x1="39.51" y1="90.7" x2="40.89" y2="78.81" xlink:href="#linear-gradient-2"/><linearGradient id="linear-gradient-6" x1="78.45" y1="55.64" x2="79.35" y2="47.95" xlink:href="#linear-gradient-2"/></defs><title>test-icon.svg</title><path class="cls-1" d="M126.73,102.25H6.55a2,2,0,0,1-2-2v-81H128.73v81A2,2,0,0,1,126.73,102.25Z"/><g class="cls-2"><rect class="cls-3" x="5.04" y="5.75" width="123.19" height="14"/></g><path class="cls-4" d="M128.23,20.65H5a.9.9,0,0,1-.9-.9v-14a.9.9,0,0,1,.9-.9H128.23a.9.9,0,0,1,.9.9v14A.9.9,0,0,1,128.23,20.65ZM5.94,18.85H127.33V6.65H5.94Z"/><image class="cls-5" width="86" height="18" transform="translate(8.86 26.86)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFcAAAATCAYAAADlAZEWAAAACXBIWXMAAAsSAAALEgHS3X78AAAC2klEQVRYR+2YwWobVxSGv/9qRvZ4JFJb0NYUjKCQLvIQ0qP0TYReI6s+ivQIXWRTKAzeuHGQbEcaTSTN3L+L2KpNXZqEdpX5YDZ37t18HA7n/LJNy/9D8o9/hGi9/zsC/LwpPVO5AjSbzUL/t76y00zPvGsBqpvKq5crj8fjCPj+O/BE7nQ6DaPRKAyLYZLneVKmZZJkSdBGCmloJd8T99E+seuqjvk+r8uyrIthUc/n8ziZTOLDvcdyxYzO1fqqG/cxC2nIgZNm23Qbmg6ilfuAcYdO0znq7IBN3McypKE6753vGNNwX8GPe66KokjSF2kGDNjzbZ14EAO9oCTFMUTpqxccbBNCbOy97XVSawFcx31cFEURhwwfWsShcjWbzjqvRq+O18v1gE5ykZgfZV0gzoDM0PnqzfLRmqABKszS8mUtfqepL3tnvcWb+ZsP48m4AXyo3P55X+VtmcjKMANZFxY/Gb4PUo5JTNsaACPqaJcSf8hC+BbrXXlbJv3z/sHRQW52muksOwuL9aIbrFzSKfCd8Q+2+6KVCyCwTQ2shCxxLZNH3B1kg7A53fxdLsBqs5KighJ1omMXwhHmWNJxxKlauURwQHvbe4sjE7sKoaNaYbVZPfHzRG7/pO/FehEd3XQUdoatxQfjNEDdVi4EsHGN+CDYirCroxsHx/5J33fv7w53D3Krm8rLdBmFdpZLmxuLt4Ak5TYJrVwMlqhtl8ZvMTeWS6HdslrG6qY6zLYHuaurlS9eXtTr5bpCLIwvZSHxDjujnRaA+xnLNOHRtGCxQK563/Tq4tfir8Xh0RIRil+KbvoizYFBIHycc+vYC1I7594TbKMQo70PSVgntRaReA0s9nf7cvjzcAdEaDe0L+MLNjRP59M4Go12w2IY8zzflmn5PuklIdkkbbbwiIdsYVttn2QLr+ev42Q8ebYtHM5oU7FP4rNSsSe0ee6n8Zl5bst/xJ+Grs3fvieb5gAAAABJRU5ErkJggg=="/><rect class="cls-6" x="14.68" y="32.43" width="73.41" height="6.25"/><image class="cls-5" width="60" height="17" transform="translate(9.1 43.1)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD0AAAASCAYAAADomNYKAAAACXBIWXMAAAsSAAALEgHS3X78AAACb0lEQVRYR+XXzU4cRxSG4fc7VT3MDxOE7bFCZMkbEsWztZSl74LrsXw9cyeRvGURsUGyhOMhRnhoZqCrzskCG4ND9oPm23XptLqeblXXKUUE/4kQDww/qgiIhxX6AS3eIaaICXr/13s9dNO65/Vvr4M5wSHBWwLu4++ixQw72j7K4zTO7Xmbc5fNGntUcO88SlN8tDMqi7oo+xf7hQOcO/BvaDHDPvChx08MbGUjxLCm1Nh1SZ06QfO/D1qPdDTRhPdyTbV2BJfe95YvLF/w4vou/Ab9Djv646jpW390fXn9LDN4LspTR9umaFASXtf7i1sKooaHOiMugvxPYfmpN+ydrnzV7v+53/EWB8iAZtOZ3py+yW3ftwd58LxY+VWhl0k8gdQPrwmttxmvyFJN8hWhz6gcD3zA8gur8Wp8NZvOygEHAiIDTA4naqdt1lZ/ULr6LKSXhn539z3Mh5IliPVWyyLwiselyU48oHg501aat7R5cji5nX8GGO+NlbtsGqZG1UeS7brXnzH9ItiOm5ez3mgiBCVMF+4eZulvzEc5pSa6bOO98X00ADtQamc9lJzoCW0FDCIYfK1bczQRQUHUm7lHz1DqamdpB7j4XvgdfQ55p/GoXRV2HfgVaCmRIh4HWqIELIO4+mqoOTUe51f3CjPA4mQRu9NdV81d9mhDfpZkH91dYRoKrf+aRhHEtzX9sYafyaMttXbRFF+cLG736Qwwn87j1epVafFlzvm0qBxHgEyfwPoRj+DvHY6UKuariPgsxXG2fNpdsRytRmU+nf/QnGzYPr3BHdlNNq73vr3etFPWndHNOk9vRP4F5hC2kgTC56EAAAAASUVORK5CYII="/><rect class="cls-7" x="14.6" y="48.82" width="48.81" height="5.94"/><image class="cls-5" width="70" height="18" transform="translate(8.84 58.84)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEcAAAATCAYAAADCrxD+AAAACXBIWXMAAAsSAAALEgHS3X78AAACvUlEQVRYR+2Yz2obVxjFf+fOjOzxSKS2oK0pGEEhXeQhpEfpmwi/RlZ9FOkRusimUBi8ceMg2Y40mkiauacLO0FOHOh66gN3de/m+/H9Od+VbV70vNLv3gjxf+EmwN9Gq2cyR4Bms1kY/DVQfprr6wddUn1be/V65clkEgE/HuArOJeXl2E8HodROUqLokirrErTPA3aSCELnYIU99E+sZu6icW+aKqqaspR2czn8zidTiM8hSNmJNfr617cxzxkoQBO2m3ba2kTRKfgYJyQtMlRsgM2cR+rkIX6vH++Y0IL+LDnqCzLNHuV5cCQPT82qYcx0A9KMxxDlDoBKNgmhNjae9vrtNECuIn7uCjLMo4YRcCfM0ezy1nyZvzmeL1cD0nSi9T8KusCcQbkhqQTZHhoKoIWqDFLy1eN+Ju2ueqf9Rfv5u8+TaaT9kvmDM4Hqu6qVFaOGcq6sPjN8HOQCkxqOlNaRjTRriT+kYXwHdaH6q5KB+cDwcEoz09zneVnYbFe9IJVSDoFfjL+xfZAdAeOwDYNsBKyxI1MEXFvmA/D5nTzFA7AarOSooJSJdGxB+EIcyzpOOJMHYETwQHtbe8tjkzsKYREjcJqs/oS4xM4g5OBF+tFdHSbKOwMW4tPxlmApiuZE8DGDeKTYCvCroluHRwHJwPff7wHDuDUt7WX2TIK7SxXNrcW7wFJKmxSOgLHYInGdmX8HnNruRLaLetlrG9rwwGc1fXKF68vmvVyXSMWxleykPiAndOxaYVpw8G0slgg1/0f+k35Z/kwwg9MYCj/KHvZq6wAhoHw4HOa2A9S93yOQoz2PqRhnTZaROINsNjf76vR76MdEF8c8n90yL6cX8bxeLwblaNYFMW2yqqPaT8N6Sbt7G61rbdPdqu387dxOpl+U1af9bKVP+o5OI83L/8534fzIv4F3kbM4BrxLJUAAAAASUVORK5CYII="/><rect class="cls-8" x="14.62" y="64.28" width="58.35" height="6.36"/><image class="cls-5" width="64" height="18" transform="translate(8.91 75.91)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEEAAAATCAYAAADPsWC5AAAACXBIWXMAAAsSAAALEgHS3X78AAACeUlEQVRYR+3YwU4TQRwG8O+bmd20LA2pBLWReCBoSDmScPHiS/g8hOfxJbh4IeFIQwwnQlKhlqZpF+p25v95UCtKfYAVvuvMHuaX2dlvlpLw2BP+OUIQ/5MPAWj5irhkJxCHILogNsCTzydc9mCdsvd2TxhA6EE4gIA/Mf5G4NHhkd/c3/TVtMo67Y4vR6WfBrKF+mUCYDVKRbtI/VE/5av5/PL4Mr0/eJ9wD+I+Ao8Oj/x2dztj4IrLXCFT02R5FD1TrN2OkA8KVHJ0FR3vbG6lom7Pe+fz+xC/EQ7hsI/sbHa2miNfD2g+J+I6HQtJOegJS/WBcF5QEslKplIIw4i76wrVcKexM8Ux5jiAAb8PRn7sfuTudDdro10g4Hl08Q3pX5vZuqNvyJIH62MAS6DzyWQz5/0QihdNa6IZm7PetPfttHsaP+ADAWjxddjobbDzruPH4/GKh1+X+BrQDoGXkBWg8yRqoyBQkCUCpaQvEhERb5JLXztrnfH1p+vFWhYIrU6L5aj0ASFDQCHgGYEXEl7BcRWmINQHAYLgGGGakpCIa5JFiCErR6VvdVoPEX5lHuYutzzQIYfQANGUtAIioE4IhCRFEAlCg2ROQ6hC5bKY/TH1AUIWM1OuKKAiOYPhjo5epoAavQ4QRMco0x0cZoIqOcSsyuzvqQuESX+ira2tNB6P5958CfJGxNWP5qgCZM3OBAhSAlEKuIJwI6lMLs3X1tbSpDdZdIMFwqA7UH/UT220b+EwjIwXpINJA9I1YMmrPgaABDifJJs5cgjYRVAYBgu3/VE/DbqDJWXpEfeEp8aIp7sDgKdbJIDlCD9HHvf/hEeX79e9wr/kDmLQAAAAAElFTkSuQmCC"/><rect class="cls-9" x="14.2" y="81.74" width="52" height="6.02"/><image class="cls-5" width="27" height="17" transform="translate(65.1 43.1)" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAASCAYAAABIB77kAAAACXBIWXMAAAsSAAALEgHS3X78AAACZklEQVQ4T8WVzU6bRxSGn/fMfMbGuIg2jkoVKRtaNd5GyjJ3wfVEuR7fSaVsWVRskCKRxjSImA8bfzPndEFCIAUnm9J3N6PzzjN/5xxFBP+SEHdMf7cExN0r6CugeI2YIMbozZ9vdJdpnZ7/9jyYERwQvCLgNvgmUEyxw63DPEqj3J61OXfZrLHvhnrnUZriw+1hmdd52TvfK+zj3IB+Boop9pa3PX5gYEsbIjZrSo2tSurUCZp7QdDRRBPeyzXV2hFceN9bPrJ4wpPVTegV8DV2+OKw6Vt/uLpYPcoMHovyk6MtUzQoCa/3n9RSEDU81BlxHuS/C4v3vc3eydKX7d4fex2vcIAMaDqZ6uXJy9z2fWuQB4+LlV8VeprEj5D64TWhNTfrFVmqSb4k9AGVo4EPWHxkOVqOLqeTadlnX0BkgPHBWO2kzdroD0pXH4X01NDv7r6L+aZkCeJ+oiwCr3hcmOzYA4qXU22kWUubxwfja28GGO2OlLts2kyNqg8l23GvP2P6RbAVVxtbc8QIQQnTubuHWfoL82FOqYku22h3dBsIwDaU2lkPJSd6QhsBgwgGn+LW/daIoCDqlS96hlJXO0vbwPmXwC/AM8jbjUftqrBV4JeghUSK+DZQogQsgrj85K85NR5nl7cCM8D8eB47kx1XzV32aEN+mmTv3F1h2hRa/4Yogvj8hu9q+Kk82lJrF03x+fH8Og8zwGwyi2fLZ6XFFznnk6JyFAEyvQfrR3zjl4YjpYr5MiI+SHGULZ90lyyGy2GZTWZfJf4D5uH/VGmu9KC19Hr8kN3ixuzD9cP/XP8AGC+2ktjWOmUAAAAASUVORK5CYII="/><rect class="cls-10" x="70.92" y="48.82" width="15.96" height="5.94"/><rect class="cls-4" x="51.39" y="11.75" width="40" height="2"/><circle class="cls-11" cx="12.89" cy="12.25" r="1.5"/><circle class="cls-11" cx="18.89" cy="12.25" r="1.5"/></svg> \ No newline at end of file
diff --git a/deps/npm/docs/src/images/up-carrot.svg b/deps/npm/docs/src/images/up-carrot.svg
new file mode 100644
index 0000000000..a70608208e
--- /dev/null
+++ b/deps/npm/docs/src/images/up-carrot.svg
@@ -0,0 +1 @@
+<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16.5 10"><defs><style>.cls-1{fill:#fb3b49;}</style></defs><title>up-carrot</title><path class="cls-1" d="M8.25.85a1.15,1.15,0,0,0-.81.34l-6,6A1.15,1.15,0,0,0,3.06,8.81L8.25,3.63l5.19,5.19a1.15,1.15,0,0,0,1.63-1.63l-6-6A1.15,1.15,0,0,0,8.25.85Z"/></svg> \ No newline at end of file
diff --git a/deps/npm/docs/src/images/x.svg b/deps/npm/docs/src/images/x.svg
new file mode 100644
index 0000000000..04073c4f43
--- /dev/null
+++ b/deps/npm/docs/src/images/x.svg
@@ -0,0 +1 @@
+<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 13 13"><defs><style>.cls-1{fill:#333;}</style></defs><title>x</title><path class="cls-1" d="M7.9,6.61,11.64,3.1a1,1,0,0,0-1.36-1.46L6.53,5.15,3,1.41A1,1,0,1,0,1.57,2.77l3.5,3.75L1.33,10a1,1,0,0,0,0,1.42,1,1,0,0,0,.73.31,1,1,0,0,0,.68-.27L6.44,8,10,11.72a1,1,0,0,0,.73.31,1,1,0,0,0,.68-.27,1,1,0,0,0,.05-1.41Z"/></svg> \ No newline at end of file
diff --git a/deps/npm/docs/src/main.css b/deps/npm/docs/src/main.css
new file mode 100644
index 0000000000..3ebdca772e
--- /dev/null
+++ b/deps/npm/docs/src/main.css
@@ -0,0 +1,167 @@
+/* http://meyerweb.com/eric/tools/css/reset/
+ v2.0 | 20110126
+ License: none (public domain)
+*/
+
+html, body, div, span, applet, object, iframe,
+h1, h2, h3, h4, h5, h6, p, blockquote, pre,
+a, abbr, acronym, address, big, cite, code,
+del, dfn, em, img, ins, kbd, q, s, samp,
+small, strike, strong, sub, sup, tt, var,
+b, u, i, center,
+dl, dt, dd, ol, ul, li,
+fieldset, form, label, legend,
+table, caption, tbody, tfoot, thead, tr, th, td,
+article, aside, canvas, details, embed,
+figure, figcaption, footer, header, hgroup,
+menu, nav, output, ruby, section, summary,
+time, mark, audio, video {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ font-size: 100%;
+ font: inherit;
+ vertical-align: baseline;
+}
+/* HTML5 display-role reset for older browsers */
+article, aside, details, figcaption, figure,
+footer, header, hgroup, menu, nav, section {
+ display: block;
+}
+body {
+ line-height: 1;
+}
+ol, ul {
+ list-style: none;
+}
+blockquote, q {
+ quotes: none;
+}
+blockquote:before, blockquote:after,
+q:before, q:after {
+ content: '';
+ content: none;
+}
+table {
+ border-collapse: collapse;
+ border-spacing: 0;
+}
+
+[hidden] {
+ display: none;
+}
+
+html {
+ font-family: 'Poppins', sans-serif;
+}
+
+* {
+ box-sizing: border-box;
+}
+
+/* Custom Styles */
+
+p, li {
+ font-size: 15px;
+ line-height: 1.7;
+ font-weight: 300;
+}
+
+p {
+ padding: 10px 0;
+}
+
+ul {
+ padding: 10px 0;
+}
+
+strong {
+ font-weight: bold;
+ color: #cc33ff;
+}
+
+li {
+ list-style-type: disc;
+ list-style-position: inside;
+ padding: 8px 0;
+}
+
+.documentation h1 {
+ font-size: 42px;
+ font-weight: 600;
+ padding: 30px 0 10px;
+}
+
+.documentation h2 {
+ font-size: 22px;
+ font-weight: 300;
+}
+
+.documentation h3 {
+ color: #cc33ff;
+ font-size: 22px;
+ padding: 30px 0 5px;
+ font-weight: 500;
+}
+
+.documentation h4 {
+ font-weight: 600;
+ padding: 20px 0 5px;
+}
+
+.documentation p {
+ display: inline-block;
+}
+
+/* overriding some prism background styles */
+:not(pre) > code[class*="language-"], pre[class*="language-"] {
+ border-radius: 4px;
+ background-color: #413844;
+ font-size: 13px;
+}
+
+/* in text code styling */
+:not(pre) > code[class*="language-text"] {
+ background-color: #cc8bd81a;
+ color: #413844;
+ padding: 2px 6px;
+ border-radius: 0;
+ font-size: 14px;
+ font-weight: bold;
+ border-radius: 1px;
+ display: inline-block;
+}
+
+a > code[class*="language-text"], .documentation a {
+ color: #fb3b49;
+ font-weight: 600;
+}
+
+p > code[class*="language-text"] {
+ display: inline-block;
+}
+
+.documentation h1::before {
+ content: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 27 26'%3E%3Cdefs%3E%3Cstyle%3E.cls-1,.cls-2,.cls-3%7Bstroke-miterlimit:10;stroke-width:0.48px;%7D.cls-1%7Bfill:url(%23linear-gradient);stroke:url(%23linear-gradient-2);%7D.cls-2%7Bfill:url(%23linear-gradient-3);stroke:url(%23linear-gradient-4);%7D.cls-3%7Bfill:url(%23linear-gradient-5);stroke:url(%23linear-gradient-6);%7D%3C/style%3E%3ClinearGradient id='linear-gradient' x1='18.13' y1='13.48' x2='25.6' y2='13.48' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23fb8817'/%3E%3Cstop offset='0.37' stop-color='%23fb8719'/%3E%3Cstop offset='0.51' stop-color='%23fa8420'/%3E%3Cstop offset='0.61' stop-color='%23f9802c'/%3E%3Cstop offset='0.69' stop-color='%23f7793d'/%3E%3Cstop offset='0.76' stop-color='%23f47053'/%3E%3Cstop offset='0.82' stop-color='%23f1656e'/%3E%3Cstop offset='0.87' stop-color='%23ed578f'/%3E%3Cstop offset='0.92' stop-color='%23e948b5'/%3E%3Cstop offset='0.97' stop-color='%23e437de'/%3E%3Cstop offset='1' stop-color='%23e02aff'/%3E%3C/linearGradient%3E%3ClinearGradient id='linear-gradient-2' x1='17.89' y1='13.48' x2='25.84' y2='13.48' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23fb8817'/%3E%3Cstop offset='1' stop-color='%23e02aff'/%3E%3C/linearGradient%3E%3ClinearGradient id='linear-gradient-3' x1='1' y1='17.84' x2='18.69' y2='17.84' xlink:href='%23linear-gradient'/%3E%3ClinearGradient id='linear-gradient-4' x1='0.76' y1='17.84' x2='18.93' y2='17.84' xlink:href='%23linear-gradient-2'/%3E%3ClinearGradient id='linear-gradient-5' x1='1' y1='7.33' x2='20.48' y2='7.33' xlink:href='%23linear-gradient'/%3E%3ClinearGradient id='linear-gradient-6' x1='0.76' y1='7.33' x2='20.72' y2='7.33' xlink:href='%23linear-gradient-2'/%3E%3C/defs%3E%3Ctitle%3Ebox%3C/title%3E%3Cpath class='cls-1' d='M18.53,24.24a.28.28,0,0,1-.34-.41L25,14.06l-5-11a.28.28,0,1,1,.5-.23L25.58,14a.28.28,0,0,1,0,.28l-6.91,9.9A.28.28,0,0,1,18.53,24.24Z'/%3E%3Cpath class='cls-2' d='M18.53,24.24a.28.28,0,0,1-.14,0l-12-1.15A.28.28,0,0,1,6.16,23L1,11.81a.28.28,0,1,1,.5-.23l5.07,11L18,23.68,13,13a.28.28,0,1,1,.5-.23l5.12,11.12A.28.28,0,0,1,18.53,24.24Z'/%3E%3Cpath class='cls-3' d='M13.4,13.12a.25.25,0,0,1-.14,0L1.25,12a.28.28,0,0,1-.2-.44L8,1.64a.28.28,0,0,1,.25-.12l12,1.18a.28.28,0,0,1,.2.44L13.51,13A.25.25,0,0,1,13.4,13.12Z'/%3E%3C/svg%3E");
+ position: relative;
+ display: inline-block;
+ padding-right: 8px;
+ top: 3px;
+ width: 28px;
+}
+
+.active-sidebar-link {
+ background-color: #ffebff;
+}
+
+.active-navbar-link {
+ border-bottom: 3px solid #cc33ff;
+}
+
+.header-link-class {
+ margin-left: -24px;
+}
+
+.disabled-body {
+ overflow: hidden;
+}
diff --git a/deps/npm/docs/src/pages/404.js b/deps/npm/docs/src/pages/404.js
new file mode 100644
index 0000000000..5acc8fedb2
--- /dev/null
+++ b/deps/npm/docs/src/pages/404.js
@@ -0,0 +1,19 @@
+import React from 'react'
+
+import Layout from 'src/components/Layout'
+import SEO from 'src/components/seo'
+
+import {ThemeProvider} from 'styled-components'
+import {theme} from 'src/theme'
+
+const NotFoundPage = () => (
+ <ThemeProvider theme={theme}>
+ <Layout>
+ <SEO title='404: Not found' />
+ <h1>NOT FOUND</h1>
+ <p>You just hit a route that doesn&#39;t exist... the sadness.</p>
+ </Layout>
+ </ThemeProvider>
+)
+
+export default NotFoundPage
diff --git a/deps/npm/docs/src/pages/index.js b/deps/npm/docs/src/pages/index.js
new file mode 100644
index 0000000000..992aee5f06
--- /dev/null
+++ b/deps/npm/docs/src/pages/index.js
@@ -0,0 +1,23 @@
+import React from 'react'
+import Layout from 'src/components/Layout'
+import Features from 'src/components/home/Features'
+import SEO from 'src/components/seo'
+import Hero from 'src/components/home/Hero'
+import DarkBlock from 'src/components/home/DarkBlock'
+import Footer from 'src/components/home/footer'
+import {ThemeProvider} from 'styled-components'
+import {theme} from 'src/theme'
+
+const IndexPage = () => (
+ <ThemeProvider theme={theme}>
+ <Layout showSidebar={false}>
+ <SEO title='npm cli' />
+ <Hero />
+ <Features />
+ <DarkBlock />
+ <Footer />
+ </Layout>
+ </ThemeProvider>
+)
+
+export default IndexPage
diff --git a/deps/npm/docs/src/templates/Page.js b/deps/npm/docs/src/templates/Page.js
new file mode 100644
index 0000000000..bd7d6a01ca
--- /dev/null
+++ b/deps/npm/docs/src/templates/Page.js
@@ -0,0 +1,46 @@
+import React from 'react'
+import Layout from 'src/components/Layout'
+import {graphql} from 'gatsby'
+import styled, { ThemeProvider } from 'styled-components'
+import {theme} from 'src/theme'
+import FoundTypo from 'src/components/FoundTypo'
+import Scripts from 'src/components/Scripts'
+const version = require('../../../package.json').version
+
+const Content = styled.div`
+ max-width: 760px;
+ margin: auto;
+ padding: 0 30px 120px;
+`
+
+const Page = ({data}) => {
+ const pageData = data.markdownRemark
+ const html = pageData.html.replace(/(npm-)+([a-zA-Z\\.-]*)<\/h1>/g, 'npm $2</h1>')
+
+ return (
+ <ThemeProvider theme={theme}>
+ <Layout showSidebar>
+ <Content className='documentation'>
+ <div dangerouslySetInnerHTML={{
+ __html: html.replace(/@VERSION@/g, version)
+ }} />
+ <FoundTypo />
+ <Scripts />
+ </Content>
+ </Layout>
+ </ThemeProvider>
+ )
+}
+
+export default Page
+
+export const query = graphql`
+ query($slug: String!) {
+ markdownRemark(fields: { slug: { eq: $slug } }) {
+ html
+ fields {
+ slug
+ }
+ }
+ }
+`
diff --git a/deps/npm/docs/src/theme.js b/deps/npm/docs/src/theme.js
new file mode 100644
index 0000000000..ce1776d9c6
--- /dev/null
+++ b/deps/npm/docs/src/theme.js
@@ -0,0 +1,50 @@
+export const breakpoints = {
+ PHABLET: '32em',
+ TABLET: '48em',
+ PC: '64em',
+ WIDESCREEN: '80em'
+}
+
+export const colors = {
+ white: '#ffffff',
+ lightGray: '#f2f2f2',
+ darkGray: '#767676',
+ offWhite: '#e8d9d94d',
+ black: '#231f20',
+ purpleBlack: '#413844',
+ purple: '#cc33ff',
+ lightPurple: '#ffebff',
+ red: '#fb3b49'
+}
+
+export const space = [0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80]
+
+export const theme = {
+ breakpoints: {
+ PHABLET: ' 32em',
+ TABLET: '48em',
+ PC: '64em',
+ WIDESCREEN: '80em'
+ },
+ fontSizes: [
+ 12, 14, 16, 20, 24, 32, 48, 64
+ ],
+ colors: {
+ white: '#ffffff',
+ lightGray: '#f2f2f2',
+ darkGray: '#767676',
+ offWhite: '#e8d9d94d',
+ black: '#231f20',
+ purpleBlack: '#413844',
+ purple: '#cc33ff',
+ lightPurple: '#ffebff',
+ red: '#fb3b49'
+ },
+ space: [
+ 0, 8, 16, 24, 32, 40, 48, 56, 64, 72, 80
+ ],
+ fonts: {
+ poppins: 'Poppins, sans-serif',
+ inconsolata: 'Inconsolata, sans-serif'
+ }
+}