First implementation of email service

- Sending welcome email uppon register
 - Test email configuration API for admins
 - basic reset password - not implemented
This commit is contained in:
Sagi Dayan 2020-05-12 21:30:11 -04:00
parent 2df7210336
commit accbc5c35c
45 changed files with 1867 additions and 675 deletions

View file

@ -3,9 +3,10 @@ const User = use('App/Models/User');
const Child = use('App/Models/Child');
const Link = use('App/Models/Link');
const IceServer = use('App/Models/IceServer');
const EmailUtils = use('App/Utils/EmailUtils');
class AdminApiController {
async getUsers({response}) {
console.log('API');
const users = await User.all();
// console.log(typeof users);
// return users.rows.map(u => {
@ -15,6 +16,22 @@ class AdminApiController {
}
async addStunServer({request, response}) {}
async addTurnServer({request, response}) {}
async testEmailSettings({auth, response}) {
try {
if (EmailUtils.sendTestEmail(auth.user)) {
return {
code: 0, data: {}
}
}
} catch (e) {
response.code(500);
return {
code: 500, message: e.message
}
}
}
}
module.exports = AdminApiController

View file

@ -1,5 +1,6 @@
'use strict'
const User = use('App/Models/User')
const User = use('App/Models/User');
const EmailUtils = use('App/Utils/EmailUtils');
class AuthController {
async registerIndex({view, auth, response}) {
if (auth.user) {
@ -29,7 +30,8 @@ class AuthController {
user.is_admin = true;
}
await user.save();
await auth.login(user)
await auth.login(user);
await EmailUtils.sendWelcomeEmail(user);
response.redirect('/');
}
@ -53,6 +55,27 @@ class AuthController {
response.redirect('/');
}
async resetPassword({request, response, session}) {
const email = request.body.email;
const token = 'token'; // TODO: Token system
const sent =
await EmailUtils.sendResetPassword({name: 'test name', email}, token);
if (sent) {
response.redirect('/');
return;
}
session.withErrors({message: 'Email provider error'}).flashAll()
return response.redirect('back')
}
async resetPasswordIndex({request, auth, response, view}) {
if (auth.user) {
response.redirect('/');
return;
}
return view.render('reset-password');
}
async resetPasswordForm({request}) {}
async logout({auth, response}) {
await auth.logout();
response.redirect('/');

57
app/Utils/EmailUtils.js Normal file
View file

@ -0,0 +1,57 @@
const Mail = use('Mail');
const Env = use('Env');
const from = Env.get('MAIL_FROM', 'admin@localhost.com');
const baseUrl = Env.get('APP_URL', 'http://localhost:3333');
const emailEnabled = !!Env.get('MAIL_CONNECTION', false);
class EmailUtils {
static async sendTestEmail(user) {
const to = user.email;
try {
await Mail.send('emails.test-settings', {user, baseUrl}, (message) => {
message.from(from).to(to).subject('Seepur | Email Settings Test');
});
return true;
} catch (e) {
console.error(e);
throw e;
}
}
static async sendResetPassword(user, code) {
if (!emailEnabled) return true;
const to = user.email;
const link = {
href: `${appUrl}/password/reset/${code}`,
text: 'Reset your password'
};
try {
await Mail.send(
'emails.reset-password', {user, code, link, baseUrl}, (message) => {
message.from(from).to(to).subject('Reset Password');
});
return true;
} catch (e) {
console.error(e);
return false;
}
}
static async sendWelcomeEmail(user) {
if (!emailEnabled) return true;
const to = user.email;
console.log(`Sending welcome email to:${to} from:${from}`);
try {
await Mail.send('emails.welcome', {user, baseUrl}, (message) => {
message.from(from).to(to).subject('Welcome to your Seepur');
});
return true;
} catch (e) {
console.error(e);
return false;
}
}
}
module.exports = EmailUtils;

View file

@ -0,0 +1,16 @@
'use strict'
class ResetPassword {
get rules() {
return {
email: 'required|email'
}
}
get messages() {
return {
'exists': 'User does not exists', 'required': 'This is required',
}
}
}
module.exports = ResetPassword

95
config/mail.js Normal file
View file

@ -0,0 +1,95 @@
'use strict'
const Env = use('Env')
module.exports = {
/*
|--------------------------------------------------------------------------
| Connection
|--------------------------------------------------------------------------
|
| Connection to be used for sending emails. Each connection needs to
| define a driver too.
|
*/
connection: Env.get('MAIL_CONNECTION', 'smtp'),
/*
|--------------------------------------------------------------------------
| SMTP
|--------------------------------------------------------------------------
|
| Here we define configuration for sending emails via SMTP.
|
*/
smtp: {
driver: 'smtp',
pool: true,
port: Env.get('SMTP_PORT', 2525),
host: Env.get('SMTP_HOST'),
secure: true,
auth: {user: Env.get('MAIL_USERNAME'), pass: Env.get('MAIL_PASSWORD')},
maxConnections: 5,
maxMessages: 100,
rateLimit: 10
},
/*
|--------------------------------------------------------------------------
| SparkPost
|--------------------------------------------------------------------------
|
| Here we define configuration for spark post. Extra options can be defined
| inside the `extra` object.
|
|
https://developer.sparkpost.com/api/transmissions.html#header-options-attributes
|
| extras: {
| campaign_id: 'sparkpost campaign id',
| options: { // sparkpost options }
| }
|
*/
sparkpost:
{driver: 'sparkpost', apiKey: Env.get('SPARKPOST_API_KEY'), extras: {}},
/*
|--------------------------------------------------------------------------
| Mailgun
|--------------------------------------------------------------------------
|
| Here we define configuration for mailgun. Extra options can be defined
| inside the `extra` object.
|
|
https://mailgun-documentation.readthedocs.io/en/latest/api-sending.html#sending
|
| extras: {
| 'o:tag': '',
| 'o:campaign': '',,
| . . .
| }
|
*/
mailgun: {
driver: 'mailgun',
domain: Env.get('MAILGUN_DOMAIN'),
region: Env.get('MAILGUN_API_REGION'),
apiKey: Env.get('MAILGUN_API_KEY'),
extras: {}
},
/*
|--------------------------------------------------------------------------
| Ethereal
|--------------------------------------------------------------------------
|
| Ethereal driver to quickly test emails in your browser. A disposable
| account is created automatically for you.
|
| https://ethereal.email
|
*/
ethereal: {driver: 'ethereal'}
}

View file

@ -32,6 +32,7 @@
"@adonisjs/framework": "^5.0.9",
"@adonisjs/ignitor": "^2.0.8",
"@adonisjs/lucid": "^6.1.3",
"@adonisjs/mail": "^3.0.10",
"@adonisjs/session": "^1.0.27",
"@adonisjs/shield": "^1.0.8",
"@adonisjs/validator": "^5.0.6",

View file

@ -0,0 +1,60 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="363.463px" height="430.464px" viewBox="0 0 363.463 430.464" enable-background="new 0 0 363.463 430.464"
xml:space="preserve">
<path fill="#EADB92" d="M186.201,42.361c-9.985,21.587-41.01,39.28-37.344,65.833c8.989,1.438,17.238-0.25,26.312-2.357
c8.072-1.874,14.767-8.156,22.983-5.242c19.875,24.72,10.617,72.651,9.257,103.62c-1.594,36.245-7.923,71.565-11.283,106.723
c-1.868,19.542-3.801,38.809-6.611,58.04c-2.062,14.107-13.104,46.153,5.291,47.687c5.12-15.648,1.916-35.013,5.797-51.04
c3.989-16.467,8.262-34.476,16.279-49.025c8.516-15.448,25.159-19.376,42.077-19.372c16.544,0.002,37.801-4.289,54.172,0.054
c41.949,11.123,15.855,84.95,26.613,115.906c2.562,0.672,7.314,1.194,9.547,1.163c2.072-36.722,6.218-71.551,7.915-106.828
c0.901-18.771-2.215-36.536-1.351-54.88c0.757-16.019-1.618-35.228-15.202-44.125c-13.8-9.037-36.104-8.456-51.849-10.246
c-15.589-1.771-37.751,1.317-44.128-15.959c-5.654-15.316-7.166-33.043-11.008-48.91c-4.16-17.17-9.729-32.768-14.428-48.876
c-4.462-15.31-8.228-30.503-14.285-45.58c-6.651-16.551-13.036-20.954-25.51-32.545c7.676,10.25,4.63,23.513,16.236,31.52
c-5.912-3.407-5.222-9.182-9.211-14.049c-3.568-4.354-9.405-7.64-14.447-10.924c1.904,11.014,5.743,22.273,17.103,26.883
c-2.467,0.568-3.485,2.756-5.135,3.667"/>
<ellipse fill="#2408F2" cx="187.385" cy="68.728" rx="2.034" ry="1.544"/>
<path fill="#E2C0D0" d="M240.485,183.422c-8.163,2.673-7.586,10.538-3.068,16c2.853,3.452,6.46,1.875,9.693,4.915
c3.629,3.41,1.94,7.064,6.638,9.504c11.404,5.923,31.148-6.271,38.222-14.092c-14.875-10.1-37.766,4.098-43.938-16.141
c-2.086-1.11-4-1.392-6.44-1.272"/>
<path fill="#E2C0D0" d="M220.598,126.924c-9.906,12.5,1.557,30.401,14.082,36.776c2.801-6.345-2.354-38.699-12.977-33.518"/>
<path fill="#E2C0D0" d="M311.197,216.018c-2.562-0.976-9.464-7.54-9.089-14.042c-4.103,4.446,7.932,13.63,13.477,15.16
c7.969,2.197,14.903-3.952,23.042-5.653c3.024-12.863-30.839-14.555-37.373-9.589"/>
<path fill="#E2C0D0" d="M297.743,225.608c3.718-1.491-8.926-18.918-14-8.212C280.786,223.633,293.582,227.277,297.743,225.608z"/>
<path fill="#E2C0D0" d="M222.809,168.211c-3.846,7.303,10.538,10.833,10.877,2.337c-3.261-0.74-6.271-1.404-9.773-1.25"/>
<path fill="#E2C0D0" d="M213.969,98.674c-0.998,1.577-1.681,3.745-0.913,6.33c0.698,0.753,3.442,3.083,4.228,3.611
c3.047-3.742,1.088-12.497-4.419-9.941"/>
<path fill="#140F0F" d="M149.886,94.328c-1.639,4.51-3.619,8.798-3.122,13.935c6.54,4.284,17.573,1.917,12.877-7.23
c-2.535-2.293-7.623-4.408-8.649-4.532"/>
<path fill="#B8C8CC" d="M273.298,286.858c5.833-8.274,13.608-23.883,26.974-17.789c12.78,5.829,7.918,20.818,4.46,30.416
c-5.217,14.48,1.028,19.353,5.347,32.775c6.523,20.277-15.798,11.838-26.584,10.537c0.062,0.289,0.08,2.494,0.025,2.77
c13.237,4.509,12.628,15.843,14.276,27.041c1.464,9.934,12.853,23.209,4.734,32.276c-14.608,16.321-53.528,10.384-73.589,9.896
c-1.953-4.365-3.022-9.137-2.228-14.104c7.835-2.823,14.928-3.803,16.513-12.576c1.433-7.928-2.563-13.113,1.362-21.694
c2.641-5.776,9.486-11.914,8.657-18.591c-0.938-7.563-8.885-9.573-14.476-13.434c-12.737-8.801-14.78-23.833-12.308-38.278
c1.242-7.262,4.688-16.739,12.25-15.159c11.505,2.404,3.126,10.055,2.286,17.278c-0.493,4.249-2.318,7.304,2.232,10.434
c11.373-4.526,12.024-21.136,27.892-19.167c0.719-1.417,1.816-1.186,3.288-1.596"/>
<path fill="none" d="M-66.537,574c1.286,2.191,2.268,4.482,3,7"/>
<path fill="#0C0CE8" d="M276.639,234.172c-4.016,0.889-10.088,3.751-8.936,9.321c1.235,5.971,7.67,4.104,11.465,7.961
c6.764,6.875,4.583,22.624,21.752,17.636c7.596-2.207,15.834-14.288,21.658-19.167c6.518-5.46,15.487-13.393,21.857-16.052
c-10.403,5.685-26.13,6.486-37.668,8.593c-8.934,1.632-11.744,0.243-18.126-2.898c-4.703-2.315-8.16-6.248-13.116-4.363"/>
<path fill="none" d="M-167.537,529c2.164,0.854,3.121,3.116,3,6"/>
<path fill="#F70B54" d="M266.616,239.337c0.651,3.683-1.296,5.763,2.921,7.202c-8.357,3.348-17.877,2.077-27.034,4.208
c6.094-5.231,17.145-9.536,24.113-12.442"/>
<path fill="#EDABE4" d="M70.447,316.381c2.337,3.156,4.774,9.055-0.105,12.472c-5.231,3.664-8.659-1.724-14.261-1.219
c-9.987,0.897-19.75,13.939-28.886-0.437c-4.042-6.361-1.426-20.447-2.223-27.689c-0.89-8.103-1.815-19.567-4.62-25.504
c3.612,10.689,14.704,21.062,21.744,29.799c5.451,6.766,8.54,7.482,15.545,9.119c5.163,1.206,10.571,0.438,12.886,4.917"/>
<path fill="#F4E806" d="M74.153,326.446c-3.145,2.327-3.203,5.081-7.373,3.528c3.783,7.68,11.767,12.655,17.021,19.931
c-0.741-7.672-5.833-17.736-8.902-24.225"/>
<path fill="none" d="M198.677,200.08c0.996,2.48-0.691-0.377-1.113-1.033"/>
<path fill="#2D4F33" d="M214.244,411.879c-2.441-11.727-13.99-19.523-30.071-18.597c-14.764,0.851-22.911,12.057-35.247,18.649
c11.189,0.437,21.67,4.064,34.133,4.079c7.187,0.008,28.877-4.718,30.071-3.1"/>
<path fill="none" d="M-208.537,612c2.512,2.171,4.505,4.861,6,8"/>
<path fill="#E5DFE4" d="M152.462,400.934c-1.621,2.071-7.15,15.783,4.703,12.97c11.196-2.656,3.206-14.687-4.703-10.903"/>
<path opacity="0.4" fill="#706F6F" d="M40.523,331.88c0.012,26.16-5.698,50.683,0.189,76.269c13.771,8.346,31.526,5.96,46.34,6.146
c15.186,0.192,32.769-2.9,47.853,0.077c0.406-0.388,0.817-0.769,1.236-1.146c-0.033-10.151-29.312-4.299-37.678-3.896
c-12.342,0.591-31.866,2.269-43.461-1.003c-12.113-3.418-10.516-22.771-11.134-34.095c-0.712-13.036,4.193-27.684,2.059-41.161
c-1.946,0.14-3.67-0.492-5.403-0.159"/>
<ellipse fill="#2408F2" cx="262.463" cy="313" rx="2.488" ry="1.92"/>
<path fill="#E2C0D0" d="M345.14,219.111c-10.007,5.452-2.073,19.87,3.997,24.571c6.942-6.781,3.131-16.763-2.646-23.22"/>
</svg>

After

Width:  |  Height:  |  Size: 5.8 KiB

View file

@ -0,0 +1,60 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="363.463px" height="430.464px" viewBox="0 0 363.463 430.464" enable-background="new 0 0 363.463 430.464"
xml:space="preserve">
<path fill="#EADB92" d="M186.201,42.361c-9.985,21.587-41.01,39.28-37.344,65.833c8.989,1.438,17.238-0.25,26.312-2.357
c8.072-1.874,14.767-8.156,22.983-5.242c19.875,24.72,10.617,72.651,9.257,103.62c-1.594,36.245-7.923,71.565-11.283,106.723
c-1.868,19.542-3.801,38.809-6.611,58.04c-2.062,14.107-13.104,46.153,5.291,47.687c5.12-15.648,1.916-35.013,5.797-51.04
c3.989-16.467,8.262-34.476,16.279-49.025c8.516-15.448,25.159-19.376,42.077-19.372c16.544,0.002,37.801-4.289,54.172,0.054
c41.949,11.123,15.855,84.95,26.613,115.906c2.562,0.672,7.314,1.194,9.547,1.163c2.072-36.722,6.218-71.551,7.915-106.828
c0.901-18.771-2.215-36.536-1.351-54.88c0.757-16.019-1.618-35.228-15.202-44.125c-13.8-9.037-36.104-8.456-51.849-10.246
c-15.589-1.771-37.751,1.317-44.128-15.959c-5.654-15.316-7.166-33.043-11.008-48.91c-4.16-17.17-9.729-32.768-14.428-48.876
c-4.462-15.31-8.228-30.503-14.285-45.58c-6.651-16.551-13.036-20.954-25.51-32.545c7.676,10.25,4.63,23.513,16.236,31.52
c-5.912-3.407-5.222-9.182-9.211-14.049c-3.568-4.354-9.405-7.64-14.447-10.924c1.904,11.014,5.743,22.273,17.103,26.883
c-2.467,0.568-3.485,2.756-5.135,3.667"/>
<ellipse fill="#2408F2" cx="187.385" cy="68.728" rx="2.034" ry="1.544"/>
<path fill="#E2C0D0" d="M240.485,183.422c-8.163,2.673-7.586,10.538-3.068,16c2.853,3.452,6.46,1.875,9.693,4.915
c3.629,3.41,1.94,7.064,6.638,9.504c11.404,5.923,31.148-6.271,38.222-14.092c-14.875-10.1-37.766,4.098-43.938-16.141
c-2.086-1.11-4-1.392-6.44-1.272"/>
<path fill="#E2C0D0" d="M220.598,126.924c-9.906,12.5,1.557,30.401,14.082,36.776c2.801-6.345-2.354-38.699-12.977-33.518"/>
<path fill="#E2C0D0" d="M311.197,216.018c-2.562-0.976-9.464-7.54-9.089-14.042c-4.103,4.446,7.932,13.63,13.477,15.16
c7.969,2.197,14.903-3.952,23.042-5.653c3.024-12.863-30.839-14.555-37.373-9.589"/>
<path fill="#E2C0D0" d="M297.743,225.608c3.718-1.491-8.926-18.918-14-8.212C280.786,223.633,293.582,227.277,297.743,225.608z"/>
<path fill="#E2C0D0" d="M222.809,168.211c-3.846,7.303,10.538,10.833,10.877,2.337c-3.261-0.74-6.271-1.404-9.773-1.25"/>
<path fill="#E2C0D0" d="M213.969,98.674c-0.998,1.577-1.681,3.745-0.913,6.33c0.698,0.753,3.442,3.083,4.228,3.611
c3.047-3.742,1.088-12.497-4.419-9.941"/>
<path fill="#140F0F" d="M149.886,94.328c-1.639,4.51-3.619,8.798-3.122,13.935c6.54,4.284,17.573,1.917,12.877-7.23
c-2.535-2.293-7.623-4.408-8.649-4.532"/>
<path fill="#B8C8CC" d="M273.298,286.858c5.833-8.274,13.608-23.883,26.974-17.789c12.78,5.829,7.918,20.818,4.46,30.416
c-5.217,14.48,1.028,19.353,5.347,32.775c6.523,20.277-15.798,11.838-26.584,10.537c0.062,0.289,0.08,2.494,0.025,2.77
c13.237,4.509,12.628,15.843,14.276,27.041c1.464,9.934,12.853,23.209,4.734,32.276c-14.608,16.321-53.528,10.384-73.589,9.896
c-1.953-4.365-3.022-9.137-2.228-14.104c7.835-2.823,14.928-3.803,16.513-12.576c1.433-7.928-2.563-13.113,1.362-21.694
c2.641-5.776,9.486-11.914,8.657-18.591c-0.938-7.563-8.885-9.573-14.476-13.434c-12.737-8.801-14.78-23.833-12.308-38.278
c1.242-7.262,4.688-16.739,12.25-15.159c11.505,2.404,3.126,10.055,2.286,17.278c-0.493,4.249-2.318,7.304,2.232,10.434
c11.373-4.526,12.024-21.136,27.892-19.167c0.719-1.417,1.816-1.186,3.288-1.596"/>
<path fill="none" d="M-66.537,574c1.286,2.191,2.268,4.482,3,7"/>
<path fill="#0C0CE8" d="M276.639,234.172c-4.016,0.889-10.088,3.751-8.936,9.321c1.235,5.971,7.67,4.104,11.465,7.961
c6.764,6.875,4.583,22.624,21.752,17.636c7.596-2.207,15.834-14.288,21.658-19.167c6.518-5.46,15.487-13.393,21.857-16.052
c-10.403,5.685-26.13,6.486-37.668,8.593c-8.934,1.632-11.744,0.243-18.126-2.898c-4.703-2.315-8.16-6.248-13.116-4.363"/>
<path fill="none" d="M-167.537,529c2.164,0.854,3.121,3.116,3,6"/>
<path fill="#F70B54" d="M266.616,239.337c0.651,3.683-1.296,5.763,2.921,7.202c-8.357,3.348-17.877,2.077-27.034,4.208
c6.094-5.231,17.145-9.536,24.113-12.442"/>
<path fill="#EDABE4" d="M70.447,316.381c2.337,3.156,4.774,9.055-0.105,12.472c-5.231,3.664-8.659-1.724-14.261-1.219
c-9.987,0.897-19.75,13.939-28.886-0.437c-4.042-6.361-1.426-20.447-2.223-27.689c-0.89-8.103-1.815-19.567-4.62-25.504
c3.612,10.689,14.704,21.062,21.744,29.799c5.451,6.766,8.54,7.482,15.545,9.119c5.163,1.206,10.571,0.438,12.886,4.917"/>
<path fill="#F4E806" d="M74.153,326.446c-3.145,2.327-3.203,5.081-7.373,3.528c3.783,7.68,11.767,12.655,17.021,19.931
c-0.741-7.672-5.833-17.736-8.902-24.225"/>
<path fill="none" d="M198.677,200.08c0.996,2.48-0.691-0.377-1.113-1.033"/>
<path fill="#2D4F33" d="M214.244,411.879c-2.441-11.727-13.99-19.523-30.071-18.597c-14.764,0.851-22.911,12.057-35.247,18.649
c11.189,0.437,21.67,4.064,34.133,4.079c7.187,0.008,28.877-4.718,30.071-3.1"/>
<path fill="none" d="M-208.537,612c2.512,2.171,4.505,4.861,6,8"/>
<path fill="#E5DFE4" d="M152.462,400.934c-1.621,2.071-7.15,15.783,4.703,12.97c11.196-2.656,3.206-14.687-4.703-10.903"/>
<path opacity="0.4" fill="#706F6F" d="M40.523,331.88c0.012,26.16-5.698,50.683,0.189,76.269c13.771,8.346,31.526,5.96,46.34,6.146
c15.186,0.192,32.769-2.9,47.853,0.077c0.406-0.388,0.817-0.769,1.236-1.146c-0.033-10.151-29.312-4.299-37.678-3.896
c-12.342,0.591-31.866,2.269-43.461-1.003c-12.113-3.418-10.516-22.771-11.134-34.095c-0.712-13.036,4.193-27.684,2.059-41.161
c-1.946,0.14-3.67-0.492-5.403-0.159"/>
<ellipse fill="#2408F2" cx="262.463" cy="313" rx="2.488" ry="1.92"/>
<path fill="#E2C0D0" d="M345.14,219.111c-10.007,5.452-2.073,19.87,3.997,24.571c6.942-6.781,3.131-16.763-2.646-23.22"/>
</svg>

After

Width:  |  Height:  |  Size: 5.8 KiB

View file

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 6.4 KiB

View file

@ -1,229 +1,175 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1"
id="svg4113" sodipodi:docname="clouds-bg.svg" inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="719.964px"
height="617.97px" viewBox="266.11 34.106 719.964 617.97" enable-background="new 266.11 34.106 719.964 617.97"
xml:space="preserve">
<sodipodi:namedview width="1280px" units="px" inkscape:document-units="mm" inkscape:window-width="1920" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:current-layer="layer3" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:window-height="1043" inkscape:zoom="0.98994949" inkscape:cy="377.96016" id="base" bordercolor="#666666" pagecolor="#ffffff" borderopacity="1.0" showgrid="false" inkscape:cx="607.1895">
</sodipodi:namedview>
<g>
<path fill="#E2B486" enable-background="new " d="M474.702,538.245c11.216,7.04,24.327,16.008,36.849,6.349
c10.483-8.084,14.101-24.96,10.5-37.684c-1.101-1.055-1.32-1.473-2.088-2.426c-2.386,8.983-3.271,21.517-11.661,23.828
c-8.378,6.619-21.913-0.626-31.281,8.618"/>
<path fill="#E8DE73" d="M718.504,107.333c-11.192,27.29-48.283,50.708-42.56,83.541c11.052,1.374,21.056-1.104,32.049-4.141
c9.777-2.701,17.665-10.817,27.845-7.574c25.448,29.81,16.377,89.807,16.164,128.358c-0.251,45.122-6.332,89.312-8.794,133.162
c-1.368,24.373-2.827,48.41-5.363,72.44c-1.86,17.628-13.855,57.965,8.699,59.025c5.525-19.686,0.702-43.604,4.696-63.701
c4.104-20.651,8.482-43.23,17.601-61.683c9.686-19.591,29.843-25.24,50.521-26.014c20.22-0.76,45.999-7.07,66.211-2.428
c51.794,11.894,23.357,104.852,37.955,142.831c3.163,0.716,8.994,1.146,11.722,1.007c0.813-45.737,4.25-89.216,4.673-133.14
c0.224-23.37-4.417-45.306-4.219-68.146c0.177-19.944-3.627-43.708-20.647-54.141c-17.288-10.596-44.52-8.848-63.85-10.347
c-19.135-1.485-46.077,3.375-54.68-17.804c-7.629-18.775-10.306-40.738-15.744-60.281c-5.889-21.15-13.427-40.278-19.922-60.083
c-6.172-18.823-11.485-37.534-19.595-55.993c-8.905-20.264-16.913-25.443-32.701-39.274c9.861,12.386,6.76,29.011,21.319,38.427
c-7.385-3.962-6.812-11.171-11.916-17.038c-4.564-5.246-11.852-9.062-18.168-12.912c2.842,13.602,8.061,27.418,22.159,32.625
c-2.986,0.819-4.13,3.585-6.102,4.795"/>
<path fill="#F2EDF0" enable-background="new " d="M721.231,363.309c-3.71,14.215,1.279,22.992,12.669,32.965
c12.112,10.605,25.052,3.756,36.502,11.904c2.204-5.742-0.182-11.31-1.833-17.298c-9.009-2.956-12.519-10.698-21.277-13.873
c-10.453-3.786-18.707-1.37-24.522-12.181"/>
<path fill="#A4DBE0" d="M529.99,393.754c-12.872-5.988-26.678-6.061-40.896-1.229c-8.667,2.945-15.739,8.863-24.245,11.633
c-9.672,3.152-18.698,6.004-29.115,6.922c-21.985,1.938-42.756,7.486-65.172,5.521c-21.061-1.844-34.584-15.795-35.386-37.354
c-0.395-10.577,5.349-19.912,4.192-31.203c-1.184-11.542-4.751-16.629-12.999-24.132c-3.917,5.283-7.062,11.056-9.354,17.052
c-2.566,6.721,0.311,11.457-0.524,18.646c-4.268-18.242-14.208-19.487-30.393-23.235c-1.624,8.485,0.131,22.217,4.246,29.483
c4.707,8.309,11.582,14.021,19.759,18.351c10.762,5.696,16.608,8.358,22.179,19.409c7.927,15.729,16.859,31.93,30.081,44.016
c12.277,11.221,35.077,20.746,51.158,22.314c21.436,2.09,42.551,4.779,62.385-3.635c16.713-7.09,29.437-17.66,41.085-31.529
c3.068-3.654,4.562-8.133,7.623-11.773c4.163-4.947,7.349-3.209,12.153-5.867c8.396-4.645-1.028-18.484-6.777-22.697"/>
<path fill="#E8EDEC" d="M540.388,413.631c0,23.643,3.648,43.795-14.056,62.307c-6.495,6.791-13.488,15.234-20.794,21.338
c-8.405,7.023-18.896,7.73-28.87,11.369c-19.195,7-47.639,3.283-66.426-3.77c-11.156-4.188-18.021-6.477-25.991-15.773
c-6.574-7.67-15.257-11.846-20.774-20.76c-3.895-6.293-15.257-24.004-12.358-30.922c7.4,5.672,11.961,13.314,20.673,18.457
c10.067,5.939,19.632,11.695,31.348,14.02c21.982,4.359,44.703,4.041,65.851-2.229c7.881-2.336,16.572-2.77,23.57-7.789
c6.243-4.479,12.031-9.984,17.137-15.947c5.502-6.426,7.947-15.158,12.686-20.59c3.473-3.98,17.611-5.932,16.617-9.713"/>
<ellipse fill="#F0E4EB" cx="738.706" cy="375.501" rx="3.119" ry="3.463"/>
<ellipse fill="#F0E4EB" cx="844.112" cy="478.204" rx="3.119" ry="3.464"/>
<ellipse fill="#F0E4EB" cx="488.003" cy="440.963" rx="3.119" ry="3.463"/>
<ellipse fill="#F0E4EB" cx="843.177" cy="464.691" rx="3.119" ry="3.463"/>
<ellipse fill="#200E81" cx="721.139" cy="141.719" rx="3.119" ry="3.463"/>
<ellipse fill="#200E81" cx="739.538" cy="386.5" rx="1.535" ry="1.758"/>
<ellipse fill="#200E81" cx="510.538" cy="530.5" rx="1.535" ry="1.758"/>
<path fill="#B7B7B7" d="M869.677,480.277c2.16-5.044,12.758-8.58,16.572-13.192c6.066-7.337,5.451-15.519,1.107-23.415
c-10.321-18.769-31.554-14.681-42.078,0.782c-9.675,0.664-13.298,4.572-17.884,11.896c-3.933,6.276-5.16,16.295-15.164,16.245
c-20.031-0.102-15.486-27.856,1.701-31.377c-2.188-3.145-6.104-6.488-9.688-8.813c-15.86,11.842-25.998,41.67-6.903,54.276
c12.128,8.007,17.769,9.07,17.935,24.398c0.138,12.737-2.069,24.184-4.048,36.379c-1.039,6.412,5.097,24.745-9.039,22.427
c-4.757-0.781-10.495-4.169-15.325-5.69c2.03-2.731,4.624-4.27,6.642-7.199c7.305,1.039,25.182,4.993,16.351,13.837
c-4.921,4.929-17.331,6.051-24.512,5.294c-1.978,4.229-0.139,8.403-0.75,13.021c26.572-0.703,48.805,19.993,75.398,14.25
c10.619-2.293,22.823-7.89,25.706-17.297c3.035-9.907-6.571-20.613-10.726-30.283c-2.804-6.526-6.948-17.134-5.615-24.692
c1.835-10.416,13.498-4.789,19.86-12.435c5.861-7.045,1.783-16.729-2.24-23.212c-3.457-5.565-14.588-11.11-15.596-14.328"/>
<path fill="#F0E4EB" d="M634.652,475.502c-9.029-1.746-23.28,8.352-16.242,17.266c5.146,6.518,24.225,5.768,32.121,10.908
c5.312-7.893,16.957-36.688,16.351-45.537c-13.776-3.16-24.772,13.285-34.931,18.715"/>
<path fill="#F1E214" d="M640.366,527.986c14.429,6.502,20.336,1.072,11.611,18.943c-5.208,10.668-11.628,23.348-17.838,32.014
c-6.572,0.672-13.683,2.293-18.97,1.773c4.378-7.951,12.549-14.146,17.323-22.406c4.86-8.416,6.32-21.68,6.38-25.938"/>
<path fill="#F2EDF0" enable-background="new " d="M555.272,315.843c4.542,13.818,19.312,63.451,41.877,61.515
c21.319-1.83,24.635-53.521,19.076-65.653c-20.506-8.499-48.056-19.314-57.969,8.528"/>
<path fill="none" d="M358.3,551.018c1.28,3.516,2.708,6.781,4.479,10.24"/>
<path fill="none" d="M169.787,536.311c1.796,4.711,1.722,12.5,5.405,17.568"/>
<path fill="#F0E4EB" d="M683.695,431.391c4.484,25.961-17.547,24.918-32.437,34.504c-8.103,5.217-7.64,8.477-17.11,12.123
c-1.701,0.656-22.531,3.49-17.812,10.473c3.712,5.49,8.37,7.855,13.016,12.869c-12.364,11.334-24.774-1.812-35.639-8.154
c-13.72-8.01-24.534-1.494-38.188-6.434c-0.953-1.645-2.035-2.912-3.02-4.506c5.216-26.342-4.533-54.072,2.876-80.392
c3.599-12.776,8.008-20.392,21.397-22.338c15.55-2.259,28.234-2.25,44.256-6.558c23.271-6.256,21.129,0.575,33.847,17.812
C664.064,403.232,680.952,415.516,683.695,431.391z"/>
<path fill="#F4A2C3" d="M649.323,530.912c4.707-10.783,3.506-23.643,7.166-35.111c3.229-10.111,7.224-19.312,10.674-29.27
c4.267-12.316,14.397-53.498,25.461-58.51c21.79-9.875,20.364,40.689,20.973,52.666c1.026,20.23,7.71,52.652,0,70.301
c-1.317,3.02-1.215,5.094-1.831,8.447c-11.198,6.623-17.771-2.781-29.674-2.74c-9.317,0.031-23.394,5.24-32.515,7.205
c-2.67-7.172,1.029-11.896,2.731-18.838"/>
<path fill="none" d="M1029.246,105.23c-0.901,0-1.803,0-2.703,0"/>
<path fill="#F4A2C3" d="M637.381,499.648c-18.968,2.77-38.472,6.404-58.146,9.105c-12.914,1.771-54.353-5.182-53.936,15.768
c0.397,19.861,38.945,18.801,50.95,18.945c22.137,0.264,37.767,6.939,56.313,14.523c6.717-8.971,6.385-18.582,9.223-29.158
c2.514-9.35,10.479-18.312,10.299-27.5c-8.518-1.453-14.02-1.32-22.169,1.242"/>
<path fill="none" d="M195.462,659.283c2.048,3.268,3.449,6.986,4.054,10.812"/>
<path fill="#F1E214" d="M671.718,541.152c-1.381,8.652-6.311,15.949-2.73,24.613c5.135-0.736,8.657-3.088,14.709-2.695
c5.677,0.365,10.688,5.957,17.654,5.654c0.049-10.275-12.078-20.857-14.996-30.361c-3.01,0.006-8.335-0.297-11.271,0.086
c-0.974,2.012-3.136,5.795-3.366,7.096"/>
<path fill="none" d="M1073.841,60.635c-2.746,0.656-4.538,3.241-5.405,6.757"/>
<path fill="#F4120C" d="M546.838,486.098c20.776,12.459,63.817,19.016,86.263,14.312c20.938-4.385,31.973-45.387,40.446-65.266
c-2.47-0.684-6.047-0.553-8.547-0.039c-2.021,12.537-9.769,24.264-13.691,36.326c-4.434,13.635-6.229,22.912-21.991,26.803
c-10.66,2.633-77.678-16.361-78-6.285"/>
<path fill="#846B44" d="M500.389,487.603c-9.007-3.267-30.5,9.438-22.943,20.623c-9.823,6.901-20.533,27.871-2.311,31.009
c8.454,1.455,10.021-5.485,16.822-6.605c5.978-0.988,10.678,4.767,17.762,1.161c20.325-10.341,27.325-66.099-7.93-51.128
c-1.191,2.739-3.175,3.793-5,6.228"/>
<path fill="none" d="M118.435,156.581c-0.52,0.594,2.047,1.625-1.125,1.614c-0.437,1.841,0.4,2.163,1.125,3.792"/>
<path fill="none" d="M482.409,628.898c-0.678,5.969,0.485,11.906,3.35,16.871"/>
<path fill="#CCF2D6" d="M438.8,568.219c-16.616-6.751-34.479-5.126-51.476-0.646c-13.585,3.582-39.219,7.246-42.967-15.713
c-3.579-21.921,18.608-35.436,21.404-55.085c0.111-0.397,0.221-0.789,0.332-1.186c-6.104-7.156-4.07-11.886,0.351-17.99
c1.048-1.447,6.562-2.615,8.252-4.463c2.52-2.762,4.415-8.728,5.952-12.387c1.005,0.642,1.821,1.235,3.027,1.67
c2.916,13.804-4.898,30.531-8.495,43.975c-1.39,5.196-5.956,21.467-2.292,25.562c5.572,6.227,9.344-6.184,14.049-8.244
c11.976-5.243,23.483,10.246,37.107,7.708c9.313-1.734,21.713-9.425,31.126-6.181C488.367,536.749,466.415,579.437,438.8,568.219z"
/>
<path fill="none" d="M117.084,349.824c-0.603,2.298-0.282,4.375,1.351,5.406"/>
<path fill="#CCF2D6" d="M474.144,536.882c3.722,2.991,9.234,3.766,11.686,8.381c13.783,2.283,21.77-0.582,33.958-4.902
c0.141-0.681,0.283-1.358,0.426-2.036c0.393,0.06,3.021,0.071,3.395,0.003c20.139,19.778-9.67,26.99-25.325,24.37
c-11.437-1.912-29.347,2.309-38.152-2.488"/>
<path fill="none" d="M117.084,25.5c-1.351,1.986-1.791,4.243-1.352,6.757"/>
<path fill="#CCF2D6" d="M373.254,506.174c4.823,0.864,9.992-3.787,10.513-9.498c4.285-3.286,21.546-2.83,27.639-2.173
c0.367,1.857,0.347,3.908-0.092,5.741c-7.55,4.496-14.73,9.014-21.863,13.203c-7.127,4.186-10.979,12.853-18.813,15.902
c-0.286-7.819-0.767-16.35,3.875-21.933"/>
<path fill="none" d="M36.003,656.58c1.985,1.055,3.474,3.068,4.054,5.406"/>
<path fill="none" d="M129.246,57.933c-1.25,0.745-3.558,1.756-1.352,2.703"/>
<path fill="none" d="M180.597,60.635c-0.069,1.569,0.39,2.859,1.352,4.054"/>
<path fill="#DEE5B3" d="M755.476,401.28c-6.783,7.359-77.711-18.75-71.898,11.875c6.248,3.309,6.768-1.603,11.631-1.635
c3.019-0.02,7.463-1.574,11.516-1.514c7.588,0.115,22.293,4.121,28.791,7.965c17.134,10.135,15.883,36.771,18.763,54.293
c3.298,20.062,6.244,41.188,10.334,61.104c1.854,9.039,7.185,19.543-1.042,27.645c-7.122,7.016-21.958,2.121-23.21,14.539
c7.356-0.449,21.391,0.543,27.364-1.258c13.471-4.061,10.782-10.102,10.785-24.312c0.005-23.006,7.167-35.939,10.705-56.186
c3.812-21.826-7.804-27.953-11.899-48.514c-1.795-9.012,1.98-21.441-1.541-29.166c-4.795-10.514-13.977-8.832-23.367-11.801"/>
<path fill="none" d="M134.652,109.284c0,4.955,0,9.91,0,14.865"/>
<path fill="#DEE5B3" d="M740.12,419.035c13.963,12.48-3.387,38.342-0.035,54.658c2.799,13.627,15.602,33.148,32.014,31.604
c6.575-20.301-13.689-77.588-30.442-83.227"/>
<path fill="#EBE6A4" d="M739.498,338.726c-10.688-2.254-24.098-1.57-27.555,9.875c-11.271,0.697-15.329,11.262-8.186,17.957
c4.43,4.147,10.233,1.781,14.872,3.984c3.032,1.439,8.433,6.71,10.757,7.585c9.562,3.601,20.329-0.401,29.719,3.661
c7.633,3.303,8.34,17.945,20.955,9.428c3.869-2.611,11.589-18.873,12.381-23.57c0.645-3.818-4.748-22.993-7.528-26.462
c-14.437-18.01-35.25-8.13-51.834-3.903"/>
<path fill="#EAE6C0" d="M580.598,283.609c-17.933,17.719,18.382,23.25,19.118,36.287c22.88,0.001,3.264,42.102,22.538,37.801
c2.255-7.646,9.571-8.506,13.823-14.554c2.353-3.346,7.555-15.451,8.1-18.918c2.393-15.222,0.93-30.548-7.159-44.333
c-7.753-13.213-64.124-39.9-68.812-12.73c-7.479,2.711-23.898,5.681-18.893,17.455c-10.677,5.72-26.062,16.122-11.792,27.375
c-4.621,4.597-9.081,11.019-9.695,17.493c-1.059,11.138,3.744,10.267,8.212,17.604c5.813,9.55,15.092,26.455,29.321,18.718
c15.44-8.399-1.863-22.124-4.729-33.85c-5.017-20.521,9.392-19.078,15.916-30.78"/>
<path fill="#BDE3B8" d="M892.791,276.853c-5.827,7.115-13.292,14.775-19.154,21.386c-18.425,5.589-22.673-5.215-32.423-17.106
c-12.144-1.852-7.96-11.936,1.577-13.739c9.048-1.712,16.646,5.533,24.625,6.456c18.265,2.113,31.653-12.313,46.792-20.367
c0.507-0.493,0.494-0.506-0.038-0.039c-7.613,10.295-20.252,17.657-26.784,27.463"/>
<path fill="none" d="M118.435,53.878c2.31,0.265,3.195,1.762,2.703,4.054"/>
<path fill="#EB1869" d="M836.034,280.907c-3.423,2.636-8.461,3.067-13.711,2.698c0.643-1.219,5.215-6.217,8.301-8.912
c0.349,4.078,3.067,3.178,4.059,4.862"/>
<path fill="#EE1787" d="M489.24,380.598c4.452,6.421,10.155,13.335,14.634,19.304c14.076,5.045,17.322-4.708,24.771-15.441
c9.278-1.672,6.081-10.773-1.205-12.401c-6.913-1.545-12.717,4.994-18.813,5.829c-13.955,1.906-24.183-11.115-35.749-18.385
c-0.387-0.445-0.378-0.456,0.029-0.035c5.816,9.292,15.472,15.938,20.463,24.788"/>
<path fill="#EBF019" d="M534.058,382.421c3.422,2.637,8.461,3.066,13.711,2.698c-0.643-1.22-5.215-6.218-8.301-8.912
c-0.349,4.078-3.068,3.178-4.059,4.862"/>
<path fill="none" d="M168.435,28.203c-0.74,0.138-1.964,1.701-2.703,4.054"/>
<path fill="none" d="M114.383,729.555c1.075,2.535,3.136,5.607,5.405,8.107"/>
<path fill="none" d="M84.653,636.312c0.872,1.822,2.302,3.285,4.054,4.053"/>
<path fill="none" d="M77.896,613.338c0.217,1.166,0.676,2.152,1.351,2.703"/>
<path fill="#DC1F52" d="M692.115,627.846c5.069-6.869,13.069-18.576,20.698-24.934c-11.237,10.787-18.307,16.117-33.316,8.723
c-6.82-3.361-28.202-19.496-28.287-7.891c-0.025,3.551,5.023,12.191,6.045,16.475c1.301,5.455,1.948,11.33,7.605,15.016
c12.72,8.287,24.949-6.102,32.537-12.154"/>
<path fill="none" d="M540.058,743.068c1.415,2.178-1.214-0.125-0.477,0.238c1.963,3.385,3.122,6.803,4.53,10.572"/>
<path fill="#F9F206" d="M657.185,600.723c-3.668,1.074-6.078,1.34-7.133,4.105c-2.619-5.1-2.279-10.33-4.986-15.656
c2.76,2.189,7.619,8.486,12.781,10.342"/>
<path fill="#E2C0D0" d="M792.76,279.555c-9.982,3.325-9.277,13.106-3.753,19.9c3.49,4.293,7.901,2.332,11.856,6.112
c4.438,4.241,2.374,8.787,8.117,11.821c13.947,7.367,38.098-7.799,46.748-17.526c-18.192-12.562-46.19,5.096-53.739-20.076
c-2.553-1.38-4.893-1.731-7.878-1.582"/>
<path fill="#E2C0D0" d="M768.436,209.285c-12.117,15.548,1.903,37.811,17.225,45.741c3.426-7.892-2.88-48.131-15.872-41.688"/>
<path fill="#E2C0D0" d="M879.247,320.096c-3.134-1.214-11.576-9.377-11.117-17.464c-5.019,5.53,9.701,16.953,16.483,18.854
c9.745,2.733,18.227-4.915,28.182-7.031c3.699-15.998-37.718-18.102-45.711-11.927"/>
<path fill="none" d="M108.976,214.69c-0.107,1.008,0.343,1.458,1.352,1.351"/>
<path fill="#E2C0D0" d="M862.792,332.023c4.547-1.854-10.918-23.53-17.125-10.214C842.051,329.567,857.7,334.1,862.792,332.023z"/>
<path fill="#E2C0D0" d="M899.117,338.991c0.907-3.308-17.68-3.96-12.944,5.143C888.932,349.438,898.101,342.695,899.117,338.991z"
/>
<path fill="#E2C0D0" d="M771.139,260.636c-4.702,9.083,12.891,13.474,13.305,2.907c-3.988-0.921-7.67-1.747-11.952-1.555"/>
<path fill="#E2C0D0" d="M769.552,187.9c-1.22,1.961-2.054,4.658-1.115,7.873c0.854,0.937,4.21,3.834,5.17,4.492
c3.728-4.654,1.331-15.542-5.404-12.364"/>
<path fill="#E2C0D0" d="M757.325,177.216c1.317,1.896,3.465,3.73,6.788,4.141c1.197-0.413,5.188-2.348,6.171-2.97
c-2.799-5.264-13.746-7.375-13.494,0.07"/>
<path fill="#E2C0D0" d="M922.49,320.096c-10.008,5.452-2.073,19.87,3.996,24.571c6.942-6.781,3.132-16.763-2.646-23.22"/>
<path fill="#140F0F" d="M681.948,168.745c-2.004,5.61-4.426,10.942-3.817,17.332c7.999,5.328,21.494,2.384,15.75-8.993
c-3.103-2.852-9.324-5.482-10.58-5.636"/>
<path fill="#EAE6C0" d="M561.68,302.529c-1.125,2.233-1.928,3.827-1.116,6.521c7.396,5.258,38.281-2.908,39.051-13.244
c0.521-7.017-15.265-9.083-20.366-8.173c-9.38,1.671-12.724,9.024-16.216,16.248"/>
<path fill="#F0E4EB" d="M550.869,497.449c9.049-10.398,38.873,10.23,52.531,6.201c-2.062,2.082-27.875,7.432-34.593,9.133
c-18.604,4.711-27.136-5.062-16.587-14.33"/>
<g>
<circle fill="none" stroke="#F0123E" stroke-width="1.0937" stroke-miterlimit="10" cx="574.814" cy="337.173" r="8.108"/>
<circle fill="none" stroke="#F0123E" stroke-width="1.0937" stroke-miterlimit="10" cx="598.176" cy="330.991" r="8.108"/>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_2"
x="0px"
y="0px"
width="519.35626"
height="222.7771"
viewBox="0 0 519.35624 222.7771"
enable-background="new 0 0 1190.55 841.89"
xml:space="preserve"
sodipodi:docname="grand.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"><metadata
id="metadata47"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs45"><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3796"><rect
id="rect3798"
width="534.7666"
height="229.54593"
x="339.27405"
y="297.03354"
style="fill:none" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3800"><rect
id="rect3802"
width="534.7666"
height="229.54593"
x="339.27405"
y="297.03354"
style="fill:none" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3804"><rect
id="rect3806"
width="534.7666"
height="229.54593"
x="339.27405"
y="297.03354"
style="fill:none" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3808"><rect
id="rect3810"
width="534.7666"
height="229.54593"
x="339.27405"
y="297.03354"
style="fill:none" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3812"><rect
id="rect3814"
width="534.7666"
height="229.54593"
x="339.27405"
y="297.03354"
style="fill:none" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3816"><rect
id="rect3818"
width="534.7666"
height="229.54593"
x="339.27405"
y="297.03354"
style="fill:none" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3820"><rect
id="rect3822"
width="534.7666"
height="229.54593"
x="339.27405"
y="297.03354"
style="fill:none" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3824"><rect
id="rect3826"
width="534.7666"
height="229.54593"
x="339.27405"
y="297.03354"
style="fill:none" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3828"><rect
id="rect3830"
width="534.7666"
height="229.54593"
x="339.27405"
y="297.03354"
style="fill:none" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3832"><rect
id="rect3834"
width="534.7666"
height="229.54593"
x="339.27405"
y="297.03354"
style="fill:none" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3836"><rect
id="rect3838"
width="534.7666"
height="229.54593"
x="339.27405"
y="297.03354"
style="fill:none" /></clipPath></defs><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1043"
id="namedview43"
showgrid="false"
inkscape:zoom="0.79286936"
inkscape:cx="395.8304"
inkscape:cy="-114.94323"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_2" />
<path
d="m 771.983,362.89 c -2.131,-6.595 -13.981,-11.819 -18.028,-17.972 -6.434,-9.778 -5.192,-20.199 0.277,-30.005 13,-23.304 36.94,-16.667 47.925,3.803 10.985,1.491 14.858,6.729 19.607,16.397 4.069,8.285 4.811,21.176 16.219,21.777 22.847,1.205 19.488,-34.582 0.123,-40.226 2.702,-3.875 7.387,-7.891 11.626,-10.623 17.304,16.195 26.901,55.003 4.303,69.849 -14.354,9.429 -20.855,10.414 -22.052,30 -0.994,16.274 0.769,31.055 2.223,46.777 0.764,8.269 -7.438,31.298 8.831,29.274 5.474,-0.682 12.24,-4.632 17.847,-6.255 -2.137,-3.626 -4.989,-5.767 -7.098,-9.646 -8.397,0.844 -29.04,4.706 -19.553,16.602 5.287,6.629 19.363,8.89 27.599,8.398 1.978,5.539 -0.394,10.752 0,16.697 -30.249,-2.668 -56.959,22.312 -86.9,13.199 -11.956,-3.639 -25.503,-11.607 -28.171,-23.825 -2.81,-12.867 8.848,-25.918 14.219,-38.004 3.626,-8.157 9.05,-21.441 8.027,-31.195 -1.409,-13.437 -15.076,-7.019 -21.828,-17.219 -6.219,-9.397 -0.935,-21.505 4.082,-29.526 4.307,-6.885 17.363,-13.233 18.723,-17.278"
id="path2"
clip-path="url(#clipPath3836)"
inkscape:connector-curvature="0"
transform="matrix(0.98542917,0,0,0.97735419,-339.07608,-290.84908)"
style="opacity:0.4;fill:#bcb7b7" />
<path
d="m 687.983,339.89 c -4.077,1.877 -11.059,3.685 -13.726,8.226 -3.859,6.57 -0.141,10.661 -1.5,17.548 -0.199,1.006 -3.405,3.78 -3.798,6.203 -0.613,3.791 2.16,5.174 2.85,8.301 1.361,6.18 -1.07,7.873 6.425,12.575 1.931,-0.991 3.573,-0.221 5.575,-0.678 1.166,9.494 10.468,4.803 16.923,7.077 8.835,3.112 7.43,5.015 18.025,2.146 8.226,10.157 20.592,0.662 20.377,-10.246 11.225,1.258 8.125,-15.308 7.096,-20.402 -0.571,-2.828 -0.587,-11.47 -1.477,-13.526 -1.395,-3.223 -6.731,-4.676 -9.548,-7.422 -4.363,-4.254 -3.313,-6.063 -9.171,-8.829 -4.159,-1.964 -10.317,-3.998 -15.048,-2.941 -4.987,1.113 -7.711,5.002 -12.805,5.771 -2.997,0.452 -6.224,-4.041 -10.199,-0.801"
id="path6"
clip-path="url(#clipPath3832)"
inkscape:connector-curvature="0"
transform="matrix(0.98542917,0,0,0.97735419,-339.07608,-290.84908)"
style="fill:#e0da8c" />
<path
d="m 726.983,417.89 c -10.816,8.367 -24.624,-8.225 -31,10 -4.489,12.832 -4.732,27.228 -9.026,39.974 -9.204,27.317 -50.472,2.347 -69.803,7.197 -0.544,0.902 -1.262,1.924 -1.772,2.806 1.608,2.112 7.886,6.123 10.324,7.301 1.952,0.943 1.721,2.982 4.277,3.719 2.782,0.802 4.566,-1.99 6.199,-1.797 9.3,1.101 19.604,4.116 28.675,6.972 -3.316,5.737 -26.019,7.768 -33.097,8.606 -4.824,0.572 -13.382,2.329 -17.052,0.467 -5.502,-2.793 -3.887,-10.883 -12.552,-9.07 -3.285,6.669 6.071,11.418 2.945,18.826 0.92,1.327 1.38,1.342 2.048,2.829 7.41,2.712 13.495,-1.111 20.856,-1.853 6.707,-0.675 15.012,0.937 21.98,1.02 15.531,0.188 31.146,-2.748 45.973,-1.973 12.109,0.633 34.597,3.027 44.02,-5.027 13.479,-11.519 1.668,-24.081 -3.048,-36.996 -3.152,-8.632 -5.201,-18.445 -4.726,-28 0.336,-6.76 5.089,-25.143 -7.223,-24"
id="path10"
clip-path="url(#clipPath3828)"
inkscape:connector-curvature="0"
transform="matrix(0.98542917,0,0,0.97735419,-339.07608,-290.84908)"
style="fill:#ddabab" />
<path
d="m 153.18057,94.248605 c 0,1.954708 0,3.909417 0,5.864125"
id="path12"
inkscape:connector-curvature="0"
style="fill:#c4b5b5;stroke-width:0.98138338" />
<path
d="m 678.983,393.89 c 3.159,5.645 3.484,11.978 10.004,15.997 6.029,3.717 13.888,3.509 20.822,4.178 0.475,1.961 1.875,2.689 2.348,4.651 3.418,0.424 6.6,0.097 9.679,-0.973 2.952,-13.452 -8.706,-11.364 -16.602,-14.104 -7.288,-2.529 -15.865,-6.321 -23.251,-9.749"
id="path14"
clip-path="url(#clipPath3824)"
inkscape:connector-curvature="0"
transform="matrix(0.98542917,0,0,0.97735419,-339.07608,-290.84908)"
style="opacity:0.3;fill:#c4b5b5" />
<path
d="m 523,407.89 c 5.639,-0.725 6.524,-11.83 16.023,-7.801 7.752,3.289 6.661,11.861 2.029,16.075 -1.991,1.812 -6.875,2.212 -9.278,3.651 -3.788,2.269 -5.884,5.936 -10.023,7.826 -6.292,2.872 -13.333,4.958 -20.577,3.972 -9.678,-1.318 -22.979,-11.351 -30.422,-18.475 -5.363,-5.134 -9.31,-11.167 -14.53,-16.299 -3.999,-3.931 -11.099,-8.116 -13.474,-13.697 -0.536,-1.259 -1.979,-2.855 -2.626,-4.071 4.492,0.489 8.482,3.822 11.045,7.649 13.833,2.233 21.053,17.325 34.055,21.948 11.958,4.252 32.899,-13.087 39.777,1.223"
id="path16"
clip-path="url(#clipPath3820)"
inkscape:connector-curvature="0"
transform="matrix(0.98542917,0,0,0.97735419,-339.07608,-290.84908)"
style="fill:#dd7f7f" />
<path
d="m 1003.6059,155.85146 c -0.472,5.849 1.286,10.842 3,16"
id="path18"
inkscape:connector-curvature="0"
style="fill:#dbc07f" />
<path
d="m 544,401.89 c 6.047,-0.753 14.783,-7.755 21.82,-9.877 -2.79,7.679 -10.128,16.235 -17.84,19.452 -0.617,-2.913 -1.376,-6.584 -1.98,-9.575"
id="path20"
clip-path="url(#clipPath3816)"
inkscape:connector-curvature="0"
transform="matrix(0.98542917,0,0,0.97735419,-339.07608,-290.84908)"
style="fill:#dbc07f" />
<path
d="m 502,437.89 c 0.012,25.323 -5.116,49.062 0.171,73.829 12.364,8.077 28.307,5.769 41.606,5.948 13.635,0.186 29.422,-2.809 42.965,0.075 0.365,-0.375 0.735,-0.745 1.11,-1.11 -0.029,-9.826 -26.318,-4.159 -33.83,-3.771 -11.082,0.572 -28.611,2.195 -39.023,-0.972 -10.875,-3.308 -9.44,-22.04 -9.997,-33.004 -0.64,-12.617 3.765,-26.796 1.849,-39.842 -1.748,0.135 -3.296,-0.477 -4.853,-0.154"
id="path22"
clip-path="url(#clipPath3812)"
inkscape:connector-curvature="0"
transform="matrix(0.98542917,0,0,0.97735419,-339.07608,-290.84908)"
style="opacity:0.4;fill:#706f6f" />
<path
d="m 420,502.89 c 9.284,1.241 31.77,-8.579 41.774,-13.249 14.288,-6.67 21.657,-21.523 32.301,-31.374 -0.508,20.775 5.899,45.269 -16.856,54.894 -15,6.345 -43.21,-3.235 -57.219,-9.271"
id="path26"
clip-path="url(#clipPath3808)"
inkscape:connector-curvature="0"
transform="matrix(0.98542917,0,0,0.97735419,-339.07608,-290.84908)"
style="opacity:0.3;fill:#a6d9e8" />
<path
d="m 449.001,479.89 c -11.056,0.999 -24.618,-15.231 -17.1,-27.574 -13.521,1.975 -15.402,14.869 -19.655,25.82 -4.276,11.011 -11.034,20.833 -16.094,31.377 8.767,-6.86 12.852,-14.536 23.044,-18.427 9.263,-3.536 21.751,-5.157 28.804,-9.196"
id="path32"
clip-path="url(#clipPath3804)"
inkscape:connector-curvature="0"
transform="matrix(0.98542917,0,0,0.97735419,-339.07608,-290.84908)"
style="fill:#edd1d1" />
<path
stroke-miterlimit="10"
d="m 430,451.891 c 10.296,12.053 18.23,26.291 26,40"
id="path36"
clip-path="url(#clipPath3800)"
inkscape:connector-curvature="0"
transform="matrix(0.98542917,0,0,0.97735419,-339.07608,-290.84908)"
style="opacity:0.8;fill:none;stroke:#967e7e;stroke-miterlimit:10" />
<path
d="m 350.775,515.511 c -3.361,-13.475 -7.952,-34.665 14.021,-32.91 8.211,0.656 15.089,4.582 16.735,-7.11 1.127,-8.011 -5.524,-16.101 -3.143,-25.098 6.323,-2.813 12.935,-5.111 19.852,-1.618 -1.566,6.26 -7.799,5.537 -10.389,10.299 -2.983,5.489 0.036,14.514 0.466,19.877 1.039,12.95 1.429,26.013 1.229,39.02 -1.275,0.019 -2.427,-0.149 -3.665,-0.269 -3.259,-8.471 -0.681,-7.516 -8.512,-9.368 -7.023,-1.661 -14.056,0.239 -20.952,-0.286 1.212,2.925 1.595,6.274 1.045,9.744 -1.161,0.64 -3.773,1.37 -4.927,1.398 -2.058,-0.474 -1.269,-1.325 -1.827,-2.681"
id="path40"
clip-path="url(#clipPath3796)"
inkscape:connector-curvature="0"
transform="matrix(0.98542917,0,0,0.97735419,-339.07608,-290.84908)"
style="fill:#dbe00b" />
<line fill="none" stroke="#EF0F6C" stroke-width="0.874" stroke-miterlimit="10" x1="582.05" y1="337.509" x2="591.353" y2="334.682"/>
</g>
<path fill="none" stroke="#F0123E" stroke-width="1.0937" stroke-miterlimit="10" d="M590.814,363.762
c1.373,2.813,8.176,3.161,8.776-1.222c0.771,0.071,0.987-0.206,1.224-0.778"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 17 KiB

45
public/images/cloud.svg Normal file
View file

@ -0,0 +1,45 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="581px" height="386px" viewBox="307.775 135.445 581 386" enable-background="new 307.775 135.445 581 386"
xml:space="preserve">
<path opacity="0.7" fill="#C9DFDD" enable-background="new " d="M402.822,322.297c2.559-4.816,1.677-20.716,3.814-28.743
c4.632-17.382,8.754-5.034,22.406-9.954c9.634-3.473,15.799-13.507,27.479-13.471c10.732,0.033,17.921,9.024,30.016,6.619
c12.049-2.396,22.522-9.662,34.957-5.292c10.946,3.849,14.821,13.382,27.438,12.421c13.553-1.03,26.5-10.913,35.903-21.616
c7.39-8.414,13.788-17.635,20.265-26.677c7.868-10.981,8.562-7.608,17.513-12.015c12.984-6.394,20.661-14.353,35.246-15.16
c14.517-0.804,21.14,4.291,33.692-4.117c15.376-10.295,26.229-22.342,44.704-23.326c14.436-0.769,19.929,3.102,32.191,8.538
c20.452,9.069,43.718-6.876,57.726,21.685c6.237,12.727,6.362,25.549,19.846,32.892c12.272,6.684,21.129,1.301,25.14,17.812
c5.138,21.15,10.479,39.173,7.463,61.775c-4.394,32.947-22.064,31.662-46.17,34.271c-12.466,1.35-22.188,4.739-34.999,4.078
c-13.48-0.695-22.533-0.081-35.285,3.151c-12.628,3.201-18.549-3.713-30.905-4.453c-15.419-0.924-30.44,5.257-45.197,7.927
c-14.479,2.621-29.728,3.808-44.162,1.373c-12.137-2.048-24.811-0.126-37.021-3.771c-13.342-3.982-26.211-12.17-39.719-13.718
c-12.067-1.383-20.619,6.044-32.465,6.816c-7.688,0.503-23.148,0.176-30.031-4.081c-7.835-4.848-9.821-17.603-19.92-17.899
c-4.705-0.14-8.105,4.776-12.46,5.546c-5.577,0.986-10.931-0.945-16.263-0.369c-8.449,0.914-19.387,6.773-27.544,5.894
c-14.625-1.58-27.416-7.568-40.924-11.283c-0.302-2.127-0.396-4.253,0-6.382c5.892-4.391,18.011-7.11,21.011-12.588"/>
<path fill="none" d="M11,39.105c0,1.315,0,2.631,0,3.947"/>
<path fill="#C9DFDD" d="M463.365,311.448c-8.516-2.698-19.436,8.862-28.494,10.224c-13.336,2.005-25.959,2.91-39.479,4.88
c-13.685,1.991-27.646,1.054-41.371,3.161c-11.834,1.817-24.374,4.271-36.22,6.256c-4.305,6.998,11.222,6.35,16.551,6.369
c3.997,0.016,5.323-0.562,9.502-0.168c3.877,0.365,7.589,1.939,10.967,2.313c8.271,0.915,16.806-1.629,25.229-2.553
c8.832-0.97,14.996,1.15,24.139,0.981c9.004-0.167,16.75-3.269,25.201-4.916c10.025-1.954,12.99,0.87,23.018,0.96
c9.156,0.083,17.054-5.545,26.054-4.519c9.881,1.126,11.875,5.46,23.342,4.519c15.035-1.232,31.371-2.338,45.94-2.689
c0.521-0.365,1.361-0.482,2.09-0.593c-2.629-4.308-10.784-8.293-16.571-10.68c-10.447-4.308-15.851-1.168-25.816-2.654
c-2.971-0.442-8.422-5.172-12.299-6.039c-4.01-0.897-9.311-0.589-13.396-0.921c-8.77-0.715-15.872-5.285-23.864-4.72"/>
<path opacity="0.2" fill="#C9DFDD" enable-background="new " d="M559.994,237.729c-1.471,6.418,0.275,8.416,5.141,12.002
c4.658,3.435,5.974,6.076,9.152,11.138c2.717,4.325,5.222,8.804,10.152,10.19c2.372,0.667,5.295-0.649,7.694-0.047
c2.845,0.714,5.188,3.634,8.334,4.077c9.299,1.312,19.679-3.421,27.026-8.924c6.829-5.113,10.979-15.039,18.536-17.946
c12.147-4.674,24.609-1.029,36.649-7.829c8.562-4.835,21.216-11.031,16.88-21.99c-4.482-11.327-13.256-12.93-22.82-18.466
c-5.581-3.23-10.445-2.742-16.026-4.662c-6.14-2.111-9.98-3.932-17.026-3.493c-6.08,0.378-11.136,1.312-17.558,0.666
c-9.929-1-13.895,3.872-22.962,6.043c-9.877,2.365-20,4.342-30.166,6.443c-4.911,1.015-10.907-0.562-15.609,0.797
c-3.36,0.972-7.216,4.505-10.422,6.526c-8.638,5.445-14.34,6.095-24.233,7.495c-4.684,0.663-9.378,2.138-14.136,2.808
c-4.575,0.645-10.106,0.189-14.036,2.688c1.639,3.585,7.997,2.499,11.433,3.86c2.528,1.002,2.802,1.515,5.03,2.793
c1.214,0.696,2.013,2.808,3.964,3.198c7.94,1.59,17.355-6.76,25.618-5.909c1.052,4.002,14.274,6.812,18.742,9.873"/>
<path opacity="0.2" fill="#C9DFDD" enable-background="new " d="M722.251,378.487c1.188-6.042,0.155-7.98-2.798-11.508
c-2.829-3.376-3.562-5.914-5.386-10.794c-1.558-4.17-2.975-8.479-6.058-9.923c-1.482-0.695-3.396,0.475-4.898-0.16
c-1.78-0.751-3.158-3.579-5.141-4.083c-5.865-1.488-12.656,2.721-17.549,7.739c-4.548,4.664-7.577,13.958-12.5,16.514
c-7.915,4.104-15.7,0.323-23.63,6.447c-5.639,4.354-13.934,9.89-11.604,20.387c2.404,10.85,7.924,12.601,13.791,18.099
c3.425,3.209,6.538,2.874,10.015,4.842c3.822,2.161,6.194,3.987,10.696,3.76c3.883-0.198,7.136-0.948,11.196-0.166
c6.276,1.209,8.992-3.301,14.849-5.118c6.377-1.979,12.896-3.584,19.447-5.306c3.165-0.832,6.918,0.82,9.963-0.344
c2.177-0.832,4.769-4.077,6.889-5.908c5.71-4.93,9.363-5.395,15.714-6.458c3.006-0.505,6.053-1.776,9.105-2.285
c2.938-0.49,6.438,0.086,9.036-2.176c-0.901-3.439-4.989-2.58-7.122-3.96c-1.569-1.017-1.723-1.511-3.091-2.779
c-0.744-0.69-1.17-2.712-2.396-3.135c-4.989-1.717-11.309,5.943-16.532,4.921c-0.512-3.819-8.813-6.833-11.535-9.851"/>
</svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

View file

@ -0,0 +1,95 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="1190.55px" height="841.89px" viewBox="0 0 1190.55 841.89" enable-background="new 0 0 1190.55 841.89"
xml:space="preserve">
<path opacity="0.7" fill="#C9DFDD" d="M641.822,314.297c2.558-4.817,1.676-20.716,3.814-28.744
c4.632-17.381,8.754-5.034,22.406-9.954c9.634-3.472,15.799-13.507,27.479-13.47c10.732,0.033,17.921,9.024,30.016,6.619
c12.048-2.397,22.522-9.662,34.957-5.292c10.946,3.848,14.821,13.382,27.438,12.421c13.553-1.031,26.5-10.913,35.903-21.617
c7.39-8.414,13.788-17.634,20.265-26.676c7.868-10.982,8.562-7.609,17.513-12.015c12.984-6.393,20.661-14.352,35.246-15.16
c14.517-0.804,21.14,4.291,33.692-4.117c15.376-10.295,26.229-22.342,44.704-23.326c14.436-0.769,19.929,3.101,32.192,8.538
c20.452,9.069,43.718-6.876,57.725,21.684c6.238,12.727,6.363,25.549,19.846,32.892c12.273,6.683,21.129,1.301,25.14,17.812
c5.138,21.151,10.479,39.173,7.463,61.776c-4.394,32.947-22.065,31.662-46.17,34.271c-12.466,1.35-22.188,4.739-34.999,4.078
c-13.481-0.695-22.533-0.081-35.285,3.152c-12.628,3.201-18.549-3.713-30.906-4.453c-15.419-0.924-30.44,5.256-45.197,7.926
c-14.479,2.621-29.727,3.808-44.162,1.373c-12.137-2.047-24.811-0.126-37.021-3.771c-13.341-3.983-26.21-12.17-39.718-13.718
c-12.068-1.383-20.619,6.044-32.465,6.817c-7.689,0.502-23.149,0.175-30.031-4.082c-7.835-4.847-9.822-17.602-19.92-17.899
c-4.705-0.14-8.106,4.776-12.46,5.546c-5.577,0.986-10.931-0.945-16.263-0.369c-8.449,0.914-19.387,6.773-27.544,5.893
c-14.625-1.58-27.416-7.568-40.924-11.283c-0.301-2.127-0.395-4.253,0-6.382c5.892-4.39,18.011-7.11,21.011-12.588"/>
<path fill="none" d="M11,39.105c0,1.316,0,2.631,0,3.947"/>
<path opacity="0.8" fill="#C9DFDD" d="M282.859,387.519c-9.644,0.396-12.539,0.953-7.693,1.644c1.023,0.001,2.194,0.005,3.217,0.014
c1.29,0.791,20.289,1.868,35.789,1.38c4.862,0.293,9.724,0.451,16.45,0.545c9.413,0.13,13.948-0.053,22.84-0.094
c16.545-0.077,25.684,0.741,44.031,0.396c6.755-0.127,14.137-0.463,21.177-0.528c6.535-0.06,11.915,0.068,18.832-0.052
c11.423-0.196,12.84-0.531,18.317-0.993c4.042-0.341,11.041-0.597,15.491-0.944c5.753-0.448,4.507-0.42,1.894-0.815
c-2.021-0.306-2.435-0.48-3.455-0.811c-1.46-0.472-6.448-0.903-12.996-1.223c-4.798-0.235-9.83-0.416-14.948-0.648
c-3.353-0.152-5.295-0.32-9.849-0.374c-4.363-0.051-6.498,0.113-10.253,0.089c-7.157-0.045-14.067-0.37-21.688-0.475
c-7.813-0.108-17.574-0.136-25.695-0.073c-8.453,0.065-14.134,0.038-22.79,0.038c-11.771,0-33.084,0.226-40.007,0.707
c-4.581,0.319-5.236,0.434-12.997,0.625c-9.359,0.231-7.176,0.289-10.408,0.746c-0.803,0.114-2.398,0.203-4.245,0.242
c-0.669,0.212-1.514,0.438-1.016,0.652"/>
<path opacity="0.6" fill="#C9DFDD" d="M453.601,285.793c-3.833,5.436-6.701,15.7-1.361,21.07c3.211,3.229,6.88,1.825,10.149,4.728
c2.583,2.293,3.317,8.757,5.733,11.938c13.566,17.866,37.07,7.981,54.575,17.572c11.178,6.124,12.896,12.701,28.518,11.272
c10.665-0.975,19.468-4.708,29.45-7.748c19.198-5.847,51.036-0.675,58.163-25.049c4.238-14.496-5.062-30.686-13.443-41.484
c-4.846-6.24-10.008-9.802-15.291-17.13c-6.105-8.469-10.639-13.377-21.701-14.889c-9.247-1.264-17.303,1.697-26.301-0.198
c-9.58-2.018-16.894-7.082-27.419-5.757c-7.9,0.995-14.833,5.265-22.991,6.727c-8.876,1.59-17.445,1.871-26.268,5.433
c-8.627,3.483-19.258,10.61-24.934,16.909c-6.997,7.766-4.858,16.437-7.975,26.535"/>
<path fill="#C9DFDD" d="M505.906,368.396c10.322-0.162,15.688-0.239,23.836-1.38c8.002-1.121,10.873-2.015,22.49-1.601
c10.15,0.362,13.418,1.212,23.787,0.184c10.686-1.059,18.928-2.974,32.982-2.384c8.547,0.358,14.512,1.761,21.777,2.433
c7.984,0.738,13.723,1.193,20.088,2.532c6.871,1.446,10.602,2.595,22.678,2.495c10.41-0.085,20.402-1.238,30.715-1.249
c12.836-0.014,16.457,2.011,27.428,2.591c10.564,0.559,25.311-0.491,35.17-1.138c-4.064,2.655-21.133,5.867-39.736,6.492
c-24.996,0.839-42.869-1.769-62.557,1.851c-10.012,1.841-15.037,6.69-38.355,5.576c-20.307-0.971-19.402-5.129-35.92-5.917
c-9.191-0.438-11.617-0.276-18.9-1.678c-5.502-1.059-9.455-2.112-17.203-2.812c-7.898-0.714-13.646-0.684-22.826-0.44
c-4.117,0.11-4.023,0.542-7.924,0.482c-2.428-0.038-6.082-0.703-8.762-0.866c-17.477-1.066-26.227,0.179-41.404,0.732
c-7.309,0.266-16.188,0.157-24.104,0.345c-6.441,0.153-13.378,0.18-19.805-0.064c-0.7-0.562,0.104-1.074,2.218-1.497
c16.293-1.07,34.955,0.256,46.716-2.444c1.457-0.334,0.576-1.329,3.725-1.519c5.139-0.31,6.48,0.805,9.885,0.797
c4.412-0.011,12.428-1.335,17.072-1.755c0.006-0.007,0.561,0.149,1.312,0.233"/>
<path opacity="0.5" fill="#C9DFDD" d="M234.426,312.604c9.779-1.234,12.621-9.899,17.261-16.66
c7.442-10.842,9.299-10.038,21.063-12.117c12.881-2.276,22.586-12.071,32.324-19.879c11.876-9.523,12.033-1.903,25.788-3.203
c11.55-1.092,20.878-7.745,32.876-6.781c8.407,0.675,19.949,3.826,26.27,8.725c14.521,11.252,13.302,32.871,37.291,33.058
c9.915,0.078,9.176-1.699,15.342,4.993c4.01,4.354,4.853,7.106,10.658,11.147c7.99,5.562,21.373,12.522,19.835,23.383
c-16.882,7.901-28.884,12.983-48.031,12.089c-10.964-0.512-17.146,0.715-27.149,5.241c-11.259,5.092-12.582,4.167-24.378,2.703
c-17.45-2.167-35.495,0.88-53.372-2.181c-8.854-1.516-16.608-2.096-24.41-5.542c-2.992-1.322-6.58-4.275-9.859-4.992
c-5.176-1.131-7.957,1.047-13.154,0.822c-15.883-0.689-32.143-7.116-47.154-10.027c-1.969-0.382-6.268,0.679-8.976,0.295
c-3.441-0.489-5.785-2.347-9.379-2.428c-6.048-0.136-13.672,3.818-19.913,6.227c-6.651,2.567-11.918,7.075-18.712,8.691
c-1.237,0.294-7.242-0.434-9.841-0.078c-3.723,0.511-7.458,2.414-10.955,3.254c-10.423,2.506-36.418,6.223-45.832-0.173
c0.195-12.183,13.974-16.848,25.014-17.697c11.826-0.909,19.783-2.133,30.68-5.984c8.773-3.1,15.558-7.183,24.135-11.818
c5.37-2.902,6.876-3.448,12.881-4.818c3.511-0.801,6.96,0.602,10.928-2.061c5.229,5.671,27.48,2.576,35.343,4.818"/>
<path fill="#C9DFDD" d="M66.774,297.646c4.673-1.07,6.587-3.977,11.203-4.217c4.088-0.213,7.398,3.08,11.811,3.246
c8.492,0.32,15.564-5.297,22.957-6.973c14.689-3.332,36.58,1.221,52.658,1.984c11.762,0.559,15.862,1.256,25.176-4.99
c6.619-4.439,11.637-8.863,19.777-4.715c3.001,1.531,1.779,5.213,6.31,6.947c5.628,2.156,4.146-0.461,9.259-0.967
c8.71-0.861,13.707,1.373,22.769,1.732c19.676,0.779,42.496-7.633,61.281,1.225c-8.434,8.682-37.547,11.715-50.326,11.742
c-7.922,0.018-16.498-5.154-24.139-5.035c-7.686,0.119-16.172,4.779-24.324,4.76c-16.906-0.041-37.583-3.469-53.423-1.734
c-9.683,1.061-16.112,2.898-26.332,1.018c-7.394-1.361-17.5-3.547-24.357-2.252c-8.367,1.58-10.922,4.678-19.507,4.213
c-6.396-0.348-15.213-1.469-21.504-2.951c2.847-0.293,5.067-2.498,6.191-3.033"/>
<path fill="#C9DFDD" d="M702.365,303.448c-8.516-2.698-19.436,8.862-28.494,10.224c-13.336,2.004-25.959,2.91-39.48,4.879
c-13.684,1.992-27.645,1.054-41.371,3.162c-11.834,1.817-24.374,4.271-36.22,6.255c-4.304,6.999,11.222,6.35,16.551,6.37
c3.997,0.015,5.323-0.562,9.502-0.168c3.877,0.365,7.589,1.939,10.967,2.313c8.27,0.915,16.805-1.629,25.229-2.553
c8.832-0.969,14.996,1.151,24.139,0.982c9.004-0.167,16.75-3.269,25.201-4.916c10.025-1.954,12.99,0.87,23.018,0.96
c9.156,0.083,17.053-5.545,26.053-4.519c9.881,1.126,11.875,5.46,23.342,4.519c15.035-1.233,31.371-2.338,45.941-2.69
c0.52-0.365,1.361-0.482,2.09-0.592c-2.629-4.308-10.785-8.293-16.572-10.68c-10.447-4.308-15.85-1.168-25.816-2.654
c-2.971-0.443-8.422-5.172-12.299-6.039c-4.01-0.898-9.311-0.589-13.395-0.921c-8.77-0.715-15.873-5.286-23.865-4.72"/>
<path fill="#C9DFDD" d="M345.207,215.422c2.867,9.337,5.019,9.245,11.837,14.478c6.405,4.916,8.871,7.965,14.223,14.762
c9.194,11.674,25.263,15.528,33.37,29.746c14.81,3.283,26.962,3.679,39.546-5.896c6.635-5.048,7.847-10.594,16.452-13.982
c7.348-2.893,14.537-4.371,21.083-7.86c6.514-3.472,9.171-8.494,17.436-10.192c8.988-1.847,13.006,1.168,21.376-3.696
c3.578-2.08,15.302-7.912,16.845-11.741c2.671-6.628-3.742-11.95-5.556-18.553c-9.707-0.921-14.635-7.927-23.455-10.814
c-8.369-2.739-20.105-4.681-28.947-6.154c-10.283-1.714-13.992,1.035-23.977,1.978c-8.697,0.822-15.787-2.921-24.346-3.942
c-18.909-2.256-32.426,6.685-49.008,9.536c-14.431,2.482-27.891-7.269-40.832,6.668c-6.359-5.113-20.725-2.157-27.367-2.56
c-1.629,2.662-1.919,5.686-1.346,8.783c11.236,4.322,21.705,1.506,28.948,11.842c4.766,0.53,8.323,3.045,10.297,6.809"/>
<path opacity="0.2" fill="#C9DFDD" d="M798.994,229.729c-1.471,6.418,0.275,8.416,5.14,12.002c4.658,3.435,5.974,6.076,9.153,11.138
c2.716,4.325,5.221,8.804,10.152,10.19c2.372,0.667,5.295-0.649,7.694-0.047c2.845,0.714,5.188,3.634,8.334,4.078
c9.299,1.312,19.679-3.421,27.027-8.924c6.829-5.114,10.978-15.039,18.536-17.947c12.147-4.673,24.609-1.029,36.649-7.829
c8.562-4.835,21.216-11.031,16.88-21.99c-4.482-11.327-13.256-12.93-22.82-18.466c-5.581-3.23-10.445-2.742-16.027-4.662
c-6.139-2.111-9.98-3.931-17.026-3.493c-6.08,0.378-11.136,1.312-17.558,0.666c-9.928-1-13.894,3.872-22.961,6.043
c-9.877,2.365-20.001,4.342-30.167,6.443c-4.911,1.015-10.907-0.562-15.609,0.797c-3.36,0.972-7.216,4.505-10.422,6.527
c-8.637,5.445-14.34,6.094-24.233,7.495c-4.684,0.663-9.378,2.137-14.136,2.807c-4.575,0.645-10.106,0.19-14.036,2.688
c1.639,3.585,7.997,2.499,11.433,3.86c2.528,1.002,2.801,1.515,5.03,2.793c1.214,0.696,2.012,2.808,3.964,3.198
c7.94,1.59,17.355-6.759,25.618-5.909c1.052,4.002,14.274,6.813,18.742,9.873"/>
<path opacity="0.2" fill="#C9DFDD" d="M961.25,370.487c1.188-6.042,0.156-7.98-2.797-11.508c-2.829-3.376-3.562-5.914-5.386-10.794
c-1.558-4.17-2.975-8.479-6.058-9.923c-1.482-0.695-3.395,0.475-4.898-0.16c-1.781-0.751-3.158-3.579-5.141-4.083
c-5.865-1.488-12.656,2.721-17.549,7.74c-4.548,4.664-7.577,13.958-12.5,16.513c-7.915,4.105-15.7,0.323-23.629,6.447
c-5.639,4.354-13.934,9.89-11.605,20.387c2.404,10.85,7.924,12.601,13.791,18.099c3.425,3.209,6.538,2.874,10.015,4.841
c3.822,2.162,6.194,3.988,10.696,3.76c3.883-0.198,7.136-0.948,11.196-0.166c6.277,1.209,8.993-3.301,14.849-5.118
c6.377-1.979,12.896-3.584,19.447-5.306c3.165-0.832,6.918,0.821,9.963-0.343c2.177-0.832,4.769-4.078,6.889-5.908
c5.71-4.93,9.363-5.395,15.714-6.458c3.006-0.505,6.052-1.777,9.105-2.286c2.937-0.49,6.437,0.086,9.036-2.175
c-0.901-3.44-4.989-2.58-7.122-3.96c-1.569-1.017-1.722-1.511-3.091-2.78c-0.744-0.69-1.17-2.712-2.396-3.134
c-4.989-1.717-11.309,5.943-16.532,4.92c-0.512-3.819-8.814-6.833-11.536-9.85"/>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

View file

@ -2,47 +2,23 @@
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="390.54px" height="414.864px" viewBox="0 0 390.54 414.864" enable-background="new 0 0 390.54 414.864"
xml:space="preserve">
<path opacity="0.2" fill="#EEB9D9" d="M29.392,329.493c-2.671,15.49-13.02,32.522-8.234,51.097
c1.937,7.52,7.161,14.719,14.985,15.179c3.559,0.21,6.497-4.188,9.541-4.54c4.786-0.554,8.79,2.644,12.615,2.197
c19.41-2.271,7.661-29.232,3.59-41.092c-1.699-4.949-6.436-17.517-11.131-20.821c-4.23-2.981-17.908-5.773-21.717-2.378
c-0.5,0.384-0.773,0.9-0.816,1.544"/>
<path fill="#685B35" d="M271.108,36.434c-1.011,3.064-14.624,5.218-19.558,10.932c-6.344,7.347-7.637,20.443-7.3,29.731
c0.695,19.176,14.369,53.209,30.128,65.155c7.401,5.61,17.978,8.588,27.091,9.511c10.62,1.075,13.476,1.054,22.187,7.068
c12.563,8.675,29.225,9.311,38.534,23.766c4.851,7.532,5.021,15.519,8.146,23.258c13.603-8.544-0.85-40.085-2.336-51.777
c-1.38-10.884,2.133-18.439-0.819-27.591c-3.061-9.487-8.001-16.883-9.662-27.071c-3.356-20.589-3.771-36.743-16.669-54.427
c-7.907-10.84-23.656-23.578-37.306-27.299c-7.402-2.018-16.513-0.634-21.957,4.453C277.237,26.206,276.635,34.727,271.108,36.434"
/>
<path fill="none" d="M83.95,192.171c-0.186,6.211-0.497,13.22,1.499,19.399"/>
<path opacity="0.7" fill="#F0959C" d="M286.289,145.759c-33.637-9.126-47.449,55.707-61.01,74.628
c-9.898,13.811-27.872,23.389-44.146,27.568c-19.741,5.069-30.175-13.493-47.811-11.88c-5.189,0.476-14.062,4.618-16.21,9.234
c8.066,2.012,14.844,3.671,21.754,8.819c6.142,4.576,9.68,11.183,16.925,14.919c17.134,8.837,37.076-0.131,52.264-8.018
c9.814-5.096,29.695-22.521,40.866-20.329c15.476,3.039,10.487,36.695,7.887,47.364c-6.95,28.519-24.96,69.995-1.167,96.841
c13.506,15.242,32.667,3.794,50.498,4.459c17.394,0.646,35.388,10.297,48.164-5.651c10.36-12.932,8.91-34.819,7.887-51.389
c-1.209-19.609-4.871-36.473-4.671-57.04c0.349-35.644,27.464-74.246-4.438-101.332c-11.203-9.513-20.094-14.448-33.219-19.58
c-12.879-5.035-25.895-3.871-38.244-8.615"/>
<path fill="#BAA570" d="M136.821,142.946c-16.528-1.704-32.17,5.273-26.625,22.577c1.709,5.333,6.012,2.6,4.759,8.645
c-0.715,3.445-6.066,3.49-7.067,5.876c-3.292,7.847,0.79,10.98,8.902,13.047c-4.859,9.117-12.239,11.933-6.535,23.259
c4.223,8.383,11.717,11.002,19.528,13.364c4.788,1.446,5.554-0.216,10.248,2.387c3.028,1.678,5.904,5.959,8.759,7.927
c10.114,6.975,12.515,2.942,22.772,1.786c8.392-0.944,14.403,0.651,22.77-5.86c4.283-3.333,4.374-6.084,9.049-8.701
c3.608-2.02,8.813-0.356,12.643-3.771c8.392-7.488,1.416-14.611,2.478-23.56c0.42-3.541,5.05-6.582,4.987-11.556
c-0.075-5.949-4.107-6.107-5.21-10.672c-2.993-12.405,6.2-21.662-2.932-34.806c-6.314-9.09-17.093-12.135-26.205-16.613
c-10.111-4.971-18.497-12.091-30.129-3.527c-7.399,5.447-10.909,20.552-22.191,19.008"/>
<path fill="none" d="M49.477,130.99c1.911,4.254,1.434,10.601,1.499,16.415"/>
<path opacity="0.9" fill="#CBE1E8" d="M123.977,238.946c-1.642-0.204-6.066,0.634-9.142,1.391
c-7.331,21.757-8.535,48.043-26.116,64.924c-7.103,6.82-21.064,13.666-30.166,16.572c-7.634,2.437-35.734,0.341-27.822,15.569
c7.141-0.286,13.125,1.789,19.386,3.564c14.87-10.402,30.126-16.803,43.499-29.265c6.066-5.651,12.561-10.228,17.812-16.575
c5.983-7.233,9.492-15.942,18.156-21.275c8.701,11.592,3.903,39.127,0.165,51.776c-4.252,14.392-12.248,34.974-7.876,51.19
c6.174,22.896,25.215,12.482,39.469,11.827c15.735-0.724,33.279,9.981,47.704-0.146c6.388-19.227-4.712-41.464-9.138-60.461
c-5.107-21.917,3.428-45.589,2.102-68.684c-14.157-7.596-29.726,13.03-45.659,2.495c-11.25-7.439-20.595-26.423-35.879-20.527"/>
<path fill="none" d="M-1.484,98.161c1.626,1.811,3.145,12.053,4.497,17.907"/>
<path opacity="0.2" fill="#EEB9D9" d="M31.727,331.127c-15.804-13.447-11.5-28.01-15.44-47.269
c-3.764-18.398-5.918-33.012-4.35-52.545c2.46-30.676,15.768,3.81,18.688,16.574c2.676,11.702-4.533,52.109,16.287,39.248
c0.485-0.301,3.889-0.222,4.495-0.157c2.764-9.985-0.08-17.951-2.224-27.086c-2.362-10.068-1.214-16.149,1.228-26.142
c1.73-7.079,2.219-20.577,10.477-19.041c8.211,1.528,7.233,15.037,8.146,21.418c2.811,19.63,4.795,35.867-1.103,54.602
c-5.643,17.92-1.416,34.767-23.354,39.215C40.797,330.708,34.225,331.57,31.727,331.127"/>
<path opacity="0.3" fill="#F0959C" d="M271.621,145.946c-4.546,9.44,11.508,14.898,18.688,15.101
c10.938,15.275,29.976,20.527,41.104,35.95c11.548,16.006,22.271,28.585,26.996,50.202c12.149-20.923,5.306-57.647-11.451-73.855
c-13.178-12.746-55.298-29.019-72.634-26.046"/>
width="341px" height="329px" viewBox="0 0 341 329" enable-background="new 0 0 341 329" xml:space="preserve">
<path fill="none" d="M-243.321,310.151c4.236,2.69,7.549,7.308,9.434,13.208"/>
<path fill="none" d="M-198.038,317.698c0.104,1.639,0.733,1.639,1.887,0"/>
<path fill="none" d="M-248.981,500.718c0.043,2.615-0.133,5.229-1.887,1.887"/>
<path fill="none" d="M-315.019,417.698c-0.874-2.107,0.456-3.383-2.082-4.895c2.567,4.578,6.12,8.258,9.629,12.442"/>
<path fill="none" d="M-403.698,366.755c5.092,1.486,1.083-1.083,0-1.887"/>
<path fill="none" d="M-499.924,334.68c0.629,0.629,1.258,1.258,1.887,1.887"/>
<line fill="#FFFFFF" stroke="#000000" stroke-miterlimit="10" x1="234.038" y1="-140.792" x2="232.151" y2="-129.471"/>
<line fill="none" stroke="#000000" stroke-miterlimit="10" x1="218.943" y1="-210.604" x2="215.17" y2="-195.509"/>
<path fill="#F0A5B7" d="M106.211,70.509c8.001,5.324,18.511,28.271,31.071,23.432c11.945-4.601,17.078-21.88,31.502-25.167
c-7.34,0.713-15.285,0.078-22.776,0.632c-7.229,0.534-16.102,2.558-23.371,0.796c-6.109-1.48-11.061-10.584-17.05-8.546
c-9.297,3.164-0.839,12.709,5.573,12.981"/>
<path fill="#E8ED19" d="M99.695,64.432c-0.307,7.417-5.47,18.801-9.004,25.898c5.028-4.479,9.184-11.098,13.259-16.239
c-2.974-1.09-5.54-5.185-6.669-5.589"/>
<ellipse fill="#ABDDE9" cx="141.657" cy="142.075" rx="53.657" ry="47.075"/>
<ellipse fill="#FFFFFF" cx="141.657" cy="142.828" rx="34.524" ry="32.011"/>
<ellipse fill="#ABDDE9" cx="197.218" cy="202.901" rx="53.657" ry="47.075"/>
<ellipse fill="#FFFFFF" cx="197.218" cy="203.654" rx="34.524" ry="32.011"/>
<polygon fill="#FFFFFF" points="275,260.521 244.035,283.471 206.599,270.667 200.129,234.912 231.095,211.961 268.53,224.765 "/>
</svg>

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 2 KiB

View file

@ -2,59 +2,26 @@
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="363.463px" height="430.464px" viewBox="0 0 363.463 430.464" enable-background="new 0 0 363.463 430.464"
xml:space="preserve">
<path fill="#EADB92" d="M186.201,42.361c-9.985,21.587-41.01,39.28-37.344,65.833c8.989,1.438,17.238-0.25,26.312-2.357
c8.072-1.874,14.767-8.156,22.983-5.242c19.875,24.72,10.617,72.651,9.257,103.62c-1.594,36.245-7.923,71.565-11.283,106.723
c-1.868,19.542-3.801,38.809-6.611,58.04c-2.062,14.107-13.104,46.153,5.291,47.687c5.12-15.648,1.916-35.013,5.797-51.04
c3.989-16.467,8.262-34.476,16.279-49.025c8.516-15.448,25.159-19.376,42.077-19.372c16.544,0.002,37.801-4.289,54.172,0.054
c41.949,11.123,15.855,84.95,26.613,115.906c2.562,0.672,7.314,1.194,9.547,1.163c2.072-36.722,6.218-71.551,7.915-106.828
c0.901-18.771-2.215-36.536-1.351-54.88c0.757-16.019-1.618-35.228-15.202-44.125c-13.8-9.037-36.104-8.456-51.849-10.246
c-15.589-1.771-37.751,1.317-44.128-15.959c-5.654-15.316-7.166-33.043-11.008-48.91c-4.16-17.17-9.729-32.768-14.428-48.876
c-4.462-15.31-8.228-30.503-14.285-45.58c-6.651-16.551-13.036-20.954-25.51-32.545c7.676,10.25,4.63,23.513,16.236,31.52
c-5.912-3.407-5.222-9.182-9.211-14.049c-3.568-4.354-9.405-7.64-14.447-10.924c1.904,11.014,5.743,22.273,17.103,26.883
c-2.467,0.568-3.485,2.756-5.135,3.667"/>
<ellipse fill="#2408F2" cx="187.385" cy="68.728" rx="2.034" ry="1.544"/>
<path fill="#E2C0D0" d="M240.485,183.422c-8.163,2.673-7.586,10.538-3.068,16c2.853,3.452,6.46,1.875,9.693,4.915
c3.629,3.41,1.94,7.064,6.638,9.504c11.404,5.923,31.148-6.271,38.222-14.092c-14.875-10.1-37.766,4.098-43.938-16.141
c-2.086-1.11-4-1.392-6.44-1.272"/>
<path fill="#E2C0D0" d="M220.598,126.924c-9.906,12.5,1.557,30.401,14.082,36.776c2.801-6.345-2.354-38.699-12.977-33.518"/>
<path fill="#E2C0D0" d="M311.197,216.018c-2.562-0.976-9.464-7.54-9.089-14.042c-4.103,4.446,7.932,13.63,13.477,15.16
c7.969,2.197,14.903-3.952,23.042-5.653c3.024-12.863-30.839-14.555-37.373-9.589"/>
<path fill="#E2C0D0" d="M297.743,225.608c3.718-1.491-8.926-18.918-14-8.212C280.786,223.633,293.582,227.277,297.743,225.608z"/>
<path fill="#E2C0D0" d="M222.809,168.211c-3.846,7.303,10.538,10.833,10.877,2.337c-3.261-0.74-6.271-1.404-9.773-1.25"/>
<path fill="#E2C0D0" d="M213.969,98.674c-0.998,1.577-1.681,3.745-0.913,6.33c0.698,0.753,3.442,3.083,4.228,3.611
c3.047-3.742,1.088-12.497-4.419-9.941"/>
<path fill="#140F0F" d="M149.886,94.328c-1.639,4.51-3.619,8.798-3.122,13.935c6.54,4.284,17.573,1.917,12.877-7.23
c-2.535-2.293-7.623-4.408-8.649-4.532"/>
<path fill="#B8C8CC" d="M273.298,286.858c5.833-8.274,13.608-23.883,26.974-17.789c12.78,5.829,7.918,20.818,4.46,30.416
c-5.217,14.48,1.028,19.353,5.347,32.775c6.523,20.277-15.798,11.838-26.584,10.537c0.062,0.289,0.08,2.494,0.025,2.77
c13.237,4.509,12.628,15.843,14.276,27.041c1.464,9.934,12.853,23.209,4.734,32.276c-14.608,16.321-53.528,10.384-73.589,9.896
c-1.953-4.365-3.022-9.137-2.228-14.104c7.835-2.823,14.928-3.803,16.513-12.576c1.433-7.928-2.563-13.113,1.362-21.694
c2.641-5.776,9.486-11.914,8.657-18.591c-0.938-7.563-8.885-9.573-14.476-13.434c-12.737-8.801-14.78-23.833-12.308-38.278
c1.242-7.262,4.688-16.739,12.25-15.159c11.505,2.404,3.126,10.055,2.286,17.278c-0.493,4.249-2.318,7.304,2.232,10.434
c11.373-4.526,12.024-21.136,27.892-19.167c0.719-1.417,1.816-1.186,3.288-1.596"/>
<path fill="none" d="M-66.537,574c1.286,2.191,2.268,4.482,3,7"/>
<path fill="#0C0CE8" d="M276.639,234.172c-4.016,0.889-10.088,3.751-8.936,9.321c1.235,5.971,7.67,4.104,11.465,7.961
c6.764,6.875,4.583,22.624,21.752,17.636c7.596-2.207,15.834-14.288,21.658-19.167c6.518-5.46,15.487-13.393,21.857-16.052
c-10.403,5.685-26.13,6.486-37.668,8.593c-8.934,1.632-11.744,0.243-18.126-2.898c-4.703-2.315-8.16-6.248-13.116-4.363"/>
<path fill="none" d="M-167.537,529c2.164,0.854,3.121,3.116,3,6"/>
<path fill="#F70B54" d="M266.616,239.337c0.651,3.683-1.296,5.763,2.921,7.202c-8.357,3.348-17.877,2.077-27.034,4.208
c6.094-5.231,17.145-9.536,24.113-12.442"/>
<path fill="#EDABE4" d="M70.447,316.381c2.337,3.156,4.774,9.055-0.105,12.472c-5.231,3.664-8.659-1.724-14.261-1.219
c-9.987,0.897-19.75,13.939-28.886-0.437c-4.042-6.361-1.426-20.447-2.223-27.689c-0.89-8.103-1.815-19.567-4.62-25.504
c3.612,10.689,14.704,21.062,21.744,29.799c5.451,6.766,8.54,7.482,15.545,9.119c5.163,1.206,10.571,0.438,12.886,4.917"/>
<path fill="#F4E806" d="M74.153,326.446c-3.145,2.327-3.203,5.081-7.373,3.528c3.783,7.68,11.767,12.655,17.021,19.931
c-0.741-7.672-5.833-17.736-8.902-24.225"/>
<path fill="none" d="M198.677,200.08c0.996,2.48-0.691-0.377-1.113-1.033"/>
<path fill="#2D4F33" d="M214.244,411.879c-2.441-11.727-13.99-19.523-30.071-18.597c-14.764,0.851-22.911,12.057-35.247,18.649
c11.189,0.437,21.67,4.064,34.133,4.079c7.187,0.008,28.877-4.718,30.071-3.1"/>
<path fill="none" d="M-208.537,612c2.512,2.171,4.505,4.861,6,8"/>
<path fill="#E5DFE4" d="M152.462,400.934c-1.621,2.071-7.15,15.783,4.703,12.97c11.196-2.656,3.206-14.687-4.703-10.903"/>
<path opacity="0.4" fill="#706F6F" d="M40.523,331.88c0.012,26.16-5.698,50.683,0.189,76.269c13.771,8.346,31.526,5.96,46.34,6.146
c15.186,0.192,32.769-2.9,47.853,0.077c0.406-0.388,0.817-0.769,1.236-1.146c-0.033-10.151-29.312-4.299-37.678-3.896
c-12.342,0.591-31.866,2.269-43.461-1.003c-12.113-3.418-10.516-22.771-11.134-34.095c-0.712-13.036,4.193-27.684,2.059-41.161
c-1.946,0.14-3.67-0.492-5.403-0.159"/>
<ellipse fill="#2408F2" cx="262.463" cy="313" rx="2.488" ry="1.92"/>
<path fill="#E2C0D0" d="M345.14,219.111c-10.007,5.452-2.073,19.87,3.997,24.571c6.942-6.781,3.131-16.763-2.646-23.22"/>
width="341px" height="329px" viewBox="0 0 341 329" enable-background="new 0 0 341 329" xml:space="preserve">
<path fill="none" d="M-243.321,310.151c4.236,2.69,7.549,7.308,9.434,13.208"/>
<path fill="none" d="M-198.038,317.698c0.104,1.639,0.733,1.639,1.887,0"/>
<path fill="none" d="M-248.981,500.718c0.043,2.615-0.133,5.229-1.887,1.887"/>
<path fill="none" d="M-315.019,417.698c-0.874-2.107,0.456-3.383-2.082-4.895c2.567,4.578,6.12,8.258,9.629,12.442"/>
<path fill="none" d="M-403.698,366.755c5.092,1.486,1.083-1.083,0-1.887"/>
<path fill="none" d="M-499.924,334.68c0.629,0.629,1.258,1.258,1.887,1.887"/>
<line fill="#FFFFFF" stroke="#000000" stroke-miterlimit="10" x1="234.038" y1="-140.792" x2="232.151" y2="-129.471"/>
<line fill="none" stroke="#000000" stroke-miterlimit="10" x1="218.943" y1="-210.604" x2="215.17" y2="-195.509"/>
<path fill="none" d="M-149-103c0.057,1.872,0.395,3.909,1,6"/>
<path opacity="0.4" fill="#EDB9DB" stroke="#ECC6E0" stroke-width="1.3224" stroke-miterlimit="10" d="M124.647,170.801
c17.874,12.062,10.972,75.009,51.027,51.057c12.427-7.431,47.523-72.907,23.238-69.97c-4.476,8.643-8.036,17.745-12.708,26.19
c4.353-6.833,13.304-19.567,9.489-27.466c-13.484-2.536-16.205,17.55-20.383,24.876c2.41-8.851,9.491-15.694,13.899-23.823
c-12.836-18.499-20.563,14.356-27.684,21.235c4.998-14.936,27.05-36.782,23.231-52.935c-2.094-0.333-4.334-0.407-6.413,0.025
c-6.711,7.684-12.675,18.321-17.674,28.197c-6.257,12.359-10.083,20.58-25.095,12.728c-5.403-2.826-27.74-20.205-29.881-5.353
c-0.42,2.909,21.601,18.673,25.807,21.617"/>
<path fill="#ECF050" d="M132.872,133.806c0.771-7.281-24.884-33.177-34.298-23.98c-9.114,8.904,12.869,9.001,16.406,9.918
c6.693,1.733,16.904,6.358,19.263,12.786"/>
<path fill="#ECF050" d="M134.243,117.222c1.897-9.221-7.935-25.509-2.507-38.044c0.639,0.069,3.005,0.068,3.644,0
c4.782,10.843,2.363,27.899,0.234,39.32"/>
<path fill="none" stroke="#ECC6E0" stroke-miterlimit="10" d="M-198,96c2.586,1.803,3.786,4.414,3,7"/>
<path fill="#ECF050" d="M141.097,137.633c7.723-3.765,2.325-30.477,16.248-31.695c1.917,12.085-11.026,22.166-13.506,32.971"/>
</svg>

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

111
public/images/flowers.svg Normal file
View file

@ -0,0 +1,111 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="830.189px" height="543.396px" viewBox="0 0 830.189 543.396" enable-background="new 0 0 830.189 543.396"
xml:space="preserve">
<path opacity="0.8" fill="#F6D2E1" d="M720.464,337.652c-20.143,20.052-20.053,69.395,4.773,87.85
c30.021,22.316,51.371,24.838,71.742,61.449c14.002-74.286-19.703-133.707-81.291-149.299"/>
<path opacity="0.6" fill="#F6D2E1" d="M469.619,201.777c-22.862-9.939-51.136-11.881-66.864,13.563
c-10.862,17.573,54.305,20.944,57.622,20.509c24.38-3.204,51.67-15.916,70.77-34.196c31.087-29.758,36.521-77.738,37.481-122.424
c-33.544,25.933-68.79,29.587-100.317,49.218c-27.204,16.939-52.705,69.524-44.704,104.555
c24.292-3.891,38.283-50.021,34.782-76.379c-6.857-51.483-33.984-99.959-68.146-136.845c-1.144,39.9-16.967,76.824-13.895,116.556
c2.285,29.551,21.646,50.858,28.722,77.913c7.275,27.814-2.877,42.597,21.619,65.632c20.316,19.104,35.457,26.142,54.785,52.49
c33.336,45.443,85.653,24.076,123.27,63.85c36.98-55.296,0.82-147.241-50.322-169.312
C527.645,215.353,498.036,214.126,469.619,201.777z"/>
<path fill="none" d="M-98.113,371.698c4.236,2.69,7.549,7.308,9.434,13.208"/>
<path fill="none" d="M-52.83,379.245c0.104,1.639,0.733,1.639,1.887,0"/>
<path fill="none" d="M-103.773,562.265c0.043,2.615-0.133,5.229-1.887,1.887"/>
<path opacity="0.5" fill="#F6D2E1" d="M404.947,210.167c-32.892,13.531-90.149,78.675-64.466,129.79
c4.186,8.33,17.276,11.528,22.717,18.469c8.414,10.734,10.227,30.23,18.83,41.559c8.349,10.996,17.724,10.638,25.777,24.256
c6.128,10.363,8.123,27.989,13.114,40.303c8.515-13.118,8.632-30.354,10.791-46.974c26.35-17.569,31.192-87.979,33.712-124.996
c-20.161-30.812-43.495-58.883-68.557-79.726"/>
<ellipse fill="#F0F11A" cx="422.698" cy="214.331" rx="9.935" ry="15.596"/>
<ellipse fill="#F0F11A" cx="402.83" cy="226.027" rx="9.935" ry="15.596"/>
<ellipse fill="#F0F11A" cx="695.437" cy="340.234" rx="9.935" ry="15.596"/>
<path fill="#F0F11A" d="M440.587,245.119c-0.271,3.747-2.964,6.532-6.015,6.223c-3.05-0.311-5.303-3.599-5.03-7.345
c0.271-3.747,2.964-6.532,6.014-6.223C438.607,238.085,440.859,241.373,440.587,245.119z"/>
<path fill="#F0F11A" d="M391.335,252.293c-0.263,3.886-3.804,6.708-7.908,6.304c-4.104-0.405-7.217-3.884-6.954-7.77
c0.264-3.887,3.803-6.708,7.906-6.304C388.484,244.929,391.598,248.407,391.335,252.293z"/>
<path fill="#F0F11A" d="M369.046,284.297c-0.287,3.814-3.419,6.604-6.995,6.231s-6.242-3.768-5.955-7.582
c0.288-3.814,3.418-6.604,6.994-6.232C366.667,277.089,369.333,280.482,369.046,284.297z"/>
<path fill="#F0F11A" d="M708.09,319.049c-0.287,3.814-3.419,6.604-6.994,6.231c-3.576-0.373-6.242-3.768-5.955-7.582
c0.288-3.814,3.418-6.604,6.994-6.232C705.711,311.841,708.376,315.234,708.09,319.049z"/>
<path fill="#F0F11A" d="M423.638,250.538c-0.167,2.264-2.215,3.902-4.574,3.659c-2.359-0.242-4.135-2.273-3.968-4.537
c0.167-2.264,2.214-3.902,4.573-3.66C422.028,246.243,423.805,248.273,423.638,250.538z"/>
<path fill="#F0F11A" d="M384.772,270.702c-0.219,2.928-2.69,5.063-5.52,4.77s-4.945-2.905-4.726-5.833
c0.22-2.928,2.69-5.062,5.519-4.771C382.876,265.163,384.991,267.774,384.772,270.702z"/>
<path fill="#F0F11A" d="M456.841,211.229c-0.47,6.253-4.277,10.967-8.502,10.526c-4.224-0.441-7.268-5.869-6.797-12.122
c0.471-6.255,4.277-10.967,8.501-10.528C454.268,199.549,457.312,204.976,456.841,211.229z"/>
<path fill="#F0F11A" d="M733.964,339.707c-0.324,4.411-3.279,7.712-6.601,7.37c-3.319-0.341-5.746-4.193-5.421-8.604
c0.325-4.412,3.28-7.712,6.6-7.372C731.862,331.443,734.29,335.296,733.964,339.707z"/>
<path fill="#F0F11A" d="M739.795,326.931c-0.271,3.746-2.965,6.533-6.015,6.223c-3.051-0.311-5.303-3.6-5.032-7.346
c0.273-3.746,2.966-6.531,6.015-6.223C737.815,319.896,740.067,323.185,739.795,326.931z"/>
<path fill="#F0F11A" d="M716.097,358.609c-0.471,6.253-4.277,10.967-8.502,10.526c-4.225-0.441-7.268-5.869-6.799-12.122
c0.473-6.255,4.277-10.967,8.502-10.527C713.525,346.929,716.568,352.355,716.097,358.609z"/>
<path fill="#F0F11A" d="M725.646,329.133c-0.551,7.259-4.422,12.785-8.646,12.341c-4.223-0.445-7.203-6.689-6.652-13.947
c0.551-7.26,4.42-12.785,8.645-12.342C723.216,315.63,726.197,321.874,725.646,329.133z"/>
<path fill="#F0F11A" d="M410.48,258.018c-0.471,6.254-4.277,10.967-8.502,10.527c-4.225-0.441-7.268-5.869-6.797-12.122
c0.471-6.255,4.277-10.967,8.501-10.527C407.907,246.338,410.95,251.765,410.48,258.018z"/>
<path fill="#F0F11A" d="M720.189,335.96c-0.471,6.254-4.277,10.967-8.502,10.526c-4.227-0.44-7.27-5.869-6.799-12.122
c0.473-6.255,4.277-10.967,8.502-10.526C717.617,324.279,720.658,329.706,720.189,335.96z"/>
<path opacity="0.9" fill="#F6D2E1" d="M712.302,344.659c-10.832-37.946-49.803-78.209-85.951-61.058
c-18.471,8.764-26.995,27.296-42.971,39.606c-14.523,11.192-34.825,12.236-47.368,26.139c28.411,15.061,47.101,25.667,80.212,13.415
c26.211-9.698,58.859-34.954,86.527-12.742"/>
<path fill="none" d="M-169.812,479.245c-0.874-2.107,0.456-3.383-2.082-4.895c2.567,4.578,6.12,8.258,9.629,12.442"/>
<path fill="none" d="M-258.491,428.302c5.092,1.486,1.083-1.083,0-1.887"/>
<path opacity="0.4" fill="#F6D2E1" d="M725.205,350.206c-4.738-29.548-78.137-1.326-97.833,7.599
c-34.376,15.574-58.718,43.091-76.212,78.066c34.672,12.268,70.365,18.008,103.148,2.75c32.057-14.92,46.939-58.169,65.684-87.128"
/>
<path opacity="0.4" fill="#F6D2E1" d="M706.435,349.656c-20.723-21.59-64.984,43.407-76.092,61.96
c-19.389,32.379-23.727,68.859-18.189,107.572c35.486-9.661,68.096-25.27,86.354-56.48c17.854-30.52,5.459-74.547,4.375-109.024"/>
<path opacity="0.8" fill="#F6D2E1" d="M157.706,282.679c-1.117,13.142,13.749,28.498,28.104,25.761
c17.36-3.31,25.692-9.825,43.925-5.377c-17.366-27.954-47.188-34.954-73.724-18.751"/>
<ellipse transform="matrix(0.7199 -0.6941 0.6941 0.7199 -160.8 185.6463)" fill="#F0F11A" cx="149.603" cy="292.043" rx="4.895" ry="6.755"/>
<path fill="#F0F11A" d="M147.723,281.109c1.045,1.288,0.772,3.229-0.608,4.336c-1.381,1.106-3.347,0.96-4.392-0.328
c-1.044-1.288-0.772-3.229,0.607-4.336C144.712,279.676,146.677,279.822,147.723,281.109z"/>
<path fill="#F0F11A" d="M163.112,278.701c1.211,1.486,1.155,3.527-0.125,4.556c-1.28,1.029-3.299,0.658-4.511-0.829
c-1.211-1.487-1.154-3.526,0.125-4.556C159.882,276.844,161.901,277.215,163.112,278.701z"/>
<path fill="#F0F11A" d="M161.34,272.723c1.03,1.262,0.913,3.052-0.263,3.998c-1.176,0.946-2.964,0.69-3.994-0.569
c-1.03-1.262-0.912-3.051,0.263-3.998C158.522,271.207,160.31,271.462,161.34,272.723z"/>
<path fill="#F0F11A" d="M162.457,290.707c1.712,2.11,1.779,4.882,0.148,6.19c-1.631,1.307-4.342,0.655-6.056-1.455
c-1.712-2.112-1.779-4.883-0.149-6.19C158.032,287.944,160.744,288.596,162.457,290.707z"/>
<path fill="#F0F11A" d="M156.982,278.249c1.987,2.452,2.275,5.5,0.643,6.806c-1.632,1.306-4.566,0.378-6.553-2.074
s-2.276-5.498-0.644-6.805S154.996,275.797,156.982,278.249z"/>
<path fill="#F0F11A" d="M157.099,282.245c1.713,2.111,1.779,4.882,0.148,6.189c-1.632,1.309-4.343,0.657-6.057-1.454
c-1.712-2.112-1.779-4.883-0.148-6.19C152.675,279.482,155.385,280.134,157.099,282.245z"/>
<path opacity="0.9" fill="#F6D2E1" d="M156.916,287.654c-15.251-8.128-41.181-7.353-48.848,10.359
c-3.918,9.05-1.371,17.744-3.336,27.048c-1.788,8.457-8.676,15.727-8.946,24.352c14.607-5.021,24.426-8.106,32.489-23.252
c6.383-11.989,10.372-31.031,26.865-33.568"/>
<path opacity="0.4" fill="#F6D2E1" d="M163.161,284.972c-10.564-7.593-28.118,26.312-32.423,35.831
c-7.513,16.614-7.875,33.521-3.566,50.41c15.989-8.033,30.377-18.451,37.419-34.422c6.887-15.618-0.836-34.194-2.892-49.635"/>
<path opacity="0.4" fill="#F6D2E1" d="M156.337,291.22c-13.842,0.355-10.004,35.763-8.367,45.347
c2.856,16.729,12.285,29.588,25.888,39.766c9.685-15.15,16.561-31.171,13.654-47.148c-2.842-15.623-20.475-25.112-31.226-35.493"/>
<path opacity="0.6" fill="#F6D2E1" d="M421.556,234.679c-5.031-26.329-30.568-69.201-60.371-79.246
c-19.094-6.436-41.657-2.119-61.851-7.077c-21.052-5.169-40.265-10.624-60.133-19.517c30.997,28.366,22.79,72.042,63.443,91.164
c20.837,9.801,41.124,5.786,62.728,4.724c17.718-0.871,36.924,2.938,52.41,4.291"/>
<path opacity="0.6" fill="#F6D2E1" d="M414.989,223.876c-21.113-16.515-68.553-31.994-97.604-19.947
c-18.613,7.718-32.762,25.815-51.23,35.37c-19.253,9.96-37.311,18.495-58.123,24.872c42.006,0.963,64.565,39.251,107.76,26.902
c22.14-6.332,34.773-22.705,50.342-37.72c12.769-12.315,29.738-22.084,42.289-31.256"/>
<path opacity="0.6" fill="#F6D2E1" d="M163.065,293.17c7.669-13.39,51.338,19.414,58.534,29.77
c13.257,19.078,10.432,44.827,30.001,58.483c-37.426,5.972-86.698-53.128-90.422-86.366"/>
<path opacity="0.8" fill="#F6D2E1" d="M137.503,164.552c-13.023,2.088-24.337,20.221-18.216,33.491
c7.402,16.048,15.736,22.561,15.82,41.329c22.936-23.6,22.531-54.23,0.402-76.07"/>
<ellipse transform="matrix(0.8473 0.5311 -0.5311 0.8473 103.7179 -42.8913)" fill="#F0F11A" cx="126.459" cy="158.949" rx="4.896" ry="6.755"/>
<path fill="#F0F11A" d="M136.616,154.485c-0.997,1.325-2.946,1.529-4.354,0.457c-1.407-1.073-1.739-3.016-0.742-4.342
c0.998-1.324,2.947-1.528,4.354-0.457C137.281,151.218,137.613,153.16,136.616,154.485z"/>
<path fill="#F0F11A" d="M142.667,168.839c-1.15,1.534-3.144,1.973-4.451,0.978c-1.308-0.994-1.435-3.043-0.284-4.578
c1.151-1.534,3.144-1.971,4.451-0.978C143.69,165.256,143.818,167.305,142.667,168.839z"/>
<path fill="#F0F11A" d="M148.042,165.676c-0.976,1.304-2.741,1.622-3.943,0.71c-1.202-0.913-1.385-2.71-0.411-4.013
c0.976-1.304,2.741-1.621,3.943-0.71C148.833,162.576,149.017,164.371,148.042,165.676z"/>
<path fill="#F0F11A" d="M130.858,171.101c-1.634,2.171-4.308,2.905-5.971,1.638c-1.662-1.268-1.684-4.056-0.05-6.228
c1.636-2.172,4.309-2.906,5.972-1.639C132.472,166.14,132.494,168.928,130.858,171.101z"/>
<path fill="#F0F11A" d="M141.627,162.781c-1.9,2.52-4.788,3.536-6.449,2.266c-1.661-1.268-1.469-4.34,0.431-6.86
c1.9-2.52,4.787-3.536,6.449-2.267S143.527,160.261,141.627,162.781z"/>
<path fill="#F0F11A" d="M137.777,163.858c-1.636,2.172-4.309,2.905-5.971,1.638c-1.664-1.268-1.686-4.056-0.051-6.229
c1.637-2.172,4.309-2.905,5.972-1.638C139.39,158.898,139.413,161.686,137.777,163.858z"/>
<path opacity="0.4" fill="#F6D2E1" d="M128.884,165.286c-3.686-13.348-37.12-1.077-46.025,2.826
c-15.545,6.81-25.748,19.063-32.341,34.721c17.04,5.741,34.246,8.548,49.05,1.871c14.476-6.528,19.428-25.931,26.907-38.869"/>
<path opacity="0.6" fill="#F6D2E1" d="M128.616,172.285c14.845,4.211-6.449,54.506-14.762,63.989
c-15.314,17.47-40.984,20.943-49.513,43.229c-14.828-34.878,30.632-96.958,61.988-108.594"/>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View file

@ -1,175 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1"
id="svg4113" sodipodi:docname="clouds-bg.svg" inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="719.964px"
height="617.97px" viewBox="266.11 34.106 719.964 617.97" enable-background="new 266.11 34.106 719.964 617.97"
xml:space="preserve">
<sodipodi:namedview width="1280px" units="px" inkscape:document-units="mm" inkscape:window-width="1920" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:current-layer="layer3" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:window-height="1043" inkscape:zoom="0.98994949" inkscape:cy="377.96016" id="base" bordercolor="#666666" pagecolor="#ffffff" borderopacity="1.0" showgrid="false" inkscape:cx="607.1895">
</sodipodi:namedview>
<g>
<path fill="#E2B486" enable-background="new " d="M474.702,538.245c11.216,7.04,24.327,16.008,36.849,6.349
c10.483-8.084,14.101-24.96,10.5-37.684c-1.101-1.055-1.32-1.473-2.088-2.426c-2.386,8.983-3.271,21.517-11.661,23.828
c-8.378,6.619-21.913-0.626-31.281,8.618"/>
<path fill="#E8DE73" d="M718.504,107.333c-11.192,27.29-48.283,50.708-42.56,83.541c11.052,1.374,21.056-1.104,32.049-4.141
c9.777-2.701,17.665-10.817,27.845-7.574c25.448,29.81,16.377,89.807,16.164,128.358c-0.251,45.122-6.332,89.312-8.794,133.162
c-1.368,24.373-2.827,48.41-5.363,72.44c-1.86,17.628-13.855,57.965,8.699,59.025c5.525-19.686,0.702-43.604,4.696-63.701
c4.104-20.651,8.482-43.23,17.601-61.683c9.686-19.591,29.843-25.24,50.521-26.014c20.22-0.76,45.999-7.07,66.211-2.428
c51.794,11.894,23.357,104.852,37.955,142.831c3.163,0.716,8.994,1.146,11.722,1.007c0.813-45.737,4.25-89.216,4.673-133.14
c0.224-23.37-4.417-45.306-4.219-68.146c0.177-19.944-3.627-43.708-20.647-54.141c-17.288-10.596-44.52-8.848-63.85-10.347
c-19.135-1.485-46.077,3.375-54.68-17.804c-7.629-18.775-10.306-40.738-15.744-60.281c-5.889-21.15-13.427-40.278-19.922-60.083
c-6.172-18.823-11.485-37.534-19.595-55.993c-8.905-20.264-16.913-25.443-32.701-39.274c9.861,12.386,6.76,29.011,21.319,38.427
c-7.385-3.962-6.812-11.171-11.916-17.038c-4.564-5.246-11.852-9.062-18.168-12.912c2.842,13.602,8.061,27.418,22.159,32.625
c-2.986,0.819-4.13,3.585-6.102,4.795"/>
<path fill="#F2EDF0" enable-background="new " d="M721.231,363.309c-3.71,14.215,1.279,22.992,12.669,32.965
c12.112,10.605,25.052,3.756,36.502,11.904c2.204-5.742-0.182-11.31-1.833-17.298c-9.009-2.956-12.519-10.698-21.277-13.873
c-10.453-3.786-18.707-1.37-24.522-12.181"/>
<path fill="#A4DBE0" d="M529.99,393.754c-12.872-5.988-26.678-6.061-40.896-1.229c-8.667,2.945-15.739,8.863-24.245,11.633
c-9.672,3.152-18.698,6.004-29.115,6.922c-21.985,1.938-42.756,7.486-65.172,5.521c-21.061-1.844-34.584-15.795-35.386-37.354
c-0.395-10.577,5.349-19.912,4.192-31.203c-1.184-11.542-4.751-16.629-12.999-24.132c-3.917,5.283-7.062,11.056-9.354,17.052
c-2.566,6.721,0.311,11.457-0.524,18.646c-4.268-18.242-14.208-19.487-30.393-23.235c-1.624,8.485,0.131,22.217,4.246,29.483
c4.707,8.309,11.582,14.021,19.759,18.351c10.762,5.696,16.608,8.358,22.179,19.409c7.927,15.729,16.859,31.93,30.081,44.016
c12.277,11.221,35.077,20.746,51.158,22.314c21.436,2.09,42.551,4.779,62.385-3.635c16.713-7.09,29.437-17.66,41.085-31.529
c3.068-3.654,4.562-8.133,7.623-11.773c4.163-4.947,7.349-3.209,12.153-5.867c8.396-4.645-1.028-18.484-6.777-22.697"/>
<path fill="#E8EDEC" d="M540.388,413.631c0,23.643,3.648,43.795-14.056,62.307c-6.495,6.791-13.488,15.234-20.794,21.338
c-8.405,7.023-18.896,7.73-28.87,11.369c-19.195,7-47.639,3.283-66.426-3.77c-11.156-4.188-18.021-6.477-25.991-15.773
c-6.574-7.67-15.257-11.846-20.774-20.76c-3.895-6.293-15.257-24.004-12.358-30.922c7.4,5.672,11.961,13.314,20.673,18.457
c10.067,5.939,19.632,11.695,31.348,14.02c21.982,4.359,44.703,4.041,65.851-2.229c7.881-2.336,16.572-2.77,23.57-7.789
c6.243-4.479,12.031-9.984,17.137-15.947c5.502-6.426,7.947-15.158,12.686-20.59c3.473-3.98,17.611-5.932,16.617-9.713"/>
<ellipse fill="#F0E4EB" cx="738.706" cy="375.501" rx="3.119" ry="3.463"/>
<ellipse fill="#F0E4EB" cx="844.112" cy="478.204" rx="3.119" ry="3.464"/>
<ellipse fill="#F0E4EB" cx="488.003" cy="440.963" rx="3.119" ry="3.463"/>
<ellipse fill="#F0E4EB" cx="843.177" cy="464.691" rx="3.119" ry="3.463"/>
<ellipse fill="#200E81" cx="721.139" cy="141.719" rx="3.119" ry="3.463"/>
<ellipse fill="#200E81" cx="739.538" cy="386.5" rx="1.535" ry="1.758"/>
<ellipse fill="#200E81" cx="510.538" cy="530.5" rx="1.535" ry="1.758"/>
<path fill="#B7B7B7" d="M869.677,480.277c2.16-5.044,12.758-8.58,16.572-13.192c6.066-7.337,5.451-15.519,1.107-23.415
c-10.321-18.769-31.554-14.681-42.078,0.782c-9.675,0.664-13.298,4.572-17.884,11.896c-3.933,6.276-5.16,16.295-15.164,16.245
c-20.031-0.102-15.486-27.856,1.701-31.377c-2.188-3.145-6.104-6.488-9.688-8.813c-15.86,11.842-25.998,41.67-6.903,54.276
c12.128,8.007,17.769,9.07,17.935,24.398c0.138,12.737-2.069,24.184-4.048,36.379c-1.039,6.412,5.097,24.745-9.039,22.427
c-4.757-0.781-10.495-4.169-15.325-5.69c2.03-2.731,4.624-4.27,6.642-7.199c7.305,1.039,25.182,4.993,16.351,13.837
c-4.921,4.929-17.331,6.051-24.512,5.294c-1.978,4.229-0.139,8.403-0.75,13.021c26.572-0.703,48.805,19.993,75.398,14.25
c10.619-2.293,22.823-7.89,25.706-17.297c3.035-9.907-6.571-20.613-10.726-30.283c-2.804-6.526-6.948-17.134-5.615-24.692
c1.835-10.416,13.498-4.789,19.86-12.435c5.861-7.045,1.783-16.729-2.24-23.212c-3.457-5.565-14.588-11.11-15.596-14.328"/>
<path fill="#F0E4EB" d="M634.652,475.502c-9.029-1.746-23.28,8.352-16.242,17.266c5.146,6.518,24.225,5.768,32.121,10.908
c5.312-7.893,16.957-36.688,16.351-45.537c-13.776-3.16-24.772,13.285-34.931,18.715"/>
<path fill="#F1E214" d="M640.366,527.986c14.429,6.502,20.336,1.072,11.611,18.943c-5.208,10.668-11.628,23.348-17.838,32.014
c-6.572,0.672-13.683,2.293-18.97,1.773c4.378-7.951,12.549-14.146,17.323-22.406c4.86-8.416,6.32-21.68,6.38-25.938"/>
<path fill="#F2EDF0" enable-background="new " d="M555.272,315.843c4.542,13.818,19.312,63.451,41.877,61.515
c21.319-1.83,24.635-53.521,19.076-65.653c-20.506-8.499-48.056-19.314-57.969,8.528"/>
<path fill="none" d="M358.3,551.018c1.28,3.516,2.708,6.781,4.479,10.24"/>
<path fill="none" d="M169.787,536.311c1.796,4.711,1.722,12.5,5.405,17.568"/>
<path fill="#F0E4EB" d="M683.695,431.391c4.484,25.961-17.547,24.918-32.437,34.504c-8.103,5.217-7.64,8.477-17.11,12.123
c-1.701,0.656-22.531,3.49-17.812,10.473c3.712,5.49,8.37,7.855,13.016,12.869c-12.364,11.334-24.774-1.812-35.639-8.154
c-13.72-8.01-24.534-1.494-38.188-6.434c-0.953-1.645-2.035-2.912-3.02-4.506c5.216-26.342-4.533-54.072,2.876-80.392
c3.599-12.776,8.008-20.392,21.397-22.338c15.55-2.259,28.234-2.25,44.256-6.558c23.271-6.256,21.129,0.575,33.847,17.812
C664.064,403.232,680.952,415.516,683.695,431.391z"/>
<path fill="#F4A2C3" d="M649.323,530.912c4.707-10.783,3.506-23.643,7.166-35.111c3.229-10.111,7.224-19.312,10.674-29.27
c4.267-12.316,14.397-53.498,25.461-58.51c21.79-9.875,20.364,40.689,20.973,52.666c1.026,20.23,7.71,52.652,0,70.301
c-1.317,3.02-1.215,5.094-1.831,8.447c-11.198,6.623-17.771-2.781-29.674-2.74c-9.317,0.031-23.394,5.24-32.515,7.205
c-2.67-7.172,1.029-11.896,2.731-18.838"/>
<path fill="none" d="M1029.246,105.23c-0.901,0-1.803,0-2.703,0"/>
<path fill="#F4A2C3" d="M637.381,499.648c-18.968,2.77-38.472,6.404-58.146,9.105c-12.914,1.771-54.353-5.182-53.936,15.768
c0.397,19.861,38.945,18.801,50.95,18.945c22.137,0.264,37.767,6.939,56.313,14.523c6.717-8.971,6.385-18.582,9.223-29.158
c2.514-9.35,10.479-18.312,10.299-27.5c-8.518-1.453-14.02-1.32-22.169,1.242"/>
<path fill="none" d="M195.462,659.283c2.048,3.268,3.449,6.986,4.054,10.812"/>
<path fill="#F1E214" d="M671.718,541.152c-1.381,8.652-6.311,15.949-2.73,24.613c5.135-0.736,8.657-3.088,14.709-2.695
c5.677,0.365,10.688,5.957,17.654,5.654c0.049-10.275-12.078-20.857-14.996-30.361c-3.01,0.006-8.335-0.297-11.271,0.086
c-0.974,2.012-3.136,5.795-3.366,7.096"/>
<path fill="none" d="M1073.841,60.635c-2.746,0.656-4.538,3.241-5.405,6.757"/>
<path fill="#F4120C" d="M546.838,486.098c20.776,12.459,63.817,19.016,86.263,14.312c20.938-4.385,31.973-45.387,40.446-65.266
c-2.47-0.684-6.047-0.553-8.547-0.039c-2.021,12.537-9.769,24.264-13.691,36.326c-4.434,13.635-6.229,22.912-21.991,26.803
c-10.66,2.633-77.678-16.361-78-6.285"/>
<path fill="#846B44" d="M500.389,487.603c-9.007-3.267-30.5,9.438-22.943,20.623c-9.823,6.901-20.533,27.871-2.311,31.009
c8.454,1.455,10.021-5.485,16.822-6.605c5.978-0.988,10.678,4.767,17.762,1.161c20.325-10.341,27.325-66.099-7.93-51.128
c-1.191,2.739-3.175,3.793-5,6.228"/>
<path fill="none" d="M118.435,156.581c-0.52,0.594,2.047,1.625-1.125,1.614c-0.437,1.841,0.4,2.163,1.125,3.792"/>
<path fill="none" d="M482.409,628.898c-0.678,5.969,0.485,11.906,3.35,16.871"/>
<path fill="#CCF2D6" d="M438.8,568.219c-16.616-6.751-34.479-5.126-51.476-0.646c-13.585,3.582-39.219,7.246-42.967-15.713
c-3.579-21.921,18.608-35.436,21.404-55.085c0.111-0.397,0.221-0.789,0.332-1.186c-6.104-7.156-4.07-11.886,0.351-17.99
c1.048-1.447,6.562-2.615,8.252-4.463c2.52-2.762,4.415-8.728,5.952-12.387c1.005,0.642,1.821,1.235,3.027,1.67
c2.916,13.804-4.898,30.531-8.495,43.975c-1.39,5.196-5.956,21.467-2.292,25.562c5.572,6.227,9.344-6.184,14.049-8.244
c11.976-5.243,23.483,10.246,37.107,7.708c9.313-1.734,21.713-9.425,31.126-6.181C488.367,536.749,466.415,579.437,438.8,568.219z"
/>
<path fill="none" d="M117.084,349.824c-0.603,2.298-0.282,4.375,1.351,5.406"/>
<path fill="#CCF2D6" d="M474.144,536.882c3.722,2.991,9.234,3.766,11.686,8.381c13.783,2.283,21.77-0.582,33.958-4.902
c0.141-0.681,0.283-1.358,0.426-2.036c0.393,0.06,3.021,0.071,3.395,0.003c20.139,19.778-9.67,26.99-25.325,24.37
c-11.437-1.912-29.347,2.309-38.152-2.488"/>
<path fill="none" d="M117.084,25.5c-1.351,1.986-1.791,4.243-1.352,6.757"/>
<path fill="#CCF2D6" d="M373.254,506.174c4.823,0.864,9.992-3.787,10.513-9.498c4.285-3.286,21.546-2.83,27.639-2.173
c0.367,1.857,0.347,3.908-0.092,5.741c-7.55,4.496-14.73,9.014-21.863,13.203c-7.127,4.186-10.979,12.853-18.813,15.902
c-0.286-7.819-0.767-16.35,3.875-21.933"/>
<path fill="none" d="M36.003,656.58c1.985,1.055,3.474,3.068,4.054,5.406"/>
<path fill="none" d="M129.246,57.933c-1.25,0.745-3.558,1.756-1.352,2.703"/>
<path fill="none" d="M180.597,60.635c-0.069,1.569,0.39,2.859,1.352,4.054"/>
<path fill="#DEE5B3" d="M755.476,401.28c-6.783,7.359-77.711-18.75-71.898,11.875c6.248,3.309,6.768-1.603,11.631-1.635
c3.019-0.02,7.463-1.574,11.516-1.514c7.588,0.115,22.293,4.121,28.791,7.965c17.134,10.135,15.883,36.771,18.763,54.293
c3.298,20.062,6.244,41.188,10.334,61.104c1.854,9.039,7.185,19.543-1.042,27.645c-7.122,7.016-21.958,2.121-23.21,14.539
c7.356-0.449,21.391,0.543,27.364-1.258c13.471-4.061,10.782-10.102,10.785-24.312c0.005-23.006,7.167-35.939,10.705-56.186
c3.812-21.826-7.804-27.953-11.899-48.514c-1.795-9.012,1.98-21.441-1.541-29.166c-4.795-10.514-13.977-8.832-23.367-11.801"/>
<path fill="none" d="M134.652,109.284c0,4.955,0,9.91,0,14.865"/>
<path fill="#DEE5B3" d="M740.12,419.035c13.963,12.48-3.387,38.342-0.035,54.658c2.799,13.627,15.602,33.148,32.014,31.604
c6.575-20.301-13.689-77.588-30.442-83.227"/>
<path fill="#EBE6A4" d="M739.498,338.726c-10.688-2.254-24.098-1.57-27.555,9.875c-11.271,0.697-15.329,11.262-8.186,17.957
c4.43,4.147,10.233,1.781,14.872,3.984c3.032,1.439,8.433,6.71,10.757,7.585c9.562,3.601,20.329-0.401,29.719,3.661
c7.633,3.303,8.34,17.945,20.955,9.428c3.869-2.611,11.589-18.873,12.381-23.57c0.645-3.818-4.748-22.993-7.528-26.462
c-14.437-18.01-35.25-8.13-51.834-3.903"/>
<path fill="#EAE6C0" d="M580.598,283.609c-17.933,17.719,18.382,23.25,19.118,36.287c22.88,0.001,3.264,42.102,22.538,37.801
c2.255-7.646,9.571-8.506,13.823-14.554c2.353-3.346,7.555-15.451,8.1-18.918c2.393-15.222,0.93-30.548-7.159-44.333
c-7.753-13.213-64.124-39.9-68.812-12.73c-7.479,2.711-23.898,5.681-18.893,17.455c-10.677,5.72-26.062,16.122-11.792,27.375
c-4.621,4.597-9.081,11.019-9.695,17.493c-1.059,11.138,3.744,10.267,8.212,17.604c5.813,9.55,15.092,26.455,29.321,18.718
c15.44-8.399-1.863-22.124-4.729-33.85c-5.017-20.521,9.392-19.078,15.916-30.78"/>
<path fill="#BDE3B8" d="M892.791,276.853c-5.827,7.115-13.292,14.775-19.154,21.386c-18.425,5.589-22.673-5.215-32.423-17.106
c-12.144-1.852-7.96-11.936,1.577-13.739c9.048-1.712,16.646,5.533,24.625,6.456c18.265,2.113,31.653-12.313,46.792-20.367
c0.507-0.493,0.494-0.506-0.038-0.039c-7.613,10.295-20.252,17.657-26.784,27.463"/>
<path fill="none" d="M118.435,53.878c2.31,0.265,3.195,1.762,2.703,4.054"/>
<path fill="#EB1869" d="M836.034,280.907c-3.423,2.636-8.461,3.067-13.711,2.698c0.643-1.219,5.215-6.217,8.301-8.912
c0.349,4.078,3.067,3.178,4.059,4.862"/>
<path fill="#EE1787" d="M489.24,380.598c4.452,6.421,10.155,13.335,14.634,19.304c14.076,5.045,17.322-4.708,24.771-15.441
c9.278-1.672,6.081-10.773-1.205-12.401c-6.913-1.545-12.717,4.994-18.813,5.829c-13.955,1.906-24.183-11.115-35.749-18.385
c-0.387-0.445-0.378-0.456,0.029-0.035c5.816,9.292,15.472,15.938,20.463,24.788"/>
<path fill="#EBF019" d="M534.058,382.421c3.422,2.637,8.461,3.066,13.711,2.698c-0.643-1.22-5.215-6.218-8.301-8.912
c-0.349,4.078-3.068,3.178-4.059,4.862"/>
<path fill="none" d="M168.435,28.203c-0.74,0.138-1.964,1.701-2.703,4.054"/>
<path fill="none" d="M114.383,729.555c1.075,2.535,3.136,5.607,5.405,8.107"/>
<path fill="none" d="M84.653,636.312c0.872,1.822,2.302,3.285,4.054,4.053"/>
<path fill="none" d="M77.896,613.338c0.217,1.166,0.676,2.152,1.351,2.703"/>
<path fill="#DC1F52" d="M692.115,627.846c5.069-6.869,13.069-18.576,20.698-24.934c-11.237,10.787-18.307,16.117-33.316,8.723
c-6.82-3.361-28.202-19.496-28.287-7.891c-0.025,3.551,5.023,12.191,6.045,16.475c1.301,5.455,1.948,11.33,7.605,15.016
c12.72,8.287,24.949-6.102,32.537-12.154"/>
<path fill="none" d="M540.058,743.068c1.415,2.178-1.214-0.125-0.477,0.238c1.963,3.385,3.122,6.803,4.53,10.572"/>
<path fill="#F9F206" d="M657.185,600.723c-3.668,1.074-6.078,1.34-7.133,4.105c-2.619-5.1-2.279-10.33-4.986-15.656
c2.76,2.189,7.619,8.486,12.781,10.342"/>
<path fill="#E2C0D0" d="M792.76,279.555c-9.982,3.325-9.277,13.106-3.753,19.9c3.49,4.293,7.901,2.332,11.856,6.112
c4.438,4.241,2.374,8.787,8.117,11.821c13.947,7.367,38.098-7.799,46.748-17.526c-18.192-12.562-46.19,5.096-53.739-20.076
c-2.553-1.38-4.893-1.731-7.878-1.582"/>
<path fill="#E2C0D0" d="M768.436,209.285c-12.117,15.548,1.903,37.811,17.225,45.741c3.426-7.892-2.88-48.131-15.872-41.688"/>
<path fill="#E2C0D0" d="M879.247,320.096c-3.134-1.214-11.576-9.377-11.117-17.464c-5.019,5.53,9.701,16.953,16.483,18.854
c9.745,2.733,18.227-4.915,28.182-7.031c3.699-15.998-37.718-18.102-45.711-11.927"/>
<path fill="none" d="M108.976,214.69c-0.107,1.008,0.343,1.458,1.352,1.351"/>
<path fill="#E2C0D0" d="M862.792,332.023c4.547-1.854-10.918-23.53-17.125-10.214C842.051,329.567,857.7,334.1,862.792,332.023z"/>
<path fill="#E2C0D0" d="M899.117,338.991c0.907-3.308-17.68-3.96-12.944,5.143C888.932,349.438,898.101,342.695,899.117,338.991z"
/>
<path fill="#E2C0D0" d="M771.139,260.636c-4.702,9.083,12.891,13.474,13.305,2.907c-3.988-0.921-7.67-1.747-11.952-1.555"/>
<path fill="#E2C0D0" d="M769.552,187.9c-1.22,1.961-2.054,4.658-1.115,7.873c0.854,0.937,4.21,3.834,5.17,4.492
c3.728-4.654,1.331-15.542-5.404-12.364"/>
<path fill="#E2C0D0" d="M757.325,177.216c1.317,1.896,3.465,3.73,6.788,4.141c1.197-0.413,5.188-2.348,6.171-2.97
c-2.799-5.264-13.746-7.375-13.494,0.07"/>
<path fill="#E2C0D0" d="M922.49,320.096c-10.008,5.452-2.073,19.87,3.996,24.571c6.942-6.781,3.132-16.763-2.646-23.22"/>
<path fill="#140F0F" d="M681.948,168.745c-2.004,5.61-4.426,10.942-3.817,17.332c7.999,5.328,21.494,2.384,15.75-8.993
c-3.103-2.852-9.324-5.482-10.58-5.636"/>
<path fill="#EAE6C0" d="M561.68,302.529c-1.125,2.233-1.928,3.827-1.116,6.521c7.396,5.258,38.281-2.908,39.051-13.244
c0.521-7.017-15.265-9.083-20.366-8.173c-9.38,1.671-12.724,9.024-16.216,16.248"/>
<path fill="#F0E4EB" d="M550.869,497.449c9.049-10.398,38.873,10.23,52.531,6.201c-2.062,2.082-27.875,7.432-34.593,9.133
c-18.604,4.711-27.136-5.062-16.587-14.33"/>
<g>
<circle fill="none" stroke="#F0123E" stroke-width="1.0937" stroke-miterlimit="10" cx="574.814" cy="337.173" r="8.108"/>
<circle fill="none" stroke="#F0123E" stroke-width="1.0937" stroke-miterlimit="10" cx="598.176" cy="330.991" r="8.108"/>
<line fill="none" stroke="#EF0F6C" stroke-width="0.874" stroke-miterlimit="10" x1="582.05" y1="337.509" x2="591.353" y2="334.682"/>
</g>
<path fill="none" stroke="#F0123E" stroke-width="1.0937" stroke-miterlimit="10" d="M590.814,363.762
c1.373,2.813,8.176,3.161,8.776-1.222c0.771,0.071,0.987-0.206,1.224-0.778"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 17 KiB

View file

@ -0,0 +1,41 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="841.89px" height="1190.55px" viewBox="0 0 841.89 1190.55" enable-background="new 0 0 841.89 1190.55"
xml:space="preserve">
<path fill="#EAEBBB" d="M161.212,356.175c-9.446,10.035-34.028-31.792-37.835-41.462c-8.334-21.164-14.772-47.843-11.584-70.554
c5.966-42.501,30.333-92.34,70.678-113.148c28.79-14.848,67.833-12.53,96.234,6.158c-36.317-13.345-74.084,0.796-99.543,26.562
c-31.68,32.062-44.661,62.372-48.777,106.377c-1.667,17.828,2.691,30.046,7.767,47.115c2.144,7.213,3.793,15.191,7.627,21.989
c3.996,7.082,12.816,13.661,15.752,20.813"/>
<ellipse fill="#EAEBBB" cx="509.811" cy="373.014" rx="4.776" ry="5.307"/>
<ellipse fill="#EAEBBB" cx="355.094" cy="364.17" rx="2.388" ry="2.321"/>
<ellipse fill="#EAEBBB" cx="294.717" cy="315.703" rx="4.776" ry="5.307"/>
<ellipse fill="#EAEBBB" cx="267.3" cy="485.868" rx="2.388" ry="2.653"/>
<circle fill="#EAEBBB" cx="469.186" cy="465.113" r="5.97"/>
<ellipse fill="#EAEBBB" cx="531.51" cy="530.208" rx="2.687" ry="4.312"/>
<ellipse fill="#EAEBBB" cx="324.906" cy="497.542" rx="4.776" ry="5.307"/>
<ellipse fill="#EAEBBB" cx="336.226" cy="627.731" rx="4.776" ry="5.307"/>
<ellipse fill="#EAEBBB" cx="423.962" cy="336.222" rx="2.687" ry="4.312"/>
<ellipse fill="#EAEBBB" cx="360.754" cy="287.755" rx="4.776" ry="5.307"/>
<path fill="#EAEBBB" d="M387.17,433.038c0.594,2.929-1.116,7.328-1.126,11.1c0.524-1.58,3.387-5.58,5.623-7.151
c2.789,1.716,5.263,4.939,6.809,7.404c0.004-3.969-2.169-7.195-2.185-10.764c2.271-1.013,4.745-2.251,6.624-3.496
c-7.171-1.659-6.822-1.705-6.695-8.946c-1.768,1.977-3.138,4.198-4.664,6.277c-2.598-2.056-4.218-4.975-7.671-5.887
c0.123,2.835,1.305,5.828,2.057,8.371c-2.403,0.962-4.97,2.522-7.156,3.007c2.697-0.718,6.344,0.265,8.948,1.589"/>
<path fill="#EAEBBB" d="M657.635,604.653c0.871,3.733-1.342,9.402-1.269,14.226c0.673-2.033,4.454-7.22,7.444-9.283
c3.813,2.128,7.234,6.19,9.383,9.306c-0.085-5.076-3.1-9.15-3.202-13.716c3.05-1.35,6.368-2.993,8.883-4.633
c-9.741-1.947-9.271-2.015-9.264-11.281c-2.348,2.571-4.15,5.446-6.169,8.142c-3.562-2.566-5.82-6.262-10.514-7.345
c0.231,3.624,1.898,7.423,2.975,10.659c-3.23,1.289-6.667,3.347-9.615,4.021c3.633-0.983,8.591,0.186,12.146,1.816"/>
<path fill="#EAEBBB" d="M218.131,284.289c0.52,2.38-0.977,5.954-0.985,9.019c0.459-1.284,2.963-4.534,4.92-5.811
c2.44,1.395,4.605,4.013,5.958,6.016c0.003-3.225-1.898-5.846-1.912-8.746c1.987-0.823,4.152-1.829,5.796-2.84
c-6.274-1.348-5.969-1.385-5.858-7.269c-1.546,1.606-2.745,3.411-4.081,5.1c-2.273-1.67-3.69-4.042-6.712-4.784
c0.108,2.304,1.142,4.735,1.8,6.802c-2.103,0.782-4.349,2.049-6.262,2.443c2.36-0.583,5.551,0.215,7.83,1.291"/>
<path fill="#EAEBBB" d="M471.587,697.332c0.594,2.93-1.116,7.328-1.126,11.1c0.524-1.58,3.387-5.58,5.623-7.151
c2.789,1.716,5.263,4.938,6.809,7.403c0.004-3.969-2.169-7.194-2.185-10.764c2.271-1.012,4.745-2.251,6.624-3.496
c-7.171-1.658-6.822-1.704-6.695-8.945c-1.768,1.977-3.138,4.198-4.664,6.277c-2.598-2.057-4.218-4.976-7.671-5.888
c0.123,2.835,1.305,5.827,2.057,8.371c-2.403,0.962-4.97,2.522-7.156,3.007c2.697-0.717,6.344,0.266,8.948,1.59"/>
<path fill="#EAEBBB" d="M561.422,410.271c0.334,1.464-0.628,3.664-0.634,5.55c0.295-0.79,1.905-2.79,3.163-3.576
c1.569,0.858,2.961,2.469,3.83,3.702c0.002-1.984-1.22-3.597-1.229-5.382c1.276-0.506,2.669-1.125,3.726-1.748
c-4.033-0.829-3.838-0.852-3.767-4.473c-0.994,0.988-1.765,2.099-2.623,3.138c-1.461-1.028-2.373-2.487-4.315-2.943
c0.069,1.417,0.734,2.914,1.157,4.186c-1.352,0.481-2.796,1.261-4.025,1.503c1.518-0.359,3.568,0.133,5.033,0.794"/>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -2,27 +2,16 @@
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="555.555px" height="758.333px" viewBox="0 0 555.555 758.333" enable-background="new 0 0 555.555 758.333"
width="224.528px" height="250.943px" viewBox="0 0 224.528 250.943" enable-background="new 0 0 224.528 250.943"
xml:space="preserve">
<path fill="#10110C" d="M100.946,316.693c-7.734-13.852-27.933,15.604-38.823,22.121c1.795,16.34-0.756,32.145,8.873,47.761
c8.854,14.362,19.222,30.996,27.717,45.959c12.831,22.594,20.436,18.397,41.446,17.349c17.018-0.85,29.186,3.871,45.688,12.134
c24.023,12.026,24.484,10.313,32.733-17.487c3.185-10.721-1.366-13.461,6.429-21.819c3.801-4.073,17.004-3.203,23.523-10.068
c22.922-24.146,10.479-75.64-12.523-93.661c-21.182-16.592-53.393-43.89-80.602-43.294c-21.75,0.477-19.251,12.972-30.933,23.64
c-10.186,9.302-24.638,8.758-32.242,19.779"/>
<path fill="#EFDCE7" d="M136.207,452.37c-32.326,9.12-55.125,5.491-52.647,53.597c2.022,39.237,11.11,71.645,17.309,108.018
c6.389,37.499-7.602,73.802,21.726,101.776c14.918,14.231,26.432,14.085,46.288,14.006c16.768-0.064,30.954,9.295,45.262,4.343
c69.559-24.072,22.102-161.968,20.1-211.795c-1.607-39.958,7.277-73.05,30.006-103.839c13.754-18.632,52.465-54.933,42.469-77.599
c-21.689-49.183-58.168,71.738-67.648,83.078c-7.055,8.436-13.418,11.664-19.549,21.773c-6.933,11.428-3.24,22.136-17.91,25.459
c-17.975,4.073-49.118-13.303-69.759-13.993"/>
<path fill="#D0BFA7" d="M153.634,727.355c-15.221,1.021-35.508-15.831-43.022-29.553c-11.546-21.088-4.994-38.316-24.049-56.248
c-17.198-16.186-44.378-35.336-67.619-24.746c-12.741,30.396,40.606,64.098,56.269,79.188c22.131,21.324,52.82,39.901,80.599,28.945
"/>
<path fill="#D0BFA7" d="M240.768,585.038c7.65-7.169,17.316-28.799,31.035-12.652c11.025,12.978,1.898,41.783-2.229,56.061
c-7.137,24.675-10.654,79.313-32.721,93.844c0.785-21.864,18.068-36.269,17.037-62.477c-0.76-19.226-6.822-56.31-13.123-72.363"/>
<path fill="#DCE1A6" d="M380.649,187.037c-38.945,15.518-94.045-41.285-95.666-74.721c-1.988-41.03,36.701-86.417,80.541-93.048
c-35.402,18.116-68.842,58.836-62.463,97.873c4.449,27.192,51.852,81.063,77.588,77.132"/>
<path fill="#DCE1A6" d="M527.948,20.599c-1.145,0.63-4.553,2.682-4.709,9.245c2.842,1.742,6.432,3.729,9.303,4.919
c5.398-7.495,5.342-8.093,2.707-16.204C531.106,16.807,531.387,19.904,527.948,20.599"/>
<path fill="#D0BFA7" d="M290.202,322.115c-0.48,1.825,0,4.356,0,6.258c-4.576-18.212,12.33-21.317,25.193-13.851
c8.65-6.923,13.062-13.751,23.516-16.164c-2.002,16.096-17.596,26.956-25.959,40.278c-7.16-2.37-16.939-6.38-22.75-9.285"/>
<path fill="#D8D8CA" d="M79.466,96.109c7.63-10.5,3.745-28.037,12.366-39.049c7.794-9.957,23.492-16.494,37.881-13.954
c33.339,5.888,28.286,46.728,25.554,68.068c-1.627-0.03-4.241-0.617-5.938-1.678c1.075-17.703,2.243-58.972-27.547-58.287
c-16.29,0.374-23.376,6.137-27.826,18.332c-2.77,7.59-2.299,32.882-12.013,34.596c-3.09-2.793-3.083-7.737-2.307-9.074"/>
<path fill="#EFEB7D" d="M65.605,108.094c-3.008,22.271-7.865,42.015-3.103,64.369c6.385,29.966,33.202,24.52,57.619,23.418
c21.376-0.963,47.262,6.782,52.681-20.735c3.611-18.342,4.286-48.806,0.716-66.008c-5.083-24.496-33.9-19.658-53.388-17.502
c-18.221,2.015-57.679-6.961-55.989,22.897"/>
<path fill="#D8D8CA" d="M107.205,168.697c6.687-8.175-10.408-39.729,12.285-41.5c8.455-0.661,16.761,8.79,14.62,14.948
c-2.396,6.889-17.361,4.935-16.111,13.593c0.474,0.097,0.793-0.025,0.958-0.367c0.344,0.248,0.661,0.516,0.952,0.802
c-2.989,3.801-0.792,7.606-3.951,11.299c0.229,0.697,1.495,1.178,1.649,1.764c-1.536,2.716-1.667,3.829-2.589,7.374
c-5.662,0.097-7.47-3.65-6.603-7.852"/>
</svg>

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="289.474px" height="232.895px" viewBox="0 0 289.474 232.895" enable-background="new 0 0 289.474 232.895"
xml:space="preserve">
<path fill="#E4E4B1" d="M127.631,72.368c-14.536,18.928-18.959,43.044-2.308,61.842c13.873,15.661,29.564,29.735,52.016,27.334
c39.117-4.184,69.279-47.317,50.548-81.537c-10.66-19.475-24.322-26.59-46.24-28.756c-18.806-1.858-45.491,2.462-52.924,20.892
c-2.534,0.815-3.085,2.192-3.723,2.856"/>
<path fill="#E2EEED" d="M118.42,183.537c4.168-0.477,2.26-7.334,20.587-5.434c10.482-1.096,18.979-2.721,32.146-2.483
c5.564,0.101,12.167,0.992,17.946,1.245c5.325,0.232,15.889,0.088,20.554,0.47c12.728,1.043,12.19,2.806,29.515,3.425
c11.906,0.425,26.215,0.904,37.148,1.662c-8.83-0.164-13.688,0.879-21.518,1.151c-1.99,0.868-29.548,2.604-37.469,2.956
c-12.323,0.547-38.914,0.71-45.178-1.459c-11.274-0.291-20.87,1.564-34.178,0.984c-8.716-0.381-18.67-1.477-19.554-2.945"/>
<path fill="#E2EEED" d="M118.42,198.75c13.387-3.454,27.872,1.021,42.105-0.003c12.7-0.913,22.863-5.25,34.403-7.971
c-13.103,1.404-26.295,0.908-39.38,2.594c-10.138,1.306-19.155,3.513-29.561,1.876c-7.854-1.235-14.282-4.628-22.442-5.472
c-10.887-1.126-22.876,0.402-33.813,0.836c-11.337,0.449-28.281,1.447-39.071-1.236c14.667-2.308,26.629-5.004,41.707-6.476"/>
<path fill="none" d="M-247.369-127.631c-0.935,0.468-1.696,0.848-2.631,1.315"/>
</svg>

After

Width:  |  Height:  |  Size: 1.7 KiB

View file

@ -0,0 +1,48 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="390.54px" height="414.864px" viewBox="0 0 390.54 414.864" enable-background="new 0 0 390.54 414.864"
xml:space="preserve">
<path opacity="0.2" fill="#EEB9D9" d="M29.392,329.493c-2.671,15.49-13.02,32.522-8.234,51.097
c1.937,7.52,7.161,14.719,14.985,15.179c3.559,0.21,6.497-4.188,9.541-4.54c4.786-0.554,8.79,2.644,12.615,2.197
c19.41-2.271,7.661-29.232,3.59-41.092c-1.699-4.949-6.436-17.517-11.131-20.821c-4.23-2.981-17.908-5.773-21.717-2.378
c-0.5,0.384-0.773,0.9-0.816,1.544"/>
<path fill="#685B35" d="M271.108,36.434c-1.011,3.064-14.624,5.218-19.558,10.932c-6.344,7.347-7.637,20.443-7.3,29.731
c0.695,19.176,14.369,53.209,30.128,65.155c7.401,5.61,17.978,8.588,27.091,9.511c10.62,1.075,13.476,1.054,22.187,7.068
c12.563,8.675,29.225,9.311,38.534,23.766c4.851,7.532,5.021,15.519,8.146,23.258c13.603-8.544-0.85-40.085-2.336-51.777
c-1.38-10.884,2.133-18.439-0.819-27.591c-3.061-9.487-8.001-16.883-9.662-27.071c-3.356-20.589-3.771-36.743-16.669-54.427
c-7.907-10.84-23.656-23.578-37.306-27.299c-7.402-2.018-16.513-0.634-21.957,4.453C277.237,26.206,276.635,34.727,271.108,36.434"
/>
<path fill="none" d="M83.95,192.171c-0.186,6.211-0.497,13.22,1.499,19.399"/>
<path opacity="0.7" fill="#F0959C" d="M286.289,145.759c-33.637-9.126-47.449,55.707-61.01,74.628
c-9.898,13.811-27.872,23.389-44.146,27.568c-19.741,5.069-30.175-13.493-47.811-11.88c-5.189,0.476-14.062,4.618-16.21,9.234
c8.066,2.012,14.844,3.671,21.754,8.819c6.142,4.576,9.68,11.183,16.925,14.919c17.134,8.837,37.076-0.131,52.264-8.018
c9.814-5.096,29.695-22.521,40.866-20.329c15.476,3.039,10.487,36.695,7.887,47.364c-6.95,28.519-24.96,69.995-1.167,96.841
c13.506,15.242,32.667,3.794,50.498,4.459c17.394,0.646,35.388,10.297,48.164-5.651c10.36-12.932,8.91-34.819,7.887-51.389
c-1.209-19.609-4.871-36.473-4.671-57.04c0.349-35.644,27.464-74.246-4.438-101.332c-11.203-9.513-20.094-14.448-33.219-19.58
c-12.879-5.035-25.895-3.871-38.244-8.615"/>
<path fill="#BAA570" d="M136.821,142.946c-16.528-1.704-32.17,5.273-26.625,22.577c1.709,5.333,6.012,2.6,4.759,8.645
c-0.715,3.445-6.066,3.49-7.067,5.876c-3.292,7.847,0.79,10.98,8.902,13.047c-4.859,9.117-12.239,11.933-6.535,23.259
c4.223,8.383,11.717,11.002,19.528,13.364c4.788,1.446,5.554-0.216,10.248,2.387c3.028,1.678,5.904,5.959,8.759,7.927
c10.114,6.975,12.515,2.942,22.772,1.786c8.392-0.944,14.403,0.651,22.77-5.86c4.283-3.333,4.374-6.084,9.049-8.701
c3.608-2.02,8.813-0.356,12.643-3.771c8.392-7.488,1.416-14.611,2.478-23.56c0.42-3.541,5.05-6.582,4.987-11.556
c-0.075-5.949-4.107-6.107-5.21-10.672c-2.993-12.405,6.2-21.662-2.932-34.806c-6.314-9.09-17.093-12.135-26.205-16.613
c-10.111-4.971-18.497-12.091-30.129-3.527c-7.399,5.447-10.909,20.552-22.191,19.008"/>
<path fill="none" d="M49.477,130.99c1.911,4.254,1.434,10.601,1.499,16.415"/>
<path opacity="0.9" fill="#CBE1E8" d="M123.977,238.946c-1.642-0.204-6.066,0.634-9.142,1.391
c-7.331,21.757-8.535,48.043-26.116,64.924c-7.103,6.82-21.064,13.666-30.166,16.572c-7.634,2.437-35.734,0.341-27.822,15.569
c7.141-0.286,13.125,1.789,19.386,3.564c14.87-10.402,30.126-16.803,43.499-29.265c6.066-5.651,12.561-10.228,17.812-16.575
c5.983-7.233,9.492-15.942,18.156-21.275c8.701,11.592,3.903,39.127,0.165,51.776c-4.252,14.392-12.248,34.974-7.876,51.19
c6.174,22.896,25.215,12.482,39.469,11.827c15.735-0.724,33.279,9.981,47.704-0.146c6.388-19.227-4.712-41.464-9.138-60.461
c-5.107-21.917,3.428-45.589,2.102-68.684c-14.157-7.596-29.726,13.03-45.659,2.495c-11.25-7.439-20.595-26.423-35.879-20.527"/>
<path fill="none" d="M-1.484,98.161c1.626,1.811,3.145,12.053,4.497,17.907"/>
<path opacity="0.2" fill="#EEB9D9" d="M31.727,331.127c-15.804-13.447-11.5-28.01-15.44-47.269
c-3.764-18.398-5.918-33.012-4.35-52.545c2.46-30.676,15.768,3.81,18.688,16.574c2.676,11.702-4.533,52.109,16.287,39.248
c0.485-0.301,3.889-0.222,4.495-0.157c2.764-9.985-0.08-17.951-2.224-27.086c-2.362-10.068-1.214-16.149,1.228-26.142
c1.73-7.079,2.219-20.577,10.477-19.041c8.211,1.528,7.233,15.037,8.146,21.418c2.811,19.63,4.795,35.867-1.103,54.602
c-5.643,17.92-1.416,34.767-23.354,39.215C40.797,330.708,34.225,331.57,31.727,331.127"/>
<path opacity="0.3" fill="#F0959C" d="M271.621,145.946c-4.546,9.44,11.508,14.898,18.688,15.101
c10.938,15.275,29.976,20.527,41.104,35.95c11.548,16.006,22.271,28.585,26.996,50.202c12.149-20.923,5.306-57.647-11.451-73.855
c-13.178-12.746-55.298-29.019-72.634-26.046"/>
</svg>

After

Width:  |  Height:  |  Size: 4.7 KiB

View file

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="555.555px" height="758.333px" viewBox="0 0 555.555 758.333" enable-background="new 0 0 555.555 758.333"
xml:space="preserve">
<path fill="#10110C" d="M100.946,316.693c-7.734-13.852-27.933,15.604-38.823,22.121c1.795,16.34-0.756,32.145,8.873,47.761
c8.854,14.362,19.222,30.996,27.717,45.959c12.831,22.594,20.436,18.397,41.446,17.349c17.018-0.85,29.186,3.871,45.688,12.134
c24.023,12.026,24.484,10.313,32.733-17.487c3.185-10.721-1.366-13.461,6.429-21.819c3.801-4.073,17.004-3.203,23.523-10.068
c22.922-24.146,10.479-75.64-12.523-93.661c-21.182-16.592-53.393-43.89-80.602-43.294c-21.75,0.477-19.251,12.972-30.933,23.64
c-10.186,9.302-24.638,8.758-32.242,19.779"/>
<path fill="#EFDCE7" d="M136.207,452.37c-32.326,9.12-55.125,5.491-52.647,53.597c2.022,39.237,11.11,71.645,17.309,108.018
c6.389,37.499-7.602,73.802,21.726,101.776c14.918,14.231,26.432,14.085,46.288,14.006c16.768-0.064,30.954,9.295,45.262,4.343
c69.559-24.072,22.102-161.968,20.1-211.795c-1.607-39.958,7.277-73.05,30.006-103.839c13.754-18.632,52.465-54.933,42.469-77.599
c-21.689-49.183-58.168,71.738-67.648,83.078c-7.055,8.436-13.418,11.664-19.549,21.773c-6.933,11.428-3.24,22.136-17.91,25.459
c-17.975,4.073-49.118-13.303-69.759-13.993"/>
<path fill="#D0BFA7" d="M153.634,727.355c-15.221,1.021-35.508-15.831-43.022-29.553c-11.546-21.088-4.994-38.316-24.049-56.248
c-17.198-16.186-44.378-35.336-67.619-24.746c-12.741,30.396,40.606,64.098,56.269,79.188c22.131,21.324,52.82,39.901,80.599,28.945
"/>
<path fill="#D0BFA7" d="M240.768,585.038c7.65-7.169,17.316-28.799,31.035-12.652c11.025,12.978,1.898,41.783-2.229,56.061
c-7.137,24.675-10.654,79.313-32.721,93.844c0.785-21.864,18.068-36.269,17.037-62.477c-0.76-19.226-6.822-56.31-13.123-72.363"/>
<path fill="#DCE1A6" d="M380.649,187.037c-38.945,15.518-94.045-41.285-95.666-74.721c-1.988-41.03,36.701-86.417,80.541-93.048
c-35.402,18.116-68.842,58.836-62.463,97.873c4.449,27.192,51.852,81.063,77.588,77.132"/>
<path fill="#DCE1A6" d="M527.948,20.599c-1.145,0.63-4.553,2.682-4.709,9.245c2.842,1.742,6.432,3.729,9.303,4.919
c5.398-7.495,5.342-8.093,2.707-16.204C531.106,16.807,531.387,19.904,527.948,20.599"/>
<path fill="#D0BFA7" d="M290.202,322.115c-0.48,1.825,0,4.356,0,6.258c-4.576-18.212,12.33-21.317,25.193-13.851
c8.65-6.923,13.062-13.751,23.516-16.164c-2.002,16.096-17.596,26.956-25.959,40.278c-7.16-2.37-16.939-6.38-22.75-9.285"/>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

229
public/images/v1.svg Normal file
View file

@ -0,0 +1,229 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_2"
x="0px"
y="0px"
width="519.35626"
height="222.7771"
viewBox="0 0 519.35624 222.7771"
enable-background="new 0 0 1190.55 841.89"
xml:space="preserve"
sodipodi:docname="grand.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"><metadata
id="metadata47"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
id="defs45"><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3796"><rect
id="rect3798"
width="534.7666"
height="229.54593"
x="339.27405"
y="297.03354"
style="fill:none" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3800"><rect
id="rect3802"
width="534.7666"
height="229.54593"
x="339.27405"
y="297.03354"
style="fill:none" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3804"><rect
id="rect3806"
width="534.7666"
height="229.54593"
x="339.27405"
y="297.03354"
style="fill:none" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3808"><rect
id="rect3810"
width="534.7666"
height="229.54593"
x="339.27405"
y="297.03354"
style="fill:none" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3812"><rect
id="rect3814"
width="534.7666"
height="229.54593"
x="339.27405"
y="297.03354"
style="fill:none" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3816"><rect
id="rect3818"
width="534.7666"
height="229.54593"
x="339.27405"
y="297.03354"
style="fill:none" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3820"><rect
id="rect3822"
width="534.7666"
height="229.54593"
x="339.27405"
y="297.03354"
style="fill:none" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3824"><rect
id="rect3826"
width="534.7666"
height="229.54593"
x="339.27405"
y="297.03354"
style="fill:none" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3828"><rect
id="rect3830"
width="534.7666"
height="229.54593"
x="339.27405"
y="297.03354"
style="fill:none" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3832"><rect
id="rect3834"
width="534.7666"
height="229.54593"
x="339.27405"
y="297.03354"
style="fill:none" /></clipPath><clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath3836"><rect
id="rect3838"
width="534.7666"
height="229.54593"
x="339.27405"
y="297.03354"
style="fill:none" /></clipPath></defs><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1043"
id="namedview43"
showgrid="false"
inkscape:zoom="0.79286936"
inkscape:cx="395.8304"
inkscape:cy="-114.94323"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_2" />
<path
d="m 771.983,362.89 c -2.131,-6.595 -13.981,-11.819 -18.028,-17.972 -6.434,-9.778 -5.192,-20.199 0.277,-30.005 13,-23.304 36.94,-16.667 47.925,3.803 10.985,1.491 14.858,6.729 19.607,16.397 4.069,8.285 4.811,21.176 16.219,21.777 22.847,1.205 19.488,-34.582 0.123,-40.226 2.702,-3.875 7.387,-7.891 11.626,-10.623 17.304,16.195 26.901,55.003 4.303,69.849 -14.354,9.429 -20.855,10.414 -22.052,30 -0.994,16.274 0.769,31.055 2.223,46.777 0.764,8.269 -7.438,31.298 8.831,29.274 5.474,-0.682 12.24,-4.632 17.847,-6.255 -2.137,-3.626 -4.989,-5.767 -7.098,-9.646 -8.397,0.844 -29.04,4.706 -19.553,16.602 5.287,6.629 19.363,8.89 27.599,8.398 1.978,5.539 -0.394,10.752 0,16.697 -30.249,-2.668 -56.959,22.312 -86.9,13.199 -11.956,-3.639 -25.503,-11.607 -28.171,-23.825 -2.81,-12.867 8.848,-25.918 14.219,-38.004 3.626,-8.157 9.05,-21.441 8.027,-31.195 -1.409,-13.437 -15.076,-7.019 -21.828,-17.219 -6.219,-9.397 -0.935,-21.505 4.082,-29.526 4.307,-6.885 17.363,-13.233 18.723,-17.278"
id="path2"
clip-path="url(#clipPath3836)"
inkscape:connector-curvature="0"
transform="matrix(0.98542917,0,0,0.97735419,-339.07608,-290.84908)"
style="opacity:0.4;fill:#bcb7b7" />
<path
d="m 687.983,339.89 c -4.077,1.877 -11.059,3.685 -13.726,8.226 -3.859,6.57 -0.141,10.661 -1.5,17.548 -0.199,1.006 -3.405,3.78 -3.798,6.203 -0.613,3.791 2.16,5.174 2.85,8.301 1.361,6.18 -1.07,7.873 6.425,12.575 1.931,-0.991 3.573,-0.221 5.575,-0.678 1.166,9.494 10.468,4.803 16.923,7.077 8.835,3.112 7.43,5.015 18.025,2.146 8.226,10.157 20.592,0.662 20.377,-10.246 11.225,1.258 8.125,-15.308 7.096,-20.402 -0.571,-2.828 -0.587,-11.47 -1.477,-13.526 -1.395,-3.223 -6.731,-4.676 -9.548,-7.422 -4.363,-4.254 -3.313,-6.063 -9.171,-8.829 -4.159,-1.964 -10.317,-3.998 -15.048,-2.941 -4.987,1.113 -7.711,5.002 -12.805,5.771 -2.997,0.452 -6.224,-4.041 -10.199,-0.801"
id="path6"
clip-path="url(#clipPath3832)"
inkscape:connector-curvature="0"
transform="matrix(0.98542917,0,0,0.97735419,-339.07608,-290.84908)"
style="fill:#e0da8c" />
<path
d="m 726.983,417.89 c -10.816,8.367 -24.624,-8.225 -31,10 -4.489,12.832 -4.732,27.228 -9.026,39.974 -9.204,27.317 -50.472,2.347 -69.803,7.197 -0.544,0.902 -1.262,1.924 -1.772,2.806 1.608,2.112 7.886,6.123 10.324,7.301 1.952,0.943 1.721,2.982 4.277,3.719 2.782,0.802 4.566,-1.99 6.199,-1.797 9.3,1.101 19.604,4.116 28.675,6.972 -3.316,5.737 -26.019,7.768 -33.097,8.606 -4.824,0.572 -13.382,2.329 -17.052,0.467 -5.502,-2.793 -3.887,-10.883 -12.552,-9.07 -3.285,6.669 6.071,11.418 2.945,18.826 0.92,1.327 1.38,1.342 2.048,2.829 7.41,2.712 13.495,-1.111 20.856,-1.853 6.707,-0.675 15.012,0.937 21.98,1.02 15.531,0.188 31.146,-2.748 45.973,-1.973 12.109,0.633 34.597,3.027 44.02,-5.027 13.479,-11.519 1.668,-24.081 -3.048,-36.996 -3.152,-8.632 -5.201,-18.445 -4.726,-28 0.336,-6.76 5.089,-25.143 -7.223,-24"
id="path10"
clip-path="url(#clipPath3828)"
inkscape:connector-curvature="0"
transform="matrix(0.98542917,0,0,0.97735419,-339.07608,-290.84908)"
style="fill:#ddabab" />
<path
d="m 153.18057,94.248605 c 0,1.954708 0,3.909417 0,5.864125"
id="path12"
inkscape:connector-curvature="0"
style="fill:#c4b5b5;stroke-width:0.98138338" />
<path
d="m 678.983,393.89 c 3.159,5.645 3.484,11.978 10.004,15.997 6.029,3.717 13.888,3.509 20.822,4.178 0.475,1.961 1.875,2.689 2.348,4.651 3.418,0.424 6.6,0.097 9.679,-0.973 2.952,-13.452 -8.706,-11.364 -16.602,-14.104 -7.288,-2.529 -15.865,-6.321 -23.251,-9.749"
id="path14"
clip-path="url(#clipPath3824)"
inkscape:connector-curvature="0"
transform="matrix(0.98542917,0,0,0.97735419,-339.07608,-290.84908)"
style="opacity:0.3;fill:#c4b5b5" />
<path
d="m 523,407.89 c 5.639,-0.725 6.524,-11.83 16.023,-7.801 7.752,3.289 6.661,11.861 2.029,16.075 -1.991,1.812 -6.875,2.212 -9.278,3.651 -3.788,2.269 -5.884,5.936 -10.023,7.826 -6.292,2.872 -13.333,4.958 -20.577,3.972 -9.678,-1.318 -22.979,-11.351 -30.422,-18.475 -5.363,-5.134 -9.31,-11.167 -14.53,-16.299 -3.999,-3.931 -11.099,-8.116 -13.474,-13.697 -0.536,-1.259 -1.979,-2.855 -2.626,-4.071 4.492,0.489 8.482,3.822 11.045,7.649 13.833,2.233 21.053,17.325 34.055,21.948 11.958,4.252 32.899,-13.087 39.777,1.223"
id="path16"
clip-path="url(#clipPath3820)"
inkscape:connector-curvature="0"
transform="matrix(0.98542917,0,0,0.97735419,-339.07608,-290.84908)"
style="fill:#dd7f7f" />
<path
d="m 1003.6059,155.85146 c -0.472,5.849 1.286,10.842 3,16"
id="path18"
inkscape:connector-curvature="0"
style="fill:#dbc07f" />
<path
d="m 544,401.89 c 6.047,-0.753 14.783,-7.755 21.82,-9.877 -2.79,7.679 -10.128,16.235 -17.84,19.452 -0.617,-2.913 -1.376,-6.584 -1.98,-9.575"
id="path20"
clip-path="url(#clipPath3816)"
inkscape:connector-curvature="0"
transform="matrix(0.98542917,0,0,0.97735419,-339.07608,-290.84908)"
style="fill:#dbc07f" />
<path
d="m 502,437.89 c 0.012,25.323 -5.116,49.062 0.171,73.829 12.364,8.077 28.307,5.769 41.606,5.948 13.635,0.186 29.422,-2.809 42.965,0.075 0.365,-0.375 0.735,-0.745 1.11,-1.11 -0.029,-9.826 -26.318,-4.159 -33.83,-3.771 -11.082,0.572 -28.611,2.195 -39.023,-0.972 -10.875,-3.308 -9.44,-22.04 -9.997,-33.004 -0.64,-12.617 3.765,-26.796 1.849,-39.842 -1.748,0.135 -3.296,-0.477 -4.853,-0.154"
id="path22"
clip-path="url(#clipPath3812)"
inkscape:connector-curvature="0"
transform="matrix(0.98542917,0,0,0.97735419,-339.07608,-290.84908)"
style="opacity:0.4;fill:#706f6f" />
<path
d="m 420,502.89 c 9.284,1.241 31.77,-8.579 41.774,-13.249 14.288,-6.67 21.657,-21.523 32.301,-31.374 -0.508,20.775 5.899,45.269 -16.856,54.894 -15,6.345 -43.21,-3.235 -57.219,-9.271"
id="path26"
clip-path="url(#clipPath3808)"
inkscape:connector-curvature="0"
transform="matrix(0.98542917,0,0,0.97735419,-339.07608,-290.84908)"
style="opacity:0.3;fill:#a6d9e8" />
<path
d="m 449.001,479.89 c -11.056,0.999 -24.618,-15.231 -17.1,-27.574 -13.521,1.975 -15.402,14.869 -19.655,25.82 -4.276,11.011 -11.034,20.833 -16.094,31.377 8.767,-6.86 12.852,-14.536 23.044,-18.427 9.263,-3.536 21.751,-5.157 28.804,-9.196"
id="path32"
clip-path="url(#clipPath3804)"
inkscape:connector-curvature="0"
transform="matrix(0.98542917,0,0,0.97735419,-339.07608,-290.84908)"
style="fill:#edd1d1" />
<path
stroke-miterlimit="10"
d="m 430,451.891 c 10.296,12.053 18.23,26.291 26,40"
id="path36"
clip-path="url(#clipPath3800)"
inkscape:connector-curvature="0"
transform="matrix(0.98542917,0,0,0.97735419,-339.07608,-290.84908)"
style="opacity:0.8;fill:none;stroke:#967e7e;stroke-miterlimit:10" />
<path
d="m 350.775,515.511 c -3.361,-13.475 -7.952,-34.665 14.021,-32.91 8.211,0.656 15.089,4.582 16.735,-7.11 1.127,-8.011 -5.524,-16.101 -3.143,-25.098 6.323,-2.813 12.935,-5.111 19.852,-1.618 -1.566,6.26 -7.799,5.537 -10.389,10.299 -2.983,5.489 0.036,14.514 0.466,19.877 1.039,12.95 1.429,26.013 1.229,39.02 -1.275,0.019 -2.427,-0.149 -3.665,-0.269 -3.259,-8.471 -0.681,-7.516 -8.512,-9.368 -7.023,-1.661 -14.056,0.239 -20.952,-0.286 1.212,2.925 1.595,6.274 1.045,9.744 -1.161,0.64 -3.773,1.37 -4.927,1.398 -2.058,-0.474 -1.269,-1.325 -1.827,-2.681"
id="path40"
clip-path="url(#clipPath3796)"
inkscape:connector-curvature="0"
transform="matrix(0.98542917,0,0,0.97735419,-339.07608,-290.84908)"
style="fill:#dbe00b" />
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View file

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="841.89px" height="520.755px" viewBox="0 0 841.89 520.755" enable-background="new 0 0 841.89 520.755"
xml:space="preserve">
<ellipse fill="#EAEBBB" cx="568.301" cy="109.08" rx="4.776" ry="5.307"/>
<ellipse fill="#EAEBBB" cx="355.094" cy="146.227" rx="2.388" ry="2.321"/>
<ellipse fill="#EAEBBB" cx="287.17" cy="198.113" rx="4.776" ry="5.307"/>
<ellipse fill="#EAEBBB" cx="267.3" cy="267.925" rx="2.388" ry="2.653"/>
<circle fill="#EAEBBB" cx="453.208" cy="331.766" r="5.97"/>
<ellipse fill="#EAEBBB" cx="551.32" cy="296.227" rx="2.687" ry="4.312"/>
<ellipse fill="#EAEBBB" cx="214.469" cy="307.547" rx="4.776" ry="5.307"/>
<ellipse fill="#EAEBBB" cx="336.226" cy="409.788" rx="4.776" ry="5.307"/>
<ellipse fill="#EAEBBB" cx="423.962" cy="118.278" rx="2.687" ry="4.312"/>
<ellipse fill="#EAEBBB" cx="276.852" cy="81.132" rx="4.776" ry="5.307"/>
<path fill="#EAEBBB" d="M387.17,215.094c0.594,2.929-1.116,7.328-1.126,11.1c0.524-1.58,3.387-5.58,5.623-7.151
c2.789,1.716,5.263,4.939,6.809,7.404c0.004-3.969-2.169-7.195-2.185-10.764c2.271-1.013,4.745-2.251,6.624-3.496
c-7.171-1.659-6.822-1.705-6.695-8.946c-1.768,1.977-3.138,4.198-4.664,6.277c-2.598-2.056-4.218-4.975-7.671-5.887
c0.123,2.835,1.305,5.828,2.057,8.371c-2.403,0.962-4.97,2.522-7.156,3.007c2.697-0.718,6.344,0.265,8.948,1.589"/>
<path fill="#EAEBBB" d="M657.635,386.71c0.871,3.733-1.342,9.402-1.269,14.226c0.673-2.033,4.454-7.22,7.444-9.283
c3.813,2.128,7.234,6.19,9.383,9.306c-0.085-5.076-3.1-9.15-3.202-13.716c3.05-1.35,6.368-2.993,8.883-4.633
c-9.741-1.947-9.271-2.015-9.264-11.281c-2.348,2.571-4.15,5.446-6.169,8.142c-3.562-2.566-5.82-6.262-10.514-7.345
c0.231,3.624,1.898,7.423,2.975,10.659c-3.23,1.289-6.667,3.347-9.615,4.021c3.633-0.983,8.591,0.186,12.146,1.816"/>
<path fill="#EAEBBB" d="M134.276,72.456c0.52,2.38-0.977,5.954-0.985,9.019c0.459-1.284,2.963-4.534,4.92-5.811
c2.44,1.395,4.605,4.013,5.958,6.016c0.003-3.225-1.898-5.846-1.912-8.746c1.987-0.823,4.152-1.829,5.796-2.84
c-6.274-1.348-5.969-1.385-5.858-7.269c-1.546,1.606-2.745,3.411-4.081,5.1c-2.273-1.67-3.69-4.042-6.712-4.784
c0.108,2.304,1.142,4.735,1.8,6.802c-2.103,0.782-4.349,2.049-6.262,2.443c2.36-0.583,5.551,0.215,7.83,1.291"/>
<path fill="#EAEBBB" d="M471.587,479.389c0.594,2.93-1.116,7.328-1.126,11.1c0.524-1.58,3.387-5.58,5.623-7.151
c2.789,1.716,5.263,4.938,6.809,7.403c0.004-3.969-2.169-7.194-2.185-10.764c2.271-1.012,4.745-2.251,6.624-3.496
c-7.171-1.658-6.822-1.704-6.695-8.945c-1.768,1.977-3.138,4.198-4.664,6.277c-2.598-2.057-4.218-4.976-7.671-5.888
c0.123,2.835,1.305,5.827,2.057,8.371c-2.403,0.962-4.97,2.522-7.156,3.007c2.697-0.717,6.344,0.266,8.948,1.59"/>
<path fill="#EAEBBB" d="M561.422,192.328c0.334,1.464-0.628,3.664-0.634,5.55c0.295-0.79,1.905-2.79,3.163-3.576
c1.569,0.858,2.961,2.469,3.83,3.702c0.002-1.984-1.22-3.597-1.229-5.382c1.276-0.506,2.669-1.125,3.726-1.748
c-4.033-0.829-3.838-0.852-3.767-4.473c-0.994,0.988-1.765,2.099-2.623,3.138c-1.461-1.028-2.373-2.487-4.315-2.943
c0.069,1.417,0.734,2.914,1.157,4.186c-1.352,0.481-2.796,1.261-4.025,1.503c1.518-0.359,3.568,0.133,5.033,0.794"/>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View file

@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="279px" height="279px" viewBox="0 0 279 279" enable-background="new 0 0 279 279" xml:space="preserve">
<path fill="none" d="M-305.321,260.151c4.236,2.69,7.549,7.308,9.434,13.208"/>
<path fill="none" d="M-260.038,267.698c0.104,1.639,0.733,1.639,1.887,0"/>
<path fill="none" d="M-310.981,450.718c0.043,2.615-0.133,5.229-1.887,1.887"/>
<path fill="none" d="M-377.019,367.698c-0.874-2.107,0.456-3.383-2.082-4.895c2.567,4.578,6.12,8.258,9.629,12.442"/>
<path fill="none" d="M-465.698,316.755c5.092,1.486,1.083-1.083,0-1.887"/>
<path fill="none" d="M-561.924,284.68c0.629,0.629,1.258,1.258,1.887,1.887"/>
<line fill="#FFFFFF" stroke="#000000" stroke-miterlimit="10" x1="172.038" y1="-190.792" x2="170.151" y2="-179.471"/>
<line fill="none" stroke="#000000" stroke-miterlimit="10" x1="156.943" y1="-260.604" x2="153.17" y2="-245.509"/>
<path fill="#D1D0CD" d="M28,118c5.637,13.139,3.016,35.708,3,50c-0.01,9,1.545,17.161,1.997,26
c0.351,6.884-3.701,19.373,1.003,24.097c21.819-16.124,45.399-27.502,66.735-41.268c13.177-8.501,25.705-17.085,39.094-25.104
c4.132-2.474,16.953-7.328,18.968-10.928c2.434-4.349-1.666-17.878-1.849-22.797c-0.845-22.732,3.475-47.831-0.1-69.849
c-11.547-0.934-23.641,13.048-33.874,17.824c-10.76,5.021-21.173,9.822-31.253,16.973c-10.398,7.377-21.277,12.714-32.968,17.803
c-9.776,4.255-25.78,7.204-31.854,16.252c1.069,1.441,1.248,3.782,2.1,4.997"/>
<path opacity="0.4" fill="#8C8B85" d="M35,220c10.21-1.191,23.131-10.645,32.278-15.723c11.426-6.343,22.105-12.259,32.473-20.526
c17.925-14.294,40.282-21.928,57.5-37.604c26.165,11.395,55.806,18.208,81.801,28.801c21.218,8.646,2.623,15.808-9.026,22.077
c-11.583,6.233-24.629,11.577-34.776,21.001c-10.612,9.857-21.233,18.785-33.495,26.776C150.307,252.264,141.843,263.376,128,256
c-13.13-6.996-24.691-11.43-39.023-16.199c-14.207-4.729-26.688-13.017-40.751-17.05C44.168,221.587,42.416,219.063,38,221"/>
<path fill="#ABDDE9" d="M87.661,122.057C92.142,129.271,90.951,139.99,85,146s-14.406,5.034-18.888-2.181
c-4.479-7.215-3.288-17.935,2.662-23.944C74.725,113.865,83.18,114.842,87.661,122.057z"/>
<path fill="#D1D0CD" d="M83.671,125.647c2.88,4.637,2.132,11.511-1.671,15.353c-3.803,3.84-9.222,3.194-12.101-1.444
c-2.882-4.638-2.132-11.512,1.671-15.353C75.373,120.363,80.791,121.008,83.671,125.647z"/>
<g>
<path fill="#ABDDE9" d="M113.974,123.681c4.481,7.213,3.289,17.933-2.661,23.943c-5.951,6.01-14.406,5.032-18.888-2.182
c-4.481-7.214-3.29-17.934,2.661-23.943C101.036,115.488,109.493,116.464,113.974,123.681z"/>
<path fill="#D1D0CD" d="M109.975,127.719c2.88,4.638,2.133,11.51-1.671,15.352c-3.804,3.842-9.222,3.196-12.102-1.442
c-2.88-4.637-2.132-11.511,1.671-15.353C101.676,122.435,107.094,123.081,109.975,127.719z"/>
</g>
<polygon fill="#D1D0CD" points="140.269,134.279 131.655,150.198 116.809,149.574 110.576,133.034 119.19,117.116 134.037,117.739
"/>
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -0,0 +1,41 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="341px" height="329px" viewBox="0 0 341 329" enable-background="new 0 0 341 329" xml:space="preserve">
<path fill="none" d="M-243.321,310.151c4.236,2.69,7.549,7.308,9.434,13.208"/>
<path fill="none" d="M-198.038,317.698c0.104,1.639,0.733,1.639,1.887,0"/>
<path fill="none" d="M-248.981,500.718c0.043,2.615-0.133,5.229-1.887,1.887"/>
<path fill="none" d="M-315.019,417.698c-0.874-2.107,0.456-3.383-2.082-4.895c2.567,4.578,6.12,8.258,9.629,12.442"/>
<path fill="none" d="M-403.698,366.755c5.092,1.486,1.083-1.083,0-1.887"/>
<path fill="none" d="M-499.924,334.68c0.629,0.629,1.258,1.258,1.887,1.887"/>
<line fill="#FFFFFF" stroke="#000000" stroke-miterlimit="10" x1="234.038" y1="-140.792" x2="232.151" y2="-129.471"/>
<line fill="none" stroke="#000000" stroke-miterlimit="10" x1="218.943" y1="-210.604" x2="215.17" y2="-195.509"/>
<path fill="#D1D0CD" d="M92.283,140.985c3.515,11.945-1.584,31.049-3.325,43.336c-1.096,7.737-0.674,14.933-1.334,22.585
c-0.514,5.959-5.69,16.233-2.003,20.834c21.699-11.36,44.418-18.437,65.394-27.824c12.955-5.798,25.332-11.741,38.421-17.099
c4.039-1.653,16.231-4.355,18.49-7.22c2.729-3.46,0.652-15.564,1.081-19.814c1.982-19.642,8.925-40.727,8.35-60.069
c-10.339-2.128-22.977,8.506-32.816,11.438c-10.347,3.083-20.353,6.015-30.341,11.008c-10.304,5.15-20.796,8.49-31.993,11.524
c-9.364,2.536-24.207,3.235-30.797,10.318c0.793,1.362,0.673,3.395,1.296,4.537"/>
<path opacity="0.4" fill="#8C8B85" d="M86.296,229.492c9.386,0.147,22.224-6.498,31.117-9.815
c11.109-4.143,21.491-8.004,31.875-13.922c17.953-10.233,39.112-14.231,56.592-25.734c22.308,12.8,48.315,22.06,70.566,34.151
c18.162,9.87,0.464,13.894-10.838,17.947c-11.238,4.03-23.693,7.127-34.017,14.066c-10.797,7.258-21.49,13.715-33.555,19.179
c-11.263,5.102-20.267,13.685-31.907,5.754c-11.04-7.521-20.97-12.661-33.366-18.406c-12.289-5.696-22.585-14.256-34.828-19.337
c-3.532-1.467-4.814-3.838-9.045-2.679"/>
<path fill="#ABDDE9" d="M146.797,147.32c3.185,6.718,0.812,15.798-5.301,20.282c-6.113,4.484-13.648,2.675-16.834-4.043
c-3.183-6.718-0.81-15.799,5.302-20.283C136.078,138.792,143.613,140.602,146.797,147.32z"/>
<path fill="#D1D0CD" d="M143.074,149.811c2.046,4.317,0.539,10.142-3.368,13.009c-3.907,2.866-8.734,1.688-10.779-2.63
c-2.049-4.319-0.539-10.143,3.368-13.009C136.201,144.315,141.027,145.492,143.074,149.811z"/>
<g>
<path fill="#ABDDE9" d="M165.419,158.736c3.185,6.717,0.811,15.797-5.301,20.282c-6.114,4.484-13.649,2.673-16.833-4.044
c-3.185-6.717-0.812-15.798,5.301-20.281C154.698,150.207,162.236,152.017,165.419,158.736z"/>
<path fill="#D1D0CD" d="M161.312,161.749c2.047,4.318,0.54,10.142-3.367,13.008c-3.908,2.867-8.734,1.689-10.781-2.629
c-2.047-4.317-0.54-10.142,3.367-13.009C154.438,156.254,159.265,157.431,161.312,161.749z"/>
</g>
<polygon fill="#D1D0CD" points="186.941,174.867 177.221,187.566 163.857,185.326 160.214,170.388 169.935,157.69 183.298,159.93
"/>
<path fill="#F0A5B7" d="M189.211,67.509c8.001,5.324,18.511,28.271,31.071,23.432c11.945-4.601,17.078-21.88,31.502-25.167
c-7.34,0.713-15.285,0.078-22.776,0.632c-7.229,0.534-16.102,2.558-23.371,0.796c-6.109-1.48-11.061-10.584-17.05-8.546
c-9.297,3.164-0.839,12.709,5.573,12.981"/>
<path fill="#E8ED19" d="M182.695,61.432c-0.307,7.417-5.47,18.801-9.004,25.898c5.028-4.479,9.184-11.098,13.259-16.239
c-2.974-1.09-5.54-5.185-6.669-5.589"/>
</svg>

After

Width:  |  Height:  |  Size: 3.6 KiB

View file

@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="586.842px" height="577.631px" viewBox="0 0 586.842 577.631" enable-background="new 0 0 586.842 577.631"
xml:space="preserve">
<path fill="#E4E4B1" d="M214.474,196.053c-14.536,18.928-18.959,43.044-2.308,61.842c13.873,15.661,29.564,29.735,52.016,27.334
c39.117-4.184,69.279-47.317,50.548-81.537c-10.66-19.475-24.322-26.59-46.24-28.756c-18.806-1.858-45.491,2.462-52.924,20.892
c-2.534,0.815-3.085,2.192-3.723,2.856"/>
<path fill="#E2EEED" d="M196.053,321.696c4.168-0.477,2.26-7.334,20.587-5.434c10.482-1.096,18.979-2.721,32.146-2.483
c5.564,0.101,12.167,0.992,17.946,1.245c5.325,0.232,15.889,0.088,20.554,0.47c12.728,1.043,12.19,2.806,29.516,3.425
c11.906,0.425,26.215,0.904,37.147,1.662c-8.83-0.164-13.688,0.879-21.518,1.151c-1.99,0.868-29.548,2.604-37.469,2.956
c-12.323,0.547-38.914,0.71-45.178-1.459c-11.274-0.291-20.87,1.564-34.178,0.984c-8.716-0.381-18.67-1.477-19.554-2.945"/>
<path fill="#E2EEED" d="M206.579,339.541c13.387-3.454,27.872,1.021,42.105-0.003c12.7-0.913,22.863-5.25,34.403-7.971
c-13.103,1.404-26.295,0.908-39.38,2.594c-10.138,1.306-19.155,3.513-29.561,1.876c-7.854-1.235-14.282-4.628-22.442-5.472
c-10.887-1.126-22.876,0.402-33.813,0.836c-11.337,0.449-28.281,1.447-39.071-1.236c14.667-2.308,26.629-5.004,41.707-6.476"/>
<path fill="#E2EEED" d="M317.105,265.79c-1.899,4.037-11.697,16.755-15.696,19.961c-5.29,4.242-32.294,9.331-18.541,20.634
c7.544,6.199,25.902-3.816,33.974-3.229c11.265,0.819,17.492,5.418,30.598,1.809c5.943-1.637,8.006-5.072,15.722-4.961
c5.117,0.074,13.135,1.012,17.424,1.574c9.941,1.301,19.883,0.867,30.008,2.008c20.396,2.301,41.854-2.333,61.774-4.511
c5.324-0.582,11.217-3.381,16.775-3.978c-8.153-3.754-17.38-0.255-26.017-1.646c-7.244-1.167-17.911-2.622-24.97-4.97
c-13.688-4.556-20.836-18.147-35.521-16.838c-1.252,0.491-2.771,1.337-3.884,1.915c-9.922-10.049-29.283-13.75-42.178-17.042
c-16.299-4.16-28.867-0.557-39.469,10.59"/>
<path fill="none" d="M-128.947,28.948c-0.935,0.468-1.696,0.848-2.631,1.315"/>
<path fill="#E2EEED" d="M207.895,265.79c-5.536-6.607-13.992-4.646-22.045-6.256c-7.698-1.539-17.149-7.683-26.639-6.902
c-6.528,0.537-9.182,4.101-15.492,5.591c-5.326,1.258-7.347-0.754-12.072-0.365c-7.43,0.612-22.55,3.322-29.303,8.887
c-8.284,6.826-6.565,16.358,5.586,15.883c3.994-0.156,8.179-5.883,11.774-6.406c4.248-0.618,11.093,2.412,15.822,2.721
c19.443,1.268,37.445,9.22,56.256,6.192c9.186-1.479,16.905-1.834,26.346-1.222c7.222,0.469,16.862,3.355,24.134,0.998
c-6.14-1.747-12.96-1.65-18.51-4.647c-5.887-3.179-8.561-9.088-14.322-10.747c-0.147-0.73-0.293-1.46-0.44-2.191
c-1.204-0.168-2.306-0.23-3.507-0.44c-0.733-2.313-1.509-2.182-2.852-3.727"/>
<path fill="#E2EEED" d="M292.105,194.737c-1.458,4.176-0.905,7.716,1.545,11.618c10.833,2.586,12.248,5.199,23.49,4.207
c9.136-0.806,19.716,0.881,30.228,0.033c15.033-1.213,48.743-14.688,59.534-4.54c9.564-8.62,33.354-2.839,45.561-2.337
c-5.719-13.756-60.162-6.621-74.764-6.642c-13.25-0.019-26.776-3.078-39.542-4.97c-10.264-1.521-26.955-6.963-36.617-2.407
c-1.125,4.7-5.491,6.333-9.435,7.67"/>
</svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -7107,7 +7107,13 @@ html {
.hero-bg {
background-image: url("/images/clouds-bg.svg");
background-size: cover;
background-color: #fff; }
background-color: #fff;
position: relative; }
.mixed-background {
background-image: url("/images/flowers.svg"), url("/images/sun+cloud.svg"), url("/images/moon+stars.svg");
background-position: calc(100% - 20px) calc(100% - 10px), 10% calc(170vh + 150px), calc(100vw - 500px) calc(100vh - 100px);
background-repeat: no-repeat, no-repeat, no-repeat; }
.scroll-down-indicator {
position: absolute;

View file

@ -18,6 +18,7 @@ html{
background-image: url('/images/clouds-bg.svg');
background-size: cover;
background-color: #fff;
position: relative;
// @include linearGradient(#eef6fc, #f8afaf);
// background: url('/images/whale.svg') 15% 25% no-repeat, linear-gradient(to bottom, #eef6fc 0%, #f8afaf 100%);
// background-size: 250px, auto;
@ -25,6 +26,12 @@ html{
// background-repeat: no-repeat;
}
.mixed-background{
background-image: url('/images/flowers.svg'), url('/images/sun+cloud.svg'), url('/images/moon+stars.svg');
background-position: calc(100% - 20px) calc(100% - 10px), 10% calc(170vh + 150px), calc(100vw - 500px) calc(100vh - 100px);
background-repeat: no-repeat, no-repeat, no-repeat;
}
.scroll-down-indicator{
position: absolute;
bottom: 25px;

View file

@ -1,18 +1,20 @@
<template>
<!-- <div class="card"> -->
<div class="card-content has-pointer" @click="goToChild(child)">
<div class="media">
<!-- <div class="card-content " > -->
<article class="media has-pointer" @click="goToChild(child)">
<div class="media-left">
<figure class="image is-48x48">
<img class="is-rounded is-avatar" :src="child.avatar" :alt="child.name" />
</figure>
</div>
<div class="media-content">
<div class="content">
<p class>{{child.name}}</p>
</div>
<!-- <p class>{{childAge}}</p> -->
</div>
</div>
</div>
</article>
<!-- </div> -->
<!-- </div> -->
</template>
<script lang="ts">

View file

@ -0,0 +1,26 @@
<div style="width:100%">
<div style="color: #4a4a4a;
max-width:800px;
margin-left:auto;
margin-right:auto;
background-image: url('{{baseUrl}}/images/emails/cloudgroup.png');
background-size: cover;
background-position: center center;">
<div style="background-color: #fafafa; padding: 2rem 1.5rem 2rem;margin-bottom:2rem">
<h1>Seepur</h1>
</div>
@!section('content')
<footer style="background-color: #fafafa; padding: 3rem 1.5rem 6rem; margin-top:2rem">
<div style="text-align: center !important;">
<p>
<strong>Seepur</strong> | The source code is licensed
<a href="http://opensource.org/licenses/mit-license.php">MIT</a>. Made with ♥️ by friends and family. For all the savtot out there
</p>
</div>
</footer>
</div>
</div>

View file

@ -0,0 +1,30 @@
@layout('emails.layouts.base')
@section('content')
Hi {{user.name}},
<p>
Click the following button to reset your password. If you have not requested the password reset, then ignore this email.
</p>
<div style="width: 100%; display:flex;justify-content: center;">
<a style="margin-right:auto; margin-left:auto;background-color: white;
border:solid 1px #dbdbdb;
color: #363636;
cursor: pointer;
justify-content: center;
padding-bottom: calc(0.5em - 1px);
padding-left: 1em;
padding-right: 1em;
padding-top: calc(0.5em - 1px);
text-align: center;
white-space: nowrap;
border-radius: 290486px;
padding-left: calc(1em + 0.25em);
padding-right: calc(1em + 0.25em);
display: inline-block;
text-decoration: none;
" href="{{link.href}}" target="_blank">{{link.text}}</a>
</div>
<p>
Do note that this link will expire within 24 hours.
</p>
@endsection

View file

@ -0,0 +1,11 @@
@layout('emails.layouts.base')
@section('content')
Hi {{user.name}},
<p>
You've got mail!
</p>
<p>If you see this email it means that your email settings are correct!</p>
@endsection

View file

@ -0,0 +1,46 @@
@layout('emails.layouts.base')
@section('content')
<h4>
Hi {{user.name}},
</h4>
<div style="max-width:35%; margin: 0px auto;">
<img src="{{baseUrl}}/images/emails/welcome.png" alt="" style="object-fit: contain; display:inline-block; margin-left:auto; margin-right:auto; max-width:100%">
</div>
<p>
Welcome to your very own Seepur!
<p>
<p>
Thank you for choosing us to help you connect with your far away loved ones!
</p>
<div style="width: 100%; display:flex;justify-content: center;">
<a style="margin-right:auto; margin-left:auto;background-color: white;
border:solid 1px #dbdbdb;
color: #363636;
cursor: pointer;
justify-content: center;
padding-bottom: calc(0.5em - 1px);
padding-left: 1em;
padding-right: 1em;
padding-top: calc(0.5em - 1px);
text-align: center;
white-space: nowrap;
border-radius: 290486px;
padding-left: calc(1em + 0.25em);
padding-right: calc(1em + 0.25em);
display: inline-block;
text-decoration: none;
" href="{{baseUrl}}" target="_blank">Take me to Seepur</a>
</div>
<p>
We Hope you will have a great time
</p>
<br>
<p>
Team Seepur
</p>
@endsection

View file

@ -4,6 +4,7 @@
A safe and fun way to spend time with far away loved ones
@endsection
@section('hero')
<div class="mixed-background">
<section class="hero is-large hero-bg">
@!component('components.nav.nav', isLanding = false, auth=auth)
<div class="hero-body">
@ -21,11 +22,10 @@ A safe and fun way to spend time with far away loved ones
<a class="button is-rounded is-outlined" href='/login'>Log In</a>
</div>
</div>
<div class="column is-one-third m-b-md">
<div class="column is-one-third">
<figure class="image">
<img src="/images/grand.svg" alt="" srcset="">
<img src="/images/whale.svg" alt="" srcset="">
</figure>
{{-- <small><a href="https://www.freepik.com/free-photos-vectors/health">Health vector created by freepik - www.freepik.com</a></small> --}}
</div>
</div>
@ -143,4 +143,6 @@ A safe and fun way to spend time with far away loved ones
</div>
@endsection

View file

@ -60,7 +60,7 @@ Seepur| Login
</small>
<br>
<small class='small is-small'>
<a href="#">Help, I forgot my password!</a>
<a href="/password/reset">Help!, I forgot my password!</a>
</small>
@endsection

View file

@ -0,0 +1,40 @@
@layout('layouts.main')
@section('page-title')
Seepur| Reset Password
@endsection
@section('content')
<h1 class="title">
Don't Pannic!
</h1>
<p class="subtitle">
We'v got you
</p>
<form class="form register" method="POST" action="{{ route('resetPassword') }}" id="form-register">
{{ csrfField() }}
<div class="field">
<label class="label">Email</label>
<div class="control has-icons-left">
<input class="input {{ getErrorFor('email') ? 'is-danger' : ''}}" required="true" name="email" type="email" placeholder="j.snow@thewall.com" value="{{ old('email', '') }}">
<span class="icon is-small is-left">
<i class="fa fa-envelope"></i>
</span>
</div>
<p class="help is-danger">{{ getErrorFor('email') ? getErrorFor('email') : '' }}</p>
</div>
<div class="field is-grouped">
<div class="control">
<button id="btn-register-submit" class="button is-info is-rounded" >Yep, Reset!</button>
</div>
<div class="control">
<a class="button is-outlined is-rounded" href='/'>Cancel</a>
</div>
</div>
</form>
@endsection

View file

@ -23,6 +23,7 @@ const providers =
'@adonisjs/validator/providers/ValidatorProvider',
'@adonisjs/drive/providers/DriveProvider',
'@adonisjs/websocket/providers/WsProvider',
'@adonisjs/mail/providers/MailProvider',
]
/*

View file

@ -26,6 +26,13 @@ Route.get('/login', 'AuthController.loginIndex').as('login');
Route.post('/register', 'AuthController.register').validator('Register');
Route.post('/login', 'AuthController.login').validator('Login');
// reset-password
Route.post('/password/reset', 'AuthController.resetPassword')
.validator('ResetPassword')
.as('resetPassword');
Route.get('/password/reset', 'AuthController.resetPasswordIndex');
Route.get('/password/reset/:token', 'AuthController.resetPasswordForm');
/*
/ Client API
*/
@ -69,6 +76,8 @@ Route.get('/u/images/:fileName', 'CdnController.publicImages');
Route
.group(() => {
Route.get('users', 'AdminApiController.getUsers');
Route.get(
'settings/email/test/result', 'AdminApiController.testEmailSettings');
})
.prefix('/api/v1/admin')
.middleware(['auth', 'adminAuth']);

228
yarn.lock
View file

@ -160,6 +160,19 @@
pretty-hrtime "^1.0.3"
require-all "^3.0.0"
"@adonisjs/mail@^3.0.10":
version "3.0.10"
resolved "https://registry.yarnpkg.com/@adonisjs/mail/-/mail-3.0.10.tgz#e270585555cb4d2f958dfe38b0a0656b0797ae3a"
integrity sha512-kl+h3TieYllAxcuGA2QGiebBTMAG+p6QkxXnrdtbRp14rfiQZptjDRlhwb/OXZrGHvAXvgYzkhZPlOxsH2uATA==
dependencies:
"@adonisjs/generic-exceptions" "^2.0.1"
clone "^2.1.2"
debug "^4.0.1"
form-data "^2.3.2"
get-stream "^4.0.0"
got "8.3.0"
nodemailer "^4.6.8"
"@adonisjs/middleware-base@^1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@adonisjs/middleware-base/-/middleware-base-1.0.0.tgz#c474f94ca3c841a64541fd811279ee36e77031c8"
@ -438,6 +451,11 @@
lodash "^4.17.13"
to-fast-properties "^2.0.0"
"@sindresorhus/is@^0.7.0":
version "0.7.0"
resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.7.0.tgz#9a06f4f137ee84d7df0460c1fdb1135ffa6c50fd"
integrity sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==
"@slynova/flydrive@^0.3.1":
version "0.3.1"
resolved "https://registry.yarnpkg.com/@slynova/flydrive/-/flydrive-0.3.1.tgz#7d89c43a90ef8599b29d5f7aadd9e82b6904e8ce"
@ -1954,6 +1972,19 @@ cache-base@^1.0.1:
union-value "^1.0.0"
unset-value "^1.0.0"
cacheable-request@^2.1.1:
version "2.1.4"
resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-2.1.4.tgz#0d808801b6342ad33c91df9d0b44dc09b91e5c3d"
integrity sha1-DYCIAbY0KtM8kd+dC0TcCbkeXD0=
dependencies:
clone-response "1.0.2"
get-stream "3.0.0"
http-cache-semantics "3.8.1"
keyv "3.0.0"
lowercase-keys "1.0.0"
normalize-url "2.0.1"
responselike "1.0.2"
caller-path@^0.1.0:
version "0.1.0"
resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
@ -2184,7 +2215,14 @@ clone-deep@^4.0.0:
kind-of "^6.0.2"
shallow-clone "^3.0.0"
clone@^2.1.1:
clone-response@1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b"
integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=
dependencies:
mimic-response "^1.0.0"
clone@^2.1.1, clone@^2.1.2:
version "2.1.2"
resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f"
integrity sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=
@ -2598,6 +2636,13 @@ decode-uri-component@^0.2.0:
resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=
decompress-response@^3.3.0:
version "3.3.0"
resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3"
integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=
dependencies:
mimic-response "^1.0.0"
deep-extend@^0.6.0:
version "0.6.0"
resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
@ -3177,6 +3222,15 @@ fork-awesome@^1.1.7:
resolved "https://registry.yarnpkg.com/fork-awesome/-/fork-awesome-1.1.7.tgz#1427da1cac3d1713046ee88427e5fcecb9501d21"
integrity sha512-IHI7XCSXrKfUIWslse8c/PaaVDT1oBaYge+ju40ihL2ooiQeBpTr4wvIXhgTd2NuhntlvX+M5jYHAPTzNlmv0g==
form-data@^2.3.2:
version "2.5.1"
resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.5.1.tgz#f2cbec57b5e59e23716e128fe44d4e5dd23895f4"
integrity sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==
dependencies:
asynckit "^0.4.0"
combined-stream "^1.0.6"
mime-types "^2.1.12"
form-data@~2.3.2:
version "2.3.3"
resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6"
@ -3203,7 +3257,7 @@ fresh@0.5.2, fresh@^0.5.2:
resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=
from2@^2.1.0:
from2@^2.1.0, from2@^2.1.1:
version "2.3.0"
resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af"
integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=
@ -3310,7 +3364,7 @@ get-stdin@^4.0.1:
resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe"
integrity sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=
get-stream@^3.0.0:
get-stream@3.0.0, get-stream@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=
@ -3416,6 +3470,29 @@ globule@^1.0.0:
lodash "~4.17.12"
minimatch "~3.0.2"
got@8.3.0:
version "8.3.0"
resolved "https://registry.yarnpkg.com/got/-/got-8.3.0.tgz#6ba26e75f8a6cc4c6b3eb1fe7ce4fec7abac8533"
integrity sha512-kBNy/S2CGwrYgDSec5KTWGKUvupwkkTVAjIsVFF2shXO13xpZdFP4d4kxa//CLX2tN/rV0aYwK8vY6UKWGn2vQ==
dependencies:
"@sindresorhus/is" "^0.7.0"
cacheable-request "^2.1.1"
decompress-response "^3.3.0"
duplexer3 "^0.1.4"
get-stream "^3.0.0"
into-stream "^3.1.0"
is-retry-allowed "^1.1.0"
isurl "^1.0.0-alpha5"
lowercase-keys "^1.0.0"
mimic-response "^1.0.0"
p-cancelable "^0.4.0"
p-timeout "^2.0.1"
pify "^3.0.0"
safe-buffer "^5.1.1"
timed-out "^4.0.1"
url-parse-lax "^3.0.0"
url-to-options "^1.0.1"
got@^6.7.1:
version "6.7.1"
resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0"
@ -3471,6 +3548,18 @@ has-flag@^3.0.0:
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
has-symbol-support-x@^1.4.1:
version "1.4.2"
resolved "https://registry.yarnpkg.com/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz#1409f98bc00247da45da67cee0a36f282ff26455"
integrity sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==
has-to-string-tag-x@^1.2.0:
version "1.4.1"
resolved "https://registry.yarnpkg.com/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz#a045ab383d7b4b2012a00148ab0aa5f290044d4d"
integrity sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==
dependencies:
has-symbol-support-x "^1.4.1"
has-unicode@^2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
@ -3559,6 +3648,11 @@ hosted-git-info@^2.1.4:
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488"
integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==
http-cache-semantics@3.8.1:
version "3.8.1"
resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz#39b0e16add9b605bf0a9ef3d9daaf4843b4cacd2"
integrity sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==
http-errors@1.7.3, http-errors@~1.7.0, http-errors@~1.7.2:
version "1.7.3"
resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06"
@ -3723,6 +3817,14 @@ interpret@1.2.0, interpret@^1.1.0:
resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296"
integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw==
into-stream@^3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/into-stream/-/into-stream-3.1.0.tgz#96fb0a936c12babd6ff1752a17d05616abd094c6"
integrity sha1-lvsKk2wSur1v8XUqF9BWFqvQlMY=
dependencies:
from2 "^2.1.1"
p-is-promise "^1.1.0"
invariant@^2.2.2:
version "2.2.4"
resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
@ -3928,6 +4030,11 @@ is-obj@^1.0.0:
resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8=
is-object@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/is-object/-/is-object-1.0.1.tgz#8952688c5ec2ffd6b03ecc85e769e02903083470"
integrity sha1-iVJojF7C/9awPsyF52ngKQMINHA=
is-path-inside@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036"
@ -3935,6 +4042,11 @@ is-path-inside@^1.0.0:
dependencies:
path-is-inside "^1.0.1"
is-plain-obj@^1.0.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4=
is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4:
version "2.0.4"
resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
@ -3954,7 +4066,7 @@ is-relative@^1.0.0:
dependencies:
is-unc-path "^1.0.0"
is-retry-allowed@^1.0.0:
is-retry-allowed@^1.0.0, is-retry-allowed@^1.1.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4"
integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==
@ -4018,6 +4130,14 @@ isstream@~0.1.2:
resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=
isurl@^1.0.0-alpha5:
version "1.0.0"
resolved "https://registry.yarnpkg.com/isurl/-/isurl-1.0.0.tgz#b27f4f49f3cdaa3ea44a0a5b7f3462e6edc39d67"
integrity sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==
dependencies:
has-to-string-tag-x "^1.2.0"
is-object "^1.0.1"
js-base64@^2.1.8:
version "2.5.2"
resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.5.2.tgz#313b6274dda718f714d00b3330bbae6e38e90209"
@ -4048,6 +4168,11 @@ jsesc@~0.5.0:
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=
json-buffer@3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898"
integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=
json-parse-better-errors@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
@ -4132,6 +4257,13 @@ jws@^3.2.2:
jwa "^1.4.1"
safe-buffer "^5.0.1"
keyv@3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.0.0.tgz#44923ba39e68b12a7cec7df6c3268c031f2ef373"
integrity sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==
dependencies:
json-buffer "3.0.0"
kind-of@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-2.0.1.tgz#018ec7a4ce7e3a86cb9141be519d24c8faa981b5"
@ -4383,6 +4515,11 @@ loud-rejection@^1.0.0:
currently-unhandled "^0.4.1"
signal-exit "^3.0.0"
lowercase-keys@1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306"
integrity sha1-TjNms55/VFfjXxMkvfb4jQv8cwY=
lowercase-keys@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f"
@ -4590,6 +4727,11 @@ mimic-fn@^2.0.0:
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
mimic-response@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b"
integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==
minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"
@ -4916,6 +5058,11 @@ node-sass@^4.13.0:
stdout-stream "^1.4.0"
"true-case-path" "^1.0.2"
nodemailer@^4.6.8:
version "4.7.0"
resolved "https://registry.yarnpkg.com/nodemailer/-/nodemailer-4.7.0.tgz#4420e06abfffd77d0618f184ea49047db84f4ad8"
integrity sha512-IludxDypFpYw4xpzKdMAozBSkzKHmNBvGanUREjJItgJ2NYcK/s8+PggVhj7c2yGFQykKsnnmv1+Aqo0ZfjHmw==
nodemon@^1.18.7:
version "1.19.4"
resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-1.19.4.tgz#56db5c607408e0fdf8920d2b444819af1aae0971"
@ -4976,6 +5123,15 @@ normalize-path@^3.0.0:
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
normalize-url@2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-2.0.1.tgz#835a9da1551fa26f70e92329069a23aa6574d7e6"
integrity sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==
dependencies:
prepend-http "^2.0.0"
query-string "^5.0.1"
sort-keys "^2.0.0"
npm-bundled@^1.0.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.1.tgz#1edd570865a94cdb1bc8220775e29466c9fb234b"
@ -5135,6 +5291,11 @@ osenv@0, osenv@^0.1.4:
os-homedir "^1.0.0"
os-tmpdir "^1.0.0"
p-cancelable@^0.4.0:
version "0.4.1"
resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.4.1.tgz#35f363d67d52081c8d9585e37bcceb7e0bbcb2a0"
integrity sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==
p-defer@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c"
@ -5145,6 +5306,11 @@ p-finally@^1.0.0:
resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=
p-is-promise@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-1.1.0.tgz#9c9456989e9f6588017b0434d56097675c3da05e"
integrity sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4=
p-is-promise@^2.0.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e"
@ -5164,6 +5330,13 @@ p-locate@^3.0.0:
dependencies:
p-limit "^2.0.0"
p-timeout@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-2.0.1.tgz#d8dd1979595d2dc0139e1fe46b8b646cb3cdf038"
integrity sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==
dependencies:
p-finally "^1.0.0"
p-try@^2.0.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
@ -5450,6 +5623,11 @@ prepend-http@^1.0.1:
resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=
prepend-http@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897"
integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=
prettier@^1.18.2:
version "1.19.1"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb"
@ -5749,6 +5927,15 @@ qs@~6.5.2:
resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==
query-string@^5.0.1:
version "5.1.1"
resolved "https://registry.yarnpkg.com/query-string/-/query-string-5.1.1.tgz#a78c012b71c17e05f2e3fa2319dd330682efb3cb"
integrity sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==
dependencies:
decode-uri-component "^0.2.0"
object-assign "^4.1.0"
strict-uri-encode "^1.0.0"
query-string@^6.0.0:
version "6.12.0"
resolved "https://registry.yarnpkg.com/query-string/-/query-string-6.12.0.tgz#fa0fe5b3ddf4d040d1236b80672949ab33d5cf80"
@ -6125,6 +6312,13 @@ resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.3.2, resolve@^1.8.1:
dependencies:
path-parse "^1.0.6"
responselike@1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7"
integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=
dependencies:
lowercase-keys "^1.0.0"
ret@~0.1.10:
version "0.1.15"
resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
@ -6455,6 +6649,13 @@ snapdragon@^0.8.1:
source-map-resolve "^0.5.0"
use "^3.1.0"
sort-keys@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128"
integrity sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=
dependencies:
is-plain-obj "^1.0.0"
source-list-map@^2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34"
@ -6632,6 +6833,11 @@ stream-shift@^1.0.0:
resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d"
integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==
strict-uri-encode@^1.0.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=
strict-uri-encode@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz#b9c7330c7042862f6b142dc274bbcc5866ce3546"
@ -6855,7 +7061,7 @@ time-stamp@^1.0.1:
resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3"
integrity sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=
timed-out@^4.0.0:
timed-out@^4.0.0, timed-out@^4.0.1:
version "4.0.1"
resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f"
integrity sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=
@ -7164,6 +7370,18 @@ url-parse-lax@^1.0.0:
dependencies:
prepend-http "^1.0.1"
url-parse-lax@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c"
integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=
dependencies:
prepend-http "^2.0.0"
url-to-options@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/url-to-options/-/url-to-options-1.0.1.tgz#1505a03a289a48cbd7a434efbaeec5055f5633a9"
integrity sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k=
url@^0.11.0:
version "0.11.0"
resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"