diff --git a/components/ogcard/index.js b/components/ogcard/index.js new file mode 100644 index 0000000..90c3141 --- /dev/null +++ b/components/ogcard/index.js @@ -0,0 +1,19 @@ +const OGCard = (props) => { + const { daysTo, image } = props; + return ( +
+
+ +
+
+
+ {" "} + {daysTo} days +
+
until Christmas
+
+
+ ); +}; + +export default OGCard; diff --git a/next-server.js b/next-server.js new file mode 100644 index 0000000..e69de29 diff --git a/next.config.js b/next.config.js index 0d60710..6436e90 100644 --- a/next.config.js +++ b/next.config.js @@ -1,3 +1,6 @@ module.exports = { reactStrictMode: true, -} + images: { + minimumCacheTTL: 0, + }, +}; diff --git a/package.json b/package.json index a0f0af4..72a68ac 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,12 @@ "lint": "next lint" }, "dependencies": { + "canvas": "^2.9.0", + "canvaskit-wasm": "^0.33.0", + "express": "^4.17.3", + "fs": "^0.0.1-security", "next": "12.1.0", + "path": "^0.12.7", "react": "17.0.2", "react-dom": "17.0.2" }, diff --git a/pages/_app.js b/pages/_app.js index 1e1cec9..273a162 100644 --- a/pages/_app.js +++ b/pages/_app.js @@ -1,7 +1,8 @@ -import '../styles/globals.css' +import "../styles/globals.css"; +import "../styles/index.css"; function MyApp({ Component, pageProps }) { - return + return ; } -export default MyApp +export default MyApp; diff --git a/pages/api/days/[days].js b/pages/api/days/[days].js new file mode 100644 index 0000000..c3b8319 --- /dev/null +++ b/pages/api/days/[days].js @@ -0,0 +1,86 @@ +import Canvas, { registerFont } from "canvas"; +import fs from "fs"; + +const ApiResponse = async (req, res) => { + //const { color } = req.query; + const imageRef = req.query; + const canvas = Canvas.createCanvas(940, 788); + const ctx = canvas.getContext("2d"); + + const rndInt = Math.floor(Math.random() * 367) + 1; + + console.log(rndInt); + + const background = await Canvas.loadImage( + "public/images/backgrounds/background-" + rndInt + ".jpg" + ); + + registerFont("public/fonts/Dancing_Script/static/DancingScript-Bold.ttf", { + family: "Dancing", + }); + + registerFont("public/fonts/Amatic_SC/AmaticSC-Bold.ttf", { + family: "AmaticSC", + }); + + ctx.drawImage(background, 0, 0, canvas.width, canvas.height); + + let x = canvas.width / 2 + 80; + let y = canvas.height - canvas.height / 2.5; + let imageStr = imageRef.days; + + //console.log(imageStr, x, y); + ctx.lineWidth = 25; + + ctx.strokeStyle = "#cc3333"; + ctx.fillStyle = "white"; + + // ctx.lineJoin = "round"; + ctx.font = "245px Dancing"; + + imageStr.length == 3 + ? ctx.strokeText(imageStr, 120, 375) + : imageStr.length == 2 + ? ctx.strokeText(imageStr, 220, 375) + : ctx.strokeText(imageStr, 320, 375); + + imageStr.length == 3 + ? ctx.fillText(imageStr, 120, 375) + : imageStr.length == 2 + ? ctx.fillText(imageStr, 220, 375) + : ctx.fillText(imageStr, 320, 375); + + ctx.lineWidth = 10; + ctx.strokeStyle = "white"; + ctx.fillStyle = "#cc3333"; + //ctx.textAlign = "left"; + ctx.font = "147px Dancing Script"; + ctx.strokeText("days", x, 375); + ctx.fillText("days", x, 375); + + ctx.strokeStyle = "white"; + ctx.fillStyle = "#cc3333"; + //ctx.textAlign = "left"; + ctx.font = "140px Dancing Script"; + ctx.strokeText("until Christmas", 100, 560); + ctx.fillText("until Christmas", 100, 560); + + ctx.strokeStyle = "white"; + ctx.fillStyle = "white"; + ctx.textAlign = "left"; + ctx.font = "50px AmaticSC"; + //ctx.strokeText("WWW.GETAHEADCHRISTMAS.CO.UK", x, y); + ctx.fillText("WWW.GETAHEADCHRISTMAS.CO.UK", 40, 740); + + console.log(ctx); + + const png = canvas.toBuffer("image/png"); + + res.setHeader( + "content-disposition", + "attachment; filename=" + imageRef.days + "-days.png" + ); + res.status(200).send(png); +}; + +export default ApiResponse; diff --git a/pages/api/sleeps/[days].js b/pages/api/sleeps/[days].js new file mode 100644 index 0000000..1b55352 --- /dev/null +++ b/pages/api/sleeps/[days].js @@ -0,0 +1,88 @@ +import Canvas, { registerFont } from "canvas"; +import fs from "fs"; + +const ApiResponse = async (req, res) => { + //const { color } = req.query; + const imageRef = req.query; + const canvas = Canvas.createCanvas(940, 788); + const ctx = canvas.getContext("2d"); + + const rndInt = Math.floor(Math.random() * 367) + 1; + + console.log(rndInt); + + const background = await Canvas.loadImage( + "public/images/backgrounds/background-" + rndInt + ".jpg" + ); + + registerFont("public/fonts/Dancing_Script/static/DancingScript-Bold.ttf", { + family: "Dancing", + }); + + registerFont("public/fonts/Amatic_SC/AmaticSC-Bold.ttf", { + family: "AmaticSC", + }); + + ctx.drawImage(background, 0, 0, canvas.width, canvas.height); + + let x = canvas.width / 2 + 80; + let y = canvas.height - canvas.height / 2.5; + let imageStr = imageRef.days; + + //console.log(imageStr, x, y); + ctx.lineWidth = 25; + + ctx.strokeStyle = "#cc3333"; + ctx.fillStyle = "white"; + + // ctx.lineJoin = "round"; + ctx.font = "245px Dancing"; + + imageStr.length == 3 + ? ctx.strokeText(imageStr, 120, 375) + : imageStr.length == 2 + ? ctx.strokeText(imageStr, 220, 375) + : ctx.strokeText(imageStr, 320, 375); + + imageStr.length == 3 + ? ctx.fillText(imageStr, 120, 375) + : imageStr.length == 2 + ? ctx.fillText(imageStr, 220, 375) + : ctx.fillText(imageStr, 320, 375); + + ctx.lineWidth = 10; + ctx.strokeStyle = "white"; + ctx.fillStyle = "#cc3333"; + //ctx.textAlign = "left"; + ctx.font = "147px Dancing Script"; + ctx.strokeText("sleeps", x, 375); + ctx.fillText("sleeps", x, 375); + + ctx.strokeStyle = "white"; + ctx.fillStyle = "#cc3333"; + //ctx.textAlign = "left"; + ctx.font = "140px Dancing Script"; + ctx.strokeText("until Christmas", 100, 560); + ctx.fillText("until Christmas", 100, 560); + + ctx.strokeStyle = "white"; + ctx.fillStyle = "white"; + ctx.textAlign = "left"; + ctx.font = "50px AmaticSC"; + //ctx.strokeText("WWW.GETAHEADCHRISTMAS.CO.UK", x, y); + ctx.fillText("WWW.GETAHEADCHRISTMAS.CO.UK", 40, 740); + + console.log(ctx); + + const png = canvas.toBuffer("image/png"); + + res.setHeader( + "Cache-Control", + "s-maxage=0", + "content-disposition", + "attachment; filename=" + imageRef.days + "-sleeps.png" + ); + res.status(200).send(png); +}; + +export default ApiResponse; diff --git a/pages/api/weeks/[weeks].js b/pages/api/weeks/[weeks].js new file mode 100644 index 0000000..0b3ef57 --- /dev/null +++ b/pages/api/weeks/[weeks].js @@ -0,0 +1,78 @@ +import Canvas, { registerFont } from "canvas"; +import fs from "fs"; + +const ApiResponse = async (req, res) => { + //const { color } = req.query; + const imageRef = req.query; + const canvas = Canvas.createCanvas(940, 788); + const ctx = canvas.getContext("2d"); + + const rndInt = Math.floor(Math.random() * 367) + 1; + + console.log(rndInt); + + const background = await Canvas.loadImage( + "public/images/backgrounds/background-" + rndInt + ".jpg" + ); + + registerFont("public/fonts/Dancing_Script/static/DancingScript-Bold.ttf", { + family: "Dancing", + }); + + registerFont("public/fonts/Amatic_SC/AmaticSC-Bold.ttf", { + family: "AmaticSC", + }); + + ctx.drawImage(background, 0, 0, canvas.width, canvas.height); + + let x = canvas.width / 2 + 80; + let y = canvas.height - canvas.height / 2.5; + let imageStr = imageRef.weeks; + + console.log(imageStr, x, y); + ctx.lineWidth = 25; + + ctx.strokeStyle = "#cc3333"; + ctx.fillStyle = "white"; + + // ctx.lineJoin = "round"; + ctx.font = "245px Dancing"; + + ctx.strokeText(imageStr, 40, 375); + + ctx.fillText(imageStr, 40, 375); + + ctx.lineWidth = 10; + ctx.strokeStyle = "white"; + ctx.fillStyle = "#cc3333"; + //ctx.textAlign = "left"; + ctx.font = "80px Dancing Script"; + ctx.strokeText("weeks today is", 40, 500); + ctx.fillText("weeks today is", 40, 500); + + ctx.strokeStyle = "white"; + ctx.fillStyle = "#cc3333"; + //ctx.textAlign = "left"; + ctx.font = "80px Dancing Script"; + ctx.strokeText("Christmas Day", 40, 610); + ctx.fillText("Christmas Day", 40, 610); + + ctx.strokeStyle = "white"; + ctx.fillStyle = "white"; + ctx.textAlign = "left"; + ctx.font = "50px AmaticSC"; + //ctx.strokeText("WWW.GETAHEADCHRISTMAS.CO.UK", x, y); + ctx.fillText("WWW.GETAHEADCHRISTMAS.CO.UK", 40, 740); + + console.log(ctx); + + const png = canvas.toBuffer("image/png"); + + res.setHeader( + "content-disposition", + "attachment; filename=" + imageRef.weeks + "-weeks.png" + ); + res.status(200).send(png); +}; + +export default ApiResponse; diff --git a/pages/days.js b/pages/days.js new file mode 100644 index 0000000..b8bf98a --- /dev/null +++ b/pages/days.js @@ -0,0 +1,22 @@ +// 404.js + +import Image from "next/image"; +import { useRouter } from "next/router"; + +const FourOhFour = (props) => { + const router = useRouter(); + + let numbDays = router.query.n; + return ( +
+ days +
+ ); +}; + +export default FourOhFour; diff --git a/pages/index.js b/pages/index.js deleted file mode 100644 index 08145bb..0000000 --- a/pages/index.js +++ /dev/null @@ -1,69 +0,0 @@ -import Head from 'next/head' -import Image from 'next/image' -import styles from '../styles/Home.module.css' - -export default function Home() { - return ( -
- - Create Next App - - - - -
-

- Welcome to Next.js! -

- -

- Get started by editing{' '} - pages/index.js -

- -
- -

Documentation →

-

Find in-depth information about Next.js features and API.

-
- - -

Learn →

-

Learn about Next.js in an interactive course with quizzes!

-
- - -

Examples →

-

Discover and deploy boilerplate example Next.js projects.

-
- - -

Deploy →

-

- Instantly deploy your Next.js site to a public URL with Vercel. -

-
-
-
- - -
- ) -} diff --git a/pages/sleeps.js b/pages/sleeps.js new file mode 100644 index 0000000..5b4ecc0 --- /dev/null +++ b/pages/sleeps.js @@ -0,0 +1,22 @@ +// 404.js + +import Image from "next/image"; +import { useRouter } from "next/router"; + +const FourOhFour = (props) => { + const router = useRouter(); + + let numbSleeps = router.query.n; + return ( +
+ sleeps +
+ ); +}; + +export default FourOhFour; diff --git a/pages/weeks.js b/pages/weeks.js new file mode 100644 index 0000000..ef3324b --- /dev/null +++ b/pages/weeks.js @@ -0,0 +1,22 @@ +// 404.js + +import Image from "next/image"; +import { useRouter } from "next/router"; + +const FourOhFour = (props) => { + const router = useRouter(); + + let numbWeeks = router.query.n; + return ( +
+ weeks +
+ ); +}; + +export default FourOhFour; diff --git a/public/fonts/Amatic_SC/AmaticSC-Bold.ttf b/public/fonts/Amatic_SC/AmaticSC-Bold.ttf new file mode 100644 index 0000000..63cd7ae Binary files /dev/null and b/public/fonts/Amatic_SC/AmaticSC-Bold.ttf differ diff --git a/public/fonts/Amatic_SC/AmaticSC-Regular.ttf b/public/fonts/Amatic_SC/AmaticSC-Regular.ttf new file mode 100644 index 0000000..b860368 Binary files /dev/null and b/public/fonts/Amatic_SC/AmaticSC-Regular.ttf differ diff --git a/public/fonts/Amatic_SC/OFL.txt b/public/fonts/Amatic_SC/OFL.txt new file mode 100644 index 0000000..d6d6630 --- /dev/null +++ b/public/fonts/Amatic_SC/OFL.txt @@ -0,0 +1,93 @@ +Copyright 2015 The Amatic SC Project Authors (https://github.com/googlefonts/AmaticSC) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/public/fonts/Dancing_Script/DancingScript-VariableFont_wght.ttf b/public/fonts/Dancing_Script/DancingScript-VariableFont_wght.ttf new file mode 100644 index 0000000..5ddb3b7 Binary files /dev/null and b/public/fonts/Dancing_Script/DancingScript-VariableFont_wght.ttf differ diff --git a/public/fonts/Dancing_Script/OFL.txt b/public/fonts/Dancing_Script/OFL.txt new file mode 100644 index 0000000..769dd22 --- /dev/null +++ b/public/fonts/Dancing_Script/OFL.txt @@ -0,0 +1,93 @@ +Copyright 2016 The Dancing Script Project Authors (https://github.com/googlefonts/DancingScript), with Reserved Font Name 'Dancing Script'. + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/public/fonts/Dancing_Script/README.txt b/public/fonts/Dancing_Script/README.txt new file mode 100644 index 0000000..3f02d46 --- /dev/null +++ b/public/fonts/Dancing_Script/README.txt @@ -0,0 +1,66 @@ +Dancing Script Variable Font +============================ + +This download contains Dancing Script as both a variable font and static fonts. + +Dancing Script is a variable font with this axis: + wght + +This means all the styles are contained in a single file: + Dancing_Script/DancingScript-VariableFont_wght.ttf + +If your app fully supports variable fonts, you can now pick intermediate styles +that aren’t available as static fonts. Not all apps support variable fonts, and +in those cases you can use the static font files for Dancing Script: + Dancing_Script/static/DancingScript-Regular.ttf + Dancing_Script/static/DancingScript-Medium.ttf + Dancing_Script/static/DancingScript-SemiBold.ttf + Dancing_Script/static/DancingScript-Bold.ttf + +Get started +----------- + +1. Install the font files you want to use + +2. Use your app's font picker to view the font family and all the +available styles + +Learn more about variable fonts +------------------------------- + + https://developers.google.com/web/fundamentals/design-and-ux/typography/variable-fonts + https://variablefonts.typenetwork.com + https://medium.com/variable-fonts + +In desktop apps + + https://theblog.adobe.com/can-variable-fonts-illustrator-cc + https://helpx.adobe.com/nz/photoshop/using/fonts.html#variable_fonts + +Online + + https://developers.google.com/fonts/docs/getting_started + https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Fonts/Variable_Fonts_Guide + https://developer.microsoft.com/en-us/microsoft-edge/testdrive/demos/variable-fonts + +Installing fonts + + MacOS: https://support.apple.com/en-us/HT201749 + Linux: https://www.google.com/search?q=how+to+install+a+font+on+gnu%2Blinux + Windows: https://support.microsoft.com/en-us/help/314960/how-to-install-or-remove-a-font-in-windows + +Android Apps + + https://developers.google.com/fonts/docs/android + https://developer.android.com/guide/topics/ui/look-and-feel/downloadable-fonts + +License +------- +Please read the full license text (OFL.txt) to understand the permissions, +restrictions and requirements for usage, redistribution, and modification. + +You can use them freely in your products & projects - print or digital, +commercial or otherwise. + +This isn't legal advice, please consider consulting a lawyer and see the full +license for all details. diff --git a/public/fonts/Dancing_Script/static/DancingScript-Bold.ttf b/public/fonts/Dancing_Script/static/DancingScript-Bold.ttf new file mode 100644 index 0000000..49d8f3f Binary files /dev/null and b/public/fonts/Dancing_Script/static/DancingScript-Bold.ttf differ diff --git a/public/fonts/Dancing_Script/static/DancingScript-Medium.ttf b/public/fonts/Dancing_Script/static/DancingScript-Medium.ttf new file mode 100644 index 0000000..fdfd690 Binary files /dev/null and b/public/fonts/Dancing_Script/static/DancingScript-Medium.ttf differ diff --git a/public/fonts/Dancing_Script/static/DancingScript-Regular.ttf b/public/fonts/Dancing_Script/static/DancingScript-Regular.ttf new file mode 100644 index 0000000..b215107 Binary files /dev/null and b/public/fonts/Dancing_Script/static/DancingScript-Regular.ttf differ diff --git a/public/fonts/Dancing_Script/static/DancingScript-SemiBold.ttf b/public/fonts/Dancing_Script/static/DancingScript-SemiBold.ttf new file mode 100644 index 0000000..ce588e1 Binary files /dev/null and b/public/fonts/Dancing_Script/static/DancingScript-SemiBold.ttf differ diff --git a/public/fonts/Mountains_of_Christmas/LICENSE.txt b/public/fonts/Mountains_of_Christmas/LICENSE.txt new file mode 100644 index 0000000..75b5248 --- /dev/null +++ b/public/fonts/Mountains_of_Christmas/LICENSE.txt @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/public/fonts/Mountains_of_Christmas/MountainsofChristmas-Bold.ttf b/public/fonts/Mountains_of_Christmas/MountainsofChristmas-Bold.ttf new file mode 100644 index 0000000..1496965 Binary files /dev/null and b/public/fonts/Mountains_of_Christmas/MountainsofChristmas-Bold.ttf differ diff --git a/public/fonts/Mountains_of_Christmas/MountainsofChristmas-Regular.ttf b/public/fonts/Mountains_of_Christmas/MountainsofChristmas-Regular.ttf new file mode 100644 index 0000000..645fdcb Binary files /dev/null and b/public/fonts/Mountains_of_Christmas/MountainsofChristmas-Regular.ttf differ diff --git a/public/images/backgrounds/background-1.jpg b/public/images/backgrounds/background-1.jpg new file mode 100644 index 0000000..df26890 Binary files /dev/null and b/public/images/backgrounds/background-1.jpg differ diff --git a/public/images/backgrounds/background-10.jpg b/public/images/backgrounds/background-10.jpg new file mode 100644 index 0000000..e365746 Binary files /dev/null and b/public/images/backgrounds/background-10.jpg differ diff --git a/public/images/backgrounds/background-100.jpg b/public/images/backgrounds/background-100.jpg new file mode 100644 index 0000000..8732f71 Binary files /dev/null and b/public/images/backgrounds/background-100.jpg differ diff --git a/public/images/backgrounds/background-101.jpg b/public/images/backgrounds/background-101.jpg new file mode 100644 index 0000000..d69c11a Binary files /dev/null and b/public/images/backgrounds/background-101.jpg differ diff --git a/public/images/backgrounds/background-102.jpg b/public/images/backgrounds/background-102.jpg new file mode 100644 index 0000000..321c701 Binary files /dev/null and b/public/images/backgrounds/background-102.jpg differ diff --git a/public/images/backgrounds/background-103.jpg b/public/images/backgrounds/background-103.jpg new file mode 100644 index 0000000..eee8ccf Binary files /dev/null and b/public/images/backgrounds/background-103.jpg differ diff --git a/public/images/backgrounds/background-104.jpg b/public/images/backgrounds/background-104.jpg new file mode 100644 index 0000000..8853fed Binary files /dev/null and b/public/images/backgrounds/background-104.jpg differ diff --git a/public/images/backgrounds/background-105.jpg b/public/images/backgrounds/background-105.jpg new file mode 100644 index 0000000..f38e607 Binary files /dev/null and b/public/images/backgrounds/background-105.jpg differ diff --git a/public/images/backgrounds/background-106.jpg b/public/images/backgrounds/background-106.jpg new file mode 100644 index 0000000..37ac2a5 Binary files /dev/null and b/public/images/backgrounds/background-106.jpg differ diff --git a/public/images/backgrounds/background-107.jpg b/public/images/backgrounds/background-107.jpg new file mode 100644 index 0000000..b95dfcf Binary files /dev/null and b/public/images/backgrounds/background-107.jpg differ diff --git a/public/images/backgrounds/background-108.jpg b/public/images/backgrounds/background-108.jpg new file mode 100644 index 0000000..76e9ecf Binary files /dev/null and b/public/images/backgrounds/background-108.jpg differ diff --git a/public/images/backgrounds/background-109.jpg b/public/images/backgrounds/background-109.jpg new file mode 100644 index 0000000..eff5b47 Binary files /dev/null and b/public/images/backgrounds/background-109.jpg differ diff --git a/public/images/backgrounds/background-11.jpg b/public/images/backgrounds/background-11.jpg new file mode 100644 index 0000000..f0028e1 Binary files /dev/null and b/public/images/backgrounds/background-11.jpg differ diff --git a/public/images/backgrounds/background-110.jpg b/public/images/backgrounds/background-110.jpg new file mode 100644 index 0000000..d41c7f0 Binary files /dev/null and b/public/images/backgrounds/background-110.jpg differ diff --git a/public/images/backgrounds/background-111.jpg b/public/images/backgrounds/background-111.jpg new file mode 100644 index 0000000..275472f Binary files /dev/null and b/public/images/backgrounds/background-111.jpg differ diff --git a/public/images/backgrounds/background-112.jpg b/public/images/backgrounds/background-112.jpg new file mode 100644 index 0000000..1066e67 Binary files /dev/null and b/public/images/backgrounds/background-112.jpg differ diff --git a/public/images/backgrounds/background-113.jpg b/public/images/backgrounds/background-113.jpg new file mode 100644 index 0000000..23a7c95 Binary files /dev/null and b/public/images/backgrounds/background-113.jpg differ diff --git a/public/images/backgrounds/background-114.jpg b/public/images/backgrounds/background-114.jpg new file mode 100644 index 0000000..bb0b75d Binary files /dev/null and b/public/images/backgrounds/background-114.jpg differ diff --git a/public/images/backgrounds/background-115.jpg b/public/images/backgrounds/background-115.jpg new file mode 100644 index 0000000..0f24398 Binary files /dev/null and b/public/images/backgrounds/background-115.jpg differ diff --git a/public/images/backgrounds/background-116.jpg b/public/images/backgrounds/background-116.jpg new file mode 100644 index 0000000..39aa075 Binary files /dev/null and b/public/images/backgrounds/background-116.jpg differ diff --git a/public/images/backgrounds/background-117.jpg b/public/images/backgrounds/background-117.jpg new file mode 100644 index 0000000..1ceb361 Binary files /dev/null and b/public/images/backgrounds/background-117.jpg differ diff --git a/public/images/backgrounds/background-118.jpg b/public/images/backgrounds/background-118.jpg new file mode 100644 index 0000000..0d8601c Binary files /dev/null and b/public/images/backgrounds/background-118.jpg differ diff --git a/public/images/backgrounds/background-119.jpg b/public/images/backgrounds/background-119.jpg new file mode 100644 index 0000000..e4f058c Binary files /dev/null and b/public/images/backgrounds/background-119.jpg differ diff --git a/public/images/backgrounds/background-12.jpg b/public/images/backgrounds/background-12.jpg new file mode 100644 index 0000000..8ccc672 Binary files /dev/null and b/public/images/backgrounds/background-12.jpg differ diff --git a/public/images/backgrounds/background-120.jpg b/public/images/backgrounds/background-120.jpg new file mode 100644 index 0000000..3a70cdc Binary files /dev/null and b/public/images/backgrounds/background-120.jpg differ diff --git a/public/images/backgrounds/background-121.jpg b/public/images/backgrounds/background-121.jpg new file mode 100644 index 0000000..915f4be Binary files /dev/null and b/public/images/backgrounds/background-121.jpg differ diff --git a/public/images/backgrounds/background-122.jpg b/public/images/backgrounds/background-122.jpg new file mode 100644 index 0000000..17ba6a9 Binary files /dev/null and b/public/images/backgrounds/background-122.jpg differ diff --git a/public/images/backgrounds/background-123.jpg b/public/images/backgrounds/background-123.jpg new file mode 100644 index 0000000..cb6fdaf Binary files /dev/null and b/public/images/backgrounds/background-123.jpg differ diff --git a/public/images/backgrounds/background-124.jpg b/public/images/backgrounds/background-124.jpg new file mode 100644 index 0000000..0b92ad4 Binary files /dev/null and b/public/images/backgrounds/background-124.jpg differ diff --git a/public/images/backgrounds/background-125.jpg b/public/images/backgrounds/background-125.jpg new file mode 100644 index 0000000..2d06f53 Binary files /dev/null and b/public/images/backgrounds/background-125.jpg differ diff --git a/public/images/backgrounds/background-126.jpg b/public/images/backgrounds/background-126.jpg new file mode 100644 index 0000000..d6ecda0 Binary files /dev/null and b/public/images/backgrounds/background-126.jpg differ diff --git a/public/images/backgrounds/background-127.jpg b/public/images/backgrounds/background-127.jpg new file mode 100644 index 0000000..fafefd4 Binary files /dev/null and b/public/images/backgrounds/background-127.jpg differ diff --git a/public/images/backgrounds/background-128.jpg b/public/images/backgrounds/background-128.jpg new file mode 100644 index 0000000..b95e3cd Binary files /dev/null and b/public/images/backgrounds/background-128.jpg differ diff --git a/public/images/backgrounds/background-129.jpg b/public/images/backgrounds/background-129.jpg new file mode 100644 index 0000000..b880f0b Binary files /dev/null and b/public/images/backgrounds/background-129.jpg differ diff --git a/public/images/backgrounds/background-13.jpg b/public/images/backgrounds/background-13.jpg new file mode 100644 index 0000000..51bde91 Binary files /dev/null and b/public/images/backgrounds/background-13.jpg differ diff --git a/public/images/backgrounds/background-130.jpg b/public/images/backgrounds/background-130.jpg new file mode 100644 index 0000000..b47646a Binary files /dev/null and b/public/images/backgrounds/background-130.jpg differ diff --git a/public/images/backgrounds/background-131.jpg b/public/images/backgrounds/background-131.jpg new file mode 100644 index 0000000..b5e4006 Binary files /dev/null and b/public/images/backgrounds/background-131.jpg differ diff --git a/public/images/backgrounds/background-132.jpg b/public/images/backgrounds/background-132.jpg new file mode 100644 index 0000000..74bfe32 Binary files /dev/null and b/public/images/backgrounds/background-132.jpg differ diff --git a/public/images/backgrounds/background-133.jpg b/public/images/backgrounds/background-133.jpg new file mode 100644 index 0000000..35195ca Binary files /dev/null and b/public/images/backgrounds/background-133.jpg differ diff --git a/public/images/backgrounds/background-134.jpg b/public/images/backgrounds/background-134.jpg new file mode 100644 index 0000000..5389a38 Binary files /dev/null and b/public/images/backgrounds/background-134.jpg differ diff --git a/public/images/backgrounds/background-135.jpg b/public/images/backgrounds/background-135.jpg new file mode 100644 index 0000000..663d2c3 Binary files /dev/null and b/public/images/backgrounds/background-135.jpg differ diff --git a/public/images/backgrounds/background-136.jpg b/public/images/backgrounds/background-136.jpg new file mode 100644 index 0000000..9ee2716 Binary files /dev/null and b/public/images/backgrounds/background-136.jpg differ diff --git a/public/images/backgrounds/background-137.jpg b/public/images/backgrounds/background-137.jpg new file mode 100644 index 0000000..b758eb2 Binary files /dev/null and b/public/images/backgrounds/background-137.jpg differ diff --git a/public/images/backgrounds/background-138.jpg b/public/images/backgrounds/background-138.jpg new file mode 100644 index 0000000..67d295b Binary files /dev/null and b/public/images/backgrounds/background-138.jpg differ diff --git a/public/images/backgrounds/background-139.jpg b/public/images/backgrounds/background-139.jpg new file mode 100644 index 0000000..c924c50 Binary files /dev/null and b/public/images/backgrounds/background-139.jpg differ diff --git a/public/images/backgrounds/background-14.jpg b/public/images/backgrounds/background-14.jpg new file mode 100644 index 0000000..cb5eb80 Binary files /dev/null and b/public/images/backgrounds/background-14.jpg differ diff --git a/public/images/backgrounds/background-140.jpg b/public/images/backgrounds/background-140.jpg new file mode 100644 index 0000000..d3dfa8f Binary files /dev/null and b/public/images/backgrounds/background-140.jpg differ diff --git a/public/images/backgrounds/background-141.jpg b/public/images/backgrounds/background-141.jpg new file mode 100644 index 0000000..3920fbb Binary files /dev/null and b/public/images/backgrounds/background-141.jpg differ diff --git a/public/images/backgrounds/background-142.jpg b/public/images/backgrounds/background-142.jpg new file mode 100644 index 0000000..ed647f7 Binary files /dev/null and b/public/images/backgrounds/background-142.jpg differ diff --git a/public/images/backgrounds/background-143.jpg b/public/images/backgrounds/background-143.jpg new file mode 100644 index 0000000..21e803f Binary files /dev/null and b/public/images/backgrounds/background-143.jpg differ diff --git a/public/images/backgrounds/background-144.jpg b/public/images/backgrounds/background-144.jpg new file mode 100644 index 0000000..281ce99 Binary files /dev/null and b/public/images/backgrounds/background-144.jpg differ diff --git a/public/images/backgrounds/background-145.jpg b/public/images/backgrounds/background-145.jpg new file mode 100644 index 0000000..4d07757 Binary files /dev/null and b/public/images/backgrounds/background-145.jpg differ diff --git a/public/images/backgrounds/background-146.jpg b/public/images/backgrounds/background-146.jpg new file mode 100644 index 0000000..814d675 Binary files /dev/null and b/public/images/backgrounds/background-146.jpg differ diff --git a/public/images/backgrounds/background-147.jpg b/public/images/backgrounds/background-147.jpg new file mode 100644 index 0000000..99c3a1c Binary files /dev/null and b/public/images/backgrounds/background-147.jpg differ diff --git a/public/images/backgrounds/background-148.jpg b/public/images/backgrounds/background-148.jpg new file mode 100644 index 0000000..019fcf9 Binary files /dev/null and b/public/images/backgrounds/background-148.jpg differ diff --git a/public/images/backgrounds/background-149.jpg b/public/images/backgrounds/background-149.jpg new file mode 100644 index 0000000..8282d4c Binary files /dev/null and b/public/images/backgrounds/background-149.jpg differ diff --git a/public/images/backgrounds/background-15.jpg b/public/images/backgrounds/background-15.jpg new file mode 100644 index 0000000..1f1c2c0 Binary files /dev/null and b/public/images/backgrounds/background-15.jpg differ diff --git a/public/images/backgrounds/background-150.jpg b/public/images/backgrounds/background-150.jpg new file mode 100644 index 0000000..78cdcc5 Binary files /dev/null and b/public/images/backgrounds/background-150.jpg differ diff --git a/public/images/backgrounds/background-151.jpg b/public/images/backgrounds/background-151.jpg new file mode 100644 index 0000000..932cc30 Binary files /dev/null and b/public/images/backgrounds/background-151.jpg differ diff --git a/public/images/backgrounds/background-152.jpg b/public/images/backgrounds/background-152.jpg new file mode 100644 index 0000000..07ccb39 Binary files /dev/null and b/public/images/backgrounds/background-152.jpg differ diff --git a/public/images/backgrounds/background-153.jpg b/public/images/backgrounds/background-153.jpg new file mode 100644 index 0000000..873c057 Binary files /dev/null and b/public/images/backgrounds/background-153.jpg differ diff --git a/public/images/backgrounds/background-154.jpg b/public/images/backgrounds/background-154.jpg new file mode 100644 index 0000000..cbe613f Binary files /dev/null and b/public/images/backgrounds/background-154.jpg differ diff --git a/public/images/backgrounds/background-155.jpg b/public/images/backgrounds/background-155.jpg new file mode 100644 index 0000000..035366f Binary files /dev/null and b/public/images/backgrounds/background-155.jpg differ diff --git a/public/images/backgrounds/background-156.jpg b/public/images/backgrounds/background-156.jpg new file mode 100644 index 0000000..806a515 Binary files /dev/null and b/public/images/backgrounds/background-156.jpg differ diff --git a/public/images/backgrounds/background-157.jpg b/public/images/backgrounds/background-157.jpg new file mode 100644 index 0000000..8a1c44d Binary files /dev/null and b/public/images/backgrounds/background-157.jpg differ diff --git a/public/images/backgrounds/background-158.jpg b/public/images/backgrounds/background-158.jpg new file mode 100644 index 0000000..778fa48 Binary files /dev/null and b/public/images/backgrounds/background-158.jpg differ diff --git a/public/images/backgrounds/background-159.jpg b/public/images/backgrounds/background-159.jpg new file mode 100644 index 0000000..2e87992 Binary files /dev/null and b/public/images/backgrounds/background-159.jpg differ diff --git a/public/images/backgrounds/background-16.jpg b/public/images/backgrounds/background-16.jpg new file mode 100644 index 0000000..483b162 Binary files /dev/null and b/public/images/backgrounds/background-16.jpg differ diff --git a/public/images/backgrounds/background-160.jpg b/public/images/backgrounds/background-160.jpg new file mode 100644 index 0000000..5ea3778 Binary files /dev/null and b/public/images/backgrounds/background-160.jpg differ diff --git a/public/images/backgrounds/background-161.jpg b/public/images/backgrounds/background-161.jpg new file mode 100644 index 0000000..92dcf8b Binary files /dev/null and b/public/images/backgrounds/background-161.jpg differ diff --git a/public/images/backgrounds/background-162.jpg b/public/images/backgrounds/background-162.jpg new file mode 100644 index 0000000..e885eaf Binary files /dev/null and b/public/images/backgrounds/background-162.jpg differ diff --git a/public/images/backgrounds/background-163.jpg b/public/images/backgrounds/background-163.jpg new file mode 100644 index 0000000..d00cf05 Binary files /dev/null and b/public/images/backgrounds/background-163.jpg differ diff --git a/public/images/backgrounds/background-164.jpg b/public/images/backgrounds/background-164.jpg new file mode 100644 index 0000000..3453815 Binary files /dev/null and b/public/images/backgrounds/background-164.jpg differ diff --git a/public/images/backgrounds/background-165.jpg b/public/images/backgrounds/background-165.jpg new file mode 100644 index 0000000..46c7d20 Binary files /dev/null and b/public/images/backgrounds/background-165.jpg differ diff --git a/public/images/backgrounds/background-166.jpg b/public/images/backgrounds/background-166.jpg new file mode 100644 index 0000000..b1911b7 Binary files /dev/null and b/public/images/backgrounds/background-166.jpg differ diff --git a/public/images/backgrounds/background-167.jpg b/public/images/backgrounds/background-167.jpg new file mode 100644 index 0000000..cc9d797 Binary files /dev/null and b/public/images/backgrounds/background-167.jpg differ diff --git a/public/images/backgrounds/background-168.jpg b/public/images/backgrounds/background-168.jpg new file mode 100644 index 0000000..c90ae26 Binary files /dev/null and b/public/images/backgrounds/background-168.jpg differ diff --git a/public/images/backgrounds/background-169.jpg b/public/images/backgrounds/background-169.jpg new file mode 100644 index 0000000..9f95661 Binary files /dev/null and b/public/images/backgrounds/background-169.jpg differ diff --git a/public/images/backgrounds/background-17.jpg b/public/images/backgrounds/background-17.jpg new file mode 100644 index 0000000..b4a6623 Binary files /dev/null and b/public/images/backgrounds/background-17.jpg differ diff --git a/public/images/backgrounds/background-170.jpg b/public/images/backgrounds/background-170.jpg new file mode 100644 index 0000000..29e8995 Binary files /dev/null and b/public/images/backgrounds/background-170.jpg differ diff --git a/public/images/backgrounds/background-171.jpg b/public/images/backgrounds/background-171.jpg new file mode 100644 index 0000000..38f5292 Binary files /dev/null and b/public/images/backgrounds/background-171.jpg differ diff --git a/public/images/backgrounds/background-172.jpg b/public/images/backgrounds/background-172.jpg new file mode 100644 index 0000000..87aee2b Binary files /dev/null and b/public/images/backgrounds/background-172.jpg differ diff --git a/public/images/backgrounds/background-173.jpg b/public/images/backgrounds/background-173.jpg new file mode 100644 index 0000000..4b5eea2 Binary files /dev/null and b/public/images/backgrounds/background-173.jpg differ diff --git a/public/images/backgrounds/background-174.jpg b/public/images/backgrounds/background-174.jpg new file mode 100644 index 0000000..cafa723 Binary files /dev/null and b/public/images/backgrounds/background-174.jpg differ diff --git a/public/images/backgrounds/background-175.jpg b/public/images/backgrounds/background-175.jpg new file mode 100644 index 0000000..49edb46 Binary files /dev/null and b/public/images/backgrounds/background-175.jpg differ diff --git a/public/images/backgrounds/background-176.jpg b/public/images/backgrounds/background-176.jpg new file mode 100644 index 0000000..6e8d4f0 Binary files /dev/null and b/public/images/backgrounds/background-176.jpg differ diff --git a/public/images/backgrounds/background-177.jpg b/public/images/backgrounds/background-177.jpg new file mode 100644 index 0000000..d84f88f Binary files /dev/null and b/public/images/backgrounds/background-177.jpg differ diff --git a/public/images/backgrounds/background-178.jpg b/public/images/backgrounds/background-178.jpg new file mode 100644 index 0000000..cf087d7 Binary files /dev/null and b/public/images/backgrounds/background-178.jpg differ diff --git a/public/images/backgrounds/background-179.jpg b/public/images/backgrounds/background-179.jpg new file mode 100644 index 0000000..4df8cbb Binary files /dev/null and b/public/images/backgrounds/background-179.jpg differ diff --git a/public/images/backgrounds/background-18.jpg b/public/images/backgrounds/background-18.jpg new file mode 100644 index 0000000..e9a7d36 Binary files /dev/null and b/public/images/backgrounds/background-18.jpg differ diff --git a/public/images/backgrounds/background-180.jpg b/public/images/backgrounds/background-180.jpg new file mode 100644 index 0000000..8bd1856 Binary files /dev/null and b/public/images/backgrounds/background-180.jpg differ diff --git a/public/images/backgrounds/background-181.jpg b/public/images/backgrounds/background-181.jpg new file mode 100644 index 0000000..8fea925 Binary files /dev/null and b/public/images/backgrounds/background-181.jpg differ diff --git a/public/images/backgrounds/background-182.jpg b/public/images/backgrounds/background-182.jpg new file mode 100644 index 0000000..3d08acc Binary files /dev/null and b/public/images/backgrounds/background-182.jpg differ diff --git a/public/images/backgrounds/background-183.jpg b/public/images/backgrounds/background-183.jpg new file mode 100644 index 0000000..8982d9f Binary files /dev/null and b/public/images/backgrounds/background-183.jpg differ diff --git a/public/images/backgrounds/background-184.jpg b/public/images/backgrounds/background-184.jpg new file mode 100644 index 0000000..9d5eb60 Binary files /dev/null and b/public/images/backgrounds/background-184.jpg differ diff --git a/public/images/backgrounds/background-185.jpg b/public/images/backgrounds/background-185.jpg new file mode 100644 index 0000000..39c635e Binary files /dev/null and b/public/images/backgrounds/background-185.jpg differ diff --git a/public/images/backgrounds/background-186.jpg b/public/images/backgrounds/background-186.jpg new file mode 100644 index 0000000..82c8820 Binary files /dev/null and b/public/images/backgrounds/background-186.jpg differ diff --git a/public/images/backgrounds/background-187.jpg b/public/images/backgrounds/background-187.jpg new file mode 100644 index 0000000..6fa3fd8 Binary files /dev/null and b/public/images/backgrounds/background-187.jpg differ diff --git a/public/images/backgrounds/background-188.jpg b/public/images/backgrounds/background-188.jpg new file mode 100644 index 0000000..5708302 Binary files /dev/null and b/public/images/backgrounds/background-188.jpg differ diff --git a/public/images/backgrounds/background-189.jpg b/public/images/backgrounds/background-189.jpg new file mode 100644 index 0000000..ede3818 Binary files /dev/null and b/public/images/backgrounds/background-189.jpg differ diff --git a/public/images/backgrounds/background-19.jpg b/public/images/backgrounds/background-19.jpg new file mode 100644 index 0000000..3285391 Binary files /dev/null and b/public/images/backgrounds/background-19.jpg differ diff --git a/public/images/backgrounds/background-190.jpg b/public/images/backgrounds/background-190.jpg new file mode 100644 index 0000000..167b315 Binary files /dev/null and b/public/images/backgrounds/background-190.jpg differ diff --git a/public/images/backgrounds/background-191.jpg b/public/images/backgrounds/background-191.jpg new file mode 100644 index 0000000..f8f7258 Binary files /dev/null and b/public/images/backgrounds/background-191.jpg differ diff --git a/public/images/backgrounds/background-192.jpg b/public/images/backgrounds/background-192.jpg new file mode 100644 index 0000000..ebfc7ce Binary files /dev/null and b/public/images/backgrounds/background-192.jpg differ diff --git a/public/images/backgrounds/background-193.jpg b/public/images/backgrounds/background-193.jpg new file mode 100644 index 0000000..ddbedbc Binary files /dev/null and b/public/images/backgrounds/background-193.jpg differ diff --git a/public/images/backgrounds/background-194.jpg b/public/images/backgrounds/background-194.jpg new file mode 100644 index 0000000..f204db7 Binary files /dev/null and b/public/images/backgrounds/background-194.jpg differ diff --git a/public/images/backgrounds/background-195.jpg b/public/images/backgrounds/background-195.jpg new file mode 100644 index 0000000..f354a78 Binary files /dev/null and b/public/images/backgrounds/background-195.jpg differ diff --git a/public/images/backgrounds/background-196.jpg b/public/images/backgrounds/background-196.jpg new file mode 100644 index 0000000..a2f8682 Binary files /dev/null and b/public/images/backgrounds/background-196.jpg differ diff --git a/public/images/backgrounds/background-197.jpg b/public/images/backgrounds/background-197.jpg new file mode 100644 index 0000000..3043004 Binary files /dev/null and b/public/images/backgrounds/background-197.jpg differ diff --git a/public/images/backgrounds/background-198.jpg b/public/images/backgrounds/background-198.jpg new file mode 100644 index 0000000..e4cecb1 Binary files /dev/null and b/public/images/backgrounds/background-198.jpg differ diff --git a/public/images/backgrounds/background-199.jpg b/public/images/backgrounds/background-199.jpg new file mode 100644 index 0000000..6bfcad8 Binary files /dev/null and b/public/images/backgrounds/background-199.jpg differ diff --git a/public/images/backgrounds/background-2.jpg b/public/images/backgrounds/background-2.jpg new file mode 100644 index 0000000..2100f77 Binary files /dev/null and b/public/images/backgrounds/background-2.jpg differ diff --git a/public/images/backgrounds/background-20.jpg b/public/images/backgrounds/background-20.jpg new file mode 100644 index 0000000..fef7c44 Binary files /dev/null and b/public/images/backgrounds/background-20.jpg differ diff --git a/public/images/backgrounds/background-200.jpg b/public/images/backgrounds/background-200.jpg new file mode 100644 index 0000000..7b773aa Binary files /dev/null and b/public/images/backgrounds/background-200.jpg differ diff --git a/public/images/backgrounds/background-201.jpg b/public/images/backgrounds/background-201.jpg new file mode 100644 index 0000000..01062cf Binary files /dev/null and b/public/images/backgrounds/background-201.jpg differ diff --git a/public/images/backgrounds/background-202.jpg b/public/images/backgrounds/background-202.jpg new file mode 100644 index 0000000..282e7d6 Binary files /dev/null and b/public/images/backgrounds/background-202.jpg differ diff --git a/public/images/backgrounds/background-203.jpg b/public/images/backgrounds/background-203.jpg new file mode 100644 index 0000000..ea86a52 Binary files /dev/null and b/public/images/backgrounds/background-203.jpg differ diff --git a/public/images/backgrounds/background-204.jpg b/public/images/backgrounds/background-204.jpg new file mode 100644 index 0000000..6ec13ce Binary files /dev/null and b/public/images/backgrounds/background-204.jpg differ diff --git a/public/images/backgrounds/background-205.jpg b/public/images/backgrounds/background-205.jpg new file mode 100644 index 0000000..b71ed1e Binary files /dev/null and b/public/images/backgrounds/background-205.jpg differ diff --git a/public/images/backgrounds/background-206.jpg b/public/images/backgrounds/background-206.jpg new file mode 100644 index 0000000..0c456ff Binary files /dev/null and b/public/images/backgrounds/background-206.jpg differ diff --git a/public/images/backgrounds/background-207.jpg b/public/images/backgrounds/background-207.jpg new file mode 100644 index 0000000..98ad1f1 Binary files /dev/null and b/public/images/backgrounds/background-207.jpg differ diff --git a/public/images/backgrounds/background-208.jpg b/public/images/backgrounds/background-208.jpg new file mode 100644 index 0000000..d8955ea Binary files /dev/null and b/public/images/backgrounds/background-208.jpg differ diff --git a/public/images/backgrounds/background-209.jpg b/public/images/backgrounds/background-209.jpg new file mode 100644 index 0000000..dcd4e17 Binary files /dev/null and b/public/images/backgrounds/background-209.jpg differ diff --git a/public/images/backgrounds/background-21.jpg b/public/images/backgrounds/background-21.jpg new file mode 100644 index 0000000..124b108 Binary files /dev/null and b/public/images/backgrounds/background-21.jpg differ diff --git a/public/images/backgrounds/background-210.jpg b/public/images/backgrounds/background-210.jpg new file mode 100644 index 0000000..ca7632e Binary files /dev/null and b/public/images/backgrounds/background-210.jpg differ diff --git a/public/images/backgrounds/background-211.jpg b/public/images/backgrounds/background-211.jpg new file mode 100644 index 0000000..1094b2f Binary files /dev/null and b/public/images/backgrounds/background-211.jpg differ diff --git a/public/images/backgrounds/background-212.jpg b/public/images/backgrounds/background-212.jpg new file mode 100644 index 0000000..4232b52 Binary files /dev/null and b/public/images/backgrounds/background-212.jpg differ diff --git a/public/images/backgrounds/background-213.jpg b/public/images/backgrounds/background-213.jpg new file mode 100644 index 0000000..43791f9 Binary files /dev/null and b/public/images/backgrounds/background-213.jpg differ diff --git a/public/images/backgrounds/background-214.jpg b/public/images/backgrounds/background-214.jpg new file mode 100644 index 0000000..da7ad0e Binary files /dev/null and b/public/images/backgrounds/background-214.jpg differ diff --git a/public/images/backgrounds/background-215.jpg b/public/images/backgrounds/background-215.jpg new file mode 100644 index 0000000..8e6abad Binary files /dev/null and b/public/images/backgrounds/background-215.jpg differ diff --git a/public/images/backgrounds/background-216.jpg b/public/images/backgrounds/background-216.jpg new file mode 100644 index 0000000..51dcee4 Binary files /dev/null and b/public/images/backgrounds/background-216.jpg differ diff --git a/public/images/backgrounds/background-217.jpg b/public/images/backgrounds/background-217.jpg new file mode 100644 index 0000000..ba1f6a7 Binary files /dev/null and b/public/images/backgrounds/background-217.jpg differ diff --git a/public/images/backgrounds/background-218.jpg b/public/images/backgrounds/background-218.jpg new file mode 100644 index 0000000..c7925b0 Binary files /dev/null and b/public/images/backgrounds/background-218.jpg differ diff --git a/public/images/backgrounds/background-219.jpg b/public/images/backgrounds/background-219.jpg new file mode 100644 index 0000000..3f7bb23 Binary files /dev/null and b/public/images/backgrounds/background-219.jpg differ diff --git a/public/images/backgrounds/background-22.jpg b/public/images/backgrounds/background-22.jpg new file mode 100644 index 0000000..dd23e05 Binary files /dev/null and b/public/images/backgrounds/background-22.jpg differ diff --git a/public/images/backgrounds/background-220.jpg b/public/images/backgrounds/background-220.jpg new file mode 100644 index 0000000..644ab5d Binary files /dev/null and b/public/images/backgrounds/background-220.jpg differ diff --git a/public/images/backgrounds/background-221.jpg b/public/images/backgrounds/background-221.jpg new file mode 100644 index 0000000..9f227d3 Binary files /dev/null and b/public/images/backgrounds/background-221.jpg differ diff --git a/public/images/backgrounds/background-222.jpg b/public/images/backgrounds/background-222.jpg new file mode 100644 index 0000000..e0a90b5 Binary files /dev/null and b/public/images/backgrounds/background-222.jpg differ diff --git a/public/images/backgrounds/background-223.jpg b/public/images/backgrounds/background-223.jpg new file mode 100644 index 0000000..7763c2e Binary files /dev/null and b/public/images/backgrounds/background-223.jpg differ diff --git a/public/images/backgrounds/background-224.jpg b/public/images/backgrounds/background-224.jpg new file mode 100644 index 0000000..9568ac8 Binary files /dev/null and b/public/images/backgrounds/background-224.jpg differ diff --git a/public/images/backgrounds/background-225.jpg b/public/images/backgrounds/background-225.jpg new file mode 100644 index 0000000..61b1224 Binary files /dev/null and b/public/images/backgrounds/background-225.jpg differ diff --git a/public/images/backgrounds/background-226.jpg b/public/images/backgrounds/background-226.jpg new file mode 100644 index 0000000..b3f1296 Binary files /dev/null and b/public/images/backgrounds/background-226.jpg differ diff --git a/public/images/backgrounds/background-227.jpg b/public/images/backgrounds/background-227.jpg new file mode 100644 index 0000000..a569ea1 Binary files /dev/null and b/public/images/backgrounds/background-227.jpg differ diff --git a/public/images/backgrounds/background-228.jpg b/public/images/backgrounds/background-228.jpg new file mode 100644 index 0000000..935be3c Binary files /dev/null and b/public/images/backgrounds/background-228.jpg differ diff --git a/public/images/backgrounds/background-229.jpg b/public/images/backgrounds/background-229.jpg new file mode 100644 index 0000000..d0fbd4e Binary files /dev/null and b/public/images/backgrounds/background-229.jpg differ diff --git a/public/images/backgrounds/background-23.jpg b/public/images/backgrounds/background-23.jpg new file mode 100644 index 0000000..6d41b70 Binary files /dev/null and b/public/images/backgrounds/background-23.jpg differ diff --git a/public/images/backgrounds/background-230.jpg b/public/images/backgrounds/background-230.jpg new file mode 100644 index 0000000..58c84cc Binary files /dev/null and b/public/images/backgrounds/background-230.jpg differ diff --git a/public/images/backgrounds/background-231.jpg b/public/images/backgrounds/background-231.jpg new file mode 100644 index 0000000..d865a74 Binary files /dev/null and b/public/images/backgrounds/background-231.jpg differ diff --git a/public/images/backgrounds/background-232.jpg b/public/images/backgrounds/background-232.jpg new file mode 100644 index 0000000..9621da1 Binary files /dev/null and b/public/images/backgrounds/background-232.jpg differ diff --git a/public/images/backgrounds/background-233.jpg b/public/images/backgrounds/background-233.jpg new file mode 100644 index 0000000..9dd3371 Binary files /dev/null and b/public/images/backgrounds/background-233.jpg differ diff --git a/public/images/backgrounds/background-234.jpg b/public/images/backgrounds/background-234.jpg new file mode 100644 index 0000000..71c3373 Binary files /dev/null and b/public/images/backgrounds/background-234.jpg differ diff --git a/public/images/backgrounds/background-235.jpg b/public/images/backgrounds/background-235.jpg new file mode 100644 index 0000000..9783060 Binary files /dev/null and b/public/images/backgrounds/background-235.jpg differ diff --git a/public/images/backgrounds/background-236.jpg b/public/images/backgrounds/background-236.jpg new file mode 100644 index 0000000..5f94259 Binary files /dev/null and b/public/images/backgrounds/background-236.jpg differ diff --git a/public/images/backgrounds/background-237.jpg b/public/images/backgrounds/background-237.jpg new file mode 100644 index 0000000..049b1ae Binary files /dev/null and b/public/images/backgrounds/background-237.jpg differ diff --git a/public/images/backgrounds/background-238.jpg b/public/images/backgrounds/background-238.jpg new file mode 100644 index 0000000..f6729ec Binary files /dev/null and b/public/images/backgrounds/background-238.jpg differ diff --git a/public/images/backgrounds/background-239.jpg b/public/images/backgrounds/background-239.jpg new file mode 100644 index 0000000..93a0ef1 Binary files /dev/null and b/public/images/backgrounds/background-239.jpg differ diff --git a/public/images/backgrounds/background-24.jpg b/public/images/backgrounds/background-24.jpg new file mode 100644 index 0000000..2713f44 Binary files /dev/null and b/public/images/backgrounds/background-24.jpg differ diff --git a/public/images/backgrounds/background-240.jpg b/public/images/backgrounds/background-240.jpg new file mode 100644 index 0000000..605b008 Binary files /dev/null and b/public/images/backgrounds/background-240.jpg differ diff --git a/public/images/backgrounds/background-241.jpg b/public/images/backgrounds/background-241.jpg new file mode 100644 index 0000000..e8b7af4 Binary files /dev/null and b/public/images/backgrounds/background-241.jpg differ diff --git a/public/images/backgrounds/background-242.jpg b/public/images/backgrounds/background-242.jpg new file mode 100644 index 0000000..b46c247 Binary files /dev/null and b/public/images/backgrounds/background-242.jpg differ diff --git a/public/images/backgrounds/background-243.jpg b/public/images/backgrounds/background-243.jpg new file mode 100644 index 0000000..ba39e1f Binary files /dev/null and b/public/images/backgrounds/background-243.jpg differ diff --git a/public/images/backgrounds/background-244.jpg b/public/images/backgrounds/background-244.jpg new file mode 100644 index 0000000..0af187a Binary files /dev/null and b/public/images/backgrounds/background-244.jpg differ diff --git a/public/images/backgrounds/background-245.jpg b/public/images/backgrounds/background-245.jpg new file mode 100644 index 0000000..e176675 Binary files /dev/null and b/public/images/backgrounds/background-245.jpg differ diff --git a/public/images/backgrounds/background-246.jpg b/public/images/backgrounds/background-246.jpg new file mode 100644 index 0000000..5d266f8 Binary files /dev/null and b/public/images/backgrounds/background-246.jpg differ diff --git a/public/images/backgrounds/background-247.jpg b/public/images/backgrounds/background-247.jpg new file mode 100644 index 0000000..1c977f8 Binary files /dev/null and b/public/images/backgrounds/background-247.jpg differ diff --git a/public/images/backgrounds/background-248.jpg b/public/images/backgrounds/background-248.jpg new file mode 100644 index 0000000..4b39acc Binary files /dev/null and b/public/images/backgrounds/background-248.jpg differ diff --git a/public/images/backgrounds/background-249.jpg b/public/images/backgrounds/background-249.jpg new file mode 100644 index 0000000..5abc5d1 Binary files /dev/null and b/public/images/backgrounds/background-249.jpg differ diff --git a/public/images/backgrounds/background-25.jpg b/public/images/backgrounds/background-25.jpg new file mode 100644 index 0000000..d570173 Binary files /dev/null and b/public/images/backgrounds/background-25.jpg differ diff --git a/public/images/backgrounds/background-250.jpg b/public/images/backgrounds/background-250.jpg new file mode 100644 index 0000000..2146b4f Binary files /dev/null and b/public/images/backgrounds/background-250.jpg differ diff --git a/public/images/backgrounds/background-251.jpg b/public/images/backgrounds/background-251.jpg new file mode 100644 index 0000000..6f9b9d4 Binary files /dev/null and b/public/images/backgrounds/background-251.jpg differ diff --git a/public/images/backgrounds/background-252.jpg b/public/images/backgrounds/background-252.jpg new file mode 100644 index 0000000..407380c Binary files /dev/null and b/public/images/backgrounds/background-252.jpg differ diff --git a/public/images/backgrounds/background-253.jpg b/public/images/backgrounds/background-253.jpg new file mode 100644 index 0000000..f7f2311 Binary files /dev/null and b/public/images/backgrounds/background-253.jpg differ diff --git a/public/images/backgrounds/background-254.jpg b/public/images/backgrounds/background-254.jpg new file mode 100644 index 0000000..a0398ac Binary files /dev/null and b/public/images/backgrounds/background-254.jpg differ diff --git a/public/images/backgrounds/background-255.jpg b/public/images/backgrounds/background-255.jpg new file mode 100644 index 0000000..2724dd8 Binary files /dev/null and b/public/images/backgrounds/background-255.jpg differ diff --git a/public/images/backgrounds/background-256.jpg b/public/images/backgrounds/background-256.jpg new file mode 100644 index 0000000..cf1e1a6 Binary files /dev/null and b/public/images/backgrounds/background-256.jpg differ diff --git a/public/images/backgrounds/background-257.jpg b/public/images/backgrounds/background-257.jpg new file mode 100644 index 0000000..8ab82af Binary files /dev/null and b/public/images/backgrounds/background-257.jpg differ diff --git a/public/images/backgrounds/background-258.jpg b/public/images/backgrounds/background-258.jpg new file mode 100644 index 0000000..558ca82 Binary files /dev/null and b/public/images/backgrounds/background-258.jpg differ diff --git a/public/images/backgrounds/background-259.jpg b/public/images/backgrounds/background-259.jpg new file mode 100644 index 0000000..903a476 Binary files /dev/null and b/public/images/backgrounds/background-259.jpg differ diff --git a/public/images/backgrounds/background-26.jpg b/public/images/backgrounds/background-26.jpg new file mode 100644 index 0000000..daa6b01 Binary files /dev/null and b/public/images/backgrounds/background-26.jpg differ diff --git a/public/images/backgrounds/background-260.jpg b/public/images/backgrounds/background-260.jpg new file mode 100644 index 0000000..a3ef4e7 Binary files /dev/null and b/public/images/backgrounds/background-260.jpg differ diff --git a/public/images/backgrounds/background-261.jpg b/public/images/backgrounds/background-261.jpg new file mode 100644 index 0000000..2912543 Binary files /dev/null and b/public/images/backgrounds/background-261.jpg differ diff --git a/public/images/backgrounds/background-262.jpg b/public/images/backgrounds/background-262.jpg new file mode 100644 index 0000000..6cc28b4 Binary files /dev/null and b/public/images/backgrounds/background-262.jpg differ diff --git a/public/images/backgrounds/background-263.jpg b/public/images/backgrounds/background-263.jpg new file mode 100644 index 0000000..e097508 Binary files /dev/null and b/public/images/backgrounds/background-263.jpg differ diff --git a/public/images/backgrounds/background-264.jpg b/public/images/backgrounds/background-264.jpg new file mode 100644 index 0000000..2fe9d6d Binary files /dev/null and b/public/images/backgrounds/background-264.jpg differ diff --git a/public/images/backgrounds/background-265.jpg b/public/images/backgrounds/background-265.jpg new file mode 100644 index 0000000..3eb2016 Binary files /dev/null and b/public/images/backgrounds/background-265.jpg differ diff --git a/public/images/backgrounds/background-266.jpg b/public/images/backgrounds/background-266.jpg new file mode 100644 index 0000000..47b69b4 Binary files /dev/null and b/public/images/backgrounds/background-266.jpg differ diff --git a/public/images/backgrounds/background-267.jpg b/public/images/backgrounds/background-267.jpg new file mode 100644 index 0000000..c1b9d0f Binary files /dev/null and b/public/images/backgrounds/background-267.jpg differ diff --git a/public/images/backgrounds/background-268.jpg b/public/images/backgrounds/background-268.jpg new file mode 100644 index 0000000..eda9974 Binary files /dev/null and b/public/images/backgrounds/background-268.jpg differ diff --git a/public/images/backgrounds/background-269.jpg b/public/images/backgrounds/background-269.jpg new file mode 100644 index 0000000..6ee9f90 Binary files /dev/null and b/public/images/backgrounds/background-269.jpg differ diff --git a/public/images/backgrounds/background-27.jpg b/public/images/backgrounds/background-27.jpg new file mode 100644 index 0000000..4bd603b Binary files /dev/null and b/public/images/backgrounds/background-27.jpg differ diff --git a/public/images/backgrounds/background-270.jpg b/public/images/backgrounds/background-270.jpg new file mode 100644 index 0000000..a5c44d1 Binary files /dev/null and b/public/images/backgrounds/background-270.jpg differ diff --git a/public/images/backgrounds/background-271.jpg b/public/images/backgrounds/background-271.jpg new file mode 100644 index 0000000..c155e4e Binary files /dev/null and b/public/images/backgrounds/background-271.jpg differ diff --git a/public/images/backgrounds/background-272.jpg b/public/images/backgrounds/background-272.jpg new file mode 100644 index 0000000..fa9a497 Binary files /dev/null and b/public/images/backgrounds/background-272.jpg differ diff --git a/public/images/backgrounds/background-273.jpg b/public/images/backgrounds/background-273.jpg new file mode 100644 index 0000000..d9d7c00 Binary files /dev/null and b/public/images/backgrounds/background-273.jpg differ diff --git a/public/images/backgrounds/background-274.jpg b/public/images/backgrounds/background-274.jpg new file mode 100644 index 0000000..0043b24 Binary files /dev/null and b/public/images/backgrounds/background-274.jpg differ diff --git a/public/images/backgrounds/background-275.jpg b/public/images/backgrounds/background-275.jpg new file mode 100644 index 0000000..0791f1f Binary files /dev/null and b/public/images/backgrounds/background-275.jpg differ diff --git a/public/images/backgrounds/background-276.jpg b/public/images/backgrounds/background-276.jpg new file mode 100644 index 0000000..249c774 Binary files /dev/null and b/public/images/backgrounds/background-276.jpg differ diff --git a/public/images/backgrounds/background-277.jpg b/public/images/backgrounds/background-277.jpg new file mode 100644 index 0000000..9616088 Binary files /dev/null and b/public/images/backgrounds/background-277.jpg differ diff --git a/public/images/backgrounds/background-278.jpg b/public/images/backgrounds/background-278.jpg new file mode 100644 index 0000000..9b6fbdf Binary files /dev/null and b/public/images/backgrounds/background-278.jpg differ diff --git a/public/images/backgrounds/background-279.jpg b/public/images/backgrounds/background-279.jpg new file mode 100644 index 0000000..6d92673 Binary files /dev/null and b/public/images/backgrounds/background-279.jpg differ diff --git a/public/images/backgrounds/background-28.jpg b/public/images/backgrounds/background-28.jpg new file mode 100644 index 0000000..7cd5aa2 Binary files /dev/null and b/public/images/backgrounds/background-28.jpg differ diff --git a/public/images/backgrounds/background-280.jpg b/public/images/backgrounds/background-280.jpg new file mode 100644 index 0000000..e20f410 Binary files /dev/null and b/public/images/backgrounds/background-280.jpg differ diff --git a/public/images/backgrounds/background-281.jpg b/public/images/backgrounds/background-281.jpg new file mode 100644 index 0000000..dfe2966 Binary files /dev/null and b/public/images/backgrounds/background-281.jpg differ diff --git a/public/images/backgrounds/background-282.jpg b/public/images/backgrounds/background-282.jpg new file mode 100644 index 0000000..1da1855 Binary files /dev/null and b/public/images/backgrounds/background-282.jpg differ diff --git a/public/images/backgrounds/background-283.jpg b/public/images/backgrounds/background-283.jpg new file mode 100644 index 0000000..9532788 Binary files /dev/null and b/public/images/backgrounds/background-283.jpg differ diff --git a/public/images/backgrounds/background-284.jpg b/public/images/backgrounds/background-284.jpg new file mode 100644 index 0000000..1ac0419 Binary files /dev/null and b/public/images/backgrounds/background-284.jpg differ diff --git a/public/images/backgrounds/background-285.jpg b/public/images/backgrounds/background-285.jpg new file mode 100644 index 0000000..ddbedbc Binary files /dev/null and b/public/images/backgrounds/background-285.jpg differ diff --git a/public/images/backgrounds/background-286.jpg b/public/images/backgrounds/background-286.jpg new file mode 100644 index 0000000..7622173 Binary files /dev/null and b/public/images/backgrounds/background-286.jpg differ diff --git a/public/images/backgrounds/background-287.jpg b/public/images/backgrounds/background-287.jpg new file mode 100644 index 0000000..3679824 Binary files /dev/null and b/public/images/backgrounds/background-287.jpg differ diff --git a/public/images/backgrounds/background-288.jpg b/public/images/backgrounds/background-288.jpg new file mode 100644 index 0000000..5f391a4 Binary files /dev/null and b/public/images/backgrounds/background-288.jpg differ diff --git a/public/images/backgrounds/background-289.jpg b/public/images/backgrounds/background-289.jpg new file mode 100644 index 0000000..d5fc0e9 Binary files /dev/null and b/public/images/backgrounds/background-289.jpg differ diff --git a/public/images/backgrounds/background-29.jpg b/public/images/backgrounds/background-29.jpg new file mode 100644 index 0000000..444ff9d Binary files /dev/null and b/public/images/backgrounds/background-29.jpg differ diff --git a/public/images/backgrounds/background-290.jpg b/public/images/backgrounds/background-290.jpg new file mode 100644 index 0000000..2847051 Binary files /dev/null and b/public/images/backgrounds/background-290.jpg differ diff --git a/public/images/backgrounds/background-291.jpg b/public/images/backgrounds/background-291.jpg new file mode 100644 index 0000000..1e3238c Binary files /dev/null and b/public/images/backgrounds/background-291.jpg differ diff --git a/public/images/backgrounds/background-292.jpg b/public/images/backgrounds/background-292.jpg new file mode 100644 index 0000000..e9bee6d Binary files /dev/null and b/public/images/backgrounds/background-292.jpg differ diff --git a/public/images/backgrounds/background-293.jpg b/public/images/backgrounds/background-293.jpg new file mode 100644 index 0000000..7dd1f98 Binary files /dev/null and b/public/images/backgrounds/background-293.jpg differ diff --git a/public/images/backgrounds/background-294.jpg b/public/images/backgrounds/background-294.jpg new file mode 100644 index 0000000..a31d603 Binary files /dev/null and b/public/images/backgrounds/background-294.jpg differ diff --git a/public/images/backgrounds/background-295.jpg b/public/images/backgrounds/background-295.jpg new file mode 100644 index 0000000..34ef2f8 Binary files /dev/null and b/public/images/backgrounds/background-295.jpg differ diff --git a/public/images/backgrounds/background-296.jpg b/public/images/backgrounds/background-296.jpg new file mode 100644 index 0000000..f28e3a1 Binary files /dev/null and b/public/images/backgrounds/background-296.jpg differ diff --git a/public/images/backgrounds/background-297.jpg b/public/images/backgrounds/background-297.jpg new file mode 100644 index 0000000..6cea119 Binary files /dev/null and b/public/images/backgrounds/background-297.jpg differ diff --git a/public/images/backgrounds/background-298.jpg b/public/images/backgrounds/background-298.jpg new file mode 100644 index 0000000..bd653bc Binary files /dev/null and b/public/images/backgrounds/background-298.jpg differ diff --git a/public/images/backgrounds/background-299.jpg b/public/images/backgrounds/background-299.jpg new file mode 100644 index 0000000..0a0da0f Binary files /dev/null and b/public/images/backgrounds/background-299.jpg differ diff --git a/public/images/backgrounds/background-3.jpg b/public/images/backgrounds/background-3.jpg new file mode 100644 index 0000000..70ab452 Binary files /dev/null and b/public/images/backgrounds/background-3.jpg differ diff --git a/public/images/backgrounds/background-30.jpg b/public/images/backgrounds/background-30.jpg new file mode 100644 index 0000000..bfa4afa Binary files /dev/null and b/public/images/backgrounds/background-30.jpg differ diff --git a/public/images/backgrounds/background-300.jpg b/public/images/backgrounds/background-300.jpg new file mode 100644 index 0000000..151ce41 Binary files /dev/null and b/public/images/backgrounds/background-300.jpg differ diff --git a/public/images/backgrounds/background-301.jpg b/public/images/backgrounds/background-301.jpg new file mode 100644 index 0000000..b104890 Binary files /dev/null and b/public/images/backgrounds/background-301.jpg differ diff --git a/public/images/backgrounds/background-302.jpg b/public/images/backgrounds/background-302.jpg new file mode 100644 index 0000000..87289aa Binary files /dev/null and b/public/images/backgrounds/background-302.jpg differ diff --git a/public/images/backgrounds/background-303.jpg b/public/images/backgrounds/background-303.jpg new file mode 100644 index 0000000..1e93d4f Binary files /dev/null and b/public/images/backgrounds/background-303.jpg differ diff --git a/public/images/backgrounds/background-304.jpg b/public/images/backgrounds/background-304.jpg new file mode 100644 index 0000000..ce50976 Binary files /dev/null and b/public/images/backgrounds/background-304.jpg differ diff --git a/public/images/backgrounds/background-305.jpg b/public/images/backgrounds/background-305.jpg new file mode 100644 index 0000000..4f9ba4c Binary files /dev/null and b/public/images/backgrounds/background-305.jpg differ diff --git a/public/images/backgrounds/background-306.jpg b/public/images/backgrounds/background-306.jpg new file mode 100644 index 0000000..ce03d92 Binary files /dev/null and b/public/images/backgrounds/background-306.jpg differ diff --git a/public/images/backgrounds/background-307.jpg b/public/images/backgrounds/background-307.jpg new file mode 100644 index 0000000..a17c57d Binary files /dev/null and b/public/images/backgrounds/background-307.jpg differ diff --git a/public/images/backgrounds/background-308.jpg b/public/images/backgrounds/background-308.jpg new file mode 100644 index 0000000..6bb3afa Binary files /dev/null and b/public/images/backgrounds/background-308.jpg differ diff --git a/public/images/backgrounds/background-309.jpg b/public/images/backgrounds/background-309.jpg new file mode 100644 index 0000000..7ae793a Binary files /dev/null and b/public/images/backgrounds/background-309.jpg differ diff --git a/public/images/backgrounds/background-31.jpg b/public/images/backgrounds/background-31.jpg new file mode 100644 index 0000000..a296545 Binary files /dev/null and b/public/images/backgrounds/background-31.jpg differ diff --git a/public/images/backgrounds/background-310.jpg b/public/images/backgrounds/background-310.jpg new file mode 100644 index 0000000..18a1cd4 Binary files /dev/null and b/public/images/backgrounds/background-310.jpg differ diff --git a/public/images/backgrounds/background-311.jpg b/public/images/backgrounds/background-311.jpg new file mode 100644 index 0000000..46b2219 Binary files /dev/null and b/public/images/backgrounds/background-311.jpg differ diff --git a/public/images/backgrounds/background-312.jpg b/public/images/backgrounds/background-312.jpg new file mode 100644 index 0000000..4bebc98 Binary files /dev/null and b/public/images/backgrounds/background-312.jpg differ diff --git a/public/images/backgrounds/background-313.jpg b/public/images/backgrounds/background-313.jpg new file mode 100644 index 0000000..7fa3c37 Binary files /dev/null and b/public/images/backgrounds/background-313.jpg differ diff --git a/public/images/backgrounds/background-314.jpg b/public/images/backgrounds/background-314.jpg new file mode 100644 index 0000000..7ebe1c8 Binary files /dev/null and b/public/images/backgrounds/background-314.jpg differ diff --git a/public/images/backgrounds/background-315.jpg b/public/images/backgrounds/background-315.jpg new file mode 100644 index 0000000..89760e7 Binary files /dev/null and b/public/images/backgrounds/background-315.jpg differ diff --git a/public/images/backgrounds/background-316.jpg b/public/images/backgrounds/background-316.jpg new file mode 100644 index 0000000..d7425e0 Binary files /dev/null and b/public/images/backgrounds/background-316.jpg differ diff --git a/public/images/backgrounds/background-317.jpg b/public/images/backgrounds/background-317.jpg new file mode 100644 index 0000000..ec9d652 Binary files /dev/null and b/public/images/backgrounds/background-317.jpg differ diff --git a/public/images/backgrounds/background-318.jpg b/public/images/backgrounds/background-318.jpg new file mode 100644 index 0000000..18a1cd4 Binary files /dev/null and b/public/images/backgrounds/background-318.jpg differ diff --git a/public/images/backgrounds/background-319.jpg b/public/images/backgrounds/background-319.jpg new file mode 100644 index 0000000..f22583d Binary files /dev/null and b/public/images/backgrounds/background-319.jpg differ diff --git a/public/images/backgrounds/background-32.jpg b/public/images/backgrounds/background-32.jpg new file mode 100644 index 0000000..24d6adf Binary files /dev/null and b/public/images/backgrounds/background-32.jpg differ diff --git a/public/images/backgrounds/background-320.jpg b/public/images/backgrounds/background-320.jpg new file mode 100644 index 0000000..723acc2 Binary files /dev/null and b/public/images/backgrounds/background-320.jpg differ diff --git a/public/images/backgrounds/background-321.jpg b/public/images/backgrounds/background-321.jpg new file mode 100644 index 0000000..9e9d9e9 Binary files /dev/null and b/public/images/backgrounds/background-321.jpg differ diff --git a/public/images/backgrounds/background-322.jpg b/public/images/backgrounds/background-322.jpg new file mode 100644 index 0000000..78e9745 Binary files /dev/null and b/public/images/backgrounds/background-322.jpg differ diff --git a/public/images/backgrounds/background-323.jpg b/public/images/backgrounds/background-323.jpg new file mode 100644 index 0000000..93f0d63 Binary files /dev/null and b/public/images/backgrounds/background-323.jpg differ diff --git a/public/images/backgrounds/background-324.jpg b/public/images/backgrounds/background-324.jpg new file mode 100644 index 0000000..1eb09c9 Binary files /dev/null and b/public/images/backgrounds/background-324.jpg differ diff --git a/public/images/backgrounds/background-325.jpg b/public/images/backgrounds/background-325.jpg new file mode 100644 index 0000000..c388ef1 Binary files /dev/null and b/public/images/backgrounds/background-325.jpg differ diff --git a/public/images/backgrounds/background-326.jpg b/public/images/backgrounds/background-326.jpg new file mode 100644 index 0000000..1489832 Binary files /dev/null and b/public/images/backgrounds/background-326.jpg differ diff --git a/public/images/backgrounds/background-327.jpg b/public/images/backgrounds/background-327.jpg new file mode 100644 index 0000000..c8ef97a Binary files /dev/null and b/public/images/backgrounds/background-327.jpg differ diff --git a/public/images/backgrounds/background-328.jpg b/public/images/backgrounds/background-328.jpg new file mode 100644 index 0000000..624a350 Binary files /dev/null and b/public/images/backgrounds/background-328.jpg differ diff --git a/public/images/backgrounds/background-329.jpg b/public/images/backgrounds/background-329.jpg new file mode 100644 index 0000000..2b50480 Binary files /dev/null and b/public/images/backgrounds/background-329.jpg differ diff --git a/public/images/backgrounds/background-33.jpg b/public/images/backgrounds/background-33.jpg new file mode 100644 index 0000000..60227ef Binary files /dev/null and b/public/images/backgrounds/background-33.jpg differ diff --git a/public/images/backgrounds/background-330.jpg b/public/images/backgrounds/background-330.jpg new file mode 100644 index 0000000..74f1839 Binary files /dev/null and b/public/images/backgrounds/background-330.jpg differ diff --git a/public/images/backgrounds/background-331.jpg b/public/images/backgrounds/background-331.jpg new file mode 100644 index 0000000..c926eae Binary files /dev/null and b/public/images/backgrounds/background-331.jpg differ diff --git a/public/images/backgrounds/background-332.jpg b/public/images/backgrounds/background-332.jpg new file mode 100644 index 0000000..4b19f16 Binary files /dev/null and b/public/images/backgrounds/background-332.jpg differ diff --git a/public/images/backgrounds/background-333.jpg b/public/images/backgrounds/background-333.jpg new file mode 100644 index 0000000..91b6abb Binary files /dev/null and b/public/images/backgrounds/background-333.jpg differ diff --git a/public/images/backgrounds/background-334.jpg b/public/images/backgrounds/background-334.jpg new file mode 100644 index 0000000..228d96b Binary files /dev/null and b/public/images/backgrounds/background-334.jpg differ diff --git a/public/images/backgrounds/background-335.jpg b/public/images/backgrounds/background-335.jpg new file mode 100644 index 0000000..5bf2eed Binary files /dev/null and b/public/images/backgrounds/background-335.jpg differ diff --git a/public/images/backgrounds/background-336.jpg b/public/images/backgrounds/background-336.jpg new file mode 100644 index 0000000..512f3f5 Binary files /dev/null and b/public/images/backgrounds/background-336.jpg differ diff --git a/public/images/backgrounds/background-337.jpg b/public/images/backgrounds/background-337.jpg new file mode 100644 index 0000000..a20da2e Binary files /dev/null and b/public/images/backgrounds/background-337.jpg differ diff --git a/public/images/backgrounds/background-338.jpg b/public/images/backgrounds/background-338.jpg new file mode 100644 index 0000000..36475f8 Binary files /dev/null and b/public/images/backgrounds/background-338.jpg differ diff --git a/public/images/backgrounds/background-339.jpg b/public/images/backgrounds/background-339.jpg new file mode 100644 index 0000000..367f164 Binary files /dev/null and b/public/images/backgrounds/background-339.jpg differ diff --git a/public/images/backgrounds/background-34.jpg b/public/images/backgrounds/background-34.jpg new file mode 100644 index 0000000..9f9aa31 Binary files /dev/null and b/public/images/backgrounds/background-34.jpg differ diff --git a/public/images/backgrounds/background-340.jpg b/public/images/backgrounds/background-340.jpg new file mode 100644 index 0000000..eb5be5e Binary files /dev/null and b/public/images/backgrounds/background-340.jpg differ diff --git a/public/images/backgrounds/background-341.jpg b/public/images/backgrounds/background-341.jpg new file mode 100644 index 0000000..6819f36 Binary files /dev/null and b/public/images/backgrounds/background-341.jpg differ diff --git a/public/images/backgrounds/background-342.jpg b/public/images/backgrounds/background-342.jpg new file mode 100644 index 0000000..c5bc411 Binary files /dev/null and b/public/images/backgrounds/background-342.jpg differ diff --git a/public/images/backgrounds/background-343.jpg b/public/images/backgrounds/background-343.jpg new file mode 100644 index 0000000..a22610d Binary files /dev/null and b/public/images/backgrounds/background-343.jpg differ diff --git a/public/images/backgrounds/background-344.jpg b/public/images/backgrounds/background-344.jpg new file mode 100644 index 0000000..72ebc26 Binary files /dev/null and b/public/images/backgrounds/background-344.jpg differ diff --git a/public/images/backgrounds/background-345.jpg b/public/images/backgrounds/background-345.jpg new file mode 100644 index 0000000..1af3962 Binary files /dev/null and b/public/images/backgrounds/background-345.jpg differ diff --git a/public/images/backgrounds/background-346.jpg b/public/images/backgrounds/background-346.jpg new file mode 100644 index 0000000..ee5fcb4 Binary files /dev/null and b/public/images/backgrounds/background-346.jpg differ diff --git a/public/images/backgrounds/background-347.jpg b/public/images/backgrounds/background-347.jpg new file mode 100644 index 0000000..07e55f3 Binary files /dev/null and b/public/images/backgrounds/background-347.jpg differ diff --git a/public/images/backgrounds/background-348.jpg b/public/images/backgrounds/background-348.jpg new file mode 100644 index 0000000..9f9aa31 Binary files /dev/null and b/public/images/backgrounds/background-348.jpg differ diff --git a/public/images/backgrounds/background-349.jpg b/public/images/backgrounds/background-349.jpg new file mode 100644 index 0000000..850a237 Binary files /dev/null and b/public/images/backgrounds/background-349.jpg differ diff --git a/public/images/backgrounds/background-35.jpg b/public/images/backgrounds/background-35.jpg new file mode 100644 index 0000000..ef4cc24 Binary files /dev/null and b/public/images/backgrounds/background-35.jpg differ diff --git a/public/images/backgrounds/background-350.jpg b/public/images/backgrounds/background-350.jpg new file mode 100644 index 0000000..8c0a395 Binary files /dev/null and b/public/images/backgrounds/background-350.jpg differ diff --git a/public/images/backgrounds/background-351.jpg b/public/images/backgrounds/background-351.jpg new file mode 100644 index 0000000..124b108 Binary files /dev/null and b/public/images/backgrounds/background-351.jpg differ diff --git a/public/images/backgrounds/background-352.jpg b/public/images/backgrounds/background-352.jpg new file mode 100644 index 0000000..fef7c44 Binary files /dev/null and b/public/images/backgrounds/background-352.jpg differ diff --git a/public/images/backgrounds/background-353.jpg b/public/images/backgrounds/background-353.jpg new file mode 100644 index 0000000..02251fe Binary files /dev/null and b/public/images/backgrounds/background-353.jpg differ diff --git a/public/images/backgrounds/background-354.jpg b/public/images/backgrounds/background-354.jpg new file mode 100644 index 0000000..90aa1c3 Binary files /dev/null and b/public/images/backgrounds/background-354.jpg differ diff --git a/public/images/backgrounds/background-355.jpg b/public/images/backgrounds/background-355.jpg new file mode 100644 index 0000000..9ca0e63 Binary files /dev/null and b/public/images/backgrounds/background-355.jpg differ diff --git a/public/images/backgrounds/background-356.jpg b/public/images/backgrounds/background-356.jpg new file mode 100644 index 0000000..c7efb18 Binary files /dev/null and b/public/images/backgrounds/background-356.jpg differ diff --git a/public/images/backgrounds/background-357.jpg b/public/images/backgrounds/background-357.jpg new file mode 100644 index 0000000..12c4c7a Binary files /dev/null and b/public/images/backgrounds/background-357.jpg differ diff --git a/public/images/backgrounds/background-358.jpg b/public/images/backgrounds/background-358.jpg new file mode 100644 index 0000000..8675936 Binary files /dev/null and b/public/images/backgrounds/background-358.jpg differ diff --git a/public/images/backgrounds/background-359.jpg b/public/images/backgrounds/background-359.jpg new file mode 100644 index 0000000..691dd47 Binary files /dev/null and b/public/images/backgrounds/background-359.jpg differ diff --git a/public/images/backgrounds/background-36.jpg b/public/images/backgrounds/background-36.jpg new file mode 100644 index 0000000..9ae26aa Binary files /dev/null and b/public/images/backgrounds/background-36.jpg differ diff --git a/public/images/backgrounds/background-360.jpg b/public/images/backgrounds/background-360.jpg new file mode 100644 index 0000000..306a667 Binary files /dev/null and b/public/images/backgrounds/background-360.jpg differ diff --git a/public/images/backgrounds/background-361.jpg b/public/images/backgrounds/background-361.jpg new file mode 100644 index 0000000..99b2105 Binary files /dev/null and b/public/images/backgrounds/background-361.jpg differ diff --git a/public/images/backgrounds/background-362.jpg b/public/images/backgrounds/background-362.jpg new file mode 100644 index 0000000..29ddc41 Binary files /dev/null and b/public/images/backgrounds/background-362.jpg differ diff --git a/public/images/backgrounds/background-363.jpg b/public/images/backgrounds/background-363.jpg new file mode 100644 index 0000000..8196045 Binary files /dev/null and b/public/images/backgrounds/background-363.jpg differ diff --git a/public/images/backgrounds/background-364.jpg b/public/images/backgrounds/background-364.jpg new file mode 100644 index 0000000..430b536 Binary files /dev/null and b/public/images/backgrounds/background-364.jpg differ diff --git a/public/images/backgrounds/background-365.jpg b/public/images/backgrounds/background-365.jpg new file mode 100644 index 0000000..aef8300 Binary files /dev/null and b/public/images/backgrounds/background-365.jpg differ diff --git a/public/images/backgrounds/background-366.jpg b/public/images/backgrounds/background-366.jpg new file mode 100644 index 0000000..14093a5 Binary files /dev/null and b/public/images/backgrounds/background-366.jpg differ diff --git a/public/images/backgrounds/background-367.jpg b/public/images/backgrounds/background-367.jpg new file mode 100644 index 0000000..0a44b12 Binary files /dev/null and b/public/images/backgrounds/background-367.jpg differ diff --git a/public/images/backgrounds/background-37.jpg b/public/images/backgrounds/background-37.jpg new file mode 100644 index 0000000..9bc7c56 Binary files /dev/null and b/public/images/backgrounds/background-37.jpg differ diff --git a/public/images/backgrounds/background-38.jpg b/public/images/backgrounds/background-38.jpg new file mode 100644 index 0000000..f8d6290 Binary files /dev/null and b/public/images/backgrounds/background-38.jpg differ diff --git a/public/images/backgrounds/background-39.jpg b/public/images/backgrounds/background-39.jpg new file mode 100644 index 0000000..1d78658 Binary files /dev/null and b/public/images/backgrounds/background-39.jpg differ diff --git a/public/images/backgrounds/background-4.jpg b/public/images/backgrounds/background-4.jpg new file mode 100644 index 0000000..a7d6487 Binary files /dev/null and b/public/images/backgrounds/background-4.jpg differ diff --git a/public/images/backgrounds/background-40.jpg b/public/images/backgrounds/background-40.jpg new file mode 100644 index 0000000..879381c Binary files /dev/null and b/public/images/backgrounds/background-40.jpg differ diff --git a/public/images/backgrounds/background-41.jpg b/public/images/backgrounds/background-41.jpg new file mode 100644 index 0000000..3b98c52 Binary files /dev/null and b/public/images/backgrounds/background-41.jpg differ diff --git a/public/images/backgrounds/background-42.jpg b/public/images/backgrounds/background-42.jpg new file mode 100644 index 0000000..8cf218f Binary files /dev/null and b/public/images/backgrounds/background-42.jpg differ diff --git a/public/images/backgrounds/background-43.jpg b/public/images/backgrounds/background-43.jpg new file mode 100644 index 0000000..489e21e Binary files /dev/null and b/public/images/backgrounds/background-43.jpg differ diff --git a/public/images/backgrounds/background-44.jpg b/public/images/backgrounds/background-44.jpg new file mode 100644 index 0000000..c416890 Binary files /dev/null and b/public/images/backgrounds/background-44.jpg differ diff --git a/public/images/backgrounds/background-45.jpg b/public/images/backgrounds/background-45.jpg new file mode 100644 index 0000000..92527e9 Binary files /dev/null and b/public/images/backgrounds/background-45.jpg differ diff --git a/public/images/backgrounds/background-46.jpg b/public/images/backgrounds/background-46.jpg new file mode 100644 index 0000000..93cd26a Binary files /dev/null and b/public/images/backgrounds/background-46.jpg differ diff --git a/public/images/backgrounds/background-47.jpg b/public/images/backgrounds/background-47.jpg new file mode 100644 index 0000000..8abf9e8 Binary files /dev/null and b/public/images/backgrounds/background-47.jpg differ diff --git a/public/images/backgrounds/background-48.jpg b/public/images/backgrounds/background-48.jpg new file mode 100644 index 0000000..d828c78 Binary files /dev/null and b/public/images/backgrounds/background-48.jpg differ diff --git a/public/images/backgrounds/background-49.jpg b/public/images/backgrounds/background-49.jpg new file mode 100644 index 0000000..1c2a06a Binary files /dev/null and b/public/images/backgrounds/background-49.jpg differ diff --git a/public/images/backgrounds/background-5.jpg b/public/images/backgrounds/background-5.jpg new file mode 100644 index 0000000..2cc8a12 Binary files /dev/null and b/public/images/backgrounds/background-5.jpg differ diff --git a/public/images/backgrounds/background-50.jpg b/public/images/backgrounds/background-50.jpg new file mode 100644 index 0000000..9b0581f Binary files /dev/null and b/public/images/backgrounds/background-50.jpg differ diff --git a/public/images/backgrounds/background-51.jpg b/public/images/backgrounds/background-51.jpg new file mode 100644 index 0000000..bf49103 Binary files /dev/null and b/public/images/backgrounds/background-51.jpg differ diff --git a/public/images/backgrounds/background-52.jpg b/public/images/backgrounds/background-52.jpg new file mode 100644 index 0000000..5832a7b Binary files /dev/null and b/public/images/backgrounds/background-52.jpg differ diff --git a/public/images/backgrounds/background-53.jpg b/public/images/backgrounds/background-53.jpg new file mode 100644 index 0000000..baf82f4 Binary files /dev/null and b/public/images/backgrounds/background-53.jpg differ diff --git a/public/images/backgrounds/background-54.jpg b/public/images/backgrounds/background-54.jpg new file mode 100644 index 0000000..193545a Binary files /dev/null and b/public/images/backgrounds/background-54.jpg differ diff --git a/public/images/backgrounds/background-55.jpg b/public/images/backgrounds/background-55.jpg new file mode 100644 index 0000000..4c7d1f7 Binary files /dev/null and b/public/images/backgrounds/background-55.jpg differ diff --git a/public/images/backgrounds/background-56.jpg b/public/images/backgrounds/background-56.jpg new file mode 100644 index 0000000..2227405 Binary files /dev/null and b/public/images/backgrounds/background-56.jpg differ diff --git a/public/images/backgrounds/background-57.jpg b/public/images/backgrounds/background-57.jpg new file mode 100644 index 0000000..976a4ed Binary files /dev/null and b/public/images/backgrounds/background-57.jpg differ diff --git a/public/images/backgrounds/background-58.jpg b/public/images/backgrounds/background-58.jpg new file mode 100644 index 0000000..f087f46 Binary files /dev/null and b/public/images/backgrounds/background-58.jpg differ diff --git a/public/images/backgrounds/background-59.jpg b/public/images/backgrounds/background-59.jpg new file mode 100644 index 0000000..f32a924 Binary files /dev/null and b/public/images/backgrounds/background-59.jpg differ diff --git a/public/images/backgrounds/background-6.jpg b/public/images/backgrounds/background-6.jpg new file mode 100644 index 0000000..746b815 Binary files /dev/null and b/public/images/backgrounds/background-6.jpg differ diff --git a/public/images/backgrounds/background-60.jpg b/public/images/backgrounds/background-60.jpg new file mode 100644 index 0000000..02a2e32 Binary files /dev/null and b/public/images/backgrounds/background-60.jpg differ diff --git a/public/images/backgrounds/background-61.jpg b/public/images/backgrounds/background-61.jpg new file mode 100644 index 0000000..ca8d018 Binary files /dev/null and b/public/images/backgrounds/background-61.jpg differ diff --git a/public/images/backgrounds/background-62.jpg b/public/images/backgrounds/background-62.jpg new file mode 100644 index 0000000..ef6d1cb Binary files /dev/null and b/public/images/backgrounds/background-62.jpg differ diff --git a/public/images/backgrounds/background-63.jpg b/public/images/backgrounds/background-63.jpg new file mode 100644 index 0000000..d31a053 Binary files /dev/null and b/public/images/backgrounds/background-63.jpg differ diff --git a/public/images/backgrounds/background-64.jpg b/public/images/backgrounds/background-64.jpg new file mode 100644 index 0000000..02251fe Binary files /dev/null and b/public/images/backgrounds/background-64.jpg differ diff --git a/public/images/backgrounds/background-65.jpg b/public/images/backgrounds/background-65.jpg new file mode 100644 index 0000000..9d2ff2c Binary files /dev/null and b/public/images/backgrounds/background-65.jpg differ diff --git a/public/images/backgrounds/background-66.jpg b/public/images/backgrounds/background-66.jpg new file mode 100644 index 0000000..3f64642 Binary files /dev/null and b/public/images/backgrounds/background-66.jpg differ diff --git a/public/images/backgrounds/background-67.jpg b/public/images/backgrounds/background-67.jpg new file mode 100644 index 0000000..79a6088 Binary files /dev/null and b/public/images/backgrounds/background-67.jpg differ diff --git a/public/images/backgrounds/background-68.jpg b/public/images/backgrounds/background-68.jpg new file mode 100644 index 0000000..9ffafa0 Binary files /dev/null and b/public/images/backgrounds/background-68.jpg differ diff --git a/public/images/backgrounds/background-69.jpg b/public/images/backgrounds/background-69.jpg new file mode 100644 index 0000000..faad302 Binary files /dev/null and b/public/images/backgrounds/background-69.jpg differ diff --git a/public/images/backgrounds/background-7.jpg b/public/images/backgrounds/background-7.jpg new file mode 100644 index 0000000..6731543 Binary files /dev/null and b/public/images/backgrounds/background-7.jpg differ diff --git a/public/images/backgrounds/background-70.jpg b/public/images/backgrounds/background-70.jpg new file mode 100644 index 0000000..cd52a24 Binary files /dev/null and b/public/images/backgrounds/background-70.jpg differ diff --git a/public/images/backgrounds/background-71.jpg b/public/images/backgrounds/background-71.jpg new file mode 100644 index 0000000..95f8c52 Binary files /dev/null and b/public/images/backgrounds/background-71.jpg differ diff --git a/public/images/backgrounds/background-72.jpg b/public/images/backgrounds/background-72.jpg new file mode 100644 index 0000000..b104890 Binary files /dev/null and b/public/images/backgrounds/background-72.jpg differ diff --git a/public/images/backgrounds/background-73.jpg b/public/images/backgrounds/background-73.jpg new file mode 100644 index 0000000..ce383e8 Binary files /dev/null and b/public/images/backgrounds/background-73.jpg differ diff --git a/public/images/backgrounds/background-74.jpg b/public/images/backgrounds/background-74.jpg new file mode 100644 index 0000000..4c6d59d Binary files /dev/null and b/public/images/backgrounds/background-74.jpg differ diff --git a/public/images/backgrounds/background-75.jpg b/public/images/backgrounds/background-75.jpg new file mode 100644 index 0000000..5a5bb74 Binary files /dev/null and b/public/images/backgrounds/background-75.jpg differ diff --git a/public/images/backgrounds/background-76.jpg b/public/images/backgrounds/background-76.jpg new file mode 100644 index 0000000..39f035c Binary files /dev/null and b/public/images/backgrounds/background-76.jpg differ diff --git a/public/images/backgrounds/background-77.jpg b/public/images/backgrounds/background-77.jpg new file mode 100644 index 0000000..e2d4512 Binary files /dev/null and b/public/images/backgrounds/background-77.jpg differ diff --git a/public/images/backgrounds/background-78.jpg b/public/images/backgrounds/background-78.jpg new file mode 100644 index 0000000..a72f965 Binary files /dev/null and b/public/images/backgrounds/background-78.jpg differ diff --git a/public/images/backgrounds/background-79.jpg b/public/images/backgrounds/background-79.jpg new file mode 100644 index 0000000..3a3550d Binary files /dev/null and b/public/images/backgrounds/background-79.jpg differ diff --git a/public/images/backgrounds/background-8.jpg b/public/images/backgrounds/background-8.jpg new file mode 100644 index 0000000..bcc901f Binary files /dev/null and b/public/images/backgrounds/background-8.jpg differ diff --git a/public/images/backgrounds/background-80.jpg b/public/images/backgrounds/background-80.jpg new file mode 100644 index 0000000..9c32a5b Binary files /dev/null and b/public/images/backgrounds/background-80.jpg differ diff --git a/public/images/backgrounds/background-81.jpg b/public/images/backgrounds/background-81.jpg new file mode 100644 index 0000000..f0a1b61 Binary files /dev/null and b/public/images/backgrounds/background-81.jpg differ diff --git a/public/images/backgrounds/background-82.jpg b/public/images/backgrounds/background-82.jpg new file mode 100644 index 0000000..11e4911 Binary files /dev/null and b/public/images/backgrounds/background-82.jpg differ diff --git a/public/images/backgrounds/background-83.jpg b/public/images/backgrounds/background-83.jpg new file mode 100644 index 0000000..2df21a2 Binary files /dev/null and b/public/images/backgrounds/background-83.jpg differ diff --git a/public/images/backgrounds/background-84.jpg b/public/images/backgrounds/background-84.jpg new file mode 100644 index 0000000..3990ae3 Binary files /dev/null and b/public/images/backgrounds/background-84.jpg differ diff --git a/public/images/backgrounds/background-85.jpg b/public/images/backgrounds/background-85.jpg new file mode 100644 index 0000000..e62a028 Binary files /dev/null and b/public/images/backgrounds/background-85.jpg differ diff --git a/public/images/backgrounds/background-86.jpg b/public/images/backgrounds/background-86.jpg new file mode 100644 index 0000000..e955338 Binary files /dev/null and b/public/images/backgrounds/background-86.jpg differ diff --git a/public/images/backgrounds/background-87.jpg b/public/images/backgrounds/background-87.jpg new file mode 100644 index 0000000..bea9f8a Binary files /dev/null and b/public/images/backgrounds/background-87.jpg differ diff --git a/public/images/backgrounds/background-88.jpg b/public/images/backgrounds/background-88.jpg new file mode 100644 index 0000000..3aebf0c Binary files /dev/null and b/public/images/backgrounds/background-88.jpg differ diff --git a/public/images/backgrounds/background-89.jpg b/public/images/backgrounds/background-89.jpg new file mode 100644 index 0000000..f635a4e Binary files /dev/null and b/public/images/backgrounds/background-89.jpg differ diff --git a/public/images/backgrounds/background-9.jpg b/public/images/backgrounds/background-9.jpg new file mode 100644 index 0000000..00dc4be Binary files /dev/null and b/public/images/backgrounds/background-9.jpg differ diff --git a/public/images/backgrounds/background-90.jpg b/public/images/backgrounds/background-90.jpg new file mode 100644 index 0000000..632af3c Binary files /dev/null and b/public/images/backgrounds/background-90.jpg differ diff --git a/public/images/backgrounds/background-91.jpg b/public/images/backgrounds/background-91.jpg new file mode 100644 index 0000000..2b9e3a4 Binary files /dev/null and b/public/images/backgrounds/background-91.jpg differ diff --git a/public/images/backgrounds/background-92.jpg b/public/images/backgrounds/background-92.jpg new file mode 100644 index 0000000..f80bec1 Binary files /dev/null and b/public/images/backgrounds/background-92.jpg differ diff --git a/public/images/backgrounds/background-93.jpg b/public/images/backgrounds/background-93.jpg new file mode 100644 index 0000000..94575e1 Binary files /dev/null and b/public/images/backgrounds/background-93.jpg differ diff --git a/public/images/backgrounds/background-94.jpg b/public/images/backgrounds/background-94.jpg new file mode 100644 index 0000000..7e0273d Binary files /dev/null and b/public/images/backgrounds/background-94.jpg differ diff --git a/public/images/backgrounds/background-95.jpg b/public/images/backgrounds/background-95.jpg new file mode 100644 index 0000000..7fc9c39 Binary files /dev/null and b/public/images/backgrounds/background-95.jpg differ diff --git a/public/images/backgrounds/background-96.jpg b/public/images/backgrounds/background-96.jpg new file mode 100644 index 0000000..d978adc Binary files /dev/null and b/public/images/backgrounds/background-96.jpg differ diff --git a/public/images/backgrounds/background-97.jpg b/public/images/backgrounds/background-97.jpg new file mode 100644 index 0000000..fcfe0c9 Binary files /dev/null and b/public/images/backgrounds/background-97.jpg differ diff --git a/public/images/backgrounds/background-98.jpg b/public/images/backgrounds/background-98.jpg new file mode 100644 index 0000000..8b91a7f Binary files /dev/null and b/public/images/backgrounds/background-98.jpg differ diff --git a/public/images/backgrounds/background-99.jpg b/public/images/backgrounds/background-99.jpg new file mode 100644 index 0000000..173e923 Binary files /dev/null and b/public/images/backgrounds/background-99.jpg differ diff --git a/styles/index.css b/styles/index.css new file mode 100644 index 0000000..da5b6db --- /dev/null +++ b/styles/index.css @@ -0,0 +1,55 @@ +html, +body { + padding: 0; + margin: 0; +} + +.cardContainer { + font-family: "Dancing Script"; + width: 980px; + position: relative; +} + +.cardBackground { +} + +.cardCopy { + color: white; + font-size: 40px; + font-weight: bold; + z-index: 999; + position: absolute; + top: 200px; + left: cal; + width: 100%; + text-align: center; +} + +.cardDaysCount { + font-size: 200px; + /* -webkit-text-fill-color: white; + -webkit-text-stroke-width: 5px; + -webkit-text-stroke-color: #cc3333; */ + + text-shadow: 1px 1px 0 #cc3333, 1px 1px 0 #cc3333, 1px -1px 0 #cc3333, + -1px -1px 0 #cc3333; +} + +.daysToNumber { + font-size: 250px; + -webkit-text-fill-color: #cc3333; + -webkit-text-stroke-width: 5px; + -webkit-text-stroke-color: white; +} + +.cardUntil { +} + +.cardWaterMark { + font-family: "Amatic SC"; + position: relative; + bottom: 70px; + font-size: 40px; + color: white; + left: 35px; +} diff --git a/yarn.lock b/yarn.lock index 01b9877..563d186 100644 --- a/yarn.lock +++ b/yarn.lock @@ -46,6 +46,21 @@ resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== +"@mapbox/node-pre-gyp@^1.0.0": + version "1.0.8" + resolved "https://registry.yarnpkg.com/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.8.tgz#32abc8a5c624bc4e46c43d84dfb8b26d33a96f58" + integrity sha512-CMGKi28CF+qlbXh26hDe6NxCd7amqeAzEqnS6IHeO6LoaKyM/n+Xw3HT1COdq8cuioOdlKdqn/hCmqPUOMOywg== + dependencies: + detect-libc "^1.0.3" + https-proxy-agent "^5.0.0" + make-dir "^3.1.0" + node-fetch "^2.6.5" + nopt "^5.0.0" + npmlog "^5.0.1" + rimraf "^3.0.2" + semver "^7.3.5" + tar "^6.1.11" + "@next/env@12.1.0": version "12.1.0" resolved "https://registry.yarnpkg.com/@next/env/-/env-12.1.0.tgz#73713399399b34aa5a01771fb73272b55b22c314" @@ -188,6 +203,19 @@ "@typescript-eslint/types" "5.14.0" eslint-visitor-keys "^3.0.0" +abbrev@1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" + integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== + +accepts@~1.3.8: + version "1.3.8" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" + integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== + dependencies: + mime-types "~2.1.34" + negotiator "0.6.3" + acorn-jsx@^5.3.1: version "5.3.2" resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" @@ -198,6 +226,13 @@ acorn@^8.7.0: resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.0.tgz#90951fde0f8f09df93549481e5fc141445b791cf" integrity sha512-V/LGr1APy+PXIwKebEWrkZPwoeoF+w1jiOBUmuxuiUIaOHtob8Qc9BTrYo7VuI5fR8tqsy+buA2WFooR5olqvQ== +agent-base@6: + version "6.0.2" + resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" + integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== + dependencies: + debug "4" + ajv@^6.10.0, ajv@^6.12.4: version "6.12.6" resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" @@ -220,6 +255,19 @@ ansi-styles@^4.1.0: dependencies: color-convert "^2.0.1" +"aproba@^1.0.3 || ^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-2.0.0.tgz#52520b8ae5b569215b354efc0caa3fe1e45a8adc" + integrity sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ== + +are-we-there-yet@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz#372e0e7bd279d8e94c653aaa1f67200884bf3e1c" + integrity sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw== + dependencies: + delegates "^1.0.0" + readable-stream "^3.6.0" + argparse@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" @@ -233,6 +281,11 @@ aria-query@^4.2.2: "@babel/runtime" "^7.10.2" "@babel/runtime-corejs3" "^7.10.2" +array-flatten@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= + array-includes@^3.1.3, array-includes@^3.1.4: version "3.1.4" resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.4.tgz#f5b493162c760f3539631f005ba2bb46acb45ba9" @@ -287,6 +340,22 @@ balanced-match@^1.0.0: resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== +body-parser@1.19.2: + version "1.19.2" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.2.tgz#4714ccd9c157d44797b8b5607d72c0b89952f26e" + integrity sha512-SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw== + dependencies: + bytes "3.1.2" + content-type "~1.0.4" + debug "2.6.9" + depd "~1.1.2" + http-errors "1.8.1" + iconv-lite "0.4.24" + on-finished "~2.3.0" + qs "6.9.7" + raw-body "2.4.3" + type-is "~1.6.18" + brace-expansion@^1.1.7: version "1.1.11" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" @@ -302,6 +371,11 @@ braces@^3.0.1: dependencies: fill-range "^7.0.1" +bytes@3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" + integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== + call-bind@^1.0.0, call-bind@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" @@ -320,6 +394,20 @@ caniuse-lite@^1.0.30001283: resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001316.tgz#b44a1f419f82d2e119aa0bbdab5ec15471796358" integrity sha512-JgUdNoZKxPZFzbzJwy4hDSyGuH/gXz2rN51QmoR8cBQsVo58llD3A0vlRKKRt8FGf5u69P9eQyIH8/z9vN/S0Q== +canvas@^2.9.0: + version "2.9.0" + resolved "https://registry.yarnpkg.com/canvas/-/canvas-2.9.0.tgz#7df0400b141a7e42e597824f377935ba96880f2a" + integrity sha512-0l93g7uxp7rMyr7H+XRQ28A3ud0dKIUTIEkUe1Dxh4rjUYN7B93+SjC3r1PDKA18xcQN87OFGgUnyw7LSgNLSQ== + dependencies: + "@mapbox/node-pre-gyp" "^1.0.0" + nan "^2.15.0" + simple-get "^3.0.3" + +canvaskit-wasm@^0.33.0: + version "0.33.0" + resolved "https://registry.yarnpkg.com/canvaskit-wasm/-/canvaskit-wasm-0.33.0.tgz#6fac65914429464911426b14f3314cf3e5ea064e" + integrity sha512-6+RZuf6uid+kYBB5ME657+9gT/fHM8ZC/C0R0zjcCzVujLWvenwW5a1ropUgw2O9lY+xX9inxnkvbwE62yVLOg== + chalk@^4.0.0: version "4.1.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" @@ -328,6 +416,11 @@ chalk@^4.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" +chownr@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" + integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== + color-convert@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" @@ -340,11 +433,43 @@ color-name@~1.1.4: resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== +color-support@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" + integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== + concat-map@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= +console-control-strings@^1.0.0, console-control-strings@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= + +content-disposition@0.5.4: + version "0.5.4" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" + integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== + dependencies: + safe-buffer "5.2.1" + +content-type@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" + integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== + +cookie-signature@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= + +cookie@0.4.2: + version "0.4.2" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.2.tgz#0e41f24de5ecf317947c82fc789e06a884824432" + integrity sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA== + core-js-pure@^3.20.2: version "3.21.1" resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.21.1.tgz#8c4d1e78839f5f46208de7230cebfb72bc3bdb51" @@ -364,13 +489,20 @@ damerau-levenshtein@^1.0.7: resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7" integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== -debug@^2.6.9: +debug@2.6.9, debug@^2.6.9: version "2.6.9" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== dependencies: ms "2.0.0" +debug@4, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2: + version "4.3.3" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" + integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== + dependencies: + ms "2.1.2" + debug@^3.2.7: version "3.2.7" resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" @@ -378,12 +510,12 @@ debug@^3.2.7: dependencies: ms "^2.1.1" -debug@^4.1.1, debug@^4.3.1, debug@^4.3.2: - version "4.3.3" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.3.tgz#04266e0b70a98d4462e6e288e38259213332b664" - integrity sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q== +decompress-response@^4.2.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-4.2.1.tgz#414023cc7a302da25ce2ec82d0d5238ccafd8986" + integrity sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw== dependencies: - ms "2.1.2" + mimic-response "^2.0.0" deep-is@^0.1.3: version "0.1.4" @@ -397,6 +529,26 @@ define-properties@^1.1.3: dependencies: object-keys "^1.0.12" +delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= + +depd@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" + integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= + +destroy@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" + integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= + +detect-libc@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" + integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= + dir-glob@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" @@ -418,11 +570,26 @@ doctrine@^3.0.0: dependencies: esutils "^2.0.2" +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + emoji-regex@^9.2.2: version "9.2.2" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== +encodeurl@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= + es-abstract@^1.19.0, es-abstract@^1.19.1: version "1.19.1" resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.19.1.tgz#d4885796876916959de78edaa0df456627115ec3" @@ -458,6 +625,11 @@ es-to-primitive@^1.2.1: is-date-object "^1.0.1" is-symbol "^1.0.2" +escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= + escape-string-regexp@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" @@ -666,6 +838,47 @@ esutils@^2.0.2: resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== +etag@~1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= + +express@^4.17.3: + version "4.17.3" + resolved "https://registry.yarnpkg.com/express/-/express-4.17.3.tgz#f6c7302194a4fb54271b73a1fe7a06478c8f85a1" + integrity sha512-yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg== + dependencies: + accepts "~1.3.8" + array-flatten "1.1.1" + body-parser "1.19.2" + content-disposition "0.5.4" + content-type "~1.0.4" + cookie "0.4.2" + cookie-signature "1.0.6" + debug "2.6.9" + depd "~1.1.2" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + finalhandler "~1.1.2" + fresh "0.5.2" + merge-descriptors "1.0.1" + methods "~1.1.2" + on-finished "~2.3.0" + parseurl "~1.3.3" + path-to-regexp "0.1.7" + proxy-addr "~2.0.7" + qs "6.9.7" + range-parser "~1.2.1" + safe-buffer "5.2.1" + send "0.17.2" + serve-static "1.14.2" + setprototypeof "1.2.0" + statuses "~1.5.0" + type-is "~1.6.18" + utils-merge "1.0.1" + vary "~1.1.2" + fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" @@ -713,6 +926,19 @@ fill-range@^7.0.1: dependencies: to-regex-range "^5.0.1" +finalhandler@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" + integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== + dependencies: + debug "2.6.9" + encodeurl "~1.0.2" + escape-html "~1.0.3" + on-finished "~2.3.0" + parseurl "~1.3.3" + statuses "~1.5.0" + unpipe "~1.0.0" + find-up@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" @@ -733,11 +959,33 @@ flatted@^3.1.0: resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.5.tgz#76c8584f4fc843db64702a6bd04ab7a8bd666da3" integrity sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg== +forwarded@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" + integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== + +fresh@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= + +fs-minipass@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" + integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== + dependencies: + minipass "^3.0.0" + fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= +fs@^0.0.1-security: + version "0.0.1-security" + resolved "https://registry.yarnpkg.com/fs/-/fs-0.0.1-security.tgz#8a7bd37186b6dddf3813f23858b57ecaaf5e41d4" + integrity sha1-invTcYa23d84E/I4WLV+yq9eQdQ= + function-bind@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" @@ -748,6 +996,21 @@ functional-red-black-tree@^1.0.1: resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= +gauge@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-3.0.2.tgz#03bf4441c044383908bcfa0656ad91803259b395" + integrity sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q== + dependencies: + aproba "^1.0.3 || ^2.0.0" + color-support "^1.1.2" + console-control-strings "^1.0.0" + has-unicode "^2.0.1" + object-assign "^4.1.1" + signal-exit "^3.0.0" + string-width "^4.2.3" + strip-ansi "^6.0.1" + wide-align "^1.1.2" + get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" @@ -844,6 +1107,11 @@ has-tostringtag@^1.0.0: dependencies: has-symbols "^1.0.2" +has-unicode@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= + has@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" @@ -851,6 +1119,32 @@ has@^1.0.3: dependencies: function-bind "^1.1.1" +http-errors@1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.8.1.tgz#7c3f28577cbc8a207388455dbd62295ed07bd68c" + integrity sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g== + dependencies: + depd "~1.1.2" + inherits "2.0.4" + setprototypeof "1.2.0" + statuses ">= 1.5.0 < 2" + toidentifier "1.0.1" + +https-proxy-agent@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2" + integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== + dependencies: + agent-base "6" + debug "4" + +iconv-lite@0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + ignore@^5.2.0: version "5.2.0" resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" @@ -877,11 +1171,16 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2: +inherits@2, inherits@2.0.4, inherits@^2.0.3: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== +inherits@2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= + internal-slot@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c" @@ -891,6 +1190,11 @@ internal-slot@^1.0.3: has "^1.0.3" side-channel "^1.0.4" +ipaddr.js@1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" + integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== + is-bigint@^1.0.1: version "1.0.4" resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" @@ -930,6 +1234,11 @@ is-extglob@^2.1.1: resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: version "4.0.3" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" @@ -1077,11 +1386,33 @@ lru-cache@^6.0.0: dependencies: yallist "^4.0.0" +make-dir@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" + integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== + dependencies: + semver "^6.0.0" + +media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= + +merge-descriptors@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= + merge2@^1.3.0, merge2@^1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== +methods@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= + micromatch@^4.0.4: version "4.0.4" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" @@ -1090,6 +1421,28 @@ micromatch@^4.0.4: braces "^3.0.1" picomatch "^2.2.3" +mime-db@1.52.0: + version "1.52.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== + +mime-types@~2.1.24, mime-types@~2.1.34: + version "2.1.35" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== + dependencies: + mime-db "1.52.0" + +mime@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + +mimic-response@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-2.1.0.tgz#d13763d35f613d09ec37ebb30bac0469c0ee8f43" + integrity sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA== + minimatch@^3.0.4, minimatch@^3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" @@ -1102,6 +1455,26 @@ minimist@^1.2.0: resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== +minipass@^3.0.0: + version "3.1.6" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.6.tgz#3b8150aa688a711a1521af5e8779c1d3bb4f45ee" + integrity sha512-rty5kpw9/z8SX9dmxblFA6edItUmwJgMeYDZRrwlIVN27i8gysGbznJwUggw2V/FVqFSDdWy040ZPS811DYAqQ== + dependencies: + yallist "^4.0.0" + +minizlib@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" + integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== + dependencies: + minipass "^3.0.0" + yallist "^4.0.0" + +mkdirp@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" + integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== + ms@2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" @@ -1112,11 +1485,16 @@ ms@2.1.2: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== -ms@^2.1.1: +ms@2.1.3, ms@^2.1.1: version "2.1.3" resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== +nan@^2.15.0: + version "2.15.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.15.0.tgz#3f34a473ff18e15c1b5626b62903b5ad6e665fee" + integrity sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ== + nanoid@^3.1.30: version "3.3.1" resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.1.tgz#6347a18cac88af88f58af0b3594b723d5e99bb35" @@ -1127,6 +1505,11 @@ natural-compare@^1.4.0: resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= +negotiator@0.6.3: + version "0.6.3" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" + integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== + next@12.1.0: version "12.1.0" resolved "https://registry.yarnpkg.com/next/-/next-12.1.0.tgz#c33d753b644be92fc58e06e5a214f143da61dd5d" @@ -1150,6 +1533,30 @@ next@12.1.0: "@next/swc-win32-ia32-msvc" "12.1.0" "@next/swc-win32-x64-msvc" "12.1.0" +node-fetch@^2.6.5: + version "2.6.7" + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" + integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== + dependencies: + whatwg-url "^5.0.0" + +nopt@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88" + integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ== + dependencies: + abbrev "1" + +npmlog@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-5.0.1.tgz#f06678e80e29419ad67ab964e0fa69959c1eb8b0" + integrity sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw== + dependencies: + are-we-there-yet "^2.0.0" + console-control-strings "^1.1.0" + gauge "^3.0.0" + set-blocking "^2.0.0" + object-assign@^4.1.1: version "4.1.1" resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" @@ -1210,7 +1617,14 @@ object.values@^1.1.5: define-properties "^1.1.3" es-abstract "^1.19.1" -once@^1.3.0: +on-finished@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" + integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= + dependencies: + ee-first "1.1.1" + +once@^1.3.0, once@^1.3.1: version "1.4.0" resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= @@ -1255,6 +1669,11 @@ parent-module@^1.0.0: dependencies: callsites "^3.0.0" +parseurl@~1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== + path-exists@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" @@ -1275,11 +1694,24 @@ path-parse@^1.0.6, path-parse@^1.0.7: resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== +path-to-regexp@0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= + path-type@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== +path@^0.12.7: + version "0.12.7" + resolved "https://registry.yarnpkg.com/path/-/path-0.12.7.tgz#d4dc2a506c4ce2197eb481ebfcd5b36c0140b10f" + integrity sha1-1NwqUGxM4hl+tIHr/NWzbAFAsQ8= + dependencies: + process "^0.11.1" + util "^0.10.3" + picocolors@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" @@ -1304,6 +1736,11 @@ prelude-ls@^1.2.1: resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== +process@^0.11.1: + version "0.11.10" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= + prop-types@^15.8.1: version "15.8.1" resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" @@ -1313,16 +1750,44 @@ prop-types@^15.8.1: object-assign "^4.1.1" react-is "^16.13.1" +proxy-addr@~2.0.7: + version "2.0.7" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" + integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== + dependencies: + forwarded "0.2.0" + ipaddr.js "1.9.1" + punycode@^2.1.0: version "2.1.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== +qs@6.9.7: + version "6.9.7" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.9.7.tgz#4610846871485e1e048f44ae3b94033f0e675afe" + integrity sha512-IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw== + queue-microtask@^1.2.2: version "1.2.3" resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== +range-parser@~1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== + +raw-body@2.4.3: + version "2.4.3" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.3.tgz#8f80305d11c2a0a545c2d9d89d7a0286fcead43c" + integrity sha512-UlTNLIcu0uzb4D2f4WltY6cVjLi+/jEN4lgEUj3E04tpMDpUlkBo/eSn6zou9hum2VMNpCCUone0O0WeJim07g== + dependencies: + bytes "3.1.2" + http-errors "1.8.1" + iconv-lite "0.4.24" + unpipe "1.0.0" + react-dom@17.0.2: version "17.0.2" resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-17.0.2.tgz#ecffb6845e3ad8dbfcdc498f0d0a939736502c23" @@ -1345,6 +1810,15 @@ react@17.0.2: loose-envify "^1.1.0" object-assign "^4.1.1" +readable-stream@^3.6.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" + integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + regenerator-runtime@^0.13.4: version "0.13.9" resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52" @@ -1404,6 +1878,16 @@ run-parallel@^1.1.9: dependencies: queue-microtask "^1.2.2" +safe-buffer@5.2.1, safe-buffer@~5.2.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +"safer-buffer@>= 2.1.2 < 3": + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + scheduler@^0.20.2: version "0.20.2" resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.20.2.tgz#4baee39436e34aa93b4874bddcbf0fe8b8b50e91" @@ -1412,7 +1896,7 @@ scheduler@^0.20.2: loose-envify "^1.1.0" object-assign "^4.1.1" -semver@^6.3.0: +semver@^6.0.0, semver@^6.3.0: version "6.3.0" resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== @@ -1424,6 +1908,45 @@ semver@^7.3.5: dependencies: lru-cache "^6.0.0" +send@0.17.2: + version "0.17.2" + resolved "https://registry.yarnpkg.com/send/-/send-0.17.2.tgz#926622f76601c41808012c8bf1688fe3906f7820" + integrity sha512-UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww== + dependencies: + debug "2.6.9" + depd "~1.1.2" + destroy "~1.0.4" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + fresh "0.5.2" + http-errors "1.8.1" + mime "1.6.0" + ms "2.1.3" + on-finished "~2.3.0" + range-parser "~1.2.1" + statuses "~1.5.0" + +serve-static@1.14.2: + version "1.14.2" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.2.tgz#722d6294b1d62626d41b43a013ece4598d292bfa" + integrity sha512-+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ== + dependencies: + encodeurl "~1.0.2" + escape-html "~1.0.3" + parseurl "~1.3.3" + send "0.17.2" + +set-blocking@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= + +setprototypeof@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" + integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== + shebang-command@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" @@ -1445,6 +1968,25 @@ side-channel@^1.0.4: get-intrinsic "^1.0.2" object-inspect "^1.9.0" +signal-exit@^3.0.0: + version "3.0.7" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" + integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== + +simple-concat@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" + integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== + +simple-get@^3.0.3: + version "3.1.1" + resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-3.1.1.tgz#cc7ba77cfbe761036fbfce3d021af25fc5584d55" + integrity sha512-CQ5LTKGfCpvE1K0n2us+kuMPbk/q0EKl82s4aheV9oXjFEz6W/Y7oQFVJuU6QG77hRT4Ghb5RURteF5vnWjupA== + dependencies: + decompress-response "^4.2.0" + once "^1.3.1" + simple-concat "^1.0.0" + slash@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" @@ -1455,6 +1997,20 @@ source-map-js@^1.0.1: resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== +"statuses@>= 1.5.0 < 2", statuses@~1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" + integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= + +"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.2.3: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + string.prototype.matchall@^4.0.6: version "4.0.6" resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.6.tgz#5abb5dabc94c7b0ea2380f65ba610b3a544b15fa" @@ -1485,6 +2041,13 @@ string.prototype.trimstart@^1.0.4: call-bind "^1.0.2" define-properties "^1.1.3" +string_decoder@^1.1.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== + dependencies: + safe-buffer "~5.2.0" + strip-ansi@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" @@ -1519,6 +2082,18 @@ supports-preserve-symlinks-flag@^1.0.0: resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== +tar@^6.1.11: + version "6.1.11" + resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz#6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621" + integrity sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA== + dependencies: + chownr "^2.0.0" + fs-minipass "^2.0.0" + minipass "^3.0.0" + minizlib "^2.1.1" + mkdirp "^1.0.3" + yallist "^4.0.0" + text-table@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" @@ -1531,6 +2106,16 @@ to-regex-range@^5.0.1: dependencies: is-number "^7.0.0" +toidentifier@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" + integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== + +tr46@~0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" + integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o= + tsconfig-paths@^3.12.0, tsconfig-paths@^3.9.0: version "3.14.0" resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.0.tgz#4fcc48f9ccea8826c41b9ca093479de7f5018976" @@ -1565,6 +2150,14 @@ type-fest@^0.20.2: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== +type-is@~1.6.18: + version "1.6.18" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" + integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== + dependencies: + media-typer "0.3.0" + mime-types "~2.1.24" + unbox-primitive@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471" @@ -1575,6 +2168,11 @@ unbox-primitive@^1.0.1: has-symbols "^1.0.2" which-boxed-primitive "^1.0.2" +unpipe@1.0.0, unpipe@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= + uri-js@^4.2.2: version "4.4.1" resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" @@ -1589,11 +2187,46 @@ use-subscription@1.5.1: dependencies: object-assign "^4.1.1" +util-deprecate@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= + +util@^0.10.3: + version "0.10.4" + resolved "https://registry.yarnpkg.com/util/-/util-0.10.4.tgz#3aa0125bfe668a4672de58857d3ace27ecb76901" + integrity sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A== + dependencies: + inherits "2.0.3" + +utils-merge@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= + v8-compile-cache@^2.0.3: version "2.3.0" resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== +vary@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= + +webidl-conversions@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" + integrity sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE= + +whatwg-url@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" + integrity sha1-lmRU6HZUYuN2RNNib2dCzotwll0= + dependencies: + tr46 "~0.0.3" + webidl-conversions "^3.0.0" + which-boxed-primitive@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" @@ -1612,6 +2245,13 @@ which@^2.0.1: dependencies: isexe "^2.0.0" +wide-align@^1.1.2: + version "1.1.5" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.5.tgz#df1d4c206854369ecf3c9a4898f1b23fbd9d15d3" + integrity sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg== + dependencies: + string-width "^1.0.2 || 2 || 3 || 4" + word-wrap@^1.2.3: version "1.2.3" resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"