├── .babelrc
├── .github
└── FUNDING.yml
├── .gitignore
├── README.md
├── package-lock.json
├── package.json
├── public
├── favicon.ico
├── images
│ ├── 1.png
│ ├── 2.png
│ ├── 3.jpg
│ ├── 4.jpg
│ ├── profile.jpeg
│ └── projects.jpeg
└── vercel.svg
├── src
├── components
│ ├── Acomplishments
│ │ ├── Acomplishments.js
│ │ └── AcomplishmentsStyles.js
│ ├── BackgrooundAnimation
│ │ └── BackgroundAnimation.js
│ ├── Footer
│ │ ├── Footer.js
│ │ └── FooterStyles.js
│ ├── Header
│ │ ├── Header.js
│ │ └── HeaderStyles.js
│ ├── Hero
│ │ ├── Hero.js
│ │ └── HeroStyles.js
│ ├── NavDropDown
│ │ ├── NavDropDown.js
│ │ └── index.js
│ ├── Projects
│ │ ├── Projects.js
│ │ └── ProjectsStyles.js
│ ├── Technologies
│ │ ├── Technologies.js
│ │ └── TechnologiesStyles.js
│ └── TimeLine
│ │ ├── TimeLine.js
│ │ └── TimeLineStyles.js
├── constants
│ └── constants.js
├── layout
│ ├── Layout.js
│ └── LayoutStyles.js
├── pages
│ ├── _app.js
│ ├── _document.js
│ ├── api
│ │ └── hello.js
│ └── index.js
├── styles
│ ├── GlobalComponents
│ │ ├── Button.js
│ │ └── index.js
│ ├── globals.js
│ └── theme.js
└── themes
│ └── default.js
└── yarn.lock
/.babelrc:
--------------------------------------------------------------------------------
1 | {
2 | "presets": ["next/babel"],
3 | "plugins": [["styled-components", { "ssr": true }]]
4 | }
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | github: adrianhajdin
2 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # next.js
12 | /.next/
13 | /out/
14 |
15 | # production
16 | /build
17 |
18 | # misc
19 | .DS_Store
20 | *.pem
21 |
22 | # debug
23 | npm-debug.log*
24 | yarn-debug.log*
25 | yarn-error.log*
26 |
27 | # local env files
28 | .env.local
29 | .env.development.local
30 | .env.test.local
31 | .env.production.local
32 |
33 | # vercel
34 | .vercel
35 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ## Personal Portfolio
2 |
3 | ### [Live Site](https://jsmasterypro.com)
4 |
5 | 
6 |
7 | ### [🌟 Become a top 1% Next.js 13 developer in only one course](https://jsmastery.pro/next13)
8 | ### [🚀 Land your dream programming job in 6 months](https://jsmastery.pro/masterclass)
9 |
10 | This is a code repository for the corresponding video tutorial. Your portfolio is your resume and your business card.
11 |
12 | In this video, we will create a full Personal Development Portfolio. We're going to use React and Next.js.
13 |
14 | Setup:
15 | - run ```npm i && npm start```
16 |
17 | ## Launch your development career with project-based coaching - https://www.jsmastery.pro
18 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "portfolio_nextjs",
3 | "version": "0.1.0",
4 | "private": true,
5 | "scripts": {
6 | "dev": "next dev",
7 | "build": "next build && next export",
8 | "start": "next start"
9 | },
10 | "dependencies": {
11 | "next": "10.2.3",
12 | "react": "17.0.2",
13 | "react-dom": "17.0.2",
14 | "styled-components": "^5.3.0",
15 | "styled-normalize": "^8.0.7",
16 | "react-icons": "^4.2.0"
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adrianhajdin/portfolio_website/beef893d5e9d5fa297edb51580ed41fe532f3d5b/public/favicon.ico
--------------------------------------------------------------------------------
/public/images/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adrianhajdin/portfolio_website/beef893d5e9d5fa297edb51580ed41fe532f3d5b/public/images/1.png
--------------------------------------------------------------------------------
/public/images/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adrianhajdin/portfolio_website/beef893d5e9d5fa297edb51580ed41fe532f3d5b/public/images/2.png
--------------------------------------------------------------------------------
/public/images/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adrianhajdin/portfolio_website/beef893d5e9d5fa297edb51580ed41fe532f3d5b/public/images/3.jpg
--------------------------------------------------------------------------------
/public/images/4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adrianhajdin/portfolio_website/beef893d5e9d5fa297edb51580ed41fe532f3d5b/public/images/4.jpg
--------------------------------------------------------------------------------
/public/images/profile.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adrianhajdin/portfolio_website/beef893d5e9d5fa297edb51580ed41fe532f3d5b/public/images/profile.jpeg
--------------------------------------------------------------------------------
/public/images/projects.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/adrianhajdin/portfolio_website/beef893d5e9d5fa297edb51580ed41fe532f3d5b/public/images/projects.jpeg
--------------------------------------------------------------------------------
/public/vercel.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/components/Acomplishments/Acomplishments.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | import { Section, SectionDivider, SectionTitle } from '../../styles/GlobalComponents';
4 | import { Box, Boxes, BoxNum, BoxText } from './AcomplishmentsStyles';
5 |
6 | const data = [
7 | { number: 20, text: 'Open Source Projects'},
8 | { number: 1000, text: 'Students', },
9 | { number: 1900, text: 'Github Followers', },
10 | { number: 5000, text: 'Github Stars', }
11 | ];
12 |
13 | const Acomplishments = () => (
14 |
15 | Personal Achievements
16 |
17 | {data.map((card, index) => (
18 |
19 | {`${card.number}+`}
20 | {card.text}
21 |
22 | ))}
23 |
24 |
25 |
26 | );
27 |
28 | export default Acomplishments;
29 |
--------------------------------------------------------------------------------
/src/components/Acomplishments/AcomplishmentsStyles.js:
--------------------------------------------------------------------------------
1 | import styled from "styled-components"
2 |
3 | export const Boxes = styled.div`
4 | width: 100%;
5 | display: grid;
6 | grid-template-columns: repeat(4, 1fr);
7 | gap: 24px;
8 | margin: 24px 0 40px;
9 |
10 | @media ${props => props.theme.breakpoints.md}{
11 | gap: 16px;
12 | margin: 20px 0 32px;
13 | grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
14 | }
15 |
16 | @media ${props => props.theme.breakpoints.sm}{
17 | display: grid;
18 | grid-template-columns: repeat(2, 1fr);
19 | gap: 10px;
20 | max-width: 500px;
21 | margin: 24px auto;
22 | }
23 | `
24 |
25 | export const Box = styled.div`
26 | background: #212D45;
27 | border-radius: 12px;
28 | height: 144px;
29 | padding: 24px;
30 | @media ${props => props.theme.breakpoints.lg} {
31 | height: 210px;
32 |
33 | }
34 |
35 | @media ${props => props.theme.breakpoints.md} {
36 | height: 135px;
37 | padding: 16px;
38 | }
39 |
40 | @media ${props => props.theme.breakpoints.sm} {
41 | height: 110px;
42 | padding: 12px;
43 |
44 | &:nth-child(2n){
45 | grid-row:2;
46 | }
47 | }
48 | `
49 | export const BoxNum = styled.h5`
50 | font-style: normal;
51 | font-weight: 600;
52 | font-size: 36px;
53 | line-height: 40px;
54 | letter-spacing: 0.01em;
55 | color: #FFFFFF;
56 | margin-bottom: 8px;
57 |
58 | @media ${props => props.theme.breakpoints.md} {
59 | font-size: 28px;
60 | line-height: 32px;
61 | }
62 | @media ${props => props.theme.breakpoints.sm} {
63 | font-size: 24px;
64 | line-height: 26px;
65 | }
66 | `
67 |
68 | export const BoxText = styled.p`
69 | font-style: normal;
70 | font-weight: normal;
71 | font-size: 18px;
72 | line-height: 24px;
73 | letter-spacing: 0.02em;
74 | color: rgba(255, 255, 255, 0.75);
75 |
76 | @media ${props => props.theme.breakpoints.md}{
77 | font-size: 16px;
78 | line-height: 20px;
79 | };
80 |
81 | @media ${props => props.theme.breakpoints.sm} {
82 | font-size: 10px;
83 | line-height: 14px;
84 | }
85 | `
86 |
87 | export const Join = styled.div`
88 | display: flex;
89 | max-width: 1040px;
90 | justify-content: center;
91 | align-items: center;
92 | padding-bottom: 80px;
93 |
94 | @media ${props => props.theme.breakpoints.md}{
95 | display: flex;
96 | justify-content: center;
97 | padding-bottom: 64px;
98 | }
99 |
100 | @media ${props => props.theme.breakpoints.sm}{
101 | display: flex;
102 | flex-direction: column;
103 | align-items: center;
104 | padding-bottom: 32px;
105 | }
106 | `
107 |
108 | export const JoinText = styled.h5`
109 | display: flex;
110 | font-size: 24px;
111 | line-height: 40px;
112 | letter-spacing: 0.02em;
113 | color: rgba(255, 255, 255, 0.5);
114 |
115 | @media ${props => props.theme.breakpoints.md}{
116 | line-height: 32px;
117 | font-size: 20px;
118 | };
119 |
120 | @media ${props => props.theme.breakpoints.sm}{
121 | font-size: 16px;
122 | line-height: 24px;
123 | margin: 0 0 16px;
124 | }
125 | `
126 |
127 | export const IconContainer = styled.div`
128 | display: flex;
129 |
130 | @media ${props => props.theme.breakpoints.sm}{
131 | width: 160px;
132 | justify-content: space-between;
133 | }
134 | `
135 |
--------------------------------------------------------------------------------
/src/components/BackgrooundAnimation/BackgroundAnimation.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | const BackgroundAnimation = () => (
4 |
5 |
362 |
363 | );
364 |
365 | export default BackgroundAnimation;
--------------------------------------------------------------------------------
/src/components/Footer/Footer.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { AiFillGithub, AiFillInstagram, AiFillLinkedin } from 'react-icons/ai';
3 |
4 | import { SocialIcons } from '../Header/HeaderStyles';
5 | import { CompanyContainer, FooterWrapper, LinkColumn, LinkItem, LinkList, LinkTitle, Slogan, SocialContainer, SocialIconsContainer } from './FooterStyles';
6 |
7 | const Footer = () => {
8 | return (
9 |
10 |
11 |
12 | Call
13 | 314-343-3432
14 |
15 |
16 | Email
17 |
18 | contact@jsmastery.com
19 |
20 |
21 |
22 |
23 |
24 | Innovating one project at a time
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 | );
40 | };
41 |
42 | export default Footer;
43 |
--------------------------------------------------------------------------------
/src/components/Footer/FooterStyles.js:
--------------------------------------------------------------------------------
1 | import styled from "styled-components"
2 |
3 | export const FooterWrapper = styled.section`
4 | width: calc(100vw - 96px);
5 | max-width: 1040px;
6 | padding: 2rem 48px 40px;
7 | margin: 1rem auto;
8 | box-sizing: content-box;
9 |
10 |
11 | @media ${props => props.theme.breakpoints.sm} {
12 | padding: 0 16px 48px;
13 | width: calc(100vw - 32px);
14 | }
15 | `
16 |
17 | export const LinkItem = styled.a`
18 | font-size: 18px;
19 | line-height: 30px;
20 | color: rgba(255, 255, 255, 0.75);
21 | margin-bottom: 16px;
22 | transition: .3s ease;
23 | position: relative;
24 | left: 0;
25 |
26 | &:hover {
27 | color: #fff;
28 | left: 6px;
29 | }
30 |
31 | @media ${props => props.theme.breakpoints.md} {
32 | font-size: 16px;
33 | line-height: 28px;
34 | display: flex;
35 | }
36 |
37 | @media ${props => props.theme.breakpoints.sm} {
38 | font-size: 8px;
39 | line-height: 14px;
40 | margin-bottom: 8px;
41 | display: flex;
42 | align-items: center;
43 | }
44 | `
45 |
46 | export const SocialIconsContainer = styled.div`
47 | max-width: 1040px;
48 | display: flex;
49 | justify-content: space-between;
50 |
51 | @media ${props => props.theme.breakpoints.md}{
52 | display: flex;
53 | justify-content: space-between;
54 | }
55 |
56 | @media ${props => props.theme.breakpoints.sm}{
57 | display: flex;
58 | width: 100%;
59 | flex-direction: column;
60 | }
61 | `
62 |
63 | export const CompanyContainer = styled.div`
64 | display: flex;
65 | align-items:baseline;
66 | flex-wrap: wrap;
67 | margin-right: auto;
68 |
69 |
70 | @media ${props => props.theme.breakpoints.md}{
71 | flex-direction: column;
72 | align-items: baseline;
73 | }
74 |
75 | @media ${props => props.theme.breakpoints.sm}{
76 | display: flex;
77 | flex-direction: column;
78 | margin: 0 0 32px;
79 | align-items: center;
80 | }
81 | `
82 |
83 |
84 | export const Slogan = styled.p`
85 | color: rgba(255, 255, 255, 0.5);
86 | min-width: 280px;
87 | letter-spacing: 0.02em;
88 | font-size: 18px;
89 | line-height: 30px;
90 | padding: 1rem;
91 |
92 | @media ${props => props.theme.breakpoints.md}{
93 | font-size: 16px;
94 | line-height: 28px;
95 | }
96 |
97 | @media ${props => props.theme.breakpoints.sm}{
98 | line-height: 22px;
99 | font-size: 14px;
100 | min-width: 100px;
101 | }
102 | `
103 |
104 | export const SocialContainer = styled.div`
105 | display: flex;
106 | align-items: center;
107 |
108 | @media ${props => props.theme.breakpoints.md}{
109 | justify-content: center;
110 | padding-right: 16px;
111 | flex-wrap: wrap;
112 | }
113 | `
114 |
115 |
116 | export const LinkList = styled.ul`
117 | border-top: 1px solid rgba(255, 255, 255, 0.1);
118 | display: grid;
119 | grid-template-columns: repeat(3, minmax(85px, 220px));
120 | gap: 40px;
121 | padding: 40px 0 28px;
122 |
123 | @media ${props => props.theme.breakpoints.lg} {
124 | padding: 32px 0 16px;
125 | }
126 |
127 | @media ${props => props.theme.breakpoints.md} {
128 | width: 100%;
129 | padding: 32px 0 16px;
130 | gap: 16px;
131 | }
132 | @media ${props => props.theme.breakpoints.sm} {
133 | width: 100%;
134 | padding: 32px 4px 16px;
135 | gap: 5px;
136 | }
137 | `
138 |
139 | export const LinkColumn = styled.div`
140 | display: flex;
141 | flex-direction: column;
142 | max-width: 220px;
143 | width: 100%;
144 | `
145 | export const LinkTitle = styled.h4`
146 | font-style: normal;
147 | font-weight: 600;
148 | font-size: 12px;
149 | line-height: 24px;
150 | text-transform: uppercase;
151 | color: rgba(255, 255, 255, 0.4);
152 | margin-bottom: 16px;
153 |
154 | @media ${props => props.theme.breakpoints.sm} {
155 | font-size: 10px;
156 | line-height: 12px;
157 | margin-bottom: 8px;
158 | }
159 | `
160 |
--------------------------------------------------------------------------------
/src/components/Header/Header.js:
--------------------------------------------------------------------------------
1 | import Link from 'next/link';
2 | import React from 'react';
3 | import { AiFillGithub, AiFillInstagram, AiFillLinkedin } from 'react-icons/ai';
4 | import { DiCssdeck } from 'react-icons/di';
5 |
6 | import { Container, Div1, Div2, Div3, NavLink, SocialIcons } from './HeaderStyles';
7 |
8 | const Header = () => (
9 |
10 |
11 |
12 |
13 | Portfolio
14 |
15 |
16 |
17 |
18 |
19 |
20 | Projects
21 |
22 |
23 |
24 |
25 | Technologies
26 |
27 |
28 |
29 |
30 | About
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 | );
47 |
48 | export default Header;
49 |
--------------------------------------------------------------------------------
/src/components/Header/HeaderStyles.js:
--------------------------------------------------------------------------------
1 | import { IoIosArrowDropdown } from 'react-icons/io';
2 | import styled from 'styled-components';
3 |
4 | export const Container = styled.div`
5 | display: grid;
6 | grid-template-columns: repeat(5, 1fr);
7 | grid-template-rows: 1fr;
8 | grid-column-gap: 2rem;
9 | padding: 1rem;
10 | padding-top: 2rem;
11 |
12 | @media ${(props) => props.theme.breakpoints.sm} {
13 | display: grid;
14 | grid-template-columns: repeat(5, 1fr);
15 | grid-template-rows: repeat(2, 60px);
16 | grid-column-gap: 0.5rem;
17 | grid-row-gap: 0.5rem;
18 | }
19 | `;
20 | export const Div1 = styled.div`
21 | grid-area: 1 / 1 / 2 / 2;
22 | display: flex;
23 | flex-direction: row;
24 | align-content: center;
25 | @media ${(props) => props.theme.breakpoints.sm} {
26 | grid-area: 1 / 1 / 2 / 3;
27 | }
28 | `;
29 | export const Div2 = styled.div`
30 | grid-area: 1 / 2 / 2 / 4;
31 | display: flex;
32 | justify-content: space-around;
33 | @media ${(props) => props.theme.breakpoints.sm} {
34 | grid-area: 2 / 2 / 3 / 5;
35 | }
36 | `;
37 | export const Div3 = styled.div`
38 | grid-area: 1 / 5 / 2 / 6;
39 | display: flex;
40 | justify-content: space-around;
41 | align-items: center;
42 | @media ${(props) => props.theme.breakpoints.sm} {
43 | align-items: center;
44 | grid-area: 1 / 4 / 2 / 6;
45 | }
46 | `;
47 |
48 | // Navigation Links
49 | export const NavLink = styled.a`
50 | font-size: 2rem;
51 | line-height: 32px;
52 | color: rgba(255, 255, 255, 0.75);
53 | transition: 0.4s ease;
54 | &:hover {
55 | color: #fff;
56 | opacity: 1;
57 | cursor: pointer;
58 | }
59 | @media ${(props) => props.theme.breakpoints.sm} {
60 | padding: 0.5rem;
61 | }
62 | `;
63 |
64 | /// DropDown Contact
65 | export const ContactDropDown = styled.button`
66 | border: none;
67 | display: flex;
68 | position: relative;
69 | background: none;
70 | font-size: 1.7rem;
71 |
72 | line-height: 32px;
73 | color: rgba(255, 255, 255, 0.75);
74 | cursor: pointer;
75 | transition: 0.3s ease;
76 |
77 | &:focus {
78 | outline: none;
79 | }
80 | &:hover {
81 | color: #fff;
82 | }
83 |
84 | @media ${(props) => props.theme.breakpoints.sm} {
85 | padding: 0.4rem 0;
86 | }
87 | @media ${(props) => props.theme.breakpoints.md} {
88 | padding: 0;
89 | }
90 | `;
91 |
92 | export const NavProductsIcon = styled(IoIosArrowDropdown)`
93 | margin-left: 8px;
94 | display: flex;
95 | align-self: center;
96 | transition: 0.3s ease;
97 | opacity: ${({ isOpen }) => (isOpen ? '1' : '.75')};
98 | transform: ${({ isOpen }) => (isOpen ? 'scaleY(-1)' : 'scaleY(1)')};
99 |
100 | &:hover {
101 | opacity: 1;
102 | }
103 |
104 | @media ${(props) => props.theme.breakpoints.sm} {
105 | margin: 2px 0 0 2px;
106 | width: 15px;
107 | }
108 | `;
109 |
110 |
111 | // Social Icons
112 |
113 | export const SocialIcons = styled.a`
114 | transition: 0.3s ease;
115 | color: white;
116 | border-radius: 50px;
117 | padding: 8px;
118 | &:hover {
119 | background-color: #212d45;
120 | transform: scale(1.2);
121 | cursor: pointer;
122 |
123 | }
124 | `
--------------------------------------------------------------------------------
/src/components/Hero/Hero.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | import { Section, SectionText, SectionTitle } from '../../styles/GlobalComponents';
4 | import Button from '../../styles/GlobalComponents/Button';
5 | import { LeftSection } from './HeroStyles';
6 |
7 | const Hero = (props) => (
8 | <>
9 |
10 |
11 |
12 | Welcome To
13 | My Personal Portfolio
14 |
15 |
16 | The purpose of JavaScript Mastery is to help aspiring and established developers to take their development skills to the next level and build awesome apps.
17 |
18 |
19 |
20 |
21 | >
22 | );
23 |
24 | export default Hero;
--------------------------------------------------------------------------------
/src/components/Hero/HeroStyles.js:
--------------------------------------------------------------------------------
1 | import styled from 'styled-components';
2 |
3 | export const LeftSection = styled.div`
4 | width: 100%;
5 | @media ${(props) => props.theme.breakpoints.sm} {
6 | width: 80%;
7 | display: flex;
8 | flex-direction: column;
9 |
10 | margin: 0 auto;
11 | }
12 | @media ${(props) => props.theme.breakpoints.md} {
13 | width: 100%;
14 | display: flex;
15 | flex-direction: column;
16 |
17 | margin: 0 auto;
18 | }
19 | `;
20 |
--------------------------------------------------------------------------------
/src/components/NavDropDown/NavDropDown.js:
--------------------------------------------------------------------------------
1 | import styled from 'styled-components'
2 |
3 | export const DropDownContainer = styled.div`
4 | position: absolute;
5 | display: flex;
6 | flex-direction: column;
7 | right: -25%;
8 | top: 40px;
9 | width: 280px;
10 | background-color: #fff;
11 | border-radius: 8px;
12 | z-index: 100;
13 | padding: 4px 0;
14 | cursor: default;
15 | overflow: hidden;
16 | transition: 0.3s ease;
17 | visibility: ${({ active }) => active ? 'visible' : 'hidden'};
18 | opacity: ${({ active }) => active ? '1' : '0'};
19 | transform-origin: top;
20 | transform: ${({ active }) => active ? 'scaleY(1)' : 'scaleY(.3)'};
21 |
22 | @media ${(props) => props.theme.breakpoints.md} {
23 | top: 32px;
24 | }
25 | @media ${(props) => props.theme.breakpoints.sm} {
26 | top: 24px;
27 | }
28 | `
29 | export const DropDownItem = styled.a`
30 | width: 100%;
31 | display: flex;
32 | align-items: flex-start;
33 | cursor: pointer;
34 | transition: .3s ease;
35 | padding: 12px 16px;
36 |
37 | &:hover {
38 | transform: scale(1.05);
39 | background-color: #eee;
40 | box-shadow: 0 3px 6px 3px rgba(0,0,0,.3);
41 | }
42 |
43 | &:nth-of-type(2n):hover {
44 | box-shadow: 0 0 8px 4px rgba(0,0,0,.3);
45 | }
46 |
47 | &:nth-of-type(3n):hover {
48 | box-shadow: 0 -3px 6px 3px rgba(0,0,0,.3);
49 | }
50 | `
51 |
52 | export const DropDownIcon = styled.div`
53 | width: 32px;
54 | height: 32px;
55 | margin-right: 16px;
56 | `
57 |
58 | export const DropDownTextContainer = styled.div`
59 | display: flex;
60 | flex-direction: column;
61 | `
62 |
63 | export const DropDownItemTitle = styled.h2`
64 | color: #0f1624;
65 | font-size: 18px;
66 | line-height: 26px;
67 | text-align: start;
68 | `
69 |
70 | export const DropDownItemDesc = styled.p`
71 | color: #0f1624;
72 | opacity: 0.5;
73 | font-size: 14px;
74 | line-height: 22px;
75 | text-align: start;
76 | `
--------------------------------------------------------------------------------
/src/components/NavDropDown/index.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 | import { AiFillPhone, AiOutlineMail } from 'react-icons/ai'
3 | import { FaLocationArrow } from "react-icons/fa"
4 |
5 | import { DropDownContainer, DropDownIcon, DropDownItem, DropDownItemDesc, DropDownItemTitle, DropDownTextContainer } from './NavDropDown'
6 |
7 | const NavDropDown = (props) => (
8 |
9 |
10 |
11 |
12 |
13 |
14 | Phone
15 | Let's get together and have a chat?'
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 | Email
24 | If you want to talk jus send a message and I'll get back
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 | Address
33 | 1405, Angelus Dr, Florissant. Mo
34 |
35 |
36 |
37 | );
38 |
39 | export default NavDropDown
40 |
--------------------------------------------------------------------------------
/src/components/Projects/Projects.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 |
3 | import { BlogCard, CardInfo, ExternalLinks, GridContainer, HeaderThree, Hr, Tag, TagList, TitleContent, UtilityList, Img } from './ProjectsStyles';
4 | import { Section, SectionDivider, SectionTitle } from '../../styles/GlobalComponents';
5 | import { projects } from '../../constants/constants';
6 |
7 | const Projects = () => (
8 |
9 |
10 | Projects
11 |
12 | {projects.map((p, i) => {
13 | return (
14 |
15 |
16 |
17 | {p.title}
18 |
19 |
20 | {p.description}
21 |
22 | Stack
23 |
24 | {p.tags.map((t, i) => {
25 | return {t};
26 | })}
27 |
28 |
29 |
30 | Code
31 | Source
32 |
33 |
34 | );
35 | })}
36 |
37 |
38 | );
39 |
40 | export default Projects;
--------------------------------------------------------------------------------
/src/components/Projects/ProjectsStyles.js:
--------------------------------------------------------------------------------
1 | import styled from 'styled-components';
2 |
3 | export const Img = styled.img`
4 | width:100%;
5 | height:100%;
6 | object-fit: cover;
7 | overflow: hidden;
8 | `
9 |
10 | export const GridContainer = styled.section`
11 | display: grid;
12 | grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
13 | padding: 3rem;
14 | place-items: center;
15 | column-gap: 2rem;
16 | row-gap: 3rem;
17 | @media ${(props) => props.theme.breakpoints.sm} {
18 | display: flex;
19 | flex-direction: column;
20 | padding: 2rem;
21 | padding-bottom: 0;
22 | }
23 |
24 | `
25 | export const BlogCard = styled.div`
26 | border-radius: 10px;
27 | box-shadow: 3px 3px 20px rgba(80, 78, 78, 0.5);
28 | text-align: center;
29 | width: 400px;
30 | @media ${(props) => props.theme.breakpoints.sm} {
31 | width: 100%;
32 | }
33 | `;
34 | export const TitleContent = styled.div`
35 | text-align: center;
36 | z-index: 20;
37 | width: 100%;
38 |
39 | `;
40 |
41 |
42 | export const HeaderThree = styled.h3`
43 | font-weight: 500;
44 | letter-spacing: 2px;
45 | color: #9cc9e3;
46 | padding: .5rem 0;
47 | font-size: ${(props) => props.title ? '3rem' : '2rem'};
48 | `;
49 |
50 | export const Hr = styled.hr`
51 | width: 50px;
52 | height: 3px;
53 | margin: 20px auto;
54 | border: 0;
55 | background: #d0bb57;
56 | `;
57 |
58 | export const Intro = styled.div`
59 | width: 170px;
60 | margin: 0 auto;
61 | color: #dce3e7;
62 | font-family: 'Droid Serif', serif;
63 | font-size: 13px;
64 | font-style: italic;
65 | line-height: 18px;
66 | `;
67 |
68 |
69 | export const CardInfo = styled.p`
70 | width: 100%;
71 | padding: 0 50px;
72 | color: #e4e6e7;
73 | font-style: 2rem;
74 | line-height: 24px;
75 | text-align: justify;
76 | @media ${(props) => props.theme.breakpoints.sm} {
77 | padding:.3rem
78 |
79 | }
80 | `;
81 |
82 |
83 | export const UtilityList = styled.ul`
84 | list-style-type: none;
85 | padding: 0;
86 | display: flex;
87 | justify-content: space-around;
88 | margin: 2.5rem 0;
89 | `;
90 |
91 | export const ExternalLinks = styled.a`
92 | color:#d4c0c0;
93 | font-size: 1.6rem;
94 | padding:1rem 1.5rem;
95 | background: #6b3030;
96 | border-radius: 15px;
97 | transition: 0.5s;
98 | &:hover{
99 | background: #801414;
100 |
101 | }
102 | `;
103 |
104 | export const TagList = styled.ul`
105 | display: flex;
106 | justify-content: space-around;
107 | padding: 2rem;
108 | `
109 | export const Tag = styled.li`
110 | color: #d8bfbf;
111 | font-size: 1.5rem;
112 | `
--------------------------------------------------------------------------------
/src/components/Technologies/Technologies.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import { DiFirebase, DiReact, DiZend } from 'react-icons/di';
3 | import { Section, SectionDivider, SectionText, SectionTitle } from '../../styles/GlobalComponents';
4 | import { List, ListContainer, ListItem, ListParagraph, ListTitle } from './TechnologiesStyles';
5 |
6 | const Technologies = () => (
7 |
8 |
9 | Technologies
10 |
11 | I've worked with a range a technologies in the web development world.
12 | From Back-end To Design
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 | Front-End
21 |
22 | Experiece with
23 | React.js
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 | Back-End
33 |
34 | Experience with
35 | Node and Databases
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 | UI/UX
45 |
46 | Experience with
47 | tools like Figma
48 |
49 |
50 |
51 |
52 |
53 |
54 | );
55 |
56 | export default Technologies;
57 |
--------------------------------------------------------------------------------
/src/components/Technologies/TechnologiesStyles.js:
--------------------------------------------------------------------------------
1 | import styled from 'styled-components'
2 |
3 | export const ImageContainer = styled.div`
4 | text-align: center;
5 | background-image: radial-gradient(50% 50% at 50% 50%, rgba(79, 108, 176, 0.25) 53.8%, rgba(79, 108, 176, 0) 100%);
6 | width: 100%;
7 | padding: 60px;
8 | margin-top: 48px;
9 | display: flex;
10 | flex-direction: column;
11 | align-items: center;
12 | justify-content: center;
13 |
14 | @media ${props => props.theme.breakpoints.lg} {
15 | background-image: none;
16 | padding: 0;
17 | margin-top: 40px;
18 | }
19 | @media ${props => props.theme.breakpoints.md} {
20 | background-image: none;
21 | padding: 0;
22 | margin-top: 16px;
23 | }
24 | `
25 |
26 | export const MainImage = styled.img`
27 | width: 100%;
28 | `
29 |
30 | export const List = styled.ul`
31 | list-style-type: none;
32 | display: grid;
33 | grid-template-columns: repeat(3, 1fr);
34 | gap: 40px;
35 | margin: 3rem 0;
36 |
37 | @media ${props => props.theme.breakpoints.lg}{
38 | margin: 64px 0;
39 | }
40 |
41 | @media ${props => props.theme.breakpoints.md}{
42 | margin: 64px 0;
43 | gap: 24px
44 | }
45 |
46 | @media ${props => props.theme.breakpoints.sm}{
47 | display: flex;
48 | flex-direction: column;
49 | margin: 32px 0;
50 | }
51 | `
52 |
53 | export const ListContainer = styled.div`
54 | display: flex;
55 | flex-direction: column;
56 |
57 | @media ${props => props.theme.breakpoints.sm}{
58 | display: flex;
59 | margin-left: 18px;
60 | }
61 | `
62 |
63 | export const ListTitle = styled.h4`
64 | font-weight: 700;
65 | font-size: 28px;
66 | line-height: 32px;
67 | letter-spacing: 0.02em;
68 | color: #FFFFFF;
69 | margin-bottom: 8px;
70 |
71 | @media ${props => props.theme.breakpoints.md}{
72 | font-size: 24px;
73 | line-height: 28px;
74 | }
75 |
76 | @media ${props => props.theme.breakpoints.sm}{
77 | font-size: 20px;
78 | line-height: 28px;
79 | letter-spacing: 0.02em;
80 | margin-bottom: 4px;
81 | }
82 | `
83 |
84 | export const ListParagraph = styled.p`
85 | font-size: 18px;
86 | line-height: 30px;
87 | color: rgba(255, 255, 255, 0.75);
88 |
89 | @media ${props => props.theme.breakpoints.md}{
90 | font-size: 16px;
91 | line-height: 28px;
92 | }
93 |
94 | @media ${props => props.theme.breakpoints.sm}{
95 | font-size: 14px;
96 | line-height: 22px;
97 | }
98 | `
99 |
100 | export const ListItem = styled.li`
101 | max-width: 320px;
102 | display: flex;
103 | flex-direction: column;
104 |
105 | @media ${props => props.theme.breakpoints.md}{
106 | max-width: 203px;
107 | }
108 |
109 | @media ${props => props.theme.breakpoints.sm}{
110 | margin-bottom: 14px;
111 | max-width: 320px;
112 | flex-direction: row;
113 | }
114 | `
115 |
116 | export const ListIcon = styled.img`
117 | display: block;
118 | width: 48px;
119 | height: 48px;
120 | margin-bottom: 10px;
121 |
122 | @media ${props => props.theme.breakpoints.md}{
123 | width: 40px;
124 | height: 40px;
125 | margin-bottom: 8px;
126 | }
127 |
128 | @media ${props => props.theme.breakpoints.sm}{
129 | width: 32px;
130 | height: 32px;
131 | margin-bottom: 0px;
132 | }
133 | `
134 |
--------------------------------------------------------------------------------
/src/components/TimeLine/TimeLine.js:
--------------------------------------------------------------------------------
1 | import React, { useState, useRef, useEffect } from 'react';
2 |
3 | import { CarouselButton, CarouselButtonDot, CarouselButtons, CarouselContainer, CarouselItem, CarouselItemImg, CarouselItemText, CarouselItemTitle, CarouselMobileScrollNode } from './TimeLineStyles';
4 | import { Section, SectionDivider, SectionText, SectionTitle } from '../../styles/GlobalComponents';
5 | import { TimeLineData } from '../../constants/constants';
6 |
7 | const TOTAL_CAROUSEL_COUNT = TimeLineData.length;
8 |
9 | const Timeline = () => {
10 | const [activeItem, setActiveItem] = useState(0);
11 | const carouselRef = useRef();
12 |
13 | const scroll = (node, left) => {
14 | return node.scrollTo({ left, behavior: 'smooth' });
15 | }
16 |
17 | const handleClick = (e, i) => {
18 | e.preventDefault();
19 |
20 | if (carouselRef.current) {
21 | const scrollLeft = Math.floor(carouselRef.current.scrollWidth * 0.7 * (i / TimeLineData.length));
22 |
23 | scroll(carouselRef.current, scrollLeft);
24 | }
25 | }
26 |
27 | const handleScroll = () => {
28 | if (carouselRef.current) {
29 | const index = Math.round((carouselRef.current.scrollLeft / (carouselRef.current.scrollWidth * 0.7)) * TimeLineData.length);
30 |
31 | setActiveItem(index);
32 | }
33 | }
34 |
35 | // snap back to beginning of scroll when window is resized
36 | // avoids a bug where content is covered up if coming from smaller screen
37 | useEffect(() => {
38 | const handleResize = () => {
39 | scroll(carouselRef.current, 0);
40 | }
41 |
42 | window.addEventListener('resize', handleResize);
43 | }, []);
44 |
45 | return (
46 |
47 | About Me
48 |
49 | The purpose of JavaScript Mastery is to help aspiring and established developers to take their development skills to the next level and build awesome apps.
50 |
51 |
52 | <>
53 | {TimeLineData.map((item, index) => (
54 |
57 | handleClick(e, index)}>
62 |
63 | {`${item.year}`}
64 |
70 |
77 |
78 |
85 |
86 |
91 |
92 |
93 |
94 |
95 | {item.text}
96 |
97 |
98 | ))}
99 | >
100 |
101 |
102 | {TimeLineData.map((item, index) => {
103 | return (
104 | handleClick(e, index)}
109 | type="button">
110 |
111 |
112 | );
113 | })}
114 |
115 |
116 |
117 | );
118 | };
119 |
120 | export default Timeline;
121 |
--------------------------------------------------------------------------------
/src/components/TimeLine/TimeLineStyles.js:
--------------------------------------------------------------------------------
1 |
2 | import styled from 'styled-components'
3 |
4 | export const CarouselContainer = styled.ul`
5 | max-width: 1040px;
6 | background: #0F1624;
7 | padding: 0rem;
8 | list-style:none;
9 | display: flex;
10 | justify-content: space-between;
11 | /* overflow-x: hidden; */
12 |
13 | margin-left: 32px;
14 | &:first-of-type{
15 | margin-left: 0px;
16 | }
17 |
18 | margin-bottom: 80px;
19 |
20 | //remove scrollbar
21 | scrollbar-width: none;
22 | &::-webkit-scrollbar {
23 | display: none;
24 | }
25 |
26 | @media ${props => props.theme.breakpoints.sm} {
27 | overflow-x: scroll;
28 | -webkit-overflow-scrolling: touch;
29 | scroll-snap-type: x mandatory;
30 | touch-action: pan-x;
31 | justify-content: initial;
32 | margin-bottom: 8px;
33 | }
34 | `
35 | export const CarouselMobileScrollNode = styled.div`
36 | @media ${props => props.theme.breakpoints.sm} {
37 | display: flex;
38 | min-width: ${({ final }) => final ? `120%;` : `min-content`}
39 | }
40 | `
41 |
42 | export const CarouselItem = styled.div`
43 | background: #0F1624;
44 | border-radius: 3px;
45 | max-width: 196px;
46 |
47 | @media ${props => props.theme.breakpoints.md} {
48 | max-width: 124px;
49 | }
50 |
51 | @media ${props => props.theme.breakpoints.sm} {
52 | margin-left: 32px;
53 | min-width: 120px;
54 | background: #0E131F;
55 | padding: 4px;
56 | align-content: start;
57 | scroll-snap-align: start;
58 | border-radius: 3px;
59 | overflow: visible;
60 | position: relative;
61 | height: fit-content;
62 |
63 | ${(props) => props.active === props.index ? `opacity: 1` : `opacity: 0.5`};
64 | }
65 | `
66 |
67 | export const CarouselItemTitle = styled.h4`
68 | font-weight: bold;
69 | font-size: 24px;
70 | line-height: 32px;
71 | letter-spacing: 0.02em;
72 | display: flex;
73 | /* This gradient is different due to the size of the Title container, it must transition sooner to be visible on the text */
74 | background: linear-gradient(121.57deg, #FFFFFF 10%, rgba(255, 255, 255, 0.66) 30.15%);
75 | -webkit-background-clip: text;
76 | -webkit-text-fill-color: transparent;
77 | margin-bottom: 8px;
78 |
79 | @media ${props => props.theme.breakpoints.md} {
80 | font-size: 20px;
81 | line-height: 28px;
82 | margin-bottom: 4px;
83 | }
84 |
85 | @media ${props => props.theme.breakpoints.sm} {
86 | font-size: 16px;
87 | line-height: 24px;
88 | }
89 | `
90 | export const CarouselItemImg = styled.svg`
91 | margin-left: 21px;
92 | -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0));
93 | width: 100%;
94 |
95 | @media ${props => props.theme.breakpoints.sm} {
96 | -webkit-mask-image: none;
97 | margin-left: 16px;
98 | overflow: visible;
99 | }
100 | `
101 |
102 | export const CarouselItemText = styled.p`
103 | font-size: 14px;
104 | line-height: 22px;
105 | letter-spacing: 0.02em;
106 | color: rgba(255, 255, 255, 0.75);
107 | padding-right: 16px;
108 |
109 | @media ${props => props.theme.breakpoints.md} {
110 | font-size: 12px;
111 | line-height: 18px;
112 | padding-right: 32px;
113 | }
114 | @media ${props => props.theme.breakpoints.sm} {
115 | font-size: 10px;
116 | line-height: 16px;
117 | padding-right: 0;
118 | }
119 | `
120 | export const CarouselButtons = styled.div`
121 | width: 288px;
122 |
123 | display: none;
124 | visibility: hidden;
125 |
126 | @media ${props => props.theme.breakpoints.sm} {
127 | display: flex;
128 | visibility: visible;
129 | margin-bottom: 48px;
130 | }
131 | `
132 |
133 | export const CarouselButton = styled.button`
134 | box-sizing: border-box;
135 | background: none;
136 | padding: 4px;
137 | border: none;
138 | cursor: pointer;
139 | margin-right: 4px;
140 | opacity: ${(props) => props.active === props.index ? `1` : `.33`};
141 | transform: ${(props) => props.active === props.index ? `scale(1.6)` : `scale(1)`};
142 |
143 | &:focus {
144 | outline: none;
145 | }
146 | `
147 |
148 | export const CarouselButtonDot = styled.div`
149 | background-color: white;
150 | border-radius: 10px;
151 | margin: auto;
152 | width: 3px;
153 | height: 3px;
154 | `
155 |
--------------------------------------------------------------------------------
/src/constants/constants.js:
--------------------------------------------------------------------------------
1 | export const projects = [
2 | {
3 | title: 'MERN Memories',
4 | description: "Using React, Node.js, Express & MongoDB you'll learn how to build a Full Stack MERN Application - from start to finish. The App is called Memories and it is a simple social media app that allows users to post interesting events that happened in their lives.",
5 | image: '/images/1.png',
6 | tags: ['Mongo', 'Express', 'React', 'Node'],
7 | source: 'https://google.com',
8 | visit: 'https://google.com',
9 | id: 0,
10 | },
11 | {
12 | title: 'E-Commerce',
13 | description:"While building it you're going to learn many advanced React & JavaScript topics, as well as how to use Stripe for card transactions. On top of that, at the end of the video, you will have this unique and complex webshop app that you will be able to add to your portfolio. And trust me, e-commerce applications are impressive.",
14 | image: '/images/2.png',
15 | tags: ['React', 'JavaScript'],
16 | source: 'https://google.com',
17 | visit: 'https://google.com',
18 | id: 1,
19 | },
20 | {
21 | title: 'WebRTC App',
22 | description: "This is a code repository for the corresponding YouTube video. In this tutorial, we're going to build and deploy a React Video Chat Application using WebRTC.",
23 | image: '/images/3.jpg',
24 | tags: ['React', 'WebRTC'],
25 | source: 'https://google.com',
26 | visit: 'https://google.com',
27 | id: 2,
28 | },
29 | {
30 | title: 'Unichat',
31 | description: "This is a code repository for the corresponding video tutorial. In this video, we will create a full Realtime Chat Application",
32 | image: '/images/4.jpg',
33 | tags: ['React', 'ChatEngine', 'Firebase'],
34 | source: 'https://google.com',
35 | visit: 'https://google.com',
36 | id: 3,
37 | },
38 | ];
39 |
40 | export const TimeLineData = [
41 | { year: 2017, text: 'Started my journey', },
42 | { year: 2018, text: 'Worked as a freelance developer', },
43 | { year: 2019, text: 'Founded JavaScript Mastery', },
44 | { year: 2020, text: 'Shared my projects with the world', },
45 | { year: 2021, text: 'Started my own platform', },
46 | ];
--------------------------------------------------------------------------------
/src/layout/Layout.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 |
3 | import Footer from '../components/Footer/Footer'
4 | import Header from '../components/Header/Header'
5 | import { Container } from './LayoutStyles'
6 |
7 | export const Layout = ({children}) => {
8 | return (
9 |
10 |
11 | {children}
12 |
13 |
14 | )
15 | }
16 |
--------------------------------------------------------------------------------
/src/layout/LayoutStyles.js:
--------------------------------------------------------------------------------
1 | import styled from 'styled-components';
2 |
3 | export const Container = styled.div`
4 | max-width: 1280px;
5 | width: 100%;
6 | margin: auto;
7 | `;
8 |
--------------------------------------------------------------------------------
/src/pages/_app.js:
--------------------------------------------------------------------------------
1 | import Theme from '../styles/theme';
2 |
3 | export default function App({ Component, pageProps }) {
4 | return (
5 | <>
6 |
7 |
8 |
9 | >
10 | );
11 | }
12 |
--------------------------------------------------------------------------------
/src/pages/_document.js:
--------------------------------------------------------------------------------
1 | import Document, { Head, Html, Main, NextScript } from 'next/document'
2 | import { ServerStyleSheet } from 'styled-components'
3 |
4 | export default class MyDocument extends Document {
5 | static async getInitialProps(ctx) {
6 | const sheet = new ServerStyleSheet()
7 | const originalRenderPage = ctx.renderPage
8 |
9 | try {
10 | ctx.renderPage = () =>
11 | originalRenderPage({
12 | enhanceApp: (App) => (props) =>
13 | sheet.collectStyles(),
14 | })
15 |
16 | const initialProps = await Document.getInitialProps(ctx)
17 | return {
18 | ...initialProps,
19 | styles: (
20 | <>
21 | {initialProps.styles}
22 | {sheet.getStyleElement()}
23 | >
24 | ),
25 | }
26 | } finally {
27 | sheet.seal()
28 | }
29 | }
30 | render() {
31 | return (
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 | );
42 | }
43 | }
--------------------------------------------------------------------------------
/src/pages/api/hello.js:
--------------------------------------------------------------------------------
1 | // Next.js API route support: https://nextjs.org/docs/api-routes/introduction
2 |
3 | export default (req, res) => {
4 | res.status(200).json({ name: 'John Doe' })
5 | }
--------------------------------------------------------------------------------
/src/pages/index.js:
--------------------------------------------------------------------------------
1 | import Acomplishments from '../components/Acomplishments/Acomplishments';
2 | import BgAnimation from '../components/BackgrooundAnimation/BackgroundAnimation';
3 | import Hero from '../components/Hero/Hero';
4 | import Projects from '../components/Projects/Projects';
5 | import Technologies from '../components/Technologies/Technologies';
6 | import Timeline from '../components/TimeLine/TimeLine';
7 | import { Layout } from '../layout/Layout';
8 | import { Section } from '../styles/GlobalComponents';
9 |
10 | const Home = () => {
11 | return (
12 |
13 |
17 |
18 |
19 |
20 |
21 |
22 | );
23 | };
24 |
25 | export default Home;
26 |
--------------------------------------------------------------------------------
/src/styles/GlobalComponents/Button.js:
--------------------------------------------------------------------------------
1 | import React from 'react'
2 |
3 | import { ButtonBack, ButtonFront } from './index'
4 |
5 | const Button = (props) => (
6 | {props.children}
7 | {props.children}
8 |
9 | );
10 |
11 | export default Button
12 |
--------------------------------------------------------------------------------
/src/styles/GlobalComponents/index.js:
--------------------------------------------------------------------------------
1 | import styled from 'styled-components'
2 |
3 | export const Section = styled.section`
4 | display: ${(props) => props.grid ? "grid" : "flex" };
5 | flex-direction: ${(props) => props.row ? "row" : "column" };
6 | padding: ${(props) => props.nopadding ? "0" : "32px 48px 0" } ;
7 | margin: 0 auto;
8 | max-width: 1040px;
9 | box-sizing: content-box;
10 | position: relative;
11 | overflow: hidden;
12 | grid-template-columns: 1fr 1fr;
13 |
14 | @media ${(props) => props.theme.breakpoints.md} {
15 | padding: 24px 48px 0;
16 | flex-direction: column;
17 | }
18 |
19 | @media ${(props) => props.theme.breakpoints.sm} {
20 | padding: ${(props) => props.nopadding ? "0" : "16px 16px 0" } ;
21 |
22 | width: calc(100vw - 32px);
23 | flex-direction: column;
24 | }
25 | `
26 |
27 | export const SectionTitle = styled.h2`
28 | font-weight: 800;
29 | font-size: ${(props) => props.main ? '65px' : '56px'};
30 | line-height: ${(props) => props.main ? '72px' : '56px'};
31 | width: max-content;
32 | max-width: 100%;
33 | background: linear-gradient(121.57deg, #FFFFFF 18.77%, rgba(255, 255, 255, 0.66) 60.15%);
34 | -webkit-background-clip: text;
35 | -webkit-text-fill-color: transparent;
36 | margin-bottom: 16px;
37 | padding: ${(props) => props.main ? '58px 0 16px' : '0'};
38 |
39 | @media ${props => props.theme.breakpoints.md}{
40 | font-size: ${(props) => props.main ? '56px' : '48px'};
41 | line-height: ${(props) => props.main ? '56px' : '48px'};
42 | margin-bottom: 12px;
43 | padding: ${(props) => props.main ? '40px 0 12px' : '0'};
44 | }
45 |
46 | @media ${props => props.theme.breakpoints.sm}{
47 | font-size: 32px;
48 | line-height: 40px;
49 | font-size: ${(props) => props.main ? '28px' : '32px'};
50 | line-height: ${(props) => props.main ? '32px' : '40px'};
51 | margin-bottom: 8px;
52 | padding: ${(props) => props.main ? '16px 0 8px' : '0'};
53 | max-width: 100%;
54 | }
55 | `
56 |
57 | export const SectionText = styled.p`
58 | max-width: 800px;
59 | font-size: 24px;
60 | line-height: 40px;
61 | font-weight: 300;
62 | padding-bottom: 3.6rem;
63 | color: rgba(255, 255, 255, 0.5);
64 |
65 | @media ${(props) => props.theme.breakpoints.md} {
66 | max-width: 670px;
67 | font-size: 20px;
68 | line-height: 32px;
69 | padding-bottom: 24px;
70 | }
71 |
72 | @media ${(props) => props.theme.breakpoints.sm} {
73 | font-size: 16px;
74 | line-height: 24px;
75 | padding-bottom: 16px;
76 | }
77 | `
78 |
79 | export const SectionDivider = styled.div`
80 |
81 | width: 64px;
82 | height: 6px;
83 | border-radius: 10px;
84 | background-color: #fff;
85 | background: ${(props) => props.colorAlt ?
86 | 'linear-gradient(270deg, #F46737 0%, #945DD6 100%)' :
87 | 'linear-gradient(270deg, #13ADC7 0%, #945DD6 100%)'};
88 |
89 | margin: ${(props) => props.divider ? "4rem 0" : "" };
90 |
91 | @media ${(props) => props.theme.breakpoints.md} {
92 | width: 48px;
93 | height: 4px;
94 | }
95 |
96 | @media ${(props) => props.theme.breakpoints.sm} {
97 | width: 32px;
98 | height: 2px;
99 | }
100 | `
101 | export const SectionSubText = styled.p`
102 | max-width: 800px;
103 | font-weight: 300;
104 | font-size: 18px;
105 | line-height: 32px;
106 | color: rgba(255, 255, 255, 0.75);
107 |
108 | @media ${(props) => props.theme.breakpoints.md} {
109 | max-width: 672px;
110 | font-size: 16px;
111 | line-height: 25px;
112 | }
113 |
114 | @media ${(props) => props.theme.breakpoints.sm} {
115 | font-size: 14px;
116 | line-height: 22px;
117 | }
118 | `
119 | export const SecondaryBtn = styled.button`
120 | color: #FFF;
121 | background: none;
122 | border: 1px solid rgba(255, 255, 255, 0.33);
123 | box-sizing: border-box;
124 | border-radius: 999px;
125 | padding: 16px 24px;
126 | font-weight: 600;
127 | font-size: 18px;
128 | line-height: 16px;
129 | width: fit-content;
130 | margin-top: 32px;
131 | margin-bottom: 80px;
132 | cursor: pointer;
133 | transition: 0.4s ease;
134 | &:focus {
135 | outline: none;
136 | }
137 |
138 | &:hover {
139 | color: #0f1624;
140 | background: #fff;
141 | border: 1px solid #fff;
142 | }
143 |
144 | &:active {
145 | background: #e0e4eb;
146 | border: 1px solid #304169;
147 | box-shadow: inset 0px 2px 1px rgba(46, 49, 55, 0.15), inset 0px 0px 4px rgba(20, 20, 55, 0.3);
148 | }
149 |
150 | @media ${(props) => props.theme.breakpoints.md}{
151 | margin-top: 24px;
152 | margin-bottom: 64px;
153 | padding: 16px 24px;
154 | width: fit-content;
155 | font-size: 20px;
156 | line-height: 20px;
157 | }
158 |
159 | @media ${(props) => props.theme.breakpoints.sm} {
160 | margin-top: 16px;
161 | margin-bottom: 40px;
162 | padding: 8px 16px;
163 | width: 100%;
164 | font-size: 14px;
165 | line-height: 16px;
166 | }
167 | `
168 |
169 | export const ButtonBack = styled.div`
170 | width: ${({ alt }) => alt ? '150px' : '262px'};
171 | height: ${({ alt }) => alt ? '52px' : '64px'};
172 | border-radius: 50px;
173 | font-size: ${({ alt }) => alt ? '20px' : '24px'};
174 | font-weight: 600;
175 | display: flex;
176 | align-items: center;
177 | justify-content: center;
178 | margin: ${({ alt, form }) => (alt || form) ? '0' : '0 0 80px'};
179 | color: #fff;
180 | background: ${({ alt }) => alt ? 'linear-gradient(270deg, #ff622e 0%, #B133FF 100%)' : 'linear-gradient(270deg, #00DBD8 0%, #B133FF 100%)'};
181 | cursor: pointer;
182 | transition: 0.5s ease;
183 | position: relative;
184 | overflow: hidden;
185 | opacity: ${({ disabled }) => disabled ? '.5' : '1'};
186 |
187 | @media ${(props) => props.theme.breakpoints.md} {
188 | width: ${({ alt }) => alt ? '150px' : '184px'};
189 | height: ${({ alt }) => alt ? '52px' : '48px'};
190 | font-size: ${({ alt }) => alt ? '20px' : '16px'};
191 | margin-bottom: ${({ alt }) => alt ? '0' : '64px'};
192 | }
193 |
194 | @media ${(props) => props.theme.breakpoints.sm} {
195 | width: 100%;
196 | height: 32px;
197 | font-size: 14px;
198 | margin-bottom: ${({ alt }) => alt ? '0' : '32px'};
199 | }
200 | `
201 |
202 | export const ButtonFront = styled.button`
203 | border: none;
204 | border-radius: 50px;
205 | color: #fff;
206 | display: flex;
207 | position: absolute;
208 | top: 0;
209 | left: 0;
210 | width: 100%;
211 | height: 100%;
212 | background: ${({ alt }) => alt ? 'linear-gradient(270deg, #F46737 0%, #945DD6 100%)' : 'linear-gradient(270deg, #13ADC7 0%, #945DD6 100%)'};
213 | opacity: ${({ disabled }) => disabled ? '.5' : '1'};
214 | transition: .4s ease;
215 | font-size: ${({ alt }) => alt ? '20px' : '24px'};
216 | font-weight: 600;
217 | align-items: center;
218 | justify-content: center;
219 | cursor: pointer;
220 | box-shadow: ${({ disabled }) => disabled ? 'inset 0px 2px 1px rgba(46, 49, 55, 0.15), inset 0px 0px 4px rgba(20, 20, 55, 0.3)' : 'none'};
221 |
222 | &:hover {
223 | opacity: 0;
224 | }
225 | &:focus {
226 | outline: none;
227 | }
228 | &:active {
229 | opacity: 1;
230 | box-shadow: inset 0px 2px 1px rgba(46, 49, 55, 0.15), inset 0px 0px 4px rgba(20, 20, 55, 0.3);
231 | }
232 |
233 | &:disabled{
234 | background: linear-gradient(270deg, #00DBD8 0%, #B133FF 100%);
235 | opacity: 0.5;
236 | box-shadow: inset 0px 2px 1px rgba(46, 49, 55, 0.15), inset 0px 0px 4px rgba(20, 20, 55, 0.3);
237 | }
238 |
239 | @media ${(props) => props.theme.breakpoints.md} {
240 | font-size: ${({ alt }) => alt ? '20px' : '16px'};
241 | }
242 |
243 | @media ${(props) => props.theme.breakpoints.sm} {
244 | font-size: 14px;
245 | }
246 | `
247 |
248 | export const LinkContainer = styled.div`
249 | margin-left: ${({ large }) => large ? '24px' : '16px'};
250 | transition: 0.3s ease;
251 | justify-content: center;
252 | border-radius: 50px;
253 | padding: 8px;
254 |
255 | &:hover {
256 | background-color: #212d45;
257 | transform: scale(1.2);
258 | cursor: pointer;
259 | }
260 |
261 | @media ${(props) => props.theme.breakpoints.md} {
262 | margin-left: ${({ large }) => large ? '16px' : '8px'};
263 |
264 | }
265 | @media ${(props) => props.theme.breakpoints.sm} {
266 | margin-left: ${({ large }) => large ? '0' : '8px'};
267 | }
268 | `
269 |
270 | export const LinkIconImg = styled.div`
271 | display: flex;
272 | height: ${({ large }) => large ? '32px' : '24px'};
273 |
274 | @media ${(props) => props.theme.breakpoints.md} {
275 | height: ${({ nav }) => nav ? '16px' : '24px'};
276 | }
277 |
278 | @media ${(props) => props.theme.breakpoints.sm} {
279 | height: ${({ large }) => large ? '32px' : '16px'};
280 | }
281 | `
282 |
--------------------------------------------------------------------------------
/src/styles/globals.js:
--------------------------------------------------------------------------------
1 | import { createGlobalStyle } from 'styled-components';
2 | import { normalize } from 'styled-normalize';
3 |
4 | const GlobalStyles = createGlobalStyle`
5 | ${normalize};
6 |
7 | * {
8 | box-sizing: border-box;
9 | margin: 0;
10 | padding: 0;
11 | }
12 | html {
13 | font-size: 62.5%;
14 | scroll-behavior: smooth;
15 |
16 | }
17 | body {
18 | font-family: ${props => props.theme.fonts.main};
19 | font-size: 1.6rem;
20 | background: ${props => props.theme.colors.background1};
21 | color: ${props => props.theme.colors.primary1};
22 | cursor: default;
23 |
24 | }
25 | h1,h2,h3,h4,h5,h6,button {
26 | font-family: ${props => props.theme.fonts.title};
27 | }
28 | a {
29 | text-decoration: none;
30 | }
31 | li{
32 | list-style: none;
33 | }
34 |
35 | `;
36 |
37 | export default GlobalStyles;
--------------------------------------------------------------------------------
/src/styles/theme.js:
--------------------------------------------------------------------------------
1 | import { ThemeProvider } from 'styled-components';
2 |
3 | import theme from "../themes/default";
4 | import GlobalStyles from './globals';
5 |
6 | const Theme = ({ children }) => (
7 |
8 |
9 | {children}
10 |
11 | );
12 |
13 | export default Theme;
--------------------------------------------------------------------------------
/src/themes/default.js:
--------------------------------------------------------------------------------
1 | export default {
2 | // Temp fonts
3 | fonts: {
4 | title: "Space Grotesk, sans-serif",
5 | main: "Space Grotesk, sans-serif"
6 | },
7 | // Colors for layout
8 | colors: {
9 | primary1: "hsl(204,23.8%,95.9%)",
10 | background1: "#0F1624",
11 | accent1: "hsl(34.9,98.6%,72.9%)",
12 | button: "hsl(205.1,100%,36.1%)",
13 | background2: "hsl(232.7,27.3%,23.7%)",
14 | },
15 | // Breakpoints for responsive design
16 | breakpoints: {
17 | sm: 'screen and (max-width: 640px)',
18 | md: 'screen and (max-width: 768px)',
19 | lg: 'screen and (max-width: 1024px)',
20 | xl: 'screen and (max-width: 1280px)'
21 | },
22 | }
23 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/code-frame@7.12.11":
6 | version "7.12.11"
7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f"
8 | integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==
9 | dependencies:
10 | "@babel/highlight" "^7.10.4"
11 |
12 | "@babel/code-frame@^7.12.13":
13 | version "7.12.13"
14 | resolved "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.12.13.tgz#dcfc826beef65e75c50e21d3837d7d95798dd658"
15 | integrity sha1-3PyCa+72XnXFDiHTg319lXmN1lg=
16 | dependencies:
17 | "@babel/highlight" "^7.12.13"
18 |
19 | "@babel/generator@^7.14.2":
20 | version "7.14.3"
21 | resolved "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.3.tgz#0c2652d91f7bddab7cccc6ba8157e4f40dcedb91"
22 | integrity sha1-DCZS2R973at8zMa6gVfk9A3O25E=
23 | dependencies:
24 | "@babel/types" "^7.14.2"
25 | jsesc "^2.5.1"
26 | source-map "^0.5.0"
27 |
28 | "@babel/helper-annotate-as-pure@^7.0.0":
29 | version "7.12.13"
30 | resolved "https://registry.nlark.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.12.13.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-annotate-as-pure%2Fdownload%2F%40babel%2Fhelper-annotate-as-pure-7.12.13.tgz#0f58e86dfc4bb3b1fcd7db806570e177d439b6ab"
31 | integrity sha1-D1jobfxLs7H819uAZXDhd9Q5tqs=
32 | dependencies:
33 | "@babel/types" "^7.12.13"
34 |
35 | "@babel/helper-function-name@^7.14.2":
36 | version "7.14.2"
37 | resolved "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.2.tgz#397688b590760b6ef7725b5f0860c82427ebaac2"
38 | integrity sha1-OXaItZB2C273cltfCGDIJCfrqsI=
39 | dependencies:
40 | "@babel/helper-get-function-arity" "^7.12.13"
41 | "@babel/template" "^7.12.13"
42 | "@babel/types" "^7.14.2"
43 |
44 | "@babel/helper-get-function-arity@^7.12.13":
45 | version "7.12.13"
46 | resolved "https://registry.nlark.com/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.12.13.tgz#bc63451d403a3b3082b97e1d8b3fe5bd4091e583"
47 | integrity sha1-vGNFHUA6OzCCuX4diz/lvUCR5YM=
48 | dependencies:
49 | "@babel/types" "^7.12.13"
50 |
51 | "@babel/helper-module-imports@^7.0.0":
52 | version "7.13.12"
53 | resolved "https://registry.npm.taobao.org/@babel/helper-module-imports/download/@babel/helper-module-imports-7.13.12.tgz#c6a369a6f3621cb25da014078684da9196b61977"
54 | integrity sha1-xqNppvNiHLJdoBQHhoTakZa2GXc=
55 | dependencies:
56 | "@babel/types" "^7.13.12"
57 |
58 | "@babel/helper-split-export-declaration@^7.12.13":
59 | version "7.12.13"
60 | resolved "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.12.13.tgz#e9430be00baf3e88b0e13e6f9d4eaf2136372b05"
61 | integrity sha1-6UML4AuvPoiw4T5vnU6vITY3KwU=
62 | dependencies:
63 | "@babel/types" "^7.12.13"
64 |
65 | "@babel/helper-validator-identifier@^7.14.0":
66 | version "7.14.0"
67 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz#d26cad8a47c65286b15df1547319a5d0bcf27288"
68 | integrity sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==
69 |
70 | "@babel/highlight@^7.10.4", "@babel/highlight@^7.12.13":
71 | version "7.14.0"
72 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.0.tgz#3197e375711ef6bf834e67d0daec88e4f46113cf"
73 | integrity sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg==
74 | dependencies:
75 | "@babel/helper-validator-identifier" "^7.14.0"
76 | chalk "^2.0.0"
77 | js-tokens "^4.0.0"
78 |
79 | "@babel/parser@^7.12.13", "@babel/parser@^7.14.2":
80 | version "7.14.3"
81 | resolved "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.3.tgz?cache=0&sync_timestamp=1621284470129&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.14.3.tgz#9b530eecb071fd0c93519df25c5ff9f14759f298"
82 | integrity sha1-m1MO7LBx/QyTUZ3yXF/58UdZ8pg=
83 |
84 | "@babel/runtime@7.12.5":
85 | version "7.12.5"
86 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.5.tgz#410e7e487441e1b360c29be715d870d9b985882e"
87 | integrity sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==
88 | dependencies:
89 | regenerator-runtime "^0.13.4"
90 |
91 | "@babel/template@^7.12.13":
92 | version "7.12.13"
93 | resolved "https://registry.nlark.com/@babel/template/download/@babel/template-7.12.13.tgz#530265be8a2589dbb37523844c5bcb55947fb327"
94 | integrity sha1-UwJlvooliduzdSOETFvLVZR/syc=
95 | dependencies:
96 | "@babel/code-frame" "^7.12.13"
97 | "@babel/parser" "^7.12.13"
98 | "@babel/types" "^7.12.13"
99 |
100 | "@babel/traverse@^7.4.5":
101 | version "7.14.2"
102 | resolved "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.2.tgz?cache=0&sync_timestamp=1620839391311&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.2.tgz#9201a8d912723a831c2679c7ebbf2fe1416d765b"
103 | integrity sha1-kgGo2RJyOoMcJnnH678v4UFtdls=
104 | dependencies:
105 | "@babel/code-frame" "^7.12.13"
106 | "@babel/generator" "^7.14.2"
107 | "@babel/helper-function-name" "^7.14.2"
108 | "@babel/helper-split-export-declaration" "^7.12.13"
109 | "@babel/parser" "^7.14.2"
110 | "@babel/types" "^7.14.2"
111 | debug "^4.1.0"
112 | globals "^11.1.0"
113 |
114 | "@babel/types@7.8.3":
115 | version "7.8.3"
116 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.8.3.tgz#5a383dffa5416db1b73dedffd311ffd0788fb31c"
117 | integrity sha512-jBD+G8+LWpMBBWvVcdr4QysjUE4mU/syrhN17o1u3gx0/WzJB1kwiVZAXRtWbsIPOwW8pF/YJV5+nmetPzepXg==
118 | dependencies:
119 | esutils "^2.0.2"
120 | lodash "^4.17.13"
121 | to-fast-properties "^2.0.0"
122 |
123 | "@babel/types@^7.12.13", "@babel/types@^7.13.12", "@babel/types@^7.14.2":
124 | version "7.14.2"
125 | resolved "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.2.tgz#4208ae003107ef8a057ea8333e56eb64d2f6a2c3"
126 | integrity sha1-QgiuADEH74oFfqgzPlbrZNL2osM=
127 | dependencies:
128 | "@babel/helper-validator-identifier" "^7.14.0"
129 | to-fast-properties "^2.0.0"
130 |
131 | "@emotion/is-prop-valid@^0.8.8":
132 | version "0.8.8"
133 | resolved "https://registry.npm.taobao.org/@emotion/is-prop-valid/download/@emotion/is-prop-valid-0.8.8.tgz#db28b1c4368a259b60a97311d6a952d4fd01ac1a"
134 | integrity sha1-2yixxDaKJZtgqXMR1qlS1P0BrBo=
135 | dependencies:
136 | "@emotion/memoize" "0.7.4"
137 |
138 | "@emotion/memoize@0.7.4":
139 | version "0.7.4"
140 | resolved "https://registry.npm.taobao.org/@emotion/memoize/download/@emotion/memoize-0.7.4.tgz#19bf0f5af19149111c40d98bb0cf82119f5d9eeb"
141 | integrity sha1-Gb8PWvGRSREcQNmLsM+CEZ9dnus=
142 |
143 | "@emotion/stylis@^0.8.4":
144 | version "0.8.5"
145 | resolved "https://registry.nlark.com/@emotion/stylis/download/@emotion/stylis-0.8.5.tgz#deacb389bd6ee77d1e7fcaccce9e16c5c7e78e04"
146 | integrity sha1-3qyzib1u530ef8rMzp4WxcfnjgQ=
147 |
148 | "@emotion/unitless@^0.7.4":
149 | version "0.7.5"
150 | resolved "https://registry.npm.taobao.org/@emotion/unitless/download/@emotion/unitless-0.7.5.tgz#77211291c1900a700b8a78cfafda3160d76949ed"
151 | integrity sha1-dyESkcGQCnALinjPr9oxYNdpSe0=
152 |
153 | "@hapi/accept@5.0.2":
154 | version "5.0.2"
155 | resolved "https://registry.yarnpkg.com/@hapi/accept/-/accept-5.0.2.tgz#ab7043b037e68b722f93f376afb05e85c0699523"
156 | integrity sha512-CmzBx/bXUR8451fnZRuZAJRlzgm0Jgu5dltTX/bszmR2lheb9BpyN47Q1RbaGTsvFzn0PXAEs+lXDKfshccYZw==
157 | dependencies:
158 | "@hapi/boom" "9.x.x"
159 | "@hapi/hoek" "9.x.x"
160 |
161 | "@hapi/boom@9.x.x":
162 | version "9.1.2"
163 | resolved "https://registry.yarnpkg.com/@hapi/boom/-/boom-9.1.2.tgz#48bd41d67437164a2d636e3b5bc954f8c8dc5e38"
164 | integrity sha512-uJEJtiNHzKw80JpngDGBCGAmWjBtzxDCz17A9NO2zCi8LLBlb5Frpq4pXwyN+2JQMod4pKz5BALwyneCgDg89Q==
165 | dependencies:
166 | "@hapi/hoek" "9.x.x"
167 |
168 | "@hapi/hoek@9.x.x":
169 | version "9.2.0"
170 | resolved "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.2.0.tgz#f3933a44e365864f4dad5db94158106d511e8131"
171 | integrity sha512-sqKVVVOe5ivCaXDWivIJYVSaEgdQK9ul7a4Kity5Iw7u9+wBAPbX1RMSnLLmp7O4Vzj0WOWwMAJsTL00xwaNug==
172 |
173 | "@next/env@10.2.3":
174 | version "10.2.3"
175 | resolved "https://registry.yarnpkg.com/@next/env/-/env-10.2.3.tgz#ede3bbe68cec9939c37168ea2077f9adbc68334e"
176 | integrity sha512-uBOjRBjsWC4C8X3DfmWWP6ekwLnf2JCCwQX9KVnJtJkqfDsv1yQPakdOEwvJzXQc3JC/v5KKffYPVmV2wHXCgQ==
177 |
178 | "@next/polyfill-module@10.2.3":
179 | version "10.2.3"
180 | resolved "https://registry.yarnpkg.com/@next/polyfill-module/-/polyfill-module-10.2.3.tgz#5a29f50c3ce3a56b8268d3b8331c691d8039467a"
181 | integrity sha512-OkeY4cLhzfYbXxM4fd+6V4s5pTPuyfKSlavItfNRA6PpS7t1/R6YjO7S7rB8tu1pbTGuDHGIdE1ioDv15bAbDQ==
182 |
183 | "@next/react-dev-overlay@10.2.3":
184 | version "10.2.3"
185 | resolved "https://registry.yarnpkg.com/@next/react-dev-overlay/-/react-dev-overlay-10.2.3.tgz#95313d10a8848f6c7b9e31ae3bd2a3627d136841"
186 | integrity sha512-E6g2jws4YW94l0lMMopBVKIZK2mEHfSBvM0d9dmzKG9L/A/kEq6LZCB4SiwGJbNsAdlk2y3USDa0oNbpA+m5Kw==
187 | dependencies:
188 | "@babel/code-frame" "7.12.11"
189 | anser "1.4.9"
190 | chalk "4.0.0"
191 | classnames "2.2.6"
192 | css.escape "1.5.1"
193 | data-uri-to-buffer "3.0.1"
194 | platform "1.3.6"
195 | shell-quote "1.7.2"
196 | source-map "0.8.0-beta.0"
197 | stacktrace-parser "0.1.10"
198 | strip-ansi "6.0.0"
199 |
200 | "@next/react-refresh-utils@10.2.3":
201 | version "10.2.3"
202 | resolved "https://registry.yarnpkg.com/@next/react-refresh-utils/-/react-refresh-utils-10.2.3.tgz#2f3e42fe6680798f276e3621345c2886b231348b"
203 | integrity sha512-qtBF56vPC6d6a8p7LYd0iRjW89fhY80kAIzmj+VonvIGjK/nymBjcFUhbKiMFqlhsarCksnhwX+Zmn95Dw9qvA==
204 |
205 | "@opentelemetry/api@0.14.0":
206 | version "0.14.0"
207 | resolved "https://registry.yarnpkg.com/@opentelemetry/api/-/api-0.14.0.tgz#4e17d8d2f1da72b19374efa7b6526aa001267cae"
208 | integrity sha512-L7RMuZr5LzMmZiQSQDy9O1jo0q+DaLy6XpYJfIGfYSfoJA5qzYwUP3sP1uMIQ549DvxAgM3ng85EaPTM/hUHwQ==
209 | dependencies:
210 | "@opentelemetry/context-base" "^0.14.0"
211 |
212 | "@opentelemetry/context-base@^0.14.0":
213 | version "0.14.0"
214 | resolved "https://registry.yarnpkg.com/@opentelemetry/context-base/-/context-base-0.14.0.tgz#c67fc20a4d891447ca1a855d7d70fa79a3533001"
215 | integrity sha512-sDOAZcYwynHFTbLo6n8kIbLiVF3a3BLkrmehJUyEbT9F+Smbi47kLGS2gG2g0fjBLR/Lr1InPD7kXL7FaTqEkw==
216 |
217 | "@types/node@*":
218 | version "15.6.1"
219 | resolved "https://registry.yarnpkg.com/@types/node/-/node-15.6.1.tgz#32d43390d5c62c5b6ec486a9bc9c59544de39a08"
220 | integrity sha512-7EIraBEyRHEe7CH+Fm1XvgqU6uwZN8Q7jppJGcqjROMT29qhAuuOxYB1uEY5UMYQKEmA5D+5tBnhdaPXSsLONA==
221 |
222 | anser@1.4.9:
223 | version "1.4.9"
224 | resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.9.tgz#1f85423a5dcf8da4631a341665ff675b96845760"
225 | integrity sha512-AI+BjTeGt2+WFk4eWcqbQ7snZpDBt8SaLlj0RT2h5xfdWaiy51OjYvqwMrNzJLGy8iOAL6nKDITWO+rd4MkYEA==
226 |
227 | ansi-regex@^5.0.0:
228 | version "5.0.0"
229 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75"
230 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==
231 |
232 | ansi-styles@^3.2.1:
233 | version "3.2.1"
234 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
235 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
236 | dependencies:
237 | color-convert "^1.9.0"
238 |
239 | ansi-styles@^4.1.0:
240 | version "4.3.0"
241 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
242 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
243 | dependencies:
244 | color-convert "^2.0.1"
245 |
246 | anymatch@~3.1.1:
247 | version "3.1.2"
248 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
249 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
250 | dependencies:
251 | normalize-path "^3.0.0"
252 | picomatch "^2.0.4"
253 |
254 | array.prototype.filter@^1.0.0:
255 | version "1.0.0"
256 | resolved "https://registry.yarnpkg.com/array.prototype.filter/-/array.prototype.filter-1.0.0.tgz#24d63e38983cdc6bf023a3c574b2f2a3f384c301"
257 | integrity sha512-TfO1gz+tLm+Bswq0FBOXPqAchtCr2Rn48T8dLJoRFl8NoEosjZmzptmuo1X8aZBzZcqsR1W8U761tjACJtngTQ==
258 | dependencies:
259 | call-bind "^1.0.2"
260 | define-properties "^1.1.3"
261 | es-abstract "^1.18.0"
262 | es-array-method-boxes-properly "^1.0.0"
263 | is-string "^1.0.5"
264 |
265 | asn1.js@^5.2.0:
266 | version "5.4.1"
267 | resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07"
268 | integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==
269 | dependencies:
270 | bn.js "^4.0.0"
271 | inherits "^2.0.1"
272 | minimalistic-assert "^1.0.0"
273 | safer-buffer "^2.1.0"
274 |
275 | assert@2.0.0:
276 | version "2.0.0"
277 | resolved "https://registry.yarnpkg.com/assert/-/assert-2.0.0.tgz#95fc1c616d48713510680f2eaf2d10dd22e02d32"
278 | integrity sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==
279 | dependencies:
280 | es6-object-assign "^1.1.0"
281 | is-nan "^1.2.1"
282 | object-is "^1.0.1"
283 | util "^0.12.0"
284 |
285 | assert@^1.1.1:
286 | version "1.5.0"
287 | resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb"
288 | integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==
289 | dependencies:
290 | object-assign "^4.1.1"
291 | util "0.10.3"
292 |
293 | ast-types@0.13.2:
294 | version "0.13.2"
295 | resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.13.2.tgz#df39b677a911a83f3a049644fb74fdded23cea48"
296 | integrity sha512-uWMHxJxtfj/1oZClOxDEV1sQ1HCDkA4MG8Gr69KKeBjEVH0R84WlejZ0y2DcwyBlpAEMltmVYkVgqfLFb2oyiA==
297 |
298 | available-typed-arrays@^1.0.2:
299 | version "1.0.3"
300 | resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.3.tgz#fb7d02445bfedefad79fad1fe47931163a227198"
301 | integrity sha512-CuPhFULixV/d89POo1UG4GqGbR7dmrefY2ZdmsYakeR4gOSJXoF7tfeaiqMHGOMrlTiJoeEs87fpLsBYmE2BMw==
302 | dependencies:
303 | array.prototype.filter "^1.0.0"
304 |
305 | "babel-plugin-styled-components@>= 1.12.0":
306 | version "1.12.0"
307 | resolved "https://registry.npm.taobao.org/babel-plugin-styled-components/download/babel-plugin-styled-components-1.12.0.tgz#1dec1676512177de6b827211e9eda5a30db4f9b9"
308 | integrity sha1-HewWdlEhd95rgnIR6e2low20+bk=
309 | dependencies:
310 | "@babel/helper-annotate-as-pure" "^7.0.0"
311 | "@babel/helper-module-imports" "^7.0.0"
312 | babel-plugin-syntax-jsx "^6.18.0"
313 | lodash "^4.17.11"
314 |
315 | babel-plugin-syntax-jsx@6.18.0, babel-plugin-syntax-jsx@^6.18.0:
316 | version "6.18.0"
317 | resolved "https://registry.yarnpkg.com/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz#0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"
318 | integrity sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=
319 |
320 | base64-js@^1.0.2:
321 | version "1.5.1"
322 | resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
323 | integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
324 |
325 | big.js@^5.2.2:
326 | version "5.2.2"
327 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328"
328 | integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==
329 |
330 | binary-extensions@^2.0.0:
331 | version "2.2.0"
332 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
333 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
334 |
335 | bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9:
336 | version "4.12.0"
337 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88"
338 | integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==
339 |
340 | bn.js@^5.0.0, bn.js@^5.1.1:
341 | version "5.2.0"
342 | resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.0.tgz#358860674396c6997771a9d051fcc1b57d4ae002"
343 | integrity sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==
344 |
345 | braces@~3.0.2:
346 | version "3.0.2"
347 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
348 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
349 | dependencies:
350 | fill-range "^7.0.1"
351 |
352 | brorand@^1.0.1, brorand@^1.1.0:
353 | version "1.1.0"
354 | resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
355 | integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=
356 |
357 | browserify-aes@^1.0.0, browserify-aes@^1.0.4:
358 | version "1.2.0"
359 | resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48"
360 | integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==
361 | dependencies:
362 | buffer-xor "^1.0.3"
363 | cipher-base "^1.0.0"
364 | create-hash "^1.1.0"
365 | evp_bytestokey "^1.0.3"
366 | inherits "^2.0.1"
367 | safe-buffer "^5.0.1"
368 |
369 | browserify-cipher@^1.0.0:
370 | version "1.0.1"
371 | resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0"
372 | integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==
373 | dependencies:
374 | browserify-aes "^1.0.4"
375 | browserify-des "^1.0.0"
376 | evp_bytestokey "^1.0.0"
377 |
378 | browserify-des@^1.0.0:
379 | version "1.0.2"
380 | resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c"
381 | integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==
382 | dependencies:
383 | cipher-base "^1.0.1"
384 | des.js "^1.0.0"
385 | inherits "^2.0.1"
386 | safe-buffer "^5.1.2"
387 |
388 | browserify-rsa@^4.0.0, browserify-rsa@^4.0.1:
389 | version "4.1.0"
390 | resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.1.0.tgz#b2fd06b5b75ae297f7ce2dc651f918f5be158c8d"
391 | integrity sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==
392 | dependencies:
393 | bn.js "^5.0.0"
394 | randombytes "^2.0.1"
395 |
396 | browserify-sign@^4.0.0:
397 | version "4.2.1"
398 | resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.1.tgz#eaf4add46dd54be3bb3b36c0cf15abbeba7956c3"
399 | integrity sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==
400 | dependencies:
401 | bn.js "^5.1.1"
402 | browserify-rsa "^4.0.1"
403 | create-hash "^1.2.0"
404 | create-hmac "^1.1.7"
405 | elliptic "^6.5.3"
406 | inherits "^2.0.4"
407 | parse-asn1 "^5.1.5"
408 | readable-stream "^3.6.0"
409 | safe-buffer "^5.2.0"
410 |
411 | browserify-zlib@0.2.0, browserify-zlib@^0.2.0:
412 | version "0.2.0"
413 | resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f"
414 | integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==
415 | dependencies:
416 | pako "~1.0.5"
417 |
418 | browserslist@4.16.6:
419 | version "4.16.6"
420 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2"
421 | integrity sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ==
422 | dependencies:
423 | caniuse-lite "^1.0.30001219"
424 | colorette "^1.2.2"
425 | electron-to-chromium "^1.3.723"
426 | escalade "^3.1.1"
427 | node-releases "^1.1.71"
428 |
429 | buffer-xor@^1.0.3:
430 | version "1.0.3"
431 | resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9"
432 | integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=
433 |
434 | buffer@5.6.0:
435 | version "5.6.0"
436 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.6.0.tgz#a31749dc7d81d84db08abf937b6b8c4033f62786"
437 | integrity sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==
438 | dependencies:
439 | base64-js "^1.0.2"
440 | ieee754 "^1.1.4"
441 |
442 | buffer@^4.3.0:
443 | version "4.9.2"
444 | resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.2.tgz#230ead344002988644841ab0244af8c44bbe3ef8"
445 | integrity sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==
446 | dependencies:
447 | base64-js "^1.0.2"
448 | ieee754 "^1.1.4"
449 | isarray "^1.0.0"
450 |
451 | builtin-status-codes@^3.0.0:
452 | version "3.0.0"
453 | resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8"
454 | integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=
455 |
456 | bytes@3.1.0:
457 | version "3.1.0"
458 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6"
459 | integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==
460 |
461 | call-bind@^1.0.0, call-bind@^1.0.2:
462 | version "1.0.2"
463 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
464 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
465 | dependencies:
466 | function-bind "^1.1.1"
467 | get-intrinsic "^1.0.2"
468 |
469 | camelize@^1.0.0:
470 | version "1.0.0"
471 | resolved "https://registry.npm.taobao.org/camelize/download/camelize-1.0.0.tgz#164a5483e630fa4321e5af07020e531831b2609b"
472 | integrity sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=
473 |
474 | caniuse-lite@^1.0.30001202, caniuse-lite@^1.0.30001219, caniuse-lite@^1.0.30001228:
475 | version "1.0.30001228"
476 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001228.tgz#bfdc5942cd3326fa51ee0b42fbef4da9d492a7fa"
477 | integrity sha512-QQmLOGJ3DEgokHbMSA8cj2a+geXqmnpyOFT0lhQV6P3/YOJvGDEwoedcwxEQ30gJIwIIunHIicunJ2rzK5gB2A==
478 |
479 | chalk@2.4.2, chalk@^2.0.0:
480 | version "2.4.2"
481 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
482 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
483 | dependencies:
484 | ansi-styles "^3.2.1"
485 | escape-string-regexp "^1.0.5"
486 | supports-color "^5.3.0"
487 |
488 | chalk@4.0.0:
489 | version "4.0.0"
490 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.0.0.tgz#6e98081ed2d17faab615eb52ac66ec1fe6209e72"
491 | integrity sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A==
492 | dependencies:
493 | ansi-styles "^4.1.0"
494 | supports-color "^7.1.0"
495 |
496 | chokidar@3.5.1:
497 | version "3.5.1"
498 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a"
499 | integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==
500 | dependencies:
501 | anymatch "~3.1.1"
502 | braces "~3.0.2"
503 | glob-parent "~5.1.0"
504 | is-binary-path "~2.1.0"
505 | is-glob "~4.0.1"
506 | normalize-path "~3.0.0"
507 | readdirp "~3.5.0"
508 | optionalDependencies:
509 | fsevents "~2.3.1"
510 |
511 | cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3:
512 | version "1.0.4"
513 | resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de"
514 | integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==
515 | dependencies:
516 | inherits "^2.0.1"
517 | safe-buffer "^5.0.1"
518 |
519 | classnames@2.2.6:
520 | version "2.2.6"
521 | resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce"
522 | integrity sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==
523 |
524 | color-convert@^1.9.0:
525 | version "1.9.3"
526 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
527 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
528 | dependencies:
529 | color-name "1.1.3"
530 |
531 | color-convert@^2.0.1:
532 | version "2.0.1"
533 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
534 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
535 | dependencies:
536 | color-name "~1.1.4"
537 |
538 | color-name@1.1.3:
539 | version "1.1.3"
540 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
541 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
542 |
543 | color-name@~1.1.4:
544 | version "1.1.4"
545 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
546 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
547 |
548 | colorette@^1.2.2:
549 | version "1.2.2"
550 | resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94"
551 | integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==
552 |
553 | commondir@^1.0.1:
554 | version "1.0.1"
555 | resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
556 | integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=
557 |
558 | console-browserify@^1.1.0:
559 | version "1.2.0"
560 | resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336"
561 | integrity sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==
562 |
563 | constants-browserify@1.0.0, constants-browserify@^1.0.0:
564 | version "1.0.0"
565 | resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75"
566 | integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=
567 |
568 | convert-source-map@1.7.0:
569 | version "1.7.0"
570 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
571 | integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==
572 | dependencies:
573 | safe-buffer "~5.1.1"
574 |
575 | core-util-is@~1.0.0:
576 | version "1.0.2"
577 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
578 | integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
579 |
580 | create-ecdh@^4.0.0:
581 | version "4.0.4"
582 | resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.4.tgz#d6e7f4bffa66736085a0762fd3a632684dabcc4e"
583 | integrity sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==
584 | dependencies:
585 | bn.js "^4.1.0"
586 | elliptic "^6.5.3"
587 |
588 | create-hash@^1.1.0, create-hash@^1.1.2, create-hash@^1.2.0:
589 | version "1.2.0"
590 | resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196"
591 | integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==
592 | dependencies:
593 | cipher-base "^1.0.1"
594 | inherits "^2.0.1"
595 | md5.js "^1.3.4"
596 | ripemd160 "^2.0.1"
597 | sha.js "^2.4.0"
598 |
599 | create-hmac@^1.1.0, create-hmac@^1.1.4, create-hmac@^1.1.7:
600 | version "1.1.7"
601 | resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff"
602 | integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==
603 | dependencies:
604 | cipher-base "^1.0.3"
605 | create-hash "^1.1.0"
606 | inherits "^2.0.1"
607 | ripemd160 "^2.0.0"
608 | safe-buffer "^5.0.1"
609 | sha.js "^2.4.8"
610 |
611 | crypto-browserify@3.12.0, crypto-browserify@^3.11.0:
612 | version "3.12.0"
613 | resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec"
614 | integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==
615 | dependencies:
616 | browserify-cipher "^1.0.0"
617 | browserify-sign "^4.0.0"
618 | create-ecdh "^4.0.0"
619 | create-hash "^1.1.0"
620 | create-hmac "^1.1.0"
621 | diffie-hellman "^5.0.0"
622 | inherits "^2.0.1"
623 | pbkdf2 "^3.0.3"
624 | public-encrypt "^4.0.0"
625 | randombytes "^2.0.0"
626 | randomfill "^1.0.3"
627 |
628 | css-color-keywords@^1.0.0:
629 | version "1.0.0"
630 | resolved "https://registry.npm.taobao.org/css-color-keywords/download/css-color-keywords-1.0.0.tgz#fea2616dc676b2962686b3af8dbdbe180b244e05"
631 | integrity sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU=
632 |
633 | css-to-react-native@^3.0.0:
634 | version "3.0.0"
635 | resolved "https://registry.npm.taobao.org/css-to-react-native/download/css-to-react-native-3.0.0.tgz#62dbe678072a824a689bcfee011fc96e02a7d756"
636 | integrity sha1-YtvmeAcqgkpom8/uAR/JbgKn11Y=
637 | dependencies:
638 | camelize "^1.0.0"
639 | css-color-keywords "^1.0.0"
640 | postcss-value-parser "^4.0.2"
641 |
642 | css.escape@1.5.1:
643 | version "1.5.1"
644 | resolved "https://registry.yarnpkg.com/css.escape/-/css.escape-1.5.1.tgz#42e27d4fa04ae32f931a4b4d4191fa9cddee97cb"
645 | integrity sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=
646 |
647 | cssnano-preset-simple@^2.0.0:
648 | version "2.0.0"
649 | resolved "https://registry.yarnpkg.com/cssnano-preset-simple/-/cssnano-preset-simple-2.0.0.tgz#b55e72cb970713f425560a0e141b0335249e2f96"
650 | integrity sha512-HkufSLkaBJbKBFx/7aj5HmCK9Ni/JedRQm0mT2qBzMG/dEuJOLnMt2lK6K1rwOOyV4j9aSY+knbW9WoS7BYpzg==
651 | dependencies:
652 | caniuse-lite "^1.0.30001202"
653 |
654 | cssnano-simple@2.0.0:
655 | version "2.0.0"
656 | resolved "https://registry.yarnpkg.com/cssnano-simple/-/cssnano-simple-2.0.0.tgz#930d9dcd8ba105c5a62ce719cb00854da58b5c05"
657 | integrity sha512-0G3TXaFxlh/szPEG/o3VcmCwl0N3E60XNb9YZZijew5eIs6fLjJuOPxQd9yEBaX2p/YfJtt49i4vYi38iH6/6w==
658 | dependencies:
659 | cssnano-preset-simple "^2.0.0"
660 |
661 | data-uri-to-buffer@3.0.1:
662 | version "3.0.1"
663 | resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz#594b8973938c5bc2c33046535785341abc4f3636"
664 | integrity sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==
665 |
666 | debug@2:
667 | version "2.6.9"
668 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
669 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
670 | dependencies:
671 | ms "2.0.0"
672 |
673 | debug@^4.1.0:
674 | version "4.3.1"
675 | resolved "https://registry.nlark.com/debug/download/debug-4.3.1.tgz?cache=0&sync_timestamp=1618847042350&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdebug%2Fdownload%2Fdebug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"
676 | integrity sha1-8NIpxQXgxtjEmsVT0bE9wYP2su4=
677 | dependencies:
678 | ms "2.1.2"
679 |
680 | define-properties@^1.1.3:
681 | version "1.1.3"
682 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
683 | integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==
684 | dependencies:
685 | object-keys "^1.0.12"
686 |
687 | depd@~1.1.2:
688 | version "1.1.2"
689 | resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
690 | integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=
691 |
692 | des.js@^1.0.0:
693 | version "1.0.1"
694 | resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.1.tgz#5382142e1bdc53f85d86d53e5f4aa7deb91e0843"
695 | integrity sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==
696 | dependencies:
697 | inherits "^2.0.1"
698 | minimalistic-assert "^1.0.0"
699 |
700 | diffie-hellman@^5.0.0:
701 | version "5.0.3"
702 | resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875"
703 | integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==
704 | dependencies:
705 | bn.js "^4.1.0"
706 | miller-rabin "^4.0.0"
707 | randombytes "^2.0.0"
708 |
709 | domain-browser@4.19.0:
710 | version "4.19.0"
711 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-4.19.0.tgz#1093e17c0a17dbd521182fe90d49ac1370054af1"
712 | integrity sha512-fRA+BaAWOR/yr/t7T9E9GJztHPeFjj8U35ajyAjCDtAAnTn1Rc1f6W6VGPJrO1tkQv9zWu+JRof7z6oQtiYVFQ==
713 |
714 | domain-browser@^1.1.1:
715 | version "1.2.0"
716 | resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda"
717 | integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==
718 |
719 | electron-to-chromium@^1.3.723:
720 | version "1.3.738"
721 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.738.tgz#aec24b091c82acbfabbdcce08076a703941d17ca"
722 | integrity sha512-vCMf4gDOpEylPSLPLSwAEsz+R3ShP02Y3cAKMZvTqule3XcPp7tgc/0ESI7IS6ZeyBlGClE50N53fIOkcIVnpw==
723 |
724 | elliptic@^6.5.3:
725 | version "6.5.4"
726 | resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb"
727 | integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==
728 | dependencies:
729 | bn.js "^4.11.9"
730 | brorand "^1.1.0"
731 | hash.js "^1.0.0"
732 | hmac-drbg "^1.0.1"
733 | inherits "^2.0.4"
734 | minimalistic-assert "^1.0.1"
735 | minimalistic-crypto-utils "^1.0.1"
736 |
737 | emojis-list@^2.0.0:
738 | version "2.1.0"
739 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
740 | integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k=
741 |
742 | encoding@0.1.13:
743 | version "0.1.13"
744 | resolved "https://registry.yarnpkg.com/encoding/-/encoding-0.1.13.tgz#56574afdd791f54a8e9b2785c0582a2d26210fa9"
745 | integrity sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==
746 | dependencies:
747 | iconv-lite "^0.6.2"
748 |
749 | es-abstract@^1.18.0, es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2:
750 | version "1.18.0"
751 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0.tgz#ab80b359eecb7ede4c298000390bc5ac3ec7b5a4"
752 | integrity sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw==
753 | dependencies:
754 | call-bind "^1.0.2"
755 | es-to-primitive "^1.2.1"
756 | function-bind "^1.1.1"
757 | get-intrinsic "^1.1.1"
758 | has "^1.0.3"
759 | has-symbols "^1.0.2"
760 | is-callable "^1.2.3"
761 | is-negative-zero "^2.0.1"
762 | is-regex "^1.1.2"
763 | is-string "^1.0.5"
764 | object-inspect "^1.9.0"
765 | object-keys "^1.1.1"
766 | object.assign "^4.1.2"
767 | string.prototype.trimend "^1.0.4"
768 | string.prototype.trimstart "^1.0.4"
769 | unbox-primitive "^1.0.0"
770 |
771 | es-array-method-boxes-properly@^1.0.0:
772 | version "1.0.0"
773 | resolved "https://registry.yarnpkg.com/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz#873f3e84418de4ee19c5be752990b2e44718d09e"
774 | integrity sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==
775 |
776 | es-to-primitive@^1.2.1:
777 | version "1.2.1"
778 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
779 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
780 | dependencies:
781 | is-callable "^1.1.4"
782 | is-date-object "^1.0.1"
783 | is-symbol "^1.0.2"
784 |
785 | es6-object-assign@^1.1.0:
786 | version "1.1.0"
787 | resolved "https://registry.yarnpkg.com/es6-object-assign/-/es6-object-assign-1.1.0.tgz#c2c3582656247c39ea107cb1e6652b6f9f24523c"
788 | integrity sha1-wsNYJlYkfDnqEHyx5mUrb58kUjw=
789 |
790 | escalade@^3.1.1:
791 | version "3.1.1"
792 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
793 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
794 |
795 | escape-string-regexp@^1.0.5:
796 | version "1.0.5"
797 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
798 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
799 |
800 | esutils@^2.0.2:
801 | version "2.0.3"
802 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
803 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
804 |
805 | etag@1.8.1:
806 | version "1.8.1"
807 | resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
808 | integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=
809 |
810 | events@^3.0.0:
811 | version "3.3.0"
812 | resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400"
813 | integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==
814 |
815 | evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
816 | version "1.0.3"
817 | resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02"
818 | integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==
819 | dependencies:
820 | md5.js "^1.3.4"
821 | safe-buffer "^5.1.1"
822 |
823 | fill-range@^7.0.1:
824 | version "7.0.1"
825 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
826 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
827 | dependencies:
828 | to-regex-range "^5.0.1"
829 |
830 | find-cache-dir@3.3.1:
831 | version "3.3.1"
832 | resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-3.3.1.tgz#89b33fad4a4670daa94f855f7fbe31d6d84fe880"
833 | integrity sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==
834 | dependencies:
835 | commondir "^1.0.1"
836 | make-dir "^3.0.2"
837 | pkg-dir "^4.1.0"
838 |
839 | find-up@^4.0.0:
840 | version "4.1.0"
841 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
842 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
843 | dependencies:
844 | locate-path "^5.0.0"
845 | path-exists "^4.0.0"
846 |
847 | foreach@^2.0.5:
848 | version "2.0.5"
849 | resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99"
850 | integrity sha1-C+4AUBiusmDQo6865ljdATbsG5k=
851 |
852 | fsevents@~2.3.1:
853 | version "2.3.2"
854 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
855 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
856 |
857 | function-bind@^1.1.1:
858 | version "1.1.1"
859 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
860 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
861 |
862 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.1:
863 | version "1.1.1"
864 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6"
865 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==
866 | dependencies:
867 | function-bind "^1.1.1"
868 | has "^1.0.3"
869 | has-symbols "^1.0.1"
870 |
871 | get-orientation@1.1.2:
872 | version "1.1.2"
873 | resolved "https://registry.yarnpkg.com/get-orientation/-/get-orientation-1.1.2.tgz#20507928951814f8a91ded0a0e67b29dfab98947"
874 | integrity sha512-/pViTfifW+gBbh/RnlFYHINvELT9Znt+SYyDKAUL6uV6By019AK/s+i9XP4jSwq7lwP38Fd8HVeTxym3+hkwmQ==
875 | dependencies:
876 | stream-parser "^0.3.1"
877 |
878 | glob-parent@~5.1.0:
879 | version "5.1.2"
880 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
881 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
882 | dependencies:
883 | is-glob "^4.0.1"
884 |
885 | glob-to-regexp@^0.4.1:
886 | version "0.4.1"
887 | resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e"
888 | integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==
889 |
890 | globals@^11.1.0:
891 | version "11.12.0"
892 | resolved "https://registry.npm.taobao.org/globals/download/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
893 | integrity sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4=
894 |
895 | graceful-fs@^4.1.2:
896 | version "4.2.6"
897 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee"
898 | integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==
899 |
900 | has-bigints@^1.0.1:
901 | version "1.0.1"
902 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113"
903 | integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==
904 |
905 | has-flag@^3.0.0:
906 | version "3.0.0"
907 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
908 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
909 |
910 | has-flag@^4.0.0:
911 | version "4.0.0"
912 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
913 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
914 |
915 | has-symbols@^1.0.1, has-symbols@^1.0.2:
916 | version "1.0.2"
917 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423"
918 | integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==
919 |
920 | has@^1.0.3:
921 | version "1.0.3"
922 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
923 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
924 | dependencies:
925 | function-bind "^1.1.1"
926 |
927 | hash-base@^3.0.0:
928 | version "3.1.0"
929 | resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.1.0.tgz#55c381d9e06e1d2997a883b4a3fddfe7f0d3af33"
930 | integrity sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==
931 | dependencies:
932 | inherits "^2.0.4"
933 | readable-stream "^3.6.0"
934 | safe-buffer "^5.2.0"
935 |
936 | hash.js@^1.0.0, hash.js@^1.0.3:
937 | version "1.1.7"
938 | resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42"
939 | integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==
940 | dependencies:
941 | inherits "^2.0.3"
942 | minimalistic-assert "^1.0.1"
943 |
944 | he@1.2.0:
945 | version "1.2.0"
946 | resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f"
947 | integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
948 |
949 | hmac-drbg@^1.0.1:
950 | version "1.0.1"
951 | resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1"
952 | integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=
953 | dependencies:
954 | hash.js "^1.0.3"
955 | minimalistic-assert "^1.0.0"
956 | minimalistic-crypto-utils "^1.0.1"
957 |
958 | hoist-non-react-statics@^3.0.0:
959 | version "3.3.2"
960 | resolved "https://registry.npm.taobao.org/hoist-non-react-statics/download/hoist-non-react-statics-3.3.2.tgz#ece0acaf71d62c2969c2ec59feff42a4b1a85b45"
961 | integrity sha1-7OCsr3HWLClpwuxZ/v9CpLGoW0U=
962 | dependencies:
963 | react-is "^16.7.0"
964 |
965 | http-errors@1.7.3:
966 | version "1.7.3"
967 | resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06"
968 | integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==
969 | dependencies:
970 | depd "~1.1.2"
971 | inherits "2.0.4"
972 | setprototypeof "1.1.1"
973 | statuses ">= 1.5.0 < 2"
974 | toidentifier "1.0.0"
975 |
976 | https-browserify@1.0.0, https-browserify@^1.0.0:
977 | version "1.0.0"
978 | resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"
979 | integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=
980 |
981 | iconv-lite@0.4.24:
982 | version "0.4.24"
983 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
984 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
985 | dependencies:
986 | safer-buffer ">= 2.1.2 < 3"
987 |
988 | iconv-lite@^0.6.2:
989 | version "0.6.3"
990 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501"
991 | integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==
992 | dependencies:
993 | safer-buffer ">= 2.1.2 < 3.0.0"
994 |
995 | ieee754@^1.1.4:
996 | version "1.2.1"
997 | resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352"
998 | integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==
999 |
1000 | inherits@2.0.1:
1001 | version "2.0.1"
1002 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
1003 | integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=
1004 |
1005 | inherits@2.0.3:
1006 | version "2.0.3"
1007 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
1008 | integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
1009 |
1010 | inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3, inherits@~2.0.4:
1011 | version "2.0.4"
1012 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
1013 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
1014 |
1015 | is-arguments@^1.0.4:
1016 | version "1.1.0"
1017 | resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.0.tgz#62353031dfbee07ceb34656a6bde59efecae8dd9"
1018 | integrity sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==
1019 | dependencies:
1020 | call-bind "^1.0.0"
1021 |
1022 | is-bigint@^1.0.1:
1023 | version "1.0.2"
1024 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.2.tgz#ffb381442503235ad245ea89e45b3dbff040ee5a"
1025 | integrity sha512-0JV5+SOCQkIdzjBK9buARcV804Ddu7A0Qet6sHi3FimE9ne6m4BGQZfRn+NZiXbBk4F4XmHfDZIipLj9pX8dSA==
1026 |
1027 | is-binary-path@~2.1.0:
1028 | version "2.1.0"
1029 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
1030 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
1031 | dependencies:
1032 | binary-extensions "^2.0.0"
1033 |
1034 | is-boolean-object@^1.1.0:
1035 | version "1.1.1"
1036 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.1.tgz#3c0878f035cb821228d350d2e1e36719716a3de8"
1037 | integrity sha512-bXdQWkECBUIAcCkeH1unwJLIpZYaa5VvuygSyS/c2lf719mTKZDU5UdDRlpd01UjADgmW8RfqaP+mRaVPdr/Ng==
1038 | dependencies:
1039 | call-bind "^1.0.2"
1040 |
1041 | is-callable@^1.1.4, is-callable@^1.2.3:
1042 | version "1.2.3"
1043 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.3.tgz#8b1e0500b73a1d76c70487636f368e519de8db8e"
1044 | integrity sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==
1045 |
1046 | is-date-object@^1.0.1:
1047 | version "1.0.4"
1048 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.4.tgz#550cfcc03afada05eea3dd30981c7b09551f73e5"
1049 | integrity sha512-/b4ZVsG7Z5XVtIxs/h9W8nvfLgSAyKYdtGWQLbqy6jA1icmgjf8WCoTKgeS4wy5tYaPePouzFMANbnj94c2Z+A==
1050 |
1051 | is-extglob@^2.1.1:
1052 | version "2.1.1"
1053 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
1054 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
1055 |
1056 | is-generator-function@^1.0.7:
1057 | version "1.0.9"
1058 | resolved "https://registry.yarnpkg.com/is-generator-function/-/is-generator-function-1.0.9.tgz#e5f82c2323673e7fcad3d12858c83c4039f6399c"
1059 | integrity sha512-ZJ34p1uvIfptHCN7sFTjGibB9/oBg17sHqzDLfuwhvmN/qLVvIQXRQ8licZQ35WJ8KuEQt/etnnzQFI9C9Ue/A==
1060 |
1061 | is-glob@^4.0.1, is-glob@~4.0.1:
1062 | version "4.0.1"
1063 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
1064 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==
1065 | dependencies:
1066 | is-extglob "^2.1.1"
1067 |
1068 | is-nan@^1.2.1:
1069 | version "1.3.2"
1070 | resolved "https://registry.yarnpkg.com/is-nan/-/is-nan-1.3.2.tgz#043a54adea31748b55b6cd4e09aadafa69bd9e1d"
1071 | integrity sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==
1072 | dependencies:
1073 | call-bind "^1.0.0"
1074 | define-properties "^1.1.3"
1075 |
1076 | is-negative-zero@^2.0.1:
1077 | version "2.0.1"
1078 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24"
1079 | integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==
1080 |
1081 | is-number-object@^1.0.4:
1082 | version "1.0.5"
1083 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.5.tgz#6edfaeed7950cff19afedce9fbfca9ee6dd289eb"
1084 | integrity sha512-RU0lI/n95pMoUKu9v1BZP5MBcZuNSVJkMkAG2dJqC4z2GlkGUNeH68SuHuBKBD/XFe+LHZ+f9BKkLET60Niedw==
1085 |
1086 | is-number@^7.0.0:
1087 | version "7.0.0"
1088 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
1089 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
1090 |
1091 | is-regex@^1.1.2:
1092 | version "1.1.3"
1093 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.3.tgz#d029f9aff6448b93ebbe3f33dac71511fdcbef9f"
1094 | integrity sha512-qSVXFz28HM7y+IWX6vLCsexdlvzT1PJNFSBuaQLQ5o0IEw8UDYW6/2+eCMVyIsbM8CNLX2a/QWmSpyxYEHY7CQ==
1095 | dependencies:
1096 | call-bind "^1.0.2"
1097 | has-symbols "^1.0.2"
1098 |
1099 | is-string@^1.0.5:
1100 | version "1.0.6"
1101 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.6.tgz#3fe5d5992fb0d93404f32584d4b0179a71b54a5f"
1102 | integrity sha512-2gdzbKUuqtQ3lYNrUTQYoClPhm7oQu4UdpSZMp1/DGgkHBT8E2Z1l0yMdb6D4zNAxwDiMv8MdulKROJGNl0Q0w==
1103 |
1104 | is-symbol@^1.0.2, is-symbol@^1.0.3:
1105 | version "1.0.4"
1106 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c"
1107 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
1108 | dependencies:
1109 | has-symbols "^1.0.2"
1110 |
1111 | is-typed-array@^1.1.3:
1112 | version "1.1.5"
1113 | resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.5.tgz#f32e6e096455e329eb7b423862456aa213f0eb4e"
1114 | integrity sha512-S+GRDgJlR3PyEbsX/Fobd9cqpZBuvUS+8asRqYDMLCb2qMzt1oz5m5oxQCxOgUDxiWsOVNi4yaF+/uvdlHlYug==
1115 | dependencies:
1116 | available-typed-arrays "^1.0.2"
1117 | call-bind "^1.0.2"
1118 | es-abstract "^1.18.0-next.2"
1119 | foreach "^2.0.5"
1120 | has-symbols "^1.0.1"
1121 |
1122 | isarray@^1.0.0, isarray@~1.0.0:
1123 | version "1.0.0"
1124 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
1125 | integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
1126 |
1127 | jest-worker@27.0.0-next.5:
1128 | version "27.0.0-next.5"
1129 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.0.0-next.5.tgz#5985ee29b12a4e191f4aae4bb73b97971d86ec28"
1130 | integrity sha512-mk0umAQ5lT+CaOJ+Qp01N6kz48sJG2kr2n1rX0koqKf6FIygQV0qLOdN9SCYID4IVeSigDOcPeGLozdMLYfb5g==
1131 | dependencies:
1132 | "@types/node" "*"
1133 | merge-stream "^2.0.0"
1134 | supports-color "^8.0.0"
1135 |
1136 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
1137 | version "4.0.0"
1138 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
1139 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
1140 |
1141 | jsesc@^2.5.1:
1142 | version "2.5.2"
1143 | resolved "https://registry.npm.taobao.org/jsesc/download/jsesc-2.5.2.tgz?cache=0&sync_timestamp=1603893628084&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjsesc%2Fdownload%2Fjsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
1144 | integrity sha1-gFZNLkg9rPbo7yCWUKZ98/DCg6Q=
1145 |
1146 | json5@^1.0.1:
1147 | version "1.0.1"
1148 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe"
1149 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==
1150 | dependencies:
1151 | minimist "^1.2.0"
1152 |
1153 | loader-utils@1.2.3:
1154 | version "1.2.3"
1155 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7"
1156 | integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==
1157 | dependencies:
1158 | big.js "^5.2.2"
1159 | emojis-list "^2.0.0"
1160 | json5 "^1.0.1"
1161 |
1162 | locate-path@^5.0.0:
1163 | version "5.0.0"
1164 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
1165 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
1166 | dependencies:
1167 | p-locate "^4.1.0"
1168 |
1169 | lodash.sortby@^4.7.0:
1170 | version "4.7.0"
1171 | resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
1172 | integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=
1173 |
1174 | lodash@^4.17.11, lodash@^4.17.13:
1175 | version "4.17.21"
1176 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
1177 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
1178 |
1179 | loose-envify@^1.1.0, loose-envify@^1.4.0:
1180 | version "1.4.0"
1181 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
1182 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
1183 | dependencies:
1184 | js-tokens "^3.0.0 || ^4.0.0"
1185 |
1186 | make-dir@^3.0.2:
1187 | version "3.1.0"
1188 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f"
1189 | integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==
1190 | dependencies:
1191 | semver "^6.0.0"
1192 |
1193 | md5.js@^1.3.4:
1194 | version "1.3.5"
1195 | resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f"
1196 | integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==
1197 | dependencies:
1198 | hash-base "^3.0.0"
1199 | inherits "^2.0.1"
1200 | safe-buffer "^5.1.2"
1201 |
1202 | merge-stream@^2.0.0:
1203 | version "2.0.0"
1204 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
1205 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
1206 |
1207 | miller-rabin@^4.0.0:
1208 | version "4.0.1"
1209 | resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d"
1210 | integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==
1211 | dependencies:
1212 | bn.js "^4.0.0"
1213 | brorand "^1.0.1"
1214 |
1215 | minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1:
1216 | version "1.0.1"
1217 | resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"
1218 | integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==
1219 |
1220 | minimalistic-crypto-utils@^1.0.1:
1221 | version "1.0.1"
1222 | resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
1223 | integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=
1224 |
1225 | minimist@^1.2.0:
1226 | version "1.2.5"
1227 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
1228 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
1229 |
1230 | ms@2.0.0:
1231 | version "2.0.0"
1232 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
1233 | integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
1234 |
1235 | ms@2.1.2:
1236 | version "2.1.2"
1237 | resolved "https://registry.nlark.com/ms/download/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
1238 | integrity sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=
1239 |
1240 | nanoid@^3.1.22:
1241 | version "3.1.23"
1242 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.23.tgz#f744086ce7c2bc47ee0a8472574d5c78e4183a81"
1243 | integrity sha512-FiB0kzdP0FFVGDKlRLEQ1BgDzU87dy5NnzjeW9YZNt+/c3+q82EQDUwniSAUxp/F0gFNI1ZhKU1FqYsMuqZVnw==
1244 |
1245 | native-url@0.3.4:
1246 | version "0.3.4"
1247 | resolved "https://registry.yarnpkg.com/native-url/-/native-url-0.3.4.tgz#29c943172aed86c63cee62c8c04db7f5756661f8"
1248 | integrity sha512-6iM8R99ze45ivyH8vybJ7X0yekIcPf5GgLV5K0ENCbmRcaRIDoj37BC8iLEmaaBfqqb8enuZ5p0uhY+lVAbAcA==
1249 | dependencies:
1250 | querystring "^0.2.0"
1251 |
1252 | next@10.2.3:
1253 | version "10.2.3"
1254 | resolved "https://registry.yarnpkg.com/next/-/next-10.2.3.tgz#5aa058a63626338cea91c198fda8f2715c058394"
1255 | integrity sha512-dkM1mIfnORtGyzw/Yme8RdqNxlCMZyi4Lqj56F01/yHbe1ZtOaJ0cyqqRB4RGiPhjGGh0319f8ddjDyO1605Ow==
1256 | dependencies:
1257 | "@babel/runtime" "7.12.5"
1258 | "@hapi/accept" "5.0.2"
1259 | "@next/env" "10.2.3"
1260 | "@next/polyfill-module" "10.2.3"
1261 | "@next/react-dev-overlay" "10.2.3"
1262 | "@next/react-refresh-utils" "10.2.3"
1263 | "@opentelemetry/api" "0.14.0"
1264 | assert "2.0.0"
1265 | ast-types "0.13.2"
1266 | browserify-zlib "0.2.0"
1267 | browserslist "4.16.6"
1268 | buffer "5.6.0"
1269 | caniuse-lite "^1.0.30001228"
1270 | chalk "2.4.2"
1271 | chokidar "3.5.1"
1272 | constants-browserify "1.0.0"
1273 | crypto-browserify "3.12.0"
1274 | cssnano-simple "2.0.0"
1275 | domain-browser "4.19.0"
1276 | encoding "0.1.13"
1277 | etag "1.8.1"
1278 | find-cache-dir "3.3.1"
1279 | get-orientation "1.1.2"
1280 | https-browserify "1.0.0"
1281 | jest-worker "27.0.0-next.5"
1282 | native-url "0.3.4"
1283 | node-fetch "2.6.1"
1284 | node-html-parser "1.4.9"
1285 | node-libs-browser "^2.2.1"
1286 | os-browserify "0.3.0"
1287 | p-limit "3.1.0"
1288 | path-browserify "1.0.1"
1289 | pnp-webpack-plugin "1.6.4"
1290 | postcss "8.2.13"
1291 | process "0.11.10"
1292 | prop-types "15.7.2"
1293 | querystring-es3 "0.2.1"
1294 | raw-body "2.4.1"
1295 | react-is "16.13.1"
1296 | react-refresh "0.8.3"
1297 | stream-browserify "3.0.0"
1298 | stream-http "3.1.1"
1299 | string_decoder "1.3.0"
1300 | styled-jsx "3.3.2"
1301 | timers-browserify "2.0.12"
1302 | tty-browserify "0.0.1"
1303 | use-subscription "1.5.1"
1304 | util "0.12.3"
1305 | vm-browserify "1.1.2"
1306 | watchpack "2.1.1"
1307 |
1308 | node-fetch@2.6.1:
1309 | version "2.6.1"
1310 | resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052"
1311 | integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==
1312 |
1313 | node-html-parser@1.4.9:
1314 | version "1.4.9"
1315 | resolved "https://registry.yarnpkg.com/node-html-parser/-/node-html-parser-1.4.9.tgz#3c8f6cac46479fae5800725edb532e9ae8fd816c"
1316 | integrity sha512-UVcirFD1Bn0O+TSmloHeHqZZCxHjvtIeGdVdGMhyZ8/PWlEiZaZ5iJzR189yKZr8p0FXN58BUeC7RHRkf/KYGw==
1317 | dependencies:
1318 | he "1.2.0"
1319 |
1320 | node-libs-browser@^2.2.1:
1321 | version "2.2.1"
1322 | resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425"
1323 | integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==
1324 | dependencies:
1325 | assert "^1.1.1"
1326 | browserify-zlib "^0.2.0"
1327 | buffer "^4.3.0"
1328 | console-browserify "^1.1.0"
1329 | constants-browserify "^1.0.0"
1330 | crypto-browserify "^3.11.0"
1331 | domain-browser "^1.1.1"
1332 | events "^3.0.0"
1333 | https-browserify "^1.0.0"
1334 | os-browserify "^0.3.0"
1335 | path-browserify "0.0.1"
1336 | process "^0.11.10"
1337 | punycode "^1.2.4"
1338 | querystring-es3 "^0.2.0"
1339 | readable-stream "^2.3.3"
1340 | stream-browserify "^2.0.1"
1341 | stream-http "^2.7.2"
1342 | string_decoder "^1.0.0"
1343 | timers-browserify "^2.0.4"
1344 | tty-browserify "0.0.0"
1345 | url "^0.11.0"
1346 | util "^0.11.0"
1347 | vm-browserify "^1.0.1"
1348 |
1349 | node-releases@^1.1.71:
1350 | version "1.1.72"
1351 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.72.tgz#14802ab6b1039a79a0c7d662b610a5bbd76eacbe"
1352 | integrity sha512-LLUo+PpH3dU6XizX3iVoubUNheF/owjXCZZ5yACDxNnPtgFuludV1ZL3ayK1kVep42Rmm0+R9/Y60NQbZ2bifw==
1353 |
1354 | normalize-path@^3.0.0, normalize-path@~3.0.0:
1355 | version "3.0.0"
1356 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
1357 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
1358 |
1359 | object-assign@^4.1.1:
1360 | version "4.1.1"
1361 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1362 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
1363 |
1364 | object-inspect@^1.9.0:
1365 | version "1.10.3"
1366 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.10.3.tgz#c2aa7d2d09f50c99375704f7a0adf24c5782d369"
1367 | integrity sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==
1368 |
1369 | object-is@^1.0.1:
1370 | version "1.1.5"
1371 | resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac"
1372 | integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==
1373 | dependencies:
1374 | call-bind "^1.0.2"
1375 | define-properties "^1.1.3"
1376 |
1377 | object-keys@^1.0.12, object-keys@^1.1.1:
1378 | version "1.1.1"
1379 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
1380 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
1381 |
1382 | object.assign@^4.1.2:
1383 | version "4.1.2"
1384 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940"
1385 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==
1386 | dependencies:
1387 | call-bind "^1.0.0"
1388 | define-properties "^1.1.3"
1389 | has-symbols "^1.0.1"
1390 | object-keys "^1.1.1"
1391 |
1392 | os-browserify@0.3.0, os-browserify@^0.3.0:
1393 | version "0.3.0"
1394 | resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27"
1395 | integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=
1396 |
1397 | p-limit@3.1.0:
1398 | version "3.1.0"
1399 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b"
1400 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
1401 | dependencies:
1402 | yocto-queue "^0.1.0"
1403 |
1404 | p-limit@^2.2.0:
1405 | version "2.3.0"
1406 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
1407 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
1408 | dependencies:
1409 | p-try "^2.0.0"
1410 |
1411 | p-locate@^4.1.0:
1412 | version "4.1.0"
1413 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07"
1414 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
1415 | dependencies:
1416 | p-limit "^2.2.0"
1417 |
1418 | p-try@^2.0.0:
1419 | version "2.2.0"
1420 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
1421 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
1422 |
1423 | pako@~1.0.5:
1424 | version "1.0.11"
1425 | resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf"
1426 | integrity sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==
1427 |
1428 | parse-asn1@^5.0.0, parse-asn1@^5.1.5:
1429 | version "5.1.6"
1430 | resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4"
1431 | integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==
1432 | dependencies:
1433 | asn1.js "^5.2.0"
1434 | browserify-aes "^1.0.0"
1435 | evp_bytestokey "^1.0.0"
1436 | pbkdf2 "^3.0.3"
1437 | safe-buffer "^5.1.1"
1438 |
1439 | path-browserify@0.0.1:
1440 | version "0.0.1"
1441 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a"
1442 | integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==
1443 |
1444 | path-browserify@1.0.1:
1445 | version "1.0.1"
1446 | resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd"
1447 | integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==
1448 |
1449 | path-exists@^4.0.0:
1450 | version "4.0.0"
1451 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
1452 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
1453 |
1454 | pbkdf2@^3.0.3:
1455 | version "3.1.2"
1456 | resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.2.tgz#dd822aa0887580e52f1a039dc3eda108efae3075"
1457 | integrity sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==
1458 | dependencies:
1459 | create-hash "^1.1.2"
1460 | create-hmac "^1.1.4"
1461 | ripemd160 "^2.0.1"
1462 | safe-buffer "^5.0.1"
1463 | sha.js "^2.4.8"
1464 |
1465 | picomatch@^2.0.4, picomatch@^2.2.1:
1466 | version "2.3.0"
1467 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972"
1468 | integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==
1469 |
1470 | pkg-dir@^4.1.0:
1471 | version "4.2.0"
1472 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3"
1473 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
1474 | dependencies:
1475 | find-up "^4.0.0"
1476 |
1477 | platform@1.3.6:
1478 | version "1.3.6"
1479 | resolved "https://registry.yarnpkg.com/platform/-/platform-1.3.6.tgz#48b4ce983164b209c2d45a107adb31f473a6e7a7"
1480 | integrity sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg==
1481 |
1482 | pnp-webpack-plugin@1.6.4:
1483 | version "1.6.4"
1484 | resolved "https://registry.yarnpkg.com/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz#c9711ac4dc48a685dabafc86f8b6dd9f8df84149"
1485 | integrity sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==
1486 | dependencies:
1487 | ts-pnp "^1.1.6"
1488 |
1489 | postcss-value-parser@^4.0.2:
1490 | version "4.1.0"
1491 | resolved "https://registry.nlark.com/postcss-value-parser/download/postcss-value-parser-4.1.0.tgz?cache=0&sync_timestamp=1618846993987&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fpostcss-value-parser%2Fdownload%2Fpostcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb"
1492 | integrity sha1-RD9qIM7WSBor2k+oUypuVdeJoss=
1493 |
1494 | postcss@8.2.13:
1495 | version "8.2.13"
1496 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.2.13.tgz#dbe043e26e3c068e45113b1ed6375d2d37e2129f"
1497 | integrity sha512-FCE5xLH+hjbzRdpbRb1IMCvPv9yZx2QnDarBEYSN0N0HYk+TcXsEhwdFcFb+SRWOKzKGErhIEbBK2ogyLdTtfQ==
1498 | dependencies:
1499 | colorette "^1.2.2"
1500 | nanoid "^3.1.22"
1501 | source-map "^0.6.1"
1502 |
1503 | process-nextick-args@~2.0.0:
1504 | version "2.0.1"
1505 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
1506 | integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
1507 |
1508 | process@0.11.10, process@^0.11.10:
1509 | version "0.11.10"
1510 | resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182"
1511 | integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI=
1512 |
1513 | prop-types@15.7.2:
1514 | version "15.7.2"
1515 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
1516 | integrity sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==
1517 | dependencies:
1518 | loose-envify "^1.4.0"
1519 | object-assign "^4.1.1"
1520 | react-is "^16.8.1"
1521 |
1522 | public-encrypt@^4.0.0:
1523 | version "4.0.3"
1524 | resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0"
1525 | integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==
1526 | dependencies:
1527 | bn.js "^4.1.0"
1528 | browserify-rsa "^4.0.0"
1529 | create-hash "^1.1.0"
1530 | parse-asn1 "^5.0.0"
1531 | randombytes "^2.0.1"
1532 | safe-buffer "^5.1.2"
1533 |
1534 | punycode@1.3.2:
1535 | version "1.3.2"
1536 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d"
1537 | integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=
1538 |
1539 | punycode@^1.2.4:
1540 | version "1.4.1"
1541 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
1542 | integrity sha1-wNWmOycYgArY4esPpSachN1BhF4=
1543 |
1544 | punycode@^2.1.0:
1545 | version "2.1.1"
1546 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
1547 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
1548 |
1549 | querystring-es3@0.2.1, querystring-es3@^0.2.0:
1550 | version "0.2.1"
1551 | resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73"
1552 | integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=
1553 |
1554 | querystring@0.2.0:
1555 | version "0.2.0"
1556 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620"
1557 | integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=
1558 |
1559 | querystring@^0.2.0:
1560 | version "0.2.1"
1561 | resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.1.tgz#40d77615bb09d16902a85c3e38aa8b5ed761c2dd"
1562 | integrity sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==
1563 |
1564 | randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5:
1565 | version "2.1.0"
1566 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
1567 | integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==
1568 | dependencies:
1569 | safe-buffer "^5.1.0"
1570 |
1571 | randomfill@^1.0.3:
1572 | version "1.0.4"
1573 | resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458"
1574 | integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==
1575 | dependencies:
1576 | randombytes "^2.0.5"
1577 | safe-buffer "^5.1.0"
1578 |
1579 | raw-body@2.4.1:
1580 | version "2.4.1"
1581 | resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.1.tgz#30ac82f98bb5ae8c152e67149dac8d55153b168c"
1582 | integrity sha512-9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA==
1583 | dependencies:
1584 | bytes "3.1.0"
1585 | http-errors "1.7.3"
1586 | iconv-lite "0.4.24"
1587 | unpipe "1.0.0"
1588 |
1589 | react-dom@17.0.2:
1590 | version "17.0.2"
1591 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23"
1592 | integrity sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==
1593 | dependencies:
1594 | loose-envify "^1.1.0"
1595 | object-assign "^4.1.1"
1596 | scheduler "^0.20.2"
1597 |
1598 | react-icons@^4.2.0:
1599 | version "4.2.0"
1600 | resolved "https://registry.npm.taobao.org/react-icons/download/react-icons-4.2.0.tgz#6dda80c8a8f338ff96a1851424d63083282630d0"
1601 | integrity sha1-bdqAyKjzOP+WoYUUJNYwgygmMNA=
1602 |
1603 | react-is@16.13.1, react-is@^16.7.0, react-is@^16.8.1:
1604 | version "16.13.1"
1605 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
1606 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
1607 |
1608 | react-refresh@0.8.3:
1609 | version "0.8.3"
1610 | resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.8.3.tgz#721d4657672d400c5e3c75d063c4a85fb2d5d68f"
1611 | integrity sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==
1612 |
1613 | react@17.0.2:
1614 | version "17.0.2"
1615 | resolved "https://registry.yarnpkg.com/react/-/react-17.0.2.tgz#d0b5cc516d29eb3eee383f75b62864cfb6800037"
1616 | integrity sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==
1617 | dependencies:
1618 | loose-envify "^1.1.0"
1619 | object-assign "^4.1.1"
1620 |
1621 | readable-stream@^2.0.2, readable-stream@^2.3.3, readable-stream@^2.3.6:
1622 | version "2.3.7"
1623 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
1624 | integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==
1625 | dependencies:
1626 | core-util-is "~1.0.0"
1627 | inherits "~2.0.3"
1628 | isarray "~1.0.0"
1629 | process-nextick-args "~2.0.0"
1630 | safe-buffer "~5.1.1"
1631 | string_decoder "~1.1.1"
1632 | util-deprecate "~1.0.1"
1633 |
1634 | readable-stream@^3.5.0, readable-stream@^3.6.0:
1635 | version "3.6.0"
1636 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
1637 | integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==
1638 | dependencies:
1639 | inherits "^2.0.3"
1640 | string_decoder "^1.1.1"
1641 | util-deprecate "^1.0.1"
1642 |
1643 | readdirp@~3.5.0:
1644 | version "3.5.0"
1645 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz#9ba74c019b15d365278d2e91bb8c48d7b4d42c9e"
1646 | integrity sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==
1647 | dependencies:
1648 | picomatch "^2.2.1"
1649 |
1650 | regenerator-runtime@^0.13.4:
1651 | version "0.13.7"
1652 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55"
1653 | integrity sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==
1654 |
1655 | ripemd160@^2.0.0, ripemd160@^2.0.1:
1656 | version "2.0.2"
1657 | resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c"
1658 | integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==
1659 | dependencies:
1660 | hash-base "^3.0.0"
1661 | inherits "^2.0.1"
1662 |
1663 | safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0:
1664 | version "5.2.1"
1665 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
1666 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
1667 |
1668 | safe-buffer@~5.1.0, safe-buffer@~5.1.1:
1669 | version "5.1.2"
1670 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
1671 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
1672 |
1673 | "safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.1.0:
1674 | version "2.1.2"
1675 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
1676 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
1677 |
1678 | scheduler@^0.20.2:
1679 | version "0.20.2"
1680 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91"
1681 | integrity sha512-2eWfGgAqqWFGqtdMmcL5zCMK1U8KlXv8SQFGglL3CEtd0aDVDWgeF/YoCmvln55m5zSk3J/20hTaSBeSObsQDQ==
1682 | dependencies:
1683 | loose-envify "^1.1.0"
1684 | object-assign "^4.1.1"
1685 |
1686 | semver@^6.0.0:
1687 | version "6.3.0"
1688 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
1689 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
1690 |
1691 | setimmediate@^1.0.4:
1692 | version "1.0.5"
1693 | resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285"
1694 | integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=
1695 |
1696 | setprototypeof@1.1.1:
1697 | version "1.1.1"
1698 | resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683"
1699 | integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==
1700 |
1701 | sha.js@^2.4.0, sha.js@^2.4.8:
1702 | version "2.4.11"
1703 | resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7"
1704 | integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==
1705 | dependencies:
1706 | inherits "^2.0.1"
1707 | safe-buffer "^5.0.1"
1708 |
1709 | shallowequal@^1.1.0:
1710 | version "1.1.0"
1711 | resolved "https://registry.npm.taobao.org/shallowequal/download/shallowequal-1.1.0.tgz#188d521de95b9087404fd4dcb68b13df0ae4e7f8"
1712 | integrity sha1-GI1SHelbkIdAT9TctosT3wrk5/g=
1713 |
1714 | shell-quote@1.7.2:
1715 | version "1.7.2"
1716 | resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2"
1717 | integrity sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==
1718 |
1719 | source-map@0.7.3:
1720 | version "0.7.3"
1721 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383"
1722 | integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==
1723 |
1724 | source-map@0.8.0-beta.0:
1725 | version "0.8.0-beta.0"
1726 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.8.0-beta.0.tgz#d4c1bb42c3f7ee925f005927ba10709e0d1d1f11"
1727 | integrity sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==
1728 | dependencies:
1729 | whatwg-url "^7.0.0"
1730 |
1731 | source-map@^0.5.0:
1732 | version "0.5.7"
1733 | resolved "https://registry.nlark.com/source-map/download/source-map-0.5.7.tgz?cache=0&sync_timestamp=1618846757741&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
1734 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
1735 |
1736 | source-map@^0.6.1:
1737 | version "0.6.1"
1738 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
1739 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
1740 |
1741 | stacktrace-parser@0.1.10:
1742 | version "0.1.10"
1743 | resolved "https://registry.yarnpkg.com/stacktrace-parser/-/stacktrace-parser-0.1.10.tgz#29fb0cae4e0d0b85155879402857a1639eb6051a"
1744 | integrity sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==
1745 | dependencies:
1746 | type-fest "^0.7.1"
1747 |
1748 | "statuses@>= 1.5.0 < 2":
1749 | version "1.5.0"
1750 | resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
1751 | integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=
1752 |
1753 | stream-browserify@3.0.0:
1754 | version "3.0.0"
1755 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-3.0.0.tgz#22b0a2850cdf6503e73085da1fc7b7d0c2122f2f"
1756 | integrity sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==
1757 | dependencies:
1758 | inherits "~2.0.4"
1759 | readable-stream "^3.5.0"
1760 |
1761 | stream-browserify@^2.0.1:
1762 | version "2.0.2"
1763 | resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b"
1764 | integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==
1765 | dependencies:
1766 | inherits "~2.0.1"
1767 | readable-stream "^2.0.2"
1768 |
1769 | stream-http@3.1.1:
1770 | version "3.1.1"
1771 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-3.1.1.tgz#0370a8017cf8d050b9a8554afe608f043eaff564"
1772 | integrity sha512-S7OqaYu0EkFpgeGFb/NPOoPLxFko7TPqtEeFg5DXPB4v/KETHG0Ln6fRFrNezoelpaDKmycEmmZ81cC9DAwgYg==
1773 | dependencies:
1774 | builtin-status-codes "^3.0.0"
1775 | inherits "^2.0.4"
1776 | readable-stream "^3.6.0"
1777 | xtend "^4.0.2"
1778 |
1779 | stream-http@^2.7.2:
1780 | version "2.8.3"
1781 | resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc"
1782 | integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==
1783 | dependencies:
1784 | builtin-status-codes "^3.0.0"
1785 | inherits "^2.0.1"
1786 | readable-stream "^2.3.6"
1787 | to-arraybuffer "^1.0.0"
1788 | xtend "^4.0.0"
1789 |
1790 | stream-parser@^0.3.1:
1791 | version "0.3.1"
1792 | resolved "https://registry.yarnpkg.com/stream-parser/-/stream-parser-0.3.1.tgz#1618548694420021a1182ff0af1911c129761773"
1793 | integrity sha1-FhhUhpRCACGhGC/wrxkRwSl2F3M=
1794 | dependencies:
1795 | debug "2"
1796 |
1797 | string-hash@1.1.3:
1798 | version "1.1.3"
1799 | resolved "https://registry.yarnpkg.com/string-hash/-/string-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b"
1800 | integrity sha1-6Kr8CsGFW0Zmkp7X3RJ1311sgRs=
1801 |
1802 | string.prototype.trimend@^1.0.4:
1803 | version "1.0.4"
1804 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80"
1805 | integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==
1806 | dependencies:
1807 | call-bind "^1.0.2"
1808 | define-properties "^1.1.3"
1809 |
1810 | string.prototype.trimstart@^1.0.4:
1811 | version "1.0.4"
1812 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed"
1813 | integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==
1814 | dependencies:
1815 | call-bind "^1.0.2"
1816 | define-properties "^1.1.3"
1817 |
1818 | string_decoder@1.3.0, string_decoder@^1.0.0, string_decoder@^1.1.1:
1819 | version "1.3.0"
1820 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
1821 | integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
1822 | dependencies:
1823 | safe-buffer "~5.2.0"
1824 |
1825 | string_decoder@~1.1.1:
1826 | version "1.1.1"
1827 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
1828 | integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
1829 | dependencies:
1830 | safe-buffer "~5.1.0"
1831 |
1832 | strip-ansi@6.0.0:
1833 | version "6.0.0"
1834 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532"
1835 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==
1836 | dependencies:
1837 | ansi-regex "^5.0.0"
1838 |
1839 | styled-components@^5.3.0:
1840 | version "5.3.0"
1841 | resolved "https://registry.nlark.com/styled-components/download/styled-components-5.3.0.tgz#e47c3d3e9ddfff539f118a3dd0fd4f8f4fb25727"
1842 | integrity sha1-5Hw9Pp3f/1OfEYo90P1Pj0+yVyc=
1843 | dependencies:
1844 | "@babel/helper-module-imports" "^7.0.0"
1845 | "@babel/traverse" "^7.4.5"
1846 | "@emotion/is-prop-valid" "^0.8.8"
1847 | "@emotion/stylis" "^0.8.4"
1848 | "@emotion/unitless" "^0.7.4"
1849 | babel-plugin-styled-components ">= 1.12.0"
1850 | css-to-react-native "^3.0.0"
1851 | hoist-non-react-statics "^3.0.0"
1852 | shallowequal "^1.1.0"
1853 | supports-color "^5.5.0"
1854 |
1855 | styled-jsx@3.3.2:
1856 | version "3.3.2"
1857 | resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-3.3.2.tgz#2474601a26670a6049fb4d3f94bd91695b3ce018"
1858 | integrity sha512-daAkGd5mqhbBhLd6jYAjYBa9LpxYCzsgo/f6qzPdFxVB8yoGbhxvzQgkC0pfmCVvW3JuAEBn0UzFLBfkHVZG1g==
1859 | dependencies:
1860 | "@babel/types" "7.8.3"
1861 | babel-plugin-syntax-jsx "6.18.0"
1862 | convert-source-map "1.7.0"
1863 | loader-utils "1.2.3"
1864 | source-map "0.7.3"
1865 | string-hash "1.1.3"
1866 | stylis "3.5.4"
1867 | stylis-rule-sheet "0.0.10"
1868 |
1869 | styled-normalize@^8.0.7:
1870 | version "8.0.7"
1871 | resolved "https://registry.nlark.com/styled-normalize/download/styled-normalize-8.0.7.tgz#e883bff6a0c59a65a39365a4eb9c6cf48372c61f"
1872 | integrity sha1-6IO/9qDFmmWjk2Wk65xs9INyxh8=
1873 |
1874 | stylis-rule-sheet@0.0.10:
1875 | version "0.0.10"
1876 | resolved "https://registry.yarnpkg.com/stylis-rule-sheet/-/stylis-rule-sheet-0.0.10.tgz#44e64a2b076643f4b52e5ff71efc04d8c3c4a430"
1877 | integrity sha512-nTbZoaqoBnmK+ptANthb10ZRZOGC+EmTLLUxeYIuHNkEKcmKgXX1XWKkUBT2Ac4es3NybooPe0SmvKdhKJZAuw==
1878 |
1879 | stylis@3.5.4:
1880 | version "3.5.4"
1881 | resolved "https://registry.yarnpkg.com/stylis/-/stylis-3.5.4.tgz#f665f25f5e299cf3d64654ab949a57c768b73fbe"
1882 | integrity sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==
1883 |
1884 | supports-color@^5.3.0, supports-color@^5.5.0:
1885 | version "5.5.0"
1886 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
1887 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
1888 | dependencies:
1889 | has-flag "^3.0.0"
1890 |
1891 | supports-color@^7.1.0:
1892 | version "7.2.0"
1893 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
1894 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
1895 | dependencies:
1896 | has-flag "^4.0.0"
1897 |
1898 | supports-color@^8.0.0:
1899 | version "8.1.1"
1900 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c"
1901 | integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==
1902 | dependencies:
1903 | has-flag "^4.0.0"
1904 |
1905 | timers-browserify@2.0.12, timers-browserify@^2.0.4:
1906 | version "2.0.12"
1907 | resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.12.tgz#44a45c11fbf407f34f97bccd1577c652361b00ee"
1908 | integrity sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==
1909 | dependencies:
1910 | setimmediate "^1.0.4"
1911 |
1912 | to-arraybuffer@^1.0.0:
1913 | version "1.0.1"
1914 | resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43"
1915 | integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=
1916 |
1917 | to-fast-properties@^2.0.0:
1918 | version "2.0.0"
1919 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
1920 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
1921 |
1922 | to-regex-range@^5.0.1:
1923 | version "5.0.1"
1924 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
1925 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
1926 | dependencies:
1927 | is-number "^7.0.0"
1928 |
1929 | toidentifier@1.0.0:
1930 | version "1.0.0"
1931 | resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553"
1932 | integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==
1933 |
1934 | tr46@^1.0.1:
1935 | version "1.0.1"
1936 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09"
1937 | integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=
1938 | dependencies:
1939 | punycode "^2.1.0"
1940 |
1941 | ts-pnp@^1.1.6:
1942 | version "1.2.0"
1943 | resolved "https://registry.yarnpkg.com/ts-pnp/-/ts-pnp-1.2.0.tgz#a500ad084b0798f1c3071af391e65912c86bca92"
1944 | integrity sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==
1945 |
1946 | tty-browserify@0.0.0:
1947 | version "0.0.0"
1948 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6"
1949 | integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=
1950 |
1951 | tty-browserify@0.0.1:
1952 | version "0.0.1"
1953 | resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.1.tgz#3f05251ee17904dfd0677546670db9651682b811"
1954 | integrity sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==
1955 |
1956 | type-fest@^0.7.1:
1957 | version "0.7.1"
1958 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.7.1.tgz#8dda65feaf03ed78f0a3f9678f1869147f7c5c48"
1959 | integrity sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==
1960 |
1961 | unbox-primitive@^1.0.0:
1962 | version "1.0.1"
1963 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471"
1964 | integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==
1965 | dependencies:
1966 | function-bind "^1.1.1"
1967 | has-bigints "^1.0.1"
1968 | has-symbols "^1.0.2"
1969 | which-boxed-primitive "^1.0.2"
1970 |
1971 | unpipe@1.0.0:
1972 | version "1.0.0"
1973 | resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
1974 | integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=
1975 |
1976 | url@^0.11.0:
1977 | version "0.11.0"
1978 | resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
1979 | integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=
1980 | dependencies:
1981 | punycode "1.3.2"
1982 | querystring "0.2.0"
1983 |
1984 | use-subscription@1.5.1:
1985 | version "1.5.1"
1986 | resolved "https://registry.yarnpkg.com/use-subscription/-/use-subscription-1.5.1.tgz#73501107f02fad84c6dd57965beb0b75c68c42d1"
1987 | integrity sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA==
1988 | dependencies:
1989 | object-assign "^4.1.1"
1990 |
1991 | util-deprecate@^1.0.1, util-deprecate@~1.0.1:
1992 | version "1.0.2"
1993 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
1994 | integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
1995 |
1996 | util@0.10.3:
1997 | version "0.10.3"
1998 | resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9"
1999 | integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk=
2000 | dependencies:
2001 | inherits "2.0.1"
2002 |
2003 | util@0.12.3, util@^0.12.0:
2004 | version "0.12.3"
2005 | resolved "https://registry.yarnpkg.com/util/-/util-0.12.3.tgz#971bb0292d2cc0c892dab7c6a5d37c2bec707888"
2006 | integrity sha512-I8XkoQwE+fPQEhy9v012V+TSdH2kp9ts29i20TaaDUXsg7x/onePbhFJUExBfv/2ay1ZOp/Vsm3nDlmnFGSAog==
2007 | dependencies:
2008 | inherits "^2.0.3"
2009 | is-arguments "^1.0.4"
2010 | is-generator-function "^1.0.7"
2011 | is-typed-array "^1.1.3"
2012 | safe-buffer "^5.1.2"
2013 | which-typed-array "^1.1.2"
2014 |
2015 | util@^0.11.0:
2016 | version "0.11.1"
2017 | resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61"
2018 | integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==
2019 | dependencies:
2020 | inherits "2.0.3"
2021 |
2022 | vm-browserify@1.1.2, vm-browserify@^1.0.1:
2023 | version "1.1.2"
2024 | resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0"
2025 | integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==
2026 |
2027 | watchpack@2.1.1:
2028 | version "2.1.1"
2029 | resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.1.1.tgz#e99630550fca07df9f90a06056987baa40a689c7"
2030 | integrity sha512-Oo7LXCmc1eE1AjyuSBmtC3+Wy4HcV8PxWh2kP6fOl8yTlNS7r0K9l1ao2lrrUza7V39Y3D/BbJgY8VeSlc5JKw==
2031 | dependencies:
2032 | glob-to-regexp "^0.4.1"
2033 | graceful-fs "^4.1.2"
2034 |
2035 | webidl-conversions@^4.0.2:
2036 | version "4.0.2"
2037 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"
2038 | integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==
2039 |
2040 | whatwg-url@^7.0.0:
2041 | version "7.1.0"
2042 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06"
2043 | integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==
2044 | dependencies:
2045 | lodash.sortby "^4.7.0"
2046 | tr46 "^1.0.1"
2047 | webidl-conversions "^4.0.2"
2048 |
2049 | which-boxed-primitive@^1.0.2:
2050 | version "1.0.2"
2051 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
2052 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
2053 | dependencies:
2054 | is-bigint "^1.0.1"
2055 | is-boolean-object "^1.1.0"
2056 | is-number-object "^1.0.4"
2057 | is-string "^1.0.5"
2058 | is-symbol "^1.0.3"
2059 |
2060 | which-typed-array@^1.1.2:
2061 | version "1.1.4"
2062 | resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.4.tgz#8fcb7d3ee5adf2d771066fba7cf37e32fe8711ff"
2063 | integrity sha512-49E0SpUe90cjpoc7BOJwyPHRqSAd12c10Qm2amdEZrJPCY2NDxaW01zHITrem+rnETY3dwrbH3UUrUwagfCYDA==
2064 | dependencies:
2065 | available-typed-arrays "^1.0.2"
2066 | call-bind "^1.0.0"
2067 | es-abstract "^1.18.0-next.1"
2068 | foreach "^2.0.5"
2069 | function-bind "^1.1.1"
2070 | has-symbols "^1.0.1"
2071 | is-typed-array "^1.1.3"
2072 |
2073 | xtend@^4.0.0, xtend@^4.0.2:
2074 | version "4.0.2"
2075 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
2076 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
2077 |
2078 | yocto-queue@^0.1.0:
2079 | version "0.1.0"
2080 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
2081 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
2082 |
--------------------------------------------------------------------------------