├── .eslintrc.json ├── .gitignore ├── README.md ├── next-env.d.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── font │ ├── whitney-300.woff │ ├── whitney-300.woff2 │ ├── whitney-400.woff │ ├── whitney-400.woff2 │ ├── whitney-500.woff │ ├── whitney-500.woff2 │ ├── whitney-600.woff │ ├── whitney-600.woff2 │ ├── whitney-700.woff │ └── whitney-700.woff2 └── vercel.svg ├── src ├── components │ ├── Copier.tsx │ ├── DiscordEmbed.tsx │ ├── Highlight.tsx │ ├── LimitedInput.tsx │ ├── Output.tsx │ └── ValueInput.tsx ├── lib │ ├── interfaces.ts │ ├── markdown │ │ ├── Markdown.tsx │ │ ├── helpers.ts │ │ ├── parsers.tsx │ │ └── rules │ │ │ ├── autolink.ts │ │ │ ├── blockQuote.tsx │ │ │ ├── codeBlock.tsx │ │ │ ├── emphasis.ts │ │ │ ├── escape.ts │ │ │ ├── inlineCode.tsx │ │ │ ├── lineBreak.ts │ │ │ ├── link.tsx │ │ │ ├── mention.tsx │ │ │ ├── newline.ts │ │ │ ├── paragraph.ts │ │ │ ├── spoiler.tsx │ │ │ ├── strikethrough.ts │ │ │ ├── strong.ts │ │ │ ├── text.ts │ │ │ ├── underline.ts │ │ │ └── url.tsx │ └── utils.ts ├── pages │ ├── _app.tsx │ ├── api │ │ ├── load.ts │ │ └── save.ts │ └── index.tsx └── styles │ └── globals.scss ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals", 3 | "rules": { 4 | "@next/next/no-img-element": "off" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /.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 | .pnpm-debug.log* 27 | 28 | # local env files 29 | .env*.local 30 | 31 | # vercel 32 | .vercel 33 | 34 | # typescript 35 | *.tsbuildinfo 36 | 37 | .vercel 38 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Discord Embed Creator 2 | 3 | Generate code for embeds in discord.js and discord.py! 4 | -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | 4 | // NOTE: This file should not be edited 5 | // see https://nextjs.org/docs/basic-features/typescript for more information. 6 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = { 3 | i18n: { locales: ["en"], defaultLocale: "en" }, 4 | reactStrictMode: true 5 | }; 6 | 7 | module.exports = nextConfig; 8 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "discord-embed-creator", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint" 10 | }, 11 | "dependencies": { 12 | "@types/punycode": "^2.1.0", 13 | "next": "12.1.6", 14 | "punycode": "^2.1.1", 15 | "react": "18.2.0", 16 | "react-dom": "18.2.0", 17 | "react-syntax-highlighter": "^15.5.0", 18 | "redis": "^4.1.0", 19 | "sass": "^1.53.0", 20 | "simple-markdown": "^0.7.3" 21 | }, 22 | "devDependencies": { 23 | "@types/node": "18.0.0", 24 | "@types/react": "18.0.14", 25 | "@types/react-dom": "18.0.5", 26 | "@types/react-syntax-highlighter": "^15.5.2", 27 | "autoprefixer": "^10.4.7", 28 | "eslint": "8.18.0", 29 | "eslint-config-next": "12.1.6", 30 | "postcss": "^8.4.14", 31 | "tailwindcss": "^3.1.4", 32 | "typescript": "4.7.4" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {} 5 | } 6 | }; 7 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/a8f2b442c13f6767830646fd8e6e880a4ad29d6c/public/favicon.ico -------------------------------------------------------------------------------- /public/font/whitney-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/a8f2b442c13f6767830646fd8e6e880a4ad29d6c/public/font/whitney-300.woff -------------------------------------------------------------------------------- /public/font/whitney-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/a8f2b442c13f6767830646fd8e6e880a4ad29d6c/public/font/whitney-300.woff2 -------------------------------------------------------------------------------- /public/font/whitney-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/a8f2b442c13f6767830646fd8e6e880a4ad29d6c/public/font/whitney-400.woff -------------------------------------------------------------------------------- /public/font/whitney-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/a8f2b442c13f6767830646fd8e6e880a4ad29d6c/public/font/whitney-400.woff2 -------------------------------------------------------------------------------- /public/font/whitney-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/a8f2b442c13f6767830646fd8e6e880a4ad29d6c/public/font/whitney-500.woff -------------------------------------------------------------------------------- /public/font/whitney-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/a8f2b442c13f6767830646fd8e6e880a4ad29d6c/public/font/whitney-500.woff2 -------------------------------------------------------------------------------- /public/font/whitney-600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/a8f2b442c13f6767830646fd8e6e880a4ad29d6c/public/font/whitney-600.woff -------------------------------------------------------------------------------- /public/font/whitney-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/a8f2b442c13f6767830646fd8e6e880a4ad29d6c/public/font/whitney-600.woff2 -------------------------------------------------------------------------------- /public/font/whitney-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/a8f2b442c13f6767830646fd8e6e880a4ad29d6c/public/font/whitney-700.woff -------------------------------------------------------------------------------- /public/font/whitney-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/a8f2b442c13f6767830646fd8e6e880a4ad29d6c/public/font/whitney-700.woff2 -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | 3 | 4 | -------------------------------------------------------------------------------- /src/components/Copier.tsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useState } from "react"; 2 | 3 | const enum CopierState { 4 | Idle, 5 | Loading, 6 | Copied, 7 | Error 8 | } 9 | 10 | export default function Copier({ 11 | getContent, 12 | children, 13 | timeout = 2000, 14 | className, 15 | idleClassName, 16 | loadingClassName, 17 | copiedClassName, 18 | errorClassName 19 | }: { 20 | getContent: () => string | Promise; 21 | children?: React.ReactNode; 22 | timeout?: number; 23 | className?: string; 24 | idleClassName?: string; 25 | loadingClassName?: string; 26 | copiedClassName?: string; 27 | errorClassName?: string; 28 | }) { 29 | const [state, setState] = useState(CopierState.Idle); 30 | 31 | useEffect(() => { 32 | if (state !== CopierState.Copied) return; 33 | 34 | const id = setTimeout(() => { 35 | setState(CopierState.Idle); 36 | }, timeout); 37 | 38 | return () => clearTimeout(id); 39 | }, [state]); 40 | 41 | return ( 42 | 77 | ); 78 | } 79 | -------------------------------------------------------------------------------- /src/components/DiscordEmbed.tsx: -------------------------------------------------------------------------------- 1 | import type { Embed, EmbedField } from "../lib/interfaces"; 2 | import Markdown from "../lib/markdown/Markdown"; 3 | 4 | export default function DiscordEmbed({ embed }: { embed: Embed }) { 5 | const fieldRows: EmbedField[][] = []; 6 | 7 | for (const field of embed.fields) { 8 | if ( 9 | // If there are no rows 10 | fieldRows.length === 0 || 11 | // Or the current field is not inline 12 | !field.inline || 13 | // Or the previous row's field is not inline 14 | !fieldRows[fieldRows.length - 1][0].inline || 15 | // Or the previous row's number of fields is at least 3 16 | fieldRows[fieldRows.length - 1].length >= 3 17 | ) { 18 | // Start a new row 19 | fieldRows.push([field]); 20 | } else { 21 | // Otherwise, add the field to the last row 22 | fieldRows[fieldRows.length - 1].push(field); 23 | } 24 | } 25 | 26 | const fieldGridCols: string[] = []; 27 | 28 | for (const row of fieldRows) { 29 | const step = 12 / row.length; 30 | for (let i = 1; i < 13; i += step) { 31 | fieldGridCols.push(`${i}/${i + step}`); 32 | } 33 | } 34 | 35 | return ( 36 |
40 |
41 | {/* Author */} 42 | {embed.author.name || embed.author.iconUrl ? ( 43 |
44 | {/* Author Icon */} 45 | {embed.author.iconUrl ? ( 46 | 51 | ) : null} 52 | 53 | {/* Author Name */} 54 | 65 | {embed.author.name} 66 | 67 |
68 | ) : null} 69 | 70 | {/* Title */} 71 | {embed.title ? ( 72 | 83 | {embed.title} 84 | 85 | ) : null} 86 | 87 | {/* Description */} 88 | {embed.description ? ( 89 |
90 | {embed.description} 91 |
92 | ) : null} 93 | 94 | {/* Fields */} 95 | {embed.fields.length ? ( 96 |
97 | {embed.fields.map((field, index) => ( 98 |
103 | {/* Field Name */} 104 |
105 | 106 | {field.name} 107 | 108 |
109 | 110 | {/* Field Value */} 111 |
112 | {field.value} 113 |
114 |
115 | ))} 116 |
117 | ) : null} 118 | 119 | {/* Image */} 120 | {embed.image ? ( 121 |
126 | {embed.image} 131 |
132 | ) : null} 133 | 134 | {/* Thumbnail */} 135 | {embed.thumbnail ? ( 136 |
137 | {embed.thumbnail} 142 |
143 | ) : null} 144 | 145 | {/* Footer */} 146 | {embed.footer.text || embed.footer.iconUrl ? ( 147 |
152 | {/* Footer Icon */} 153 | {embed.footer.iconUrl ? ( 154 | 159 | ) : null} 160 | 161 | {/* Footer Text */} 162 |
163 | {embed.footer.text} 164 | {embed.footer.text && embed.timestamp ? ( 165 | 166 | • 167 | 168 | ) : null} 169 | {embed.timestamp ? "Today at 12:00 PM" : null} 170 |
171 |
172 | ) : null} 173 |
174 |
175 | ); 176 | } 177 | -------------------------------------------------------------------------------- /src/components/Highlight.tsx: -------------------------------------------------------------------------------- 1 | import { Light } from "react-syntax-highlighter"; 2 | import js from "react-syntax-highlighter/dist/cjs/languages/hljs/javascript"; 3 | import py from "react-syntax-highlighter/dist/cjs/languages/hljs/python"; 4 | import rs from "react-syntax-highlighter/dist/cjs/languages/hljs/rust"; 5 | import { atomOneDark } from "react-syntax-highlighter/dist/cjs/styles/hljs"; 6 | 7 | Light.registerLanguage("js", js); 8 | Light.registerLanguage("py", py); 9 | Light.registerLanguage("rs", rs); 10 | 11 | export default function Highlight({ 12 | children, 13 | language, 14 | ...props 15 | }: Omit< 16 | React.DetailedHTMLProps< 17 | React.HTMLAttributes, 18 | HTMLPreElement 19 | >, 20 | "style" | "ref" 21 | > & { 22 | children: string; 23 | language: "js" | "py" | "rs"; 24 | }) { 25 | return ( 26 | 27 | {children} 28 | 29 | ); 30 | } 31 | -------------------------------------------------------------------------------- /src/components/LimitedInput.tsx: -------------------------------------------------------------------------------- 1 | export default function LimitedInput({ 2 | limit, 3 | textarea = false, 4 | required = false, 5 | ...props 6 | }: React.DetailedHTMLProps< 7 | React.InputHTMLAttributes, 8 | HTMLInputElement 9 | > & { limit: number; textarea?: boolean; required?: boolean }) { 10 | const Element: keyof JSX.IntrinsicElements = textarea 11 | ? "textarea" 12 | : "input"; 13 | 14 | return ( 15 |
16 | {/* @ts-expect-error */} 17 | limit || (required && !props.value)) 22 | ? { ...props.style, borderColor: "#df4549" } 23 | : props.style 24 | } 25 | /> 26 | {typeof props.value === "string" && 27 | props.value.length > limit * 0.8 ? ( 28 | 29 | {typeof props.value === "string" && props.value.length}/ 30 | {limit} 31 | 32 | ) : required && typeof props.value === "string" && !props.value ? ( 33 | 34 | This field is required. 35 | 36 | ) : null} 37 |
38 | ); 39 | } 40 | -------------------------------------------------------------------------------- /src/components/Output.tsx: -------------------------------------------------------------------------------- 1 | import { useState } from "react"; 2 | 3 | import type { Embed } from "../lib/interfaces"; 4 | import { embedToObjectCode } from "../lib/utils"; 5 | import Highlight from "./Highlight"; 6 | 7 | function s(strings: TemplateStringsArray, ...values: unknown[]) { 8 | let escaped = ""; 9 | 10 | for (let i = 0; i < strings.length; i++) { 11 | if (i > 0) { 12 | escaped += JSON.stringify(`${values[i - 1]}`); 13 | } 14 | escaped += strings[i]; 15 | } 16 | 17 | return escaped; 18 | } 19 | 20 | export default function Output({ embed }: { embed: Embed }) { 21 | const [language, setLanguage] = useState<"json" | "js" | "py" | "rs">("js"); 22 | const [jsVersion, setJsVersion] = useState("14"); 23 | const [jsMode, setJsMode] = useState("chained"); 24 | const [rsMode, setRsMode] = useState("variable"); // variable or closure 25 | const [rsFields, setRsFields] = useState("together"); // together or separate 26 | 27 | let output = ""; 28 | 29 | if (language === "json") { 30 | output = embedToObjectCode(embed, false); 31 | } else if (language === "js") { 32 | if (jsMode !== "object") { 33 | output += `const embed = new ${ 34 | jsVersion === "13" ? "MessageEmbed" : "EmbedBuilder" 35 | }()`; 36 | 37 | const steps = [""]; 38 | 39 | if (embed.author.name || embed.author.url || embed.author.iconUrl) { 40 | const substeps = [".setAuthor({"]; 41 | 42 | if (embed.author.name) 43 | substeps.push(s` name: ${embed.author.name},`); 44 | if (embed.author.url) 45 | substeps.push(s` url: ${embed.author.url},`); 46 | if (embed.author.iconUrl) 47 | substeps.push(s` iconURL: ${embed.author.iconUrl},`); 48 | substeps.push(`})`); 49 | 50 | steps.push(substeps.join(jsMode === "chained" ? "\n " : "\n")); 51 | } 52 | 53 | if (embed.title) steps.push(s`.setTitle(${embed.title})`); 54 | 55 | if (embed.url) steps.push(s`.setURL(${embed.url})`); 56 | 57 | if (embed.description) 58 | steps.push(s`.setDescription(${embed.description})`); 59 | 60 | if (embed.fields.length > 0) { 61 | const substeps = [".addFields("]; 62 | 63 | for (const field of embed.fields) { 64 | substeps.push(` {`); 65 | substeps.push(s` name: ${field.name},`); 66 | substeps.push(s` value: ${field.value},`); 67 | if (field.inline) substeps.push(` inline: true`); 68 | else substeps.push(` inline: false`); 69 | substeps.push(` },`); 70 | } 71 | substeps.push(`)`); 72 | 73 | steps.push(substeps.join(jsMode === "chained" ? "\n " : "\n")); 74 | } 75 | 76 | if (embed.image) steps.push(s`.setImage(${embed.image})`); 77 | 78 | if (embed.thumbnail) 79 | steps.push(s`.setThumbnail(${embed.thumbnail})`); 80 | 81 | if (embed.color) steps.push(s`.setColor(${embed.color})`); 82 | 83 | if (embed.footer.text || embed.footer.iconUrl) { 84 | const substeps = [".setFooter({"]; 85 | 86 | if (embed.footer.text) 87 | substeps.push(s` text: ${embed.footer.text},`); 88 | if (embed.footer.iconUrl) 89 | substeps.push(s` iconURL: ${embed.footer.iconUrl},`); 90 | substeps.push(`})`); 91 | 92 | steps.push(substeps.join(jsMode === "chained" ? "\n " : "\n")); 93 | } 94 | 95 | if (embed.timestamp) steps.push(`.setTimestamp()`); 96 | 97 | output += steps.join(jsMode === "chained" ? "\n " : ";\nembed"); 98 | 99 | output += `;\n\nawait message.reply({ embeds: [embed] });`; 100 | } else { 101 | output += `await message.reply({\n`; 102 | output += ` embeds: [${embedToObjectCode(embed).replaceAll( 103 | "\n", 104 | "\n " 105 | )}]\n`; 106 | output += `});\n`; 107 | } 108 | } else if (language === "py") { 109 | output += `embed = discord.Embed(`; 110 | 111 | const kwargs = []; 112 | 113 | if (embed.title) kwargs.push(s`title=${embed.title}`); 114 | if (embed.url) kwargs.push(s`url=${embed.url}`); 115 | if (embed.description) kwargs.push(s`description=${embed.description}`); 116 | if (embed.color) 117 | kwargs.push(`colour=${embed.color.replace("#", "0x")}`); 118 | if (embed.timestamp) kwargs.push(`timestamp=datetime.now()`); 119 | 120 | output += `${kwargs.join(",\n ")})\n`; 121 | 122 | if (embed.author.name || embed.author.url || embed.author.iconUrl) { 123 | output += `\nembed.set_author(`; 124 | 125 | const kwargs = []; 126 | 127 | if (embed.author.name) kwargs.push(s`name=${embed.author.name}`); 128 | if (embed.author.url) kwargs.push(s`url=${embed.author.url}`); 129 | if (embed.author.iconUrl) 130 | kwargs.push(s`icon_url=${embed.author.iconUrl}`); 131 | 132 | output += `${kwargs.join(`,\n `)})\n`; 133 | } 134 | 135 | if (embed.fields.length > 0) { 136 | for (const field of embed.fields) { 137 | output += s`\nembed.add_field(name=${field.name},\n`; 138 | output += s` value=${field.value}`; 139 | if (field.inline) output += `,\n inline=True`; 140 | else output += `,\n inline=False`; 141 | output += ")"; 142 | } 143 | output += "\n"; 144 | } 145 | 146 | if (embed.image) output += s`\nembed.set_image(url=${embed.image})\n`; 147 | 148 | if (embed.thumbnail) 149 | output += s`\nembed.set_thumbnail(url=${embed.thumbnail})\n`; 150 | 151 | if (embed.footer.text || embed.footer.iconUrl) { 152 | output += `\nembed.set_footer(`; 153 | 154 | if (embed.footer.text) output += s`text=${embed.footer.text}`; 155 | if (embed.footer.iconUrl) { 156 | if (embed.footer.text) output += `,\n `; 157 | output += s`icon_url=${embed.footer.iconUrl}`; 158 | } 159 | output += `)\n`; 160 | } 161 | 162 | output += `\nawait ctx.send(embed=embed)`; 163 | } else if (language === "rs") { 164 | output = 165 | "// You may need to import additional things to make this work\n\n"; 166 | 167 | output += 168 | rsMode === "variable" 169 | ? `let embed = CreateEmbed::default()` 170 | : "let msg = msg\n .channel_id\n .send_message(&ctx.http, |m| {\n m.embed(|e| {\n e"; 171 | 172 | const steps = rsMode === "variable" ? [""] : []; 173 | 174 | const substepsSeparator = 175 | rsMode === "variable" ? "\n " : "\n "; 176 | 177 | if (embed.title) steps.push(s`.title(${embed.title})`); 178 | if (embed.url) steps.push(s`.url(${embed.url})`); 179 | if (embed.description) 180 | steps.push(s`.description(${embed.description})`); 181 | if (embed.color) 182 | steps.push( 183 | `.color(Colour::new(${embed.color.replace("#", "0x")}))` 184 | ); 185 | if (embed.timestamp) steps.push(`.timestamp(Timestamp::now())`); 186 | 187 | if (embed.author.name || embed.author.url || embed.author.iconUrl) { 188 | const first = `.author(|a| {${substepsSeparator}a`; 189 | const substeps = []; 190 | 191 | if (embed.author.name) 192 | substeps.push(s`.name(${embed.author.name})`); 193 | if (embed.author.url) substeps.push(s`.url(${embed.author.url})`); 194 | if (embed.author.iconUrl) 195 | substeps.push(s`.icon_url(${embed.author.iconUrl})`); 196 | 197 | steps.push(first + substeps.join(substepsSeparator + " "), `})`); 198 | } 199 | 200 | if (embed.fields.length > 0) { 201 | if (rsFields === "together") { 202 | const substeps = [`.fields(vec![`]; 203 | 204 | for (const field of embed.fields) { 205 | substeps.push( 206 | s`(${field.name}, ${field.value}, ` 207 | ); 208 | if (field.inline) substeps[substeps.length - 1] += `true)`; 209 | else substeps[substeps.length - 1] += `false)`; 210 | } 211 | 212 | steps.push(substeps.join(substepsSeparator), `])`); 213 | } else { 214 | for (const field of embed.fields) { 215 | steps.push( 216 | s`.field(${field.name}, ${field.value}, ` 217 | ); 218 | if (field.inline) steps[steps.length - 1] += `true)`; 219 | else steps[steps.length - 1] += `false)`; 220 | } 221 | } 222 | } 223 | 224 | if (embed.image) steps.push(s`.image(${embed.image})`); 225 | 226 | if (embed.thumbnail) steps.push(s`.thumbnail(${embed.thumbnail})`); 227 | 228 | if (embed.footer.text || embed.footer.iconUrl) { 229 | const first = `.footer(|f| {${substepsSeparator}f`; 230 | const substeps = []; 231 | 232 | if (embed.footer.text) 233 | substeps.push(s`.text(${embed.footer.text})`); 234 | if (embed.footer.iconUrl) 235 | substeps.push(s`.icon_url(${embed.footer.iconUrl})`); 236 | 237 | steps.push(first + substeps.join(substepsSeparator + " "), `})`); 238 | } 239 | 240 | output += steps.join( 241 | rsMode === "variable" ? "\n " : "\n " 242 | ); 243 | 244 | if (rsMode === "closure") { 245 | output += `\n })\n })\n .await;`; 246 | } else { 247 | output += `;\n\nlet msg = msg\n .channel_id\n .send_message(&ctx.http, |m| m.set_embed(embed))\n .await;`; 248 | } 249 | } 250 | 251 | return ( 252 |
253 |

Output

254 | 255 |
256 | 267 | 268 | {language === "js" ? ( 269 | <> 270 | 279 | 280 | 290 | 291 | ) : null} 292 | 293 | {language === "rs" ? ( 294 | <> 295 | 304 | 305 | 314 | 315 | ) : null} 316 |
317 | 318 | 322 | {output} 323 | 324 |
325 | ); 326 | } 327 | -------------------------------------------------------------------------------- /src/components/ValueInput.tsx: -------------------------------------------------------------------------------- 1 | import { useId } from "react"; 2 | 3 | import LimitedInput from "./LimitedInput"; 4 | 5 | export default function ValueInput({ 6 | label, 7 | value: [value, setValue], 8 | limit, 9 | textarea 10 | }: { 11 | label: string; 12 | value: [string, (value: React.SetStateAction) => void]; 13 | limit?: number; 14 | textarea?: boolean; 15 | }) { 16 | const id = useId(); 17 | 18 | if (limit) { 19 | return ( 20 |
21 | 22 | setValue(e.target.value)} 27 | {...(textarea ? { textarea: true } : { type: "text" })} 28 | /> 29 |
30 | ); 31 | } 32 | 33 | return ( 34 |
35 | 36 | setValue(e.target.value)} 41 | /> 42 |
43 | ); 44 | } 45 | -------------------------------------------------------------------------------- /src/lib/interfaces.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Represents a Discord message embed. 3 | */ 4 | export interface Embed { 5 | /** 6 | * Embed title. 7 | */ 8 | title: string; 9 | /** 10 | * Embed description. 11 | */ 12 | description: string; 13 | /** 14 | * Embed URL. 15 | */ 16 | url: string; 17 | /** 18 | * Embed timestamp in epoch time. 19 | */ 20 | timestamp?: number; 21 | /** 22 | * Embed color. 23 | */ 24 | color?: string; 25 | /** 26 | * Embed image URL. 27 | */ 28 | image: string; 29 | /** 30 | * Embed thumbnail URL. 31 | */ 32 | thumbnail: string; 33 | /** 34 | * Embed footer object. 35 | */ 36 | footer: EmbedFooter; 37 | /** 38 | * Embed author object. 39 | */ 40 | author: EmbedAuthor; 41 | /** 42 | * Embed fields array. 43 | */ 44 | fields: EmbedField[]; 45 | } 46 | 47 | export interface EmbedFooter { 48 | /** 49 | * Embed footer text. 50 | */ 51 | text: string; 52 | /** 53 | * Embed footer icon URL. 54 | */ 55 | iconUrl: string; 56 | } 57 | 58 | export interface EmbedAuthor { 59 | /** 60 | * Embed author name. 61 | */ 62 | name: string; 63 | /** 64 | * Embed author URL. 65 | */ 66 | url: string; 67 | /** 68 | * Embed author icon URL. 69 | */ 70 | iconUrl: string; 71 | } 72 | 73 | export interface EmbedField { 74 | /** 75 | * Embed field name. 76 | */ 77 | name: string; 78 | /** 79 | * Embed field value. 80 | */ 81 | value: string; 82 | /** 83 | * Embed field inline flag. 84 | */ 85 | inline: boolean; 86 | } 87 | -------------------------------------------------------------------------------- /src/lib/markdown/Markdown.tsx: -------------------------------------------------------------------------------- 1 | import { parsers } from "./parsers"; 2 | 3 | export default function Markdown({ 4 | className, 5 | children, 6 | type = "content" 7 | }: { 8 | className?: string; 9 | children: string; 10 | type?: keyof typeof parsers; 11 | }) { 12 | const parse = parsers[type]; 13 | 14 | return ( 15 |
18 | {parse(children.trim())} 19 |
20 | ); 21 | } 22 | -------------------------------------------------------------------------------- /src/lib/markdown/helpers.ts: -------------------------------------------------------------------------------- 1 | import { toASCII } from "punycode"; 2 | 3 | import { 4 | ParseFunction, 5 | ParserRule, 6 | ReactOutputRule, 7 | SingleASTNode, 8 | outputFor, 9 | parserFor 10 | } from "simple-markdown"; 11 | 12 | export type MarkdownRule = ParserRule & ReactOutputRule; 13 | 14 | export function depunycodeUrl(link: string) { 15 | try { 16 | const url = new URL(link); 17 | const { hostname, protocol } = url; 18 | 19 | if (protocol?.toLowerCase() === "file:") return; 20 | if (!hostname) return; 21 | 22 | url.hostname = toASCII(hostname); 23 | 24 | return url.toString(); 25 | } catch { 26 | // return nothing 27 | } 28 | } 29 | 30 | const LTR_CHARS = [ 31 | "A-Z", 32 | "a-z", 33 | "\u00c0-\u00d6", 34 | "\u00d8-\u00f6", 35 | "\u00f8-\u02b8", 36 | "\u0300-\u0590", 37 | "\u0800-\u1fff", 38 | "\u200e-\ufb1c", 39 | "\ufe00-\ufe6f", 40 | "\ufefd-\uffff" 41 | ].join(""); 42 | 43 | const RTL_CHARS = ["\u0591-\u07ff", "\ufb1d-\ufdfd", "\ufe70-\ufefc"].join(""); 44 | 45 | const LTR_RE = new RegExp(`^[^${RTL_CHARS}]*[${LTR_CHARS}]`); 46 | const RTL_RE = new RegExp(`^[^${LTR_CHARS}]*[${RTL_CHARS}]`); 47 | 48 | export function getTextDirection(text: string) { 49 | if (LTR_RE.test(text)) return "ltr"; 50 | if (RTL_RE.test(text)) return "rtl"; 51 | return "neutral"; 52 | } 53 | 54 | export const parseUrl: ParseFunction = capture => { 55 | const [, content] = capture; 56 | 57 | const url = depunycodeUrl(content); 58 | 59 | if (!url) { 60 | return { 61 | type: "text", 62 | content 63 | }; 64 | } 65 | 66 | return { 67 | content: [{ type: "text", content: url }], 68 | target: url 69 | }; 70 | }; 71 | 72 | export function createParser(rules: Record) { 73 | const parse = parserFor(rules, { inline: true }); 74 | const output = outputFor(rules, "react"); 75 | 76 | return (content: string) => { 77 | let ast = parse(content); 78 | 79 | return output(ast); 80 | }; 81 | } 82 | -------------------------------------------------------------------------------- /src/lib/markdown/parsers.tsx: -------------------------------------------------------------------------------- 1 | import { createParser } from "./helpers"; 2 | import { autolink } from "./rules/autolink"; 3 | import { blockQuote } from "./rules/blockQuote"; 4 | import { codeBlock } from "./rules/codeBlock"; 5 | import { emphasis } from "./rules/emphasis"; 6 | import { escape } from "./rules/escape"; 7 | import { inlineCode } from "./rules/inlineCode"; 8 | import { lineBreak } from "./rules/lineBreak"; 9 | import { link } from "./rules/link"; 10 | import { mention } from "./rules/mention"; 11 | import { newline } from "./rules/newline"; 12 | import { paragraph } from "./rules/paragraph"; 13 | import { spoiler } from "./rules/spoiler"; 14 | import { strikethrough } from "./rules/strikethrough"; 15 | import { strong } from "./rules/strong"; 16 | import { text } from "./rules/text"; 17 | import { underline } from "./rules/underline"; 18 | import { url } from "./rules/url"; 19 | 20 | export const parsers = { 21 | content: createParser({ 22 | autolink, 23 | blockQuote, 24 | codeBlock, 25 | emphasis, 26 | escape, 27 | inlineCode, 28 | lineBreak, 29 | link, 30 | mention, 31 | newline, 32 | paragraph, 33 | spoiler, 34 | strikethrough, 35 | strong, 36 | text, 37 | underline, 38 | url 39 | }), 40 | header: createParser({ 41 | autolink, 42 | blockQuote, 43 | emphasis, 44 | escape, 45 | inlineCode, 46 | spoiler, 47 | strikethrough, 48 | strong, 49 | text, 50 | underline, 51 | url 52 | }) 53 | }; 54 | -------------------------------------------------------------------------------- /src/lib/markdown/rules/autolink.ts: -------------------------------------------------------------------------------- 1 | import { defaultRules } from "simple-markdown"; 2 | 3 | import { MarkdownRule, parseUrl } from "../helpers"; 4 | import { link } from "./link"; 5 | 6 | export const autolink: MarkdownRule = { 7 | ...defaultRules.autolink, 8 | parse: parseUrl, 9 | react: link.react 10 | }; 11 | -------------------------------------------------------------------------------- /src/lib/markdown/rules/blockQuote.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { defaultRules } from "simple-markdown"; 3 | 4 | import { MarkdownRule } from "../helpers"; 5 | 6 | const BEGINNING_OF_LINE_RE = /^$|\n *$/; 7 | const BLOCK_QUOTE_RE = 8 | /^( *>>> +([\S\s]*))|^( *>(?!>>) +[^\n]*(\n *>(?!>>) +[^\n]*)*\n?)/; 9 | 10 | const SINGLELINE_QUOTE_RE = /^ *> ?/gm; 11 | const MULTILINE_QUOTE_RE = /^ *>>> ?/; 12 | 13 | export const blockQuote: MarkdownRule = { 14 | ...defaultRules.blockQuote, 15 | match: (source, state) => { 16 | const { nested, inQuote, prevCapture: lookbehind } = state; 17 | 18 | // Prevents having multiple layers of quote blocks 19 | if (nested) return null; 20 | if (inQuote) return null; 21 | 22 | // Makes sure that quotes can only start on the beginning of a line 23 | if (!BEGINNING_OF_LINE_RE.test(lookbehind?.[0] ?? "")) return null; 24 | 25 | return BLOCK_QUOTE_RE.exec(source); 26 | }, 27 | parse: (capture, parse, state) => { 28 | const [content] = capture; 29 | const { inline = false } = state; 30 | 31 | // Determine whether or not the quote block is multi-line 32 | const multiline = MULTILINE_QUOTE_RE.test(capture[0]); 33 | 34 | // Removes the '>' symbols from content 35 | const trimRegex = multiline ? MULTILINE_QUOTE_RE : SINGLELINE_QUOTE_RE; 36 | const trimmedContent = content.replace(trimRegex, ""); 37 | 38 | // Parses the trimmed content for any markdown 39 | const parsedContent = parse(trimmedContent, { 40 | ...state, 41 | inline: multiline ? inline : true, 42 | inQuote: true 43 | }); 44 | 45 | // Makes sure the block quote always renders, even without content 46 | if (parsedContent.length === 0) { 47 | parsedContent.push({ 48 | type: "text", 49 | content: " " 50 | }); 51 | } 52 | 53 | return { 54 | content: parsedContent 55 | }; 56 | }, 57 | react: (node, output, state) => ( 58 |
59 |
60 |
61 | {output(node.content, state)} 62 |
63 |
64 | ) 65 | }; 66 | -------------------------------------------------------------------------------- /src/lib/markdown/rules/codeBlock.tsx: -------------------------------------------------------------------------------- 1 | import { anyScopeRegex, defaultRules } from "simple-markdown"; 2 | 3 | import { MarkdownRule } from "../helpers"; 4 | 5 | const CODE_BLOCK_RE = /^```(?:([\w+.-]+?)\n)?\n*([^\n][\S\s]*?)\n*```/i; 6 | 7 | export const codeBlock: MarkdownRule = { 8 | order: defaultRules.codeBlock.order, 9 | match: anyScopeRegex(CODE_BLOCK_RE), 10 | parse: capture => { 11 | const [, , content] = capture; 12 | 13 | return { 14 | content 15 | }; 16 | }, 17 | react: (node, output, state) => { 18 | return ( 19 |
23 | 				{node.content}
24 | 			
25 | ); 26 | } 27 | }; 28 | -------------------------------------------------------------------------------- /src/lib/markdown/rules/emphasis.ts: -------------------------------------------------------------------------------- 1 | import { defaultRules } from "simple-markdown"; 2 | 3 | import { MarkdownRule } from "../helpers"; 4 | 5 | export const emphasis: MarkdownRule = defaultRules.em; 6 | -------------------------------------------------------------------------------- /src/lib/markdown/rules/escape.ts: -------------------------------------------------------------------------------- 1 | import { defaultRules } from "simple-markdown"; 2 | 3 | import { MarkdownRule } from "../helpers"; 4 | 5 | export const escape: MarkdownRule = defaultRules.escape; 6 | -------------------------------------------------------------------------------- /src/lib/markdown/rules/inlineCode.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { defaultRules } from "simple-markdown"; 3 | 4 | import { MarkdownRule } from "../helpers"; 5 | 6 | export const inlineCode: MarkdownRule = { 7 | ...defaultRules.inlineCode, 8 | react: (node, output, state) => ( 9 | 13 | {node.content} 14 | 15 | ) 16 | }; 17 | -------------------------------------------------------------------------------- /src/lib/markdown/rules/lineBreak.ts: -------------------------------------------------------------------------------- 1 | import { defaultRules } from "simple-markdown"; 2 | 3 | import { MarkdownRule } from "../helpers"; 4 | 5 | export const lineBreak: MarkdownRule = defaultRules.br; 6 | -------------------------------------------------------------------------------- /src/lib/markdown/rules/link.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { defaultRules, unescapeUrl } from "simple-markdown"; 3 | 4 | import { MarkdownRule, depunycodeUrl } from "../helpers"; 5 | 6 | export const link: MarkdownRule = { 7 | ...defaultRules.link, 8 | parse: (capture, parse, state) => { 9 | const [, name, href, title] = capture; 10 | 11 | const url = unescapeUrl(href); 12 | if (!/^https?:\/\//i.test(url)) return parse(name, state); 13 | 14 | const decoded = depunycodeUrl(url); 15 | if (!decoded) { 16 | return { 17 | type: "text", 18 | content: url 19 | }; 20 | } 21 | 22 | const target = decoded; 23 | 24 | return { 25 | content: parse(name, state), 26 | target, 27 | title 28 | }; 29 | }, 30 | react: (node, output, state) => ( 31 | 39 | {output(node.content, state)} 40 | 41 | ) 42 | }; 43 | -------------------------------------------------------------------------------- /src/lib/markdown/rules/mention.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { defaultRules, inlineRegex } from "simple-markdown"; 3 | 4 | import { MarkdownRule } from "../helpers"; 5 | 6 | const MENTION_RE = /^<(@!?|@&|#)\d+>|^(@(?:everyone|here))/; 7 | 8 | const MENTION_TYPES = new Map( 9 | Object.entries({ 10 | "@": "@user", 11 | "@!": "@user", 12 | "@&": "@role", 13 | "#": "#channel" 14 | }) 15 | ); 16 | 17 | export const mention: MarkdownRule = { 18 | order: defaultRules.text.order, 19 | match: inlineRegex(MENTION_RE), 20 | parse: capture => { 21 | const [, type, everyoneOrHere] = capture; 22 | 23 | if (everyoneOrHere) { 24 | return { 25 | content: everyoneOrHere 26 | }; 27 | } 28 | 29 | return { 30 | content: MENTION_TYPES.get(type) 31 | }; 32 | }, 33 | react: (node, output, state) => ( 34 | 42 | {node.content} 43 | 44 | ) 45 | }; 46 | -------------------------------------------------------------------------------- /src/lib/markdown/rules/newline.ts: -------------------------------------------------------------------------------- 1 | import { defaultRules } from "simple-markdown"; 2 | 3 | import { MarkdownRule } from "../helpers"; 4 | 5 | export const newline: MarkdownRule = defaultRules.newline; 6 | -------------------------------------------------------------------------------- /src/lib/markdown/rules/paragraph.ts: -------------------------------------------------------------------------------- 1 | import { defaultRules } from "simple-markdown"; 2 | 3 | import { MarkdownRule } from "../helpers"; 4 | 5 | export const paragraph: MarkdownRule = defaultRules.paragraph; 6 | -------------------------------------------------------------------------------- /src/lib/markdown/rules/spoiler.tsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { defaultRules, inlineRegex } from "simple-markdown"; 3 | 4 | import { MarkdownRule } from "../helpers"; 5 | 6 | export const spoiler: MarkdownRule = { 7 | order: defaultRules.text.order, 8 | match: inlineRegex(/^\|\|([\S\s]+?)\|\|/), 9 | parse: (capture, parse, state) => ({ 10 | content: parse(capture[1], state) 11 | }), 12 | react: (node, output, state) => ( 13 | 14 | {output(node.content, state)} 15 | 16 | ) 17 | }; 18 | -------------------------------------------------------------------------------- /src/lib/markdown/rules/strikethrough.ts: -------------------------------------------------------------------------------- 1 | import { defaultRules, inlineRegex } from "simple-markdown"; 2 | 3 | import { MarkdownRule } from "../helpers"; 4 | 5 | export const strikethrough: MarkdownRule = { 6 | ...defaultRules.del, 7 | match: inlineRegex(/^~~([\S\s]+?)~~(?!_)/) 8 | }; 9 | -------------------------------------------------------------------------------- /src/lib/markdown/rules/strong.ts: -------------------------------------------------------------------------------- 1 | import { defaultRules } from "simple-markdown"; 2 | 3 | import { MarkdownRule } from "../helpers"; 4 | 5 | export const strong: MarkdownRule = defaultRules.strong; 6 | -------------------------------------------------------------------------------- /src/lib/markdown/rules/text.ts: -------------------------------------------------------------------------------- 1 | import { defaultRules } from "simple-markdown"; 2 | 3 | import { MarkdownRule } from "../helpers"; 4 | 5 | export const text: MarkdownRule = { 6 | ...defaultRules.text, 7 | parse: (capture, parse, state) => { 8 | const [content] = capture; 9 | const { nested } = state; 10 | 11 | if (nested) { 12 | return { 13 | content 14 | }; 15 | } 16 | 17 | return parse(content, { 18 | ...state, 19 | nested: true 20 | }); 21 | } 22 | }; 23 | -------------------------------------------------------------------------------- /src/lib/markdown/rules/underline.ts: -------------------------------------------------------------------------------- 1 | import { defaultRules } from "simple-markdown"; 2 | 3 | import { MarkdownRule } from "../helpers"; 4 | 5 | export const underline: MarkdownRule = defaultRules.u; 6 | -------------------------------------------------------------------------------- /src/lib/markdown/rules/url.tsx: -------------------------------------------------------------------------------- 1 | import { defaultRules } from "simple-markdown"; 2 | 3 | import { MarkdownRule, parseUrl } from "../helpers"; 4 | import { link } from "./link"; 5 | 6 | export const url: MarkdownRule = { 7 | ...defaultRules.url, 8 | match: (content, state) => { 9 | if (!state.inline) return null; 10 | 11 | const match = /^((?:https?|steam):\/\/[^\s<]+[^\s"',.:;<\]])/.exec( 12 | content 13 | ); 14 | if (!match) return null; 15 | 16 | let [href] = match; 17 | let searchPosition = 0; 18 | 19 | for ( 20 | let pos = href.length - 1; 21 | pos >= 0 && href[pos] === ")"; 22 | pos -= 1 23 | ) { 24 | const index = href.indexOf("(", searchPosition); 25 | 26 | if (index === -1) { 27 | href = href.slice(0, -1); 28 | break; 29 | } 30 | 31 | searchPosition = index + 1; 32 | } 33 | 34 | return [href, href]; 35 | }, 36 | parse: parseUrl, 37 | react: link.react 38 | }; 39 | -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- 1 | import type { Embed } from "./interfaces"; 2 | 3 | export function embedToPartial(embed: Embed): Partial { 4 | return clearEmptySlots(embed); 5 | } 6 | 7 | export function embedToObjectCode( 8 | embed: Embed, 9 | removeKeyQuotes = true 10 | ): string { 11 | const output = JSON.stringify(clearEmptySlots(embed, true), null, 2); 12 | if (!removeKeyQuotes) return output; 13 | return output.replace(/(\n\s*)"(\w+)":/g, "$1$2:"); 14 | } 15 | 16 | function clearEmptySlots( 17 | obj: T, 18 | objectCode = false 19 | ): Partial { 20 | if (obj === null || obj === undefined) { 21 | return obj; 22 | } 23 | 24 | if (Array.isArray(obj)) { 25 | // @ts-expect-error 26 | return obj.map(e => clearEmptySlots(e, objectCode)); 27 | } 28 | 29 | return Object.entries(obj).reduce((acc, [key, value]) => { 30 | if (objectCode) 31 | key = key.replace(/[A-Z]/g, letter => `_${letter.toLowerCase()}`); 32 | if (typeof value === "object") { 33 | const cleared = clearEmptySlots(value, objectCode); 34 | 35 | if (Object.keys(cleared).length === 0) return acc; 36 | 37 | // @ts-expect-error 38 | acc[key] = cleared; 39 | } else if (value) { 40 | // @ts-expect-error 41 | acc[key] = objectCode 42 | ? key === "image" || key === "thumbnail" 43 | ? { url: value } 44 | : value 45 | : value; 46 | } 47 | return acc; 48 | }, {}); 49 | } 50 | -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- 1 | import "../styles/globals.scss"; 2 | 3 | import type { AppProps } from "next/app"; 4 | import Head from "next/head"; 5 | 6 | export default function MyApp({ Component, pageProps }: AppProps) { 7 | const title = "Discord Embed Creator"; 8 | const description = 9 | "A tool to build Discord embeds for discord.js and discord.py."; 10 | 11 | return ( 12 | <> 13 | 14 | 18 | 19 | 20 | {title} 21 | 22 | 23 | 24 | 25 | 26 | 27 | ); 28 | } 29 | -------------------------------------------------------------------------------- /src/pages/api/load.ts: -------------------------------------------------------------------------------- 1 | import { NextApiRequest, NextApiResponse } from "next"; 2 | import { createClient } from "redis"; 3 | 4 | export default async function handler( 5 | req: NextApiRequest, 6 | res: NextApiResponse 7 | ) { 8 | const client = createClient({ 9 | url: process.env.REDIS_URL 10 | }); 11 | await client.connect(); 12 | 13 | const { id } = req.query; 14 | 15 | if (!id) { 16 | res.status(400).json({ error: "Missing id" }); 17 | return; 18 | } 19 | 20 | if (Array.isArray(id)) { 21 | res.status(400).json({ error: "Invalid id" }); 22 | return; 23 | } 24 | 25 | const value = await client.get(id); 26 | 27 | if (!value) { 28 | res.status(404).json({ error: "Not found" }); 29 | return; 30 | } 31 | 32 | res.status(200).json({ embed: JSON.parse(value) }); 33 | } 34 | -------------------------------------------------------------------------------- /src/pages/api/save.ts: -------------------------------------------------------------------------------- 1 | import { webcrypto } from "crypto"; 2 | 3 | import { NextApiRequest, NextApiResponse } from "next"; 4 | import { createClient } from "redis"; 5 | 6 | const crypto = webcrypto as unknown as Crypto; 7 | 8 | export default async function handler( 9 | req: NextApiRequest, 10 | res: NextApiResponse 11 | ) { 12 | if (req.method !== "POST") { 13 | res.status(405).end("Method not allowed"); 14 | return; 15 | } 16 | 17 | const client = createClient({ 18 | url: process.env.REDIS_URL 19 | }); 20 | await client.connect(); 21 | 22 | const { embed } = req.body; 23 | 24 | if (!embed) { 25 | res.status(400).json({ error: "Missing embed" }); 26 | return; 27 | } 28 | 29 | const value = JSON.stringify(embed); 30 | 31 | if (value.length > 20000) { 32 | res.status(400).json({ error: "Embed too large" }); 33 | return; 34 | } 35 | 36 | const id = Buffer.from(crypto.getRandomValues(new Uint8Array(6))) 37 | .toString("base64") 38 | .replaceAll("/", "") 39 | .replaceAll("+", "") 40 | .replaceAll("=", ""); 41 | 42 | await client.set(id, value, { 43 | EX: 60 * 60 * 24 * 7 44 | }); 45 | 46 | res.status(200).json({ id }); 47 | } 48 | -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- 1 | import { useRouter } from "next/router"; 2 | import { useEffect, useState } from "react"; 3 | 4 | import Copier from "../components/Copier"; 5 | import DiscordEmbed from "../components/DiscordEmbed"; 6 | import LimitedInput from "../components/LimitedInput"; 7 | import Output from "../components/Output"; 8 | import ValueInput from "../components/ValueInput"; 9 | import { Embed, EmbedField } from "../lib/interfaces"; 10 | import { embedToPartial } from "../lib/utils"; 11 | 12 | function ellipses(str: string, max = 50) { 13 | return str.length > max ? `${str.slice(0, max - 3)}...` : str; 14 | } 15 | 16 | function button(type: "blue" | "red" | "disabled" = "blue") { 17 | return `font-medium py-1 px-2 rounded transition ${ 18 | type === "blue" 19 | ? "bg-[#5865f2] hover:bg-[#4752c4] text-white" 20 | : type === "red" 21 | ? "bg-[#d83c3e] hover:bg-[#a12d2f] text-white" 22 | : "bg-[#4f545c] cursor-not-allowed" 23 | }`; 24 | } 25 | 26 | function setAllDetails(open: boolean) { 27 | for (const details of Array.from( 28 | document.getElementsByTagName("details") 29 | )) { 30 | details.open = open; 31 | } 32 | } 33 | 34 | const infoEmbed: Embed = { 35 | author: { 36 | name: "Info", 37 | url: "https://example.com", 38 | iconUrl: "" 39 | }, 40 | title: "Example Title", 41 | url: "https://example.com", 42 | description: `This is an example description. Markdown works too! 43 | 44 | https://automatic.links 45 | > Block Quotes 46 | \`\`\` 47 | Code Blocks 48 | \`\`\` 49 | *Emphasis* or _emphasis_ 50 | \`Inline code\` or \`\`inline code\`\` 51 | [Links](https://example.com) 52 | <@123>, <@!123>, <#123>, <@&123>, @here, @everyone mentions 53 | ||Spoilers|| 54 | ~~Strikethrough~~ 55 | **Strong** 56 | __Underline__`, 57 | color: "#00b0f4", 58 | fields: [ 59 | { 60 | name: "Field Name", 61 | value: "This is the field value.", 62 | inline: false 63 | }, 64 | { 65 | name: "The first inline field.", 66 | value: "This field is inline.", 67 | inline: true 68 | }, 69 | { 70 | name: "The second inline field.", 71 | value: "Inline fields are stacked next to each other.", 72 | inline: true 73 | }, 74 | { 75 | name: "The third inline field.", 76 | value: "You can have up to 3 inline fields in a row.", 77 | inline: true 78 | }, 79 | { 80 | name: "Even if the next field is inline...", 81 | value: "It won't stack with the previous inline fields.", 82 | inline: true 83 | } 84 | ], 85 | image: "https://cubedhuang.com/images/alex-knight-unsplash.webp", 86 | thumbnail: "https://dan.onl/images/emptysong.jpg", 87 | footer: { 88 | text: "Example Footer", 89 | iconUrl: "https://slate.dan.onl/slate.png" 90 | }, 91 | timestamp: Date.now() 92 | }; 93 | 94 | export default function Home() { 95 | const [authorIcon, setAuthorIcon] = useState(""); 96 | const [authorName, setAuthorName] = useState(""); 97 | const [authorUrl, setAuthorUrl] = useState(""); 98 | 99 | const [title, setTitle] = useState(""); 100 | const [url, setUrl] = useState(""); 101 | const [description, setDescription] = useState(""); 102 | const [color, setColor] = useState("#202225"); 103 | const [colorEnabled, setColorEnabled] = useState(true); 104 | 105 | const [fields, setFields] = useState([]); 106 | 107 | const [image, setImage] = useState(""); 108 | const [thumbnail, setThumbnail] = useState(""); 109 | 110 | const [footerText, setFooterText] = useState(""); 111 | const [footerIcon, setFooterIcon] = useState(""); 112 | const [timestamp, setTimestamp] = useState(undefined); 113 | 114 | const [embedLoaded, setEmbedLoaded] = useState(false); 115 | 116 | const [error, setError] = useState(undefined); 117 | 118 | const [modal, setModal] = useState(false); 119 | 120 | const router = useRouter(); 121 | 122 | useEffect(() => { 123 | (async () => { 124 | if (!router.isReady) return; 125 | 126 | const { data, id } = router.query; 127 | 128 | if (!data && !id) { 129 | if (!embedLoaded) loadEmbed(infoEmbed); 130 | return; 131 | } 132 | 133 | try { 134 | let embed: any; 135 | 136 | if (id) { 137 | embed = await fetch(`/api/load?id=${id}`) 138 | .then(res => res.json()) 139 | .then(res => res.embed); 140 | 141 | if (!embed) { 142 | throw new Error("No embed found."); 143 | } 144 | } else if (data) { 145 | const embedString = Array.isArray(data) ? data[0] : data; 146 | 147 | embed = JSON.parse(atob(embedString)); 148 | } 149 | 150 | loadEmbed(embed); 151 | } catch (e) { 152 | loadEmbed(infoEmbed); 153 | setError("An error occurred while importing the embed!"); 154 | } finally { 155 | router.push("/", "/", { shallow: true }); 156 | } 157 | })(); 158 | }, [router]); 159 | 160 | useEffect(() => { 161 | if ( 162 | title.length + 163 | description.length + 164 | fields.reduce( 165 | (acc, cur) => acc + cur.name.length + cur.value.length, 166 | 0 167 | ) + 168 | footerText.length + 169 | authorName.length > 170 | 6000 171 | ) { 172 | setError( 173 | "The total number of characters in the embed content must not exceed 6000!" 174 | ); 175 | } 176 | }, [title, description, fields, footerText, authorName]); 177 | 178 | function loadEmbed(embed: Embed) { 179 | setAuthorIcon(embed.author?.iconUrl ?? ""); 180 | setAuthorName(embed.author?.name ?? ""); 181 | setAuthorUrl(embed.author?.url ?? ""); 182 | 183 | setTitle(embed.title ?? ""); 184 | setUrl(embed.url ?? ""); 185 | setDescription(embed.description ?? ""); 186 | 187 | setFields(embed.fields ?? []); 188 | 189 | setImage(embed.image ?? ""); 190 | setThumbnail(embed.thumbnail ?? ""); 191 | 192 | if (embed.color) setColor(embed.color); 193 | setColorEnabled(embed.color !== undefined); 194 | 195 | setFooterText(embed.footer?.text ?? ""); 196 | setFooterIcon(embed.footer?.iconUrl ?? ""); 197 | 198 | setTimestamp(embed.timestamp); 199 | 200 | setEmbedLoaded(true); 201 | } 202 | 203 | const embed: Embed = { 204 | author: { 205 | name: authorName.trim(), 206 | iconUrl: authorIcon.trim(), 207 | url: authorUrl.trim() 208 | }, 209 | title: title.trim(), 210 | url: url.trim(), 211 | description: description.trim(), 212 | fields: fields.map(field => ({ 213 | name: field.name.trim(), 214 | value: field.value.trim(), 215 | inline: field.inline 216 | })), 217 | image: image.trim(), 218 | thumbnail: thumbnail.trim(), 219 | color: colorEnabled ? color : undefined, 220 | footer: { 221 | text: footerText.trim(), 222 | iconUrl: footerIcon.trim() 223 | }, 224 | timestamp 225 | }; 226 | 227 | return ( 228 |
229 |
230 |
231 |
232 |

233 | Discord Embed Creator 234 |

235 | 241 | GitHub 242 | 243 |
244 | 245 |
246 | 269 | 270 | 277 | 284 | 285 | 292 |
293 |
294 | 295 | {error ? ( 296 |
297 | {error} 298 |
299 | ) : null} 300 | 301 |
302 | 303 |

304 | Author 305 | {authorName ? ( 306 | <> – {ellipses(authorName)} 307 | ) : null} 308 |

309 |
310 | 315 | 319 | 323 |
324 |
325 | 326 |

327 | Body 328 | {title ? <> – {ellipses(title)} : null} 329 |

330 |
331 | 336 | 337 | 343 |
344 | 345 | setColor(e.target.value)} 350 | disabled={!colorEnabled} 351 | className="mt-2" 352 | /> 353 | 359 | setColorEnabled(!colorEnabled)} 365 | className="mt-2" 366 | /> 367 |
368 |
369 |
370 | 371 |

Fields – {fields.length}

372 |
373 | {fields.map((field, index) => ( 374 |
375 | 376 |

377 | Field {index + 1} –{" "} 378 | {ellipses(field.name)} 379 |

380 | 399 | 420 | 430 |
431 |
432 | 435 | { 442 | const newFields = [...fields]; 443 | newFields[index].name = e.target.value; 444 | setFields(newFields); 445 | }} 446 | /> 447 |
448 |
449 | 452 | { 459 | const newFields = [...fields]; 460 | newFields[index].value = e.target.value; 461 | setFields(newFields); 462 | }} 463 | /> 464 |
465 |
466 | 469 | { 474 | const newFields = [...fields]; 475 | newFields[index].inline = 476 | e.target.checked; 477 | setFields(newFields); 478 | }} 479 | className="mt-2" 480 | /> 481 |
482 |
483 | ))} 484 | 503 |
504 |
505 | 506 |

Images

507 |
508 | 509 | 513 |
514 |
515 | 516 |

517 | Footer 518 | {footerText ? ( 519 | <> – {ellipses(footerText)} 520 | ) : null} 521 |

522 |
523 | 528 | 532 |
533 | 534 | 539 | setTimestamp( 540 | e.target.checked ? Date.now() : undefined 541 | ) 542 | } 543 | className="mt-2" 544 | /> 545 |
546 |
547 |
548 | 549 |
550 | 551 | 552 | 553 |
554 | 555 | {modal ? ( 556 | <> 557 |
setModal(false)} 560 | /> 561 | 562 |
563 |

564 | Share Your Embed 565 |

566 | 567 |

568 | Click the button below to copy a link to share your 569 | embed. 570 |

571 | 572 |

573 | The short link will be valid for one week. 574 |

575 | 576 | { 578 | const { id } = await fetch("/api/save", { 579 | body: JSON.stringify({ 580 | embed: embedToPartial(embed) 581 | }), 582 | method: "POST", 583 | headers: { 584 | "Content-Type": "application/json" 585 | } 586 | }).then(res => res.json()); 587 | 588 | return `${location.origin}/?id=${id}`; 589 | }} 590 | idleClassName={button()} 591 | loadingClassName={`${button( 592 | "disabled" 593 | )} animate-pulse`} 594 | copiedClassName={button("disabled")} 595 | errorClassName={button("disabled")} 596 | timeout={30000} 597 | > 598 | Copy Short Link 599 | 600 | 601 |

602 | The permanent link contains all of your embed data. 603 |

604 | 605 | 607 | `${location.origin}/?data=${encodeURIComponent( 608 | btoa(JSON.stringify(embedToPartial(embed))) 609 | )}` 610 | } 611 | idleClassName={button()} 612 | copiedClassName={button("disabled")} 613 | > 614 | Copy Permanent Link 615 | 616 |
617 | 618 | ) : null} 619 |
620 | ); 621 | } 622 | -------------------------------------------------------------------------------- /src/styles/globals.scss: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | @for $i from 3 through 7 { 6 | @font-face { 7 | font-family: "Whitney"; 8 | font-style: "normal"; 9 | font-weight: #{$i}00; 10 | src: url("/font/whitney-#{$i}00.woff2") format("woff2"), 11 | url("/font/whitney-#{$i}00.woff") format("woff"); 12 | font-display: "swap"; 13 | } 14 | } 15 | 16 | @layer base { 17 | html, 18 | body { 19 | font-family: "Whitney", "Helvetica Neue", Helvetica, Arial, sans-serif; 20 | font-size: 16px; 21 | line-height: 1.5; 22 | color: #dcddde; 23 | background-color: #2f3136; 24 | accent-color: #00b0f4; 25 | } 26 | 27 | body { 28 | max-height: 100vh; 29 | overflow-y: hidden; 30 | } 31 | 32 | ::-webkit-scrollbar { 33 | width: 0.5rem; 34 | height: 0.5rem; 35 | } 36 | ::-webkit-scrollbar-track { 37 | background: transparent; 38 | } 39 | ::-webkit-scrollbar-thumb { 40 | background: #202225; 41 | border-radius: 0.5rem; 42 | } 43 | ::-webkit-scrollbar-corner { 44 | background: transparent; 45 | } 46 | 47 | ::-webkit-resizer { 48 | border-radius: 0.5rem; 49 | background: #202225; 50 | } 51 | 52 | select { 53 | @apply p-2 bg-[#292b2f] rounded cursor-pointer transition-colors border border-transparent 54 | hover:border-[#40444b] focus:border-[#40444b] focus:outline-none; 55 | } 56 | 57 | ::-webkit-color-swatch-wrapper { 58 | padding: 0.5rem; 59 | width: 3rem; 60 | } 61 | ::-webkit-color-swatch { 62 | border: none; 63 | } 64 | 65 | code, 66 | pre { 67 | font-family: "Consolas", "Andale Mono WT", "Andale Mono", 68 | "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", 69 | "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", 70 | "Monaco", "Courier New", "Courier", "monospace"; 71 | } 72 | } 73 | 74 | @layer components { 75 | .screen > * { 76 | max-height: 100vh; 77 | overflow-y: auto; 78 | } 79 | 80 | .embed-inputs { 81 | @apply p-8; 82 | 83 | label { 84 | @apply text-white text-sm block mt-2; 85 | } 86 | 87 | textarea, 88 | input[type="text"], 89 | input[type="color"] { 90 | @apply min-h-[2rem] w-full bg-[#2f3136] text-inherit px-4 py-2 rounded border border-transparent transition-colors 91 | focus:outline-none focus:border focus:border-[#40444b]; 92 | } 93 | 94 | textarea { 95 | @apply h-48; 96 | } 97 | 98 | input[type="color"] { 99 | @apply cursor-pointer w-fit p-0 transition-opacity; 100 | 101 | &[disabled] { 102 | @apply cursor-not-allowed opacity-50; 103 | } 104 | } 105 | 106 | input[type="checkbox"] { 107 | @apply h-6 w-6 appearance-none cursor-pointer bg-[#2f3136] border border-transparent relative rounded transition-colors 108 | after:absolute after:inset-1 after:bg-transparent after:rounded-sm after:transition-colors; 109 | 110 | &:hover, 111 | &:focus { 112 | @apply outline-none border-[#40444b]; 113 | } 114 | 115 | &:checked { 116 | @apply after:bg-[#00b0f4]; 117 | } 118 | } 119 | 120 | .limited-input { 121 | @apply w-full; 122 | 123 | input, 124 | textarea { 125 | @apply w-full block; 126 | } 127 | } 128 | 129 | > * { 130 | @apply bg-[#292b2f] mb-4 p-4 rounded; 131 | 132 | > summary { 133 | @apply flex cursor-pointer; 134 | 135 | h2 { 136 | @apply text-white font-semibold text-lg leading-none flex items-center 137 | before:w-6 before:text-xs; 138 | 139 | &::before { 140 | content: "▶️"; 141 | } 142 | } 143 | } 144 | 145 | &[open] > summary { 146 | @apply mb-4; 147 | 148 | h2::before { 149 | content: "🔽"; 150 | } 151 | } 152 | } 153 | 154 | > .fields > details { 155 | @apply mt-4 w-full gap-2 items-end p-4 rounded border border-[#37393f]; 156 | 157 | > summary { 158 | @apply flex flex-row justify-start items-center gap-2 cursor-pointer 159 | before:w-4 before:text-xs; 160 | 161 | &::before { 162 | content: "▶️"; 163 | } 164 | } 165 | 166 | &[open] > summary { 167 | @apply mb-4; 168 | 169 | &::before { 170 | content: "🔽"; 171 | } 172 | } 173 | } 174 | } 175 | } 176 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: ["./src/**/*.tsx"], 4 | theme: { 5 | extend: {} 6 | }, 7 | plugins: [] 8 | }; 9 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "lib": ["dom", "dom.iterable", "esnext"], 5 | "allowJs": true, 6 | "skipLibCheck": true, 7 | "strict": true, 8 | "forceConsistentCasingInFileNames": true, 9 | "noEmit": true, 10 | "esModuleInterop": true, 11 | "module": "esnext", 12 | "moduleResolution": "node", 13 | "resolveJsonModule": true, 14 | "isolatedModules": true, 15 | "jsx": "preserve", 16 | "incremental": true 17 | }, 18 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], 19 | "exclude": ["node_modules"] 20 | } 21 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/runtime-corejs3@^7.10.2": 6 | version "7.18.3" 7 | resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.18.3.tgz#52f0241a31e0ec61a6187530af6227c2846bd60c" 8 | integrity sha512-l4ddFwrc9rnR+EJsHsh+TJ4A35YqQz/UqcjtlX2ov53hlJYG5CxtQmNZxyajwDVmCxwy++rtvGU5HazCK4W41Q== 9 | dependencies: 10 | core-js-pure "^3.20.2" 11 | regenerator-runtime "^0.13.4" 12 | 13 | "@babel/runtime@^7.10.2", "@babel/runtime@^7.18.3", "@babel/runtime@^7.3.1": 14 | version "7.18.3" 15 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.18.3.tgz#c7b654b57f6f63cf7f8b418ac9ca04408c4579f4" 16 | integrity sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug== 17 | dependencies: 18 | regenerator-runtime "^0.13.4" 19 | 20 | "@eslint/eslintrc@^1.3.0": 21 | version "1.3.0" 22 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.0.tgz#29f92c30bb3e771e4a2048c95fa6855392dfac4f" 23 | integrity sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw== 24 | dependencies: 25 | ajv "^6.12.4" 26 | debug "^4.3.2" 27 | espree "^9.3.2" 28 | globals "^13.15.0" 29 | ignore "^5.2.0" 30 | import-fresh "^3.2.1" 31 | js-yaml "^4.1.0" 32 | minimatch "^3.1.2" 33 | strip-json-comments "^3.1.1" 34 | 35 | "@humanwhocodes/config-array@^0.9.2": 36 | version "0.9.5" 37 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.9.5.tgz#2cbaf9a89460da24b5ca6531b8bbfc23e1df50c7" 38 | integrity sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw== 39 | dependencies: 40 | "@humanwhocodes/object-schema" "^1.2.1" 41 | debug "^4.1.1" 42 | minimatch "^3.0.4" 43 | 44 | "@humanwhocodes/object-schema@^1.2.1": 45 | version "1.2.1" 46 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" 47 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== 48 | 49 | "@next/env@12.1.6": 50 | version "12.1.6" 51 | resolved "https://registry.yarnpkg.com/@next/env/-/env-12.1.6.tgz#5f44823a78335355f00f1687cfc4f1dafa3eca08" 52 | integrity sha512-Te/OBDXFSodPU6jlXYPAXpmZr/AkG6DCATAxttQxqOWaq6eDFX25Db3dK0120GZrSZmv4QCe9KsZmJKDbWs4OA== 53 | 54 | "@next/eslint-plugin-next@12.1.6": 55 | version "12.1.6" 56 | resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-12.1.6.tgz#dde3f98831f15923b25244588d924c716956292e" 57 | integrity sha512-yNUtJ90NEiYFT6TJnNyofKMPYqirKDwpahcbxBgSIuABwYOdkGwzos1ZkYD51Qf0diYwpQZBeVqElTk7Q2WNqw== 58 | dependencies: 59 | glob "7.1.7" 60 | 61 | "@next/swc-android-arm-eabi@12.1.6": 62 | version "12.1.6" 63 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-12.1.6.tgz#79a35349b98f2f8c038ab6261aa9cd0d121c03f9" 64 | integrity sha512-BxBr3QAAAXWgk/K7EedvzxJr2dE014mghBSA9iOEAv0bMgF+MRq4PoASjuHi15M2zfowpcRG8XQhMFtxftCleQ== 65 | 66 | "@next/swc-android-arm64@12.1.6": 67 | version "12.1.6" 68 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-12.1.6.tgz#ec08ea61794f8752c8ebcacbed0aafc5b9407456" 69 | integrity sha512-EboEk3ROYY7U6WA2RrMt/cXXMokUTXXfnxe2+CU+DOahvbrO8QSWhlBl9I9ZbFzJx28AGB9Yo3oQHCvph/4Lew== 70 | 71 | "@next/swc-darwin-arm64@12.1.6": 72 | version "12.1.6" 73 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.1.6.tgz#d1053805615fd0706e9b1667893a72271cd87119" 74 | integrity sha512-P0EXU12BMSdNj1F7vdkP/VrYDuCNwBExtRPDYawgSUakzi6qP0iKJpya2BuLvNzXx+XPU49GFuDC5X+SvY0mOw== 75 | 76 | "@next/swc-darwin-x64@12.1.6": 77 | version "12.1.6" 78 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-12.1.6.tgz#2d1b926a22f4c5230d5b311f9c56cfdcc406afec" 79 | integrity sha512-9FptMnbgHJK3dRDzfTpexs9S2hGpzOQxSQbe8omz6Pcl7rnEp9x4uSEKY51ho85JCjL4d0tDLBcXEJZKKLzxNg== 80 | 81 | "@next/swc-linux-arm-gnueabihf@12.1.6": 82 | version "12.1.6" 83 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.1.6.tgz#c021918d2a94a17f823106a5e069335b8a19724f" 84 | integrity sha512-PvfEa1RR55dsik/IDkCKSFkk6ODNGJqPY3ysVUZqmnWMDSuqFtf7BPWHFa/53znpvVB5XaJ5Z1/6aR5CTIqxPw== 85 | 86 | "@next/swc-linux-arm64-gnu@12.1.6": 87 | version "12.1.6" 88 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.1.6.tgz#ac55c07bfabde378dfa0ce2b8fc1c3b2897e81ae" 89 | integrity sha512-53QOvX1jBbC2ctnmWHyRhMajGq7QZfl974WYlwclXarVV418X7ed7o/EzGY+YVAEKzIVaAB9JFFWGXn8WWo0gQ== 90 | 91 | "@next/swc-linux-arm64-musl@12.1.6": 92 | version "12.1.6" 93 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.1.6.tgz#e429f826279894be9096be6bec13e75e3d6bd671" 94 | integrity sha512-CMWAkYqfGdQCS+uuMA1A2UhOfcUYeoqnTW7msLr2RyYAys15pD960hlDfq7QAi8BCAKk0sQ2rjsl0iqMyziohQ== 95 | 96 | "@next/swc-linux-x64-gnu@12.1.6": 97 | version "12.1.6" 98 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.1.6.tgz#1f276c0784a5ca599bfa34b2fcc0b38f3a738e08" 99 | integrity sha512-AC7jE4Fxpn0s3ujngClIDTiEM/CQiB2N2vkcyWWn6734AmGT03Duq6RYtPMymFobDdAtZGFZd5nR95WjPzbZAQ== 100 | 101 | "@next/swc-linux-x64-musl@12.1.6": 102 | version "12.1.6" 103 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.1.6.tgz#1d9933dd6ba303dcfd8a2acd6ac7c27ed41e2eea" 104 | integrity sha512-c9Vjmi0EVk0Kou2qbrynskVarnFwfYIi+wKufR9Ad7/IKKuP6aEhOdZiIIdKsYWRtK2IWRF3h3YmdnEa2WLUag== 105 | 106 | "@next/swc-win32-arm64-msvc@12.1.6": 107 | version "12.1.6" 108 | resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.1.6.tgz#2ef9837f12ca652b1783d72ecb86208906042f02" 109 | integrity sha512-3UTOL/5XZSKFelM7qN0it35o3Cegm6LsyuERR3/OoqEExyj3aCk7F025b54/707HTMAnjlvQK3DzLhPu/xxO4g== 110 | 111 | "@next/swc-win32-ia32-msvc@12.1.6": 112 | version "12.1.6" 113 | resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.1.6.tgz#74003d0aa1c59dfa56cb15481a5c607cbc0027b9" 114 | integrity sha512-8ZWoj6nCq6fI1yCzKq6oK0jE6Mxlz4MrEsRyu0TwDztWQWe7rh4XXGLAa2YVPatYcHhMcUL+fQQbqd1MsgaSDA== 115 | 116 | "@next/swc-win32-x64-msvc@12.1.6": 117 | version "12.1.6" 118 | resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.1.6.tgz#a350caf42975e7197b24b495b8d764eec7e6a36e" 119 | integrity sha512-4ZEwiRuZEicXhXqmhw3+de8Z4EpOLQj/gp+D9fFWo6ii6W1kBkNNvvEx4A90ugppu+74pT1lIJnOuz3A9oQeJA== 120 | 121 | "@nodelib/fs.scandir@2.1.5": 122 | version "2.1.5" 123 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 124 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 125 | dependencies: 126 | "@nodelib/fs.stat" "2.0.5" 127 | run-parallel "^1.1.9" 128 | 129 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 130 | version "2.0.5" 131 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 132 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 133 | 134 | "@nodelib/fs.walk@^1.2.3": 135 | version "1.2.8" 136 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 137 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 138 | dependencies: 139 | "@nodelib/fs.scandir" "2.1.5" 140 | fastq "^1.6.0" 141 | 142 | "@redis/bloom@1.0.2": 143 | version "1.0.2" 144 | resolved "https://registry.yarnpkg.com/@redis/bloom/-/bloom-1.0.2.tgz#42b82ec399a92db05e29fffcdfd9235a5fc15cdf" 145 | integrity sha512-EBw7Ag1hPgFzdznK2PBblc1kdlj5B5Cw3XwI9/oG7tSn85/HKy3X9xHy/8tm/eNXJYHLXHJL/pkwBpFMVVefkw== 146 | 147 | "@redis/client@1.1.0": 148 | version "1.1.0" 149 | resolved "https://registry.yarnpkg.com/@redis/client/-/client-1.1.0.tgz#e52a85aee802796ceb14bf27daf9550f51f238b8" 150 | integrity sha512-xO9JDIgzsZYDl3EvFhl6LC52DP3q3GCMUer8zHgKV6qSYsq1zB+pZs9+T80VgcRogrlRYhi4ZlfX6A+bHiBAgA== 151 | dependencies: 152 | cluster-key-slot "1.1.0" 153 | generic-pool "3.8.2" 154 | yallist "4.0.0" 155 | 156 | "@redis/graph@1.0.1": 157 | version "1.0.1" 158 | resolved "https://registry.yarnpkg.com/@redis/graph/-/graph-1.0.1.tgz#eabc58ba99cd70d0c907169c02b55497e4ec8a99" 159 | integrity sha512-oDE4myMCJOCVKYMygEMWuriBgqlS5FqdWerikMoJxzmmTUErnTRRgmIDa2VcgytACZMFqpAOWDzops4DOlnkfQ== 160 | 161 | "@redis/json@1.0.3": 162 | version "1.0.3" 163 | resolved "https://registry.yarnpkg.com/@redis/json/-/json-1.0.3.tgz#a13fde1d22ebff0ae2805cd8e1e70522b08ea866" 164 | integrity sha512-4X0Qv0BzD9Zlb0edkUoau5c1bInWSICqXAGrpwEltkncUwcxJIGEcVryZhLgb0p/3PkKaLIWkjhHRtLe9yiA7Q== 165 | 166 | "@redis/search@1.0.6": 167 | version "1.0.6" 168 | resolved "https://registry.yarnpkg.com/@redis/search/-/search-1.0.6.tgz#53d7451c2783f011ebc48ec4c2891264e0b22f10" 169 | integrity sha512-pP+ZQRis5P21SD6fjyCeLcQdps+LuTzp2wdUbzxEmNhleighDDTD5ck8+cYof+WLec4csZX7ks+BuoMw0RaZrA== 170 | 171 | "@redis/time-series@1.0.3": 172 | version "1.0.3" 173 | resolved "https://registry.yarnpkg.com/@redis/time-series/-/time-series-1.0.3.tgz#4cfca8e564228c0bddcdf4418cba60c20b224ac4" 174 | integrity sha512-OFp0q4SGrTH0Mruf6oFsHGea58u8vS/iI5+NpYdicaM+7BgqBZH8FFvNZ8rYYLrUO/QRqMq72NpXmxLVNcdmjA== 175 | 176 | "@rushstack/eslint-patch@^1.1.3": 177 | version "1.1.3" 178 | resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.1.3.tgz#6801033be7ff87a6b7cadaf5b337c9f366a3c4b0" 179 | integrity sha512-WiBSI6JBIhC6LRIsB2Kwh8DsGTlbBU+mLRxJmAe3LjHTdkDpwIbEOZgoXBbZilk/vlfjK8i6nKRAvIRn1XaIMw== 180 | 181 | "@types/hast@^2.0.0": 182 | version "2.3.4" 183 | resolved "https://registry.yarnpkg.com/@types/hast/-/hast-2.3.4.tgz#8aa5ef92c117d20d974a82bdfb6a648b08c0bafc" 184 | integrity sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g== 185 | dependencies: 186 | "@types/unist" "*" 187 | 188 | "@types/json5@^0.0.29": 189 | version "0.0.29" 190 | resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" 191 | integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== 192 | 193 | "@types/node@18.0.0": 194 | version "18.0.0" 195 | resolved "https://registry.yarnpkg.com/@types/node/-/node-18.0.0.tgz#67c7b724e1bcdd7a8821ce0d5ee184d3b4dd525a" 196 | integrity sha512-cHlGmko4gWLVI27cGJntjs/Sj8th9aYwplmZFwmmgYQQvL5NUsgVJG7OddLvNfLqYS31KFN0s3qlaD9qCaxACA== 197 | 198 | "@types/prop-types@*": 199 | version "15.7.5" 200 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" 201 | integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== 202 | 203 | "@types/punycode@^2.1.0": 204 | version "2.1.0" 205 | resolved "https://registry.yarnpkg.com/@types/punycode/-/punycode-2.1.0.tgz#89e4f3d09b3f92e87a80505af19be7e0c31d4e83" 206 | integrity sha512-PG5aLpW6PJOeV2fHRslP4IOMWn+G+Uq8CfnyJ+PDS8ndCbU+soO+fB3NKCKo0p/Jh2Y4aPaiQZsrOXFdzpcA6g== 207 | 208 | "@types/react-dom@18.0.5": 209 | version "18.0.5" 210 | resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.0.5.tgz#330b2d472c22f796e5531446939eacef8378444a" 211 | integrity sha512-OWPWTUrY/NIrjsAPkAk1wW9LZeIjSvkXRhclsFO8CZcZGCOg2G0YZy4ft+rOyYxy8B7ui5iZzi9OkDebZ7/QSA== 212 | dependencies: 213 | "@types/react" "*" 214 | 215 | "@types/react-syntax-highlighter@^15.5.2": 216 | version "15.5.2" 217 | resolved "https://registry.yarnpkg.com/@types/react-syntax-highlighter/-/react-syntax-highlighter-15.5.2.tgz#b3450851c11b8526a27edf51d00769b69d8fbf20" 218 | integrity sha512-cJJvwU8lQv/efGSo/LmPoaOqWi/B0AG4CNKKCn7HPUL25SqiPn1Vl+fV1JiUigJv97ruTZ8mo08+b8/0zoYufA== 219 | dependencies: 220 | "@types/react" "*" 221 | 222 | "@types/react@*", "@types/react@18.0.14", "@types/react@>=16.0.0": 223 | version "18.0.14" 224 | resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.14.tgz#e016616ffff51dba01b04945610fe3671fdbe06d" 225 | integrity sha512-x4gGuASSiWmo0xjDLpm5mPb52syZHJx02VKbqUKdLmKtAwIh63XClGsiTI1K6DO5q7ox4xAsQrU+Gl3+gGXF9Q== 226 | dependencies: 227 | "@types/prop-types" "*" 228 | "@types/scheduler" "*" 229 | csstype "^3.0.2" 230 | 231 | "@types/scheduler@*": 232 | version "0.16.2" 233 | resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" 234 | integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== 235 | 236 | "@types/unist@*": 237 | version "2.0.6" 238 | resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d" 239 | integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ== 240 | 241 | "@typescript-eslint/parser@^5.21.0": 242 | version "5.29.0" 243 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.29.0.tgz#41314b195b34d44ff38220caa55f3f93cfca43cf" 244 | integrity sha512-ruKWTv+x0OOxbzIw9nW5oWlUopvP/IQDjB5ZqmTglLIoDTctLlAJpAQFpNPJP/ZI7hTT9sARBosEfaKbcFuECw== 245 | dependencies: 246 | "@typescript-eslint/scope-manager" "5.29.0" 247 | "@typescript-eslint/types" "5.29.0" 248 | "@typescript-eslint/typescript-estree" "5.29.0" 249 | debug "^4.3.4" 250 | 251 | "@typescript-eslint/scope-manager@5.29.0": 252 | version "5.29.0" 253 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.29.0.tgz#2a6a32e3416cb133e9af8dcf54bf077a916aeed3" 254 | integrity sha512-etbXUT0FygFi2ihcxDZjz21LtC+Eps9V2xVx09zFoN44RRHPrkMflidGMI+2dUs821zR1tDS6Oc9IXxIjOUZwA== 255 | dependencies: 256 | "@typescript-eslint/types" "5.29.0" 257 | "@typescript-eslint/visitor-keys" "5.29.0" 258 | 259 | "@typescript-eslint/types@5.29.0": 260 | version "5.29.0" 261 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.29.0.tgz#7861d3d288c031703b2d97bc113696b4d8c19aab" 262 | integrity sha512-X99VbqvAXOMdVyfFmksMy3u8p8yoRGITgU1joBJPzeYa0rhdf5ok9S56/itRoUSh99fiDoMtarSIJXo7H/SnOg== 263 | 264 | "@typescript-eslint/typescript-estree@5.29.0": 265 | version "5.29.0" 266 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.29.0.tgz#e83d19aa7fd2e74616aab2f25dfbe4de4f0b5577" 267 | integrity sha512-mQvSUJ/JjGBdvo+1LwC+GY2XmSYjK1nAaVw2emp/E61wEVYEyibRHCqm1I1vEKbXCpUKuW4G7u9ZCaZhJbLoNQ== 268 | dependencies: 269 | "@typescript-eslint/types" "5.29.0" 270 | "@typescript-eslint/visitor-keys" "5.29.0" 271 | debug "^4.3.4" 272 | globby "^11.1.0" 273 | is-glob "^4.0.3" 274 | semver "^7.3.7" 275 | tsutils "^3.21.0" 276 | 277 | "@typescript-eslint/visitor-keys@5.29.0": 278 | version "5.29.0" 279 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.29.0.tgz#7a4749fa7ef5160c44a451bf060ac1dc6dfb77ee" 280 | integrity sha512-Hpb/mCWsjILvikMQoZIE3voc9wtQcS0A9FUw3h8bhr9UxBdtI/tw1ZDZUOXHXLOVMedKCH5NxyzATwnU78bWCQ== 281 | dependencies: 282 | "@typescript-eslint/types" "5.29.0" 283 | eslint-visitor-keys "^3.3.0" 284 | 285 | acorn-jsx@^5.3.2: 286 | version "5.3.2" 287 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 288 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 289 | 290 | acorn-node@^1.8.2: 291 | version "1.8.2" 292 | resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8" 293 | integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== 294 | dependencies: 295 | acorn "^7.0.0" 296 | acorn-walk "^7.0.0" 297 | xtend "^4.0.2" 298 | 299 | acorn-walk@^7.0.0: 300 | version "7.2.0" 301 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" 302 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== 303 | 304 | acorn@^7.0.0: 305 | version "7.4.1" 306 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 307 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 308 | 309 | acorn@^8.7.1: 310 | version "8.7.1" 311 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.1.tgz#0197122c843d1bf6d0a5e83220a788f278f63c30" 312 | integrity sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A== 313 | 314 | ajv@^6.10.0, ajv@^6.12.4: 315 | version "6.12.6" 316 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 317 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 318 | dependencies: 319 | fast-deep-equal "^3.1.1" 320 | fast-json-stable-stringify "^2.0.0" 321 | json-schema-traverse "^0.4.1" 322 | uri-js "^4.2.2" 323 | 324 | ansi-regex@^5.0.1: 325 | version "5.0.1" 326 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 327 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 328 | 329 | ansi-styles@^4.1.0: 330 | version "4.3.0" 331 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 332 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 333 | dependencies: 334 | color-convert "^2.0.1" 335 | 336 | anymatch@~3.1.2: 337 | version "3.1.2" 338 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" 339 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== 340 | dependencies: 341 | normalize-path "^3.0.0" 342 | picomatch "^2.0.4" 343 | 344 | arg@^5.0.2: 345 | version "5.0.2" 346 | resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c" 347 | integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg== 348 | 349 | argparse@^2.0.1: 350 | version "2.0.1" 351 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 352 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 353 | 354 | aria-query@^4.2.2: 355 | version "4.2.2" 356 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b" 357 | integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA== 358 | dependencies: 359 | "@babel/runtime" "^7.10.2" 360 | "@babel/runtime-corejs3" "^7.10.2" 361 | 362 | array-includes@^3.1.4, array-includes@^3.1.5: 363 | version "3.1.5" 364 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.5.tgz#2c320010db8d31031fd2a5f6b3bbd4b1aad31bdb" 365 | integrity sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ== 366 | dependencies: 367 | call-bind "^1.0.2" 368 | define-properties "^1.1.4" 369 | es-abstract "^1.19.5" 370 | get-intrinsic "^1.1.1" 371 | is-string "^1.0.7" 372 | 373 | array-union@^2.1.0: 374 | version "2.1.0" 375 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 376 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 377 | 378 | array.prototype.flat@^1.2.5: 379 | version "1.3.0" 380 | resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz#0b0c1567bf57b38b56b4c97b8aa72ab45e4adc7b" 381 | integrity sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw== 382 | dependencies: 383 | call-bind "^1.0.2" 384 | define-properties "^1.1.3" 385 | es-abstract "^1.19.2" 386 | es-shim-unscopables "^1.0.0" 387 | 388 | array.prototype.flatmap@^1.3.0: 389 | version "1.3.0" 390 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz#a7e8ed4225f4788a70cd910abcf0791e76a5534f" 391 | integrity sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg== 392 | dependencies: 393 | call-bind "^1.0.2" 394 | define-properties "^1.1.3" 395 | es-abstract "^1.19.2" 396 | es-shim-unscopables "^1.0.0" 397 | 398 | ast-types-flow@^0.0.7: 399 | version "0.0.7" 400 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" 401 | integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag== 402 | 403 | autoprefixer@^10.4.7: 404 | version "10.4.7" 405 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.7.tgz#1db8d195f41a52ca5069b7593be167618edbbedf" 406 | integrity sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA== 407 | dependencies: 408 | browserslist "^4.20.3" 409 | caniuse-lite "^1.0.30001335" 410 | fraction.js "^4.2.0" 411 | normalize-range "^0.1.2" 412 | picocolors "^1.0.0" 413 | postcss-value-parser "^4.2.0" 414 | 415 | axe-core@^4.4.2: 416 | version "4.4.2" 417 | resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.4.2.tgz#dcf7fb6dea866166c3eab33d68208afe4d5f670c" 418 | integrity sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA== 419 | 420 | axobject-query@^2.2.0: 421 | version "2.2.0" 422 | resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be" 423 | integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA== 424 | 425 | balanced-match@^1.0.0: 426 | version "1.0.2" 427 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 428 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 429 | 430 | binary-extensions@^2.0.0: 431 | version "2.2.0" 432 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" 433 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== 434 | 435 | brace-expansion@^1.1.7: 436 | version "1.1.11" 437 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 438 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 439 | dependencies: 440 | balanced-match "^1.0.0" 441 | concat-map "0.0.1" 442 | 443 | braces@^3.0.2, braces@~3.0.2: 444 | version "3.0.2" 445 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 446 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 447 | dependencies: 448 | fill-range "^7.0.1" 449 | 450 | browserslist@^4.20.3: 451 | version "4.21.0" 452 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.0.tgz#7ab19572361a140ecd1e023e2c1ed95edda0cefe" 453 | integrity sha512-UQxE0DIhRB5z/zDz9iA03BOfxaN2+GQdBYH/2WrSIWEUrnpzTPJbhqt+umq6r3acaPRTW1FNTkrcp0PXgtFkvA== 454 | dependencies: 455 | caniuse-lite "^1.0.30001358" 456 | electron-to-chromium "^1.4.164" 457 | node-releases "^2.0.5" 458 | update-browserslist-db "^1.0.0" 459 | 460 | call-bind@^1.0.0, call-bind@^1.0.2: 461 | version "1.0.2" 462 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 463 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 464 | dependencies: 465 | function-bind "^1.1.1" 466 | get-intrinsic "^1.0.2" 467 | 468 | callsites@^3.0.0: 469 | version "3.1.0" 470 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 471 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 472 | 473 | camelcase-css@^2.0.1: 474 | version "2.0.1" 475 | resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" 476 | integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== 477 | 478 | caniuse-lite@^1.0.30001332, caniuse-lite@^1.0.30001335, caniuse-lite@^1.0.30001358: 479 | version "1.0.30001359" 480 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001359.tgz#a1c1cbe1c2da9e689638813618b4219acbd4925e" 481 | integrity sha512-Xln/BAsPzEuiVLgJ2/45IaqD9jShtk3Y33anKb4+yLwQzws3+v6odKfpgES/cDEaZMLzSChpIGdbOYtH9MyuHw== 482 | 483 | chalk@^4.0.0: 484 | version "4.1.2" 485 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 486 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 487 | dependencies: 488 | ansi-styles "^4.1.0" 489 | supports-color "^7.1.0" 490 | 491 | character-entities-legacy@^1.0.0: 492 | version "1.1.4" 493 | resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz#94bc1845dce70a5bb9d2ecc748725661293d8fc1" 494 | integrity sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA== 495 | 496 | character-entities@^1.0.0: 497 | version "1.2.4" 498 | resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.4.tgz#e12c3939b7eaf4e5b15e7ad4c5e28e1d48c5b16b" 499 | integrity sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw== 500 | 501 | character-reference-invalid@^1.0.0: 502 | version "1.1.4" 503 | resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz#083329cda0eae272ab3dbbf37e9a382c13af1560" 504 | integrity sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg== 505 | 506 | "chokidar@>=3.0.0 <4.0.0", chokidar@^3.5.3: 507 | version "3.5.3" 508 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" 509 | integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== 510 | dependencies: 511 | anymatch "~3.1.2" 512 | braces "~3.0.2" 513 | glob-parent "~5.1.2" 514 | is-binary-path "~2.1.0" 515 | is-glob "~4.0.1" 516 | normalize-path "~3.0.0" 517 | readdirp "~3.6.0" 518 | optionalDependencies: 519 | fsevents "~2.3.2" 520 | 521 | cluster-key-slot@1.1.0: 522 | version "1.1.0" 523 | resolved "https://registry.yarnpkg.com/cluster-key-slot/-/cluster-key-slot-1.1.0.tgz#30474b2a981fb12172695833052bc0d01336d10d" 524 | integrity sha512-2Nii8p3RwAPiFwsnZvukotvow2rIHM+yQ6ZcBXGHdniadkYGZYiGmkHJIbZPIV9nfv7m/U1IPMVVcAhoWFeklw== 525 | 526 | color-convert@^2.0.1: 527 | version "2.0.1" 528 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 529 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 530 | dependencies: 531 | color-name "~1.1.4" 532 | 533 | color-name@^1.1.4, color-name@~1.1.4: 534 | version "1.1.4" 535 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 536 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 537 | 538 | comma-separated-tokens@^1.0.0: 539 | version "1.0.8" 540 | resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz#632b80b6117867a158f1080ad498b2fbe7e3f5ea" 541 | integrity sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw== 542 | 543 | concat-map@0.0.1: 544 | version "0.0.1" 545 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 546 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 547 | 548 | core-js-pure@^3.20.2: 549 | version "3.23.3" 550 | resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.23.3.tgz#bcd02d3d8ec68ad871ef50d5ccbb248ddb54f401" 551 | integrity sha512-XpoouuqIj4P+GWtdyV8ZO3/u4KftkeDVMfvp+308eGMhCrA3lVDSmAxO0c6GGOcmgVlaKDrgWVMo49h2ab/TDA== 552 | 553 | cross-spawn@^7.0.2: 554 | version "7.0.3" 555 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 556 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 557 | dependencies: 558 | path-key "^3.1.0" 559 | shebang-command "^2.0.0" 560 | which "^2.0.1" 561 | 562 | cssesc@^3.0.0: 563 | version "3.0.0" 564 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" 565 | integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== 566 | 567 | csstype@^3.0.2: 568 | version "3.1.0" 569 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.0.tgz#4ddcac3718d787cf9df0d1b7d15033925c8f29f2" 570 | integrity sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA== 571 | 572 | damerau-levenshtein@^1.0.8: 573 | version "1.0.8" 574 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7" 575 | integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== 576 | 577 | debug@^2.6.9: 578 | version "2.6.9" 579 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 580 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== 581 | dependencies: 582 | ms "2.0.0" 583 | 584 | debug@^3.2.7: 585 | version "3.2.7" 586 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" 587 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== 588 | dependencies: 589 | ms "^2.1.1" 590 | 591 | debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: 592 | version "4.3.4" 593 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 594 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 595 | dependencies: 596 | ms "2.1.2" 597 | 598 | deep-is@^0.1.3: 599 | version "0.1.4" 600 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 601 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 602 | 603 | define-properties@^1.1.3, define-properties@^1.1.4: 604 | version "1.1.4" 605 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1" 606 | integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA== 607 | dependencies: 608 | has-property-descriptors "^1.0.0" 609 | object-keys "^1.1.1" 610 | 611 | defined@^1.0.0: 612 | version "1.0.0" 613 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 614 | integrity sha512-Y2caI5+ZwS5c3RiNDJ6u53VhQHv+hHKwhkI1iHvceKUHw9Df6EK2zRLfjejRgMuCuxK7PfSWIMwWecceVvThjQ== 615 | 616 | detective@^5.2.1: 617 | version "5.2.1" 618 | resolved "https://registry.yarnpkg.com/detective/-/detective-5.2.1.tgz#6af01eeda11015acb0e73f933242b70f24f91034" 619 | integrity sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw== 620 | dependencies: 621 | acorn-node "^1.8.2" 622 | defined "^1.0.0" 623 | minimist "^1.2.6" 624 | 625 | didyoumean@^1.2.2: 626 | version "1.2.2" 627 | resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037" 628 | integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw== 629 | 630 | dir-glob@^3.0.1: 631 | version "3.0.1" 632 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 633 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 634 | dependencies: 635 | path-type "^4.0.0" 636 | 637 | dlv@^1.1.3: 638 | version "1.1.3" 639 | resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79" 640 | integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA== 641 | 642 | doctrine@^2.1.0: 643 | version "2.1.0" 644 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 645 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 646 | dependencies: 647 | esutils "^2.0.2" 648 | 649 | doctrine@^3.0.0: 650 | version "3.0.0" 651 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 652 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 653 | dependencies: 654 | esutils "^2.0.2" 655 | 656 | electron-to-chromium@^1.4.164: 657 | version "1.4.170" 658 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.170.tgz#0415fc489402e09bfbe1f0c99bbf4d73f31d48d4" 659 | integrity sha512-rZ8PZLhK4ORPjFqLp9aqC4/S1j4qWFsPPz13xmWdrbBkU/LlxMcok+f+6f8YnQ57MiZwKtOaW15biZZsY5Igvw== 660 | 661 | emoji-regex@^9.2.2: 662 | version "9.2.2" 663 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" 664 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== 665 | 666 | es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.2, es-abstract@^1.19.5: 667 | version "1.20.1" 668 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.1.tgz#027292cd6ef44bd12b1913b828116f54787d1814" 669 | integrity sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA== 670 | dependencies: 671 | call-bind "^1.0.2" 672 | es-to-primitive "^1.2.1" 673 | function-bind "^1.1.1" 674 | function.prototype.name "^1.1.5" 675 | get-intrinsic "^1.1.1" 676 | get-symbol-description "^1.0.0" 677 | has "^1.0.3" 678 | has-property-descriptors "^1.0.0" 679 | has-symbols "^1.0.3" 680 | internal-slot "^1.0.3" 681 | is-callable "^1.2.4" 682 | is-negative-zero "^2.0.2" 683 | is-regex "^1.1.4" 684 | is-shared-array-buffer "^1.0.2" 685 | is-string "^1.0.7" 686 | is-weakref "^1.0.2" 687 | object-inspect "^1.12.0" 688 | object-keys "^1.1.1" 689 | object.assign "^4.1.2" 690 | regexp.prototype.flags "^1.4.3" 691 | string.prototype.trimend "^1.0.5" 692 | string.prototype.trimstart "^1.0.5" 693 | unbox-primitive "^1.0.2" 694 | 695 | es-shim-unscopables@^1.0.0: 696 | version "1.0.0" 697 | resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" 698 | integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== 699 | dependencies: 700 | has "^1.0.3" 701 | 702 | es-to-primitive@^1.2.1: 703 | version "1.2.1" 704 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 705 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 706 | dependencies: 707 | is-callable "^1.1.4" 708 | is-date-object "^1.0.1" 709 | is-symbol "^1.0.2" 710 | 711 | escalade@^3.1.1: 712 | version "3.1.1" 713 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 714 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 715 | 716 | escape-string-regexp@^4.0.0: 717 | version "4.0.0" 718 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 719 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 720 | 721 | eslint-config-next@12.1.6: 722 | version "12.1.6" 723 | resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-12.1.6.tgz#55097028982dce49159d8753000be3916ac55254" 724 | integrity sha512-qoiS3g/EPzfCTkGkaPBSX9W0NGE/B1wNO3oWrd76QszVGrdpLggNqcO8+LR6MB0CNqtp9Q8NoeVrxNVbzM9hqA== 725 | dependencies: 726 | "@next/eslint-plugin-next" "12.1.6" 727 | "@rushstack/eslint-patch" "^1.1.3" 728 | "@typescript-eslint/parser" "^5.21.0" 729 | eslint-import-resolver-node "^0.3.6" 730 | eslint-import-resolver-typescript "^2.7.1" 731 | eslint-plugin-import "^2.26.0" 732 | eslint-plugin-jsx-a11y "^6.5.1" 733 | eslint-plugin-react "^7.29.4" 734 | eslint-plugin-react-hooks "^4.5.0" 735 | 736 | eslint-import-resolver-node@^0.3.6: 737 | version "0.3.6" 738 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd" 739 | integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw== 740 | dependencies: 741 | debug "^3.2.7" 742 | resolve "^1.20.0" 743 | 744 | eslint-import-resolver-typescript@^2.7.1: 745 | version "2.7.1" 746 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.7.1.tgz#a90a4a1c80da8d632df25994c4c5fdcdd02b8751" 747 | integrity sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ== 748 | dependencies: 749 | debug "^4.3.4" 750 | glob "^7.2.0" 751 | is-glob "^4.0.3" 752 | resolve "^1.22.0" 753 | tsconfig-paths "^3.14.1" 754 | 755 | eslint-module-utils@^2.7.3: 756 | version "2.7.3" 757 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.3.tgz#ad7e3a10552fdd0642e1e55292781bd6e34876ee" 758 | integrity sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ== 759 | dependencies: 760 | debug "^3.2.7" 761 | find-up "^2.1.0" 762 | 763 | eslint-plugin-import@^2.26.0: 764 | version "2.26.0" 765 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz#f812dc47be4f2b72b478a021605a59fc6fe8b88b" 766 | integrity sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA== 767 | dependencies: 768 | array-includes "^3.1.4" 769 | array.prototype.flat "^1.2.5" 770 | debug "^2.6.9" 771 | doctrine "^2.1.0" 772 | eslint-import-resolver-node "^0.3.6" 773 | eslint-module-utils "^2.7.3" 774 | has "^1.0.3" 775 | is-core-module "^2.8.1" 776 | is-glob "^4.0.3" 777 | minimatch "^3.1.2" 778 | object.values "^1.1.5" 779 | resolve "^1.22.0" 780 | tsconfig-paths "^3.14.1" 781 | 782 | eslint-plugin-jsx-a11y@^6.5.1: 783 | version "6.6.0" 784 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.0.tgz#2c5ac12e013eb98337b9aa261c3b355275cc6415" 785 | integrity sha512-kTeLuIzpNhXL2CwLlc8AHI0aFRwWHcg483yepO9VQiHzM9bZwJdzTkzBszbuPrbgGmq2rlX/FaT2fJQsjUSHsw== 786 | dependencies: 787 | "@babel/runtime" "^7.18.3" 788 | aria-query "^4.2.2" 789 | array-includes "^3.1.5" 790 | ast-types-flow "^0.0.7" 791 | axe-core "^4.4.2" 792 | axobject-query "^2.2.0" 793 | damerau-levenshtein "^1.0.8" 794 | emoji-regex "^9.2.2" 795 | has "^1.0.3" 796 | jsx-ast-utils "^3.3.1" 797 | language-tags "^1.0.5" 798 | minimatch "^3.1.2" 799 | semver "^6.3.0" 800 | 801 | eslint-plugin-react-hooks@^4.5.0: 802 | version "4.6.0" 803 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3" 804 | integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== 805 | 806 | eslint-plugin-react@^7.29.4: 807 | version "7.30.1" 808 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.30.1.tgz#2be4ab23ce09b5949c6631413ba64b2810fd3e22" 809 | integrity sha512-NbEvI9jtqO46yJA3wcRF9Mo0lF9T/jhdHqhCHXiXtD+Zcb98812wvokjWpU7Q4QH5edo6dmqrukxVvWWXHlsUg== 810 | dependencies: 811 | array-includes "^3.1.5" 812 | array.prototype.flatmap "^1.3.0" 813 | doctrine "^2.1.0" 814 | estraverse "^5.3.0" 815 | jsx-ast-utils "^2.4.1 || ^3.0.0" 816 | minimatch "^3.1.2" 817 | object.entries "^1.1.5" 818 | object.fromentries "^2.0.5" 819 | object.hasown "^1.1.1" 820 | object.values "^1.1.5" 821 | prop-types "^15.8.1" 822 | resolve "^2.0.0-next.3" 823 | semver "^6.3.0" 824 | string.prototype.matchall "^4.0.7" 825 | 826 | eslint-scope@^7.1.1: 827 | version "7.1.1" 828 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" 829 | integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== 830 | dependencies: 831 | esrecurse "^4.3.0" 832 | estraverse "^5.2.0" 833 | 834 | eslint-utils@^3.0.0: 835 | version "3.0.0" 836 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" 837 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== 838 | dependencies: 839 | eslint-visitor-keys "^2.0.0" 840 | 841 | eslint-visitor-keys@^2.0.0: 842 | version "2.1.0" 843 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" 844 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== 845 | 846 | eslint-visitor-keys@^3.3.0: 847 | version "3.3.0" 848 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" 849 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== 850 | 851 | eslint@8.18.0: 852 | version "8.18.0" 853 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.18.0.tgz#78d565d16c993d0b73968c523c0446b13da784fd" 854 | integrity sha512-As1EfFMVk7Xc6/CvhssHUjsAQSkpfXvUGMFC3ce8JDe6WvqCgRrLOBQbVpsBFr1X1V+RACOadnzVvcUS5ni2bA== 855 | dependencies: 856 | "@eslint/eslintrc" "^1.3.0" 857 | "@humanwhocodes/config-array" "^0.9.2" 858 | ajv "^6.10.0" 859 | chalk "^4.0.0" 860 | cross-spawn "^7.0.2" 861 | debug "^4.3.2" 862 | doctrine "^3.0.0" 863 | escape-string-regexp "^4.0.0" 864 | eslint-scope "^7.1.1" 865 | eslint-utils "^3.0.0" 866 | eslint-visitor-keys "^3.3.0" 867 | espree "^9.3.2" 868 | esquery "^1.4.0" 869 | esutils "^2.0.2" 870 | fast-deep-equal "^3.1.3" 871 | file-entry-cache "^6.0.1" 872 | functional-red-black-tree "^1.0.1" 873 | glob-parent "^6.0.1" 874 | globals "^13.15.0" 875 | ignore "^5.2.0" 876 | import-fresh "^3.0.0" 877 | imurmurhash "^0.1.4" 878 | is-glob "^4.0.0" 879 | js-yaml "^4.1.0" 880 | json-stable-stringify-without-jsonify "^1.0.1" 881 | levn "^0.4.1" 882 | lodash.merge "^4.6.2" 883 | minimatch "^3.1.2" 884 | natural-compare "^1.4.0" 885 | optionator "^0.9.1" 886 | regexpp "^3.2.0" 887 | strip-ansi "^6.0.1" 888 | strip-json-comments "^3.1.0" 889 | text-table "^0.2.0" 890 | v8-compile-cache "^2.0.3" 891 | 892 | espree@^9.3.2: 893 | version "9.3.2" 894 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.2.tgz#f58f77bd334731182801ced3380a8cc859091596" 895 | integrity sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA== 896 | dependencies: 897 | acorn "^8.7.1" 898 | acorn-jsx "^5.3.2" 899 | eslint-visitor-keys "^3.3.0" 900 | 901 | esquery@^1.4.0: 902 | version "1.4.0" 903 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" 904 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== 905 | dependencies: 906 | estraverse "^5.1.0" 907 | 908 | esrecurse@^4.3.0: 909 | version "4.3.0" 910 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 911 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 912 | dependencies: 913 | estraverse "^5.2.0" 914 | 915 | estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: 916 | version "5.3.0" 917 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 918 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 919 | 920 | esutils@^2.0.2: 921 | version "2.0.3" 922 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 923 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 924 | 925 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 926 | version "3.1.3" 927 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 928 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 929 | 930 | fast-glob@^3.2.11, fast-glob@^3.2.9: 931 | version "3.2.11" 932 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9" 933 | integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew== 934 | dependencies: 935 | "@nodelib/fs.stat" "^2.0.2" 936 | "@nodelib/fs.walk" "^1.2.3" 937 | glob-parent "^5.1.2" 938 | merge2 "^1.3.0" 939 | micromatch "^4.0.4" 940 | 941 | fast-json-stable-stringify@^2.0.0: 942 | version "2.1.0" 943 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 944 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 945 | 946 | fast-levenshtein@^2.0.6: 947 | version "2.0.6" 948 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 949 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 950 | 951 | fastq@^1.6.0: 952 | version "1.13.0" 953 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c" 954 | integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw== 955 | dependencies: 956 | reusify "^1.0.4" 957 | 958 | fault@^1.0.0: 959 | version "1.0.4" 960 | resolved "https://registry.yarnpkg.com/fault/-/fault-1.0.4.tgz#eafcfc0a6d214fc94601e170df29954a4f842f13" 961 | integrity sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA== 962 | dependencies: 963 | format "^0.2.0" 964 | 965 | file-entry-cache@^6.0.1: 966 | version "6.0.1" 967 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 968 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 969 | dependencies: 970 | flat-cache "^3.0.4" 971 | 972 | fill-range@^7.0.1: 973 | version "7.0.1" 974 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 975 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 976 | dependencies: 977 | to-regex-range "^5.0.1" 978 | 979 | find-up@^2.1.0: 980 | version "2.1.0" 981 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 982 | integrity sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ== 983 | dependencies: 984 | locate-path "^2.0.0" 985 | 986 | flat-cache@^3.0.4: 987 | version "3.0.4" 988 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" 989 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 990 | dependencies: 991 | flatted "^3.1.0" 992 | rimraf "^3.0.2" 993 | 994 | flatted@^3.1.0: 995 | version "3.2.5" 996 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.5.tgz#76c8584f4fc843db64702a6bd04ab7a8bd666da3" 997 | integrity sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg== 998 | 999 | format@^0.2.0: 1000 | version "0.2.2" 1001 | resolved "https://registry.yarnpkg.com/format/-/format-0.2.2.tgz#d6170107e9efdc4ed30c9dc39016df942b5cb58b" 1002 | integrity sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww== 1003 | 1004 | fraction.js@^4.2.0: 1005 | version "4.2.0" 1006 | resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.2.0.tgz#448e5109a313a3527f5a3ab2119ec4cf0e0e2950" 1007 | integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA== 1008 | 1009 | fs.realpath@^1.0.0: 1010 | version "1.0.0" 1011 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1012 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 1013 | 1014 | fsevents@~2.3.2: 1015 | version "2.3.2" 1016 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 1017 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 1018 | 1019 | function-bind@^1.1.1: 1020 | version "1.1.1" 1021 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1022 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1023 | 1024 | function.prototype.name@^1.1.5: 1025 | version "1.1.5" 1026 | resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" 1027 | integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== 1028 | dependencies: 1029 | call-bind "^1.0.2" 1030 | define-properties "^1.1.3" 1031 | es-abstract "^1.19.0" 1032 | functions-have-names "^1.2.2" 1033 | 1034 | functional-red-black-tree@^1.0.1: 1035 | version "1.0.1" 1036 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 1037 | integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g== 1038 | 1039 | functions-have-names@^1.2.2: 1040 | version "1.2.3" 1041 | resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" 1042 | integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== 1043 | 1044 | generic-pool@3.8.2: 1045 | version "3.8.2" 1046 | resolved "https://registry.yarnpkg.com/generic-pool/-/generic-pool-3.8.2.tgz#aab4f280adb522fdfbdc5e5b64d718d3683f04e9" 1047 | integrity sha512-nGToKy6p3PAbYQ7p1UlWl6vSPwfwU6TMSWK7TTu+WUY4ZjyZQGniGGt2oNVvyNSpyZYSB43zMXVLcBm08MTMkg== 1048 | 1049 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: 1050 | version "1.1.2" 1051 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.2.tgz#336975123e05ad0b7ba41f152ee4aadbea6cf598" 1052 | integrity sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA== 1053 | dependencies: 1054 | function-bind "^1.1.1" 1055 | has "^1.0.3" 1056 | has-symbols "^1.0.3" 1057 | 1058 | get-symbol-description@^1.0.0: 1059 | version "1.0.0" 1060 | resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" 1061 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== 1062 | dependencies: 1063 | call-bind "^1.0.2" 1064 | get-intrinsic "^1.1.1" 1065 | 1066 | glob-parent@^5.1.2, glob-parent@~5.1.2: 1067 | version "5.1.2" 1068 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 1069 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 1070 | dependencies: 1071 | is-glob "^4.0.1" 1072 | 1073 | glob-parent@^6.0.1, glob-parent@^6.0.2: 1074 | version "6.0.2" 1075 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 1076 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 1077 | dependencies: 1078 | is-glob "^4.0.3" 1079 | 1080 | glob@7.1.7: 1081 | version "7.1.7" 1082 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" 1083 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== 1084 | dependencies: 1085 | fs.realpath "^1.0.0" 1086 | inflight "^1.0.4" 1087 | inherits "2" 1088 | minimatch "^3.0.4" 1089 | once "^1.3.0" 1090 | path-is-absolute "^1.0.0" 1091 | 1092 | glob@^7.1.3, glob@^7.2.0: 1093 | version "7.2.3" 1094 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 1095 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 1096 | dependencies: 1097 | fs.realpath "^1.0.0" 1098 | inflight "^1.0.4" 1099 | inherits "2" 1100 | minimatch "^3.1.1" 1101 | once "^1.3.0" 1102 | path-is-absolute "^1.0.0" 1103 | 1104 | globals@^13.15.0: 1105 | version "13.15.0" 1106 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.15.0.tgz#38113218c907d2f7e98658af246cef8b77e90bac" 1107 | integrity sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog== 1108 | dependencies: 1109 | type-fest "^0.20.2" 1110 | 1111 | globby@^11.1.0: 1112 | version "11.1.0" 1113 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" 1114 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== 1115 | dependencies: 1116 | array-union "^2.1.0" 1117 | dir-glob "^3.0.1" 1118 | fast-glob "^3.2.9" 1119 | ignore "^5.2.0" 1120 | merge2 "^1.4.1" 1121 | slash "^3.0.0" 1122 | 1123 | has-bigints@^1.0.1, has-bigints@^1.0.2: 1124 | version "1.0.2" 1125 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" 1126 | integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== 1127 | 1128 | has-flag@^4.0.0: 1129 | version "4.0.0" 1130 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1131 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1132 | 1133 | has-property-descriptors@^1.0.0: 1134 | version "1.0.0" 1135 | resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" 1136 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== 1137 | dependencies: 1138 | get-intrinsic "^1.1.1" 1139 | 1140 | has-symbols@^1.0.1, has-symbols@^1.0.2, has-symbols@^1.0.3: 1141 | version "1.0.3" 1142 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" 1143 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 1144 | 1145 | has-tostringtag@^1.0.0: 1146 | version "1.0.0" 1147 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" 1148 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== 1149 | dependencies: 1150 | has-symbols "^1.0.2" 1151 | 1152 | has@^1.0.3: 1153 | version "1.0.3" 1154 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1155 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1156 | dependencies: 1157 | function-bind "^1.1.1" 1158 | 1159 | hast-util-parse-selector@^2.0.0: 1160 | version "2.2.5" 1161 | resolved "https://registry.yarnpkg.com/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz#d57c23f4da16ae3c63b3b6ca4616683313499c3a" 1162 | integrity sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ== 1163 | 1164 | hastscript@^6.0.0: 1165 | version "6.0.0" 1166 | resolved "https://registry.yarnpkg.com/hastscript/-/hastscript-6.0.0.tgz#e8768d7eac56c3fdeac8a92830d58e811e5bf640" 1167 | integrity sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w== 1168 | dependencies: 1169 | "@types/hast" "^2.0.0" 1170 | comma-separated-tokens "^1.0.0" 1171 | hast-util-parse-selector "^2.0.0" 1172 | property-information "^5.0.0" 1173 | space-separated-tokens "^1.0.0" 1174 | 1175 | highlight.js@^10.4.1, highlight.js@~10.7.0: 1176 | version "10.7.3" 1177 | resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-10.7.3.tgz#697272e3991356e40c3cac566a74eef681756531" 1178 | integrity sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A== 1179 | 1180 | ignore@^5.2.0: 1181 | version "5.2.0" 1182 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" 1183 | integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== 1184 | 1185 | immutable@^4.0.0: 1186 | version "4.1.0" 1187 | resolved "https://registry.yarnpkg.com/immutable/-/immutable-4.1.0.tgz#f795787f0db780183307b9eb2091fcac1f6fafef" 1188 | integrity sha512-oNkuqVTA8jqG1Q6c+UglTOD1xhC1BtjKI7XkCXRkZHrN5m18/XsnUp8Q89GkQO/z+0WjonSvl0FLhDYftp46nQ== 1189 | 1190 | import-fresh@^3.0.0, import-fresh@^3.2.1: 1191 | version "3.3.0" 1192 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 1193 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 1194 | dependencies: 1195 | parent-module "^1.0.0" 1196 | resolve-from "^4.0.0" 1197 | 1198 | imurmurhash@^0.1.4: 1199 | version "0.1.4" 1200 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1201 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 1202 | 1203 | inflight@^1.0.4: 1204 | version "1.0.6" 1205 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1206 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 1207 | dependencies: 1208 | once "^1.3.0" 1209 | wrappy "1" 1210 | 1211 | inherits@2: 1212 | version "2.0.4" 1213 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1214 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1215 | 1216 | internal-slot@^1.0.3: 1217 | version "1.0.3" 1218 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" 1219 | integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA== 1220 | dependencies: 1221 | get-intrinsic "^1.1.0" 1222 | has "^1.0.3" 1223 | side-channel "^1.0.4" 1224 | 1225 | is-alphabetical@^1.0.0: 1226 | version "1.0.4" 1227 | resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.4.tgz#9e7d6b94916be22153745d184c298cbf986a686d" 1228 | integrity sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg== 1229 | 1230 | is-alphanumerical@^1.0.0: 1231 | version "1.0.4" 1232 | resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz#7eb9a2431f855f6b1ef1a78e326df515696c4dbf" 1233 | integrity sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A== 1234 | dependencies: 1235 | is-alphabetical "^1.0.0" 1236 | is-decimal "^1.0.0" 1237 | 1238 | is-bigint@^1.0.1: 1239 | version "1.0.4" 1240 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" 1241 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== 1242 | dependencies: 1243 | has-bigints "^1.0.1" 1244 | 1245 | is-binary-path@~2.1.0: 1246 | version "2.1.0" 1247 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 1248 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 1249 | dependencies: 1250 | binary-extensions "^2.0.0" 1251 | 1252 | is-boolean-object@^1.1.0: 1253 | version "1.1.2" 1254 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" 1255 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== 1256 | dependencies: 1257 | call-bind "^1.0.2" 1258 | has-tostringtag "^1.0.0" 1259 | 1260 | is-callable@^1.1.4, is-callable@^1.2.4: 1261 | version "1.2.4" 1262 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945" 1263 | integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w== 1264 | 1265 | is-core-module@^2.8.1, is-core-module@^2.9.0: 1266 | version "2.9.0" 1267 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.9.0.tgz#e1c34429cd51c6dd9e09e0799e396e27b19a9c69" 1268 | integrity sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A== 1269 | dependencies: 1270 | has "^1.0.3" 1271 | 1272 | is-date-object@^1.0.1: 1273 | version "1.0.5" 1274 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" 1275 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== 1276 | dependencies: 1277 | has-tostringtag "^1.0.0" 1278 | 1279 | is-decimal@^1.0.0: 1280 | version "1.0.4" 1281 | resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.4.tgz#65a3a5958a1c5b63a706e1b333d7cd9f630d3fa5" 1282 | integrity sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw== 1283 | 1284 | is-extglob@^2.1.1: 1285 | version "2.1.1" 1286 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1287 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 1288 | 1289 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: 1290 | version "4.0.3" 1291 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 1292 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1293 | dependencies: 1294 | is-extglob "^2.1.1" 1295 | 1296 | is-hexadecimal@^1.0.0: 1297 | version "1.0.4" 1298 | resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz#cc35c97588da4bd49a8eedd6bc4082d44dcb23a7" 1299 | integrity sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw== 1300 | 1301 | is-negative-zero@^2.0.2: 1302 | version "2.0.2" 1303 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" 1304 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== 1305 | 1306 | is-number-object@^1.0.4: 1307 | version "1.0.7" 1308 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" 1309 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== 1310 | dependencies: 1311 | has-tostringtag "^1.0.0" 1312 | 1313 | is-number@^7.0.0: 1314 | version "7.0.0" 1315 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1316 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1317 | 1318 | is-regex@^1.1.4: 1319 | version "1.1.4" 1320 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" 1321 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== 1322 | dependencies: 1323 | call-bind "^1.0.2" 1324 | has-tostringtag "^1.0.0" 1325 | 1326 | is-shared-array-buffer@^1.0.2: 1327 | version "1.0.2" 1328 | resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" 1329 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== 1330 | dependencies: 1331 | call-bind "^1.0.2" 1332 | 1333 | is-string@^1.0.5, is-string@^1.0.7: 1334 | version "1.0.7" 1335 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" 1336 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== 1337 | dependencies: 1338 | has-tostringtag "^1.0.0" 1339 | 1340 | is-symbol@^1.0.2, is-symbol@^1.0.3: 1341 | version "1.0.4" 1342 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" 1343 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== 1344 | dependencies: 1345 | has-symbols "^1.0.2" 1346 | 1347 | is-weakref@^1.0.2: 1348 | version "1.0.2" 1349 | resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" 1350 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== 1351 | dependencies: 1352 | call-bind "^1.0.2" 1353 | 1354 | isexe@^2.0.0: 1355 | version "2.0.0" 1356 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1357 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 1358 | 1359 | "js-tokens@^3.0.0 || ^4.0.0": 1360 | version "4.0.0" 1361 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1362 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1363 | 1364 | js-yaml@^4.1.0: 1365 | version "4.1.0" 1366 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 1367 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 1368 | dependencies: 1369 | argparse "^2.0.1" 1370 | 1371 | json-schema-traverse@^0.4.1: 1372 | version "0.4.1" 1373 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1374 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1375 | 1376 | json-stable-stringify-without-jsonify@^1.0.1: 1377 | version "1.0.1" 1378 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1379 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 1380 | 1381 | json5@^1.0.1: 1382 | version "1.0.1" 1383 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" 1384 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== 1385 | dependencies: 1386 | minimist "^1.2.0" 1387 | 1388 | "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.1: 1389 | version "3.3.1" 1390 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.1.tgz#a3e0f1cb7e230954eab4dcbce9f6288a78f8ba44" 1391 | integrity sha512-pxrjmNpeRw5wwVeWyEAk7QJu2GnBO3uzPFmHCKJJFPKK2Cy0cWL23krGtLdnMmbIi6/FjlrQpPyfQI19ByPOhQ== 1392 | dependencies: 1393 | array-includes "^3.1.5" 1394 | object.assign "^4.1.2" 1395 | 1396 | language-subtag-registry@~0.3.2: 1397 | version "0.3.21" 1398 | resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz#04ac218bea46f04cb039084602c6da9e788dd45a" 1399 | integrity sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg== 1400 | 1401 | language-tags@^1.0.5: 1402 | version "1.0.5" 1403 | resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a" 1404 | integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ== 1405 | dependencies: 1406 | language-subtag-registry "~0.3.2" 1407 | 1408 | levn@^0.4.1: 1409 | version "0.4.1" 1410 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 1411 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 1412 | dependencies: 1413 | prelude-ls "^1.2.1" 1414 | type-check "~0.4.0" 1415 | 1416 | lilconfig@^2.0.5: 1417 | version "2.0.5" 1418 | resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.5.tgz#19e57fd06ccc3848fd1891655b5a447092225b25" 1419 | integrity sha512-xaYmXZtTHPAw5m+xLN8ab9C+3a8YmV3asNSPOATITbtwrfbwaLJj8h66H1WMIpALCkqsIzK3h7oQ+PdX+LQ9Eg== 1420 | 1421 | locate-path@^2.0.0: 1422 | version "2.0.0" 1423 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1424 | integrity sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA== 1425 | dependencies: 1426 | p-locate "^2.0.0" 1427 | path-exists "^3.0.0" 1428 | 1429 | lodash.merge@^4.6.2: 1430 | version "4.6.2" 1431 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 1432 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 1433 | 1434 | loose-envify@^1.1.0, loose-envify@^1.4.0: 1435 | version "1.4.0" 1436 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1437 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1438 | dependencies: 1439 | js-tokens "^3.0.0 || ^4.0.0" 1440 | 1441 | lowlight@^1.17.0: 1442 | version "1.20.0" 1443 | resolved "https://registry.yarnpkg.com/lowlight/-/lowlight-1.20.0.tgz#ddb197d33462ad0d93bf19d17b6c301aa3941888" 1444 | integrity sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw== 1445 | dependencies: 1446 | fault "^1.0.0" 1447 | highlight.js "~10.7.0" 1448 | 1449 | lru-cache@^6.0.0: 1450 | version "6.0.0" 1451 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1452 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1453 | dependencies: 1454 | yallist "^4.0.0" 1455 | 1456 | merge2@^1.3.0, merge2@^1.4.1: 1457 | version "1.4.1" 1458 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 1459 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 1460 | 1461 | micromatch@^4.0.4: 1462 | version "4.0.5" 1463 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" 1464 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== 1465 | dependencies: 1466 | braces "^3.0.2" 1467 | picomatch "^2.3.1" 1468 | 1469 | minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2: 1470 | version "3.1.2" 1471 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1472 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1473 | dependencies: 1474 | brace-expansion "^1.1.7" 1475 | 1476 | minimist@^1.2.0, minimist@^1.2.6: 1477 | version "1.2.6" 1478 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44" 1479 | integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q== 1480 | 1481 | ms@2.0.0: 1482 | version "2.0.0" 1483 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1484 | integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== 1485 | 1486 | ms@2.1.2: 1487 | version "2.1.2" 1488 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1489 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1490 | 1491 | ms@^2.1.1: 1492 | version "2.1.3" 1493 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 1494 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 1495 | 1496 | nanoid@^3.1.30, nanoid@^3.3.4: 1497 | version "3.3.4" 1498 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" 1499 | integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== 1500 | 1501 | natural-compare@^1.4.0: 1502 | version "1.4.0" 1503 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1504 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 1505 | 1506 | next@12.1.6: 1507 | version "12.1.6" 1508 | resolved "https://registry.yarnpkg.com/next/-/next-12.1.6.tgz#eb205e64af1998651f96f9df44556d47d8bbc533" 1509 | integrity sha512-cebwKxL3/DhNKfg9tPZDQmbRKjueqykHHbgaoG4VBRH3AHQJ2HO0dbKFiS1hPhe1/qgc2d/hFeadsbPicmLD+A== 1510 | dependencies: 1511 | "@next/env" "12.1.6" 1512 | caniuse-lite "^1.0.30001332" 1513 | postcss "8.4.5" 1514 | styled-jsx "5.0.2" 1515 | optionalDependencies: 1516 | "@next/swc-android-arm-eabi" "12.1.6" 1517 | "@next/swc-android-arm64" "12.1.6" 1518 | "@next/swc-darwin-arm64" "12.1.6" 1519 | "@next/swc-darwin-x64" "12.1.6" 1520 | "@next/swc-linux-arm-gnueabihf" "12.1.6" 1521 | "@next/swc-linux-arm64-gnu" "12.1.6" 1522 | "@next/swc-linux-arm64-musl" "12.1.6" 1523 | "@next/swc-linux-x64-gnu" "12.1.6" 1524 | "@next/swc-linux-x64-musl" "12.1.6" 1525 | "@next/swc-win32-arm64-msvc" "12.1.6" 1526 | "@next/swc-win32-ia32-msvc" "12.1.6" 1527 | "@next/swc-win32-x64-msvc" "12.1.6" 1528 | 1529 | node-releases@^2.0.5: 1530 | version "2.0.5" 1531 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.5.tgz#280ed5bc3eba0d96ce44897d8aee478bfb3d9666" 1532 | integrity sha512-U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q== 1533 | 1534 | normalize-path@^3.0.0, normalize-path@~3.0.0: 1535 | version "3.0.0" 1536 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1537 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1538 | 1539 | normalize-range@^0.1.2: 1540 | version "0.1.2" 1541 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 1542 | integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA== 1543 | 1544 | object-assign@^4.1.1: 1545 | version "4.1.1" 1546 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1547 | integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== 1548 | 1549 | object-hash@^3.0.0: 1550 | version "3.0.0" 1551 | resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9" 1552 | integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw== 1553 | 1554 | object-inspect@^1.12.0, object-inspect@^1.9.0: 1555 | version "1.12.2" 1556 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea" 1557 | integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ== 1558 | 1559 | object-keys@^1.1.1: 1560 | version "1.1.1" 1561 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1562 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1563 | 1564 | object.assign@^4.1.2: 1565 | version "4.1.2" 1566 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" 1567 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== 1568 | dependencies: 1569 | call-bind "^1.0.0" 1570 | define-properties "^1.1.3" 1571 | has-symbols "^1.0.1" 1572 | object-keys "^1.1.1" 1573 | 1574 | object.entries@^1.1.5: 1575 | version "1.1.5" 1576 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861" 1577 | integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g== 1578 | dependencies: 1579 | call-bind "^1.0.2" 1580 | define-properties "^1.1.3" 1581 | es-abstract "^1.19.1" 1582 | 1583 | object.fromentries@^2.0.5: 1584 | version "2.0.5" 1585 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.5.tgz#7b37b205109c21e741e605727fe8b0ad5fa08251" 1586 | integrity sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw== 1587 | dependencies: 1588 | call-bind "^1.0.2" 1589 | define-properties "^1.1.3" 1590 | es-abstract "^1.19.1" 1591 | 1592 | object.hasown@^1.1.1: 1593 | version "1.1.1" 1594 | resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.1.tgz#ad1eecc60d03f49460600430d97f23882cf592a3" 1595 | integrity sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A== 1596 | dependencies: 1597 | define-properties "^1.1.4" 1598 | es-abstract "^1.19.5" 1599 | 1600 | object.values@^1.1.5: 1601 | version "1.1.5" 1602 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac" 1603 | integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg== 1604 | dependencies: 1605 | call-bind "^1.0.2" 1606 | define-properties "^1.1.3" 1607 | es-abstract "^1.19.1" 1608 | 1609 | once@^1.3.0: 1610 | version "1.4.0" 1611 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1612 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 1613 | dependencies: 1614 | wrappy "1" 1615 | 1616 | optionator@^0.9.1: 1617 | version "0.9.1" 1618 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 1619 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 1620 | dependencies: 1621 | deep-is "^0.1.3" 1622 | fast-levenshtein "^2.0.6" 1623 | levn "^0.4.1" 1624 | prelude-ls "^1.2.1" 1625 | type-check "^0.4.0" 1626 | word-wrap "^1.2.3" 1627 | 1628 | p-limit@^1.1.0: 1629 | version "1.3.0" 1630 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 1631 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== 1632 | dependencies: 1633 | p-try "^1.0.0" 1634 | 1635 | p-locate@^2.0.0: 1636 | version "2.0.0" 1637 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1638 | integrity sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg== 1639 | dependencies: 1640 | p-limit "^1.1.0" 1641 | 1642 | p-try@^1.0.0: 1643 | version "1.0.0" 1644 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 1645 | integrity sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww== 1646 | 1647 | parent-module@^1.0.0: 1648 | version "1.0.1" 1649 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1650 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1651 | dependencies: 1652 | callsites "^3.0.0" 1653 | 1654 | parse-entities@^2.0.0: 1655 | version "2.0.0" 1656 | resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-2.0.0.tgz#53c6eb5b9314a1f4ec99fa0fdf7ce01ecda0cbe8" 1657 | integrity sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ== 1658 | dependencies: 1659 | character-entities "^1.0.0" 1660 | character-entities-legacy "^1.0.0" 1661 | character-reference-invalid "^1.0.0" 1662 | is-alphanumerical "^1.0.0" 1663 | is-decimal "^1.0.0" 1664 | is-hexadecimal "^1.0.0" 1665 | 1666 | path-exists@^3.0.0: 1667 | version "3.0.0" 1668 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1669 | integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== 1670 | 1671 | path-is-absolute@^1.0.0: 1672 | version "1.0.1" 1673 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1674 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 1675 | 1676 | path-key@^3.1.0: 1677 | version "3.1.1" 1678 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1679 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1680 | 1681 | path-parse@^1.0.7: 1682 | version "1.0.7" 1683 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1684 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1685 | 1686 | path-type@^4.0.0: 1687 | version "4.0.0" 1688 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 1689 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 1690 | 1691 | picocolors@^1.0.0: 1692 | version "1.0.0" 1693 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 1694 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 1695 | 1696 | picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: 1697 | version "2.3.1" 1698 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 1699 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1700 | 1701 | pify@^2.3.0: 1702 | version "2.3.0" 1703 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1704 | integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog== 1705 | 1706 | postcss-import@^14.1.0: 1707 | version "14.1.0" 1708 | resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-14.1.0.tgz#a7333ffe32f0b8795303ee9e40215dac922781f0" 1709 | integrity sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw== 1710 | dependencies: 1711 | postcss-value-parser "^4.0.0" 1712 | read-cache "^1.0.0" 1713 | resolve "^1.1.7" 1714 | 1715 | postcss-js@^4.0.0: 1716 | version "4.0.0" 1717 | resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.0.tgz#31db79889531b80dc7bc9b0ad283e418dce0ac00" 1718 | integrity sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ== 1719 | dependencies: 1720 | camelcase-css "^2.0.1" 1721 | 1722 | postcss-load-config@^3.1.4: 1723 | version "3.1.4" 1724 | resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-3.1.4.tgz#1ab2571faf84bb078877e1d07905eabe9ebda855" 1725 | integrity sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg== 1726 | dependencies: 1727 | lilconfig "^2.0.5" 1728 | yaml "^1.10.2" 1729 | 1730 | postcss-nested@5.0.6: 1731 | version "5.0.6" 1732 | resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-5.0.6.tgz#466343f7fc8d3d46af3e7dba3fcd47d052a945bc" 1733 | integrity sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA== 1734 | dependencies: 1735 | postcss-selector-parser "^6.0.6" 1736 | 1737 | postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.6: 1738 | version "6.0.10" 1739 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz#79b61e2c0d1bfc2602d549e11d0876256f8df88d" 1740 | integrity sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w== 1741 | dependencies: 1742 | cssesc "^3.0.0" 1743 | util-deprecate "^1.0.2" 1744 | 1745 | postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0: 1746 | version "4.2.0" 1747 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" 1748 | integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== 1749 | 1750 | postcss@8.4.5: 1751 | version "8.4.5" 1752 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.5.tgz#bae665764dfd4c6fcc24dc0fdf7e7aa00cc77f95" 1753 | integrity sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg== 1754 | dependencies: 1755 | nanoid "^3.1.30" 1756 | picocolors "^1.0.0" 1757 | source-map-js "^1.0.1" 1758 | 1759 | postcss@^8.4.14: 1760 | version "8.4.14" 1761 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.14.tgz#ee9274d5622b4858c1007a74d76e42e56fd21caf" 1762 | integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== 1763 | dependencies: 1764 | nanoid "^3.3.4" 1765 | picocolors "^1.0.0" 1766 | source-map-js "^1.0.2" 1767 | 1768 | prelude-ls@^1.2.1: 1769 | version "1.2.1" 1770 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 1771 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 1772 | 1773 | prismjs@^1.27.0: 1774 | version "1.28.0" 1775 | resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.28.0.tgz#0d8f561fa0f7cf6ebca901747828b149147044b6" 1776 | integrity sha512-8aaXdYvl1F7iC7Xm1spqSaY/OJBpYW3v+KJ+F17iYxvdc8sfjW194COK5wVhMZX45tGteiBQgdvD/nhxcRwylw== 1777 | 1778 | prismjs@~1.27.0: 1779 | version "1.27.0" 1780 | resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.27.0.tgz#bb6ee3138a0b438a3653dd4d6ce0cc6510a45057" 1781 | integrity sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA== 1782 | 1783 | prop-types@^15.8.1: 1784 | version "15.8.1" 1785 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" 1786 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== 1787 | dependencies: 1788 | loose-envify "^1.4.0" 1789 | object-assign "^4.1.1" 1790 | react-is "^16.13.1" 1791 | 1792 | property-information@^5.0.0: 1793 | version "5.6.0" 1794 | resolved "https://registry.yarnpkg.com/property-information/-/property-information-5.6.0.tgz#61675545fb23002f245c6540ec46077d4da3ed69" 1795 | integrity sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA== 1796 | dependencies: 1797 | xtend "^4.0.0" 1798 | 1799 | punycode@^2.1.0, punycode@^2.1.1: 1800 | version "2.1.1" 1801 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 1802 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 1803 | 1804 | queue-microtask@^1.2.2: 1805 | version "1.2.3" 1806 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 1807 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 1808 | 1809 | quick-lru@^5.1.1: 1810 | version "5.1.1" 1811 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932" 1812 | integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA== 1813 | 1814 | react-dom@18.2.0: 1815 | version "18.2.0" 1816 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" 1817 | integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== 1818 | dependencies: 1819 | loose-envify "^1.1.0" 1820 | scheduler "^0.23.0" 1821 | 1822 | react-is@^16.13.1: 1823 | version "16.13.1" 1824 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 1825 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 1826 | 1827 | react-syntax-highlighter@^15.5.0: 1828 | version "15.5.0" 1829 | resolved "https://registry.yarnpkg.com/react-syntax-highlighter/-/react-syntax-highlighter-15.5.0.tgz#4b3eccc2325fa2ec8eff1e2d6c18fa4a9e07ab20" 1830 | integrity sha512-+zq2myprEnQmH5yw6Gqc8lD55QHnpKaU8TOcFeC/Lg/MQSs8UknEA0JC4nTZGFAXC2J2Hyj/ijJ7NlabyPi2gg== 1831 | dependencies: 1832 | "@babel/runtime" "^7.3.1" 1833 | highlight.js "^10.4.1" 1834 | lowlight "^1.17.0" 1835 | prismjs "^1.27.0" 1836 | refractor "^3.6.0" 1837 | 1838 | react@18.2.0: 1839 | version "18.2.0" 1840 | resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" 1841 | integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== 1842 | dependencies: 1843 | loose-envify "^1.1.0" 1844 | 1845 | read-cache@^1.0.0: 1846 | version "1.0.0" 1847 | resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774" 1848 | integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA== 1849 | dependencies: 1850 | pify "^2.3.0" 1851 | 1852 | readdirp@~3.6.0: 1853 | version "3.6.0" 1854 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" 1855 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== 1856 | dependencies: 1857 | picomatch "^2.2.1" 1858 | 1859 | redis@^4.1.0: 1860 | version "4.1.0" 1861 | resolved "https://registry.yarnpkg.com/redis/-/redis-4.1.0.tgz#6e400e8edf219e39281afe95e66a3d5f7dcf7289" 1862 | integrity sha512-5hvJ8wbzpCCiuN1ges6tx2SAh2XXCY0ayresBmu40/SGusWHFW86TAlIPpbimMX2DFHOX7RN34G2XlPA1Z43zg== 1863 | dependencies: 1864 | "@redis/bloom" "1.0.2" 1865 | "@redis/client" "1.1.0" 1866 | "@redis/graph" "1.0.1" 1867 | "@redis/json" "1.0.3" 1868 | "@redis/search" "1.0.6" 1869 | "@redis/time-series" "1.0.3" 1870 | 1871 | refractor@^3.6.0: 1872 | version "3.6.0" 1873 | resolved "https://registry.yarnpkg.com/refractor/-/refractor-3.6.0.tgz#ac318f5a0715ead790fcfb0c71f4dd83d977935a" 1874 | integrity sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA== 1875 | dependencies: 1876 | hastscript "^6.0.0" 1877 | parse-entities "^2.0.0" 1878 | prismjs "~1.27.0" 1879 | 1880 | regenerator-runtime@^0.13.4: 1881 | version "0.13.9" 1882 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" 1883 | integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA== 1884 | 1885 | regexp.prototype.flags@^1.4.1, regexp.prototype.flags@^1.4.3: 1886 | version "1.4.3" 1887 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" 1888 | integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== 1889 | dependencies: 1890 | call-bind "^1.0.2" 1891 | define-properties "^1.1.3" 1892 | functions-have-names "^1.2.2" 1893 | 1894 | regexpp@^3.2.0: 1895 | version "3.2.0" 1896 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" 1897 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== 1898 | 1899 | resolve-from@^4.0.0: 1900 | version "4.0.0" 1901 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1902 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1903 | 1904 | resolve@^1.1.7, resolve@^1.20.0, resolve@^1.22.0: 1905 | version "1.22.1" 1906 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" 1907 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== 1908 | dependencies: 1909 | is-core-module "^2.9.0" 1910 | path-parse "^1.0.7" 1911 | supports-preserve-symlinks-flag "^1.0.0" 1912 | 1913 | resolve@^2.0.0-next.3: 1914 | version "2.0.0-next.4" 1915 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660" 1916 | integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== 1917 | dependencies: 1918 | is-core-module "^2.9.0" 1919 | path-parse "^1.0.7" 1920 | supports-preserve-symlinks-flag "^1.0.0" 1921 | 1922 | reusify@^1.0.4: 1923 | version "1.0.4" 1924 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 1925 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 1926 | 1927 | rimraf@^3.0.2: 1928 | version "3.0.2" 1929 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 1930 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 1931 | dependencies: 1932 | glob "^7.1.3" 1933 | 1934 | run-parallel@^1.1.9: 1935 | version "1.2.0" 1936 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 1937 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 1938 | dependencies: 1939 | queue-microtask "^1.2.2" 1940 | 1941 | sass@^1.53.0: 1942 | version "1.53.0" 1943 | resolved "https://registry.yarnpkg.com/sass/-/sass-1.53.0.tgz#eab73a7baac045cc57ddc1d1ff501ad2659952eb" 1944 | integrity sha512-zb/oMirbKhUgRQ0/GFz8TSAwRq2IlR29vOUJZOx0l8sV+CkHUfHa4u5nqrG+1VceZp7Jfj59SVW9ogdhTvJDcQ== 1945 | dependencies: 1946 | chokidar ">=3.0.0 <4.0.0" 1947 | immutable "^4.0.0" 1948 | source-map-js ">=0.6.2 <2.0.0" 1949 | 1950 | scheduler@^0.23.0: 1951 | version "0.23.0" 1952 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" 1953 | integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== 1954 | dependencies: 1955 | loose-envify "^1.1.0" 1956 | 1957 | semver@^6.3.0: 1958 | version "6.3.0" 1959 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1960 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 1961 | 1962 | semver@^7.3.7: 1963 | version "7.3.7" 1964 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f" 1965 | integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g== 1966 | dependencies: 1967 | lru-cache "^6.0.0" 1968 | 1969 | shebang-command@^2.0.0: 1970 | version "2.0.0" 1971 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1972 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1973 | dependencies: 1974 | shebang-regex "^3.0.0" 1975 | 1976 | shebang-regex@^3.0.0: 1977 | version "3.0.0" 1978 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1979 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1980 | 1981 | side-channel@^1.0.4: 1982 | version "1.0.4" 1983 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" 1984 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 1985 | dependencies: 1986 | call-bind "^1.0.0" 1987 | get-intrinsic "^1.0.2" 1988 | object-inspect "^1.9.0" 1989 | 1990 | simple-markdown@^0.7.3: 1991 | version "0.7.3" 1992 | resolved "https://registry.yarnpkg.com/simple-markdown/-/simple-markdown-0.7.3.tgz#e32150b2ec6f8287197d09869fd928747a9c5640" 1993 | integrity sha512-uGXIc13NGpqfPeFJIt/7SHHxd6HekEJYtsdoCM06mEBPL9fQH/pSD7LRM6PZ7CKchpSvxKL4tvwMamqAaNDAyg== 1994 | dependencies: 1995 | "@types/react" ">=16.0.0" 1996 | 1997 | slash@^3.0.0: 1998 | version "3.0.0" 1999 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 2000 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 2001 | 2002 | "source-map-js@>=0.6.2 <2.0.0", source-map-js@^1.0.1, source-map-js@^1.0.2: 2003 | version "1.0.2" 2004 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" 2005 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== 2006 | 2007 | space-separated-tokens@^1.0.0: 2008 | version "1.1.5" 2009 | resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz#85f32c3d10d9682007e917414ddc5c26d1aa6899" 2010 | integrity sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA== 2011 | 2012 | string.prototype.matchall@^4.0.7: 2013 | version "4.0.7" 2014 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz#8e6ecb0d8a1fb1fda470d81acecb2dba057a481d" 2015 | integrity sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg== 2016 | dependencies: 2017 | call-bind "^1.0.2" 2018 | define-properties "^1.1.3" 2019 | es-abstract "^1.19.1" 2020 | get-intrinsic "^1.1.1" 2021 | has-symbols "^1.0.3" 2022 | internal-slot "^1.0.3" 2023 | regexp.prototype.flags "^1.4.1" 2024 | side-channel "^1.0.4" 2025 | 2026 | string.prototype.trimend@^1.0.5: 2027 | version "1.0.5" 2028 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0" 2029 | integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== 2030 | dependencies: 2031 | call-bind "^1.0.2" 2032 | define-properties "^1.1.4" 2033 | es-abstract "^1.19.5" 2034 | 2035 | string.prototype.trimstart@^1.0.5: 2036 | version "1.0.5" 2037 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef" 2038 | integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== 2039 | dependencies: 2040 | call-bind "^1.0.2" 2041 | define-properties "^1.1.4" 2042 | es-abstract "^1.19.5" 2043 | 2044 | strip-ansi@^6.0.1: 2045 | version "6.0.1" 2046 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 2047 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 2048 | dependencies: 2049 | ansi-regex "^5.0.1" 2050 | 2051 | strip-bom@^3.0.0: 2052 | version "3.0.0" 2053 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2054 | integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== 2055 | 2056 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 2057 | version "3.1.1" 2058 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 2059 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 2060 | 2061 | styled-jsx@5.0.2: 2062 | version "5.0.2" 2063 | resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.0.2.tgz#ff230fd593b737e9e68b630a694d460425478729" 2064 | integrity sha512-LqPQrbBh3egD57NBcHET4qcgshPks+yblyhPlH2GY8oaDgKs8SK4C3dBh3oSJjgzJ3G5t1SYEZGHkP+QEpX9EQ== 2065 | 2066 | supports-color@^7.1.0: 2067 | version "7.2.0" 2068 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 2069 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 2070 | dependencies: 2071 | has-flag "^4.0.0" 2072 | 2073 | supports-preserve-symlinks-flag@^1.0.0: 2074 | version "1.0.0" 2075 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 2076 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 2077 | 2078 | tailwindcss@^3.1.4: 2079 | version "3.1.4" 2080 | resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.1.4.tgz#64b09059805505902139fa805d97046080bd90b9" 2081 | integrity sha512-NrxbFV4tYsga/hpWbRyUfIaBrNMXDxx5BsHgBS4v5tlyjf+sDsgBg5m9OxjrXIqAS/uR9kicxLKP+bEHI7BSeQ== 2082 | dependencies: 2083 | arg "^5.0.2" 2084 | chokidar "^3.5.3" 2085 | color-name "^1.1.4" 2086 | detective "^5.2.1" 2087 | didyoumean "^1.2.2" 2088 | dlv "^1.1.3" 2089 | fast-glob "^3.2.11" 2090 | glob-parent "^6.0.2" 2091 | is-glob "^4.0.3" 2092 | lilconfig "^2.0.5" 2093 | normalize-path "^3.0.0" 2094 | object-hash "^3.0.0" 2095 | picocolors "^1.0.0" 2096 | postcss "^8.4.14" 2097 | postcss-import "^14.1.0" 2098 | postcss-js "^4.0.0" 2099 | postcss-load-config "^3.1.4" 2100 | postcss-nested "5.0.6" 2101 | postcss-selector-parser "^6.0.10" 2102 | postcss-value-parser "^4.2.0" 2103 | quick-lru "^5.1.1" 2104 | resolve "^1.22.0" 2105 | 2106 | text-table@^0.2.0: 2107 | version "0.2.0" 2108 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2109 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== 2110 | 2111 | to-regex-range@^5.0.1: 2112 | version "5.0.1" 2113 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 2114 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 2115 | dependencies: 2116 | is-number "^7.0.0" 2117 | 2118 | tsconfig-paths@^3.14.1: 2119 | version "3.14.1" 2120 | resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a" 2121 | integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ== 2122 | dependencies: 2123 | "@types/json5" "^0.0.29" 2124 | json5 "^1.0.1" 2125 | minimist "^1.2.6" 2126 | strip-bom "^3.0.0" 2127 | 2128 | tslib@^1.8.1: 2129 | version "1.14.1" 2130 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" 2131 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 2132 | 2133 | tsutils@^3.21.0: 2134 | version "3.21.0" 2135 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" 2136 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== 2137 | dependencies: 2138 | tslib "^1.8.1" 2139 | 2140 | type-check@^0.4.0, type-check@~0.4.0: 2141 | version "0.4.0" 2142 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 2143 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 2144 | dependencies: 2145 | prelude-ls "^1.2.1" 2146 | 2147 | type-fest@^0.20.2: 2148 | version "0.20.2" 2149 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 2150 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 2151 | 2152 | typescript@4.7.4: 2153 | version "4.7.4" 2154 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.7.4.tgz#1a88596d1cf47d59507a1bcdfb5b9dfe4d488235" 2155 | integrity sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ== 2156 | 2157 | unbox-primitive@^1.0.2: 2158 | version "1.0.2" 2159 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" 2160 | integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== 2161 | dependencies: 2162 | call-bind "^1.0.2" 2163 | has-bigints "^1.0.2" 2164 | has-symbols "^1.0.3" 2165 | which-boxed-primitive "^1.0.2" 2166 | 2167 | update-browserslist-db@^1.0.0: 2168 | version "1.0.4" 2169 | resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.4.tgz#dbfc5a789caa26b1db8990796c2c8ebbce304824" 2170 | integrity sha512-jnmO2BEGUjsMOe/Fg9u0oczOe/ppIDZPebzccl1yDWGLFP16Pa1/RM5wEoKYPG2zstNcDuAStejyxsOuKINdGA== 2171 | dependencies: 2172 | escalade "^3.1.1" 2173 | picocolors "^1.0.0" 2174 | 2175 | uri-js@^4.2.2: 2176 | version "4.4.1" 2177 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 2178 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 2179 | dependencies: 2180 | punycode "^2.1.0" 2181 | 2182 | util-deprecate@^1.0.2: 2183 | version "1.0.2" 2184 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2185 | integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== 2186 | 2187 | v8-compile-cache@^2.0.3: 2188 | version "2.3.0" 2189 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" 2190 | integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== 2191 | 2192 | which-boxed-primitive@^1.0.2: 2193 | version "1.0.2" 2194 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" 2195 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 2196 | dependencies: 2197 | is-bigint "^1.0.1" 2198 | is-boolean-object "^1.1.0" 2199 | is-number-object "^1.0.4" 2200 | is-string "^1.0.5" 2201 | is-symbol "^1.0.3" 2202 | 2203 | which@^2.0.1: 2204 | version "2.0.2" 2205 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2206 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2207 | dependencies: 2208 | isexe "^2.0.0" 2209 | 2210 | word-wrap@^1.2.3: 2211 | version "1.2.3" 2212 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 2213 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 2214 | 2215 | wrappy@1: 2216 | version "1.0.2" 2217 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2218 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 2219 | 2220 | xtend@^4.0.0, xtend@^4.0.2: 2221 | version "4.0.2" 2222 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 2223 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 2224 | 2225 | yallist@4.0.0, yallist@^4.0.0: 2226 | version "4.0.0" 2227 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 2228 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 2229 | 2230 | yaml@^1.10.2: 2231 | version "1.10.2" 2232 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" 2233 | integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== 2234 | --------------------------------------------------------------------------------